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
04 Sep, 2024
Binary Search on Singly Linked List 04 Sep, 2024 Given a sorted singly linked list and a key, the task is to find the key in the Linked List using Binary Search. Examples: Input: head = 1->4->7->8->9->10, key = 7Output: Present Input: LinkedList = 1->4->7->8->9->10, key = 12Output: Value Not Present Note that Binary Search does not work efficiently for linked lists. The purpose of this article is to show the same. It is recommended to use simple linear search. If we wish to achieve better than linear time, Skip List is recommended for fast search. Find the middle element of the Linked List.Compare the middle element with the key. if the key is found in the middle element, return true.If the key is not found in the middle element, choose which half will be used as the next search space.If the key is smaller than the middle node, the left half is used for the next search.If the key is greater than the middle node, then the right half is used for the next search.This process is continued until the key is found or the total Linked List is exhausted.Below is the implementation of the above approach: C++ // C++ code to implement binary search // on Singly Linked List #include <bits/stdc++.h> using namespace std; class Node { public: int data; Node *next; Node(int x) { data = x; next = NULL; } }; // function to find out middle element Node *middle(Node *start, Node *last) { if (start == NULL) { return NULL; } if (start == last) return start; Node *slow = start; Node *fast = start->next; while (fast != last) { fast = fast->next; slow = slow->next; if (fast != last) { fast = fast->next; } } return slow; } // Function for implementing the Binary // Search on linked list bool binarySearch(Node *head, int value) { Node *start = head; Node *last = NULL; while (true) { // Find middle Node *mid = middle(start, last); // If middle is empty if (mid == NULL) { return false; } // If value is present at middle if (mid->data == value) return true; // If start and last node are overlapping else if (start == last) break; // If value is more than mid else if (mid->data < value) { start = mid->next; } // If the value is less than mid. else if (mid->data > value) last = mid; } // value not present return false; } int main() { // Create a hard-coded linked list: // 1 -> 4 -> 7 -> 8 -> 9 -> 10 Node *head = new Node(1); head->next = new Node(4); head->next->next = new Node(7); head->next->next->next = new Node(8); head->next->next->next->next = new Node(9); head->next->next->next->next->next = new Node(10); int value = 7; if (binarySearch(head, value)) cout << "Present"; else cout << "Value not present\n"; return 0; } C // C code to implement binary search // on Singly Linked List #include <stdio.h> #include <stdlib.h> struct Node { int data; struct Node *next; }; // function to find out middle element struct Node *middle(struct Node *start, struct Node *last) { if (start == NULL) { return NULL; } if (start == last) return start; struct Node *slow = start; struct Node *fast = start->next; while (fast != last) { fast = fast->next; slow = slow->next; if (fast != last) { fast = fast->next; } } return slow; } // Function for implementing the Binary // Search on linked list int binarySearch(struct Node *head, int value) { struct Node *start = head; struct Node *last = NULL; while (1) { // Find middle struct Node *mid = middle(start, last); // If middle is empty if (mid == NULL) { return 0; } // If value is present at middle if (mid->data == value) return 1; // If start and last node are overlapping else if (start == last) break; // If value is more than mid else if (mid->data < value) { start = mid->next; } // If the value is less than mid. else if (mid->data > value) last = mid; } // value not present return 0; } struct Node *createNode(int new_data) { struct Node *new_node = (struct Node *)malloc(sizeof(struct Node)); new_node->data = new_data; new_node->next = NULL; return new_node; } int main() { // Create a hard-coded linked list: // 1 -> 4 -> 7 -> 8 -> 9 -> 10 struct Node *head = createNode(1); head->next = createNode(4); head->next->next = createNode(7); head->next->next->next = createNode(8); head->next->next->next->next = createNode(9); head->next->next->next->next->next = createNode(10); int value = 7; if (binarySearch(head, value)) printf("Present\n"); else printf("Value not present\n"); return 0; } Java // Java code to implement binary search // on Singly Linked List class Node { int data; Node next; Node(int new_data) { data = new_data; next = null; } } public class GfG { // function to find out middle element static Node middle(Node start, Node last) { if (start == null) { return null; } if (start == last) return start; Node slow = start; Node fast = start.next; while (fast != last) { fast = fast.next; slow = slow.next; if (fast != last) { fast = fast.next; } } return slow; } // Function for implementing the Binary // Search on linked list static boolean binarySearch(Node head, int value) { Node start = head; Node last = null; while (true) { // Find middle Node mid = middle(start, last); // If middle is empty if (mid == null) { return false; } // If value is present at middle if (mid.data == value) return true; // If start and last node are overlapping else if (start == last) break; // If value is more than mid else if (mid.data < value) { start = mid.next; } // If the value is less than mid. else if (mid.data > value) last = mid; } // value not present return false; } public static void main(String[] args) { // Create a hard-coded linked list: // 1 -> 4 -> 7 -> 8 -> 9 -> 10 Node head = new Node(1); head.next = new Node(4); head.next.next = new Node(7); head.next.next.next = new Node(8); head.next.next.next.next = new Node(9); head.next.next.next.next.next = new Node(10); int value = 7; if (binarySearch(head, value)) System.out.println("Present"); else System.out.println("Value not present"); } } Python # Python code to implement binary search # on Singly Linked List class Node: def __init__(self, new_data): self.data = new_data self.next = None # function to find out middle element def middle(start, last): if start is None: return None if start == last: return start slow = start fast = start.next while fast != last: fast = fast.next slow = slow.next if fast != last: fast = fast.next return slow # Function for implementing the Binary # Search on linked list def binary_search(head, value): start = head last = None while True: # Find middle mid = middle(start, last) # If middle is empty if mid is None: return False # If value is present at middle if mid.data == value: return True # If start and last node are overlapping elif start == last: break # If value is more than mid elif mid.data < value: start = mid.next # If the value is less than mid. elif mid.data > value: last = mid # value not present return False if __name__ == "__main__": # Create a hard-coded linked list: # 1 -> 4 -> 7 -> 8 -> 9 -> 10 head = Node(1) head.next = Node(4) head.next.next = Node(7) head.next.next.next = Node(8) head.next.next.next.next = Node(9) head.next.next.next.next.next = Node(10) value = 7 if binary_search(head, value): print("Present") else: print("Value not present") C# // C# code to implement binary search // on Singly Linked List using System; class Node { public int Data; public Node next; public Node(int x) { Data = x; next = null; } } class GfG { // function to find out middle element static Node Middle(Node start, Node last) { if (start == null) { return null; } if (start == last) { return start; } Node slow = start; Node fast = start.next; while (fast != last) { fast = fast.next; slow = slow.next; if (fast != last) { fast = fast.next; } } return slow; } // Function for implementing the Binary // Search on linked list static bool BinarySearch(Node head, int value) { Node start = head; Node last = null; while (true) { // Find middle Node mid = Middle(start, last); // If middle is empty if (mid == null) { return false; } // If value is present at middle if (mid.Data == value) { return true; } // If start and last node are overlapping else if (start == last) { break; } // If value is more than mid else if (mid.Data < value) { start = mid.next; } // If the value is less than mid. else if (mid.Data > value) { last = mid; } } // value not present return false; } static void Main() { // Create a hard-coded linked list: // 1 -> 4 -> 7 -> 8 -> 9 -> 10 Node head = new Node(1); head.next = new Node(4); head.next.next = new Node(7); head.next.next.next = new Node(8); head.next.next.next.next = new Node(9); head.next.next.next.next.next = new Node(10); int value = 7; if (BinarySearch(head, value)) { Console.WriteLine("Present"); } else { Console.WriteLine("Value not present"); } } } JavaScript // JavaScript code to implement binary search // on Singly Linked List class Node { constructor(newData) { this.data = newData; this.next = null; } } // function to find out middle element function middle(start, last) { if (start === null) { return null; } if (start === last) { return start; } let slow = start; let fast = start.next; while (fast !== last) { fast = fast.next; slow = slow.next; if (fast !== last) { fast = fast.next; } } return slow; } // Function for implementing the Binary // Search on linked list function binarySearch(head, value) { let start = head; let last = null; while (true) { // Find middle let mid = middle(start, last); // If middle is empty if (mid === null) { return false; } // If value is present at middle if (mid.data === value) { return true; } // If start and last node are overlapping else if (start === last) { break; } // If value is more than mid else if (mid.data < value) { start = mid.next; } // If the value is less than mid. else if (mid.data > value) { last = mid; } } // value not present return false; } // Create a hard-coded linked list: // 1 -> 4 -> 7 -> 8 -> 9 -> 10 let head = new Node(1); head.next = new Node(4); head.next.next = new Node(7); head.next.next.next = new Node(8); head.next.next.next.next = new Node(9); head.next.next.next.next.next = new Node(10); let value = 7; if (binarySearch(head, value)) { console.log("Present"); } else { console.log("Value not present"); } OutputPresentTime complexity: O(n) , where n is the number of nodes in linked list.Auxilliary Space: O(1)
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List
https://www.geeksforgeeks.org/binary-search-on-singly-linked-list/?ref=next_article
Data Science & ML
Binary Search on Singly Linked List
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[0.0169998258, 0.00796668418, -0.0114072766, 0.0175838377, 0.00203293283, 0.0100488141, 0.0309272408, 0.0399159454, -0.026762981, 0.0225860253, -0.0206181593, 0.0357516855, 0.0074525, -0.00792859681, 0.0246935468, 0.0194120482, 0.0254806932, 0.00975046, -0.0499711074, -0.0418203324, -0.0324253589, -0.02785483, -0.0122388583, 0.0184598546, -0.047457315, 0.00453561451, 0.00476414058, 0.0166316442, -0.0106264781, -0.0149430875, -0.00454513635, 0.00411347533, 0.0137115838, 0.00346915773, -0.000934736454, -0.000131025765, 0.0195770953, 0.0142702041, -0.0136481049, -0.030114701, -0.00137671293, -0.000691927155, -0.0119595481, -0.0272200331, -0.00349772349, 0.0353200249, 0.0280579645, -0.0122261625, 0.0335679911, -0.00175362278, -0.00811903551, 0.000178536255, 0.0268645491, -0.00263440167, -0.00712875417, 0.0204912014, -0.0226748977, 0.0205419846, -0.0326538831, 3.68974906e-05, -0.0159333684, 0.0162634626, -0.00379925151, -0.0179901067, 0.0255060866, 0.014105157, -0.0434708, 0.0351676755, 0.0240841433, -0.0175203569, -0.0551510379, 0.0150192631, 0.0188915152, -0.0137242805, -0.0273723844, 0.00799207576, -0.0456291065, 0.00801746827, -0.0358532518, -0.00128149358, -0.0250109453, -0.0264836717, -0.00636382541, -0.0151716135, 0.02981, -0.0352184586, -0.0037802076, -0.0471272245, 0.0263313204, 0.0274993442, 0.00245031086, -0.04474039, 0.0183075033, -0.00844278093, -0.00425313041, 0.0300893094, 0.00833486579, -0.00802381616, -0.019361265, 0.056115929, 0.0256457403, -0.00118389376, 0.00266614137, -0.00436104555, 0.0184090715, 0.0172791351, -0.00707162265, 0.00295973429, 0.0626162365, 0.0403729975, 0.00952828117, -0.0184344631, -0.0244650207, 0.0106518697, 0.00660822168, -0.0230811667, 0.0144098597, -0.0559127927, -0.00926801562, 0.0253537353, 0.0248839855, 0.00999803, 0.00399286393, 0.0357516855, -0.0346344449, 0.0272454266, -0.0287181512, -0.0122325104, -0.0299623515, -0.0209101662, 0.00996629056, -0.034278959, 0.00359294284, -0.0128292181, -0.0205292888, 0.0131910518, 0.0232716054, 0.0475588851, -0.0134322746, -0.0365134403, -0.00328506716, -0.0439532436, -0.019247001, 0.0432168804, -0.00862687174, 0.00804920774, 0.000649078458, 0.00976315606, -0.0522055887, 0.0207070317, -0.0156540591, -0.0146764731, 0.0413378887, 0.00776354969, 0.0175584462, -0.0150573505, 0.024274582, -0.00474827085, -0.0387987047, 0.00404047361, 0.0139528066, -0.0236017, 0.00266296742, -0.0381385162, -0.038316261, 0.0324507505, 0.0214307, -0.025607653, -0.0786638632, 0.031562034, 0.00366911828, 0.0103662116, 0.0126768677, 0.0255314782, -0.0467463471, 0.00822695065, 0.0362849161, -0.0157429297, -0.0075477194, -0.0303178355, 0.0153874448, -0.0200341474, 0.00702718692, 0.0101948166, -0.0184725504, -0.0177488849, 0.0240714476, -0.00662091793, -0.00313589, 0.0164539013, -0.0551510379, -0.0387479216, 0.0455275364, 0.0163269415, 0.00505297258, -0.00581155345, -0.00485618599, 0.00657013431, -0.0284388419, 0.0389256626, 0.0129561778, -0.00808094721, -5.93633049e-05, 0.0298353918, 0.00718588568, -0.00999168213, -0.00281055737, -0.0192343052, 0.00416425895, -0.0102392528, -0.0286165848, 0.0115913674, -0.0322730057, -0.0290228538, 0.0233350843, 0.00836660527, 0.0108232647, 0.048269853, -0.0420488566, 0.00400873413, -0.0131529644, 0.0284896251, 0.0409316197, -0.0136227133, -0.0200341474, -0.0391034074, 0.0258869641, 0.0191835221, 0.0421250351, -0.0192977861, 0.034152, 0.0146129942, -0.0132291391, -0.00688118394, -0.0136861922, -0.0192596968, -0.0271946415, -0.0196151827, 0.0273216013, 0.0353962, 0.0113247531, -0.00723032141, -0.00251061656, 0.034913756, -0.00700814323, -0.0113628404, -0.0360563882, -0.0299623515, 0.0333902463, 0.0182313286, 0.0433946252, 0.0098393308, -0.0277786534, -0.0516977496, -0.0107343933, -0.0048371423, 0.00554493908, 0.0576902218, -0.0121055515, -0.0242872778, -0.015895281, -0.00403729966, 0.0126895634, 0.0296576489, 0.0376560725, -0.0238048341, 0.0403983891, -0.0075477194, 0.0076302425, -0.00354850711, 0.00299782213, -0.00621782243, -0.0118071977, 0.0363357, 0.00106248911, -0.0310288072, -0.0276516955, -0.0188788194, 0.00920453575, 0.0348883644, 0.00764928665, 0.0102456007, 0.00517993188, 0.00447530858, 0.0264582783, -0.0276009105, -0.00670978893, -0.0186502934, -0.031790562, 0.0293783396, -0.00553224329, 0.0254172143, -0.0259631388, 0.00238048332, 0.0206689443, 0.0398143791, -0.023525523, -0.0327554494, -0.0252140798, -0.0175330527, 0.0245665889, -0.0276009105, 0.0396874174, 0.0138385436, -0.0286927596, -0.00786511693, -0.00508788647, 0.00177584065, -0.00458005, 0.0043578716, -0.00938862655, -0.0435469747, -0.00431661, -0.0348121896, -0.0196786616, 0.024046056, 0.0343043506, 0.0140670696, 0.017076, -0.00603373162, 0.0266868062, -0.0051323222, -0.00525928102, 0.0547447689, 0.00210593431, 0.00269946805, 0.015082743, 0.0214307, -0.0393319316, -0.0320952646, -0.0063701733, -0.0072430172, -0.00933149457, -0.00615751697, 0.0233604759, -0.056115929, -0.0281849224, -0.0257853959, 0.021214867, -0.0141305495, 0.0149176959, -0.000869669951, 0.00808729511, -0.0206562486, 0.00278675254, -0.0456798896, -0.0217227042, -0.0214941781, 0.0556588769, -0.0242999736, 0.0011354906, 0.0218750555, 0.0199579727, -0.00776354969, 0.027397776, -0.0172029603, -0.00392938452, -0.0341773927, 0.0221289732, 0.0103916032, 0.0137115838, 0.00333267683, -0.0331363268, 0.047051046, -0.00975046, -0.0116929347, -0.0146383857, 0.00486570783, -0.0074398038, 0.0119468523, -0.0234874357, -0.0066590053, -0.00268677226, -0.0287943278, -0.0450450927, -0.0185106378, 0.0167586021, 0.0281087477, 0.0587566793, -0.000354493648, -0.0139528066, 0.0294291228, 0.0214814823, -0.00954097696, -0.00631621573, -0.00254235626, 0.00184884213, 0.0343043506, -0.0208847746, 0.0470256545, 0.0215068739, 0.0127022592, -0.0231700372, -0.0230049919, 0.0483968146, 0.0304447953, 0.00954732485, -0.0168728661, -0.0257600043, -0.023639787, 0.0316889957, -0.0111660538, 0.0302924439, -0.0223067161, -0.0113374488, 0.0279817879, -0.0119849406, -0.0219512302, 0.0410077944, 0.016187286, 0.00271851197, 0.0104106469, -0.0631748512, 0.0126387794, -0.00507836463, 0.0319175199, -0.012194423, 0.0218496639, 0.0316128209, -0.0141432453, -0.0158825852, -0.0179266259, 0.0272962097, 0.0138893267, -0.0599247031, 0.00975046, -0.00791590102, 0.00959810894, 0.0107090008, -0.0320190899, -0.0103662116, 0.00401508203, -0.0157937128, 0.0103725595, -0.0188280363, -0.0166824274, 0.0416679792, -0.0157556254, -0.0440040268, -0.0414140634, 0.022484459, 0.078765437, 0.000263440161, 0.018205937, -0.0114517119, 0.00355485524, -0.018091673, -0.0119214607, 0.0138004553, 0.00452609221, -0.0124356449, 0.0345836617, 0.014905, 0.00738267228, 0.0351676755, 0.0081317313, 0.0181424581, -0.0264582783, 0.0240968391, 0.000361039973, 0.00515454, 0.0204658099, -0.0179012343, 0.0244269334, -0.00365959643, 0.0273216013, 0.0129625257, 0.00141162658, -0.000321563624, -0.0109121362, 0.0280071795, -0.0112549253, 0.0131910518, 0.027397776, 0.0351676755, 0.0145622101, 0.0452228375, -0.00106090214, -0.0100297695, -0.00634795567, 0.0154001405, -0.0129752215, 3.22109154e-05, -0.034913756, 0.00759850303, -0.00733188866, 0.0139401108, -0.00754137151, 0.0212021712, -0.0109756151, 0.0148034329, 0.0232081264, -0.0429629646, -0.0155270994, -0.00338028627, 0.0373513699, -0.0358024687, -0.0346598364, 0.0159968492, 0.0468986966, 0.0153493565, -0.0504789427, -0.0366404, 0.0363864824, -0.0259758346, -0.0377068557, 0.00757311098, -0.0101122931, 0.0155524909, -0.0580457076, -0.024388846, -0.0364626572, -0.0245665889, 0.0127974786, -0.0146256899, -0.00263757561, -0.0200468432, 0.0136861922, 0.00662726583, 0.00581790134, 0.0198183171, 0.0244777165, 0.0155651877, 0.0182186328, -0.0175965335, 0.0158191063, 0.0229542069, -0.0215957444, -0.000381670834, -0.0412363186, -0.0306225382, -0.0112358816, 0.00557033112, 0.0294291228, -0.00652569858, -0.0325523168, 0.020580072, 0.0235128272, 0.00421186863, 0.0157175381, 0.00941401813, 0.0118198935, -0.00124896027, 0.000371355418, -0.0308002811, 0.0181551538, 0.05017424, -0.00653204648, -0.00363420462, 0.00792224891, 0.00351041951, 0.0250617284, 0.0227891617, -0.00662091793, -0.0238683131, 0.0180662815, 0.0172283519, -0.0394842848, -0.00248681172, 0.00381512125, -0.0159714557, 0.0134322746, -0.0311049819, 0.00516088773, 0.0325777084, -0.034152, 0.00211386918, -0.00917914417, -0.022827249, -0.00939497445, 0.0111343144, -0.0102709923, 0.0229415111, -0.0167839956, -0.0102709923, 0.023982577, 0.019704055, -0.0327808447, -0.0382654779, -0.00992820226, 0.0169109534, -5.16267319e-05, 0.0274993442, -0.0236651786, -0.00968698, -0.0137496721, -0.0205673762, -0.00692561967, 0.00770641817, 0.0212910436, -0.005982948, 0.0332378969, 0.011153358, 0.00124896027, -0.0128673064, -0.00657013431, -0.0322983973, -0.00462131156, 0.00331680686, 0.00730014918, 0.0336441658, 0.0109756151, 0.018205937, -0.0326792747, 0.0141686369, 0.000183495591, 0.00982028712, 0.0110200513, -0.00640826114, -0.0199071895, -0.0543385, 0.00889348611, -0.00416425895, -0.00624956237, 0.0132418359, 0.0117183262, -0.0169744343, 0.00306606269, -0.00154255319, -0.0165935569, -0.0148796076, -0.0149557833, -0.00401190808, 0.0178377554, -0.00949654169, 0.015146222, -0.0329839773, -0.0169236492, -0.00429756613, -0.0105629982, 0.00762389461, -0.00684944401, 0.0149176959, -0.00623686658, 0.00191549561, 0.0354215913, -0.0183328968, -0.00016296393, 0.00407538749, 0.025950443, 0.00334537262, 0.0356247276, 0.00123071, 0.0854180902, -0.012308686, -0.0225098506, -0.0304447953, 0.00255346508, -0.00210910826, -0.00902044494, -0.00562428869, 0.0227891617, 0.0673899, 0.0104995184, -0.0007383466, -0.0283880569, 0.0111279665, 0.0036818143, -0.0190946497, 0.000158202951, 0.0388240963, -0.00301369186, 0.00191866956, 0.0242364947, -0.0114771035, -0.0270422902, -0.00307558454, 0.014905, 0.00349454954, 0.0205292888, -0.0193866566, 0.00752232736, -0.0166062526, -0.00381512125, -0.00787781272, -0.0139528066, -0.0484729894, 0.0024217451, 0.00727475714, 0.000931562507, -0.0238429215, -0.0213799141, 0.00941401813, -0.0297338236, -0.00869669951, 0.00285816705, -0.0123531213, -0.00797938, -0.0270676836, -0.0115532791, -0.0306479298, 0.00487523, 0.0296830405, -0.00187899487, 0.00849991292, -0.0300639179, 0.00170918705, 0.0417187661, -0.0400682949, 0.00173616584, 0.0199325811, 0.00408173539, -0.00714145, -0.0168601703, -0.00246935477, 0.017164873, 0.000830788689, 0.0105249109, 0.0117437178, -0.0209355578, -0.010055162, -0.00915375166, -0.00462765945, 0.0110771824, 0.0119976364, -0.0314096846, -0.00335172052, -0.0191200431, 0.0149557833, -0.0330347605, -0.00719223358, 0.0115850186, -0.00329776295, -0.0192596968, 0.0052243676, 0.0053068907, -0.023754051, -0.0236143954, 0.00434200186, 0.00267566321, -0.00516406214, -0.0216592252, 0.0248205066, 0.00554811303, -0.0181932412, 0.0070525785, 0.0161618944, -0.0253918227, -0.00742710801, -0.034685228, -0.00691292388, -0.0116675422, -0.021963926, 0.0138639351, 0.0312319417, 0.0217861831, 0.00194406137, -0.00853165239, 0.0102773402, -0.00205356372, 0.00404047361, 0.0132672274, 0.0200468432, -0.0353454165, -0.0148415202, -0.00343741802, 0.0214941781, -0.0187518615, 0.0405761339, 0.00279627438, 0.0166189484, 0.0236778744, 0.0162253752, 0.0192343052, -0.0209609494, -0.0122007709, -0.0479905456, -0.00634795567, -0.00668439735, -0.0264328867, 0.000279706786, 0.0158571936, 0.0215957444, -0.0323999673, -0.0348629728, -0.0142448125, 0.011616759, 0.0333902463, 0.00878557097, -0.015082743, 0.0109883109, 0.056928467, 0.0339742601, -0.00721127773, -0.00475779269, -0.0171267837, 0.0323491804, 0.0149938716, 0.0511391312, -0.0204658099, -0.0347614065, 0.0386971384, 0.0067732688, 0.0217734873, 0.0146256899, -0.0143463798, -0.00837930106, -0.0238048341, 0.000561794091, -0.0175203569, 0.0153366607, -0.0431660973, -0.00597025221, -0.0124166012, 0.0106137814, 0.0231954306, -0.0026645544, 0.0291498117, 0.00693196757, -0.0147018656, -0.00768737448, 0.0109184841, 0.00670344103, -0.0142829, 0.0498949327, 0.0247443318, 0.0187645573, -0.00818886235, 0.0212021712, -0.00149335654, -0.000804603391, 0.0150192631, 0.0265852381, -0.0416933745, -0.0131529644, 0.0229034238, 0.00224876334, -0.0258488748, 0.0373005867, -0.00633843383, 0.0179774109, 0.0290228538, -0.00416425895, -0.00282484037, 0.00383099122, 0.0163650289, -0.00255346508, 0.0115088439, 0.00452926615, 0.00796668418, 0.0134068821, 0.0163523331, -0.0187772531, -0.00378338154, -0.00337393838, 0.00587503286, -0.0315112509, 0.00251855142, 0.00970602408, 0.0323999673, 0.00830947421, -0.019767534, -0.001712361, 0.0226495061, -0.00364055252, 0.0127276508, -0.0244015418, -0.0209863409, 0.00923627522, -0.0114644077, 0.000685975945, -0.00524658523, -0.0168982577, 0.0281849224, 0.0059067728, 0.0380369499, 0.00772546185, -0.0416171961, -0.0201357156, 0.0118262414, 0.0052243676, -0.0144987311, 0.0196278784, 0.0032882411, 0.0131402686, -0.00847452, -0.0116802379, 0.0278294384, -0.00433247956, -0.0172410477, 0.0190057792, -0.0170886964, -0.0612450764, -0.061956048, -0.0192343052, 0.0155017078, -0.0107788285, -0.055201821, 0.0278802216, -0.0235636123, 0.0194120482, 0.00679231249, -0.00843008514, -0.0252775587, 0.0118579809, 0.00595120853, 0.00884270202, -0.0051101041, 0.00174251385, 0.0234112609, 0.00804286, 0.00155604258, 0.0109057873, 0.00300099608, 0.0191835221, 0.0188915152, 0.000969650224, 0.0115215397, -0.00709066633, 0.0328316279, 0.0179520193, -0.00427534804, -0.00107915245, -0.0551510379, -0.001293396, -0.0075477194, -0.0354723744, -0.0161491986, -0.00487840408, 0.0152985733, 0.0341773927, -0.000510216923, -0.0280071795, 0.0252394713, 0.00110771821, -0.0134449704, -0.0257092211, -0.00261535775, -0.0219385345, -0.0182694159, 0.0114771035, 0.0277024787, -0.00831582211, -0.00909027271, 0.000599485065, -0.00425313041, -0.00822060276, 0.0153112691, -0.0418711156, -0.0133307073, -0.00892522559, 0.0259123556, 0.0227383766, 0.00417060684, 0.000219996335, -0.0327046663, -0.00975046, 0.00124419935, 0.0262043606, 0.0209736452, 0.00812538341, 0.0013846478, 0.0567253307, -0.0390018411, -0.00598929636, -0.0184217673, -0.0385955721, -0.0151335262, -0.0452482291, -0.0132037476, 0.0185233355, -0.0155524909, -0.00620512664, -0.00839199778, 0.0165681634, 0.00438961154, 0.0123150339, -0.0439278521, -0.0107915243, -0.0125562567, 0.0190692581, 0.0240587518, 0.0380115584, 0.0338980816, -0.0199960601, 0.0139528066, -0.0225733295, -0.0290482454, -0.00281849224, 0.0152097018, -0.0237413533, -0.00895696506, 0.003150173, -0.0115532791, 0.0390018411, -0.0277024787, 0.00400556, -0.022890728, 0.0214687865, 0.00173775281, -0.00538624031, 0.0206943359, 0.0122388583, -0.0200722367, -0.0130006131, 0.029302163, -0.0213926099, 0.000346161949, -0.00203134585, -0.00434834976, -7.48860402e-05, -0.0302924439, 0.00194564846, 0.0158064105, 0.00787781272, -0.022776464, 0.016187286, -0.0145876016, -0.00158381497, 0.0296322573, -0.00177425356, -0.00393890636, 0.0136481049, -0.00429439219, -0.00595755642, -0.00669074524, -0.0214433949, 0.0332378969, 0.0378592089, 0.000757787202, -0.0241730157, -0.0303686205, 0.000833169208, 0.0217607915, 0.015489012, 0.0182694159, -0.00504345074, -0.0104677789, -0.0161745902, 0.0141813327, -0.00480857631, 0.0196786616, 0.0244650207, -0.00954097696, -0.00531323906, 0.00962984841, 0.0307494979, -0.0265598465, 0.00729380082, -0.0183963757, 0.0325777084, -0.00248998567, 0.033694949, 0.00356437708, -0.00624956237, -0.00305971457, 0.00951558538, -0.00969332829, 0.0303178355, 0.0134830577, 0.028667368, -0.00537354453, 0.0046530515, 0.00530371675, -0.0114199724, 0.00773815811, 0.00642413134, 0.00703988271, 0.00953462906, -0.0190057792, 0.00015929401, -0.0320952646, -0.00930610299, 0.0119341565, -0.0179139301, 0.0206943359, 0.0244650207, 0.0169617366, -0.0150446547, 0.0229415111, 0.00185836398, -0.00967428461, -0.00278040464, 0.0159714557, 0.0135084493, -0.00231065578, -0.0170633048, -0.00178218854, 0.00354533317, -0.0356501192, 0.00282007921, -0.0296068657, 0.0125245163, 0.027804045, -0.00893792138, -0.00636382541, -0.014739953, -0.00368498825, 0.00621147454, -0.0417949408, 0.00437374134, 0.0167205147, 0.00896966178, 0.00458322419, -0.0172791351, -0.0113374488, 0.00531641301, 0.0686087, -0.0349899307, -0.0229415111, -0.0140924612, 0.0125054726, -0.0176219251, 0.00458639814, 0.0118198935, 0.00232493877, -0.0303432271, 0.00967428461, -0.0208720788, 0.0155905792, 0.0115786707, 0.0119214607, 0.0210625175, 0.0155524909, 0.000310454692, 0.0090966206, 0.00344376592, -0.00216306583, 0.0185614228, 0.0457560644, 0.0325777084, 0.0068557919, 0.0110771824, -0.0322222225, 0.0134322746, -0.002861341, -0.0046530515, 0.021671921, 0.00276612164, -0.0194120482, -0.0183963757, 0.0079349447, 0.0101948166, -0.0154128363, 0.00639556535, -0.023576308, 0.014739953, -0.0149938716, 0.0212783478, -0.00534815248, 0.0266106296, 0.0202499777, -0.0134576662, 0.00488792593, 0.0138639351, -0.0182948075, 0.00154096622, -0.00170760008, 0.0143590756, -0.014905, -0.0170886964, -0.0076302425, -0.0124166012, 0.0193231776, 0.0154001405, 0.0259250514, 0.00602103584, -0.0224590674, -0.00134179916, 0.0176346209, 0.010632826, 0.0261281859, -0.0046244855, -0.0384686105, -0.00109026139, -0.0270676836, 0.00210910826, -0.0269407239, -0.00156397757, 0.0406523086, -0.012772087, 0.00201071496, -0.008671307, -0.018497942, -0.00273120799, -0.0138766309, 0.000393374881, -0.00336441654, 0.020808598, -0.0109184841, -0.00207895553, 0.0134703619, -0.0064685666, -0.0179901067, -0.000521722599, 0.00792224891, -0.0215830486, 0.0176727083, -0.00952828117, -0.0431914888, 0.000819679757, 0.0114517119, 0.0194374397, 0.00693831546, 0.0239064, 0.00215195701, 0.0338219069, -0.00150525896, -0.00192977849, -0.0151970061, 0.00479588052, 0.0192216095, 0.0183836799, 0.0354215913, -0.0185614228, 0.00630034599, 0.018205937, 0.0271184668, 0.00536402268, 0.00807459932, -0.000899029197, 0.0157429297, 0.0155778835, 0.0232589096, 0.00378338154, -0.0188915152, -0.00679231249, -0.00141480064, 0.0186883807, 0.00290260278, -0.0108105689, -0.0194501355, -0.0171902645, 0.00701449113, -0.00632891199, 0.0137242805, 0.0243253652, -0.00389129692, -0.0104169948, -0.0209736452, -2.20194706e-05, -0.0180789772, 0.0344567038, -0.00447213463, -0.00104503217, 0.0214560907, -0.0151081346, -0.0166697316, 0.035091497, -0.00719223358, 0.00651935, -0.000432454486, 0.000965682731, 0.00927436352, -0.0117627615, 0.0134322746, 0.000970443711, -0.0188026447, -0.0139020225, -0.0044562649, -0.0213799141, 0.0153239649, -0.0233731735, 0.0108359605, -0.00301527884, -0.00025371986, -0.00322317448, -0.0313589, -0.0042594783, 0.0213164352, -0.000958541292, -0.0156540591, 0.00957906526, 0.00619877875, -0.0264836717, -0.0362087376, 0.0101948166, 0.0200722367, -0.0101249889, 0.0430391394, -0.000232493869, 0.0307494979, 0.0150954388, 0.0124356449, 0.0287689343, 0.0066590053, 0.00253442139, -0.0178758428, 0.0178758428, -0.0081317313, -0.0253029503, -0.00995359477, 0.0138385436, -0.0101249889, 0.00556080928, 0.0302670524, 0.00827773381, 0.00741441222, 0.00660822168, 0.00711605838, -0.0182567202, -0.0012799066, 0.0141813327, -0.00161079376, -0.013813151, 0.00301051792, 0.0259885304, -0.00992820226, -0.00298512611, -0.016009545, -0.00485936, -0.00140051777, -0.0135592334, -0.0096425442, 0.00699544698, -0.0129053937, 0.0153874448, 0.0032342833, -0.0272454266, -0.000872050412, -0.0112041421, 0.00160285877, -0.00898870546, -0.010632826, 0.0258742664, 0.0175965335, -0.0165173803, 0.00957271736, 0.00167109934, 0.0172156561, 0.0144352512, 0.00189327775, 0.00757945888, 0.000273557205, -0.011445364, 0.00865861122, 0.00750963157, -0.0190438665, 0.0158191063, 0.00136639748, 0.00842373725, 0.00327554508, -0.0105947377, 0.0188153405, -0.0332125053, -0.0260012262, 0.0393827185, 0.017050609, -0.0107026529, -0.00962984841, 0.0347614065, 0.0126451273, -2.33832889e-05, -0.0372498035, -0.00297719124, -0.0176981, 0.0171140879, -0.02716925, -0.0308002811, 0.0118579809, -0.00205197674, -0.00559889711, 0.0244269334, 0.0103090797, -0.0214180015, -0.0130894845, -0.0365642235, 0.00760485092, 0.0272962097, -0.0231573414, 0.0202372819, -0.00440230733, 0.0106010856, -0.0392303653, -0.0362087376, -0.00550050335, -0.00383099122, 0.0232462138, 0.0183202, -0.00787781272, 0.0147272572, 0.00161872874, -0.0251632966, 0.0163269415, -0.0176981, 0.0178377554, -0.0094901938, -0.014905, 0.0184344631, 0.000889507297, 0.0113945808, -2.68548283e-05, 0.0135592334, -0.0192596968, 0.00529419491, -0.00395795051, 0.00154731423, -0.00288514583, -0.00320730451, 0.000345566834, -0.0233477801, 0.0314350761, 0.0349645391, 0.0212275628, -0.0222432371, -0.0147907371, 0.0162888542, -0.011273969, 0.00212973915, -0.0442579463, 0.0151589178, 0.00301686581, 0.00111724017, 0.0234366525, -0.00484666415, 0.0024217451, 0.00621464849, 0.00543067604, -0.0195009205, 0.00353581132, 0.00146082335, -0.0133814905, 0.00803651195, -0.00333902473, 0.00597342616, 0.0124737332, 0.0172283519, -0.0171394795, 0.00251220353, -0.000778021291, -0.00163777254, -0.00703988271, -0.0055195475, -0.0101884687, 0.00430074, -0.0179393236, -0.0120674632, 0.0255314782, 0.00580203161, 0.0210625175, 0.00306288851, -0.00792859681, 0.00884905, -0.00284071, -0.022827249, 0.0327046663, 0.00224876334, -0.0230811667, 0.0118706767, 0.00854434818, 0.0013973437, -0.0164665971, 0.000489586091, -0.00489427382, 0.0186502934, -0.00179012353, 0.00293434248, -0.0378846, -0.0113501446, 0.0116548464, -0.0139147192, 0.0178123638, -0.0122896424, -0.0101313377, 0.00206308556, -0.010696305, -0.00611942913, -0.0194755271, 0.0220527984, 0.0111660538, -0.0159841515, 0.0248585939, -0.0167839956, 0.00062646385, -0.00783972535, 0.0334156379, 0.0188026447, -0.0120547675, 0.00408490933, -0.018548727, -0.00230748183, -0.00761754671, -0.00787146483, -0.000671693066, 0.00413569296, -0.010696305, -0.0112803169, -0.0112358816, -0.0262043606, -0.00577029167, -0.000683198741, -0.00486570783, -0.0138258478, -0.012772087, 0.017164873, 0.0295306891, 0.0161491986, -0.00841738936, 0.0319429114, 0.028261099, 0.0168601703, 0.00136481051, 0.0352184586, -0.0203388501, 0.00423726, 0.0112168379, -0.0102138603, 0.0124737332, 0.031790562, 0.0117627615, 0.00889983401, -0.0177107956, 0.0273723844, -0.0195390079, -0.0392303653, 0.00398334209, -0.0113184052, 0.0192723926, 0.0187010765, -0.00269312016, -0.00931879878, 0.0239064, 0.0244396292, 0.000800239155, 0.0338473, -0.0279563963, 0.030571755, -0.00639556535, 0.0114580598, -0.00234715664, -0.0276516955, 0.00905853231, -0.0294037312, 0.015082743, 0.0111977942, -0.0104233436, 0.00622099638, 0.0180789772, -0.0138385436, -0.027448561, -0.0184217673, 0.0149557833, 0.00190121273, 0.00957271736, 0.00825234223, -0.00103947776, -0.00323587051, -0.00990915857, 0.00299623515, -0.0171775687, -0.00649713259, -0.00654474227, 0.00498949317, 0.0278294384, -0.0140924612, -0.00729380082, -0.000190141116, -0.00553224329, 0.00486570783, -0.00378338154, -0.0174695738, -0.0054211542, 0.00485936, -0.00287245, 0.0199071895, 0.0258488748, -0.00245824573, 0.016936345, -0.0256965254, -0.017685404, 0.0147272572, 0.0205927677, 0.00975680817, -0.0118325893, -0.0170633048, -0.020173803, 0.00184249412, -2.81194607e-05, -0.0118262414, 0.0125372121, 0.00836025737, 0.00867765583, -0.00671613729, -0.00485618599, 0.000418965064, -0.0119849406, 0.00753502315, -0.00521801971, 0.0183709841, 0.00358024705, 0.00661456957, 0.0138258478, 0.0233731735, -0.00131720083, 0.0118198935, 0.0282864906, -0.00567189837, 0.0045483103, -0.00359929097, -0.0109629193, -0.00145209488, -6.41738661e-05, -0.00625591027, -0.0209990367, -0.00173457887, 0.00804286, -0.0300131347, 0.00572585594, -0.0182186328, -0.0107153496, -0.00601786189, 0.0254172143, -0.00063122483, 0.01965327, -0.00596390432, 0.00520214951, -0.00298036519, -0.00590359885, -0.0229161195, -0.0230938625, 0.00490379566, 0.00544337183, -0.00568459416, 0.0214941781, -0.0153620522, 0.020859383, -0.00722397352, 0.00415473711, -0.00244713691, -0.00203769375, -0.00765563454, 0.0266360212, 0.0163777247, 0.0069764033, 0.00507836463, -0.00534180459, -0.00234239572, 0.0250109453, 0.00863956753, -0.00294703851, -0.0148161286, -0.0115532791, 8.67388662e-05, 0.0139020225, -0.00265344535, 0.018091673, -0.0197802298, -0.00109898986, -0.0344820954, -0.0321714394, 0.0272708181, 0.000389804161, 0.000650268688, 0.0195009205, -0.00708431844, -0.0217480958, -0.00572903, 0.0295306891, 0.000647888228, -0.015082743, -0.0145241227, -0.000238841836, 0.00979489554, -0.0110644866, -0.0044562649, 0.00554811303, 0.0182440244, 0.00383099122, -0.00118944817, 0.013584625, 0.0131529644, 0.0112803169, -0.0128673064, 0.0136861922, 0.000896648737, 0.00448483089, -0.00523706339, 0.00564333238, -0.0228653364, 0.00933784246, 0.00439278549, 0.00338980835, 0.0180789772, 0.000752629479, 0.0168601703, -0.0151081346, 1.23053633e-05, 0.0198437087, 0.00660822168, 0.0136481049, 0.00599564426, 0.00484666415, -0.00973776355, 0.0153874448, 0.0111977942, -0.0245919805, 0.0187010765, -0.0134449704, 0.0166951232, -0.0106137814, -0.0114390161, -0.0248205066, -0.0029391034, -0.0246554594, 0.00747789163, -0.0181297623, 0.0287181512, 0.00843008514, -0.00269788108, 0.00814442709, -0.00849991292, -0.00417378079, -0.0458068475, 0.00192819152, -0.0120357238, -0.0184471589, -0.0179266259, -0.0139528066, 0.00332315476, -0.00049434707, 0.00690657552, -0.0388494879, 0.00535132643, 0.00381829543, 0.0107534369, -0.0112612732, -0.00576711772, 0.0133941863, 0.00273914286, -0.00378338154, -0.0109438756, 0.0114834514, 0.0213418268, -0.00520214951, -0.0169236492, -0.0226495061, -0.0145749059, -0.0304701868, 0.00254553021, -2.62349113e-05, 0.00557667902, -0.00448483089, 0.00219639274, -1.78908194e-05, -0.00408490933, 0.0122896424, -0.0144733386, 0.0101440335, -0.0166697316, 0.00276770862, -0.00634160778, -0.0191962179, 0.00238048332, 0.00926801562, -0.0076302425, -0.0144606428, 0.0160730239, 0.0413632803, 9.48225861e-05, 0.0164919887, -0.0236778744, 0.0139655024, -0.014854216, -0.00776354969, -0.0238429215, -0.00628130231, 0.00563381054, 0.0199452769, 0.00348820165, -0.00211863, -0.00054354372, 0.0361579545, -0.0157937128, 0.00758580677, 0.0463400744, -0.0115659749, -0.00369133614, -0.0107280454, -0.0258742664, -0.0219258387, -0.00547511177, -0.0113818841, 0.0155017078, 0.0221543647, -0.0190438665, 0.000337830279, 0.00657648221, -0.0113057094, -0.00420869468, 0.00510375621, -0.0105439546, 0.000218012603, -0.0336441658, -0.0118833734, -0.032476142, 0.0197929256, 0.00797938, 0.00376116368, 0.0081317313, -2.16351218e-05, 0.00643365318, -0.013813151, -0.00833486579, -0.000961715297, 0.00965524092, -0.0272200331, -0.0132164434, 0.020580072, 0.0216211379, -0.00506884279, -0.0124800811, -0.0287689343, -0.0193993524, -0.00742710801, -0.00909027271, 0.00687483605, -0.00165364239, 0.021671921, 0.0108677, 0.0103408201, -0.00606229762, -0.0143463798, -0.0115850186, -0.0154636204, 0.0083285179, 0.0180281941, 0.0265852381, 0.00734458491, -0.0092934072, -0.0127466945, 0.0207959022, -0.00486253388, 0.00449752668, 0.00217734883, -0.043343842, -0.0100424662, 0.00479588052, -0.0196024869, 0.0211767796, 0.00248205056, -0.0147526488, -5.85202179e-06, 0.0230049919, 3.55336742e-05, 0.0119976364, 0.0183202, -0.0145749059, 0.0144225555, -0.0140670696, -0.027397776, 0.00265503256, -0.0190692581, 0.00210752129, 0.0038786009, -0.0128736543, -0.0153620522, 0.0179139301, 0.0150446547, -0.0025058554, 0.0012267424, -0.00674787676, 0.0119912885, 0.0100170737, -0.0121690314, -0.0127403466, -0.0185614228, 0.00242333207, 0.00412617112, 0.0126387794, 0.00207102043, 0.010055162, -0.011788154, -0.0260774, 0.00325650116, 0.0104677789, -0.0121626826, -0.000211267892, 0.00207102043, -0.0256584361, 0.0150192631, -0.00195040938, -0.0224336758, 0.0157937128, 0.00047371618, -0.00637334725, -0.00388812274, -0.00215830491, -0.00198056223, -0.00130926585, -0.0229161195, -0.00879826676, 0.00220908853, -0.0140162865, 0.0311303753, -0.00816981867, 0.0139147192, 0.00153382483, 0.0150065674, 0.0158444978, 0.0158191063, 0.0169998258, -0.00446896069, 0.0201484114, -0.000131422523, 0.00652569858, 0.000507043, 0.00390716689, 0.00825869, -0.034685228, -0.00415791105, -0.00436421949, 0.0160857197, -0.0137877595, 0.00144177943, 0.00873478688, -0.00785876904, 0.00999168213, -0.0116040632, -0.00866495911, -0.0179012343, 0.00740171643, -0.000565761526, -0.00576394377, 0.00028010353, -0.00180281943, -0.00066137762, -0.0143463798, -0.016707819, 0.00995994266, -0.00356755103, 0.00698275119, 0.0113755362, 0.00263757561, 0.00190914772, -0.0169744343, 0.00366594433, -0.00590994675, -0.00969332829, 0.00933784246, -0.0225225464, -0.0123912096, -0.0100995973, -0.0100234216, 0.00461178971, -0.00407538749, -0.0183963757, 0.0131021803, 0.0342535675, 0.0299877431, -0.0151843103, -0.0117119784, 0.00121166604, 0.00451974431, 0.00312478119, 0.00804286, 0.00603373162, 0.016187286, -0.0100170737, -0.00418647658, -0.027804045, -0.000714541762, 0.00709066633, 0.0231446456, -0.0207959022, -0.00818251446, 0.0022249585, 0.0134068821, 0.00553541724, 0.00561476685, 0.0139147192, 0.00395477656, -0.00679231249, 0.0255187824, -0.0174949653, -0.00248681172, -0.00537989242, 0.00733823655, -0.012835566, -0.0145749059, -0.0162761584, 0.0018440811, -0.00526880333, 0.0156286675, -0.00191073469, -0.0128736543, -0.0189803876, 0.00328189298, 0.00783337746, 0.0215449613, 0.00841104146, -6.40746803e-05, -0.00568142, -0.0052084974, -0.0151970061, 0.0135592334, -0.00802381616, -0.00219163159, 0.0104931705, 0.0121880751, 0.0180154983, -0.00420234678, 0.010404299, 0.0264836717, -0.00074667827, 0.00530371675, -0.014105157, 0.00676057255, 0.00887444243, 0.00142511609, -0.0172537435, -0.0194501355, -0.00693831546, -0.00355802919, 0.00823964644, 0.00480222842, 0.00465939939, 0.0300131347, -0.012429297, 0.0113247531, 0.00407856144, -0.000981552643, -0.000649475201, 0.00298353913, 0.00749058789, -0.0132418359, -0.0126260836, -0.00224876334, 0.019881798, 0.0137750637, -0.00690022763, -0.00801112, 0.023982577, 0.0130767887, 0.00461178971, -0.000447927625, -0.00437056739, 0.00177901459, 0.00497679738, 0.00702718692, 0.00943306182, 0.00837930106, 0.00424678251, 0.00842373725, 0.0182567202, -0.0130006131, 0.0243253652, -0.00090537715, -0.0197929256, -0.00125213421, 0.00914740376, 0.0161999837, -0.0192216095, 0.00752232736, 0.00225035031, -0.00834121369, -0.0238048341, -0.000562587578, 4.56507296e-05, 0.00254870416, -0.0131656602, 0.00219797972, -0.0103916032, -0.0223448034, 0.0092553189, 0.0107153496, 0.0189169087, -0.0111787496, -0.00667804945, -0.00738267228, -0.00235033059, -0.000434834976, 0.0169617366, 0.0108042201, 0.00168220827, 0.00464035571, -0.0155397952, -0.0106518697, 0.00198532315, -0.00829677843, 0.0196405742, -0.0150700463, 0.0139528066, -0.0203007627, 0.00351994135, -0.0160857197, -0.00633843383, -0.0167839956, -0.000734775851, 0.00407538749, -0.00347233168, 0.00282007921, 0.0107090008, -0.0161618944, 0.0056115929, 0.0143209882, 0.00180916733, -0.0172791351, 0.0160857197, 0.0122388583, -0.00369133614, 0.0179774109, -0.0193866566, -0.00464035571, 0.0173553117, -0.0239698812, 0.0288451109, 0.0269153323, 0.0222051498, -0.0121499868, -0.0178250596, 0.00581790134, 0.0265852381, -0.0106137814, -0.0178377554, 0.0171394795, 0.0157556254, -0.0292259883, 0.0124356449, 0.0089061819, -0.00533228274, 0.00579885766, 0.0287435427, -0.00591629464, -0.00222178455, 0.0345328785, 0.0276263021, 0.00670344103, -0.0218623597, 0.0166824274, -0.00244872388, -0.0059988182, -0.00350724556, 0.00314858602, 0.0125626046, -0.0260012262, 0.0136227133, -0.0233223885, -0.0164792929, -0.00790955313, -0.00361516071, -0.00969967619, -0.013698888, -0.00218528369, 0.0198310129, 0.0117119784, -0.00982663501, 0.00242968, 0.0131910518, 0.00886174571, -0.0091029685, -0.00420869468, -0.0160476323, 0.0151208304, -0.000363420462, 0.00210910826, 0.00205515069, -0.00672248518, -0.025137905, 0.00262011867, 0.00246300688, 0.0150319589, 0.00169649115, 0.0454767533, 0.0019884971, -0.00142194203, 0.00295497337, 0.0069764033, -0.00740806432, -0.0169109534, -0.0151589178, 0.0064844368, 0.0328316279, -0.0116675422, 0.00350407162, -0.00123467739, -0.0126641719, 0.0215703528, 0.00944575761, 0.000710177526, 0.003424722, 0.0135211451, -0.000481254392, 0.0127403466, -0.00822060276, 0.0146891698, -0.00253442139, 0.0232589096, -0.00086332194, -0.00595755642, 0.00257885689, -0.00534815248, -0.00138782186, -0.0023296997, -0.00914740376, 0.0140670696, 0.0393573232, -0.000917279569, -0.0146510815, 0.0176727083, 0.00279627438, -0.0121309431, 0.00516723609, 0.00876652636, 0.0145368185, 0.0258107875, -0.00474192295, -0.00809999183, -0.00259790081, -0.00309304148, 0.00360246492, -0.00553859118, 0.0112422295, -0.00296449522, 0.00733188866, 0.00399921229, 0.0114644077, -0.00778894173, 0.00989011489, 0.0146764731, 0.00916644838, 0.00678596459, -0.0155524909, 0.0073572807, 0.0337457322, 0.00458322419, -0.021329131, 0.00960445683, -0.0107153496, -0.00360246492, -0.0007478685, -0.0168220829, 0.00280579645, 0.00301527884, -0.00775720179, -0.00653204648, -0.00164412055, 0.0376814641, -0.00146082335, -0.00387542695, -0.00237096148, 0.0388494879, 0.00510693, -0.00681770453, 0.015781017, 0.00239476631, 0.011388232, -0.0155905792, -0.00659552589, 0.00823964644, -0.00204245467, 0.0120357238, -0.00637334725, 0.00914105587, 0.0138639351, -9.39175061e-06, -0.000137175361, -0.00255663902, -0.0290990286, 0.012714955, 0.000409839879, 0.00933149457, 0.00499901501, 0.0163142458, -0.0123975575, -0.0173299182, -0.00201388891, -0.000379290344, 0.0069700554, 0.0184598546, 0.0228526406, 0.0185233355, -0.00584964128, 0.00952193327, 0.016707819, 0.0150319589, 0.0061733867, -1.73948865e-05, 0.0105947377, -0.0046530515, 0.0106074335, 0.0164412055, -0.00947115, 0.018091673, 0.0049355356, 0.0175965335, -0.0117500657, -0.00320571754, -0.000377703371, -0.00421186863, 0.0121690314, 0.00478635868, 0.00433247956, -0.0015417597, 0.0102646444, 0.000973617716, -0.00829043053, -0.00661456957, 0.00917279627, -0.0160857197, 0.00127514557, -0.00141480064, -0.00715414621, 0.0165427718, 0.00511327805, 0.00429756613, -0.0148796076, -0.00817616656, 0.000192521591, -0.00382781727, 0.00817616656, 0.00744615216, -0.0147018656, 0.0154001405, -0.00877287425, 0.0264074951, -0.00101884687, 0.000501885253, -0.0214180015, -0.00870304741, 0.0181932412, 0.0273469929, -0.0134703619, 0.0010823264, -0.0124546885, 0.00649713259, 0.00156397757, 0.00267725019, 0.000595517573, -0.00439278549, -0.0021646528, -0.0135084493, -0.020402329, -0.0222432371, 0.00636699935, -0.0168982577, -0.00585916312, 0.0106010856, -0.00703988271, 0.0161365028, 0.0046530515, 0.000583218411, -0.0316889957, 0.0161999837, -0.00973776355, -0.00648761075, 0.0313081183, -0.00545606809, 0.00462131156, 0.0132418359, -0.00582742319, 0.00295179943, 0.0174949653, 0.0155524909, 0.0151843103, 0.015260485, 0.0204785056, -0.0118325893, -0.0279817879, 0.0164412055, 0.00388494879, -0.00816981867, 0.0280071795, -0.0103916032, 0.0197929256, -0.00543067604, 0.00557350507, 0.00539258821, -0.00861417595, -0.00801746827, 0.0119595481, -0.00338028627, -0.000606229762, -0.00094029092, -0.0178885385, -0.00278357859, 0.00858243648, 0.00656378595, -0.0113628404, -0.0210879091, 0.025137905, 0.00721127773, 0.0291244201, -0.0110771824, -0.00180123246, -0.0125245163, -0.022484459, 0.0221797563, 0.0165427718, 0.0112295337, 0.0121182473, -0.0105058663, 0.0455783233, 0.00587503286, -0.0114009287, -0.0102836881, 0.0232589096, -0.0125626046, 0.00633843383, 0.0155905792, -0.00490062172, -0.00142035505, -0.00021880609, -0.0134576662, 0.0147526488, -0.0128038265, -0.0142448125, -0.00766833033, -0.00172346993, 0.0094901938, -0.00186788593, 0.0112866648, -0.0419980735, -0.00946480222, -0.00306606269, -0.00507836463, 0.000125272942, -0.00242809299, -0.000679628, 0.00392938452, -0.00990915857, 0.0185995102, -0.0190311708, -0.00667804945, -0.0130260047, 0.00824599434, -0.0199071895, -0.024452325, -0.0129625257, 0.0188280363, -0.00796668418, 0.00112993608, 0.00385320908, -0.0116992826, -0.0205038972, 0.003713554, -0.00744615216, -0.00812538341, -0.0116738901, 3.24340872e-05, 0.0237286575, -0.00186312501, 0.0165554676, -0.018497942, 0.00228209, 0.0130133089, 0.0165935569, 0.00487523, -0.00914740376, 0.00631621573, 0.00265185838, -0.0040690396, -0.0184344631, 0.00639556535, 0.00325650116, 0.0111470101, 0.020402329, 0.0140670696, -0.0094901938, -0.00903314073, -0.00636065146, 0.0113184052, 0.00185201608, 0.00343741802, 0.00528467307, -0.0286927596, -0.0133307073, -0.00369133614, -0.00491649145, 0.000412220368, -0.00409125723, -0.00179488445, -0.0228653364, 0.00170283916, -0.0113120573, -0.0012076986, -0.0158191063, -0.00369451, -0.00354850711, -0.0135084493, -0.0382908694, 0.0144860344, -0.0053068907, 0.0174949653, 0.0070525785, -0.00333902473, 0.00150208501, 0.00103233627, 0.00235667848, -0.00700814323, -0.01288635, 0.0313081183, 0.00360563886, 0.00568776811, 0.00578933535, 0.00274707773, 0.0110644866, -0.0247443318, -0.0192977861, -0.0729761, 0.0173807032, 0.0110581387, 0.0108740479, -0.000969650224, 0.0126133878, -0.0278294384, -0.0194501355, 0.0130387, 0.00903314073, 0.00159809785, 0.000249355624, -0.0212275628, 0.00989011489, 0.0103662116, -0.00278833951, 0.0120166801, 0.0178123638, 0.00223289337, -0.0122896424, -0.0040626917, -0.0355231613, -0.00272327289, -0.00132354873, 0.0112549253, 0.000741520547, -0.0118262414, -0.0137369763, -0.00597025221, -0.02207819, -0.011965896, 0.0320190899, 0.0189169087, -0.02981, -0.00991550647, 0.00585598918, -0.0268391557, -0.022776464, 0.0135592334, -0.0137496721, -0.00467209518, -0.00322317448, -0.0175711419, -0.031562034, -0.0159587599, 0.0117627615, 0.01965327, 0.00849991292, -0.00636382541, 0.00809999183, 0.00201388891, 0.0121817272, -0.0276770871, -0.0105439546, -0.029479906, -0.0193739608, -0.0105122142, 0.00299306097, 0.0321714394, -0.00856339186, -0.0126324315, -0.00710336259, 0.0180154983, -0.000344773347, 0.0250490326, -0.014854216, -0.0110200513, 0.00304225786, 0.0154128363, 0.0342027843, 0.00498631923, 0.00343424408, -0.00900140125, -0.0127022592, 0.0135211451, 0.0192723926, -0.0232843012, -0.0133180106, -0.0195390079, 0.00112358818, 0.0123531213, -0.0146764731, 7.75144872e-05, 0.0141432453, -0.0159206726, 0.00629717205, -0.014041678, 0.00389764481, -0.0258234832, 0.00487205619, 0.00394525426, -0.001293396, -0.010575694, -0.00081650581, 0.0145241227, 0.0207705107, -0.0216973126, -0.00730014918, 0.00555446139, 0.000747471757, 0.0195517037, -0.00462131156, 0.0147907371, -0.00529736886, 0.0360817797, -0.0140670696, 0.0043515237, 0.011851633, -0.0120611154, 0.00427534804, 0.0252267756, -0.00365007459, 0.027804045, 0.00482444651, 0.00891887769, 0.0187264699, 0.00272962102, 0.0124483407, -0.0285404082, 0.0293783396, -0.0239952728, -0.0223955885, -0.00420552073, 0.00152985728, -0.0073572807, 0.0149684791, -0.00260266173, -0.0146129942, -0.00527197728, 0.00446896069, -0.00369768427, 0.00113866455, 0.00261377078, -0.030165486, 0.0233858693, -0.0238048341, -0.00199167104, 0.0113247531, 0.00833486579, -0.00642730528, 0.000193215907, -0.00844912883, -0.000388018787, -0.0049196654, 0.0107216975, -0.00539258821, -0.0252267756, -0.00692561967, -0.0141432453, -0.0159841515, 0.00516088773, -0.00814442709, -0.00537671847, 0.00415473711, -0.0114199724, 0.0105883898, -0.00726840924, -0.00999168213, 0.0255949572, -0.0275501274, 0.00407221355, 0.005694116, -0.00801746827, -0.0159841515, 0.00935688708, -0.0153493565, 0.00168220827, -0.00258361804, -0.0326284915, -0.0144860344, 0.0183709841, -0.00885539781, 0.00943941, 0.00671613729, 0.00969332829, 0.00177266658, -0.018497942, -0.0143844672, -0.00934419, 0.0152097018, 0.00246618083, -0.00180440641, -0.0291244201, 0.0175711419, 0.011445364, -0.0157429297, 0.00435469765, -0.00109740288, -0.00524975918, 0.00686214026, 0.00834756158, 0.0174822696, -0.00974411238, 0.00025729058, -0.00564333238, 0.00357072498, 0.00198691012, -0.00575442193, 0.00404047361, 0.00922992732, -0.0135592334, 0.00646539265, 0.00395477656, 0.00595755642, 0.0249728579, -0.010696305, -0.0121563347, 0.0137115838, 0.0189676918, -0.00502123311, -0.00848721713, -0.00379925151, 0.00605912367, -0.00830947421, 0.0092553189, -0.00659552589, -0.0192723926, -0.00656378595, -0.0215830486, 0.0187391657, 0.0358532518, -0.00228843791, 0.0274739526, 0.0121690314, 0.0350153223, -0.00940767, 0.0104296915, 0.0151335262, -0.0293529462, 0.0108677, 0.00632573757, -0.0128482627, 0.000818092783, -0.0212529562, -0.0100995973, 0.0245031081, 0.00939497445, 0.00896331295, -0.00250902958, 0.0411601439, 0.00586551102, 0.0212275628, -0.0126641719, 0.000154334673, -0.00389129692, 0.0169617366, 0.0153874448, -0.0094838459, 0.0127784349, -0.0450450927, 0.00647491496, 0.0114771035, -0.00969332829, 0.0149176959, 0.00556398323, -0.0232716054, -0.00736997649, 0.00678596459, -0.00692561967, 0.0111914454, 0.00710336259, 0.000728031155, -0.00535450038, -0.00235350453, -0.0115405833, -0.0184725504, 0.0021646528, -0.013178356, 0.00874748267, -0.00583377108, -0.00377068575, -0.00400238624, -0.0279056132, 0.00258044386, 0.0127213029, -0.00587820681, -0.000204126452, 0.002991474, -0.0122452062, -0.0112358816, -0.00535767479, -0.00452609221, 0.00133783161, 0.000832375663, -0.00540845841, 0.0107788285, -0.0377068557, -0.0317143872, -0.00258361804, 0.00244078902, 0.0299115665, -0.0341266096, -0.000864115485, -0.00776354969, -0.0267883725, -0.00731284497, -0.0100107258, 0.00305812759, 0.00555128744, -0.024795115, 0.0226495061, -0.0126197357, 0.0142955957, -0.00619877875, -0.00404999591, -0.0056115929, -0.0143844672, -0.0258615706, 0.00120690512, -0.0116294548, -0.0176981, 0.0365388319, 0.00706527475, 0.00345328776, -0.00343107013, -0.0121245952, -0.0135211451, 0.00420234678, 0.0100995973, -0.00278199161, -0.0114199724, 0.00616069091, -0.00718588568, -0.00070105237, 0.014854216, 0.00251537748, -0.0134195779, 0.00449435273, -0.00116326287, -0.0200214516, -0.000656219898, 0.0286419764, 0.0055195475, 0.0051323222, 0.00050148851, -0.00663361372, -0.00692561967, -0.0452482291, 0.0098393308, -0.0110517908, 0.00729380082, 0.0146637773, -0.00604325393, -0.0175584462, 0.00591946859, -0.00196469226, -0.00874748267, -0.00465939939, 0.00135925598, -0.0177107956, -0.0101884687, -0.0007478685, 0.00180123246, 0.0145876016, -0.000807380595, -0.00734458491, -0.029073637, -0.0154382279, 0.00961715262, 0.00336759049, 0.0200468432, 0.0100170737, -0.0195390079, -0.0285404082, 0.0102392528, -0.0266360212, -0.0137369763, 0.00785242114, 0.00498949317, 0.00062289316, 0.0212783478, 0.00222019758, -0.0123213818, 0.0682532191, 0.0392811485, 0.0158191063, -0.0386971384, 0.00218687067, -0.0217734873, -0.0205546804, 0.0292005967, -0.0190057792, 0.00329141505, 0.00184566807, -0.00478635868, -0.00829043053, -0.0017393399, -0.01698713, -0.00440230733, 0.0114961481, 0.00421186863, -0.0022170234, -0.0216338336, -0.00826503802, -0.00270105503, 0.00317715178, -0.000463400764, -0.0109375278, 0.00131085282, 0.0171394795, -0.00102757534, -0.0346090533, 0.00768102612, -0.0252775587, 0.0262551438, -0.0183455925, 0.00635112962, -0.00676057255, 0.0242237989, -0.00498314528, -0.00141797459, 0.0101059452, -0.00540528446, 0.0104995184, 0.0390018411, -0.00292164669, 0.026356712, 0.0087093953, 0.00714145, 0.0143209882, 0.0192216095, 0.00322317448, -0.0198310129, -0.00664630951, -0.008538, 0.0252267756, -0.0224717632, -0.0221543647, 0.00966793671, 0.00917279627, 0.000805793621, -0.00039397, 0.0219893176, 0.0207070317, 0.00345963589, -0.00881731, 0.00975680817, 0.00172029599, -0.0185233355, -0.0231573414, 0.0207070317, -0.0210244283, -0.0188788194, 0.02981, -0.0109184841, 0.000288633601, -0.010055162, 0.011153358, 0.0106074335, 0.00199167104, 0.00135132112, -0.00808729511, -0.0211133, 0.00486888178, 0.0343551375, -0.0119849406, -0.000147986721, -0.0163777247, -0.0213037394, 0.00174092688, -0.0350661054, 0.00222178455, -0.00625591027, 0.00740171643, 0.027448561, -0.00496092718, 0.0144352512, 0.00983298291, 0.0122071188, -0.00737632439, -0.00591946859, 0.00135608204, 0.00821425486, 0.0259123556, -0.000791907485, 0.00887444243, 0.0194374397, 0.0026042487, 0.0122452062, -0.0157937128, 0.011153358, 0.0282357074, -0.00553224329, 0.00829043053, -0.0325523168, 0.0102836881, 0.0221924521, -0.00627495395, 0.0216846168, 0.0096806325, -0.00712875417, 0.0183709841, -0.00275818678, 0.02542991, 0.000612974458, -0.0012799066, -0.00679866038, 0.0131656602, 0.0129625257, 0.0296830405, -0.00354850711, 0.00173457887, -0.014854216, -0.00181234139, -0.00184090715, 0.008671307, -0.0111660538, 0.00374529394, -0.0034850277, -0.0387479216, -0.0134576662, -0.000477286929, 0.0056115929, -0.00211228221, 0.00815712288, -0.0184852462, 0.028667368, 0.0248332024, 0.00830947421, 0.00175203581, -0.012365818, 0.0157429297, -0.0288705025, -0.0016472945, 0.0181551538, -0.00340250414, -0.000619322411, 0.003294589, 0.00402460387, -0.00724936556, -0.0284642335, 0.0183328968, -0.00969967619, 0.000871256925, 0.00816347077, 0.0247189384, -0.0139020225, 0.0102202082, -0.0156159708, 0.024388846, -0.0183836799, 0.0241095349, 0.0125499079, 0.0048371423, 0.0174060948, -0.0138512393, 0.0173680075, -0.0185741186, 0.00224717637, -0.0308510642, -0.00107280456, -0.0125054726, 0.0018440811, 8.27217955e-05, 0.0069700554, 0.00800477248, 0.0429629646, 0.00869669951, -0.00210752129, -0.00108470698, 0.000149871266, 0.0153620522, 0.00909027271, 0.00175362278, -0.0198437087, -0.0137369763, -0.00396747235, -0.0339234732, -0.000766118872, 0.00756676309, -0.00726206135, -0.0169109534, 0.0195897911, -0.00892522559, -0.00320413057, -0.00309621543, 0.014739953, -0.0119532, 0.00328189298, 0.00352946343, -0.00814442709, -0.016187286, -0.00473557506, 0.0108613521]
02 Feb, 2024
Binary search in an object Array for the field of an element 02 Feb, 2024 What is Binary Searching? Binary searching is a type of algorithm that can quickly search through a sorted array of elements. The algorithm works by comparing the search key to the middle element of the array. If the key is larger than the middle element, the algorithm will search the right side of the array. If the key is smaller than the middle element, the algorithm will search the left side of the array. This process is repeated until the key is found or the array is exhausted. What is an Object Array? An object array is an array of objects, which is a data structure consisting of a collection of related data items. Each object in the array has a specific set of properties, and each property can contain a different type of data. For example, an object array might contain objects representing people, where each object has a name, age, and gender property. Object arrays are useful for storing and retrieving data. They can be used to store records of data, such as customer information, or to store and retrieve complex data structures, such as trees or graphs. Why Use Binary Searching on Object Arrays? Object arrays are collections of objects that have an associated “key”. In other words, a key is a field or property of the object that can be used to identify the object. For example, if you have an array of people, you could use the person’s name as the key. When you use binary searching on object arrays, you can quickly and accurately find the object that contains the key you’re searching for. How to Set Up the Array for Binary Searching? Before you can perform a binary search on an object array, you must first set up the array so that it is sorted. This is done by comparing the elements in the array and arranging them in order of their field. For example, if you are searching for an element with a specific name, you must arrange the elements in the array in alphabetical order by name.Once, the array is sorted, you can begin searching for the element. Steps Involved in Performing a Binary Search Binary searching an object array involves the following steps: Determine the field of the element you are searching for. This can be done by looking at the properties of the objects in the array. Find the midpoint of the array. This is done by taking the length of the array and dividing it by two. Compare the element at the midpoint with the field of the element you are searching for. If the element at the midpoint matches the field of the element you are searching for, you have found the element. If the element at the midpoint does not match the field of the element you are searching for, split the array into two halves and repeat the process on one of the halves. Continue this process until you find the element or until the array is empty. Example: const arr = [    {name: “John”, age: 25},     {name: “Tim”, age: 28},     {name: “Michelle”, age: 21},     {name: “Alice”, age: 29}] here we want to search age of the Alice, pseudo code for the same is explained below: Pseudo code: // sort array by agearr.sort((a, b) => a.age – b.age); // perform binary searchfunction binarySearch(arr, target) { let low = 0;    let high =  arr.length – 1; while (low <= high) {        let mid = Math.floor((low + high) / 2);        let guess = arr[mid];        if (guess.name === target) { // return age if name matches target             return guess.age;         }          else if (guess.name > target) {            high = mid – 1;        }         else{            low = mid + 1;        }    }    return -1;} // search for Alice binarySearch(arr, “Alice”); // 29 C++ #include <iostream> #include <vector> #include <algorithm> struct Person { std::string name; int age; }; // Comparator function for sorting by name bool compareByName(const Person& a, const Person& b) { return a.name < b.name; } // Binary search function int binarySearch(const std::vector<Person>& arr, const std::string& target) { int low = 0; int high = arr.size() - 1; while (low <= high) { int mid = (low + high) / 2; const Person& guess = arr[mid]; if (guess.name == target) { // Return age if the name matches the target return guess.age; } else if (guess.name > target) { high = mid - 1; } else { low = mid + 1; } } return -1; // Not found } int main() { std::vector<Person> arr = {{"John", 25}, {"Alice", 29}, {"Bob", 22}}; // Sort array by name std::sort(arr.begin(), arr.end(), compareByName); // Perform binary search int result = binarySearch(arr, "Alice"); // Output the result if (result != -1) { std::cout << "Age of Alice: " << result << std::endl; } else { std::cout << "Alice not found in the array." << std::endl; } return 0; } Java import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; class Person { String name; int age; public Person(String name, int age) { this.name = name; this.age = age; } } public class Main { // Comparator for sorting by name static class CompareByName implements Comparator<Person> { @Override public int compare(Person a, Person b) { return a.name.compareTo(b.name); } } // Binary search function static int binarySearch(List<Person> arr, String target) { int low = 0; int high = arr.size() - 1; while (low <= high) { int mid = (low + high) / 2; Person guess = arr.get(mid); if (guess.name.equals(target)) { // Return age if the name matches the target return guess.age; } else if (guess.name.compareTo(target) > 0) { high = mid - 1; } else { low = mid + 1; } } return -1; // Not found } public static void main(String[] args) { List<Person> arr = new ArrayList<>(); arr.add(new Person("John", 25)); arr.add(new Person("Alice", 29)); arr.add(new Person("Bob", 22)); // Sort array by name Collections.sort(arr, new CompareByName()); // Perform binary search int result = binarySearch(arr, "Alice"); // Output the result if (result != -1) { System.out.println("Age of Alice: " + result); } else { System.out.println("Alice not found in the array."); } } } Python3 class Person: def __init__(self, name, age): self.name = name self.age = age # Comparator function for sorting by name def compare_by_name(a, b): return a.name < b.name # Binary search function def binary_search(arr, target): low = 0 high = len(arr) - 1 while low <= high: mid = (low + high) // 2 guess = arr[mid] if guess.name == target: # Return age if the name matches the target return guess.age elif guess.name > target: high = mid - 1 else: low = mid + 1 return -1 if __name__ == "__main__": arr = [Person("John", 25), Person("Alice", 29), Person("Bob", 22)] # Sort array by name arr.sort(key=lambda x: x.name) # Perform binary search result = binary_search(arr, "Alice") if result != -1: print("Age of Alice:", result) else: print("Alice not found in the array.") C# using System; using System.Collections.Generic; class Person { public string Name { get; set; } public int Age { get; set; } } class Program { // Binary search function static int BinarySearch(List<Person> arr, string target) { int low = 0; int high = arr.Count - 1; while (low <= high) { int mid = (low + high) / 2; Person guess = arr[mid]; if (guess.Name == target) { // Return age if the name matches the target return guess.Age; } else if (string.Compare(guess.Name, target, StringComparison.Ordinal) > 0) { high = mid - 1; } else { low = mid + 1; } } return -1; // Not found } static void Main() { List<Person> arr = new List<Person> { new Person { Name = "John", Age = 25 }, new Person { Name = "Alice", Age = 29 }, new Person { Name = "Bob", Age = 22 } }; // Sort list by name using lambda expression arr.Sort((a, b) => string.Compare(a.Name, b.Name, StringComparison.Ordinal)); // Perform binary search int result = BinarySearch(arr, "Alice"); if (result != -1) { Console.WriteLine("Age of Alice: " + result); } else { Console.WriteLine("Alice not found in the list."); } } } Javascript class Person { constructor(name, age) { this.name = name; this.age = age; } } // Comparator function for sorting by name function compareByName(a, b) { return a.name < b.name ? -1 : 1; } // Binary search function function binarySearch(arr, target) { let low = 0; let high = arr.length - 1; while (low <= high) { let mid = Math.floor((low + high) / 2); let guess = arr[mid]; if (guess.name === target) { // Return age if the name matches the target return guess.age; } else if (guess.name > target) { high = mid - 1; } else { low = mid + 1; } } return -1; // Not found } let arr = [new Person("John", 25), new Person("Alice", 29), new Person("Bob", 22)]; // Sort array by name arr.sort(compareByName); // Perform binary search let result = binarySearch(arr, "Alice"); if (result !== -1) { console.log("Age of Alice: " + result); } else { console.log("Alice not found in the array."); } Output Age of Alice: 29 Time Complexity: O(log n).Auxiliary Space: O(1). Conclusion: Binary searching an object array is a powerful tool for quickly and accurately retrieving data. By using binary searching on a sorted array, you can quickly find the object that contains the key you’re searching for. Implementing binary searching with object arrays requires sorting the array first, then using the binary search algorithm to find the index of the object. Once the index is found, you can access the object from the array. With binary searching, you can save time and energy when working with large amounts of data.
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element
https://www.geeksforgeeks.org/binary-search-in-an-object-array-for-the-field-of-an-element/?ref=next_article
Data Science & ML
Binary search in an object Array for the field of an element
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.015019373, -0.0341974944, -0.00976857636, 0.018370308, -0.00622316636, 0.00765180169, -0.0212575, 0.0142489569, -0.0323425122, 0.0145257078, -0.00768172089, -0.00212051393, 0.0318039693, 0.00386703969, 0.00606609136, 0.0191182848, -0.0024047452, 0.00325743854, -0.0161862168, -0.0312654264, -0.0506529845, 0.00388199929, -0.035065148, 0.0140993614, -0.042245727, 0.013725373, 0.0146453846, 0.00756578473, -0.0304875318, -0.00668317219, -0.013044714, 0.0135832569, -0.0108007835, -0.0284679942, -0.0167098, 0.006365282, 0.00304613519, -0.00562852481, -0.00997053, -0.00159786525, -0.0105763907, 0.012573489, -0.0178616848, -0.018370308, 0.00911783613, 0.0358131267, 0.00888596382, -0.00909539685, 0.0163208526, 0.0108606219, 0.000237365733, 0.00107521657, -0.00313589233, 0.0227684118, 0.00410639215, 0.0135084596, -0.0235014278, -0.000950397924, -0.034556523, -0.00768172089, 0.0343770087, -0.0314150229, -0.0100004487, -0.032881055, -0.0104641942, 0.0143761123, -0.0107858246, 0.0272861905, -0.00344069302, 0.0176971294, 0.00256930012, 0.00575568108, 0.0336888731, 0.0298592299, -0.0385357626, 0.0183403902, -0.0242942832, 0.0128203211, -0.0439810306, 0.0183254294, 0.0156476721, -0.00461127656, 0.0116759166, 0.00232994743, 0.0180112794, -0.0368004553, -0.00602495251, -0.0571155027, 0.0385357626, 0.00659715477, -0.0124089336, -0.030053705, 0.0140694417, 0.0199261, 0.0107035469, 0.0390144661, 0.00377541245, -0.013725373, -0.0336290337, 0.0780289322, 0.00803327, 0.013044714, -0.00976109598, -0.00793603342, 0.0101051657, -0.00409517251, 0.0113842059, 0.00420362921, 0.0399120376, 0.0300985835, 0.0236510243, 0.0177719276, -0.0146528641, 0.0353045, 0.00766676152, 0.0179215223, -0.0052545364, -0.0636677817, -0.00673553, 0.0175774526, 0.0314150229, 0.018370308, 0.037877541, 0.00830254145, -0.0602270849, 0.0105614318, -0.00445794128, 0.0131718703, 0.00585665787, -0.0234864689, 0.0056995824, -0.0161712561, -0.00489550782, -0.00230002846, -0.00461127656, 0.0453273878, 0.0164554883, 0.0276153013, -0.00400167564, -0.00415127072, -0.0206142385, -0.0512214452, -0.0713868961, 0.0193277188, 0.0167546794, 0.0117133157, -0.0112346103, 0.0583421849, -0.0306371264, -0.00343882293, -0.0287372656, 0.00402785465, 0.027749937, -0.00883360486, 0.0394931696, -0.0183403902, 0.0041176118, 0.0136879738, 0.0218409207, 0.0218259599, 0.0206291974, -0.0475114807, -0.0121396622, -0.000172969623, -0.00651113736, 0.0214070939, -0.00629422395, -0.0415276662, -0.0570556633, 0.0244139601, -0.00585291767, 0.00279369298, 0.0189387705, 0.0515206382, -0.0466139093, -0.0116833961, 0.0208535902, -0.0215566885, 0.0189088508, -0.0454171449, -0.0246383529, -0.0192828402, 0.0408395305, 0.018370308, -0.010898021, -0.0278845727, 0.00488054799, -0.0412583947, -0.00582673866, 0.0328212194, -0.026298862, 0.00154083211, 0.0578335598, 0.0458958521, 0.024114769, -0.0369799696, -0.0399120376, -0.0146753034, -0.00338833453, 0.00871392898, 0.0368602946, -0.0162161347, 0.00945442542, 0.0121396622, 0.0281089656, -0.00839229859, -0.00674675, -0.0984337404, 0.0346762, -0.0309662372, -0.0281388834, 0.016275974, -0.0531961061, -0.00822774414, -0.0111897318, 0.0130521934, 0.0055238083, 0.0305473693, -0.0553502776, -0.0102323219, -0.0128128417, 0.0116908764, 0.0285577513, 0.000718525145, 0.0012098524, -0.041437909, 0.0341376588, 0.0685745, 0.027241312, -0.0231723189, 0.0193127599, 0.0214818921, -0.00584543822, -0.0125435693, 0.0088485647, -0.0527772382, 0.00247954275, -0.0524182096, -0.0115263211, 0.0335991159, -0.0357532874, -0.0021373434, 0.00253564119, -0.0230376832, 0.00993313082, -0.0341077372, -0.0262689423, -0.0288120639, 0.0264185388, 0.0395230912, 0.05915, 0.000922816282, -0.0236659832, -0.0391042233, -0.00771164, 0.00251881173, 0.0151914069, 0.0422756448, -0.00253190123, -0.00908043701, -0.00878124684, 0.02284321, -0.00160067016, 0.0306371264, 0.00701602176, -0.0118554309, 0.0271814745, -0.0357832052, -0.0390144661, -0.0147426212, 0.0280491263, -0.00239352556, 0.0160814989, 0.0381767303, 0.0124612926, 0.0024832827, -0.0175624937, 0.00271702535, -0.0125585292, 0.000218900066, -0.00520965783, 0.0165602043, 0.0360225588, 0.0143835926, 0.00210555457, -0.0229030475, -0.000566592382, -0.0109952576, -0.00697488291, 0.0158870257, -0.0312355086, -0.000773220963, -0.0266728494, 0.00962646, 0.0241596475, -0.012468772, -0.0189686902, -0.04718237, -0.0306670461, -0.0264334977, -0.00318825082, -0.0481697023, 0.00249450235, 0.0197615456, -0.0353942588, 0.00166518323, 0.00827262271, 0.00189051114, -0.0358430445, -0.012416414, 0.00342199346, -0.00772659946, -0.0473918058, -0.0181758348, -0.00338085485, 0.0293506067, 0.0399718769, 0.0145032685, 0.000412322173, -0.0178018454, -0.00962646, -0.00469355378, -0.0299340282, 0.0258500762, 0.00890092272, -0.00309288385, -0.0235014278, 0.0069973222, -0.0129100783, -0.0426346734, -0.0284231156, -0.00715065747, -0.020973267, 0.0172932222, -0.00719553605, -0.00556120696, -0.034556523, 0.00881864596, 0.000671776594, 0.0240549315, 0.0372791588, 0.0189836491, -0.00839977898, -0.000371417205, 0.0183852687, -0.0128203211, -0.012154622, -0.000263661786, 0.0203748867, -0.0110924952, 0.00139404158, -0.0310260747, 0.0071057789, -0.00416249037, 0.028064087, -0.0209134296, -0.0186695, -0.0319834836, 0.0173829794, -0.00234864699, 0.0136580551, 0.0170688294, -0.0426346734, 0.00926743168, 0.00498526497, -0.013777731, -0.0111897318, 0.0386554375, -0.00544901052, -0.0245485958, -0.00205506594, 0.00307979411, 0.00518721854, -0.0293057282, -0.0730623677, -0.0106362291, 0.0150567712, -0.0237557404, 0.0301285032, 0.0118554309, -0.0284081567, 0.0137328524, 0.0113842059, -0.0243840404, 0.0173530597, -0.0364713445, -0.00103501277, 0.0027862133, -0.00453273905, 0.0306072067, 0.0154531989, 0.0092449924, 0.00598381367, -0.0162011757, 0.0445794128, 0.0148248989, 0.042874027, 0.00305548497, -0.0132242283, -0.016275974, 0.0445195735, -0.0154831186, 0.0325818658, -0.0106511889, 0.0123341363, 0.000398998847, -0.00935718883, -0.0258500762, 0.026298862, 0.0261791851, 0.00465989485, 0.0309063978, -0.0441904664, 0.036112316, 0.00531437481, 0.0148922168, -0.00145013991, 0.0313551836, 0.000524051196, -0.0126557657, -0.0693524, 0.0028497912, -0.0191332437, -0.00187087676, -0.0453573093, -0.0310260747, -0.0105913505, -0.0150941703, 0.0144658694, -0.0189537294, -0.0378177, -0.00507502211, -0.0136655346, 0.0159169454, -0.0160515811, 0.0066008945, 0.0325220264, -0.0140021238, -0.0334794372, -0.0506529845, -0.000499741931, 0.0746181607, -0.0167397186, -0.0167546794, -0.0272712316, -0.0261492655, -0.0265531745, 0.025775278, 0.00268149655, 0.0380271375, -0.00701976148, 0.00449908, -0.0108381826, 0.012625847, 0.0404805019, -0.0105165532, 0.0237557404, -0.0184151866, 0.00146977429, 0.0233817529, -0.0212126207, -0.00107989134, -0.00873636827, 0.0159917418, 0.0262689423, 0.0120798238, -0.0167397186, -0.0276302602, 0.00418867, 0.00128651992, 0.00319199078, -0.0141741587, 0.019208042, 0.0418268591, 0.032252755, 0.0291561335, 0.0089832, -0.00740870927, -0.00414005108, -0.0221700296, 0.0112645291, -0.0274208263, -0.0316842943, -0.0050189239, 0.00476087164, 0.0157075115, 0.0246533137, 0.00269084633, 0.00167266291, 0.00769668026, -0.00401289528, 0.00531063462, -0.0702499747, -0.0236809421, -0.0166798811, 0.0108606219, -0.051430881, -0.0369799696, -0.0138749685, 0.0705491677, 0.0173381, -0.0495160595, -0.0114590032, 0.0212724581, -0.00997800939, -0.0151315695, -0.0201205742, 0.0208984688, 0.0251170583, -0.0517001525, -0.0146678239, -0.00461501628, 0.0337187909, 0.02409981, 0.00365573633, -0.0189238116, -0.0101350844, -0.00292458897, 0.0100004487, -0.0102173621, -0.0016520936, 0.00432330556, -0.0002412225, 0.00359963789, -0.00129025988, -0.00648869807, 0.00382590084, -0.0108381826, -0.0195820313, -0.00895328168, -0.0451478735, 0.0103744371, -0.00143424538, 0.0126707256, -0.00181945344, -0.0110999746, 0.0147875, 0.0169940311, 0.0088485647, -0.00470851362, 0.0118329916, 0.0491271093, 0.00812302716, 0.0145705864, -0.0249824226, 0.0151689677, 0.0666596889, -0.0129699167, -0.0258351155, 0.0120125059, 0.00394931715, 0.0296797156, 0.0164554883, -0.00810058787, -0.0329408944, 0.0157823097, -0.0156925526, -0.00768920081, -0.00230937824, -0.0242494047, -0.00878872629, 0.00664203335, 0.026987, 0.000535738305, 0.0096115, -0.0305024907, 0.0132616274, 0.0276900977, -0.0265531745, 0.0091627147, -0.000102846796, -0.0187592562, -0.00830254145, 0.00354353967, -0.00592023553, 0.01157868, 0.0190434866, -0.0296198782, -0.00791359413, 0.001702582, 0.0127604827, -0.00151091302, 0.00093543838, -0.0270468388, -0.00511242077, -0.0221849903, -0.0192678813, -0.0225739367, -0.0128053613, -0.00631666323, -0.012154622, 0.0102024022, -0.0139198471, 0.00563226454, -0.0237258226, 0.0164854061, 0.00187742163, -0.0214519724, -0.000413257134, 0.0249225851, 0.049875088, 0.00300312648, -0.00190079585, 0.0113542862, 0.00690756505, 0.0124238934, -0.00787619501, 0.0213322956, -0.0183403902, 0.00547518954, -0.0597783, -0.00709081953, -0.00567714311, -0.0323425122, -0.0134710604, 0.0154980775, -0.0140694417, 0.001995228, -0.0220653135, -0.0245785154, -0.0114290845, -0.0293057282, -0.00168668746, 0.00780139724, -0.0032611785, 0.0176073723, -0.0190584473, -0.00430086628, 0.000110151261, -0.00876628701, 0.0195521116, -0.0221550707, -0.0132242283, -0.00543405069, 0.0234565493, 0.00214669318, -0.00229815859, -0.00207750546, 0.0024683231, 0.00276003405, -0.0204646438, 0.00135009794, 0.0224243421, 0.0829955, 0.00365199638, 0.00383338076, -0.0335392766, 0.000980784534, 0.0170987472, -0.00830254145, -0.00453647878, 0.00928239152, 0.0660613, 0.00934970938, 0.00194286951, -0.0512812845, 0.0120199863, 0.032881055, -0.00404655421, 0.0199709777, 0.00138375699, -0.00760318339, 0.031624455, 0.036321748, -0.00140058645, 0.0270169191, 0.0363516696, 0.0286475085, 0.027031878, 0.0303229764, -0.00582673866, -0.0188490134, -0.0448486842, -0.0143087944, 0.0174876954, -0.0401513912, -0.0387152769, 0.0103744371, 0.0256855208, -0.0100079281, 0.00353792985, -0.018878933, 0.0170837883, -0.0261492655, -0.0108755818, -0.00863913074, -0.0212126207, -0.00667569228, -0.00106025697, -0.0272562709, -0.0588807277, 0.020868551, 0.0447589271, 0.00480949041, 0.0273310691, -0.00830254145, -0.0163507704, -0.00590153644, -0.0107484255, -0.0120723443, 0.0114889229, -0.00831750128, 0.00653731637, -0.00857929327, -0.0187891759, -0.00137440721, 0.000660556951, 0.00185498223, 0.0371594839, -0.0186695, -0.0136804944, 0.00216165278, -0.013254148, 0.0186096616, 0.0131868292, -0.0214669313, 0.00334345596, -0.0106885871, 0.0207937527, 0.024309244, 0.0224243421, 0.0191332437, 0.0264185388, -0.0161562972, 0.0126632461, 0.0204646438, -0.0126183676, -0.0147127025, 0.00595015474, -0.00323873921, -0.00362207717, -0.000415828312, 0.0118404711, 0.00547518954, -0.0277648959, 0.0152288061, 0.0233368743, 0.000486184872, -0.0164704472, -0.00169977709, -0.00397175644, -0.014196598, -0.0154531989, -0.000350380345, 0.0258351155, 0.0358131267, -0.012311697, -0.0155429561, -0.0139048873, 0.00179046928, -0.00526949624, 0.003182641, 0.0119152693, -0.012049905, 0.00234116707, -0.00985833351, 0.01669484, -0.00822026376, 0.00069889077, 0.0306371264, 0.0315646194, 0.00529941497, -0.00294141844, 0.0173381, -0.0284081567, -0.0276900977, -0.0184002277, 0.0317441337, 0.00737131061, -0.0167696383, 0.00444672164, 0.0209134296, 0.0200008973, -0.0192529205, -0.0213023778, 0.0112570496, 0.0171286669, 0.00537421275, 0.00935718883, 0.00771912, 0.00715065747, 0.0288719013, -0.00468233414, -0.00889344327, -0.00267214677, -0.0586712956, 0.0102248415, -0.00104155764, 0.0415875055, 0.0079958709, -0.00963394064, 0.0116459979, -0.0105689112, 0.0175774526, 0.00419240957, -0.013358864, -0.0243690815, -0.03087648, 0.0210331064, -0.0339581445, 0.0216763653, -0.0246832315, -0.00602495251, -0.00318451086, -0.000994809088, -0.0185049437, -0.00217661215, 0.0206740759, 0.0320134051, -0.00491794711, -0.0246383529, -0.0177868865, -0.0286325496, 0.0229180064, 0.0222897064, 0.00507128239, -0.0337187909, 0.0114590032, 0.0313551836, -0.0119676273, 0.0152213266, -0.00558364624, 0.0271814745, -0.0280491263, -0.0414079912, 0.0254461672, 0.0240698904, -0.0217362028, 0.0164554883, 0.0097984951, 0.012625847, 0.0274657048, 0.00267962669, 0.0128278006, 0.00890840311, 0.0138749685, -0.000522181275, 0.0147052221, -0.00593893509, 0.0247580297, 0.0195969902, -0.00629048422, -0.0214818921, 0.00282922201, 0.00358841824, 0.0104193157, -0.0163208526, 0.00318451086, 0.000241689981, 0.0466737486, 0.0172782615, -0.00277686352, -0.0279593691, 0.0220503546, 0.00162591436, 0.0217661224, -0.0194773134, -0.0212425385, -0.0117656738, -0.0196568277, 0.00268523651, 0.00779391732, 0.00950678438, 0.00155953143, 0.0089832, 0.0182057526, 0.00106119202, -0.0202701688, -0.0270169191, 0.011002738, -0.0144060319, -0.00337524503, -0.000635312754, -0.00219344185, -0.00539665204, 0.00164741871, -0.0217661224, 0.0438314378, 0.00582299894, 0.0106885871, 0.0111672925, -0.00810806733, -0.0365311839, -0.029111255, 0.00378850219, 0.0321031623, -0.0416174233, -0.0397624411, 0.0352147445, -0.0290514156, 0.0276003405, -0.00648495834, 0.00961898081, -0.0288270228, 0.0148697775, 0.0152961239, -0.00240100524, -0.0230975207, 0.00742740883, -0.000516571396, 0.0164106097, 0.0120947836, -0.0178766437, -0.00144920486, 0.0114814425, 0.0413481519, 0.000389415392, -0.00193351984, 0.0199261, 0.000742366887, 0.00222149095, 0.00551632838, 0.00918515399, -0.0409592055, -0.0131344711, -0.0206890367, -0.037997216, -0.00368939526, -0.0107708648, 0.00825766288, 0.0287971031, -0.00943198614, -0.0166350026, 0.0325818658, 0.00511990068, -0.00943946652, -0.0249225851, 0.0103145987, 0.0130222747, -0.0135009801, 0.0178317651, 0.0304576121, 0.00203636661, 0.0134037426, 0.00300686643, 0.0164405275, 0.00248889253, -0.00636902172, -0.04718237, -0.0663006604, 0.00928987097, 0.0196867473, 0.0184151866, -0.0186994188, -0.0133364247, -0.0292758085, -0.00363142695, 0.00346126221, 0.00994809065, 0.027555462, -0.0166050829, 0.0179664, 0.021811001, -0.0315945372, -0.0221401118, 0.0127230836, -0.0199560188, 0.0120349452, -0.00514234, -0.01700899, -0.0149819739, 0.00978353526, -0.00544527033, -0.00259360927, -0.0108755818, 0.0138151301, 0.0225141, -0.022439301, -0.0148398578, -0.0249824226, 0.0134710604, 0.0215716492, 0.0191182848, 0.0368902124, -0.00375484326, -0.00961898081, 0.00301247626, -0.0280042477, 0.0203599259, 0.0106362291, -0.00468233414, -0.0216165278, -0.0190285277, -0.0263437405, 0.0451179557, -0.00610722974, 0.00951426383, -0.0155279972, -0.00492168684, 0.0178168062, -0.0257004797, 0.00429338636, 0.0248926654, -0.0231872778, -0.0138300899, 0.0193277188, -0.0113243675, 0.0259398334, 0.0201355331, -0.0148622971, -0.00752090616, -0.0219456367, 0.00549762882, 0.0230825618, 0.0203748867, 0.0139497658, 0.00983589422, -0.0192678813, -0.0024197048, -0.00525079668, -0.00794351287, -0.00534803374, 0.0118404711, -0.0131195113, 0.00592771545, 0.000100859987, -0.0220802724, 0.0221999492, 0.0407497734, -0.00214482332, -0.00774903875, -0.0165452454, -0.00654105656, 0.0269122031, -0.0097984951, 0.0131868292, 0.00977605581, 0.00310597336, -0.0199410599, -0.000415127084, -0.0185498223, -0.00775651867, 0.0102772005, -0.00779391732, 0.0121695809, 0.0171436258, -0.0110476166, -0.0570257455, 0.00577812036, -0.0195820313, 0.0324621908, 0.00500770425, 0.0122443791, 0.0133738238, -0.00780887716, -0.0128053613, 0.0031676814, -0.0183553491, -0.00418492965, 0.0321929194, 0.00787619501, -0.00255808048, 0.00447290065, 0.00874384772, -0.00366695598, -0.00523209712, -0.0234266315, -0.0113468068, 0.0219755564, 0.0280042477, -0.00300499657, -0.0343770087, 0.00129306479, -0.0165153258, -0.00804823, 0.00687764585, 0.0194922742, -0.00988825224, -0.00955166295, 0.0192828402, 0.0136505757, -0.0139497658, -0.00893084239, 0.00742740883, 0.0131793497, 0.00571080251, 0.00511616096, -0.00724415435, 0.00142022083, -0.0323425122, 0.0119302291, -0.0379673, 0.00825018343, 0.0228880886, -0.000363937434, -0.0253264923, -0.00291897915, 0.0169491526, 0.0173979383, -0.0292010121, 0.00391191803, 0.00279369298, -0.0111897318, 0.0215716492, -0.0247879494, 0.00174746057, 0.00948434509, 0.0749173462, -0.0250422601, 0.0154681588, -0.0273460299, -0.003182641, -0.0101724835, 0.0178018454, 0.0253264923, -0.00476087164, -0.0253564101, 0.0369799696, -0.0134261819, 0.0119526684, 0.0013136341, 0.013201789, 0.027555462, 0.0296497978, 0.00798091199, 0.0196867473, -0.0286774281, -0.0147575811, 0.00901311915, 0.026927162, 0.00511990068, -0.00432704529, 0.0394632518, -0.0239202958, 0.00697488291, -0.00849701557, 0.00174933055, -0.00426720735, 0.0105015934, -0.00717309676, -0.0299340282, 0.00612966903, 0.0170389097, 0.00199896772, 0.0161862168, 0.0012481861, -0.00872140843, -0.0104417549, -0.0201804116, -0.0157224704, 0.0455966592, 0.0115338014, -0.0352745838, -0.0236959029, 0.0195521116, -0.037368916, 0.00465615513, -0.00828010216, 0.009499304, -0.029215971, 0.0136954542, 0.00812302716, 0.0164405275, 0.0231274404, 0.00794351287, 0.0150567712, -0.00317703118, -0.0234116707, -0.00197839853, 0.0122443791, -0.0150343319, 0.0154831186, -0.00756952446, -0.0207039956, -0.0013669274, -0.018564783, -0.0236959029, -0.00809310842, -0.00593893509, 0.0277200174, -0.00866905, 0.00709829899, 0.0014398552, -0.00929735, 0.000729744788, 0.0092449924, -0.0247281101, -0.017532574, 0.012573489, -0.0209283885, 0.0014576196, 0.00230750814, -0.0017427858, -0.029575, 0.0146827828, -0.0208236724, -0.0138226096, -0.0121995006, 0.00207189564, -0.0355139337, 0.0335691944, 0.00370435463, 0.0141143212, 0.0130073149, 0.0372193232, -0.00198774808, 0.0174727365, -0.00275816419, -0.0041961493, -0.00457387744, 0.0129474774, 0.00268149655, 0.00804823, 0.0102921594, 0.00232246774, 0.00260108896, 0.0145182284, 0.0261043869, 0.00501144398, 0.0138674881, 0.0215417296, -0.00271328562, 0.00296198786, 0.0338983051, -0.00611470966, -0.0183104705, -0.014039523, -0.000119910015, 0.0206890367, 0.0162460543, -0.0242643654, 0.00934222899, -0.00335654547, -0.0196867473, -0.0141666792, 0.0186395794, 0.00198961818, -0.0216464456, -0.0194473956, 0.000925153727, 0.00525827659, -0.0134561015, 0.0227085724, -6.71425951e-05, 0.0019223002, -0.0142339971, -0.000471926556, -0.00538543239, 0.0237407815, 0.0160067026, -0.0218858, 0.0179514419, -0.00487306854, 0.0243541226, -0.0341675766, 0.0173680186, 0.0130222747, -0.0303828139, -0.00624934537, 0.00471225334, 0.00792107359, 0.0200457759, -0.0433826484, 0.0182955097, 0.00205506594, -0.00753960526, 0.0106362291, -0.00546770962, 0.00747602712, 0.0303379353, -0.00887848344, -0.0109055005, -0.00762562267, -0.0102697201, -0.0113094077, -0.0147875, 0.0317740515, -0.000660089485, -0.0251320172, 0.0309063978, 0.0121621015, 0.0215566885, 0.0170538686, 0.0126408068, 0.0113468068, 0.0146379042, -0.0034332131, -0.0278097745, -0.00906547811, -0.0107185068, 0.00484314933, -0.0101949228, -0.0148548177, -0.0225141, 0.00280491263, 0.040689934, 0.0186096616, -0.000545088, 0.00195595901, 0.00288345036, 0.000683931226, 0.00640642084, 0.00741618918, -0.022753451, 0.00978353526, -0.0184301473, 0.0236659832, 0.0103295585, 0.0100827264, 0.0034837015, 0.000616145844, 0.022648735, 0.0167845972, -0.0394034125, -0.00726659363, 0.0183403902, 0.0164854061, -0.0027862133, -0.025565844, -0.0171436258, -0.0351549052, -0.00344443275, 0.0064438195, -0.0071057789, 0.0117432345, 0.00571080251, -0.0152736846, 0.0336589515, -0.00630170386, 0.00216539251, -0.00905799773, -0.0223196261, -0.0184899848, 0.000850823533, 0.00208124518, 0.00326304836, 0.0117656738, -0.0141741587, 0.00429712608, 0.00848205574, 0.00796595216, -0.00769668026, -0.00711325882, 0.0088485647, -0.0274058674, -0.0153933605, 0.0109728184, -0.00056145, -0.0269720405, -0.0387751125, 0.0181758348, 0.0225290582, -3.89766e-05, -0.0138674881, -0.0119900666, -0.0199410599, 0.0272562709, -0.0348856337, -0.0213771742, 0.0153634418, -0.0282136817, -0.00246645324, -0.000927023648, 0.0287223067, -0.00537047302, -0.038805034, -0.0360225588, 0.00988825224, 0.0259547923, -0.00137627719, 0.0322228372, -0.0174727365, -0.0087064486, -0.00951426383, -0.0298143514, 0.00185778714, 0.0116908764, -0.00264409767, -0.00427842699, -0.0175624937, 0.00830254145, 0.00181010365, -0.0110476166, 0.00174933055, -0.0101949228, 0.00472721271, -0.0131195113, 0.00865409058, 0.0367107, 0.0189836491, 0.0321031623, 0.0112869684, 0.00490298728, -0.0179963205, 0.00388573902, -0.00825766288, -0.0209882259, -0.00718057668, -0.0112121711, -0.0203599259, -0.0352745838, 0.0113767255, 0.0383562446, 0.00480575, 0.00545649, -0.0148847364, -0.0159917418, 0.00759570347, 0.0201056134, -0.0362020731, -0.00677292934, -0.0209583081, 0.0073152124, 0.0160216615, -0.024309244, 0.0204796027, 0.0402411483, 0.0124837318, -0.0155279972, -0.00669065164, 0.000683463702, -0.0037361437, 0.006365282, -0.00493290648, -0.00389695866, -0.00197652844, -0.0103220791, -0.00838481914, 0.00115655898, 0.0333298445, 0.0108531425, 0.00378102227, 0.0056995824, -0.0292608496, 0.00120891735, -0.0303080175, -0.0114365639, 0.00491420692, 0.00834742, 0.0179215223, -3.64346488e-05, -0.00686642621, 0.0177719276, -0.0273609888, -0.00845961645, 0.00471973326, 0.0119003095, -0.0216464456, 0.0112570496, -0.00202140701, -0.0102697201, 0.00727033382, 0.0138076507, -0.00254686084, 0.0114964023, -0.00948434509, 0.0161862168, -0.0229329672, -0.0171885043, -0.0109503791, 0.00415875064, 0.0117581943, -0.0127455229, 0.0309063978, -0.0213771742, -0.00564348418, -0.00366695598, 0.00941702724, 0.0168743543, -0.008609212, -0.012939997, 0.0248627458, -0.0145481471, -0.0199560188, -0.0215716492, 0.0286175888, 0.0156327132, -0.0229180064, 0.0128951184, 0.0289317388, 0.00526575604, -0.00872140843, -0.0102398014, -0.00477209128, -0.000175190173, -0.0188340545, -0.0159169454, -0.0195969902, -0.030158421, -0.0152213266, -0.00466363505, -0.00917767454, -0.0119003095, -0.0107783442, 0.0159019846, 0.0163358115, 0.00997800939, 0.00125940586, 0.038924709, 0.0229329672, 0.0226936135, 0.0140096042, 0.0406300947, -0.019402517, -0.0189238116, -0.00141367596, 0.00121639716, 0.0189387705, 0.0228132904, 0.0337786302, 0.0125136506, -0.0219456367, 0.0379373804, -0.00663455343, -0.0449085236, 0.00369687495, 4.31547523e-05, 0.0173979383, 0.0245635547, 0.000108924112, 0.00954418257, 0.0213921349, -0.00500396406, -0.00379972183, 0.0424252413, 0.00553502794, 0.0147127025, -0.00505632255, 0.000210485319, 0.0201654527, -0.0440408699, 0.0202103313, -0.0183403902, 0.0218259599, 0.0102248415, -0.00985085312, 0.0014576196, 0.0126856854, 0.00131176412, 0.00129960955, -0.0259248726, 0.00563600473, -0.00781635661, 0.0279593691, 0.0047795712, -0.0135383783, 0.0173979383, 0.00476087164, 0.00164648378, -0.0347360373, 0.00463371584, 0.00832498074, 0.0172633026, 0.0152736846, -0.00338272471, 0.00770416, 0.0128801595, 0.00319199078, -0.00605487172, 0.00190360076, 0.00280491263, 0.003990456, 3.07956034e-05, -0.00656349584, 0.0135084596, 0.0176672097, 0.0100677665, -0.0031041035, -0.0210181456, -0.0300686639, 0.0106736282, 0.0157224704, -0.0180711169, 0.00264035794, 0.0153634418, -0.013620656, 0.00451777922, -0.00276938383, -0.0206142385, -0.0112420898, 0.00478331093, 0.0173381, 0.00546397, -0.0166499615, 0.00937214866, -0.0110102175, -0.0137852114, -0.00603617216, 0.00908043701, 0.000827916723, -0.00911035668, 0.017218424, 0.0349454731, -0.00886352453, 0.0108307032, 0.0217511635, 0.00478705112, 0.0107933041, 0.000412789668, -0.0259697512, 0.00331540685, 0.0217960421, -0.0175924134, -0.013725373, -0.00511616096, -0.00266466709, -0.0139871649, 0.00534803374, 0.0195969902, 0.0137328524, 0.0103669576, 0.0236659832, 0.0118255122, 0.00100228877, -0.00892336201, -6.16496436e-06, -0.000596511411, -0.00181010365, -0.0135533381, -0.0116385175, 0.00181477854, 0.00516103953, -0.00590527616, 0.0104417549, -0.0116011193, 0.0237258226, -0.00253564119, 0.0124014542, -0.0227235332, -0.00808562804, -0.0178916026, 0.00450282, 0.000704968057, 0.00940954685, 0.0128278006, 0.0152961239, 0.00629422395, -0.0187891759, 0.00839229859, 0.000264830509, -0.00600999314, -0.0180860776, -0.0186395794, 0.0336589515, -0.00104623241, -0.00094011327, 0.00544153061, 0.00698984228, -0.017218424, -0.0120424256, 0.0155579159, 0.00387825933, 0.003990456, 0.009499304, -0.00100883364, 0.00851945486, 0.00929735, 0.0100303674, -0.0197465848, -0.0411686376, -0.00573698152, -0.010740946, 0.00434948457, 0.00629796414, 0.000454395864, 0.0120274657, 0.0113243675, -0.00145294482, -0.00438688369, 0.00911035668, 0.0137926908, 0.0166200437, -0.00842221826, 0.00297133764, 0.00408021314, -0.00304426532, 0.000129844091, 0.00123416155, -0.0269421209, -0.00368752517, 0.0137029337, -0.00919263437, 0.0149819739, 0.0146005061, 0.0120798238, -3.67852626e-05, -0.00137721212, 0.0161862168, 0.00195221929, 0.00466737477, 0.0121845407, -0.00621194672, -0.00356597896, 0.0257004797, 0.0141891185, 0.00436444441, 0.00292458897, -0.0161114186, 0.00926743168, 0.000279322558, -0.0072329347, -0.00174652564, -0.0081529459, -0.0202552099, 0.0194922742, 0.00566966366, -0.000383571809, 0.0171436258, -0.00608479045, -0.00428964663, -0.0157673489, -0.0130521934, -0.0480799451, -0.0217362028, -0.00510868104, -0.0487980023, -0.00922255311, -0.00606235117, -0.0125660086, -0.0029432883, -0.00208124518, -0.00508624176, -0.00122948678, 0.0287073459, 0.0181758348, -0.00634284271, -0.0163507704, 0.00395679707, -0.0122443791, 0.00991817098, -0.00795847271, 0.0074722874, 0.00985085312, 0.0130222747, -0.012835281, -0.00982093439, 0.00547892973, -0.0128128417, -0.00522835739, 0.00321443, -3.07663868e-05, -0.0161263775, 0.000773688429, -0.00743114855, -0.01669484, -0.0242793243, -0.00828758255, 0.00888596382, 0.00382216112, -0.0109055005, -0.0160964597, -0.0104567148, 0.000582486857, -0.021706285, -0.0115038818, -0.00885604415, 0.0127679631, 0.0338983051, -0.00665325299, 0.0146902632, -0.0302780978, 0.00251507177, -0.0251320172, 0.0237407815, 0.00111916021, 0.00377541245, 0.0057856, -0.00787619501, -0.00837734, 0.00848205574, 0.0133513846, 0.0187442973, -3.83118959e-06, 0.00615958823, 0.0242344458, -0.0111822523, -0.0142040784, -0.00725163426, -0.00821278431, -0.0155279972, -0.00134074828, -0.0204197653, 0.0189387705, 0.013306506, -0.0111149345, 0.0169940311, -0.00136131758, -0.0188340545, -0.0265681334, 0.0163358115, -0.00780887716, -0.000505351753, -0.0254910458, 0.00140806613, -0.0148847364, -0.00997800939, 0.0169491526, -0.00256743, 0.0138600087, -0.0011341197, -0.000357626384, -0.0115338014, -0.0181459151, 0.0069973222, 0.0078986343, -0.0124986907, -0.00682528783, 0.0323125944, 0.0127230836, -0.0128053613, -0.0199560188, 0.00324808899, -0.00553128775, -0.00957410224, -0.023277035, 0.0142713962, 0.0075321258, 0.0305024907, 0.00030059315, -0.00935718883, 0.0120723443, -0.0148922168, -0.0115113622, -0.0232022386, -6.11237192e-05, 0.0133214658, 0.016799558, -0.0124762515, -0.0271814745, -0.0210331064, 0.00798839144, -0.00235612667, 0.0176522508, 0.0151540088, -0.00464119576, 0.0109952576, -0.00500396406, -0.0154232802, 0.0275255442, 0.00299377693, -0.0145930257, -1.70924377e-05, 0.00270393584, -0.0024832827, 0.00616706815, 0.00437566405, -0.0144434301, 0.0290813353, 0.00324995886, -0.0265681334, 0.0149670141, 0.000111495283, 0.0020438463, 0.00415127072, 0.00266279723, -0.010494113, 0.0180112794, 0.0106586684, -0.0216165278, 0.0142938355, -0.0167247597, 0.0224542618, -0.0096115, -0.00804823, -0.0120648649, -0.00201205746, -0.0218708385, -0.00908791739, 0.0163956489, -0.0083549, -0.0155429561, -0.011631038, -0.0131120319, 0.00188677129, -0.000837266445, 0.0190135688, -0.00535177346, 0.0261193477, -0.0220503546, 0.0159767829, -0.00671309093, -0.00855685398, 0.00425224751, -0.00371744437, 0.00399419572, 0.00480575, -0.0187442973, -0.00169603724, -0.0130222747, -0.0229778457, 0.00603243243, 0.00400915509, -0.00382216112, 0.00935718883, 0.0184002277, 0.01091298, -0.00343134324, 0.00515355961, -0.0031022334, 0.0306072067, 0.00150997797, 0.00181758346, 0.0209882259, 0.00288158027, 0.00154737686, -0.0149670141, -0.00310597336, 0.00684772711, -0.0270169191, -0.000330278475, 0.0010434275, 0.00282548205, -0.0283632781, 0.0100378478, 0.010740946, -0.00838481914, -0.00872888882, 0.00824270304, -0.00940954685, -0.0153185632, 0.00160908489, -0.00544153061, -0.0138674881, -0.00782383606, 0.00661585433, 0.00543031096, -0.017846724, -0.0152886445, 0.0179215223, 0.00460005691, 0.0213472564, 0.0108531425, -0.0251768958, -0.0102697201, -0.0217511635, -0.020344967, 0.000970499823, -0.0140993614, 0.00250198203, -0.00236360636, -0.0336290337, -0.0275853816, -0.0161263775, -0.00771912, 0.000969564833, -0.00565470383, 0.0254760869, 0.0220952332, 0.0110999746, -0.000655882061, -0.017427858, 0.00718805613, 0.00658219494, 0.0144808292, 0.000309241615, -0.0042746868, 0.00806318875, 0.0261343066, 0.0043831435, -0.0351848267, -0.000132999616, 0.0134486211, 0.0207787938, -0.0155878346, -0.0190883651, -0.00477209128, -0.00951426383, -0.0136580551, -0.00403533457, 0.01575239, -0.0039081783, 0.00279556308, 0.0114515238, -0.0260595083, -0.0080557093, 0.00736757088, 0.00212986371, 0.0100453272, 0.00201953715, -0.0186994188, 0.00832498074, -0.00023888507, 0.00854189415, 0.0126108872, -0.00721423561, -0.0235014278, -0.00982093439, 0.00326304836, -0.00152774248, 0.0109279398, -0.0074236691, -0.00358280842, -0.00637650164, 0.00205506594, -0.0259248726, 0.0215566885, -0.00757700438, -0.000209082864, 0.00188770622, 0.0094020674, 0.00245710346, 0.0100378478, 0.00833994057, 0.00945442542, 0.00193164987, 0.0108681014, -0.00314898207, 0.0158271883, -0.00251694163, -0.0271365959, -0.0054153516, -0.00255995034, 0.0142339971, 0.0165302847, -0.00779391732, -0.00396427652, 0.0394034125, -0.0191631634, 0.0256705619, 0.00868400931, -0.00479453057, -0.0266578905, 0.0100303674, 0.000540413195, -0.017742008, -0.00400167564, -0.00245710346, 0.0293206871, 0.00297694746, 0.00311345304, 0.000109800647, 0.0247729886, -0.00712821819, 0.01606654, -0.0123715354, 0.00921507366, 0.00730399275, 0.0141442399, 0.00633162307, 0.0199111402, 0.00350427092, 0.0114066452, 0.0129250381, 0.0179065634, -0.0107783442, 0.016590124, -0.0271216352, -0.0109279398, -0.00506380247, 0.00639894092, -0.0189537294, 0.0101949228, 0.00288345036, 0.0106063103, -0.00404655421, -0.000195175176, 0.0051273806, -0.0302332193, 0.00335841556, 0.0161562972, 0.000603991211, -0.00923751295, -0.0125360899, 0.0256107226, 0.0153484819, 0.00100135384, -0.013097072, -0.00959654152, 0.0136430953, 0.00275442423, 0.0100902058, 0.00469355378, 0.00165676849, 0.0115113622, -0.0115263211, 0.00153241726, -0.0115936389, -0.00886352453, -0.0116160782, -0.00459631719, -0.00950678438, -0.0070796, -0.0245635547, -0.00460753683, -0.0154980775, -0.00315459189, -0.00946938526, 0.0125435693, -0.00404655421, 0.000255247054, 0.00642138, 0.00614836859, -0.00457387744, 0.00881116558, 0.0176372919, 0.00366695598, -0.0169192329, 0.00748724677, 0.00288158027, 0.0177270491, 0.0103669576, -0.00876628701, -0.00176429015, 0.0149595346, -0.00331914681, 0.0140769221, -9.79966353e-05, 0.0258351155, -0.00532559445, 0.00780887716, 0.00266466709, 0.0198662616, -0.00519095827, -0.0156925526, 0.00919263437, -0.00266279723, -0.0143013149, 0.00978353526, 0.000520311296, -0.00641764048, 0.000814827159, 0.00291523919, 0.00580055965, 0.0109354192, 0.039433334, 0.0120199863, 0.0233219136, -0.0238604583, 0.00390443858, 0.0183553491, -0.0063615418, -0.0142414765, -0.00285540125, 0.0110476166, -0.0234864689, 0.00115936389, -0.0174876954, -0.015019373, -0.0275704227, -0.000486184872, -0.0178766437, -0.00326491846, 0.00749472668, 0.020868551, -0.020240251, 0.00456265779, -0.00923003256, 0.016590124, 0.0213622153, -0.0105015934, -0.00990321208, -0.0105539514, 0.0184600651, 0.0104118362, -0.00583047839, -0.00146229449, 0.00985833351, -0.0230975207, 0.00919263437, 0.0209283885, 0.0105165532, 0.00156794616, 0.00699358247, 0.00741992891, -0.00160534505, -0.00165583345, -0.000424243044, -0.006522357, -0.0103071192, -0.0257902369, 0.00731147267, 0.0266578905, -0.0130521934, 0.013201789, -0.00411013188, -0.035693448, 0.0236659832, -0.00135477283, 0.0126108872, 0.00892336201, 0.00668317219, -0.00963394064, 0.00830254145, 0.00544153061, 0.00739375, 0.00315085193, 0.0152288061, -0.00729277311, 0.0038296408, 0.0122518586, -0.00289467, 0.00481323, 0.0119377086, 0.0118329916, 0.0218409207, 0.0332999229, 0.0123490961, -0.0066008945, 0.0217511635, -0.013358864, -0.0224692207, -0.0119077899, 0.00548266945, 0.00908043701, 0.0182805508, 0.0197615456, -0.00941702724, 0.00178485946, -0.00823522359, -0.00465989485, 0.00225888961, 0.0164854061, -0.00530315517, -0.0155130373, 0.00610349, 0.0107185068, 0.000256182015, 0.0131569104, 0.000913934084, -0.00911035668, 0.0188041348, -0.0242045261, 0.0144359507, 0.0258351155, -0.00545275025, -0.0273460299, 0.0264783762, -0.00644008, -0.0276751388, -0.00911035668, -0.0256107226, 0.00439436315, 0.00701976148, -0.00241409498, -0.0201504938, 0.0211976599, 0.0380271375, 0.0113542862, -0.0126408068, -0.0114141246, 0.0242494047, 0.00836985931, -0.00889344327, 0.0121172229, 0.00252442155, -0.00702350121, 0.00330418721, 0.00481697032, 0.0235313475, 0.0223794635, 0.000343601801, -0.00911783613, 0.00529941497, 0.00830254145, 0.00997053, 0.0227235332, 0.0145182284, -0.0162161347, -0.0111972112, 0.0105539514, 0.00669813156, 0.0024197048, -0.00528071588, -0.0118853506, -0.0119526684, 0.0264933351, 0.00618576771, 0.00822026376, 0.0104267951, 0.00828758255, 0.0147650605, 0.00794351287, -0.00808562804, 0.01220698, 0.00719927577, 0.0100004487, -1.86848083e-05, 0.00953670312, -0.00818286557, 0.0220802724, 0.00416997029, -0.0138450488, 0.014353673, -0.0157075115, -0.00267588673, -7.10577879e-05, 0.00634658244, -0.0130147953, 0.00659341458, 0.00922255311, 0.0025487307, -0.000435462687, -0.0116908764, 0.00272637513, 0.00991069153, 0.0101350844, -0.0114515238, 0.0105165532, -0.0130372345, -0.0125809684, -0.0225141, -0.0100976862, -0.0020887251, -0.00166798814, 0.0106362291, -0.0102323219, -0.0217960421, 0.00657845521, -0.0103295585, 0.0052545364, 0.0148548177, 0.0145032685, 0.00565470383, 0.0111373737, 0.0220353939, 0.00377728255, -0.00405777385, -0.0121995006, -0.00463745557, 0.00598755386, 0.0138151301, 0.0139572453, -0.0115412809, -0.0117133157, 0.00546770962, -0.00210181461, 0.00202514697, 0.00389321893, -0.0291262139, -0.00119956769, -0.0106212692, -0.0133513846, -0.0227983296, -0.000599316321, 0.0161263775, -0.00212612376, 0.00496656541, -0.00749846688, 0.00345191266, -0.00825018343, -0.00939458795, -0.0170837883, 0.036620941, 0.0145930257, 0.0105913505, 0.019836342, -0.0204945616, -0.0177120883, 0.0236510243, -0.00106586679, 0.0115487603, 0.00696366327, 0.016590124, 0.00463371584, 0.00384834013, 0.0111448532, -0.0102024022, -0.0347958766, -0.0024832827, 0.0159169454, 0.00450655958, 0.0229030475, -0.0089832, 0.0229030475, 0.0127978818, 0.0131569104, 0.00999296922, -0.0146753034, 0.00670187129, 0.0207488742, -0.0193127599, -0.00992565136, 0.0041961493, -0.0260146298, -0.00684398692, 0.0205095224, -0.0246533137, 0.00340329413, -0.00773407938, 0.0185947, 0.00224206015, 0.0143835926, 0.00218409207, 0.00344256288, -0.00297133764, -0.00143518031, 0.00982841384, 0.0136730149, 0.00745732803, -0.00405777385, -0.0185348634, 0.0147127025, -0.0120648649, -0.00238043582, -0.00982093439, 0.0141442399, -0.0186096616, 0.00969377812, 0.00976109598, -0.0034201236, 0.00609601, 0.00491420692, 0.0116908764, 0.00840725843, 0.00220653135, -0.0140470024, -0.00690382533, -0.0272562709, 0.00933475, -0.00033986193, 0.0130297542, -0.0313551836, -0.0228282493, 0.0144883087, -0.000554437749, -9.25621207e-05, -0.00578186, -0.000273245241, 0.00526575604, -0.00637276145, -0.00729277311, -0.0356036909, -0.0020438463, 0.0122368988, -0.00879620668, -0.0110700559, -0.00334532582, -0.00448786048, -5.40530054e-05, -0.0122742979, 0.0173231401, 0.0213771742, -0.0113542862, -0.0152138462, 0.00564348418, -0.00947686471, -0.0150717311, -0.0107484255, 0.00415127072, 0.0287821442, -0.000642792496, 0.00138188701, -0.00433078501, 0.00819782447, -0.00897572096, -0.00167266291, 0.00761440303, 0.00242531463, -0.00239539542, 0.019716667, 0.00174652564, -0.0165751651, 0.00286849076, -0.00463745557, 0.012782922, -0.00664577307, 0.0145406676, 0.00731895212, 0.0122443791, 0.00573698152, 0.0114889229, -0.0113991648, -0.00055630767, -0.00691504497, -0.0626505315, -0.0292309299, -0.00235238671, -0.00385208, 0.000859238266, -0.000219835027, -0.000231288432, -0.0138899274, -0.0216913242, -0.000619885686, -0.00703472085, 0.0107484255, -0.0134561015, -0.00581177929, -0.0197765045, -0.0191482045, 0.0250123423, -0.000332849653, 0.0190734062, 0.0160515811, 0.0174577776, -0.00210555457, 0.00854189415, -0.01445839, -0.0075807441, -0.00222336082, 0.00461127656, -0.00971621741, 0.0231274404, 0.0134187024, 0.00662333379, 0.0018615271, -0.0181010365, -0.0199859384, -0.0704893246, -0.00136879738, -0.00274694455, 0.015019373, 0.0116908764, 0.0135458587, -0.0145331873, -0.0269122031, 0.00354540977, 0.0202701688, -0.00117619336, -0.00661959406, 0.00810806733, 0.0243840404, -0.00281426241, -0.00893832184, 0.0337187909, 0.0104193157, -0.00271328562, 0.0107933041, 0.00167546782, -0.0424252413, 0.00993313082, -0.00656349584, 0.0077415593, 0.0218558796, 0.00908791739, -0.000295217062, 0.00290962937, -0.0254012886, -0.00280304276, 0.0282286424, 0.0360824, -0.019223, -0.00326491846, 0.00352671021, -0.0151540088, -0.0346163623, 0.00110794057, -0.00416997029, -9.06921778e-05, -0.0133513846, -0.0178168062, -0.0208386313, -0.00408769259, 0.0143835926, 0.0145855462, 0.00710951863, 0.0220802724, 0.008452137, 0.00271515548, 0.0135608176, -0.00758448383, -0.00281613227, -0.0107484255, -0.0145631069, -0.00500022434, 0.00292271911, 0.0189387705, 0.00208124518, 0.000451590953, -0.0221101921, -0.0206441581, -0.00958158169, 0.0210031867, -0.0240698904, -0.00908791739, -0.0125510497, 0.0221401118, 0.0217511635, -0.0224991404, -0.000769481063, -0.00943198614, 0.00497404533, -0.00244027399, 0.0149520542, 0.00470851362, 0.00391191803, -0.0171286669, -0.0105614318, 0.0147351418, -0.0012883899, 0.0135383783, -0.01252113, -0.0151091302, 0.00583795831, -0.00469729397, 0.0101350844, -0.000131012799, 0.0123715354, 0.0146827828, 0.0196269099, -0.00776399858, 7.15837086e-05, 0.0111373737, 0.0132765872, -0.0062044668, 0.012625847, 0.00294141844, 0.00740870927, 0.00943198614, 0.00765180169, 0.00606983108, -0.0062044668, 0.0445195735, -0.000541348127, -0.00892336201, 0.0199709777, -0.00460379664, 0.0349454731, 0.00996305, 0.00583047839, 0.00989573169, -4.41773736e-05, 0.00722545525, 0.0219755564, -0.00361646735, 0.0021373434, -0.0167397186, -0.000533868384, -0.0259847119, -0.0263886191, -0.0230077635, 0.00599503331, 0.0146229453, 0.00426720735, -0.0153933605, 0.00374362338, -0.00933475, -0.00336402538, -0.00741618918, -0.00667195255, 0.0161413383, -0.00439810334, 0.00290027983, -0.0293206871, -0.00486184889, 0.0336888731, -0.00819782447, -0.0147800203, 0.00796595216, -0.00115094916, 0.00549014937, -0.0199261, 0.00362581713, -0.00562852481, -0.0341675766, -0.00583421858, -0.00394557742, -0.0273011513, -0.00264596776, -0.0039867158, -0.0097012585, 0.0190135688, -0.0162610132, -0.00488428818, 0.0208087116, -0.00110046077, 0.0160964597, -0.0110476166, 0.0104118362, 0.0123565756, -0.0109354192, 3.87136388e-05, 0.00662707398, -0.0209583081, -0.012887639, 0.000811087259, -0.00122668187, -0.0140470024, 0.00611470966, -0.00271515548, 0.0122892577, 0.00488428818, 0.0176672097, -0.0139273265, -0.025879994, -0.00872140843, -0.00934970938, 0.0255060066, -0.0100602871, 0.0027076758, -0.0237108618, -0.000566124858, -0.00881116558, 0.00757326419, -0.000875600264, 0.00507128239, -0.00350240106, 0.00102472806, 0.0103594773, 0.0186994188, -0.0126183676, -5.15402717e-05, -0.00967133883, 0.0235313475, -0.000502546842, 0.000515636464, 0.00999296922, 0.00354166981, -0.00532185426, -0.00375484326, 0.020973267, 0.0105015934, 0.00988077279, -0.0271216352, 0.000259220687, -0.00733017176, 0.00651487708, -0.022020435, -0.00692252442, -0.0070758597, -0.0139946444, -0.0119676273, -0.0081529459, -0.0015053032, -0.0331204087, 0.0048581087, -0.0274956245, 0.0120349452, 0.021706285, -0.0215866081, 0.0104043558, -0.00252442155, 0.0397026055, -0.0223495439, 0.0113842059, 0.0339581445, -0.0214070939, 0.00186059205, 0.00217848225, 0.00235425681, 0.00161843468, -0.000663829327, -0.00301247626, 0.0264933351, -0.00164741871, 0.0202252902, -0.00721797533, 0.0314150229, 0.00255621038, 0.0147276614, -0.00476461183, 0.00656349584, 0.0181907937, 0.0232171975, 0.0443400592, 0.000668036693, 0.0204646438, -0.00841473788, 0.0059987735, -0.0043532243, -0.000595576479, 0.00642138, 0.00659341458, -0.0185348634, -0.0110326568, 0.018684458, 0.00420362921, -0.00339768431, -0.0118030729, -0.00395679707, -0.00739748962, -0.000392454036, -0.00154083211, -0.0195072331, 0.00697488291, -0.00749472668, -0.0184301473, -0.00715065747, -0.0091028763, 0.0119227488, -0.0107708648, -0.0135308988, 0.021811001, -0.00125847082, 0.00630918378, -0.00323312939, 8.96987694e-05, -0.0243690815, -0.0147875, -0.00603243243, 0.0101201255, 0.00265905727, -0.0143162748, -5.43744027e-05, -0.0239202958, -0.0222298689, -0.021287417, -0.00729651283, 0.0177719276, -0.0259697512, 0.00230563828, -0.00186433201, -0.0264334977, 0.012311697, 0.00496282568, -0.013097072, 0.0100303674, 0.000224626754, 0.0215866081, -0.00905799773, 0.00202140701, -0.000923283747, -0.0121695809, -0.00952174328, -0.00751716597, -0.02347151, 0.00398297608, -0.0060473918, -0.0136580551, 0.0275105834, 0.000301528111, 0.00504136318, -0.0100079281, 0.00344630284, -0.0123042176, -0.00385582, -0.0151614882, 0.00342386356, -0.0312355086, 0.00489924755, -0.00405777385, 0.0143013149, 0.00144172518, -0.0239202958, -0.00386329973, 0.00677292934, 0.00460005691, -0.00832498074, -0.00201953715, 0.0135608176, 0.012887639, -0.0121321827, 0.00242905435, 0.0148996962, -0.00931979, -0.0370398089, 0.0187143777, 0.00132017897, 0.00413257116, 0.0203150474, -0.0119302291, -0.000136856368, 0.00659341458, -0.00285727112, -0.00803327, -0.0115188416, 0.00127530028, -0.0116833961, -0.00536673283, 0.0087064486, 0.00516851898, 0.00121452718, -0.00153148232, -0.0192529205, -0.016904274, -0.022334585, -0.00661211414, 0.00283296173, 0.00579307973, -0.00585291767, -0.022648735, -0.0152437659, -0.00415501092, -0.0107035469, -0.0139572453, -0.00952922367, -0.0245635547, -0.00405029394, -0.00792107359, -0.0102697201, -0.013201789, 0.076054275, 0.0429637842, 0.00730773248, -0.0391042233, -0.00877376739, -0.0329109766, -0.00276751397, 0.0437716, 0.0138300899, 0.00524705648, -0.00550136901, -0.0028666209, -0.00531811453, 0.00552006811, -0.00658593513, 0.00580055965, 0.00553128775, 0.00362581713, -0.0311756693, -0.00111542025, -0.00876628701, 0.00208498514, 0.0153784016, -0.00734887132, 0.000628300419, 0.0113991648, 0.0024197048, -0.0113243675, -0.0179364812, 0.0062044668, -0.0207937527, 0.0228880886, -0.00296946755, -0.0102472808, -0.0167546794, 0.00581551902, 0.0090206, -0.00687390612, 0.0119676273, 0.00127530028, 0.01543824, 0.0305623282, -0.00240661507, 0.0155130373, 0.00558738597, 0.0103071192, 0.0115412809, 0.0148922168, -0.00424102787, -0.0176522508, -0.0223794635, -0.0109354192, 0.00740123, -0.0295899585, -0.0171885043, 0.0209283885, 0.000499741931, -0.00836985931, 0.0201654527, 0.0289167799, 0.0296049193, -0.00717683649, 0.00126595062, 0.00850449502, 0.0102098826, -0.00221214117, -0.0182655919, 0.00758822402, 0.017532574, -0.0198513027, -0.0068402472, -0.0132092694, -0.00279743294, -0.00994061, 0.0094020674, 0.0117656738, 0.00103314279, 0.00237295614, 0.0160964597, -0.014353673, 0.0102098826, 0.0342274159, -0.0363815874, -0.0258201566, -0.0146528641, -0.00747602712, -0.0153933605, -0.0193127599, -0.00304987514, 0.00495160604, 0.00796595216, 0.0377578661, 0.0083549, 0.0102921594, 0.0156775918, 0.000366976077, 0.00195782911, 0.0171885043, 0.0298592299, 0.0169491526, 0.0314150229, 0.0017558753, -0.00701976148, 0.0167397186, -0.0112645291, 0.00269458606, -0.0135608176, 0.00330231735, 0.00670561148, 0.00330418721, 0.00133700843, -0.0131195113, -0.000914869, 0.0320134051, 0.00958158169, 0.0136879738, -0.0103594773, -0.0111897318, 0.0143387141, -0.00834742, 0.0154531989, -0.00872140843, 0.00338272471, 0.00123696646, -0.00225888961, 0.000846616167, 0.0107858246, 0.0107334657, -0.0151540088, -0.0289915781, -0.00733391196, 0.00241035502, 0.0133738238, -0.00355662941, 0.00905051827, 0.0174428169, -0.0184750259, -0.00749472668, 0.00293767848, -0.00317329122, 0.00111261534, 0.00516103953, -0.014510748, 0.0369201303, 0.018056158, 0.000219133799, 0.0189686902, -0.00291897915, 0.00681780791, -0.0137552917, 0.000172151515, 0.0110550961, -0.0162161347, 0.00553502794, 0.00433452521, 0.00472721271, -0.0178317651, -0.0164405275, 0.0138076507, -0.0101874433, -0.00383712049, 0.00190266583, 0.0321330801, -0.00849701557, 0.0142489569, -0.0265681334, 0.0197465848, -0.01220698, 0.0154980775, 0.00650365744, -0.0116534773, 0.017532574, -0.0155579159, 0.00345191266, 0.00480575, 0.0150792105, -0.0121770613, 0.0101126451, -0.00105464715, 0.00186900678, 0.0103295585, -0.00201766728, 0.0238604583, 0.0323724337, -0.00174185075, -0.00786123518, -0.00308353407, -0.00351736043, 0.00801083073, -0.00539665204, -0.00111355039, 0.000976109644, -0.01700899, 0.00319386064, -0.0216763653, -8.55498365e-05, 0.0180711169, -0.00138001703, -0.0308465604, 0.0203898456, 0.00697862264, 0.00217474229, 0.00511242077, 0.00435696449, -0.00980597455, 0.0129848756, -0.0114889229, 0.000690476038, -0.00143050554, -0.0195820313, 0.00866905]
11 Apr, 2023
Check if an array is sorted and rotated using Binary Search 11 Apr, 2023 Pre-requisite: Check if an array is sorted and rotated using Linear SearchGiven an array arr[] of N distinct integers, the task is to check if this array is sorted when rotated counter-clockwise. A sorted array is not considered sorted and rotated, i.e., there should at least one rotation. Examples: Input: arr[] = { 3, 4, 5, 1, 2 } Output: true Explanation: Sorted array: {1, 2, 3, 4, 5}. Rotating this sorted array clockwise by 3 positions, we get: { 3, 4, 5, 1, 2} Input: arr[] = {7, 9, 11, 12, 5} Output: true Input: arr[] = {1, 2, 3} Output: false Approach: One approach to solving this problem using Linear Search has already been discussed in this article. In this article, an approach using Binary Search concept is mentioned. To apply a binary search, the array needs to follow some order by which at every iteration, one-half of the array can be eliminated. Therefore, the order followed by an array which is sorted and rotated array is that all the elements to the left of the pivot(the point at which the array is rotated) are in descending order and all the elements to the right of the pivot would be in ascending order. This can be visualized from the illustration below: Therefore, the pivot can be found using Binary Search and recursion in the following way: Base Cases: The base case will be either when the pivot has been found or if the pivot cannot be found in the given array. The pivot cannot be found when the right index is less than the left index. -1 is returned in these cases. And when high and low are pointing to the same element, then the element at low is the pivot and that element is returned. if (high < low) return -1; if (high == low) return low; Apart from this, another base case is when mid((low + high) / 2) is a pivot. The element at mid is considered when that element is less than the next element or greater than the previous element. if (mid < high && arr[mid + 1] < arr[mid]) return mid; if (mid > low && arr[mid] < arr[mid - 1]) return mid - 1; Recursive Case: When none of the base cases satisfies, then a decision has to be made whether to ignore the first half or second half. This decision is taken by checking if the element at the first index (low) is greater than the element at the middle index or not. If it is, then the pivot for sure lies in the first half. Else, the pivot lies in the second half. if (arr[low] > arr[mid]) return findPivot(arr, low, mid - 1); else return findPivot(arr, mid + 1, high); Once the pivot is found, then either traverse to the left of the array from the pivot and check if all the elements are in descending order, or traverse to the right of the array and check if all the elements are in ascending order or not. Below is the implementation of the above approach: C++ #include <bits/stdc++.h> using namespace std; // Function to return the // index of the pivot int findPivot(int arr[], int low, int high) { // Base cases if (high < low) return -1; if (high == low) return low; int mid = (low + high) / 2; if (mid < high && arr[mid + 1] < arr[mid]) { return mid; } // Check if element at (mid - 1) is pivot // Consider the cases like {4, 5, 1, 2, 3} if (mid > low && arr[mid] < arr[mid - 1]) { return mid - 1; } // Decide whether we need to go to // the left half or the right half if (arr[low] > arr[mid]) { return findPivot(arr, low, mid - 1); } else { return findPivot(arr, mid + 1, high); } } // Function to check if a given array // is sorted rotated or not bool isRotated(int arr[], int n) { int l = 0; int r = n - 1; int pivot = -1; if (arr[l] > arr[r]) { pivot = findPivot(arr, l, r); int temp=pivot; // To check if the elements to the left // of the pivot are in descending or not if (l < pivot) { while (pivot > l) { if (arr[pivot] < arr[pivot - 1]) { return false; } pivot--; } } // To check if the elements to the right // of the pivot are in ascending or not pivot=temp; if(pivot < r) { pivot++; while (pivot < r) { if (arr[pivot] > arr[pivot + 1]) { return false; } pivot++; } } // If both of the above if is true // Then the array is sorted rotated return true; } // Else the array is not sorted rotated else { return false; } } // Driver code int main() { int arr[] = { 3, 4, 5, 1, 2}; if (isRotated(arr, 5)) cout<<"true"; else cout<<"false"; return 0; } // This code is contributed by mohit kumar 29 Java // Java implementation of the above approach class GFG { // Function to return the // index of the pivot static int findPivot(int arr[], int low, int high) { // Base cases if (high < low) return -1; if (high == low) return low; int mid = (low + high) / 2; if (mid < high && arr[mid + 1] < arr[mid]) { return mid; } // Check if element at (mid - 1) is pivot // Consider the cases like {4, 5, 1, 2, 3} if (mid > low && arr[mid] < arr[mid - 1]) {return mid - 1;} // Decide whether we need to go to // the left half or the right half if (arr[low] > arr[mid]) {return findPivot(arr, low, mid - 1);} else { return findPivot(arr, mid + 1, high); } } // Function to check if a given array // is sorted rotated or not public static boolean isRotated(int arr[], int n) { int l = 0; int r = n - 1; int pivot = -1; if (arr[l] > arr[r]) { pivot = findPivot(arr, l, r); int temp=pivot; // To check if the elements to the left // of the pivot are in descending or not if (l < pivot) { while (pivot > l) { if (arr[pivot] < arr[pivot - 1]) { return false; } pivot--; } } // To check if the elements to the right // of the pivot are in ascending or not pivot=temp; if(pivot < r) { pivot++; while (pivot < r) { if (arr[pivot] > arr[pivot + 1]) { return false; } pivot++; } } // If any of the above if or else is true // Then the array is sorted rotated return true; } // Else the array is not sorted rotated else { return false; } } // Driver code public static void main(String[] args){ int arr[] = { 3, 4, 5, 1, 2  }; System.out.println(isRotated(arr, 5)); } } //this code it contributed by Ajay Singh Python3 # Python3 implementation of the above approach # Function to return the # index of the pivot def findPivot(arr, low, high) : # Base cases if (high < low) : return -1; if (high == low) : return low; mid = (low + high) // 2; if (mid < high and arr[mid + 1] < arr[mid]) : return mid; # Check if element at (mid - 1) is pivot # Consider the cases like {4, 5, 1, 2, 3} if (mid > low and arr[mid] < arr[mid - 1]) : return mid - 1; # Decide whether we need to go to # the left half or the right half if (arr[low] > arr[mid]) : return findPivot(arr, low, mid - 1); else : return findPivot(arr, mid + 1, high); # Function to check if a given array # is sorted rotated or not def isRotated(arr, n) : l = 0; r = n - 1; pivot = -1; if (arr[l] > arr[r]) : pivot = findPivot(arr, l, r); temp = pivot # To check if the elements to the left # of the pivot are in descending or not if (l < pivot) : while (pivot > l) : if (arr[pivot] < arr[pivot - 1]) : return False; pivot -= 1; # To check if the elements to the right # of the pivot are in ascending or not else : pivot=temp pivot += 1; while (pivot < r) : if (arr[pivot] > arr[pivot + 1]) : return False; pivot += 1; # If any of the above if or else is true # Then the array is sorted rotated return True; # Else the array is not sorted rotated else : return False; # Driver code if __name__ == "__main__" : arr = [ 3, 4, 5, 1, 2 ]; if (isRotated(arr, 5)) : print("True"); else : print("False"); # This code is contributed by Yash_R C# // C# implementation of the above approach using System; class GFG { // Function to return the // index of the pivot static int findPivot(int []arr, int low, int high) { // Base cases if (high < low) return -1; if (high == low) return low; int mid = (low + high) / 2; if (mid < high && arr[mid + 1] < arr[mid]) { return mid; } // Check if element at (mid - 1) is pivot // Consider the cases like {4, 5, 1, 2, 3} if (mid > low && arr[mid] < arr[mid - 1]) { return mid - 1; } // Decide whether we need to go to // the left half or the right half if (arr[low] > arr[mid]) { return findPivot(arr, low, mid - 1); } else { return findPivot(arr, mid + 1, high); } } // Function to check if a given array // is sorted rotated or not public static bool isRotated(int []arr, int n) { int l = 0; int r = n - 1; int pivot = -1; if (arr[l] > arr[r]) { pivot = findPivot(arr, l, r); int temp = pivot; // To check if the elements to the left // of the pivot are in descending or not if (l < pivot) { while (pivot > l) { if (arr[pivot] < arr[pivot - 1]) { return false; } pivot--; } } // To check if the elements to the right // of the pivot are in ascending or not pivot=temp; else { pivot++; while (pivot < r) { if (arr[pivot] > arr[pivot + 1]) { return false; } pivot++; } } // If any of the above if or else is true // Then the array is sorted rotated return true; } // Else the array is not sorted rotated else { return false; } } // Driver code public static void Main(String[] args) { int []arr = { 3, 4, 5, 1, 2 }; Console.WriteLine(isRotated(arr, 5)); } } // This code contributed by Rajput-Ji Javascript <script> // Function to return the // index of the pivot function findPivot(arr, low, high) { // Base cases if (high < low) return -1; if (high == low) return low; var mid = parseInt((low + high) / 2); if (mid < high && arr[mid + 1] < arr[mid]) { return mid; } // Check if element at (mid - 1) is pivot // Consider the cases like {4, 5, 1, 2, 3} if (mid > low && arr[mid] < arr[mid - 1]) { return mid - 1; } // Decide whether we need to go to // the left half or the right half if (arr[low] > arr[mid]) { return findPivot(arr, low, mid - 1); } else { return findPivot(arr, mid + 1, high); } } // Function to check if a given array // is sorted rotated or not function isRotated(arr, n) { var l = 0; var r = n - 1; var pivot = -1; if (arr[l] > arr[r]) { pivot = findPivot(arr, l, r); var temp=pivot; // To check if the elements to the left // of the pivot are in descending or not if (l < pivot) { while (pivot > l) { if (arr[pivot] < arr[pivot - 1]) { return false; } pivot--; } } // To check if the elements to the right // of the pivot are in ascending or not else { pivot=temp; pivot++; while (pivot < r) { if (arr[pivot] > arr[pivot + 1]) { return false; } pivot++; } } // If both of the above if is true // Then the array is sorted rotated return true; } // Else the array is not sorted rotated else { return false; } } // Driver code var arr = [4, 5, 1, 3, 2]; if (isRotated(arr, 5)) document.write("true"); else document.write("false"); </script> Output: true Time Complexity: O(N) as: The pivot element is being found using Binary Search in O(log N) But in order to check if the left part or right part is in descending or ascending order, O(N) time is needed in worst case scenario. Therefore the overall time complexity is O(N)
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search
https://www.geeksforgeeks.org/check-if-an-array-is-sorted-and-rotated-using-binary-search/?ref=next_article
Data Science & ML
Check if an array is sorted and rotated using Binary Search
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.0084980065, -0.0172951, -0.0180493239, 0.0384913534, -0.0200129021, 0.00616381783, 0.00523404358, 0.0155915981, -0.0529516153, 0.0251234099, 0.00380037073, -0.0156306103, 0.0216123741, -0.024070099, -0.0153055135, -0.00109557307, 0.00201722, 0.031651333, -0.0148243718, -0.0337839648, -0.0116124246, -0.0209621824, -0.0448892377, 0.0495966263, -0.0193237, 0.00858253147, 0.00813389849, 0.0161897745, -0.0189335831, -0.00814040098, 0.0137320496, 0.00149544107, 5.53170939e-05, -0.0384653434, -0.0203249939, 0.0105136009, 0.00513326377, 0.0175811853, -0.0170480274, -0.0052828081, -0.0417423099, -0.00823142752, 0.0236279685, -0.0158256665, -0.0129648233, 0.0365407765, 0.0129908314, 0.00678800186, 0.00813389849, 0.00956432056, -0.00655068178, 0.00078795111, 0.019115638, 0.0289725438, -0.0076462552, 0.00588423526, -0.0500907712, 0.0219244659, 0.0118334899, -0.0176201966, 0.0399997979, -0.0197788328, -0.0288164988, -0.0212092549, 0.0154485563, -0.0200129021, -0.0413001813, -0.00285271625, -0.00604028162, -0.00121179491, -0.0668397099, 0.0240831021, 0.00308678532, -0.0172300823, -0.0296227373, -0.00503248442, 0.0388814658, -0.0105786202, -0.0410140976, 0.017880274, -0.0343041159, 0.0173861273, -0.0549802147, -0.0308711044, 0.00981789548, 0.00608579488, -0.00266416068, -0.0394536369, 0.0379972048, 0.0212482661, -0.0185694769, -0.0324835815, 0.00222203042, 0.0162287857, -0.00627109967, 0.0489724427, 0.0244472101, -0.00582571793, -0.013979123, 0.0608059317, 0.0287384763, 0.0146163106, -0.00953831337, 0.0112418151, -0.0108321942, 0.00150681939, -0.00253899884, 0.0147593524, 0.0363067091, 0.0488163978, -0.00382962939, -0.0198048409, 0.00399542833, 0.000785919314, -0.0216383822, -0.0124251647, -0.00221227738, -0.0492585264, 0.0106176315, 0.0268659238, 0.0143562341, 0.0360466316, -0.0168659743, 0.0484522879, -0.0279842541, 0.0138360802, 0.00370609295, 0.0130038355, -0.0119960383, -0.0199478827, 0.0188425574, -0.0140441423, 0.00407345127, -0.0314692818, 0.00525029842, 0.00907667726, -0.00710009411, 0.0545120761, -0.0163068101, -0.00387514289, -0.00490244571, -0.0408320427, 0.000626215944, 0.0347722545, 0.0407540202, 0.0305850208, -0.0289725438, 0.0473599657, -0.0446291603, 0.00985040516, -0.0423925035, 0.00543235196, 0.0156306103, -0.000983415, 0.0454614088, -0.030611027, 0.00193594594, -0.010708658, -0.0164368469, -0.0376070924, 0.02902456, -0.00771777611, 0.0267879, -0.0248763375, -0.0169179887, 0.012295126, -0.0205070488, -0.0212742742, -0.0176332, 0.0386994146, 0.00846549682, 0.0213262904, 0.00921321753, 0.0244602133, -0.0164498519, 0.0050877505, 0.017516166, 0.0132249007, 0.00124024076, -0.0487123653, 0.00014253422, -0.0566967204, -0.00401493395, -0.00254550064, 0.0118334899, 0.00936276093, 0.0239400603, -0.00590374134, -0.0369308926, 0.00780230109, -0.0385953821, -0.0167879518, 0.0486083366, 0.0231208187, -0.013979123, -0.0110402564, -0.0690763742, -0.00522104, -0.0241871327, 0.0417423099, -0.00841998309, -0.015747644, 0.0139661189, -0.00851101, 0.0455134213, -0.00303151901, -0.0300388597, -0.0345381871, 0.0125487009, -0.0345902, -0.0389074758, 0.0337579548, -0.0266318545, 0.00831595249, 0.00695055, 0.0166579131, -0.0324055552, 0.0323275328, -0.0339140035, 0.0333158262, -0.00198796135, 0.0147983646, 0.0379191823, -0.0209361743, -0.0441350155, -0.0569567978, 0.0273600686, 0.0258516241, 0.017347116, -0.0328997038, 0.00903766509, -0.013628019, -0.0131143676, -0.00756823225, 0.00169212406, -0.0229257606, 0.01468133, -0.00429126574, 0.0073991823, 0.0446031541, 0.00888812169, 0.0495186038, -0.0184524413, -0.00232443563, 0.0396096818, -0.0324315652, -0.00381012377, -0.00856952742, 0.0302989352, 0.0517812707, 0.00680100592, 0.00276168948, -0.024070099, -0.00891412888, 0.013563, -0.0143562341, -0.00834846217, 0.0391415432, -0.00331435236, 0.02088416, -0.00231630821, 0.021950474, 0.00382962939, 0.0271780156, 0.0351883769, -0.00918720942, 0.0182573851, 0.00380687276, -0.0193627104, -0.0519633256, 0.0382832922, -0.00824443158, 0.00619632751, -0.0321194716, 0.0264237933, -0.0108972136, -0.0476460531, -0.0245642439, 0.0312092043, -0.0287384763, 0.0156956296, -0.00879709423, 0.0318854041, 0.00543885399, 0.0162157826, -0.0187775381, 0.0134979812, 0.0131208692, -0.0512091033, 0.00594600383, -0.0142912148, -0.0130818579, -0.0144342566, -0.0177372303, 0.0295967292, -0.00290798256, 0.00275031105, -0.0303509515, -0.0382832922, -0.00999344699, -0.0113458466, -0.0174121354, -0.0110207498, 0.0345902, -0.0283743683, -0.0324835815, -0.0352403931, -0.0351883769, -0.0111767966, -0.0265928432, -0.00150600669, -0.0267879, -0.026020674, -0.0115148956, -0.00640764, 0.003936911, 0.0325616039, -0.0119375205, 0.0163458213, -0.00267553912, 0.0230167881, -0.02902456, 0.00597201148, 0.0518592931, 0.0269439463, -0.0138490843, -0.00817291066, 0.00446356647, -0.0354484543, -0.0390375145, 0.00250974018, 0.0240961071, -0.0188295525, 0.00513651501, 0.0150064258, -0.0114368731, -0.0336279161, 0.00874507893, -0.0171000436, 0.029388668, 0.0109362258, -0.00389139773, 0.0514691807, -0.0108321942, -0.00328997034, -0.00783481076, -0.000282020686, -0.00330297416, 0.0108972136, -0.0213522967, 0.00111426611, 0.0105851218, 0.0236539766, -0.00182703882, 0.0132964216, -0.0136540271, -0.0479581431, -0.033992026, 0.0213783048, 0.00177502353, 0.0104225734, 0.00143448554, -0.0440049767, 0.00363457203, 0.0121780913, 0.02299078, -0.0217294078, -0.0174251385, 0.000801361341, -0.00641089072, -0.0186865106, -0.0074511976, 0.000669291127, 0.00327534089, -0.054668121, -0.0191416461, 0.0130818579, -0.0311831962, 0.0313652493, 0.00738617824, -0.0238880459, 0.0102470219, 0.0109427273, -0.022834735, 0.000757473405, -0.0281663071, -0.00401493395, 0.0219894852, -0.0527695641, 0.0488163978, -0.0262807515, 0.0168269631, -0.0110792676, 0.0170870386, 0.0155785941, -0.00992192607, 0.00952530932, 0.0215473548, -0.00926523283, -0.0234069023, 0.0368008539, -0.0188425574, 0.0195317604, -0.012379651, -0.0073991823, 0.00986991078, -0.0107736774, -0.00933025125, 0.0146293147, -2.25027306e-05, 0.00827694125, 0.053081654, -0.0351883769, 0.0221585352, 0.016267797, 0.0230688043, -0.00588748651, 0.0142782107, -0.00139466126, -0.0223796, -0.00106225081, 0.00773728173, 0.00585172558, 0.0425225422, -0.0499607362, -0.00210499577, 0.0140051302, 0.0276201461, 0.0529776253, -0.018231377, -0.0230037849, -0.018400427, 0.00769827049, 0.00836146623, -0.0312872268, -0.0226786882, 0.0307410657, -0.0279322378, -0.0419763811, -0.016111752, 0.0113328425, 0.0620543025, -0.0150064258, -0.0273600686, 0.00124024076, -0.0122366091, -0.000888324459, 0.0222105496, -0.0109427273, 0.0153835369, -0.0204290245, 0.0202599745, -0.0134719731, -0.00927823596, 0.0326136202, -0.0225616544, 0.0192846879, -0.0192456767, -0.0204940438, 0.00725614, -0.00299575855, 0.00565991923, -0.0111898, -0.00617357064, 0.0463976823, 0.0144602647, -0.00378086511, -0.021586366, -0.0201689489, -0.0113913594, 0.0199478827, -0.0284523908, 0.0213522967, 0.0234459154, 0.0383353047, -0.00812089536, 0.0105070984, -0.0312352125, -0.0118399914, -0.0198438521, 0.00566967204, -0.0132704135, -0.0131403757, -0.0351363607, -0.00636212621, -0.010077972, 0.0412221588, -0.0374770537, -0.0072171283, -0.00684651919, -0.00892063, 0.00166611641, -0.0505589098, -0.0146553218, -0.0146683259, 0.0190116074, -0.0604418255, -0.0158126634, 0.00801686477, 0.0322495103, 0.0410661101, -0.047464, -0.044785209, 0.0372689925, -0.0172300823, -0.0476460531, 0.00513001299, 0.0234849267, 0.0523274317, -0.0648631305, -0.0232638605, -0.0342000872, 0.0114498772, 0.0260466821, -0.0173991323, -0.0185174607, -0.0549282, -0.0102015091, 0.00233906484, 0.00484717963, 0.0198568571, 0.0103770606, 0.0328997038, 0.00340375374, -2.35694515e-05, 0.0303249434, -0.00702207116, -0.00732115936, -0.0209101662, 0.00451883255, -0.0454614088, 0.0092197191, -0.00456109503, 0.0399997979, 0.00633611856, -0.0268659238, 0.00236182148, 0.0213262904, -0.0137060424, 0.0357865542, 0.0014101034, 0.0224966351, -0.0441870317, 0.00367033249, -0.0404939428, 0.029388668, 0.0299348291, 0.0189075768, 0.00892063, 0.0164888632, 0.018387422, 0.0279842541, 0.0154355522, -0.0082119219, -0.0166058969, 0.0280882847, -0.0257085823, -0.0174901579, -0.0220675077, 0.0112288119, 0.00297787832, 0.0150064258, -0.0118920077, -0.000766007171, 0.0201559439, -0.0348242708, 0.00603377959, 0.015032433, -0.0245252326, -0.0186605025, 0.006547431, -0.0269959625, 0.0166449081, -0.00763975317, 0.0205070488, 0.0284263827, 0.0188165493, 0.00386539, -0.0102405204, -0.00511375815, 0.00408320408, 0.00372234778, -0.00212775241, -0.0194017217, -0.0286084376, -0.0206240825, -0.0239140522, -0.0055949, 0.0110857692, 0.0126787396, -0.00506499363, 0.0329257101, 0.0070610824, 0.0292846374, -0.0215733629, -0.0172690935, -0.00847199839, -0.00662220316, -0.0136670303, -0.00155395828, -0.00154420547, 0.0300908741, 0.00754872616, -0.0145903034, 0.0190636218, 0.00827694125, -0.0110077467, 0.0369308926, 0.0187775381, -0.00567617407, -0.059661597, -0.00431402214, 0.0176722128, -0.00812739693, 0.0106176315, -0.0072041247, 0.0191676524, 0.00256500649, -0.0361246541, -0.0521193705, -0.011144287, 0.00468138047, -0.00786732, 0.0563326143, -0.00823142752, 0.0273600686, -0.0281923153, -0.0192456767, -0.0269959625, -0.0279322378, 0.0253574792, -0.0196227878, -0.0162287857, -0.00121423311, -0.00516577344, -0.00333223282, 0.00251136557, 0.00153851626, -0.0263587739, 0.0339140035, 0.00340050296, 0.00132070202, -0.0117099537, 0.0815080404, -0.00289172772, -0.00875158142, -0.0232898686, -0.0295967292, 0.00297462731, 0.00267066271, -0.00948629808, 0.0126787396, 0.050610926, 0.0173601191, 0.00997394137, -0.0176462047, 0.0194277298, -0.0147333452, -0.0133289313, -0.0158256665, 0.00126868661, 0.0186475, 0.00784131233, 0.0165798906, -0.00877758861, -0.00388164469, -0.00276819151, 0.0313392431, 0.0100714704, 0.0170220193, -0.00858903304, 0.00530231372, -0.0218724515, 0.0139011, 0.0213913079, -0.0340440385, -0.0259686578, 0.0427306034, 0.0251234099, 0.00457409909, 0.0262027271, 0.0098894164, 0.031521298, -0.00215863669, -0.0145772994, -0.00452533457, -0.00432052417, 0.00293073943, 0.00473339576, -0.0279062297, -0.033966016, -0.000616869424, 0.0160207245, 0.00167424371, 0.000898077386, -0.00195870269, 5.75584772e-06, 0.00593625056, -0.0315993205, 0.0115344021, 0.00592974899, -0.00892063, -0.00973987207, -0.0102860332, -0.0369829088, 0.027438093, 0.017516166, 0.0350063257, 0.0241221134, -0.033966016, 0.00584197277, -0.0014101034, -0.00819891784, 0.0202599745, 0.022301577, -0.0254224967, -0.0338359773, -0.0139271077, -0.0300908741, 0.00963584147, -0.00208711554, 0.0365667827, 0.0111507885, -0.0384133272, 0.00359556032, 0.00804937351, 0.00398567552, -0.0205460601, -0.0241351184, 0.00728864968, 0.00555913942, -0.0049967235, 0.00654418, -0.00472039217, -0.0158646796, 0.0016628654, 0.0210011937, -0.0182183739, -0.0109102177, -0.00363457203, 0.00625484483, -0.0278542154, 0.000876133388, 0.0214693323, 0.0340440385, 0.00275356206, 2.94110177e-05, -0.000521778886, 0.0146423187, 0.00533807417, 0.00459360471, 0.00903116353, 0.00704157678, -0.0104615856, 0.0183744188, -0.0203249939, 0.00167749473, -0.0211312324, 0.0228477381, 0.00495771226, -0.0104095703, 0.0156826247, -0.000293805409, 0.0172300823, -0.0132379038, -0.0207671244, -0.0468398146, -0.00587448245, 0.0181793608, -0.0331337713, -0.00799735822, 0.0156566184, 0.0221975464, 0.00966835115, -0.0406239815, -0.0113978619, 0.0385693759, 0.0111637926, 0.017698219, 0.00223828503, 0.00795184541, 0.0143172229, 0.0132183982, 0.0140051302, 0.0291806068, -0.0158906858, -0.0145512912, 0.00745769963, 0.0594015196, -0.0112158079, -0.0136930384, 0.0155915981, -0.0176852159, 0.00765275676, -0.00228054752, -0.0053965915, -0.021066213, -0.0284783989, -0.0256045517, -0.0250453856, 0.00567617407, -0.0125812106, -0.00649216445, 0.00340700475, 0.0122886244, -0.00195220078, -0.00773078, 0.0133939497, 0.0129713258, -0.00809488725, -0.0195707716, -0.00871256925, -0.00557214348, -0.00293236482, 0.00699606352, -0.00234069023, 0.00456759706, -0.00406694924, 0.0307150576, -0.000952530943, 0.00155802199, -0.00413521938, 0.0156696215, -0.00201559439, -0.00791933574, 0.0464757085, -0.0118790036, -0.0114303706, 0.0227567106, -0.0156696215, 0.0141091608, 0.0107866814, -0.00653442694, 0.030272929, 0.0164238438, -0.0166579131, -0.00491870055, 0.0138750924, 0.00410271, 0.0282183215, 0.0356305093, -0.0072041247, -0.0119635286, -0.0156826247, 0.0194147266, -0.00406369846, -0.0182183739, 0.0326136202, 0.0308190901, 0.0281663071, 0.0241611265, 0.00918720942, -0.0140441423, 0.0116384327, -0.0145382881, 0.0319894329, -0.0158906858, -0.00980489142, 0.00581921637, 0.0121325785, -0.0373730212, -0.00856952742, 0.00726264203, 0.010793183, 0.0221585352, 0.0199088715, -0.0326396264, -0.0388814658, -0.0211052243, -0.0314172655, -0.00241221138, -0.0186735075, -0.00724313594, 0.00910268445, -0.00412221579, 0.00670347689, -0.00165636349, 0.0307150576, 0.00439854711, -0.0260856934, 0.0317293592, -0.00438554352, -0.0598696582, -0.0312092043, -0.0378411599, 0.0329257101, -0.0155135756, -0.0515211932, -0.00521128671, -0.0328736939, 0.0127177509, -0.00660594832, -0.0173211079, -0.0327176489, 0.0318333879, 0.00493170461, 0.00998694543, 0.00341350678, 0.0136020118, 0.00972036645, 0.0204550326, 0.010175501, 0.02299078, 0.00659619551, 0.0208971631, 0.00539008947, 0.00345576927, 0.0243691877, 0.011508394, 0.0426785871, 0.00436278665, 0.0266318545, -0.0196618, -0.0475940369, 0.00306402869, -0.0214433242, -0.0539399087, 0.0111247813, 0.0102925356, -0.00537708588, -0.00685302122, 0.00765925879, -0.0115409037, 0.0165798906, 0.00365732866, -0.0118269883, -0.0314692818, 0.00293886685, -0.0147203412, -0.0123276357, -0.00359881134, 0.0203379989, -0.0168399662, 0.00799735822, -0.00966185, 0.00736667262, -7.8734156e-05, -0.00843298715, -0.0489724427, -0.0534197539, 0.0066904733, 0.0323535427, 0.0433547869, -0.0131468773, 0.00510400534, -0.0133549385, -0.0122040994, -0.0281923153, 0.015760649, 0.0244472101, 0.000491707528, -0.0153835369, 0.0105396081, -0.0298568048, 0.0119830342, 0.00471063936, -0.025669571, -0.0101039801, -0.0070610824, -0.0105981259, -0.00241383701, -0.0164368469, -0.0142652076, -0.0157086328, -0.0131208692, -0.0112418151, 0.0233939, -0.0141221648, 0.015916694, -0.00275031105, 0.034148071, 0.0152534982, 0.0206110794, 0.0266838688, -0.0342521034, 0.0400518104, 0.00526980404, -0.0502728261, -0.0200129021, 0.014863384, -0.00908317883, 0.00289985514, 0.01027303, -0.00306565408, 0.025825616, -0.0168399662, -0.0185694769, 0.00249348534, -0.000712772715, 0.000557539403, -0.00547136366, 0.00834846217, 0.00749671087, -0.00714560738, -0.0118204858, 0.0189725962, -0.00223503425, 0.00546486164, -0.00873857737, -0.0131728854, -0.0040409416, -0.0304029658, 0.00396942068, -0.0209361743, 0.0301168822, -0.00018550783, 0.0176852159, -0.00962934, 0.0303769596, -0.0343301259, -0.0198698603, 0.0181013383, 0.00767226284, 0.00784131233, 0.0323275328, -0.00117197062, -0.0417423099, 0.0229647737, 0.0352924094, -0.00449607614, -0.0133549385, -0.0443170704, -0.0101494929, 0.00355329784, 0.00676849624, -0.00351753738, -0.0181273464, 0.00231468258, -0.00972036645, 3.80463753e-05, 0.0010021081, -0.00570868375, -0.00434328103, -0.00793234, 0.0180233158, -0.0244602133, 0.00947329402, -0.0110272523, 0.00710009411, -0.0295707211, 0.0191936605, 0.0066904733, 0.0194017217, 0.00561115472, -0.0144862719, -0.0365667827, -0.00259426516, -0.0073081553, -0.00866055395, 0.00243821903, 0.012197597, 0.0165278744, 0.0107996855, 0.00689203246, -0.00565666845, -0.016280802, -0.00337774609, -0.0179322883, 0.0110857692, 0.000666852924, -0.0129388161, -0.027126, -0.00263165124, 0.0343821384, 0.0235109348, -0.0159557052, -0.00157021312, -0.00226754369, 0.0193367023, 0.00284296344, 0.0209751856, 0.00973337051, -0.00453508738, -0.0209101662, 0.0079778526, 0.00320219435, 0.00452858536, -0.00189043256, 0.0227046963, -0.00942778, -0.0135239884, -0.0270479769, 0.00214075646, 0.0337579548, -0.0383873209, -0.0180493239, -0.000967160217, -0.00429451652, 0.0181923658, -0.0103900647, 0.00403769081, -0.000731872104, -0.022119524, -0.0050357352, -0.00190993829, -0.0092197191, 0.00525029842, 0.0687122643, -0.0249803681, -0.00470738811, -0.035760548, 0.0163588244, 0.0013564626, -0.0051267622, 0.0159947164, -0.0182963964, 0.00503898598, 0.0363847315, -0.0124641759, 0.00550712412, 0.00753572257, 0.0144602647, 0.0144602647, 0.00948629808, -0.00417748187, 0.0193627104, -0.024941355, -0.00285596726, 0.00996744, 0.0353964381, 0.00933675375, 0.0281663071, 0.0164368469, -0.00426200684, -0.0231078155, -0.0236019604, 0.00521128671, 0.0197918378, -0.00619957829, -0.00890762731, -0.00262189819, -0.00257150829, 0.0323015265, 0.00793884136, -0.00892713293, -0.0213392936, 0.0162157826, -0.00619957829, 0.00229680235, -0.00182216242, 0.0244732182, 0.00343626342, -0.00258126133, 0.0098309, -0.00328671932, -0.0266838688, 0.00358580751, -0.0177762434, 0.00498372, -0.024590252, 0.0113133369, 0.0095058037, 0.0181923658, 0.0131533789, -0.02495436, 0.0238490328, -0.0173341129, -0.00598176429, -0.0204810407, 0.0260596853, -0.00987641234, 0.0044408096, -0.0169309936, -0.0231208187, -0.00392065616, -0.000470982661, -0.00152388692, -0.0245642439, 0.000574606936, 0.0272300299, -0.00392390741, -0.000773321837, 0.00346877309, -0.0223405883, -0.027776191, -0.0280362684, 0.00486343447, -0.0137840649, 0.00277306791, 0.00520803593, 0.00505849207, 0.0149674146, -0.000487643818, -0.0232248493, -0.0283743683, 0.0106306355, -0.0161897745, 0.00416122703, -0.0295187049, -0.0525094867, 0.0186735075, -0.00274055824, 0.00613130815, 0.00137027912, 0.0153445257, 0.0115018925, -0.00495121, -0.00330947596, -0.0136930384, -0.0181403495, 0.00309003633, -0.00681400951, -0.00793884136, 0.00856302585, -0.00425225403, 0.000403118902, 0.0151884798, 0.0224446189, -0.00626784842, 0.00860853866, 0.00500322552, 0.0196618, 0.0213653017, 0.00816640817, 0.00459035393, -0.00345251826, 0.0309231207, -0.00438554352, -0.00584197277, -0.000761130708, -0.0264237933, -0.0209231712, -0.0236019604, 0.0159947164, 0.013797069, 0.0218334384, 0.0269959625, -0.00417423109, -0.00621583313, 0.00533157261, -0.0160857439, -0.0193497073, 0.00362481899, -0.0140961576, -0.00932375, -0.0151624717, 0.00661245035, 0.00855652336, 0.0296227373, -0.0097853858, 0.00166123989, -0.0036735835, -0.00106550171, 0.0381532535, -0.0204940438, 0.0344081484, 0.0109557314, 0.0135499965, 0.0266838688, 0.00994143169, -0.00396942068, 0.0528735928, -0.0377631374, 0.0156436134, 0.00404419284, -0.0136930384, 0.00521453796, 0.010793183, 0.00895964261, 0.0321194716, 0.0140051302, -0.0383353047, 0.00381662557, -0.00474314904, -0.00428476371, -0.010357555, 0.00998044387, 0.0189335831, -0.0277241766, 0.0392455757, -0.00850450806, 0.027776191, 0.0151624717, 0.0324575715, 0.0200909246, 0.0196748022, 0.0105591137, -0.0118985092, 0.0227957238, 0.0164758582, 0.0235759523, -0.0323015265, -0.00654092897, -0.0150974523, -0.0019196911, 0.0488944203, 0.0105461106, -0.00956432056, 0.00103705586, -0.000612805714, -0.00275356206, -0.00136865361, 0.00478216028, -0.00749020884, 0.00332898181, -0.015916694, 0.0266838688, 0.010611129, -0.014330226, -0.0323015265, -0.00771777611, -0.0091677038, 0.0020253472, -0.0436668769, -0.0147983646, 0.00209524296, 0.00306077767, 0.0166189019, -0.0147203412, -0.00856302585, -0.0160857439, -0.0329517163, 0.00181891141, 0.0153315216, 0.0210272018, 0.0138620883, -0.00479841512, 0.000127092164, 0.0154485563, -0.00244309544, -0.0106436387, -0.000661163765, -0.00644014915, 0.00495446101, 0.00504223723, -0.00862804428, -0.0056534172, -0.00925873, 0.00298925652, 0.0174511466, 0.0131273717, -0.00304452283, -0.00672948454, 0.00410596095, -0.0499347262, -0.0393496044, 0.0626784861, 0.0224576239, -0.0173081048, -0.0213132855, 0.0159296989, 0.0186865106, 6.42572331e-06, -0.0088166, 0.00706758443, -0.0181143414, 0.0179973077, -0.00993493, -0.0327956714, -0.00793884136, -0.00505199, 0.0114498772, 0.0184264351, 0.0128087774, -0.00552012818, -0.0194537379, -0.0402078591, 0.0265928432, -0.0114888884, -0.0180493239, 0.0291806068, 0.0116319302, 0.00259589055, -0.0108321942, -0.0219634771, 0.00281207939, -0.00461636158, -0.0156956296, 0.0358905867, -0.00892713293, 0.00869956613, -0.0111247813, -0.0280102603, -0.000116221774, -0.0122756204, 0.0182573851, -0.0094928, -0.00962934, 0.040545959, 0.00684001716, 0.00845249277, 0.00790633168, -0.00868006, 0.000872069679, 0.00190831278, -0.00615406502, 0.00154501817, 0.0102015091, -0.00843298715, -0.0166189019, -0.010695654, 0.0107151605, 0.0475940369, 0.0220935158, 0.0112678232, -0.0238490328, 0.0187775381, -0.00827694125, 0.0243951939, -0.0020204708, 0.00339075, -0.00601427397, -0.0045318366, 0.0252404436, -0.0287644826, 0.0177242272, 0.0296747517, 0.00519178109, -0.0302469209, -0.0139141036, 0.0249153487, -0.00173276104, 0.00605978724, 0.0276981685, -0.0165148713, -0.00423599919, -0.000314936624, -0.0448632315, -0.0023732, -0.0122301066, 0.00687902886, -0.0136540271, -0.0214433242, -0.029388668, -0.0014629314, -0.0247593019, -0.0229257606, -0.00121342042, 0.00308841094, -0.00759424, -0.0149934217, 0.010877708, 0.0142001882, -0.0102470219, -0.0167229325, 0.0061865747, -0.000852563942, -0.0206110794, 0.0312092043, -0.00180590758, -0.00481792074, -0.00168562215, -0.0183224045, -0.0236019604, 0.00333548361, 0.0134849772, 0.00408320408, 0.00445056241, -0.00381012377, -0.00714560738, 0.0208581518, 0.0109622329, 0.0169049855, 0.0145252841, -0.000133492489, -0.00428151293, 0.0037255988, -0.0105201025, 0.0227957238, 0.00912219, -0.00684651919, 0.030793082, -0.0163328163, 0.002213903, 0.00217489153, 0.0046976353, 0.011072766, 0.00439204508, 0.0038231276, -0.00796484947, -0.010611129, -0.00262840022, -0.0187125187, -0.024434207, 0.0128022758, -0.00909618288, -0.00868656207, -0.0155135756, -0.0206500906, 0.0116644399, -0.00683351513, -0.00814690255, 0.0224316157, -0.0192196686, 0.0073991823, 0.01875153, 0.0103055397, 0.00107688014, 0.0211572405, 0.0346162096, 0.0300388597, 0.013615015, 0.0445511378, -0.0180233158, -0.000353338575, 0.00112401904, -0.0110987732, 0.0152534982, 0.0110402564, 0.0165928937, 0.0134459659, -0.0205720663, 0.0295967292, -0.0227697156, -0.0233939, 0.0186344963, -0.00693104416, -0.00255687907, 0.00657018786, 0.0130363451, -0.030611027, -0.00732766092, 0.0337059423, -0.0063003581, 0.0362026766, -0.000744063174, 0.0197268184, -0.0142001882, -0.00913519412, -0.0194017217, -0.024226144, 0.0287124682, -0.0137710618, 0.016098747, 0.012126076, -0.00418073311, -0.0138360802, 0.0147333452, 0.00240245857, -0.00350128254, -0.0430426933, 0.0298568048, 0.0175291691, 0.0287644826, 0.000733903958, -0.00328021729, 0.013979123, 0.00435953587, -0.00136621541, -0.00715861144, -0.0218594465, -0.00189530896, -0.00628410326, 0.0386474, -0.00438229227, 0.0135109844, 0.0148373758, -0.00124511716, -0.0177242272, 0.0055396338, -0.021599371, 0.0197138134, -0.00236182148, -0.00971386489, 0.0102535244, 0.00795834698, -0.000684733212, 0.00482117198, -0.00251461659, -0.00414172141, 0.0153055135, 0.0274120849, 0.000270642311, 0.00555913942, 0.0167619437, 0.00205135508, 0.00687252684, 0.0172951, -0.00221715379, 0.00338099711, -0.00650516851, 0.0022155284, 0.00103543035, -0.0146683259, 0.00868656207, -0.0153185176, 0.0184134301, -0.0100649688, 0.0192976911, 0.000219439724, -0.00823792908, 0.00188880705, 0.0412221588, -0.0115018925, -0.000772915431, 0.0181013383, 0.0223405883, -0.000439692172, 0.00177339802, -0.00938876905, -0.00351103558, -0.00236507249, -0.0205720663, 0.000290148077, 0.0144732688, 0.0132639119, -0.00550062209, 0.0157086328, -0.00442130398, 0.00248048152, -0.018387422, 0.0279582459, 0.00820542, 0.0222755689, 0.0122366091, 0.0111117773, 0.00549412053, -0.00295999786, -0.0215343516, -0.0111637926, -0.0054258504, 0.00819241628, -0.00407345127, 0.000472201762, -0.0137710618, 0.0104485815, 0.0180363189, 0.00645315321, -0.00561765675, 7.31465698e-05, -0.00460010674, 0.0116709424, 0.0257736016, 0.00930424407, 0.0125031872, -0.013797069, -0.0171390548, 0.00334848743, 0.00362481899, -0.00766576082, -0.0288164988, 0.00879709423, -0.00743819354, 0.031495288, -0.00734066498, 0.0218204353, -0.00438229227, 0.00327046448, 0.00156127301, -0.0214043129, 0.0224446189, 0.00196195371, -0.00299250754, 0.0111832982, -2.03184918e-05, 0.00583872199, -0.0204160213, 0.0263717771, -0.0142782107, -0.0064043887, -0.00384913525, -0.0194277298, -0.0171910692, -0.00250323815, 0.00283971243, 0.0123536438, 0.0236149654, 0.000789982965, -0.00667746924, 0.00215863669, 0.0161637664, 0.00760074146, -0.0152925104, 0.00314530265, 0.0143822413, 0.000946029031, -0.00913519412, -0.00136377721, -0.00162710482, 0.019115638, 0.0291806068, 0.00360206235, 0.0214433242, -0.013563, 0.0368268602, -0.00116790691, 5.85680536e-05, 0.00975287613, 0.0175941885, 0.00251136557, 0.00126055931, -0.00349478074, 0.00872557331, 0.010526605, 0.0214953385, -0.000956594595, 0.0224966351, -0.0113003328, 0.00218952075, -0.0197138134, -0.0163588244, -0.0240961071, -0.0129453177, -0.0246942826, 0.00721062673, -0.00669697486, 0.0109037161, 0.0121585857, 0.0144732688, 0.0197008103, -0.0129518202, -0.012126076, -0.0271520074, 0.00562740956, 0.00118822546, -0.0306370351, -0.000133797279, -0.0234069023, -0.00801686477, -0.00645640399, 0.0150194298, -0.0223796, -0.00179778016, -0.00161247561, 0.0150194298, -0.00488294, -0.0235759523, 0.00545835961, -0.00215863669, 0.00344601623, -0.00890762731, 0.0223926045, 0.0095058037, -0.0014645569, -0.0227697156, -0.0154225482, -0.00301526417, -0.0171910692, 0.00956432056, 0.0195057523, -0.00373535161, -0.0152404951, -0.00460010674, -0.0172820967, -0.0114368731, -2.78617335e-05, 0.00155152008, 0.0104095703, -0.0251234099, 0.0082639372, 0.00355004705, -0.012392655, -0.00733416295, -0.0141091608, -0.0218594465, -0.0226266738, -0.00227242, 0.0190116074, 0.00531531777, 0.00240733498, -0.00258288672, 0.0242781602, -0.0021683895, -0.00117765984, 0.00130200898, -0.0113068344, -0.00330785057, 0.0227697156, -0.0117489649, -0.00435953587, 0.0363067091, 0.00793884136, -0.00956432056, 0.0178412609, 0.0226526801, -0.0216773935, -0.0110077467, -0.0102860332, -0.0166839212, -0.0194147266, -0.00526330248, -0.0128347855, 0.0138490843, 0.0154615603, -0.0051267622, 0.0110402564, 0.0142782107, -0.0198048409, 0.00446031522, 0.017152058, 0.000805831398, 0.00361831719, -0.0306630433, 0.0112938304, -0.0102860332, -0.00135727529, 0.0108712064, 0.0156046022, 0.00569242891, -0.000960658304, -0.0019684555, -0.012490184, 0.00907667726, 0.0073601706, -0.00106468902, -0.0357865542, 0.00365407765, 0.0145512912, 0.0029762527, -0.0133939497, -0.0268139075, -0.0156306103, -0.0194927491, -0.0158776827, -0.0168139581, 0.0015100704, 0.00766576082, 0.0165018663, -0.00165473798, 0.0149674146, -0.0036800853, -0.00560465315, -0.00516252266, 0.00649216445, 0.000286084367, 0.00447331928, 0.0190116074, -0.0179843046, -0.0314692818, 0.0156436134, 0.0235759523, 0.00479516434, 0.00884260796, 0.0076462552, -0.0320154428, -0.00707408646, -0.0164108407, -0.00464236923, 0.0239140522, -0.0103835622, -0.0168139581, -1.15688417e-05, 0.0158516746, -0.00847199839, 0.0121585857, 0.0151104564, -0.0197788328, 0.0190506186, -0.00582571793, -0.0142131913, 0.0173601191, -0.0165798906, 0.00541934837, 0.0234329104, -0.0127827702, -0.00931724813, 0.0259946659, -0.00468463171, 0.0163848326, -0.00851101, -0.0120675592, 0.010890712, 0.012295126, 0.00675549218, 0.00795834698, 0.000190282677, -0.00691804, 0.0197658297, 0.00232118461, -0.0304549821, -0.0158646796, -0.0165018663, -0.0267358851, -0.0104095703, -0.000753003347, -0.00612480612, 0.0136670303, 0.0179452933, -0.0194017217, 0.0211312324, -0.00604028162, -0.0020090926, 0.0111898, 0.00298275473, -0.0257866047, -0.00620608032, -0.00704157678, -0.000114189927, -0.0128217814, -0.00973337051, 0.0223405883, 0.0101885051, -0.00801036227, 0.0197658297, 0.00288685132, 0.0105005968, -0.00724313594, -8.02580471e-05, 0.00689203246, 0.0231208187, 0.00767876441, 0.00219927356, 0.0155785941, 0.0044928249, 0.00847199839, 0.00990242, 0.00226754369, -0.00974637456, -0.0171910692, -0.00187580322, -0.0172560886, 0.019635791, -0.00672298297, -0.00327046448, 0.0163978357, 0.00293073943, 0.00060914841, 0.0039141546, -0.0124641759, -0.013810073, -0.0119115133, -0.00601427397, -0.00190831278, -0.0175941885, -0.00631661294, 0.0215083435, -0.0255655404, -0.0059622582, 0.0176462047, -0.0151754757, 0.00577045185, -0.00290310616, -0.0181793608, -0.00357930572, -0.0206760988, -0.00430426933, 0.00253249682, 0.00173601194, 0.00144992757, -0.0195577685, -0.0349283, -0.0133094257, -0.0107736774, 0.0159817133, 0.00319569255, -0.0207541212, 0.0148763871, 0.0281142909, 0.0228087269, -0.0128802983, -0.0168009549, 0.0107411677, -0.0123016285, -0.00306402869, 0.00603703037, 0.0118725011, -0.000683107704, 0.026189724, 0.0101689994, -0.0202989858, -0.0199348796, 0.000828181743, 0.00370934396, -0.0161897745, -0.00388814672, -0.0145772994, 0.0165668856, -0.00406044768, 0.00227242, 0.0351363607, 0.0024772305, 0.00698305946, 0.0188815687, -0.0201689489, -0.00607279083, -0.00419373671, -0.00427826168, -0.00802986789, -0.0152014829, -0.00382637838, -0.0275681298, 0.0133939497, 0.00703507476, -0.0169179887, -0.0177762434, -0.013010337, 0.00286084367, 0.00862154271, 0.00583222, 0.00769176846, 0.00107769284, -0.00917420536, 0.00114433747, 0.00688553089, -0.00927173439, -0.00188555603, -0.00108013104, 0.00409620814, 0.00150681939, -0.00887511764, 0.00255362806, 0.0205200519, 0.00687252684, 0.000286084367, 0.0116319302, 0.0130428467, -0.00880359672, 0.0186084881, -0.00652142335, -0.00171975722, -0.0128217814, -0.0145642953, -0.00298600574, 0.0127047468, 0.00586798042, -0.00988291483, 0.0282443296, -0.0179582965, 0.0168919824, -0.001205293, -0.00753572257, -0.00700256508, -0.00482767401, -0.0011638432, -0.0162547939, -0.0178282578, -0.0281142909, 0.0127697662, 0.00567942485, -0.0146683259, -0.00299575855, 0.007165113, 0.0143432301, 0.00365407765, 0.00527955685, 0.00122886244, 0.0104160719, -0.0175681803, -0.00320056896, 0.0097918883, 0.0075032129, -0.0100259567, 0.0204810407, 0.001061438, -0.00569567969, 0.00400193036, -0.00434003, -0.00738617824, 0.015747644, 0.0113133369, 0.00444406085, -0.00650516851, -0.0262547433, 0.0168659743, -0.0111832982, -0.00966185, 0.00865405239, 0.00611180253, -0.00594600383, -0.0131208692, 0.0107216621, -0.0134719731, -0.0119570261, -0.015214487, -0.00330785057, 0.00225779088, 0.0019570773, -0.00137840654, 0.0243041683, 0.0105136009, 0.0170480274, 0.000287100294, 0.00329647213, 0.0246552713, 0.00263490202, -0.0173731241, -0.0113588497, -0.00451883255, -0.027438093, 0.00597526226, -5.39709959e-07, -0.00118253625, -0.020871155, -0.000377111224, -0.0126917427, -0.00232118461, -0.00447331928, 0.0104745887, -0.00403769081, 0.00752922054, -0.0026267746, 0.00283158501, 0.00242684083, -0.0116709424, 0.0168529712, 0.00290635717, -0.0293626599, 0.0121000689, 0.00333223282, 0.0180363189, 0.0172300823, -0.0159687102, -0.0103445509, 0.0104875928, 0.0109622329, 0.030793082, 0.0103120413, 0.0098309, 0.0058777337, 0.0240310878, 0.00325746066, 0.0167229325, 0.00231630821, -0.0170740355, 0.0112548191, 0.00617032, -0.0230427962, 0.0140831536, -0.0179062802, 0.0216513854, -0.0103900647, 0.0218074322, -0.00258288672, 0.0198958684, 0.0145642953, 0.0358385704, 0.00980489142, -0.00977888424, 0.00856302585, 0.0280362684, -0.0018660503, -0.0147073371, -0.00651492132, 0.00655393302, -0.0119570261, 0.00155070738, -0.0119375205, -0.0194927491, -0.000930586946, 0.00721062673, -0.0158646796, 0.00179290376, -0.00657343864, 0.0100129526, 0.00843298715, 0.00645315321, 0.00621908437, 0.0140961576, 0.0166579131, -0.021586366, -0.0205330551, -0.00158890605, 0.0137060424, -0.00730165327, -0.00549086928, 0.00810789131, 0.0173601191, -0.0155395828, -0.0158516746, 0.0188425574, -0.000682701357, 0.0126007162, 0.0402078591, 0.00831595249, -0.00242196419, 0.0154485563, -0.00258776313, 0.0035825565, -0.00346227107, -0.0252534486, -0.00596876023, 0.0290765762, -0.0170350242, 0.0176071934, 0.00627435045, -0.0300388597, 0.0218074322, -0.00325095886, -0.00819241628, 0.0163848326, 0.00886861514, -0.0107866814, -0.0053965915, 0.0157216359, 0.00179290376, 0.0064954157, 0.0279062297, -0.0205330551, 0.00071074086, -0.0151494676, -0.0167879518, 0.00364107382, -0.00652792538, -0.010357555, 0.0104355775, 0.0301949047, 0.00946029, -0.0199088715, 0.00612480612, -0.0190376155, -0.0139531149, 0.00227892213, 0.0142131913, 0.0131208692, 0.0176332, 0.0261247046, -0.0123861525, 0.0139661189, -0.00300876237, 0.00281858118, -0.00594600383, 0.0183614157, -0.0100584663, -0.00929774251, 0.00319569255, 0.0217554159, 0.00385888806, 0.00999994949, -0.00734066498, -0.0118399914, 0.0136540271, 0.00818591379, 0.0135499965, 0.0197008103, -0.00661245035, -0.0239920765, 0.00838747341, 0.0026202728, -0.0108842095, 0.00738617824, -0.0239270572, 0.0302989352, -0.00511700893, -0.00440179836, -0.00503898598, -0.00767226284, 0.030428974, -0.00760074146, 0.000944403524, 0.015214487, 0.0173731241, 0.00912869256, -0.00567942485, 0.0359686092, -0.0139531149, -0.00676849624, -0.00935625937, 0.00222853222, 0.0109167192, 0.0152925104, 0.0064661568, -0.0040799533, -0.00497396709, 0.0155395828, 0.0011589668, 0.0021066214, -0.0108386967, -0.00346877309, 0.00999344699, 0.0122171035, 0.00621583313, -0.00356630189, 0.024941355, -0.0020253472, -0.00777629344, 0.00484392839, -0.0065864427, -0.00715861144, 0.00885561202, -0.00581921637, 0.00766576082, -1.43499356e-05, 0.00758123584, 0.01468133, 0.00080542505, 0.0165408775, -1.37530797e-05, 0.002122876, -0.00347527489, 0.0143952454, 0.0190766267, -0.0206370857, 0.0107346661, 0.00669697486, 0.00973987207, -0.0151364645, -0.0025243694, -0.0085435193, 0.0135760037, 0.00276168948, -0.0189335831, -0.00163523224, -0.0106566427, 0.00519178109, 0.00769176846, -0.0204550326, -0.0116514359, 0.0120025398, -0.0101234857, 0.0066904733, 0.015409545, -0.00336799328, -0.0115539078, -0.00366383046, -0.00350453355, -0.00566967204, -0.0227827188, -0.00451233098, -0.0211962517, 0.00467162766, 3.69796544e-05, 0.0186995156, 0.00951230526, -0.0154225482, -0.000429532927, -0.011059762, 0.000521372538, -0.00553638302, 0.00104111957, -0.00459685549, 0.027256038, 0.00651167054, -0.00706758443, 0.00918070786, -0.0191806573, 0.0044700685, -0.0166189019, -0.00852401368, -0.00938876905, -0.00480816793, 0.0073081553, -0.0179062802, -0.0343821384, -0.00336474227, -0.0116579384, -0.00763325114, 0.0262547433, -0.00424250122, -0.00132557843, 0.00703507476, -0.00790633168, -0.0214953385, 0.000316358928, 0.0196097828, 0.0121065704, 0.0314692818, -0.0220284965, -0.0112418151, 0.00892713293, -0.00767226284, 0.017347116, -0.00244797207, 0.0126267243, 0.00960983429, 0.00478541153, 0.00818591379, 0.00568592688, 0.00687902886, 0.013563, 0.0094993012, -0.0137320496, 0.0073601706, -0.00595900742, 0.00054819294, 0.0272820462, 0.00850450806, -0.0125356968, -0.0126137203, -0.0038393822, 0.00590374134, -0.0139401108, -0.00179127825, -0.00540959556, -0.015227491, -0.00789332762, 0.019466741, -0.00767226284, -0.0144602647, -0.0120350495, 0.0192456767, -0.0103120413, 0.0165278744, -0.0284263827, 0.0047496506, -0.00986991078, -0.0116969496, -0.00172300811, -0.00892713293, 0.0146553218, 0.00170350238, 0.0149544105, 0.057893075, -0.0185304657, -0.0185304657, -0.00304939924, 0.0215733629, -0.00116790691, 0.00331272697, -0.00124674267, 0.00283483602, 0.00897914823, -0.0011581541, 0.00124755548, 0.00856952742, -0.00866055395, -0.013615015, 0.00105412339, -0.0387254208, -0.0118529955, 0.00406369846, 0.021586366, -0.0126332259, -0.0161247551, 0.00142879633, -0.00276819151, -0.0021635131, -0.00651492132, -0.000375079369, -0.000674980343, -0.0047268942, 0.0179582965, -0.0315473042, 0.00404744362, -0.00755522819, 0.0220935158, -0.0172170773, 0.0198698603, 0.00256013, 0.0137580577, -0.0128672952, 0.0128933024, 0.0289205294, -0.00554938661, 0.0051267622, -0.0175551772, -0.00598176429, -0.0127372565, -0.00273568183, -0.00582246715, 0.0196097828, -0.0217944272, 0.001061438, -0.012828283, 0.00389464851, -0.00399542833, 0.0306370351, 0.0113718538, -0.000811520556, -0.00317293569, 0.0169309936, -0.0171650629, -0.019466741, 0.0020253472, 0.00964884553, 0.00597201148, -0.00340375374, 0.0318854041, 0.00994143169, -0.000245650561, -0.00249348534, 0.00572493859, 0.00515277, 0.0154875675, 0.00167261832, -0.0395316593, -0.0153055135, -0.003228202, -0.00349152973, 0.0150974523, -0.000838747364, 0.00079201482, -0.0118204858, -0.0129388161, 0.0085500218, -0.0088361064, 0.00934975781, 0.0375290699, -0.00211962522, -0.0118725011, -0.0147073371, 0.00976588, -0.00414497266, 0.0134329619, 0.019999899, 0.0033257308, -0.0243431795, -0.00216513849, -0.00116546871, 0.00935625937, 0.0126332259, 0.0089336345, -0.0024658523, 0.0188425574, 0.014330226, -0.0127567621, 0.00734066498, -0.0108582024, -0.00354354503, -0.0570088141, 0.0105721178, 0.0326916426, 0.0276201461, 0.00558839832, 0.00738617824, -0.001361339, -0.0462416373, -0.00339725194, 0.0120480536, -0.0156566184, 0.00778279547, -0.00174251385, 0.0172820967, 0.000516902423, 0.00779579906, 0.0213262904, 0.00717811706, 0.00451883255, -0.00189205806, 0.00656368583, -0.0156566184, 0.00577370264, -0.00754872616, 0.00214400725, 0.0313912593, 0.00526005123, -0.0126397274, -0.00227892213, -0.00195220078, -0.0464497, 0.0214563273, 0.0320934653, -0.0244602133, -0.00105412339, 0.00267716451, -0.00798435509, -0.0249023438, 0.0110922717, -0.0117359608, -0.0115018925, -0.00342976162, -0.02071511, -0.0229777768, -0.00672298297, 0.0271520074, 0.0124966856, 0.0164888632, 0.0128217814, 0.0310271513, -0.00263652764, 0.0143692382, -0.0261117015, -0.00663195597, -0.0174121354, -0.0155265788, -0.00105005968, 0.00866055395, 0.039089527, 0.00999994949, -0.0124316663, -0.0240180828, 0.00376786129, -0.0022659183, 0.0227307044, 0.00762024755, 0.00160272268, 0.0193627104, 0.0145772994, 0.00741868792, -0.0139531149, 0.0192586798, -0.011592919, 0.0131013636, -0.00276819151, -0.00510075456, -0.000421811914, -0.0125487009, -0.0201039296, -0.0124251647, 0.0159947164, -0.00327696651, 0.0126722371, 0.0107541718, -0.0162027776, -0.00802336633, -0.00280882837, 0.000955781899, 0.007873822, 0.00986340921, 0.018400427, 0.000634343305, -0.0102470219, 0.00147430983, 0.0042229956, -0.00310954219, -0.0172430854, -0.0160337295, -0.0117099537, 0.0197658297, 0.00805587601, 0.00890762731, 0.0221975464, 0.00973987207, 0.02299078, -0.00776328938, -0.0227177, 0.0363847315, -0.00594275258, 0.00845899433, 0.00788682606, -0.000892388169, 0.00448957412, -0.00776328938, 0.00860853866, 0.0155395828, -0.000380565354, -0.00240733498, -0.00700256508, 0.00341675756, -0.015916694, -0.0285304151, -0.013276916, 0.00247072871, 0.0147203412, 0.0143042188, -0.00428801449, -0.00726914406, -0.0206500906, -0.00544535602, 0.0194017217, 0.0152665023, 0.00652792538, -0.0116644399, -0.0050357352, -0.0112548191, 0.00644990243, -0.00299088215, -0.00231630821, -0.0057964595, -0.0115799149, -0.00225291448, 0.012197597, -0.0205460601, 0.00368333631, -0.0195057523, -0.0143042188, -6.07522925e-05, 0.0104225734, -0.0156696215, -0.0116449343, -0.0177242272, -0.00624184078, 0.0151884798, -0.0131273717, -0.00652792538, -0.00169862597, 0.00760074146, 0.0222105496, -0.00981789548, -0.000909455703, 0.0166058969, -0.0152014829, 0.0122626163, 0.00284783985, -0.0142001882, -0.0140441423, -0.0217944272, -0.0242391489, -0.00213425444, 0.00391740538, -0.0106696468, 0.00920021348, -0.00215050927, 0.0149414064, -0.0189595912, -0.016462855, -0.0190766267, -0.0184784494, 0.0234719217, 0.00602077553, -0.00317943771, -0.0192586798, 0.00539008947, 0.00864104833, -0.0175941885, -0.00132070202, 0.00201722, 0.0039889263, 0.00557214348, 0.0152014829, -0.00278119533, -0.00517227547, 0.0262417383, 0.0202859826, 0.011859498, 0.00393366, -0.0146163106, -0.0123861525, -0.00741868792, 0.00128087774, -0.0320414491, 0.000999669777, 0.0122756204, 0.00627760123, -0.0100519648, 0.00948629808, 0.00213100342, 0.0142782107, -0.023901049, -0.0072171283, -0.00773728173, 0.00375810824, -0.0230037849, 0.0127177509, -0.0176722128, -0.0325876102, -0.000382597209, 0.00963584147, 0.00375485746, 0.0274120849, -0.00876458455, 0.0376331, 0.00689203246, 0.030975135, -0.00519178109, 0.0236409716, 0.0132444063, -0.00672298297, 0.0116579384, -0.0314172655, 0.00213425444, -0.00888812169, -0.0144212535, -0.00803637, 0.00602727756, -0.015227491, 0.0245772488, -0.00492520258, 0.0241741296, 0.0118204858, 0.018387422, -0.018387422, 0.0194797441, -0.0119180148, 0.00564041361, 0.0156956296, -0.00560140191, -0.00268204091, -0.0216383822, 0.00239433115, -0.00266253529, -0.00520803593, 0.0239140522, 0.0153705329, -0.0300388597, -0.0153835369, 0.0195187572, -8.07660108e-05, 0.0109492289, -0.00498372, -0.0063913851, 0.002013969, -0.00199608877, -0.00263002561, -0.00150194298, 0.00264302944, -0.0155265788, -0.00526005123, -0.00953831337, 0.00384588423, 0.013615015, -0.0398697592, 0.00502923317, 0.00146862061, 0.013010337, -0.00608579488, -0.00420999154, -0.00982439704, -0.000976100389, 0.00615406502, -0.0185434688, -0.00802986789, -0.00778279547, -0.0246812794, -0.00875808299, -0.0226136688, -0.0199348796, -0.0084459912, -0.00375485746, 0.0477760918, -0.0188295525, -0.0108321942, 0.018764535, -0.0450973, 0.00446031522, 0.00348177692, -0.0127502605, 0.00319894333, 0.00845249277, 0.0141351689, 0.000531531754, -0.00127600133, 0.0118399914, 0.000204099255, -0.0150714451, -0.0029811291, -0.0198828634, -0.00124755548, -0.0243171714, -0.0117099537, 0.0242131408, 0.00910268445, -0.0115734134, 0.013979123, 0.00563391158, -0.00719762268, -0.00823142752, 0.00731465733, -0.00633937, -0.0160857439, 0.0157996602, 0.0028787239, 0.00282345759, -0.0117359608, -0.0181013383, 0.020181952, -0.00118334894, 0.0104810912, -0.0218594465, -0.00512026, 0.0131143676, -0.00795834698, 0.00438229227, 0.00547136366, 0.00609229691, -0.0134069538, -0.0264888126, 0.00160109717, -0.0196227878, -0.00730165327, 0.0142001882, -0.00923922472, -0.0234849267, 0.0105916234, 0.00500647631, -0.0110662635, 0.00179615477, 0.000583140703, -0.0153315216, -0.0161637664, -0.00828344282, 0.00531856855, 0.0133289313, -0.00951880775, -0.0240570959, -0.0263977852, 0.00196032808, 0.0208191406, -0.00946029, 0.00303964643, -0.0188815687, -0.0103055397, -0.0137580577, -0.0168269631, -0.00383288041, -0.0158386715, 0.0147203412, -0.0194277298, -0.0159687102, 0.0107021565, -0.0162938051, -0.00909618288, 0.0713650435, 0.0218854547, 0.0144732688, -0.00936276093, -0.00578345545, -0.0182573851, -0.00290148077, 0.0334458649, -0.0154875675, 0.0163718276, 0.00465862406, -0.00513651501, 0.00143367285, 0.00306565408, -0.0105201025, -0.00310954219, -0.000245041, 0.0197658297, 0.01468133, 0.00335824047, -0.0195967797, -0.00964884553, 0.0137320496, -0.004027938, -0.0211182274, -0.00227242, -0.000492926629, 0.00451233098, -0.0183484107, 0.0098374011, 0.00282833423, -0.000792421226, -0.00396942068, -0.00659619551, -0.0259036403, 0.0064434004, 0.0186475, 0.0156046022, 0.0016628654, -0.0191546492, 0.0236279685, 0.0241871327, -0.00136377721, 0.0129908314, 0.00337449531, 0.0100584663, 0.0133419344, 0.00905717071, 0.00702857273, -0.0119375205, -0.021586366, -0.00470738811, 0.00778279547, -0.0208581518, -0.00855652336, 0.0148893911, -0.00559815113, 0.00484717963, 0.0125877121, 0.0246552713, 0.00241871341, -0.00350453355, -0.00347202388, 0.00648891367, 0.0166709162, -0.0231598299, -0.0109817386, 0.0101494929, 0.00257313391, -0.0022659183, 0.00645965524, -0.00231305719, -0.000996418879, -0.0115213981, 0.00503248442, -0.00482442277, 0.00411896454, -0.00581921637, 0.0059395018, -0.0355004705, -0.0109492289, 0.00512026, 0.000788763864, -0.0114693828, 0.000346430286, -0.011944023, -0.00814040098, -0.0197528247, 0.00363132101, 0.001205293, 0.00682051154, 0.0211312324, -0.00360531337, 0.0126787396, 0.017516166, -0.000414903625, -0.00485368166, 0.00667096721, 0.00700256508, 0.00197658292, 0.0170480274, -0.00793234, -0.0121585857, 0.0333418325, -0.00517552625, 0.012197597, -0.00345251826, 0.00115083938, 0.0230167881, 0.00428151293, 0.0260986965, -0.0129843289, -0.00489594415, 0.0128412871, -0.00561115472, 0.0242651571, 0.0250453856, -0.00594275258, 0.0135239884, 4.00782264e-05, 0.0156436134, 0.00506824488, -0.0013133873, -0.00128331594, -0.00319081615, -0.00204810407, 0.0170090161, -0.016267797, 2.10296403e-05, -0.00507799769, 0.00264953147, -0.00155477109, 0.0161637664, 0.00627109967, 0.00598501507, 0.00958382618, -0.0142391995, -0.012113072, -0.00211637421, -0.00219602254, 0.0198698603, 0.0143432301, 0.00665471284, 0.016111752, 0.0216643885, -0.00369308912, 0.0114823868, -0.016631905, 0.0428086258, -0.0182833914, -0.015045437, 0.00606628926, -0.0044180532, -0.00116546871, 0.0108061871, 0.000603865599, -0.000440504926, -0.0276201461, 0.011508394, -0.0138750924, -0.00125568279, 0.0089336345, 0.00870606769, 0.00749020884, 0.0257215854, -0.024590252, 0.0182703882, -0.00496421428, 0.000760724361, -0.00235694507, 0.0134329619, 0.00804287195, -0.0139271077, 0.00651167054, -0.012925812, 0.00192131661, -0.00524054561, 0.0285824295, -0.00345251826, 0.00318268873, -0.0185044575, 0.00433027698, 0.0078803245, 0.0293106437, 0.00905717071, -0.00330947596, 0.000496583933, -0.00283971243, 0.0112483175, -0.00734066498, -0.00736667262, 0.00904416759, -0.0031696849, -0.007347167, -0.020702105, -0.0101494929, 0.021235263, -0.00885561202, 0.00667746924, 0.00839397591, 0.0144732688, 0.0044408096, 0.0126397274, 0.0191286411, -0.0194147266, 0.0391675532, -0.00905717071, 0.00342651061, -0.00293399021, -0.0153445257, 0.0177502353]
14 Nov, 2024
Longest Common Prefix using Binary Search 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: The idea is to use binary search on the indices to find the length of longest common prefix. We can observe that the length of common prefix cannot be greater than the length of smallest string in given set of strings. So the search space for binary search will be from 0 to length of smallest string – 1. In each iteration of binary search [low to high], we will check whether the prefix [low to mid] is common among all strings or not. If the prefix is common among all string then check for larger length prefix by updating low = mid + 1Else check for smaller length prefix, by updating high = mid – 1.Note: Instead of checking each character from 0 to mid, we will to check only substring from low to mid because substring from 0 to low would have been checked in previous iterations and found to be common. C++ // C++ program to find the longest common prefix // using Binary Search #include <iostream> #include <vector> using namespace std; // Function to check if the substring between the // indexes[left ... right] was common among all strings or not bool allContainSubstring(vector<string>& arr, int left, int right) { for (int i = 1; i <= arr.size() - 1; i++) { for (int j = left; j <= right; j++) { if (arr[i][j] != arr[0][j]) return false; } } return true; } // A Function that returns the longest common prefix // from the array of strings string longestCommonPrefix(vector<string>& arr) { int minLen = arr[0].length(); // Find length of shortest string for (int i = 1; i < arr.size(); i++) minLen = min(minLen, (int) arr[i].length()); // We will do an in-place binary search on the indices // to find the length of longest common prefix int lo = 0, hi = minLen - 1; int prefixLen = 0; while (lo <= hi) { int mid = lo + (hi - lo) / 2; if (allContainSubstring(arr, lo, mid)) { // If all the strings in the input array // contains common prefix till mid index // then update prefixLen with mid + 1 prefixLen = mid + 1; // And then check in the right part lo = mid + 1; } // Otherwise check in the left part else hi = mid - 1; } // return the common prefix by taking // substring from first string return arr[0].substr(0, prefixLen); } 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 Binary Search import java.util.List; class GfG { // Function to check if the substring between the // indexes[left ... right] was common among all strings or not static boolean allContainSubstring(String[] arr, int left, int right) { for (int i = 1; i < arr.length; i++) { for (int j = left; j <= right; j++) { if (arr[i].charAt(j) != arr[0].charAt(j)) { return false; } } } return true; } // A Function that returns the longest common prefix // from the array of strings static String longestCommonPrefix(String []arr) { int minLen = arr[0].length(); // Find length of shortest string for (String str : arr) { minLen = Math.min(minLen, str.length()); } // We will do an in-place binary search on the indices // to find the length of longest common prefix int lo = 0, hi = minLen - 1; int prefixLen = 0; while (lo <= hi) { int mid = lo + (hi - lo) / 2; if (allContainSubstring(arr, lo, mid)) { // If all the strings in the input array // contain common prefix till mid index // then update prefixLen with mid + 1 prefixLen = mid + 1; // And then check in the right part lo = mid + 1; } else { // Otherwise check in the left part hi = mid - 1; } } // Return the common prefix by taking // substring from the first string return arr[0].substring(0, prefixLen); } 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 Binary Search # Function to check if the substring between the # indexes[left ... right] was common among all strings or not def allContainSubstring(arr, left, right): for i in range(1, len(arr)): for j in range(left, right + 1): if arr[i][j] != arr[0][j]: return False return True # A Function that returns the longest common prefix # from the array of strings def longestCommonPrefix(arr): minLen = len(arr[0]) # Find length of shortest string for s in arr: minLen = min(minLen, len(s)) # We will do an in-place binary search on the indices # to find the length of longest common prefix lo, hi = 0, minLen - 1 prefixLen = 0 while lo <= hi: mid = lo + (hi - lo) // 2 if allContainSubstring(arr, lo, mid): # If all the strings in the input array # contain common prefix till mid index # then update prefixLen with mid + 1 prefixLen = mid + 1 # And then check in the right part lo = mid + 1 else: # Otherwise check in the left part hi = mid - 1 # Return the common prefix by taking # substring from the first string return arr[0][:prefixLen] if __name__ == "__main__": arr = ["geeksforgeeks", "geeks", "geek", "geezer"] print(longestCommonPrefix(arr)) C# // C# program to find the longest common prefix // using Binary Search using System; using System.Collections.Generic; class GfG { // Function to check if the substring between the // indexes [left ... right] was common among all strings or not static bool allContainSubstring(string[] arr, int left, int right) { for (int i = 1; i < arr.Length; i++) { for (int j = left; j <= right; j++) { if (arr[i][j] != arr[0][j]) return false; } } return true; } // A Function that returns the longest common prefix // from the array of strings static string longestCommonPrefix(string[] arr) { int minLen = arr[0].Length; // Find length of shortest string foreach (string str in arr) { minLen = Math.Min(minLen, str.Length); } // We will do an in-place binary search on the indices // to find the length of longest common prefix int lo = 0, hi = minLen - 1; int prefixLen = 0; while (lo <= hi) { int mid = lo + (hi - lo) / 2; if (allContainSubstring(arr, lo, mid)) { // If all the strings in the input array // contain common prefix till mid index // then update prefixLen with mid + 1 prefixLen = mid + 1; // And then check in the right part lo = mid + 1; } else { // Otherwise check in the left part hi = mid - 1; } } // Return the common prefix by taking // substring from the first string return arr[0].Substring(0, prefixLen); } static void Main() { string[] arr = {"geeksforgeeks", "geeks", "geek", "geezer"}; Console.WriteLine(longestCommonPrefix(arr)); } } JavaScript // JavaScript program to find the longest common prefix // using Binary Search // Function to check if the substring between the // indexes [left ... right] was common among all strings or not function allContainSubstring(arr, left, right) { for (let i = 1; i < arr.length; i++) { for (let j = left; j <= right; j++) { if (arr[i][j] !== arr[0][j]) return false; } } return true; } // A Function that returns the longest common prefix // from the array of strings function longestCommonPrefix(arr) { let minLen = arr[0].length; // Find length of shortest string for (let str of arr) { minLen = Math.min(minLen, str.length); } // We will do an in-place binary search on the indices // to find the length of longest common prefix let lo = 0, hi = minLen - 1; let prefixLen = 0; while (lo <= hi) { const mid = lo + Math.floor((hi - lo) / 2); if (allContainSubstring(arr, lo, mid)) { // If all the strings in the input array // contain common prefix till mid index // then update prefixLen with mid + 1 prefixLen = mid + 1; // And then check in the right part lo = mid + 1; } else { // Otherwise check in the left part hi = mid - 1; } } // Return the common prefix by taking // substring from the first string return arr[0].substring(0, prefixLen); } // Driver Code const arr = ["geeksforgeeks", "geeks", "geek", "geezer"]; console.log(longestCommonPrefix(arr)); Outputgee Time Complexity : O(n*m), where n is number of strings and m is length of shortest string. The recurrence relation is: T(m) = T(m/2) + O(n*(m/2)). Upon solving, we get time complexity of O(n*m). Auxiliary Space: O(m), to store the longest prefix string. Other Approaches: Longest Common Prefix using SortingLongest Common Prefix Word by Word MatchingLongest Common Prefix Character by Character MatchingLongest Common Prefix Divide and ConquerLongest Common Prefix Using Trie
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search
https://www.geeksforgeeks.org/longest-common-prefix-using-binary-search/?ref=next_article
Data Science & ML
Longest Common Prefix using Binary Search
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[0.00242457073, 0.00788027328, -0.0139158, 0.0187682826, 0.0116767064, -0.000373878516, 0.00320658251, 0.0326172449, -0.0397556089, -0.0103533017, -0.0219899043, 0.000353618059, 0.0144638764, -0.00809415616, 0.0148782758, 0.00433448423, 0.0424826257, 0.0130402138, -0.0200649519, -0.025091216, -0.0283128377, -0.00592858531, -0.00689106109, 0.0166829191, 0.0010969888, 0.0379376, 0.0193029922, 0.0117368605, -0.0164690353, -0.000146731647, 0.0321360081, -0.00137436902, -0.0115764486, -0.00708489306, -0.000378891418, -0.0242624171, 0.00567125669, 0.0380980112, -0.0206397641, -0.0117702801, -0.0244763, 0.000970830908, -0.0166294482, -0.0176320262, -0.000823785958, 0.0247436557, -0.0126258144, 0.0181132648, 0.0141163161, -0.0300239064, 0.0141163161, -0.0151857333, -0.0157338101, 0.00292084762, -0.0124720857, 0.0172577314, -0.0300506409, 0.0103666689, 0.0132474136, 0.0219096988, 0.0209472217, -0.0021772678, 0.00562781142, -0.0269225948, 0.0355314091, -0.0102329925, -0.0407715552, 0.0299169645, 0.0250511132, -0.00847513694, -0.0673733279, 0.012325041, 0.00382651086, -0.036413677, -0.0315478258, -0.0053704828, 0.0221102145, 0.014891644, -0.00674067438, 0.0640046597, -0.0051465733, -0.0278850701, 0.0198377017, -0.0439263396, 0.023700973, -0.00528025068, -0.00949108321, -0.0319755934, 0.0282861032, 0.0319755934, -0.00199346174, 0.017003743, 0.000176913469, -0.0116833905, -0.0505032577, 0.0417607687, 0.0247570239, -0.0010092631, -0.0547274575, 0.029114902, 0.0191960502, 0.0164690353, -0.014945115, 0.00848850422, 0.0148114376, -0.00698463526, 0.0102329925, 0.0191425793, 0.0488189235, 0.0444343127, 0.0054874504, -0.000502960582, -0.00537716644, 0.00373962056, 0.00378640764, -0.0341411643, -0.00753271207, -0.0458512902, 0.0207199715, 0.0344887264, 0.0175651889, 0.014557451, -0.0188217536, -0.00202521, -0.04561067, 0.033285629, -0.0155332945, 0.0172710977, -0.00323666, 0.0016659525, -0.00611907523, -0.0334995128, -0.0129800588, 0.0157739129, 0.0356650837, 0.0345689319, -0.0270161685, 0.0431510098, -0.00214886153, 0.019182682, 0.00257328665, -0.0492466912, -0.0107810684, 0.0212814156, 0.0183538832, -0.0141965216, 0.000431109074, 0.0554493144, -0.0139826387, -0.0148515403, -0.023981696, 0.00521007, 0.0078535378, 0.0024396095, 0.0206263978, -0.0258799121, 0.0142900962, -0.0102530438, 0.00665378431, -0.0295159332, 0.0163888279, -0.0180464257, 0.0208670162, -0.0270562712, -0.0117301773, 0.0134880329, -0.0179795884, -0.0149317468, -0.0309596471, 0.0373761542, 0.0024813835, 0.033740133, 0.0203456748, 0.0173112024, -0.0363334715, -0.0351036415, 0.0391674303, -0.0191559475, 0.00746587338, 0.0190757401, -0.0194366686, -0.0123651437, 0.0134345619, -0.0231395289, -0.00430106511, -0.0100458441, 0.00909673609, 0.00713168038, -0.0153862489, -0.0079537956, -0.0214819312, -0.015947694, 0.0279118065, 0.0248372294, 0.0172443632, -0.0107877525, -0.0555562563, 0.0451026969, 0.00922372937, 0.0371622704, 0.0160947386, -0.043658983, -0.00663373247, 0.0119507443, 0.0610102899, -0.0348897576, -0.0287673399, -0.0468672365, 0.0202119984, 0.0246768165, -0.0367345028, 0.0207467061, -0.0279118065, 0.00792706, 0.0277246572, 0.00421751663, -0.0243426245, 0.0199847464, -0.0575346798, -0.0117368605, 0.0233534127, -0.00656689424, 0.0464394689, -0.0201986302, -0.01884849, -0.0407715552, -0.021522034, 0.0453165807, 0.0117435446, 0.00488924468, 0.0317617096, 0.0089430064, -0.0340876952, -0.0207600743, 0.0011070146, -0.0257195, -0.0105605014, -0.0120710544, 0.0190490056, 0.0483911596, 0.0143168317, -0.0187148117, 0.00713168038, -0.00589516573, 0.0266151372, -0.0252516288, -0.017284466, -0.0283930432, 0.0019099135, 0.0179261174, 0.00900984555, 0.0103800371, 0.013494717, -0.00122648862, -0.0424291529, -0.0143970381, -0.0153728817, 0.00716509949, 0.000170334039, -0.00201518438, 0.0014796399, -0.00285568, -0.00449823868, 0.0576416217, 0.0133543555, -0.00308627309, 0.0395417251, -0.019851068, -0.00751934433, -0.022591453, 0.0284999851, -0.0433648936, 0.0258130729, 0.0218829624, 0.00876922626, -0.0298902299, -0.0253585707, -0.0239014886, 0.0213749893, 0.013661813, 0.0245565083, 0.0122648859, 0.0310398526, -0.00977180526, -0.000760707, -0.0179662202, 0.016335357, 0.00324835675, -0.0160412677, 0.0169235375, -0.00206698431, 0.0144772446, 0.0040203426, 0.0289812237, 0.0026568349, 0.00216891314, 0.0258665439, -0.0343817845, -0.0428301841, -0.0107476497, -0.0122983055, -0.0310131181, -0.0372959487, -0.0240084305, -0.0445412546, -0.00123567891, -0.0256259255, -0.0210407972, -0.0300773773, -0.0109147457, 0.00219063554, -0.065929614, -0.00431777444, 0.00733219599, -0.0363067351, 0.0158674866, 0.0604755804, 0.0262809433, 0.00251981593, -0.0348095521, 0.0295426678, -0.0294891968, -0.00575146312, 0.0294624623, 0.0289277527, -0.0129733756, -0.0241955798, 0.031788446, -0.0214284603, -0.0086088134, -0.0137420194, -0.00627614604, -0.0330717489, -0.00403371034, 0.0294624623, -0.00735893147, -0.00942424498, 0.0156268682, 0.0307457633, -0.00228755153, -0.00443474203, -0.0192762576, 0.00175952655, 0.0077733309, 0.00197842298, -0.00725867366, -0.0189286955, 0.0205595586, 0.0339005478, -0.0015673656, 0.00121145, 0.01556003, 0.0541660152, 0.00459181285, -0.0100592114, -0.0283395723, -0.043498572, -0.0277781282, -0.012044319, 0.0564117916, 0.0148649085, -0.0053704828, -0.0225379821, -0.00155984622, 0.0306388214, -0.0464394689, -0.0203456748, 0.00522677973, 0.0120042153, -0.001254895, -0.00186646834, -0.00468538702, 0.0235138256, -0.0124186147, -0.0455037281, 0.00233768066, 0.0522677973, 0.00902989693, 0.0145841856, -0.00662704883, -0.0492466912, 0.0553958453, 0.0241688434, -0.0259601176, -0.0304784086, -0.0089496905, -0.0399962291, 0.0334995128, -0.000726452214, 0.0356650837, -0.0272835232, 0.0194233023, -0.0181533676, -0.00283562834, 0.00514323171, -0.00073898444, -0.0313874148, -0.0128731178, -0.0177122336, -0.00430774875, 0.0253452025, 0.017899381, 0.0149183795, -0.00118220807, -0.0244094618, 0.0025181449, 0.00223408081, -0.0135348197, 0.00169686531, 0.0181400012, 0.00253819651, 0.0635234192, -0.0410121754, 0.00130753045, 0.0158140156, 0.0186479744, -0.0265081953, 0.0170705821, -0.013441246, -0.00979854073, -0.0270161685, -0.0505032577, 0.0168968029, 0.0157872811, -0.00302110543, -0.00483243214, 0.019904539, 0.0496744588, 0.0105538173, -0.0282861032, -0.0217760205, 0.0302377902, 0.0155867655, 0.00322496332, -0.0183137804, -0.053150069, 0.025091216, -0.026935963, -0.027992012, -0.0304249376, -0.0268156528, 0.02999717, 0.0261205304, -0.0247703902, 0.00287238951, 0.00327007938, -0.00991216674, -0.00969828293, -0.0160011649, 0.0155065591, -0.0261205304, 0.00937077403, -0.0308259688, 0.0030194344, 0.0374563597, -0.0523480028, 0.020853648, -0.0211744737, 0.029114902, -0.00979185756, 0.0140628451, -0.0172443632, 0.00265349308, -0.00891627092, 0.0184875615, 0.0361997932, 0.00353910471, -0.0177924391, -0.0144237736, -0.00648000371, -0.0109548494, -0.033125218, 0.0663039088, 0.0171908922, 0.0212947838, 0.0107944366, 0.0308527052, -0.0277513936, -0.00673399074, -0.00898311, 0.0254655126, -0.00560107594, -0.0184608251, -0.0236207675, -0.0167764928, -0.00269526709, -0.0274840388, 0.00564117916, 0.023366781, 0.0143435672, -0.000180464267, 0.00697126752, -0.0333658382, -0.0139024323, -0.00614246866, 0.0318419151, -0.0671059713, -0.0309061762, -0.00889622, 0.0362265296, 0.0287940763, -0.0354779363, -0.00268691243, 0.0411725864, 0.0181934722, -0.0388733372, -0.00215888722, 0.0187415481, 0.0207199715, -0.0152392043, -0.0211611055, -0.0444610491, 0.00954455417, 0.00819441397, -0.03112006, 0.0247169193, -0.0245698746, 0.0437391885, 0.0135816066, -0.0283395723, -0.00657023583, 0.0205996614, -0.00781343412, 0.00931061897, -0.0451561697, 0.00347226602, 0.0330717489, -0.0166027118, -0.00117803062, -0.0521608554, -0.0429103896, 0.0339272805, 0.010821172, 0.00237945467, -0.0229256451, -0.035798762, 0.0192094184, 0.0218562279, -0.0191693157, 0.0132942, 0.00808078889, 0.0122247832, -0.0201718938, -0.0133008845, -0.0248372294, 0.00504965754, 0.0189420637, 0.00456841942, -0.000515492808, 0.0217225496, -0.00169770082, 0.00598205626, -0.00202186825, -0.00294591207, -0.0206531323, 0.0198377017, 0.0141430516, -0.00241788686, -0.0248104949, -0.0173245687, -0.00639645569, 0.0180464257, 0.00789364055, -0.00487921899, 0.0283395723, -0.0116299195, 0.00398023939, -0.0113558806, -0.0363067351, 0.0125790276, 0.0142900962, -0.0136417616, -0.00731882825, 0.00461854832, 0.0206263978, 0.0301843192, 0.0133142527, -0.0300506409, -0.0069378484, -0.00753271207, 0.0133744068, -0.00468204496, -0.00814762712, -0.0272434205, 0.0130335297, -0.0210541636, -0.0207868088, -0.00749260886, -0.0034187953, -0.0145440828, 0.0267354455, 0.0356650837, -0.00375967217, 0.00100257923, -0.0235539284, 0.0103867212, 0.00334694376, -0.0368681811, -0.0186613407, 0.0367345028, 0.0236742385, 0.017952852, -0.000212839223, 0.00195168762, 0.00545068923, -0.016174946, 0.0219765361, 0.0174849816, -0.0071717836, -0.0290881656, -0.0746988356, 0.0116967577, 0.0117769642, -0.00627948809, 0.00596868852, 0.00953787, 0.0116833905, -0.00990548264, -0.00272367359, -0.0183271486, 0.00146460114, -0.0329380706, 0.00509644439, 0.0118504865, 0.0268022846, 0.0315745622, -0.0170572139, -0.0116432868, -0.0310398526, -0.0422152691, 0.0154530881, 0.0222305246, 0.0238881204, 0.000986705068, -0.00340709835, -0.000575229817, -0.0104134567, -0.0107877525, -0.00207032613, 0.0197708625, -0.00784017, -0.000670474838, -0.0200382173, 0.0765703171, -0.00549747609, 0.00352907903, -0.0315745622, 0.00334527274, 0.0181533676, -0.0120777376, 0.012325041, 0.0108813271, 0.0387931317, 0.0161883123, -0.00599876558, -0.0159877967, 0.0227384977, 0.00208536489, 0.0014219915, 0.0245565083, 0.0174181424, -0.000894802, -0.0010677469, -0.000702641, -0.0111954678, -0.00643655891, -0.0222305246, 0.0428301841, 0.00465530949, 0.00168600411, -0.00038661962, -0.0304784086, -0.0196104497, 0.00412394246, 0.00580493361, -0.00771317631, -0.0304784086, 0.0439798087, 0.0125923948, 0.0123584596, -0.00687769381, 5.7857178e-05, 0.0160546359, -0.00373962056, 0.0176854972, -0.00062494108, -0.00292084762, -0.0183538832, -0.0529094487, -0.0118304351, -0.0267087109, 0.0065468424, 0.0276177153, 0.00885611679, 0.0147847021, 0.000333357602, 0.0220166408, 0.0374563597, -0.0229523815, -0.0118504865, 0.0140628451, 0.00447484525, 0.00114962424, -0.0164289325, -0.021749286, 0.0254120417, -0.0076129185, 0.0188351218, -0.00610570749, 0.00806073751, 0.00174114597, 0.00351571129, -0.0093039358, 0.0246901847, 0.0024396095, -0.0257863384, 0.00445813546, -0.0107877525, 0.00155399786, -0.00364938844, 0.0214284603, 0.0139692705, 0.0304249376, -0.0364404134, -0.0119841639, 0.00946434774, -0.0149584822, -0.00830804, -0.0323766246, -0.00607897202, 0.0178726465, -0.017230995, 0.00353242084, -0.00547074061, -0.0104936631, -0.00559439231, 0.0173914079, -0.00262842863, -0.00273202849, 0.00230593234, 0.00226750015, -0.0150386887, 0.00892295502, -0.0116967577, 0.0265750345, -0.0022925646, 0.00915689, 0.00913683884, -0.00955123827, 0.00155232684, -0.00374630443, 0.00515659945, 0.0162685197, 0.000241245623, -0.00207366818, -0.000223282754, 0.0331519544, -0.0054874504, 0.0313606784, -0.0126525499, 0.00125573052, 0.00572806923, 0.0289544892, 0.026601769, 0.0120108994, -0.0111486809, -0.0546739884, 0.0137954904, -0.00579156587, -0.00755276345, 0.0258130729, 0.0122448346, 0.00220233249, -0.0260937959, -0.0198644362, 0.00374630443, 0.00489258673, 0.0282861032, 0.00608231407, 0.01556003, -0.0119841639, 0.054486841, 0.0381514803, 0.017284466, 0.0277246572, 0.0106874947, -0.00527356658, 0.00864223298, 0.0306120869, 0.0135214524, -0.0359057039, 0.0125121893, 0.0126926536, 0.00858207792, 0.0104401922, -0.0208670162, -0.00668052, -0.0209605899, -0.023366781, -0.0261606351, 0.0149317468, -0.00348229194, -0.0020385778, 0.000520087953, 0.0122582018, -0.0212546792, -0.00496610906, 0.0142900962, -0.0298902299, -0.0150253205, -0.00630956516, 0.00935740583, 0.0143435672, 0.0443273708, 0.0453967862, 0.0252115261, 0.000532202481, 0.0245297719, 0.0058717723, 0.00675404212, -0.00594863668, 0.0247837584, 0.0185811352, -0.0131738912, -0.00499284454, 0.0358522348, 0.0339272805, -0.0223775692, 0.00640982343, 0.00318318908, 0.00855534244, 0.00190657156, -0.0116299195, 0.0110283718, -0.01003916, 0.0099589536, -0.00129499822, 0.0208135452, 0.0205194559, 0.0426163, 0.0117702801, 0.00138690125, -0.0333658382, -0.0392743722, -0.0118839061, 0.00804068521, -0.027323626, 0.0253452025, 0.0122314664, 0.0301041119, 0.017899381, -0.00440466497, 0.0147445984, 0.0134145105, 0.0020469327, 0.0129666915, -0.0232464708, -0.0233534127, -0.0076129185, -0.0275107753, 0.0272567868, -0.0062126494, -0.0278583355, 0.0241688434, 0.0147713339, 0.0179394837, 0.00546739856, -0.0346758738, 0.00493269, 0.000352364819, 0.00235773227, -0.025986854, 0.00307457638, 0.0062059653, 0.00352907903, 0.00182803615, -0.00635635247, 0.0299169645, -0.00917025842, -0.0158674866, 0.0324835666, 0.00613578502, -0.0602082238, -0.029836759, -0.000361346261, -0.00129165628, -0.00634298474, -0.0209338553, 0.0224711429, -0.017458247, 0.0217225496, 0.00833477546, -0.0123183569, -0.0173914079, 0.0086288657, -0.00334694376, -0.0014696141, -0.0128463823, 0.0124720857, 0.000807494042, 0.0105872368, -0.00896974187, -0.0366008244, 0.019236153, 0.0173112024, -0.0158407521, 0.00608565612, 0.000139943353, 0.000563115347, 0.0308527052, 0.0231395289, 0.0193564631, -0.0136283934, -0.0384188369, -0.00771317631, 0.0266285054, -0.0354779363, 0.0082879886, 0.00592858531, 0.0168968029, 0.0414666757, 0.000715590955, -0.0212012082, 0.0399160199, -0.0225780848, 0.000236023858, -0.0196104497, -0.033686664, -0.00162083644, -0.0420281217, -0.022858806, 0.0259200148, -0.0126792854, -0.0189153291, -0.00332522113, -0.0265884, -0.0129867429, -0.0128062787, -0.0533906855, -0.0490060747, -0.0214017257, 0.0366008244, 0.0367345028, -0.0256660283, 0.00617923, -0.00712499628, -0.00238613854, -0.0177657045, 0.0383921, 0.0245832428, 0.0524816811, -0.00757281529, 0.0105939209, -0.0346224047, -0.00439129723, 0.00369617552, -0.0218829624, -0.0219364334, -0.00446147751, -0.0206397641, 0.0117569128, -0.0231662635, -0.000681753911, -0.0170705821, -0.0127929114, -0.00815431122, 0.0198644362, -0.0210140608, 0.00642653275, -0.0204392485, 0.0364938825, 0.0261740014, 0.018795019, 0.00696458388, 0.00359925954, 0.0162150487, -0.00769312447, -0.0386861898, -0.0067707519, 0.00997900497, 0.00309964083, 0.0276979227, -0.00444811, 0.00761960214, 0.0223240983, -0.0238212831, 0.00544066355, 0.0198911726, 0.0136885485, 0.0205595586, 0.00107108883, 0.0345689319, -0.0114828739, -0.0165492408, -0.0242891535, -0.00822114944, -0.00987206399, -0.00949776731, -0.0252783652, -0.0283930432, -0.00958465785, -0.00782680232, 0.0180330593, 0.00240786118, 0.0215888731, 0.00743245427, -0.0160412677, 0.01282633, 0.00494605768, -0.00999237318, -0.0146242892, -0.023259839, 0.0129867429, -0.0225379821, 0.0117502287, -0.0121111572, -0.0365206189, 0.0034990015, 0.0468405038, 0.00552421156, -0.0146242892, -0.044995755, -0.0131738912, -0.0034104404, -0.00228420971, 0.0023226419, -0.0253452025, -0.000967489, -0.00802731793, 0.0022942354, 0.00388666545, -0.0112623069, -0.00179795874, 0.0183806196, 0.0227251295, 0.0133744068, 0.0294089913, -0.0268423874, 0.00706484169, -0.00194667466, 0.0363067351, 0.00597537216, -0.00799389835, -0.000671728107, -0.00527690863, -0.0302110538, 0.0255991891, -0.00430774875, 0.010761017, -0.00410054903, 0.0125790276, 0.0161081068, -0.0175518207, 0.0143435672, -0.0243559908, 0.00600879174, 0.0047622514, 0.0117034419, 0.0127862273, 0.00940419361, -0.00252148672, -0.039488256, -0.0108078038, 0.0121779954, 0.00374964625, 0.0160145331, 0.016281886, -0.00757281529, 0.00811420754, 0.0195436105, 0.0334193073, 0.0069311643, 0.00766638946, -0.0218829624, 0.00462189037, 0.000242916591, 0.00591187552, -0.00843503326, 0.00586508866, -0.0220567435, -0.0183806196, -0.029783288, 0.0104067726, -0.0124319829, 0.0119106416, -0.025986854, 0.00249308045, -0.0195302442, 0.00609902386, -0.0319221243, 0.0044715032, 0.0125188725, -0.0190222692, -0.00923041254, 0.00798721425, -0.0125055052, 0.0216824468, 0.0672663823, -0.0288475472, -0.0195035078, -0.0506102, -0.00237444183, -0.00735893147, 0.01884849, 0.00711831264, 0.000468705781, -0.00331686623, 0.00303948601, -0.0143569345, 0.0161482096, 0.00992553402, -0.00425093574, 0.0458780266, 0.0167764928, 0.00810752437, -0.00511649624, 0.00454168394, -0.00328846, 0.00661033904, 0.0374028906, -0.00790700782, 0.00151807209, 0.0079404274, -0.0153996171, 0.0097250184, -0.0332588963, 0.00622601714, 0.0219631698, -0.00602550106, 0.0020101713, -0.011937377, -0.0176186599, -0.0031063247, -0.00319321477, -0.00804736931, -0.0279652774, 0.0200916883, -0.00848850422, 0.00849518832, -0.0286871344, 0.0421350636, -0.00476559345, -0.0102664111, -0.0249976423, 0.000300773769, 0.00307290535, 0.00325002777, -0.0105203986, -0.0102597279, -0.0295694042, 0.00440466497, 0.00477896119, -0.00353242084, -0.00782011822, -0.0210541636, 0.0237143412, -0.000837989151, -0.029836759, -0.0088628009, -0.00780006638, 0.0104067726, 0.0259066466, -0.00148381724, -0.0263076797, -0.0146376565, 0.0155332945, -0.00899647735, -0.0343817845, -0.00120727252, 0.0298634935, -0.00270863483, -0.00830804, 0.0259467512, -0.00146125921, -0.0114962421, -0.0351571105, -0.0160011649, -0.0060388688, 0.0183939878, -0.0259601176, -0.00403705239, 0.0120309507, -0.011877222, -0.0065535265, 0.00188652, -0.0242624171, -0.0136818644, 0.0162150487, -0.0143034635, -0.0106340237, -0.0207333378, 0.00500955433, -0.0210942663, 0.014557451, 0.0262943115, -0.0162952542, -0.00280722184, -0.0333658382, 0.00140862388, -0.00645326823, 0.0166561827, 0.000389334949, 0.017899381, 0.0337668695, -0.0244629327, -0.0210407972, 0.00661033904, 0.0311467946, 0.00960470922, -0.00613244297, 0.0195569787, 0.0300773773, 0.000639562029, 0.0117569128, -0.000868066505, -0.00485916715, 0.0153060434, -0.0308794398, -0.0244629327, 0.00856202655, -0.0452096388, -0.0213348866, -0.0237811804, 0.00761960214, -0.0167096537, 0.0397288725, -0.0112355715, -0.0170572139, 0.00174281688, 0.00313807302, -0.00309462799, -0.0189153291, 0.0233801473, -0.00994558632, -0.0131337885, 0.0164690353, 0.0295159332, -0.0196104497, 0.0321894772, -0.00903658103, -0.0193163604, 0.00281223468, -0.00595197873, 0.00560776, -0.00401700102, 0.0228187032, 0.0245565083, -0.0092905676, -0.0200382173, 0.00811420754, -0.00913015474, 0.022083478, -0.00897642598, 0.0109147457, -0.013387775, -0.0133744068, 0.000391214766, -0.00106022751, 0.00357586588, -0.0110283718, 0.0219364334, -0.023754444, -0.0197975989, 0.020853648, 0.00472214818, -0.00953787, 0.00907000061, 0.00110450818, -0.00424425211, 0.0433916301, -0.0187549163, 0.00451494846, -0.00652010692, 0.0239415914, 0.0368681811, 5.30335683e-06, 0.0103332503, -0.0182870459, 0.0228320714, 0.0125656594, 0.0163620934, -0.0345956683, -0.00113124354, -0.0298634935, -0.0316013, 0.0222305246, 0.00936409, 0.00308126025, 0.00696458388, -0.00139442063, 0.0143435672, -0.0101059992, 0.00434451, -0.00488924468, 0.0111219455, -0.0104669277, -0.0260269567, -0.00888953637, -0.0290881656, -0.0092772, -0.0259200148, -0.0136350775, -0.00244963518, -0.0151857333, -0.00477896119, -0.0126191303, 0.00865560118, 0.0235405602, -0.0251313187, 0.0025398673, -0.017458247, -0.012879801, 0.0155733973, 0.0382851586, 0.00967154745, 0.00265015103, -0.016789861, 0.00542729581, 0.0294089913, -0.00780675048, -0.0318686515, -0.0301308483, -0.035183847, 0.0187682826, 0.022591453, 0.019236153, -0.00457844511, -0.015225837, 0.00957797375, 0.0108278561, -0.000710995751, -0.00300105382, -0.0138756968, 0.0218963306, -0.0444610491, -0.0368949175, 0.0213616211, 0.017458247, 0.0155733973, -0.00846176874, 0.00508641871, 0.0107008629, 3.98159718e-05, -0.0120242666, 0.00499952864, -0.014998585, 0.00941756088, -0.0233801473, -0.0130402138, 0.0139291678, -0.00207032613, 0.0107476497, 0.00748592522, 0.00721857045, -0.0225379821, -0.0014796399, -0.00318318908, 0.0318419151, 0.0039200848, -0.00907000061, 0.0183137804, 0.00979185756, 0.0109281139, -0.0191024765, -0.013441246, -0.00328344712, -0.0211744737, 0.0241421089, 0.0119039575, -0.00451829052, -0.00833477546, 0.0187816508, -0.0303447321, -0.0112623069, 0.00755276345, -0.0144772446, -0.00320156966, -0.0149183795, 0.0358789675, 0.0185009297, 0.00186813937, 0.00228086766, -0.0207467061, -0.0203991458, 0.00406378787, -0.00493269, -0.0138623286, 0.0137687549, -0.0129332719, -0.0166428145, -0.00705147395, 0.0188752245, 0.0271364786, 0.014610921, -0.0108278561, -0.00804068521, 0.0162016805, -0.00398692349, 0.0112556228, -0.0314676203, 0.00974507, 0.0144772446, 0.00242457073, -0.00256326096, -0.0260002222, 0.0355848782, 0.0180196911, 0.00221570022, -0.0163086224, -0.00626946241, -0.00924378075, -0.0102396756, -0.00188986189, 0.0243158881, -0.00107860821, 0.00355247245, 0.00402368465, 0.00880264584, -0.0240619015, -0.0235539284, -0.00703142257, 0.00490595447, 0.00643990049, -0.0195569787, -0.00568462443, -0.0199981146, -0.014998585, 0.0177924391, -0.00488256104, -0.00574477902, 0.00230426132, -0.0148649085, 0.00346558215, -0.0176988654, 0.0119039575, 0.0155733973, 0.00154313655, -0.039648667, 0.00591855962, -0.00830135588, -0.00430106511, -0.0077733309, -0.0343550481, -0.0121779954, 0.0366542973, -0.0046452838, 0.0365206189, -0.0166561827, -0.0337133966, -0.00581495976, 0.00565120485, 0.0404239967, 0.005270225, 0.0258130729, -0.000187983605, 0.0128530655, 0.0108946944, -0.0177657045, 0.00570133375, 0.0157204419, -0.00718515133, 0.0179795884, -0.0197975989, 0.00516662514, -0.00842166599, 0.0286871344, 0.0140895806, -0.000926550303, -0.0108412234, 0.00749929249, -0.0310933236, -0.0150654241, 0.0167096537, -0.03446199, -0.00454502599, 0.00992553402, -0.0199713781, -0.0157605466, -0.022136949, -0.00816099532, 0.0110617913, -0.0110216876, 0.00836151093, -0.0144638764, 0.0165759772, 0.00466867723, -0.0233534127, -0.0280722193, 0.0473752096, 0.0405576713, 0.00957797375, -0.00699131936, 0.0335529856, -0.0107543329, -0.0164021961, 0.0202119984, -0.0231662635, 0.0205461904, 0.0251313187, 0.0079337433, 0.00680417102, -0.0003945567, 0.0309596471, -0.0307724979, -0.0362265296, 0.0178860128, -0.00514323171, 0.0294624623, 0.00530364411, -0.0256927647, -0.0318151824, 0.0283930432, 0.027938541, 0.0107142301, 0.0266686082, 0.0049861609, 0.0185544, -0.0246099792, -0.00283228629, 0.0160947386, 0.00164840731, 0.0096247606, -0.003331905, 0.000254613347, -0.0097250184, 0.000190594496, -0.00967154745, 0.00567125669, -0.00675404212, -0.0251313187, -0.00878927764, 0.0109882681, -0.0143703027, 0.018514296, 0.00492600584, -0.0182068385, -0.000802063383, 0.016335357, 0.00642319117, -0.0153862489, 0.00398692349, 0.00947103184, 0.0103934044, 0.0381782167, 0.00499952864, -0.0119173257, -0.00175618462, 0.0160011649, -0.00041314619, -0.0101795215, -0.0111085782, -0.000825456926, -0.0009507793, -0.000594863668, 0.00802731793, 0.0266285054, -0.0256259255, -0.00335028558, -0.0078468537, -0.0233534127, -0.00269693811, -0.0109882681, 0.0126258144, 0.0051031285, -0.0049293479, -0.000449071958, -0.00121980475, 0.014330199, -0.0105538173, -0.00763297, 0.00916357432, -0.00351236924, -0.0116098672, -0.00786690507, 0.00134930457, -0.0200783201, 0.0150119532, -0.0102196243, 0.0189955346, -0.003331905, -0.00712499628, -0.0042609619, 0.0203857776, -0.0106674433, 0.00304616988, 0.0180063229, 0.0079337433, -0.00505968323, -0.0137420194, -0.0272166841, 0.00176621042, 0.0143970381, -0.0149718504, 0.00705147395, -0.0113425134, 0.0111286296, -0.00418075547, 0.00874917489, 0.00541058602, -0.017899381, 0.00050045416, 0.0193430949, -0.00402368465, 0.0264012534, 0.0275375098, 0.0333925709, 0.0111152623, 0.0133142527, -0.00846845284, -0.0222305246, 0.00321827945, -0.0103332503, 0.00396018801, 0.00287740235, 0.000812924642, 0.0143435672, -0.00393345254, 0.00759955077, -0.010874643, 0.00675404212, -0.0155065591, 0.00705815805, 0.0193029922, 0.0125255566, 0.0230192188, 0.00807410479, 0.000148089312, -0.0076129185, 0.0236341339, -0.00500955433, -0.00689774519, -0.0135147683, 0.00957129, 0.0190623738, 0.0110283718, 0.0059219012, -0.00973170251, -0.00634966837, -0.0106340237, -0.0318953879, 0.0293020494, -0.0109147457, -0.00415067794, 6.44888205e-05, -0.00335696945, -0.00482909, 0.0108813271, 0.0123718278, -0.00564117916, -0.00364938844, -0.0104602436, -0.0110484231, 0.00214050664, 0.0165358745, -0.00864891708, -0.00701137073, 0.00481572235, 0.00517999288, -0.0143703027, 0.0170572139, 0.00556097273, -0.00595197873, -0.0114494553, 0.0097250184, 0.0129065365, -0.0038900075, -0.0153461462, 0.00184140389, -0.0141564189, 0.0296228752, 0.0256660283, 0.0127929114, 0.000456173555, -0.00390337524, 0.00585172093, 0.00173613301, -0.0240084305, -0.00239783525, -0.00619593961, 0.0021639003, -0.00566457259, 0.00673733233, -0.00511983782, 0.0322696827, 0.0169636402, -0.0113826161, -0.0124587184, -0.0247169193, -0.00908336788, -0.00269860914, -0.00244295131, -0.00440466497, -0.00521675404, -0.0314676203, -0.000189132392, -0.00662704883, -0.000325420522, -0.00149300753, 0.00438127108, 0.025091216, -0.00333023397, 0.00243292563, -0.0328043923, 0.0146911275, -0.0142232571, -0.0274038333, -0.0189688, -0.00960470922, 0.00753271207, -0.00838156231, 0.0161348414, -0.0117034419, -0.00880933, -0.0326974504, 0.0268958583, -0.016789861, -0.0293020494, 0.00682756444, 0.00342213712, -0.0184875615, -0.0273503624, 0.0339272805, -0.00134345621, -0.00826793723, -0.00103015022, -0.00849518832, 0.00644658459, 0.00126742723, 0.015225837, -0.00866228435, 0.00640313933, 0.00181299751, 0.0104201399, -0.0181132648, 0.000629536225, 0.00271698972, 0.00802731793, 0.017511718, 0.0130335297, -0.000107359527, 0.00365273026, -0.0237410758, -0.00278884126, -0.00307624741, -0.010206257, -0.0102730952, -0.00385993, 0.0322964191, 0.00415067794, 0.00270696403, -0.0196639206, 0.0128731178, -0.0223508328, 0.0111353137, 0.0144237736, -0.00792706, -0.0153996171, -0.00079579727, -0.00448487094, -0.0104201399, 0.0192227867, 0.021468563, -0.0157872811, 0.0241421089, 0.0315210931, -0.0020469327, -0.0164824035, 0.0194099341, -0.0253853071, -0.00699800299, -0.00295092491, 0.00264680921, 0.0104468754, 0.0172577314, -0.0213348866, 0.0147312311, 0.013996006, -0.0266151372, -0.00488256104, -0.00451160641, -0.00911678746, -0.0059452951, -0.0233935155, -0.0134211937, -0.00845508464, 0.0246233456, -0.0130669493, 0.0119975312, 0.0185811352, 0.00168433308, 0.0155332945, -0.000211168255, -0.00447484525, -0.0116299195, -0.000501707371, -0.0118304351, -0.0210942663, 0.0341946371, 0.0093039358, -0.00945098, 0.00206030044, -0.0205729268, -0.014610921, -0.00879596174, -0.00119223376, -0.000927385816, 0.0039200848, -0.00391340116, 0.000865560083, 0.00829467271, -0.0113090938, -0.00911678746, -0.0180196911, -0.00273202849, 0.00920367707, -0.00333023397, 0.01556003, -0.00180631364, -0.016789861, 0.0147312311, 0.00539053418, 0.00660699699, 0.0166027118, -0.00134679815, -0.0420013852, -0.0202387329, -0.0124988211, -0.0268958583, 0.0205328222, 0.0111419968, 0.00769980857, -1.32502337e-05, 0.0108144879, 0.00253819651, 0.00840829778, 0.0153728817, -0.0137019167, 0.0245297719, 0.00360594341, -0.012605763, 0.00236942898, -0.0178191755, 0.00345889828, 0.0199446436, -0.0181667358, 0.00192996499, 0.0318953879, -0.00264012534, 0.00187649415, 0.00830804, -0.00557099842, 0.00853529107, 0.00612241728, 0.00849518832, 0.0109682167, 0.00251981593, 0.00551418588, -0.00622267509, 0.00556765683, -0.00629619742, 0.00736561557, 0.00609902386, -0.0370553285, -0.00797384698, -0.0079537956, 0.00965818, 0.00578822428, 0.0222839937, -0.0314676203, 0.0408784971, 0.00185811357, -0.020412514, 0.017003743, -0.0115630804, -0.036413677, 0.0070982608, -0.000957463169, -0.00297264755, -0.00656021, -0.0174448788, 0.0061625205, 0.00182469422, 0.0330717489, 0.00230927416, 0.00692448067, 0.0106607592, 0.0161482096, -0.00381982699, 0.00825456902, 0.00974507, 0.0151188951, 0.00557434047, -0.0013927496, 0.00212881, 0.0057046758, 0.0140895806, 0.00458512921, 0.0068375906, -0.0153996171, -0.00539053418, -0.0119774798, 0.0111152623, -0.0170705821, 0.0125121893, 0.00272367359, 0.00300105382, 0.00122147566, -0.00840161368, 0.00699131936, 0.00372959487, -0.0199713781, 0.00906331651, -0.00560107594, 0.00291917659, 0.0176854972, 0.031173531, -0.0213482548, -0.0181533676, 0.0195302442, 0.00602550106, -0.00505968323, 0.00720520271, -0.0148248048, 0.00408383925, -0.0169369057, 0.00437124539, 0.00305285375, -0.0241020042, -0.00432445854, -0.0237678122, -0.0289277527, -0.0284465142, 0.0111018941, -0.00315144076, -0.00525685726, 0.00553089567, 0.00932398718, 0.0423489474, 0.0141430516, -0.00134429161, 0.00218729372, 0.0340609588, -0.00168182666, -0.00130753045, -0.00410723314, 0.000107672829, 0.00800058246, 0.0102396756, 0.022805335, -0.0176587626, 0.0204793513, 0.0121713122, 0.00916357432, -0.0119440602, -0.0167497564, -0.0349432267, 0.0150253205, -0.0209873263, -0.0308259688, 0.0024229, 0.0096314447, -0.014891644, 0.00577819813, -0.0298100226, 0.00822783355, -0.0202654675, 0.0160813704, -0.00488590263, 0.00202688109, -0.000546405674, 0.00419078115, 0.0113090938, 0.0169636402, -0.00935740583, -0.0124386661, -0.0216289759, -0.019851068, 0.013387775, 0.0070046871, 0.011322462, -0.0124386661, -0.0333658382, 0.0108078038, 0.00554760499, 0.0104736108, 0.014945115, 0.00633964268, 0.00320658251, 0.0495942533, 0.00687100971, -0.00236775796, 0.0157338101, 0.0267220791, -0.00390337524, 0.00747255748, -0.0249842741, 0.00975843798, -0.000720186101, 0.00137854647, -0.0156536046, -0.00726535777, 0.00451829052, -0.0059219012, 0.00263344147, -0.0135214524, 0.00690442882, 0.0277246572, -0.00770649221, 0.0189286955, -0.00409720698, 0.010707546, -0.012659234, 0.00393679459, 0.00216222927, -0.00997900497, 0.00560776, -0.00986538, -0.00170939765, 0.00858207792, -0.00537716644, -0.0148515403, 0.0249040686, -0.00890958775, 0.0220567435, 0.0119240088, 0.00639645569, 0.003722911, 0.000191743282, 0.00909005199, 0.00810084, -0.0088628009, -0.0137687549, 0.0300773773, 0.0131337885, -0.0109815849, 0.0235806629, -0.0316815041, -0.0205595586, 0.00354244653, 0.0139826387, 0.0257328674, -0.0176186599, -0.0228454396, 0.0134345619, -0.0159610622, -0.0109548494, 0.00557434047, 0.0100324759, -0.00616586255, 0.0139559032, -0.00600544969, -0.0206665, -0.0283663087, 0.0198911726, 1.77801157e-05, -0.0123718278, 0.00856871065, 0.000615750731, -0.00975843798, -0.00968491565, -0.000217434368, 0.019236153, 0.00340208551, -0.00429438101, 0.00520672835, 0.00405710377, -0.00965818, -0.000491681567, -0.00567794032, 0.00558436615, -0.0124854539, 0.00576148881, -0.0174716134, -0.0233400445, -0.00172276527, -0.0145039801, 0.0013618368, 0.0133744068, 0.0150787914, -0.0140628451, 0.00400363328, -0.00240619015, -0.00778669864, -0.0018430748, 0.0135348197, 0.00559105026, -0.0230192188, 0.0109949522, -0.00781343412, 0.0104602436, 0.0131471558, -0.018126633, -0.00950445142, 0.00666046795, 0.0218161251, 0.0177122336, 0.000219314214, 0.0208402798, 0.0014111303, 0.0146510247, 0.0216824468, 0.0283128377, -0.0110885268, 0.00504297344, 0.0235138256, -0.0208937507, -0.0123584596, 0.012659234, 0.00229924847, 0.00314809871, -0.00422085868, 0.0297030807, -0.0221636854, 0.0155065591, 0.0264680926, 0.0340609588, 0.00340375653, -0.0262943115, -0.0100324759, 0.035023436, -0.000253777864, -0.0187014453, -0.00350902742, 0.0114026675, -0.00679080328, 0.00939082541, -0.0105471332, -0.0195703469, -0.003722911, -0.00302946032, -0.00827462, 0.00599208195, 0.0225513484, 0.00451829052, -0.00062494108, 0.00550081814, -0.023700973, 0.00592524325, 0.00920367707, -0.0163754616, -0.0147980694, 0.00755276345, 0.00835482683, 0.000701387704, 0.000923208368, 0.0187415481, 0.00936409, -0.0147445984, -0.00651342329, 0.0222973619, -0.00567794032, -0.00107025332, 0.010152786, -0.00400697486, 0.0110684745, 0.00242791278, -0.00501623796, 0.00581495976, 3.96854266e-05, -0.0179929547, 0.00489927037, 0.0155199263, -0.0114427712, -0.00216055824, 0.000845926232, -0.0485515706, 0.0336331911, 0.00779338274, 0.00212881, 0.00249475124, 0.00102931471, 0.00192996499, -0.00305786659, 0.0046954127, -0.0144505091, 0.0211343709, 0.0107008629, 0.0147312311, 0.00809415616, 0.00371288508, -0.00307624741, -0.00943761226, 0.0138756968, 0.007445822, 0.0198243335, 0.032670714, -0.0046954127, -0.00713168038, 0.0230593234, -0.0123918792, -0.0182068385, -0.0179394837, -0.000778252142, 0.0179795884, 0.0349432267, 0.0142499926, -0.0214150921, 0.0103065148, -0.0193698313, -0.0114494553, 0.00581495976, -0.011603184, -0.0108011207, -0.00875585899, -0.0025766287, 0.00782680232, -0.00677409396, 0.0068309065, 0.0125055052, -0.00366275618, -0.00275040907, -0.0101461019, 0.0137687549, 0.00152308494, 0.00504631549, -0.0173379369, 0.00989879947, 0.0109147457, -0.0104468754, 0.0325637721, -0.019182682, -0.0135348197, -0.00540724397, -0.0181667358, -0.0211076345, -0.0158808548, 0.0323766246, 0.00441469066, -0.0255991891, -0.011763596, 0.00931061897, 0.0149852177, 0.00837487821, -0.0021772678, -0.0183806196, -0.00637640385, -0.0145307155, 0.0276177153, -0.00237444183, -0.00581495976, 0.00432780059, 0.0129600074, -0.0179127492, 0.00771317631, 0.0131738912, 0.000823785958, -0.00687100971, -0.0159610622, 0.0410121754, 0.00620262371, 0.00356249814, 0.025264997, 0.00892295502, -0.0301308483, -0.0320825353, 0.0086088134, 0.00278215739, -0.00673399074, 0.0134078264, 0.00638308795, 0.0161348414, 0.0014512334, -0.00502626412, 0.000901485852, 0.00725867366, -0.00957129, -1.56653e-05, 0.00509644439, 0.0145708183, 0.0354779363, 0.0108880103, -0.00888285227, 0.00513988966, -0.000526354124, 0.0133543555, -0.00713836402, -0.00905663241, -0.00261840271, -0.0130335297, 0.0187415481, -0.000138272386, -0.00260503497, -0.00444142614, 0.0038900075, -0.00226917095, -0.00754608, -0.014276728, 0.0186747089, -0.0134612974, -0.00269693811, 0.014664392, -0.0160947386, -0.0108880103, 0.0130134784, -0.00424091, 2.1670332e-05, -0.0256793965, -0.0019115844, -0.00348897581, -0.00551752793, 0.00577151449, -0.0103800371, 0.0124587184, -0.0104802949, 0.0233801473, -0.00639979728, -0.0178325418, -0.0186479744, 0.00730546052, -0.00466867723, 0.0381247476, -0.0165893454, 0.02331331, 0.00951781869, 0.0154530881, -0.000945766398, -0.0100725796, 0.00431777444, -0.0136551289, 0.0180063229, -0.0222706273, -0.0148114376, -0.00448821299, 0.00868233666, -0.0106607592, -0.0103533017, 0.0215755049, 0.00305285375, 0.00634632679, -0.0110684745, -0.0186346062, -0.0247971267, 7.30525207e-05, 0.00771986, 0.0012448692, 0.00864891708, -0.0146911275, -0.0168834347, 0.0269493293, -0.0193029922, 0.0158006493, -0.0101661533, 0.0150787914, 0.0118438024, -0.0136684971, -0.00230091927, -0.00425762, -0.0111954678, -0.00109531777, -0.000402284932, -0.0172710977, 0.00855534244, 0.00151305913, 0.00508976076, 0.0161615778, -0.0140762124, -0.00873580668, -0.00421083299, -0.00720520271, 0.0124252988, -0.0105471332, -0.00729209278, 0.000501289614, -0.000234770632, -0.000264848029, 0.0227652323, 0.00294089899, 0.00500621228, 5.71261298e-05, 0.0134546133, -0.00646329438, 0.00288241543, -0.00362599501, -0.00137436902, 0.00441803271, 0.00379309151, -0.000774074695, 0.00692448067, 0.00935740583, 0.019182682, -0.00679080328, 0.0206531323, 0.0154664554, -0.00101511145, -0.00572472764, 0.0281791613, -0.0297298171, 0.00122648862, 0.0107008629, 0.00725867366, 0.013661813, 0.00205361657, 0.0135615552, 0.0216289759, 0.00360260135, -0.0247703902, -0.000108090571, -0.0295426678, -0.016562609, 0.00239449344, 0.0227251295, -0.0216423441, -0.0153996171, -0.00521675404, -0.00282727345, 0.00236775796, 0.0130335297, -0.019516876, 0.0158541203, -0.0142098898, 0.014330199, -0.0178860128, 0.00979185756, -0.00312637631, 0.00936409, -0.00674735848, -0.00014902922, -0.0226181876, -0.00608565612, -0.00181466842, 0.00322830514, 0.0271231104, -0.00130168209, -0.00660031335, 0.00955123827, -0.0148381731, 0.00123902084, -0.00434116833, 0.00148298184, 0.0113692489, -0.0115029262, 0.00747255748, -0.00730546052, 0.00920367707, 0.0053203539, 0.0226315558, 0.00433782628, -0.00367946574, -0.00176286849, 0.0156803392, -0.0115229776, -0.00878259446, 0.0159209576, -0.00166344608, 0.011603184, 0.0204392485, 0.024369359, 0.00191826827, -0.00658026151, 0.00533706369, 0.00780006638, -0.00876922626, 0.0192094184, 0.0132073108, -0.0198778044, -0.00121061446, -0.0181934722, -0.0165225063, 0.031948857, -0.00384990429, -0.0059452951, -0.0321360081, -0.0310665891, -0.00134011428, 0.0194901396, 0.0163487252, -0.0172710977, 0.0161883123, -0.0153461462, -0.0115630804, 0.00152392045, 0.00128163048, 0.0185410324, -0.00684427423, -0.000410222, -0.00511649624, 0.00293087331, 0.00527356658, 0.000668803928, -0.0126458658, 0.00104602438, -0.0133944582, 0.0268156528, 0.0144371409, -0.00420749094, 0.00689106109, -0.00589182414, -0.0155867655, -0.0784952715, 0.0144371409, 0.0312002655, 0.0355314091, 0.0359324403, -0.00330015668, -0.0196505524, -0.0194233023, 0.00925714802, 0.0175651889, -0.00692448067, 0.00673064869, -0.00829467271, 0.0300239064, 0.00177289429, -0.00330684055, 0.00542729581, 0.00371956895, 0.0236742385, -0.0173914079, 0.00427098759, -0.00250644819, 0.00607897202, 0.00874249078, 0.00701137073, 0.00596868852, -0.00333691784, -0.00874917489, 0.00143452385, -0.0265215635, -0.0236608703, 0.0144772446, 0.0226582903, -0.0215888731, -0.0103332503, 0.00230091927, -0.0270830076, -0.0312537365, 0.0100257928, 0.00325336959, -0.00501958, 0.00961139333, -0.00373962056, -0.0228989106, 0.0184608251, 0.0164690353, 0.0138756968, 0.00422754232, 0.00258832541, 0.0200248491, -0.00348897581, 0.0339540169, -0.014891644, -0.00540724397, -0.00277881557, -0.00611239159, 0.00100675668, -0.00775327953, 0.0274305679, 0.0197842307, -0.002997712, -0.0126124471, -0.00483577373, -0.00598539785, 0.00951781869, -0.00276711863, -0.00887616817, 0.0186747089, -0.0069579, 0.0015097172, 0.00508976076, -1.87200349e-05, -0.000228086777, 0.00805405341, 0.0166428145, -0.000965818, -0.00343550486, -0.00617254619, -0.0102998307, -0.00534040527, 0.00811420754, 0.0239415914, 0.012545608, -0.0128463823, 0.00652344897, 0.0120242666, -0.00844171736, 0.0049794768, -0.0256526601, 0.0129065365, -0.00585506298, 0.0111286296, 0.00820778217, 0.0134345619, 0.00576148881, 0.0050797346, -0.00814094301, -0.0118571706, 0.00757949892, 0.0114160357, 0.0172176268, 0.0315210931, 0.00315311179, -0.00193831988, 0.0393813141, -0.017899381, -0.0212012082, 0.00812757574, -0.0254788809, 0.000914018077, 0.0014996914, -0.0130268466, -0.00236608693, -0.0149852177, 0.0144772446, 0.0209204871, 0.0110551072, 0.0096381288, -0.0318151824, 0.00749929249, -0.017899381, -0.0248907, 0.0121913636, -0.000840077875, 0.0153060434, 0.00368949166, 0.0109882681, -0.00553423725, -0.0177523363, 0.00287071848, 0.00248472556, 0.00645326823, 0.0053637987, -0.0156536046, 0.0123918792, -0.0192896239, 0.00323666, 0.0299704354, -0.002314287, -0.0166829191, -0.00806073751, -0.0245698746, -0.000102816586, -0.0101661533, 0.0140093742, -0.011877222, -0.0177790727, 0.00402368465, -0.00829467271, -0.00523346383, -0.0153728817, 0.00820109807, -0.012211415, -0.00258999644, -0.0211744737, 0.0117702801, -0.0086154975, -0.0254922491, 0.0120242666, -0.0135615552, -0.00715173176, 0.00939750951, -0.00274038315, -0.00265015103, 0.00167263637, 0.0121312086, -0.00656021, -0.0135014, -0.0134345619, -0.0229122769, 0.0085219238, 0.00229924847, -0.00646997802, -0.00461186469, 0.015279308, -0.0018714813, -0.0198778044, -0.0206798669, 0.000449489686, 0.0126124471, 0.0112756742, 0.00657023583, -0.017003743, 0.0132607818, -0.0120576862, -0.0164957698, -0.0151991015, 0.00529696047, -0.0199713781, 0.0119975312, 0.0198644362, 0.0079537956, -0.00751266, 0.0138623286, -0.0088628009, 0.00451829052, -0.00286570564, -0.000664626481, -0.005270225, 0.0137687549, -0.00494271563, 0.00285400893, 0.0205060877, 0.000504213793, -0.00569130806, 0.00234770635, -0.01282633, 0.00552755361, 0.0199580099, -0.0239549596, -0.00149634946, 0.00993890222, 0.0144104054, -0.00171775243, -0.0014219915, -0.00711162854, -0.0219498016, 0.0149050113, 0.00981859304, 0.00551084382, 0.0240217987, -0.0115497131, 0.0470009148, 0.00953787, 0.0213215183, -0.0114761908, 0.00174950075, 0.0169369057, -0.029836759, 0.00454168394, -0.0196505524, -0.0178592782, -0.00353910471, -0.0152525725, 0.0135882907, 0.0185410324, -0.0163888279, 0.0321360081, -0.00751934433, 0.0163754616, 0.00739235105, 0.0259467512, -0.0229924843, 0.0135615552, -0.00472214818, 0.000215136795, 0.0336064547, -0.014330199, -0.0132206781, -0.0177122336, -0.0169101693, 0.0124654016, 0.0102396756, 0.0234068837, 0.0171374213, -0.00902321283, -0.0209204871, 0.0116299195, 0.00383319473, 0.0180330593, -0.0043110908, 0.00319321477, 0.00685095834, 0.00150470436, -0.00458512921, -0.0158006493, -0.00207199715, -0.0200515855, -0.00250644819, 0.00184975867, 0.00566791464, -0.0121779954, -0.0208803844, -0.00755276345, -0.0183672514, -0.0233266763, -0.00412060088, 0.0174983498, -0.0184608251, -0.0202788357, -0.0109615326, -0.0224978775, 0.00663707452, 0.00657023583, 0.00180965557, -0.00244128052, -0.00733888, -0.0240752697, -0.00410723314, -0.0096247606, 0.0284732506, 0.00222906773, -0.0107209142, -0.00622935919, -0.0408784971, 0.0126993367, 0.0029893571, 0.00903658103, 0.00314642792, -0.0354512036, 0.0133476714, -0.00127160468, -0.00413731, 0.0167497564, -0.0274840388, -0.00654015876, 0.00253485446, -0.0249308031, -0.00396353, -0.00457510306, -0.00654015876, 0.00900984555, -0.0285534561, -0.00517999288, -0.00185477163, -0.0140494769, -0.00805405341, -0.0233266763, -0.00368949166, -0.0199847464, -0.0108679589, 0.0251179524, 0.00456841942, -0.00299269892, 0.00616586255, 0.0131204203, 0.00918362569, 0.00426430348, 0.000729376392, -0.0127995946, 0.00548410835, 0.00476893503, -0.0174315106, 0.000752352178, 0.000957463169, 0.007445822, -0.00653013261, -0.0220166408, 0.00324668572, -0.00832140725, -0.000645828142, 0.0129733756, -0.016335357, -0.0165893454, 0.00833477546, 0.00382651086, -0.011375932, 0.00189320382, 0.000339206, -0.0245698746, -0.0234336182, -0.00699131936, 0.000654600677, 0.0186346062, 0.00695121614, -0.0160145331, -0.0237410758, -0.00584837887, 0.0174849816, 0.00461854832, 0.0148248048, -0.0176854972, -0.0136751812, 0.00629619742, 0.00798053108, -0.00197842298, -0.0103533017, -0.0119240088, -0.00296763447, 0.00886948407, -0.00288742827, -0.00979854073, -0.00716509949, 0.0700468719, 0.0254120417, 0.0169502739, -0.00706484169, 0.00353242084, -0.0161883123, -0.0162284151, 0.0261873696, -0.00851524, 0.00475890934, -0.00250143511, -0.0136818644, -0.00306622148, 0.0135014, -0.0113358293, 0.0082879886, 0.0180196911, 0.00753271207, 0.00677409396, -0.00329681463, -0.0118438024, -0.000432780042, 0.00411725882, -0.0230459552, -0.00643990049, -0.00865560118, -0.00527690863, -0.0111620491, -0.0157739129, 0.00663707452, -0.0138088576, 0.00097835029, -0.00334527274, -0.0214150921, -0.0207600743, 0.00128747884, -0.0094844, 0.00610904954, 0.0017344621, -0.00848182, -0.00883606542, 0.0188351218, -0.00572472764, 0.0246901847, 0.000509226695, 6.1355764e-05, -0.0186747089, 0.0318419151, 0.00196505524, 0.00151807209, -0.0341144279, -0.0230726898, 0.0389000736, -0.0339272805, 0.000404791354, 0.000216598884, 0.00797384698, 0.00445813546, 0.00289244112, 0.00292084762, 0.0157070756, 0.0086154975, 0.0140494769, 9.12242685e-05, -0.00107275974, 0.00148632377, -0.0108880103, 0.0173914079, -1.49211992e-05, 0.0107543329, 0.00529361842, -0.00759286666, 0.00658694562, 0.0090499483, 0.0096180765, 0.00117886614, -0.0043612197, 0.000748174731, -0.00903658103, -0.0240084305, -0.00561110163, 0.0175518207, -0.0162685197, -0.0171106849, 0.0194500368, 0.00911678746, -0.00508641871, -0.0047020968, 0.00123734993, 0.00702473847, -0.00611573318, 0.0232063681, -0.0141965216, 0.019744128, 0.00222405489, 0.0109013785, -0.0116499709, 0.00469207065, 0.0118839061, 0.00320825353, 0.00618591392, 0.00340208551, -0.0102730952, 0.0137019167, -0.00650673918, 0.00246968679, -0.00679748738, -0.00381648494, 0.0246634502, 0.0048458, 0.0159877967, -0.0143703027, 0.019182682, 0.0205194559, 0.0138623286, 0.0168700665, -0.00236274512, 0.000980856712, 0.00854865927, 0.000382024475, 0.0246634502, -0.00183806196, -0.0129600074, -0.00937745813, 0.0100124246, 0.0145841856, 0.0205862932, 0.0146242892, 0.0121913636, -0.00269192527, 0.0141163161, 0.000163441306, 0.00737229921, -0.00852860697, 0.0135080842, 0.00246968679, -0.0197040234, -0.00627948809, 0.00157739129, 0.00893632323, -0.0133810909, 0.0142098898, 0.00060238305, 0.0145841856, 0.00513320556, -0.00808747299, 0.0137954904, -0.0241421089, 0.0116366027, 0.00387329771, -0.0172176268, 0.00528025068, 0.00372959487, -0.00849518832, 0.00209371955, -0.00171775243, -0.00667717773, -0.00352239516, 0.00126575632, -0.00044489454, 0.0104802949, -0.00102764368, 0.0089496905, 0.0243292563, 0.00667383568, -0.00779338274, 0.0304249376, 0.000980856712, 0.00348897581, 0.0189019609, 0.0239950623, -0.0142366253, -0.0173245687, 0.0179929547, -0.014664392, 0.00919031, -0.0257997066, 0.0228855424, -0.0121178413, 0.00370954326, -0.00517330877, -0.0027437252, -0.0122247832, 0.0353709944, 0.00127578212, -0.00645661028, 0.00349565968, -0.00619259756, 0.0352640525, 0.0267889164, -0.00909005199, -0.0147579666, -0.00701137073, -0.0122849373, -0.0272166841, -0.0111353137, -0.00734556373, 0.0027153187, 0.00164423, 0.0168834347, 0.00576483086, -0.00524348952, -0.00134094968, 0.0179662202, -0.00721188681, 0.0179127492, -0.00530698616, 0.000359466445, -0.00979854073, -0.0177523363, -0.00648000371]
11 Sep, 2024
Find the Peak Element in a 2D Array/Matrix 11 Sep, 2024 Given a 2D Array/Matrix mat[][], the task is to find the Peak element. An element is a peak element if it is greater than or equal to its four neighbors, left, right, top and bottom. A peak element is not necessarily the overall maximal element. It only needs to be greater than existing adjacent More than one such element can exist.  We need to return any of themThere is always a peak element. For corner elements, missing neighbors are considered of negative infinite value. Examples: Input: [[10 20 15], [21 30 14], [7  16 32]]Output: 1, 1Explanation: The value at index {1, 1} is 30, which is a peak element because all its neighbors are smaller or equal to it. Similarly, {2, 2} can also be picked as a peak. Input: [[10 7], [11 17]]Output : 1, 1 Naive Approach to Find Peak Element in MatrixIterate through all the elements of the Matrix and check if it is greater/equal to all its neighbors. If yes, return the element. C++ // Finding peak element in a 2D Array. #include <bits/stdc++.h> using namespace std; vector<int> findPeakGrid(vector<vector<int> > arr) { vector<int> result; int row = arr.size(); int column = arr[0].size(); for (int i = 0; i < row; i++) { for (int j = 0; j < column; j++) { // checking with top element if (i > 0) if (arr[i][j] < arr[i - 1][j]) continue; // checking with right element if (j < column - 1) if (arr[i][j] < arr[i][j + 1]) continue; // checking with bottom element if (i < row - 1) if (arr[i][j] < arr[i + 1][j]) continue; // checking with left element if (j > 0) if (arr[i][j] < arr[i][j - 1]) continue; result.push_back(i); result.push_back(j); break; } } return result; } // Driver Code int main() { vector<vector<int> > arr = { { 9, 8 }, { 2, 6 } }; vector<int> result = findPeakGrid(arr); cout << "Peak element found at index: " << result[0] << ", " << result[1] << endl; return 0; } // This code is contributed by Yash // Agarwal(yashagarwal2852002) Java import java.util.*; public class Main { public static List<Integer> findPeakGrid(int[][] arr) { List<Integer> result = new ArrayList<>(); int row = arr.length; int column = arr[0].length; for (int i = 0; i < row; i++) { for (int j = 0; j < column; j++) { // checking with top element if (i > 0) if (arr[i][j] < arr[i - 1][j]) continue; // checking with right element if (j < column - 1) if (arr[i][j] < arr[i][j + 1]) continue; // checking with bottom element if (i < row - 1) if (arr[i][j] < arr[i + 1][j]) continue; // checking with left element if (j > 0) if (arr[i][j] < arr[i][j - 1]) continue; result.add(i); result.add(j); break; } } return result; } public static void main(String[] args) { int[][] arr = { { 9, 8 }, { 2, 6 } }; List<Integer> result = findPeakGrid(arr); System.out.println("Peak element found at index: " + result.get(0) + ", " + result.get(1)); } } Python # Finding a peak element in 2D array def findPeakGrid(arr): result = [] row = len(arr) column = len(arr[0]) for i in range(row): for j in range(column): # checking with top element if i > 0: if arr[i][j] < arr[i-1][j]: continue # checking with right element if j < column-1: if arr[i][j] < arr[i][j+1]: continue # checking with bottom element if i < row-1: if arr[i][j] < arr[i+1][j]: continue # checking with left element if j > 0: if arr[i][j] < arr[i][j-1]: continue result.append(i) result.append(j) break return result # driver code arr = [[9, 8], [2, 6]] result = findPeakGrid(arr) print("Peak element found at index:", result) # This code is constributed by phasing17 C# // C# code to find peak element in a 2D array using System; using System.Collections.Generic; class GFG { static int[] findPeakGrid(int[][] arr) { int[] result = new int[2]; int row = arr.Length; int column = arr[0].Length; for (int i = 0; i < row; i++) { for (int j = 0; j < column; j++) { // checking with top element if (i > 0) if (arr[i][j] < arr[i - 1][j]) continue; // checking with right element if (j < column - 1) if (arr[i][j] < arr[i][j + 1]) continue; // checking with bottom element if (i < row - 1) if (arr[i][j] < arr[i + 1][j]) continue; // checking with left element if (j > 0) if (arr[i][j] < arr[i][j - 1]) continue; result[0] = i; result[1] = j; break; } } return result; } // driver code to test above function public static void Main() { int[][] arr = { new[] { 9, 8 }, new[] { 2, 6 } }; int[] result = findPeakGrid(arr); Console.WriteLine("Peak element found at index: " + result[0] + "," + result[1]); } } // THIS CODE IS CONTRIBUTED BY YASH // AGARWAL(YASHAGAWRAL2852002) JavaScript // Finding a peak element in 2D array function findPeakGrid(arr){ let result = []; let row = arr.length; let column = arr[0].length; for(let i = 0; i<row; i++){ for(let j = 0; j<column; j++){ // checking with top element if(i > 0) if(arr[i][j] < arr[i-1][j]) continue; // checking with right element if(j < column-1) if(arr[i][j] < arr[i][j+1]) continue; // checking with bottom element if(i < row-1) if(arr[i][j] < arr[i+1][j]) continue; // checking with left element if(j > 0) if(arr[i][j] < arr[i][j-1]) continue; result.push(i); result.push(j); break; } } return result; } // driver code let arr = [[9,8], [2,6]]; let result = findPeakGrid(arr); console.log("Peak element found at index: " + result[0] + ", " + result[1]); // THIS CODE IS CONTRIBUTED BY KIRTI AGARWAL(KIRTIAGARWAL23121999) OutputPeak element found at index: 0, 0Time Complexity: O(rows * columns) Auxiliary Space: O(1) Efficient Approach to Find Peak Element in MatrixThis problem is mainly an extension of Find a peak element in 1D array. We apply similar Binary Search based solution here, as shown below: Consider mid column and find maximum element in it.Let index of mid column be ‘mid’, value of maximum element in mid column be ‘max’ and maximum element be at ‘mat[max_index][mid]’. If max >= mat[index][mid-1] & max >= mat[index][mid+1], max is a peak, return max.If max < mat[max_index][mid-1], recur for left half of matrix.If max < mat[max_index][mid+1], recur for right half of matrix.Below is the implementation of the above algorithm: C++ // Finding peak element in a 2D Array. #include <bits/stdc++.h> using namespace std; vector<int> findPeakGrid(vector<vector<int> >& mat) { // Starting point & end point of Search Space int stcol = 0, endcol = mat[0].size() - 1; while (stcol <= endcol) { // Bin Search Condition int midcol = stcol + (endcol - stcol) / 2, ansrow = 0; // "ansrow" To keep the row number of global Peak // element of a column // Finding the row number of Global Peak element in // Mid Column. for (int r = 0; r < mat.size(); r++) { ansrow = mat[r][midcol] >= mat[ansrow][midcol] ? r : ansrow; } // Finding next Search space will be left or right bool valid_left = midcol - 1 >= stcol && mat[ansrow][midcol - 1] > mat[ansrow][midcol]; bool valid_right = midcol + 1 <= endcol && mat[ansrow][midcol + 1] > mat[ansrow][midcol]; // if we're at Peak Element if (!valid_left && !valid_right) { return { ansrow, midcol }; } else if (valid_right) stcol = midcol + 1; // move the search space in right else endcol = midcol - 1; // move the search space in left } return { -1, -1 }; } // Driver Code int main() { vector<vector<int> > arr = { { 9, 8 }, { 2, 6 } }; vector<int> result = findPeakGrid(arr); cout << "Peak element found at index: " << result[0] << "," << result[1] << endl; return 0; } Java // Finding peak element in a 2D Array. import java.util.*; public class GFG { static int[] findPeakGrid(int[][] mat) { // Starting point & end point of Search Space int stcol = 0, endcol = mat[0].length - 1; // Bin Search Condition while (stcol <= endcol) { int midcol = stcol + (endcol - stcol) / 2, ansrow = 0; // "ansrow" To keep the row number of global // Peak element of a column // Finding the row number of Global Peak element // in Mid Column. for (int r = 0; r < mat.length; r++) { ansrow = mat[r][midcol] >= mat[ansrow][midcol] ? r : ansrow; } // Finding next Search space will be left or // right boolean valid_left = midcol - 1 >= stcol && mat[ansrow][midcol - 1] > mat[ansrow][midcol]; boolean valid_right = midcol + 1 <= endcol && mat[ansrow][midcol + 1] > mat[ansrow][midcol]; // if we're at Peak Element if (!valid_left && !valid_right) { return new int[] { ansrow, midcol }; } else if (valid_right) stcol = midcol + 1; // move the search space in right else endcol = midcol - 1; // move the search space in left } return new int[] { -1, -1 }; } // Driver Code public static void main(String[] args) { int[][] arr = { { 9, 8 }, { 2, 6 } }; int[] result = findPeakGrid(arr); System.out.println("Peak element found at index: " + result[0] + "," + result[1]); } } // This code is contributed by Karandeep1234 Python # Finding peak element in a 2D Array. def findPeakGrid(mat): stcol = 0 endcol = len(mat[0]) - 1 # Starting po end po of Search Space while (stcol <= endcol): # Bin Search Condition midcol = stcol + int((endcol - stcol) / 2) ansrow = 0 # "ansrow" To keep the row number of global Peak # element of a column # Finding the row number of Global Peak element in # Mid Column. for r in range(len(mat)): ansrow = r if mat[r][midcol] >= mat[ansrow][midcol] else ansrow # Finding next Search space will be left or right valid_left = midcol - \ 1 >= stcol and mat[ansrow][midcol - 1] > mat[ansrow][midcol] valid_right = midcol + \ 1 <= endcol and mat[ansrow][midcol + 1] > mat[ansrow][midcol] # if we're at Peak Element if (not valid_left and not valid_right): return [ansrow, midcol] elif (valid_right): stcol = midcol + 1 # move the search space in right else: endcol = midcol - 1 # move the search space in left return [-1, -1] # Driver Code arr = [[9, 8], [2, 6]] result = findPeakGrid(arr) print("Peak element found at index:", result) # This code is contributed by phasing17. C# // Finding peak element in a 2D Array. using System; using System.Collections.Generic; public class GFG { static int[] findPeakGrid(int[][] mat) { // Starting point & end point of Search Space int stcol = 0, endcol = mat[0].Length - 1; // Bin Search Condition while (stcol <= endcol) { int midcol = stcol + (endcol - stcol) / 2, ansrow = 0; // "ansrow" To keep the row number of global // Peak element of a column // Finding the row number of Global Peak element // in Mid Column. for (int r = 0; r < mat.Length; r++) { ansrow = mat[r][midcol] >= mat[ansrow][midcol] ? r : ansrow; } // Finding next Search space will be left or // right bool valid_left = midcol - 1 >= stcol && mat[ansrow][midcol - 1] > mat[ansrow][midcol]; bool valid_right = midcol + 1 <= endcol && mat[ansrow][midcol + 1] > mat[ansrow][midcol]; // if we're at Peak Element if (!valid_left && !valid_right) { return new int[] { ansrow, midcol }; } else if (valid_right) stcol = midcol + 1; // move the search space in right else endcol = midcol - 1; // move the search space in left } return new int[] { -1, -1 }; } // Driver Code public static void Main(string[] args) { int[][] arr = { new[] { 9, 8 }, new[] { 2, 6 } }; int[] result = findPeakGrid(arr); Console.WriteLine("Peak element found at index: " + result[0] + "," + result[1]); } } // This code is contributed by phasing17 JavaScript // Finding peak element in a 2D Array. function findPeakGrid(mat) { let stcol = 0, endcol = mat[0].length - 1; // Starting po end po of Search Space while (stcol <= endcol) { // Bin Search Condition let midcol = stcol + Math.floor((endcol - stcol) / 2), ansrow = 0; // "ansrow" To keep the row number of global Peak // element of a column // Finding the row number of Global Peak element in // Mid Column. for (let r = 0; r < mat.length; r++) { ansrow = mat[r][midcol] >= mat[ansrow][midcol] ? r : ansrow; } // Finding next Search space will be left or right let valid_left = midcol - 1 >= stcol && mat[ansrow][midcol - 1] > mat[ansrow][midcol]; let valid_right = midcol + 1 <= endcol && mat[ansrow][midcol + 1] > mat[ansrow][midcol]; // if we're at Peak Element if (!valid_left && !valid_right) { return [ ansrow, midcol ]; } else if (valid_right) stcol = midcol + 1; // move the search space in right else endcol = midcol - 1; // move the search space in left } return [ -1, -1 ]; } // Driver Code let arr = [[9, 8], [2 ,6]]; let result = findPeakGrid(arr); console.log("Peak element found at index: " + result[0] + "," + result[1]) // This code is contributed by phasing14. OutputPeak element found at index: 0,0Time Complexity: O(rows * log(columns)). We recur for half the number of columns. In every recursive call, we linearly search for the maximum in the current mid column.Auxiliary Space: O(columns/2) for Recursion Call Stack
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Find the Peak Element in a 2D Array/Matrix
https://www.geeksforgeeks.org/find-peak-element-2d-array/?ref=next_article
Data Science & ML
Matrix
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Find the Peak Element in a 2D Array, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Matrix, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.0139900604, -0.00817915332, -0.0165247656, 0.0271780938, 4.8707956e-05, 0.000114794726, 0.0138538666, 0.0332311206, -0.0184012037, -0.00167498621, -0.00259334408, -0.000489916943, 0.0642226264, -0.0155411484, -0.035501007, -0.00775544159, -0.00123046699, -0.00542880921, -0.0314757451, -0.0497861505, -0.029705232, -0.0345930532, -0.0350772962, 0.0249687396, -0.0237883981, 0.0112359328, 0.0143154105, 0.00556121906, -0.0536903553, 0.020792149, -0.00413875747, 0.010002628, 0.0145348329, -0.0277833976, 0.00867852848, 0.00662806537, -0.00521317, 0.0220178887, 0.00506184436, 0.00128153944, 0.0133090941, -0.0216849707, 0.0238186643, -0.0315060094, -0.00447924063, 0.0126508279, 0.0352588855, -0.0127794547, -0.0181893483, 0.00273521175, 0.00488403672, -0.00988913421, 0.0209283438, 0.0263004042, -0.0105625335, 0.0127794547, -0.010320412, 0.0329587348, 0.00833047926, -0.0083153462, 0.0290394, -0.00985130202, -0.0519047119, 0.00335753872, 0.0245450269, -0.0105776656, -0.0272537563, 0.050179597, 0.0101312548, -0.0450950563, -0.0427343734, 0.00728254905, 0.00145650981, -0.0249233413, -0.0361971036, 0.00122195494, 0.0195361469, -0.00323647819, -0.013770638, 0.0345627889, -0.0111678364, 0.0263760686, -0.00515264, -0.0218665618, 0.0233798195, 0.00837587658, 0.00154446787, -0.0549312271, -0.00698368065, 0.0552036129, -0.0169182122, 0.0335337743, -0.00844397396, 0.00290923635, 0.00808079168, -0.00019956076, 0.0330797955, 0.000756628462, -0.047697857, 0.0543259233, -0.009246, -0.00400256459, 0.0315060094, -0.0157227386, 0.00982103683, -0.0246812198, -0.0107668228, 0.0208375473, 0.0376800969, 0.0398289226, 0.0110316426, -0.000221313821, -0.023455482, -0.0124162724, -0.0225777924, 0.0116066802, -0.0111829685, -0.0242877733, 0.00861043204, -0.00091788487, -0.00284303143, 0.030961236, 0.0477886535, 0.0173116587, -0.0496953577, 0.0259069577, 0.0246660877, 0.0190367717, 0.000532477279, 0.0141489524, 0.01814395, -0.0107214255, 0.0130442744, -0.0274958778, 0.00992696546, 0.0426435806, 0.0430672914, 0.0522376299, 0.0119168982, 0.0108727505, -0.00910224, -0.0364392251, -0.0198236648, -0.0147845196, 0.00227556, 0.0148828812, -0.00213747541, 0.0407066122, -0.0387091115, 0.0151098706, -0.0555062629, -0.0039722994, 0.0220027547, 0.00799756311, 0.0462148674, -0.0440660417, -0.0115310177, -0.0227896497, -0.00917790271, -0.0231225658, 0.0272083599, -0.029236123, 0.00798243, -0.00380962435, -0.011258631, 0.0128778163, -0.00513372384, -0.010781955, -0.0467596389, 0.0279044565, 0.00063462212, 0.0216698386, 0.032989, 0.0479702428, -0.0189459771, 0.00531909801, 0.0110165104, -0.0013297745, 0.000172842309, -0.0334732421, 0.0193091575, -0.0476070605, -0.017674841, 0.0316573344, 0.0164339691, -0.000367201254, 0.0193696879, -0.019399954, -0.00818671938, -0.0145197, -0.0101388209, -0.0198236648, 0.0679755, -0.00261415122, 0.0369537324, -0.0745127723, -0.0286610853, 0.0110240765, -0.0110013774, 0.00251957285, -0.00168066099, -0.0266635865, -0.0177202374, 0.00606816029, 0.0376498327, 0.016736621, -0.0118563678, -0.0167214889, 0.04094873, -0.0203381721, -0.0340180136, 0.041765891, -0.0302348733, -0.0160707887, -0.0104868701, 0.0133393593, 0.0128853824, 0.0339877494, 0.00551960431, -0.0299624875, 0.00841370877, 0.0516928546, 0.0575037636, -0.0169787426, -0.0107214255, -0.0321718417, -0.0333219171, -0.00296030892, -0.0136268781, -0.055990506, -0.00181590824, -0.016267512, 0.00616273889, -0.0124011403, 0.00378881698, -0.0339272209, -0.0229258426, 0.0102674477, 0.0119925607, 0.0182196125, 0.0306131877, -0.0159345958, -0.0378919542, 0.0110846069, 0.0287518818, -0.0161615834, -0.0216547064, 0.0334732421, 0.032050781, 0.0302500054, 0.0378616862, -0.0345022567, -0.0232284926, 0.0129610449, 0.0026746816, -0.0141867837, 0.0108273532, 0.0252562575, -0.00390420272, 0.0219119601, 0.000581185217, 0.0126432618, -0.00312109245, 0.0324139632, 0.0217001047, 0.0246206895, 0.0404644907, 0.0267695151, 0.00180172152, -0.0227896497, 0.0197631344, -0.0363484323, 0.0215185136, -0.0370142646, 0.0289334711, -0.0325047597, -0.0483939573, -0.0190065075, 0.0325047597, 0.00314568286, 0.0379222184, -0.00365640689, 0.026103681, 0.0257405, -0.0100480262, -0.000252288301, 0.0359247178, -0.00927626435, -0.0468807, -0.0172813945, 0.00088383659, -0.00830021407, -0.0303105358, 0.0122573813, 0.0345022567, 0.00313811656, -0.00339537021, -0.0301743429, -0.0234706141, -0.0105549665, -0.015949728, -8.4766034e-05, -0.0132485637, 0.00817158725, -0.016267512, -0.00682478864, -0.0306131877, -0.0111602694, -0.00963944662, -0.0203079078, 0.000347576191, -0.0400710441, -0.0154503528, -0.01938482, -0.0339877494, 0.0212612599, 0.0485150144, -0.00854233559, -0.00390420272, -0.0287367478, 0.0383761935, -0.0406763442, 0.0085347686, 0.0435515344, 0.0371353254, -0.0142927114, -0.00615517236, 0.00894334819, -0.00906440895, -0.0262398738, -0.00966214575, 0.00339537021, 0.00065542938, -0.0245147627, 0.041584298, -0.0373774469, -0.0183406733, 0.01266596, -0.0195815451, 0.0229107086, 0.00123425014, 0.0229409747, 0.0519955084, -0.0128324181, -0.0208526794, -0.0285702907, -0.0339574851, -0.000551865902, 0.00519047119, 0.00673399307, 0.00151041953, 0.0259977542, 0.0141262533, -0.00444519194, 0.0378011577, 0.0171754658, -0.032686349, -0.0320810452, 0.0315362737, 0.00430143252, 0.00718797045, 0.0165247656, -0.0513902046, -0.0124616707, -0.00517912162, 0.00449058972, -0.020489499, -0.0433094129, 0.00116426207, 0.00059017021, -0.0408882, -0.0142851453, -0.0257102344, -0.00352210552, -0.0704572424, -0.0105322683, 0.0241667125, -0.0155562805, -0.0255286433, -0.00772895943, -0.0666438341, 0.0159345958, 0.0200809184, -0.0175689124, -0.0119774286, 0.00835317839, -0.0105776656, -0.0127340565, -0.0157530047, 0.0411605872, -0.0351075605, 0.0235311445, 0.0231528301, -0.0302954037, 0.0485452823, -0.00640107691, 0.0300835464, -0.0205046311, 0.0305072591, -0.0356220677, 0.0215790439, 0.00330079161, 0.0206105597, 0.00273521175, -0.00769869424, 0.0441568345, 0.000856881728, -0.022532396, 0.0217001047, -0.00329700857, 0.053175848, 0.0144213382, -0.0517533869, 0.00327998423, 0.0338969529, 0.0071463557, -0.000575037615, 0.020792149, 0.00255740411, 0.00463813217, -0.00773652596, -0.0038077326, -0.00922330096, 0.012824852, -0.0476373285, 0.0105701, -0.00561418291, 0.00518668815, 0.030023016, -0.0195361469, -0.0411605872, 4.56637099e-05, -0.00117371988, 0.0164339691, -0.0424922556, -0.0146937249, -0.000476912363, 0.0376800969, -0.0071463557, -0.0598947071, 0.0199598577, 0.0706993639, 0.0265122615, -0.0110089444, -0.00914007146, 0.0396170653, -0.0143305426, 0.0300986804, -0.047486, -0.0154957511, -0.0125600323, -0.0142397471, -0.0273445528, -0.0303861983, 0.044096306, -0.0032137793, 0.00970754307, -0.0288880747, 0.00649565505, 0.00197480037, -0.00640864298, 0.00579955708, 0.0389814973, -0.0405250192, 0.0153822564, 0.0197328702, -0.00765708, 0.00360344304, -0.0231982283, -0.00645025773, 0.0392538831, -0.0316270702, 0.0167971514, 0.0367418788, 0.047243882, -0.00276736845, 0.00451707188, -0.0441265702, -0.005239652, -0.0192940254, 0.0597131178, -0.0138841318, -0.029553907, -0.0422501341, -0.00710474094, -0.00221313816, 0.00903414376, -0.017190598, -0.00621948577, -0.014542399, 0.0305980537, 0.0210342705, -0.0309915021, -0.0398289226, -0.0150493402, 0.0224264674, -0.0327468775, -0.0116672106, -0.0111527033, 0.0481518358, 0.0238186643, -0.0428554341, -0.0241061822, 0.0345627889, 0.00929139741, -0.0340482816, 0.0290091354, 0.0157076064, -0.000694206625, -0.0582301244, -0.0217001047, 0.00188967958, 0.024862811, 0.0124541046, -0.00607194332, -0.0305526573, -0.0194150861, 0.0154049555, -0.0118715, -0.00690423464, 0.00934436172, -0.00581090664, 0.0170846712, 0.00165985362, 0.0105020031, 0.0423711948, 0.00313244178, -0.0282071084, 0.0310822967, -0.0229409747, -0.0220935512, 0.0128097199, -0.010638196, 0.0072409343, 0.003126767, -0.0344114602, -0.00742252497, 0.0102144843, 0.00471001212, -0.0109786792, -7.77317473e-05, 0.0196874719, -0.0114326561, -0.0053644958, -0.0191124342, 0.0241213143, 0.00889795087, -0.0052547846, -0.0168728139, 0.041130323, 0.0267543811, 0.0108651845, -0.00863313, 0.00665454706, -0.0255891737, 0.00841370877, -0.0159648601, -0.0146180615, -0.0169938747, -0.0300986804, 0.0143608078, -0.00102806895, -0.000474784349, 0.0191578325, -0.00408957666, -0.0262852721, -0.0147164231, 0.0160102583, -0.0610447824, 0.00608707592, 0.0105247013, -0.00493700057, 0.03876964, -0.00636324519, 0.0198236648, 0.0492716432, 0.00724471733, -0.0121287536, -0.00912493933, -0.0141565185, 0.0276472028, 0.00461543351, 0.0241969787, -0.00457760226, 0.0162977763, -0.0558391809, 0.00658266759, -0.0352891497, -0.0392841473, -0.00975294, 0.00373396138, 0.0601368286, 0.00631028134, 0.0141186872, -0.00472514471, -0.0218211636, 0.0123860082, -0.0194907486, -0.00217341515, -0.0132561307, 0.0277531315, 0.00361290085, 0.00377935916, -0.022532396, 0.0020882946, 0.00255740411, 0.018764386, 0.0200052559, 0.00780840544, -0.000812902697, -0.0507849, -0.00135625654, -0.00690801768, -0.00355426222, 0.0216849707, 0.0141413854, 0.0187795181, 0.00870122761, -0.0341088101, -0.0491808504, 0.0052737, -0.0301289447, 0.0141565185, 0.0285097603, -0.00691180071, 0.00235311454, -0.035803657, -0.0113721257, -0.013611746, -0.0253167879, 0.0210948, -0.039102558, -0.0070366445, -0.00873905886, -0.000492281397, -0.0180380214, -0.00467218086, -0.00288842921, 0.00103847252, 0.044429224, 0.00966971181, 0.0158135351, -0.00764573039, 0.0477583893, -0.00935192779, -0.0236673374, -0.0434002094, -0.00723336777, 0.0199447256, -0.0143078435, -0.00453977054, 0.020489499, 0.0467596389, 0.012507068, 0.0130821057, -0.0271478295, 0.000816212967, -0.0024231025, 0.00565201463, -0.0258312952, 0.00449058972, -0.00458138529, 0.0149661107, -0.00152933528, -0.00463434914, 0.00103847252, 0.006646981, 0.0236370731, 0.0297960285, 0.0249082092, -0.00833804533, 0.0221238155, 0.00755871832, 0.0226231907, 0.0290999301, -0.0380735435, -0.0119622955, 0.0102674477, 0.0278136618, 0.0124162724, 0.00726741645, -0.0217152368, 0.035501007, 0.00443384284, 0.00542880921, -0.0117807053, -0.0271629617, -0.00912493933, 0.0099118324, 0.0174629837, -0.0141035542, 0.0320810452, 0.0087239258, -0.00506184436, -0.00585630443, 0.00160972704, 0.0198993273, 0.00518668815, -0.0253924504, -0.0120757902, -0.00601519598, -0.010320412, -0.0105927987, 0.0386788473, -0.0331403278, 0.021125067, -0.00929896347, 0.0266333222, 0.0102220504, -0.0302500054, 0.0374682397, -0.00156432937, -0.0223508049, 0.00718418695, 0.0165701639, -0.0144364713, -0.0404342227, -0.0195058808, 0.0259977542, 0.0126886591, 0.0186735895, 0.0204138365, 0.00757385092, -0.0341390744, 0.0203079078, 0.00372450356, 0.00297733303, -0.0155714136, 0.00210531871, -0.00276358542, -0.0124541046, -0.00466461433, -0.0182196125, 0.000836547348, 0.0108046541, -0.00578442449, 0.0258615613, -0.012514635, 0.00232095784, 0.0082396837, 0.00206748722, -0.0159043297, -0.00440736068, -0.00105455087, 0.0232738908, 0.00182347454, 0.00913250539, -0.00382854, -0.00215260801, -0.0123860082, -0.0137782041, 0.013596613, 0.0278439261, -0.041765891, 0.00600006338, -0.0235916749, 0.0122119831, -0.0328074098, 0.0218362976, -0.00256686192, -0.00765329693, 0.0458819494, -0.0190367717, 0.00348616554, -0.0179623589, -0.0143305426, -0.0286913514, -0.00303975469, 0.018310409, -0.00533801364, 0.0184163358, 0.0281011797, 0.0203684382, -0.0246358216, -0.0239851214, -0.0286610853, 0.0269965027, -0.000379732897, 0.00365262385, 0.00836831052, -0.0172359962, 0.0118639339, 0.0171452016, 0.021276392, 0.00481215678, -0.0119320303, 0.0147391222, -0.0135587817, 0.0267695151, 0.0215941761, 0.011258631, 0.0192032307, -0.00271818764, -0.0106835933, -0.0226383228, -0.0385275222, -0.0366208181, -0.0335640386, -0.0235311445, -0.0565050133, 0.0218514297, -0.00474027731, 0.00728254905, -0.00467596389, -0.0170544051, -0.0269965027, 0.0268300455, 0.0119622955, -0.0142548801, 0.0192637611, 0.0126129966, 0.00477810856, -0.0105171353, 0.0183558054, -0.000862083514, 0.030023016, -0.00206748722, 0.00287897117, 0.0137782041, -0.00431656512, -0.00844397396, -0.0093216626, 0.0181288179, -0.0169484764, -0.0307796448, 0.0445502847, -0.0226383228, -0.0370142646, 0.041584298, -0.00878445618, 0.00795216486, 0.00678317389, -0.00527748326, 0.0384972543, -0.0168728139, 0.0112434989, -0.0251503289, 0.0297354981, 0.00347859925, 0.0239094589, 0.0176899731, -0.0132258656, -0.0121363206, -0.00402526325, 0.0230620354, 0.000383516046, -0.0016702573, 0.0238489285, 0.0213520546, 0.0235916749, 0.0311428271, -0.00236446387, -0.0114402222, 6.15942845e-05, -0.0399499834, 0.0244390983, -0.0340785459, -0.00525100157, 0.00668859528, -0.0113494266, 0.0362273715, -0.00184144452, 0.000454686407, -0.0209888723, 0.0458819494, 0.0102296164, -0.0193696879, -0.00882228743, -0.00858773291, -0.0173873212, -0.00576929189, -0.0126356948, 0.0113115953, 0.0038550219, -0.00401013065, -0.0160405226, -0.02502927, 0.0221692137, 0.0102220504, 0.00209586089, 0.0263760686, 0.0021355839, -0.0264819954, -0.0234252177, -0.0221843459, 0.00448680669, -0.0151477018, -0.0281011797, 0.0215033814, -0.0230015051, 0.0071312231, 0.000807228, 0.00780083938, -0.00913250539, 0.022199478, 0.0187341198, 0.00505427783, 0.00910224, 0.0034729247, 0.0424317233, 0.0127870208, 0.0155865457, 0.0140127586, 0.00370937097, 0.0269813705, -0.014391073, 0.0168122835, -0.0190367717, -0.0121363206, 0.000964228355, 0.0333521813, 0.00721823564, -0.0104263397, -0.0343509316, 0.015336859, 0.00834561139, -0.0224113353, -0.0142473141, 0.0241969787, 0.00489916932, 0.00761546521, 0.00780840544, 0.0214125849, 0.044731874, -0.0284038316, -0.0128702503, -0.0364392251, -0.000190339342, -0.0219270922, -0.0142624462, -0.0333521813, 0.0183860715, 0.00466461433, -0.00517155556, -0.00117371988, 0.00672264397, -0.0122649474, -0.0187341198, -0.0305223912, -0.0161313191, -0.0300078839, 0.0439752452, 0.0394354761, 0.00441492721, 0.00403661281, -0.0249082092, -0.011099739, -0.00444140891, 0.0359247178, -0.00546664046, 0.0141867837, -0.0430067629, 0.0161464512, 0.00249498221, 0.0134225888, -0.00388150406, -0.0132031664, -0.00827751495, -0.0164339691, -0.0135512156, 0.00897361338, -0.0133923236, -0.0334732421, -0.00963188056, 0.00360722607, -0.0148374839, -0.000765613397, -0.0313849486, -0.00229636743, -0.0326560847, 0.0561115667, 0.0108500523, 0.0109257149, 0.0168576818, -0.0395262688, 0.0316876, 0.00438466202, -0.0433094129, -0.00873149186, -0.0157530047, -0.000895186036, 0.0273294188, 0.0220330209, -0.0200506542, 0.0128021538, -0.0161615834, 0.000150852793, -0.00807322562, 0.00686640339, 0.0104868701, -0.00472892774, 0.0274656136, 0.0073355129, -0.0271326955, -0.0130821057, -0.010176653, -0.00502022961, -0.0132863959, 0.0021753069, -0.0123103447, 0.0215790439, -0.00245336769, 0.0116218133, -0.0141262533, 0.0198841952, 0.00074007723, 0.00893578213, 0.00178091426, -0.00965457875, -0.015949728, -0.0257102344, -0.000180290372, 0.00558770122, 0.0272991545, 0.0283433013, 0.0282071084, -0.0287367478, 0.0338364244, 0.0315362737, -0.00267089834, 0.0074300915, -0.00906440895, -0.0296749678, 0.0150417732, 0.0126886591, 0.0140581569, -0.00976050738, -0.0114856195, 0.0140051926, -0.0122195492, 0.0222751424, -0.00338969543, 0.00746792275, 0.00388528709, 0.0174478516, -0.0113569926, 0.00653727, -0.0180531554, 0.000390136556, -0.00355426222, 0.0214882474, -0.00136287697, 0.0240759179, 0.0169938747, -0.0293420516, -0.0169333443, 7.24117053e-05, -0.0117504401, -0.00139503367, 0.0109786792, 0.00749440491, 0.0293571837, 0.0196572077, 0.0308855735, -0.0193545558, 0.0189913735, -0.011576415, -0.0118336687, 0.0137328068, 0.0037207203, -0.0118109705, -0.0325955525, -0.00959404837, 0.001543522, -0.0115158847, 0.00432413165, 0.00794459879, 0.00634054653, 0.0202171113, 0.015011508, 0.0067415596, -0.000931125891, -0.0127643216, 0.00228123483, 0.0359549858, -0.000104804865, 0.0087239258, -0.0172511283, -0.0246358216, -0.0161313191, -0.0219876226, -0.0057390267, 0.0200203881, 0.0168425497, -0.0188249163, -0.0178866964, 0.0197328702, 0.0254529808, 0.0238186643, -0.0201414488, -0.00030714387, 0.0100934235, 6.44316387e-05, 0.00557256863, 0.00206370419, -0.00387393776, 0.00569741242, 0.0605908073, -0.0145272659, -0.0028052, -0.032837674, 0.0169787426, -0.00861043204, -0.00711609051, 0.0197934, 0.00616273889, -0.00652970374, 0.0477583893, -0.00367532275, 0.00955621712, -0.0173267908, 0.00620813621, 0.000138675809, -0.00931409653, 0.011886633, -0.0106457621, -0.0086179981, 0.0141867837, 0.0140430238, 0.00960161537, 0.00670372788, 0.0121438866, 0.0107138585, 0.0051450734, -0.000936800614, -0.0410092622, -0.0128399851, -0.00461921655, -0.0187795181, -0.00676047523, 0.00205613789, -0.00250822329, 0.0242575072, 0.0125600323, -0.00279195909, 0.0090190107, 0.0210342705, -0.00830778, 0.0166760907, -0.0150266411, -0.00346346665, 0.00202965573, -0.00960161537, 0.00365073234, 0.00127870205, -0.0100555923, 0.0156773422, -0.0165398978, -0.0128778163, -0.017357057, 0.0092081679, -0.0043506138, 0.0163885728, 0.0156016788, -0.00923843309, 0.0312033575, -0.00730524771, -0.00787650235, 0.00647295639, -0.018310409, -0.0102144843, -0.00277304323, -0.00661293278, -0.0212007295, -0.0216547064, -0.0233192891, -0.00576550886, -0.0129459128, 0.00622326881, 0.0295387749, -0.0010091532, 0.00446410803, 0.00443005934, -0.0230166372, 0.0017449744, -0.00542502617, -0.0121741518, -0.00953351893, 0.035833925, -0.0207467526, 0.0140354577, -0.00607572636, -0.015011508, -0.0143456757, -0.000721634366, -0.000130400178, -0.0109862452, -0.0275261421, -0.0241818447, -0.044096306, 0.0106760273, -0.00054950139, -0.0021677406, 0.0067415596, 0.0122346822, 0.00531909801, 0.000381860911, -0.0231679622, -0.0104566049, 0.00179888413, 0.0103733763, -0.00552338781, -0.0244239662, 0.0132334316, -0.00433548121, -0.00866339542, -0.0026746816, 0.00587522, 0.00525856763, 0.0299624875, 0.00593953347, 0.00108197867, 0.0227896497, -0.00749062188, -0.000524438103, -0.00742252497, 0.0223508049, 0.00214504171, 0.0058487379, 0.0259826202, -0.0382248685, -0.000498429, -0.0185979269, 0.00621948577, -0.00581468968, -0.00370937097, 0.0237581339, -0.00714257266, 0.00676425826, 0.0111527033, -0.0221843459, -0.0442173667, -0.0111148721, -0.00926869828, -0.00774409203, -0.0179320946, -0.00448680669, -0.00539476098, 0.0126356948, 0.00200128229, 0.00774409203, -0.0166155603, -0.0078386711, 0.00134112395, 0.0168425497, 0.00522451941, -0.0254529808, -0.0121136215, 0.00454355404, -0.00588656915, 0.0124541046, -0.00398364896, -0.0229863729, 0.00843640696, 0.0144667355, 0.0216395743, -0.00593575, 0.0156168109, 0.0135209505, 0.0182498787, 0.0228653122, -0.024862811, 0.010940847, 0.00320243, -0.0140581569, -0.0123860082, 0.0205348954, 0.0143002775, -0.0180228893, 0.0135814808, -1.61374664e-05, 0.0228804443, 0.00935192779, 0.0307342485, 0.00427495083, 0.0145726642, -0.000313764351, -0.0295387749, 0.0154503528, -0.00361479237, 0.0336548351, -0.0126432618, -0.00878445618, -0.00562174944, -0.00612112414, 0.0321113132, 0.00254983781, -0.00289977854, -0.013763071, -0.0157681368, -0.00544772483, 0.00530018238, 0.00778570678, -0.00305867055, 0.00308893574, -0.0257707648, 0.0033556472, 0.0167214889, -7.87366516e-05, 0.00550068868, 0.0264971275, -0.00221124664, -0.0205802936, -0.017826166, -0.02533192, 0.00875419099, 2.89646823e-06, 0.0239548571, -0.00183387822, -0.0129988771, -0.0182801429, -0.0181288179, 0.03003815, -0.0133847576, 0.0100253271, 0.0256951023, -0.00930653, -0.0138841318, 0.00351643073, 0.00112075591, -0.0154200876, -0.00139976258, -0.0325955525, 0.0124314055, -0.00348427403, 0.00383232301, 0.00367910578, -0.00962431356, 0.0100631583, 0.0238791946, 0.0159345958, -0.0083153462, -0.0150720384, -0.00474027731, -0.00942002423, -0.0480913036, 0.0281919762, 0.0236522052, -0.00264819968, -0.0175235141, 0.00239662058, 0.020807283, 8.72487217e-05, 0.0223810691, -0.00113494263, -0.016418837, 0.0331100598, -0.0196723398, -0.0133015281, -0.00237392168, -0.0342601351, 0.00809592474, 0.030961236, -0.015019075, -0.00572767714, -0.014549965, -0.0249838717, 0.0279195905, 0.0365602858, -0.00825481676, 0.00169484771, -0.0057541593, 0.00390420272, -0.0194907486, -0.00254605478, -0.00280330842, -0.0096167475, -0.0297657624, -0.00162675115, 0.000741023, 0.011107306, -0.0151325688, -0.0302348733, -0.00765329693, -0.0143229766, 0.00935192779, -0.00833047926, -0.00927626435, 0.0377708934, -0.00203911378, 0.00602654554, 0.0140581569, 0.00893578213, 0.00355993677, 0.0231679622, 0.00800512917, -0.0119925607, -0.00436952943, 0.006726427, -0.00830021407, -0.0258312952, 0.00629893178, 0.0203835703, -0.0113872578, 0.0336851, -0.0406763442, 0.0144137722, 0.00317783956, -0.000350413553, -0.0186887234, 0.00847423822, -0.0189762414, -0.00963944662, 0.00890551694, -0.0225929264, 0.0077251764, 0.00446032453, 0.0161615834, -0.0333219171, -0.0059584491, -0.00236257236, -0.0119849946, 0.00788406841, -0.00603032857, -0.0129534788, -0.00953351893, 0.00756250136, -0.0316573344, -0.000501739269, -0.03846699, -0.0169484764, 0.0164037049, 0.0076192487, -0.0291604605, -0.0289334711, -0.0120001268, -0.0154125215, 0.0194604844, 0.0139900604, 0.00514885643, 0.00273142871, 0.0100555923, -0.00377179286, -0.00217152364, -0.0197328702, 0.0196269415, 0.00519425422, 0.00212612585, 0.0169938747, -0.00960161537, -0.0059584491, -0.00762303174, -0.0137101077, -0.000257726555, 0.00275601912, -0.00910980627, 0.0186887234, -0.0235311445, -0.01908217, -0.0187492538, -0.00342185213, 0.0332311206, -0.00125127425, 0.0108727505, 0.0121136215, -0.00760789914, 0.0188703127, -0.00724850036, 0.0259372238, 0.000304306508, -0.0144894347, 0.0365602858, 0.00894334819, 0.00378314219, 0.00578064146, 0.0278893244, 0.025180595, -0.0021677406, -0.0206105597, 0.00879202224, -0.00889038388, 0.000803917705, 0.00734686246, -0.0169484764, 0.0184314698, -0.00119263562, -0.0261944775, -0.00859529898, -0.0272840224, 0.0122346822, 0.00606816029, -0.0238337964, -0.0117958374, -0.0257556327, -0.00176389, -0.00506941043, 0.00308515248, 0.00326296012, 0.00897361338, 0.0488176681, 0.00976807345, 0.0122800795, 0.0378616862, 0.0126735261, 0.00677182479, -0.0208224151, -0.0167063568, 0.035803657, 0.0328982063, 0.0179320946, 0.0136420112, -0.00760033261, 0.0299473535, -0.000992129091, -0.0222297441, 0.00837587658, -0.00603411207, 0.00333862309, 0.00697611412, -0.0111527033, -0.041281648, 0.0269662384, 0.0130064432, 0.00503157917, 0.0480913036, 0.00188967958, 0.0172511283, 0.00424090261, -0.00596979866, -0.00083607441, -0.0423409268, -0.00886011869, -0.00941245817, 0.0130064432, -0.000269076, -0.016736621, -0.00637081172, 0.00862556417, 0.0196269415, -0.0156319439, -0.0155260162, -0.00152649789, 0.0195210148, 0.00959404837, 0.0075360192, -0.0186735895, 0.010797088, 0.000572673162, -0.0087239258, -0.0144364713, 0.0080202613, -0.00666589662, -0.00716148829, 0.0398591869, -0.00937462691, -0.00121817179, 0.00697989762, -0.0154730519, -0.000110361354, -0.00372639508, -0.0103279781, -0.00799756311, 0.00191427, -0.00190102903, -0.00443762587, -0.00482350634, 0.000571727345, -0.00242499425, 0.00456246966, -0.0179774929, 0.0113191614, 0.018492, 0.0216244403, -0.00801269524, -0.00892821606, -0.00282033253, 8.65984912e-05, 0.0265122615, -0.0090265777, -0.0109786792, 0.0164339691, 0.00917033665, -0.0197480023, -0.0305677895, 2.72652251e-05, 0.003752877, 0.0166458264, -0.00322702038, 0.0056104, -0.00146502187, -0.0141867837, 0.00187927589, 0.0422198661, 0.0032213456, 0.0229107086, 0.00545150787, 0.0173267908, 0.00270116352, -0.00154825102, -0.0153444251, 0.00481215678, -0.0163280424, -0.0263458025, 0.00176578166, 0.0121287536, 0.00633298, -0.00167687784, 0.0161767155, -0.0202019792, 0.000132173533, 0.0180077571, 0.0269208401, -0.000678601151, 0.0115385838, 0.0102069182, 0.00978320558, -0.00342374365, -0.00667724619, -0.0277077332, -0.0161464512, 0.00238905428, 0.0147618214, 0.000467690959, -0.0138992649, -0.0157681368, 0.0173116587, 0.00403661281, 0.00505427783, -0.0025252474, -0.0118412357, -0.00695719849, -0.00411605882, 0.0140430238, 0.0208980776, 0.0200203881, -0.00620057, -0.00792946573, 0.00582225574, 0.019551279, -0.00866339542, -0.0170998033, -0.0131275039, 0.00450193929, 0.0107592568, -0.00431656512, 0.00187265547, -0.00858016685, 0.0143608078, 0.00868609454, -0.00666967966, 0.035833925, 0.002580103, -0.00473649427, 0.00356372, -0.010638196, 0.0126356948, -0.00474027731, 0.0140278917, 0.0019861497, -0.0123784412, -0.00603411207, -0.0143986391, 0.0234403498, 0.0161918495, -0.00830778, 0.00310595986, 0.0186584573, 0.0314152129, -0.0160253905, 0.00214125845, 0.0152611956, 0.00922330096, 0.0119698625, 0.0033083579, 0.00486890413, 0.0252411254, -0.0140657229, -0.0116520785, -0.00112926797, 0.0139068309, 0.0240759179, -0.016585296, 0.0213974528, -0.0210040063, 0.0226383228, -0.00673399307, -0.0213369224, 0.00680965604, 0.00303408015, -0.015798403, -0.00978320558, -0.00534179667, 0.0178715643, 0.0155865457, 0.0266635865, -0.00839101, 0.0186887234, -0.0088071553, -0.00100064115, -0.0119017651, 0.0175537802, 0.000730619358, -0.00106211717, -0.0246509556, -0.0164945, -0.0098967, 0.011576415, -0.0039571668, -0.0186281931, -0.00464191567, -0.0132636968, -0.00266522379, -0.0223810691, 0.0127794547, -0.0140505899, -0.0277531315, -0.0180228893, -0.0525100157, -0.0205651615, -0.00973024219, 0.00647295639, -0.0151855331, -0.017357057, -0.0139370961, 0.00457760226, 0.00160783541, -0.0183709394, 0.0126281288, -0.000607194321, -0.00581847271, -0.0181590822, 0.0216547064, 0.0146483267, -0.0141111203, -0.0141565185, 0.0116066802, 0.00547042349, -0.00879958924, 0.0178715643, -0.00249309069, 0.0106760273, -0.0192637611, 0.0249990039, -0.0156168109, -0.0238337964, 0.0084288409, -0.00221313816, 0.0266484544, -0.0068474873, 0.00969241, 0.00799756311, -0.0168576818, -0.0187795181, 0.0117126089, -0.017826166, -0.00667346315, -0.0043506138, 0.0237581339, 0.0083153462, 0.0147769535, 0.00199749903, 0.0265273936, -0.0186130591, 0.0170846712, -0.00148772064, -0.0165096335, 0.00973780826, 0.00850450341, 0.00254983781, 0.013611746, 0.0365905501, 0.0131577691, -0.00631028134, 0.00751332054, 0.00367153948, 0.0102220504, -0.00141489517, -0.0127870208, -0.0125222011, 0.00859529898, 0.0140127586, -0.00851207, 0.00103941828, 0.0425527841, -0.00243256055, 0.000360580743, 0.0109332809, -0.010169086, -0.0170998033, 0.00413875747, -0.00388528709, -0.00123897905, -0.0309763681, -0.00193223986, 0.00409714319, 0.0208224151, 0.0067529087, 0.00817158725, -0.0079219, 0.0058487379, 0.0106003648, -0.0159043297, -0.00687018642, 0.00760789914, 0.00531531498, -0.00369802164, -0.000823306327, 0.026739249, 0.00623083534, -0.0149509786, 0.00113872578, -0.0131502021, -0.00514885643, -0.00472514471, -0.0132258656, -0.00577307492, -0.000445937883, 0.00292815221, -0.000772706815, -0.0037926, 0.00122668385, -0.00863313, -0.00527748326, 0.00620435318, -0.00927626435, 0.0185222644, -0.00138368423, -0.000877689, -0.00151704007, -0.0152763287, 0.0188551806, -0.00103090622, 0.00984373596, -0.0103733763, -0.0167063568, 0.0177353714, -0.0135285165, -0.0295690391, 0.0208980776, -0.0200657863, -0.00916277058, -1.47852879e-05, 0.0170392729, -0.0103733763, 0.0156319439, 0.0015359557, 0.00407066103, 0.00754358573, -0.0278439261, -0.00719931955, 0.0253016558, -0.0105549665, 0.00707825925, 0.0138009032, -0.00251578959, -0.00885255262, 0.0242726412, -0.00148015446, -0.0154730519, -0.00809592474, -0.00874662492, 0.0215639099, 0.0148980143, 0.00710852444, 1.67138041e-05, 0.00664319796, -0.00520938681, 0.0111754024, -0.00413875747, 0.00263117533, -0.0153822564, -0.0117655722, -0.0196723398, -0.00734686246, -0.0128778163, -0.0119622955, 0.0155562805, 0.0143305426, -0.0246509556, 0.0288275443, -0.0140959881, -0.00319675519, 0.00235122279, -0.00814888813, -0.0290545318, 0.00228123483, -0.0208678134, -0.00979077257, -0.00442627631, -0.0378919542, 0.0103431111, -0.00268413941, 0.00735821156, 0.014701291, 0.000395338371, 0.00548555609, 0.0275866725, 0.0113267275, 0.0426738448, 0.00720310304, 0.00362046715, 0.0156622082, -0.00574280974, 0.0172965266, 0.0178564321, 0.0155714136, -0.00634054653, -0.0148072187, -0.0191124342, -0.00369045534, -0.00404417887, -0.00395338377, -0.00505427783, 0.000288701034, -0.00572389411, -0.00604546117, -0.00108670758, 0.00140732888, 0.00877689, -0.0245147627, 0.0232284926, 0.0103128459, -0.0237883981, -0.00878445618, -0.00408957666, 0.0236522052, -0.013914397, 0.00246850029, 0.0129610449, -0.00533423061, -0.00728633208, 0.00765708, -0.00982860383, -0.0019710171, -0.00957135, -0.0127491895, -0.00115291262, -0.0101463879, -0.0105776656, -0.0197328702, -0.0161161851, -0.0137403728, 0.0104868701, -0.00153690157, 0.00711230747, 0.00179131783, 0.0185827948, 0.0202625096, 0.0140808551, -0.00263685, -0.00719553651, 0.0255286433, -0.0033083579, -0.0141489524, 0.0113721257, 0.00963944662, -0.0146331945, 0.01392953, 0.0352588855, -0.0235311445, -0.00973024219, -0.00352021377, 0.00315703219, -0.0277682636, 0.00264252489, -0.00489916932, 0.00760789914, -0.0237278678, -0.0218665618, 0.0177202374, 0.00458138529, 0.00524721807, 0.0111754024, -0.0292815212, -0.020640824, 0.00109900278, -0.00233419868, 0.00187738438, 0.00289221224, -0.000676236697, -0.00788406841, 0.0269359723, 0.0122271162, -0.033019267, -0.023304157, -0.0115385838, -0.00200695707, 0.0159194618, -0.00498996442, 0.0409789979, -0.0141943498, -0.00784623716, 0.0208980776, 0.0195361469, -0.0158438, -0.0143683739, 0.00923843309, 0.00848180521, 0.0357431285, -0.00582982227, -0.001349636, 0.0134831192, 0.0183860715, 0.00488781976, -0.00101577374, -0.008913083, -0.00738469372, 0.0135663478, -0.0260885488, -0.015336859, -0.00424090261, -0.0126281288, 0.0123254778, 0.00645782379, -0.00514129037, -0.0181742162, 0.0216244403, 0.00454355404, 0.00105265935, 0.0104036415, -0.00763816433, -0.0192486271, 0.0104944361, -0.0180985518, -0.00307002, -0.000240702429, -0.00500509702, 0.01313507, 0.00918547, -0.0194756165, -0.00890551694, 0.0165701639, -0.00760033261, 0.00346725, 0.0105171353, -0.00178091426, 0.0317481309, -0.0126281288, -0.00117371988, 0.00878445618, 0.00265009119, -0.00402148, 0.0251049325, 0.0156319439, 0.0165398978, 0.010320412, -0.0115310177, -0.0136571433, 0.00548177306, 0.0033310568, 0.023621941, -0.00179982989, -0.0166609585, -0.00303975469, 0.00966971181, -0.00867096242, 0.00771382684, 0.015019075, 0.0120682241, -0.00680965604, -0.00227745157, -0.00544015877, -0.0214125849, 0.0186130591, 0.0120682241, 0.00879958924, -0.00657888455, -0.00930653, 0.0230923, 0.015783269, 0.00491051842, -0.0071463557, 0.00277871802, 0.0131123709, 0.0138614336, 0.00665833056, -0.0102144843, -0.0114477882, -0.0105776656, 0.00230204198, -0.00573524367, 0.00439222809, -0.0294479784, -0.0136798425, -0.0102296164, 0.00885255262, -0.0123406099, 0.0039571668, -0.00254794629, 0.00354102114, -0.00741874194, 0.00230771676, 0.00736577809, -0.00612869067, 0.00935949385, -0.00770626077, -0.0127189243, 0.010797088, 0.00967727788, -0.00572767714, -0.00245904247, -0.0153444251, -0.0024855244, 0.0187341198, 0.0061476063, 0.0338666886, 0.00953351893, 0.0115991142, 0.0102977129, 0.00836074445, 0.00786136929, 0.0139900604, -0.0180228893, -0.00780083938, 0.0162069816, -0.021730369, -0.00945028942, 0.0201717149, -0.0186887234, 0.00824725, 0.00115575, 0.022532396, -0.00544015877, 0.00530774845, 0.0216849707, 0.0213520546, 0.00029366641, -0.0132182986, -0.00925356615, 0.0247417502, 0.0048499885, -0.0185525287, 0.000690423476, 0.0075398027, -0.0336548351, 0.0161767155, -0.00913250539, -0.0233192891, -0.00806566, 0.00682857167, -0.0274504796, -0.00221313816, -0.0133090941, 0.0179320946, 0.0078386711, 0.000721634366, 0.0224567316, -0.00408957666, 0.00432413165, -0.0259220898, 0.00152555213, -0.019717738, 0.00345400884, 0.00689666811, 0.000546664058, 0.0148980143, 0.0224264674, -0.0100328932, -0.00471757818, 0.0116974758, -0.0142624462, 0.00892064907, 0.0123103447, 0.00828508195, 0.00247606658, 0.0075360192, -0.00368288904, -0.00253659696, -0.0304769948, 0.00343320169, -0.0107138585, 0.0292663891, -0.00701772887, -0.014542399, -0.00836074445, -0.0177959017, 0.0306888502, 0.0238337964, 0.00105265935, -0.0012503285, -0.00106117141, -0.00786136929, 0.0129913101, 0.0182347465, 0.0101312548, 0.00795973092, 0.0111375712, -0.012196851, 0.00272007938, -0.00768356211, -0.0161161851, -0.00599249732, -0.00468353, 0.00737334415, 0.0111375712, 0.0242726412, -0.00901144464, -0.0180380214, -0.008913083, -0.00447924063, -0.0161313191, -0.00469866255, 0.0099193994, -0.00115764153, 0.00591305131, 0.0299473535, -0.000405742, 0.00420307089, -0.00525856763, 0.0207316186, -0.0052737, 0.035198357, 0.0099193994, 0.0119395973, 0.0162221137, 0.013452854, 0.0270419, -0.0113267275, 0.0114553543, -0.00345211732, 0.0186735895, -0.0101388209, -0.000741023, 0.00519803725, -0.000129454405, -0.00829264801, 0.0032837675, 0.00772895943, -0.0110619077, 0.0116899097, -0.0217001047, 0.0182347465, -0.00937462691, -0.0179472268, -0.0173419248, 0.00758141698, 0.0245752912, -0.012204417, -0.0140278917, -0.00569362892, 0.0199144613, 0.00322512886, -0.032353431, 0.013755505, -0.0214277171, -0.0162372459, 3.93683258e-05, 0.0271478295, 0.00705177709, -0.00277871802, 0.000732983812, -0.0128702503, 0.00697989762, 0.00997236278, 0.0120833563, -0.00751710357, -0.00573524367, 0.0207164865, 0.0170998033, 0.00553473691, 0.00488025369, -0.020640824, -0.000932544586, -0.00820941851, -0.00106779195, 0.0142775793, -0.004623, -0.0061476063, 0.00635567913, 0.00505806133, 0.0168576818, -0.008913083, -0.0110846069, -0.00668481225, -0.0084288409, -0.0117050419, -1.29823848e-05, -0.00467218086, -0.0252865236, 0.0220784172, 0.0105549665, -0.0275866725, 0.00697611412, 0.00996479671, 0.00565579766, -0.00929139741, -0.010010194, -0.000581658096, 0.0213671867, 0.00904171, 0.0233344212, -0.004846205, -0.00394960074, 0.00137422641, 0.00196534232, 0.0027843928, -0.00487647, 0.00408201059, -0.0298262928, -0.0138841318, 0.00190197479, -0.00768734515, 0.0052737, -0.00587522, -0.00946542155, -0.0090190107, -0.00228501786, -0.0155260162, -0.0197782684, 0.0104263397, 0.00820941851, 0.00119925605, 0.0249536056, -0.0164491031, 0.0230923, -0.00476297596, 0.00328944228, -0.00450193929, -0.0143759409, 0.0149509786, 0.0197934, 0.000786893594, 0.00967727788, 0.00409335969, 0.00388150406, -0.00960161537, -0.00971510913, 0.00421820348, -0.0108500523, 0.00570119545, -0.00266900682, 0.00449058972, -0.0254529808, 0.0014044916, -0.0169636104, 0.000124016136, 0.0140278917, -0.000536260428, -0.0113948248, -0.018295275, -0.0119849946, -0.0170392729, 0.0214731153, 0.018764386, 0.00598493125, 0.0152687617, -0.0178412981, -0.00457381876, 0.00370937097, -0.000385171181, 0.0146256275, 0.00415389, 0.0195664112, 0.0026898142, 0.000687586085, 0.0236824714, 0.00868609454, -0.0235614106, 0.0090265777, -0.000393683236, 0.00338780391, 0.00136949751, 0.00119168987, -0.0103506772, 0.018492, 0.0137403728, -0.00923086703, -0.0134831192, -0.00543637527, 0.00361479237, 0.00089045713, 0.00824725, -0.0215790439, -0.0304921269, -0.0128702503, 0.00254983781, -0.0233344212, -0.0158589315, -0.0157681368, 0.00144421461, 0.00739982631, 0.0307342485, -0.0199901238, 0.0101085557, 0.00153973885, -0.00801269524, 0.00217719842, 0.000789730926, 0.0105398344, 0.0096167475, 0.0119017651, 0.00997236278, -0.0167063568, 0.0129534788, -0.012983744, 0.00766086299, -0.0122195492, 8.50024808e-05, 0.00369802164, -0.000980779645, 0.00600006338, -0.0129232137, 0.00028680946, 0.0118715, 0.00203722203, -0.0015359557, 0.000488971127, -0.010017761, -0.0251351967, -0.000241411763, 0.00368856359, -0.0154352207, -0.00954108499, -0.0140127586, 0.0109938113, -0.00150947378, 0.0124843698, 0.00670751138, 0.0146937249, 0.00525100157, 0.0123935742, -0.0247720163, -0.000110420464, -0.00661671581, -0.00378125068, -0.00218098145, -0.000120055658, -0.00235689757, 0.0166912228, 0.00692315027, -0.0115991142, 0.0168576818, -0.0050391457, 0.00290545332, -0.0090190107, -0.00115858729, -0.00769869424, 0.00772895943, -0.00368667208, 0.0259220898, -0.0264063329, 0.004146324, -0.0105020031, 0.000628001639, 0.00863313, 0.00931409653, -0.0026898142, 0.00603411207, 0.00344076776, 0.00285438076, -0.0137025416, 0.00316270697, 0.0080278283, 0.00951838586, 0.0133317932, 0.0143683739, 0.0286459532, 0.00332727353, -0.0139446622, 0.0129459128, -0.0160707887, 0.0128021538, 0.00113399688, 0.00669616181, -0.0174629837, -0.02285018, -0.0105852317, -0.00805052649, 0.0236976035, -0.013763071, 0.0127189243, -0.0205348954, -0.0207316186, -0.000540989335, -0.0159648601, -0.00821698457, 0.0185827948, 0.0224113353, -0.000205708362, -0.0180985518, 0.0113267275, -0.0162221137, 0.00759654958, 0.0161161851, 0.00410849229, 0.0170392729, 0.0037604433, 0.0014243531, 0.00539476098, -0.00688153552, -0.0053644958, 0.0346838497, 0.0227139853, 0.00796729792, 0.00185563124, 0.000739131414, -0.0115158847, 0.000115681396, -0.0568379276, 0.00489538629, 0.0304315966, 0.0364997573, -0.00108670758, 0.011568849, -0.0130594075, -0.0269813705, 0.00109616551, -0.00162958854, -0.00508832652, 0.00517533859, -0.00986643508, 0.0161918495, -0.00469109649, 0.0142473141, 0.0180985518, 0.0208829455, 0.0132788289, -0.0113645596, 0.00752467, -0.0215941761, 0.00577685842, 0.00262171752, -0.0166912228, 0.00600384688, -0.000377841323, -0.0121211875, -0.00399499806, -0.0048499885, -0.00506941043, 0.0346838497, 0.020958608, -0.0151325688, 0.00786893629, -0.00810349081, -0.0107516907, -0.0214579832, 0.00202965573, -0.0125297671, 0.0026898142, 0.0035050814, -0.0172057301, -0.0147315562, 0.0161161851, -0.00404039584, 0.0195966773, 0.00806566, -0.00938219298, 0.0302651376, -0.0124238394, 0.0202927757, -0.0306585841, -0.0158286672, -0.00381908217, -0.00970754307, -0.00926113222, 0.00516777253, 0.0304013304, 0.00475541, -0.0127340565, -0.0280406512, -0.00452085491, 9.98986e-05, 0.00769112818, 0.0118563678, 6.70325535e-05, 0.00236257236, 0.0125448992, -0.0265576579, -0.0300986804, 0.01360418, 0.000258199463, 0.0127340565, 0.00649943855, -0.00391555205, -0.00489538629, -0.0204138365, 0.00640864298, -0.0172057301, -0.00526613416, -0.000589697273, 0.0110467756, 0.00636702823, 0.0175235141, -0.0126054296, -0.00336510502, 0.0142548801, -0.00437709549, 0.00711230747, 0.0066318484, 0.0196572077, 0.00445275847, -0.000831818383, 0.00574659323, 0.00911737327, -0.012045525, 0.024242375, 0.00914763752, 0.0106911603, 0.0157227386, 0.0206559561, 0.012363309, -0.00474784337, 0.0183406733, -0.00415010704, -0.0381946042, 0.0121060554, -0.00280141691, 0.0102447495, -0.00246471725, 0.010940847, 0.00756250136, -0.020489499, 0.0101085557, 0.0174478516, 0.00795973092, -0.00826238282, -0.00654861936, 0.010479304, -0.0146558927, -0.0242877733, 0.0109030157, -0.010781955, -0.000706974708, 0.00380016631, 0.0100782914, -0.0033707798, -0.0231679622, -0.00600763, 0.00225475268, 0.0191729646, 0.0062270523, -0.00234365673, -0.0127416234, -0.0177051052, -0.0126962252, 0.000584495487, 0.00508832652, 0.000474075, 0.00668102922, -0.00800512917, 0.00780083938, -0.0285854228, 0.00502022961, 0.00931409653, -0.0139446622, -0.00623461837, -0.0164339691, -0.00450193929, -0.00149434118, -0.0179472268, 0.000729673542, 0.00556878559, -0.0151930992, 0.000542880909, 0.0231074337, 0.0119017651, 0.0258615613, -0.00638216082, 0.0132712629, 0.0209888723, -0.0215033814, -0.00104320142, -0.00354669592, -0.00268035638, 0.00631406438, -0.0177807678, -0.0166760907, -0.000969430199, -0.00189062534, -0.00369802164, -0.0104944361, -0.0177353714, 0.0178564321, -0.00356182852, -0.0142246149, -0.000682857179, -0.00781597197, 0.00115858729, 0.00103279785, 0.0112813301, -0.0135285165, -0.000236446387, 0.0232738908, -0.00950325374, -0.00427495083, -0.00994966365, -0.0114023909, 0.0131502021, 0.00420685438, 0.00680587301, 0.0240002535, -0.0058487379, -0.00488403672, 0.0164491031, 0.00234933128, 0.0100631583, 0.00363370823, -0.00907954108, -0.00316838152, -0.0134074558, 9.07363e-06, -0.00522830244, -0.015336859, -0.00318351411, -0.0130972387, -0.00522451941, 0.00389663642, -0.0146331945, 0.00250254851, -0.0110770408, 0.0157378726, 0.0031116344, 0.00410849229, -0.0252411254, -0.0426435806, -0.000551865902, 0.0338061601, 0.00559905032, 0.019717738, 0.00757006742, 0.0252259932, 0.0019861497, 0.0365602858, -0.00379070849, 0.0199447256, 0.00626488356, -0.01690308, 0.00606059376, 0.00506941043, -0.0105095692, -0.00384745561, -0.00632541394, -0.0078311041, 0.00818671938, -0.00158135348, 0.0261339471, -0.0105171353, 0.00777057419, 0.014073289, 0.0274656136, -0.00550447218, 0.00842127483, 0.0127189243, 0.0177505035, 0.0165701639, -0.0076192487, 0.00372450356, -0.0314454772, 0.00575037627, -0.00263685, -0.00360344304, 0.015329292, 0.0131956, -0.00686640339, -0.00342374365, 0.00298868236, 0.00146029296, 0.0298868231, 0.00823211763, 0.00238527125, -0.0137479389, -0.0119320303, 0.00688153552, -0.0210040063, 0.000321803527, -0.0168274175, -0.00513750734, -0.0135436496, -0.00307569467, -0.00604167813, -0.0149282794, -0.0052737, -0.012189284, -0.00404796237, 0.00541745964, 0.00313055026, -0.013142636, -0.0013723349, -0.0200052559, -0.0124541046, 0.00300003169, -0.0201263167, -0.0122422483, -0.00826238282, -0.0142397471, -0.0177505035, -0.0210191384, -0.000759938674, 0.0349562354, -0.00108197867, -0.010017761, -0.0154427867, -0.0606513359, -0.00170430553, 0.0117958374, -0.0205651615, 0.015336859, 0.00580712315, 0.0373774469, 0.0105247013, 0.0041614566, -0.00864069723, -0.00710474094, -0.014549965, -0.0122876456, -0.0177353714, 0.0101388209, -0.0064426912, -0.0121817179, 0.025816163, -0.00623461837, -0.00815645512, 0.0188703127, -0.0193394236, -0.00470622908, -0.0266333222, -0.00905684289, -0.0261339471, -0.00822455157, 0.00423333608, -0.00447545713, -0.00197480037, 0.00627623312, -0.0120228259, 0.012514635, 0.0157530047, -0.00082614366, -0.00550825521, -0.0190519039, -0.00509589259, 0.00714257266, 0.00976807345, 0.00877689, 0.00660914928, -0.00817158725, -0.0206559561, 0.00361479237, -0.033019267, -0.0105020031, 0.00248174137, -0.0184012037, -0.0108954497, -0.0108273532, -0.0135360826, 0.00160405226, -0.000918830687, 0.0178564321, -0.00699124672, -0.00408201059, 0.0056104, 0.0130215753, -0.0104490388, -0.0107743889, -0.0166609585, -0.0161161851, -0.00996479671, 0.0266030561, -0.00829264801, 0.00506941043, -0.0165247656, -0.00688153552, -0.0247266181, -0.0243937019, -0.000110479574, -0.0242575072, -0.00362803345, -0.00946542155, -0.000358452729, -0.00124370796, -0.0032837675, 0.0127491895, 0.0851055682, 0.0364997573, 0.00757385092, -0.0272537563, -0.0140051926, -0.00516398903, -0.0276472028, 0.0397078618, -0.0188249163, 0.00811105687, -0.00488025369, -0.000788312289, 0.000630366092, 0.00184901082, -0.0152157983, -0.0110316426, 0.0130064432, -0.0032610686, -0.00951838586, -0.000304070069, -0.0119168982, -0.00547799, 0.00987400115, -0.02533192, -0.00314379111, -0.00181590824, -0.0177202374, 0.0106154969, -0.0186584573, 0.0205651615, -0.0147845196, 0.00709717488, 0.00576929189, -0.0190670379, -0.0500888042, -0.00253092218, -0.0170392729, 0.00985886902, -0.0105852317, -0.0158286672, 0.0154957511, 0.0115612829, -0.00240229536, 0.000100844387, -0.00493700057, 0.00984373596, -0.00166647416, -0.00628758222, -0.000510251324, -0.0197631344, -0.00927626435, 0.00811862294, -0.00332538201, -0.0266030561, 0.00239851209, 0.0122271162, -0.0104641719, -0.0210645366, 0.00424846867, 0.0332008563, -0.00109521963, 0.00871636, 0.00477432553, 0.0185827948, 0.017826166, -0.000135129114, -0.0269208401, 0.00709339185, -0.00864826329, -0.00282979035, -0.00812619, -0.00610220851, -0.0107062925, -0.00482728938, 0.00558770122, 0.00973024219, -0.0120152598, 0.0037282866, 0.00971510913, -0.0278741922, -0.00213936693, 0.00235311454, -0.0233192891, -0.0138916988, 0.00367910578, -0.0191880967, -0.00430143252, -0.0062270523, -0.0115461498, 0.00314000808, 0.00869366061, 0.000418983, -0.00945785549, 0.0167668872, 0.0203987025, 0.00394203421, -0.00726741645, 0.000688531902, 0.00136287697, -0.0112964632, 0.0300684143, 0.0140127586, -0.0112510649, 0.0148980143, -0.00502022961, 0.0117428731, -0.00772895943, -0.0167971514, 0.0186584573, 0.00285438076, 0.0165247656, -0.00505427783, -0.02032304, 0.0218514297, 0.00964701269, 0.00526991719, 0.00722201867, -0.00887525175, 0.0110089444, -0.00771761034, 0.0162221137, -0.00793703273, -0.00587143656, -0.0015756787, -0.0154579189, -0.0179774929, 0.0101993512, -0.0193091575, 0.0200355221, 0.00577685842, 0.0104717379, -0.00705934362, 0.00255362107, 0.0174932498, 0.00927626435, 0.0135814808, -0.0319599845, -0.00187738438, -0.00747170579, 0.0117807053, 0.0119244643, -0.00491430191, 0.000941056642, 0.0341996066, 0.0076192487, 0.0118109705, 0.0101312548, -0.0310217664, 0.0169333443, -0.0155411484, -0.0324139632, 0.0240759179, -0.00431656512, -0.00497483183, -0.010176653, 0.0018717096, -0.023924591, -0.00973024219, 0.0195966773, -0.00504671177, 6.03824956e-05, 0.0017052514, 0.0188249163, 0.0113948248, 0.0185979269, -0.0198236648, 0.0121741518, -0.00374152767, 0.00552338781, 0.00341617735, 0.0103885084, 0.00237581343, -0.0101312548, 0.0079143336, -0.0136949746, -0.0043619629, -0.00647295639, 0.0106003648, 0.0112208, -0.00906440895, -0.00927626435, 0.00287140487, -0.00354858744, 0.0311730914, 0.00137990108, -0.0419474803, -0.00386826298, -0.00182820344, 0.035349682, 0.0238943268, -0.0111602694, -0.0104187736, -0.0111829685, -0.0115612829, -0.00775544159, -0.000855935912, 0.00448302366, 0.00455490313, 0.00155014254, 0.0129913101, 0.0115007525, 0.00250633177, -0.00927626435, 0.020640824, -0.00827751495, 0.0246055573, -0.0204289686, -0.0060378951, 0.0226231907, -0.018915711, 0.0110619077]
03 Mar, 2025
Search an element in a sorted and rotated array with duplicates 03 Mar, 2025 Try it on GfG Practice Given a sorted and rotated array arr[] and a key, the task is to find whether key exists in the rotated array (with duplicates). Examples: Input: arr[] = [3, 3, 3, 1, 2, 3], key = 3 Output: trueExplanation: arr[0] = 3 Input: arr[] = {3, 3, 3, 1, 2, 3}, key = 11 Output: falseExplanation: 11 is not present in the given array. Approach – Using Binary SearchThe idea is to use binary search, but adapt it for the rotated, sorted array with duplicates. When we examine the middle element, we determine which half of the array is definitely sorted. If the left half is sorted (arr[left] <= arr[mid]), we check if our target is within that sorted range; otherwise, it must be in the right half. Similarly, if the right half is sorted, we check if our target falls within its range. The key challenge comes with duplicates – when arr[left] = arr[mid] = arr[right], we can’t determine which half might contain our target, so we must incrementally shrink our search space by moving both pointers inward. C++ // C++ program to search an element in // a rotated sorted array with duplicates #include <bits/stdc++.h> using namespace std; bool search(vector<int>& arr, int key) { int l = 0; int r = arr.size() - 1; while (l <= r) { int mid = l + (r - l) / 2; // Found key if (arr[mid] == key) return true; // Handle duplicates if (arr[l] == arr[mid] && arr[mid] == arr[r]) { l++; r--; continue; } // Left half is sorted if (arr[l] <= arr[mid]) { // Check if key is in left half if (arr[l] <= key && key < arr[mid]) r = mid - 1; else l = mid + 1; } // Right half is sorted else { // Check if key is in right half if (arr[mid] < key && key <= arr[r]) l = mid + 1; else r = mid - 1; } } return false; } int main() { vector<int> arr = {3, 3, 3, 1, 2, 3}; int key = 3; if(search(arr, key)) cout<<"true"<<endl; else cout<<"false"<<endl; return 0; } Java // Java program to search an element in // a rotated sorted array with duplicates import java.util.*; class GfG { static boolean search(int[] arr, int key) { int l = 0; int r = arr.length - 1; while (l <= r) { int mid = l + (r - l) / 2; // Found key if (arr[mid] == key) return true; // Handle duplicates if (arr[l] == arr[mid] && arr[mid] == arr[r]) { l++; r--; continue; } // Left half is sorted if (arr[l] <= arr[mid]) { // Check if key is in left half if (arr[l] <= key && key < arr[mid]) r = mid - 1; else l = mid + 1; } // Right half is sorted else { // Check if key is in right half if (arr[mid] < key && key <= arr[r]) l = mid + 1; else r = mid - 1; } } return false; } public static void main(String[] args) { int[] arr = {3, 3, 3, 1, 2, 3}; int key = 3; System.out.println(search(arr, key)); } } Python # Python program to search an element # in a rotated sorted array with duplicates def search(arr, key): l = 0 r = len(arr) - 1 while l <= r: mid = l + (r - l) // 2 # Found key if arr[mid] == key: return True # Handle duplicates if arr[l] == arr[mid] and arr[mid] == arr[r]: l += 1 r -= 1 continue # Left half is sorted if arr[l] <= arr[mid]: # Check if key is in left half if arr[l] <= key < arr[mid]: r = mid - 1 else: l = mid + 1 # Right half is sorted else: # Check if key is in right half if arr[mid] < key <= arr[r]: l = mid + 1 else: r = mid - 1 return False if __name__ == "__main__": arr = [3, 3, 3, 1, 2, 3] key = 3 print(search(arr, key)) C# // C# program to search an element in a rotated sorted array with duplicates using System; class GfG { static bool search(int[] arr, int key) { int l = 0; int r = arr.Length - 1; while (l <= r) { int mid = l + (r - l) / 2; // Found key if (arr[mid] == key) return true; // Handle duplicates if (arr[l] == arr[mid] && arr[mid] == arr[r]) { l++; r--; continue; } // Left half is sorted if (arr[l] <= arr[mid]) { // Check if key is in left half if (arr[l] <= key && key < arr[mid]) r = mid - 1; else l = mid + 1; } // Right half is sorted else { // Check if key is in right half if (arr[mid] < key && key <= arr[r]) l = mid + 1; else r = mid - 1; } } return false; } static void Main() { int[] arr = {3, 3, 3, 1, 2, 3}; int key = 3; Console.WriteLine(search(arr, key)); } } JavaScript // JavaScript program to search an element in a rotated sorted array with duplicates function search(arr, key) { let l = 0; let r = arr.length - 1; while (l <= r) { let mid = l + Math.floor((r - l) / 2); // Found key if (arr[mid] === key) return true; // Handle duplicates if (arr[l] === arr[mid] && arr[mid] === arr[r]) { l++; r--; continue; } // Left half is sorted if (arr[l] <= arr[mid]) { // Check if key is in left half if (arr[l] <= key && key < arr[mid]) r = mid - 1; else l = mid + 1; } // Right half is sorted else { // Check if key is in right half if (arr[mid] < key && key <= arr[r]) l = mid + 1; else r = mid - 1; } } return false; } let arr = [3, 3, 3, 1, 2, 3]; let key = 3; console.log(search(arr, key)); Outputtrue Time Complexity: O(n), Its time complexity is O(log n) for most cases but can degrade to O(n) in the worst case when the array contains many duplicates.Auxiliary Space: O(1)
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Find the Peak Element in a 2D Array/Matrix/Search an element in a sorted and rotated array with duplicates
https://www.geeksforgeeks.org/search-an-element-in-a-sorted-and-rotated-array-with-duplicates/?ref=next_article
Data Science & ML
Search an element in a sorted and rotated array with duplicates
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Find the Peak Element in a 2D Array, Search an element in a sorted and rotated array with duplicates, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Matrix, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.00105375273, -0.0213715248, -0.0133668697, 0.0174400918, -0.0288992506, 0.00440513762, -0.00990592, 0.0187677555, -0.0389276259, 0.0166666955, -0.0293375086, 0.0166924745, 0.0195669327, -0.024478, -0.00963523146, 0.0279196147, 0.0127739329, 0.0210234951, -0.0258958936, -0.0324826539, -0.0307811815, -0.0207785871, -0.0540861972, 0.0343388058, -0.0265017208, 0.010647092, -0.0114591587, 0.0225445088, -0.0163315572, -0.00612916751, 0.0074697216, 0.0235241447, 0.00474672113, -0.0149523327, -0.0310905408, 0.0187677555, -0.0120069813, 0.021487534, -0.00331593771, -0.0271977782, -0.02451667, -0.0119747566, -0.0148105435, -0.0231890064, -0.0170018338, 0.0308327414, 0.0300335661, 0.00984791573, 0.0014871771, 0.00188998773, 0.00410222402, 0.0150296725, 0.00625484437, 0.0346223861, 0.00321281818, 0.0089262845, -0.0257412139, 0.0171307325, -0.0214746445, -0.0366332158, 0.0234725848, -0.0160221979, 0.00932587311, -0.0219902415, 0.0219386816, -0.00989303086, -0.0434648842, -0.00112061936, -0.0100348201, 0.0193864722, -0.0290023703, 0.025225617, 0.00147267594, -0.0139855873, -0.0228023082, -0.00576502644, -0.00399588188, 0.0212555155, -0.0221707, -0.0112786992, -0.0197602808, 0.016653806, -0.0393916629, -0.0368652344, 0.0209074859, -0.00581658632, -0.00969968177, -0.0373292714, 0.00696056895, 0.0459139757, -0.0169244949, -0.0334365107, 0.0219129, 0.0165249053, 0.00591648323, 0.044006262, 0.00850091688, -0.00534932595, -0.0325857736, 0.0683166906, 0.00600671303, 0.00429235073, -0.00617428217, 0.0227765273, -0.00714747282, 0.0158675183, -0.0243362114, 0.0347255059, 0.0535190403, 0.0265790615, 0.0135215493, -0.0180072486, -0.0104537429, 0.00681877928, -0.00180942565, -0.0117749618, 0.0140371472, -0.0427688286, -0.000481761585, -0.00214295299, 0.0153261414, 0.0221707, -0.000248332799, 0.0364011973, -0.0424336903, 0.00536543829, -0.00642241351, 0.00875871535, -3.8695e-05, -0.0206239074, 0.00841068756, -0.0201340895, -0.0033127151, -0.00220579142, -0.0104988581, 0.0376901925, 0.00887472555, 0.0533643588, -0.00600026827, -0.00409255642, -0.0164733455, -0.0497551784, -0.0353957824, 0.0251869466, 0.0135086598, 0.0249162577, -0.0327920131, 0.0233565755, -0.0414024927, 0.0205723476, -0.0268626399, -0.0285125524, 0.0208688155, -0.00775974523, 0.0239366218, -0.0226347391, 0.0083204573, -0.01802014, 0.015751509, -0.0226605181, 0.0309100822, -0.0155839399, 0.0357824787, -0.0125225792, -0.0265790615, 0.0358598195, -0.0152359121, -0.0589843765, -0.0228796471, 0.0366589949, -0.0058584786, -0.0150296725, 0.0223124903, 0.0451921374, -0.0596030913, 0.0191286746, 0.0310905408, -0.00601315824, -0.009963925, -0.0460170917, 0.00642563635, -0.0464553498, -0.00444058515, -0.00194638129, 0.0245682299, 0.0080175437, 0.0185228474, -0.0163186677, -0.00863626134, 0.0164217856, -0.0302655846, -0.0265017208, 0.0202629883, 0.0437742434, 0.000766951533, -0.0157386195, -0.0528487638, -0.0077017406, -0.0181619283, 0.0399588197, 0.00428268313, -0.0230601057, 0.00168213749, -0.00153712556, 0.0261150226, 0.0167698152, -0.011426934, -0.0368910134, 0.0185099561, -0.0158546288, -0.025444746, 0.0477443449, -0.0419954322, -0.0087522706, 0.0183037184, 0.0197473913, 0.00804332364, 0.0406548791, -0.0413509347, -0.00136311143, -0.00600349065, 0.00768885063, 0.0673370585, 0.00349639682, -0.0253029559, -0.0308069624, 0.0211523958, 0.0433102064, -0.00633862894, -0.0429235063, 0.0159835275, 0.00226540724, -0.0309100822, -0.00692189904, -0.00342872459, -0.0451921374, -0.0161253177, -0.0271719974, 0.0221062507, 0.0329209119, -0.00792731438, 0.0328435712, -0.0210363865, -0.000530904508, 0.0274813566, -0.0235499237, -0.0105826426, -0.0168342646, 0.0323537551, 0.0333076119, 0.0269657597, 0.0183294974, -0.0366332158, -0.0230472162, -0.00890695, 0.0119876461, -0.0135215493, 0.0468678288, -0.00607438525, 0.00872649066, 0.0100928247, 0.0124967992, 0.000234838633, 0.0171307325, 0.0306265019, -0.00789509, 0.0247873589, -0.0242202021, -0.0112464745, -0.0341067873, 0.0214101933, -0.00769529538, -0.0142562762, -0.00610983279, 0.00737949181, -0.0128383823, -0.0347770639, -0.0245295595, 0.039778363, -0.0122067751, 0.0241557509, 0.0086233709, 0.00128577172, -0.00233630207, 0.00894562, -0.005787584, 0.0216679927, 0.0149394432, -0.0366332158, 0.0133410897, -0.00553945266, -0.0317866, -0.0298788864, -0.0285383314, 0.0355246812, 0.00376708549, -0.00112384185, -0.0443414, -0.0514824279, -0.0181490388, 0.0120972106, -0.0225960687, 0.0140113672, 0.00685744919, 0.00930653792, -0.0289508104, -0.0358856, -0.0177881196, -0.0108082164, -0.027300898, 0.00309680868, -0.0295179673, -0.0220933612, -0.01553238, -0.00718614273, 0.021784002, 0.0347770639, 0.0200051907, 0.0246326793, -0.00237819436, 0.00943543762, -0.0213328544, -0.00794020481, 0.0409384556, 0.0297242068, -0.0104859676, -0.0112980343, 0.037973769, -0.0186517462, -0.0159964189, 0.00243297662, 0.0239881817, -0.0418923125, 0.01553238, 0.00156935048, -0.0371745937, -0.0101379398, 0.0127159283, 0.00566835189, 0.00687678391, 0.00431490829, 0.0362723, 0.0244908892, -0.0018303718, 0.0078757545, 0.00277617131, -0.0266306214, -0.0162799973, 0.0132121909, -0.0178396795, 0.000996553688, 0.0123098949, 0.000327283691, -0.0211137254, 0.0162671078, -0.0122518903, -0.0469451696, -0.0434391052, 0.0233823545, 0.0138309076, 0.0123872347, 0.0214230847, -0.0413251556, 0.0270430986, -0.000641274615, 0.0131219607, -0.0492138, 0.0168471541, -0.0271977782, -0.00340938964, -0.0193220228, 0.00930653792, -0.0149007728, -0.0173240826, -0.0497551784, -0.010427963, 0.0156483892, -0.0280485135, 0.0227636378, -0.00328371278, -0.0178396795, 0.0199536309, -0.00204305584, -0.0266564, -0.00435035536, 0.00462748902, -0.000505527423, 0.00447603222, -0.0405517593, 0.0342099071, -0.00103280658, 0.00528165372, -0.0186130758, 0.0150038926, 0.0208817068, 0.00329015777, 0.0306265019, 0.0103248432, 0.000291634933, -0.0093129836, 0.0354731195, -0.0158288497, 0.0145398546, -0.030574942, -0.0104859676, 0.0229956564, -0.0125870286, -0.037535511, 0.0375097319, 0.00438902527, 0.0103764031, 0.0523847267, -0.0512246303, 0.0322764143, 0.00354795647, 0.0281516332, -0.000510361162, 0.0342614651, 0.00853314158, -0.0236014836, -0.0377417505, 0.00463393424, 0.00997681543, 0.0274813566, -0.0491364598, -0.021075055, 0.0116073927, 0.0113624837, 0.0327662341, -0.0492138, -0.0262181424, -0.00272461143, 0.0287703518, 0.00235402561, -0.0446765386, -0.00978346635, 0.028254753, -0.0174658708, -0.0331271514, -0.0253545158, 0.0124903535, 0.0853829756, -0.0170405041, -0.0208043661, 0.0219000112, 0.0053428812, -0.0241686422, 0.00561356964, -0.00126724248, 0.0235499237, -0.00727637252, 0.011942531, 0.000561920926, 0.000613883487, 0.0292343888, -0.0239624027, 0.0225702878, -0.00018438659, 0.00017502124, 0.0265790615, 0.0267079603, -0.00603893772, -0.000845096831, -0.0111046853, 0.0296726469, 0.0287961308, -0.000883766683, -0.0138824675, -0.0205723476, -0.00590681611, 0.00618072739, -0.028693011, 0.00275039137, 0.0238463935, 0.056921985, -0.00950633269, 0.010743767, -0.0261665825, -0.00159432471, -0.022441389, -0.00278745, -0.0136117786, -0.00866204128, -0.0174529813, 0.0162026566, -0.0155839399, 0.0625935569, -0.0432586446, -0.0263083726, -0.00192221266, -0.0011423711, -0.00158465724, -0.0794536, -0.0248904787, -0.0108211068, 0.00448247744, -0.0553751923, -0.037999548, -0.00688967388, 0.0311678797, 0.0424336903, -0.0662543, -0.0348028429, 0.0127997128, -0.0119683109, -0.0397010222, 0.0156483892, 0.0350606441, 0.040293958, -0.0836299434, -0.0346739441, -0.035679359, 0.0040732217, 0.0287703518, -0.0283063129, -0.0107888812, -0.0438773632, -0.00173208595, 0.00307102874, -0.0236014836, 0.0153132509, 0.0233565755, 0.0186904166, 0.0218097828, -0.0141531564, 0.0208945964, -0.00679944456, -0.00155887741, -0.0200954191, -0.000255583378, -0.0428203866, -0.000377433607, -0.000237859713, 0.0279196147, 0.00251353881, -0.0324053131, 0.00518497918, 0.0132895308, 0.0132766403, 0.00179492449, 0.00668343483, 0.0167311449, -0.0205852371, 0.0146558639, -0.012239, 0.00310325366, 0.041711852, -0.0112142498, -0.00182070432, 0.0292859487, 0.0181361493, 0.0214359742, -0.0029695204, -0.0165377967, -0.00907451939, 0.0266306214, -0.0123743443, -0.000408248627, 0.00566512952, 0.00443091756, 0.00439224765, 0.010279729, -0.00341905723, -0.000400998048, 0.0142433858, -0.0229956564, 0.0284867715, -0.000930492708, -0.0391080827, -0.0056844647, 0.0154034812, -0.0153777013, 0.0174272023, -0.00851380639, 0.0051817568, 0.00933231786, 0.000874099205, -0.0205981284, -0.0206239074, -0.00349317421, 0.0173240826, -0.00363174127, 0.00735371187, -0.000338159589, -0.0223511588, -0.0426914878, -0.00745683163, -0.00211556186, -0.0305233821, 0.0211266149, -0.0150812324, 0.0423047915, -0.0123550091, 0.0134442095, -0.0308069624, -0.0172983017, -0.00508830464, -0.00857181195, -0.00557812257, 0.00501096481, 0.0237561632, 0.00910674408, 0.00267788558, -0.000225976793, 0.0104408534, 0.0115300529, -0.00141064299, 0.0184712876, -0.00166119135, -0.0134442095, -0.050863713, 0.0089714, 0.00901007, -0.0196442716, 0.0110595701, 0.0266048405, -0.0024345878, 0.020636797, -0.0405517593, -0.0375097319, -0.0137793478, -0.0265532807, 0.000480553164, 0.0516113266, -0.00374130579, 0.0324826539, -0.0297499858, -0.0102668386, -0.0150812324, -0.0189353246, 0.014359396, -0.0205465686, -0.0156999491, 0.00791442487, -0.00325309904, 0.00436002295, -0.00267466297, 0.00942254812, -0.0170662832, 0.0309100822, -0.0176592208, 0.0151070124, 0.00929364841, 0.0595515333, -0.0138180181, -0.0118845263, -0.0409642346, -0.0365816541, 0.0102023892, -0.00708302343, -0.0134442095, 0.0269657597, 0.0511472896, 0.0190126654, 0.0205207877, -0.0349317417, 0.0208430365, 0.00541699817, -0.0229698773, -0.0175561011, 0.0181748178, 0.0179428, 0.0148621034, 0.00328371278, -0.000811260717, 0.00599704543, -2.23434057e-07, 0.018265048, 0.00252159499, 0.0257541053, 2.29098587e-05, 0.0110080102, -0.0233952459, -0.0335396305, 0.00868137646, -0.0191286746, -0.0138566876, 0.0138824675, -0.000993331196, -0.0135344388, 0.0294148475, -0.000133128939, 0.015068342, -0.00878449529, -0.0106277578, -0.00270849909, 0.00402488466, 0.00509152701, -0.01802014, -0.0143078361, -0.027764935, -0.00218484527, 0.0247357991, 0.00741171651, 0.00597771071, -0.0140629271, -0.00358018139, 0.00334494, -0.0530034415, 0.0100154849, -0.000358300109, -0.00318059325, 0.00112948113, -0.0165120158, -0.0129543915, 0.0120069813, 0.0041537839, 0.0338747688, 0.00264243805, -0.0222351495, 0.0019850512, -0.0181877092, -0.00404744176, 0.00221868139, 0.00667054486, -0.0286156721, -0.00836557243, -0.0142176058, 0.0103699584, 0.00673499471, -0.000846708077, 0.0322506353, -0.00214295299, -0.0278164949, 0.021758223, 4.00544886e-05, -0.000341382052, -0.0216551032, -0.0127288178, 0.00882961, -0.00619683973, -0.0142176058, 0.00992525555, 0.00497551775, -0.0303429235, 0.0203918889, 0.0325084329, -0.0194380321, -0.0149781127, -0.00658031553, -0.00944832806, -0.03335917, 0.00227346364, 0.0222480409, 0.0233179051, 0.0145140747, -0.00324343168, -0.0108791115, 0.0125870286, 0.0122712245, 0.0193606932, 0.0126514779, 0.0135215493, 0.0101895, 0.00175303209, -0.0202887692, 0.0258056633, 0.00317575946, 0.0193478037, 0.0316577, 0.0119683109, 0.014823433, 0.0020607796, 0.00642885873, -0.0011415655, 0.00605182769, -0.0560454689, 0.0045759296, 0.00852669682, -0.0177881196, -0.0101186046, 0.00788219925, 0.010524638, -0.00101186044, -0.0469451696, 0.001938325, 0.0336685292, 0.0100863799, -0.0310389809, -0.00407966692, 0.018071698, 0.0183166079, 0.00286801206, 0.0209719352, 0.02241561, -0.0116525078, -0.00506897, 0.0112400297, 0.0698634833, -0.00565546192, -0.0239366218, 0.0164217856, 0.00421501091, 0.0298015457, 0.0125934733, -0.00725703733, -0.0152101321, -0.0135988891, -0.0133024203, -0.0339778885, 0.0127417082, -0.0293375086, -0.00903584901, -0.013089736, 0.00823667273, 0.0169760529, 0.00726348255, 0.0316061378, 0.0197473913, 0.00462748902, -0.00985436048, -0.00210911687, -0.0145140747, -0.00299530034, 0.0352411, 0.0228151977, -0.0141918259, -0.00585525623, 0.0279453937, -0.00286156707, 0.00174336473, -0.000369780202, 0.0109177809, -0.00908096414, -0.00146864774, 0.025251396, 0.004505035, -0.0276618153, 0.0418665335, -0.0153132509, 0.0117105125, 0.0368394554, 0.00426657079, 0.0154292611, 0.00332238269, 0.00120279274, 0.00218323385, 0.0109371161, -0.0223124903, 0.0594999716, 0.0121036554, -0.00717325276, -0.0326631144, -0.0143207256, 0.00868137646, -0.00640952354, -0.0369425751, 0.0204047784, 0.0179685801, 0.0415829532, 0.0377933122, -0.00870715547, -0.0181490388, 0.0215648729, -0.0196313821, 0.0238335039, -0.0281774141, -0.0270173196, -0.00940965768, -0.00357373641, -0.0282805339, 0.000607841357, -0.00856536627, 0.0214617532, 0.0151972417, 0.0261021331, -0.00726348255, -0.0231761169, -0.000984469312, -0.00933231786, -0.0204047784, -0.0220804717, 0.0025103162, 0.0266821794, 0.0302655846, 0.00275039137, -0.00534932595, 0.0228796471, -0.00564579479, -0.0173369721, 0.035705138, 0.00651586568, -0.0344934836, -0.0516113266, -0.0136762289, 0.0138824675, -0.0125870286, -0.0420469902, 0.0181619283, -0.0438773632, 0.00330304774, -0.00781775, -0.0123227844, -0.0295437481, 0.0212812945, 0.0193993635, 0.0210621655, -0.00943543762, 0.0109242257, -0.00424723607, 0.00890695, 0.0174787622, 0.0103699584, -0.010672872, 0.00845580176, 0.0351379812, 0.00143400603, 0.0190771148, 0.0139726968, 0.034184128, 0.000139775308, 0.00675433, -0.0077017406, -0.0300335661, -0.00284706592, 0.00928075798, -0.0344161466, -0.0124001242, -0.000355681841, 0.00348672946, 0.00671566, 0.0151714617, -0.0119618662, 0.0385667086, -1.79880153e-05, -0.0175947715, -0.01111113, 0.00862981658, -0.0206754673, -0.00801109895, 0.00351895415, 0.0294921882, -0.00421501091, 0.0166666955, -0.0190513339, -0.00084993057, -0.0138566876, 0.0067672194, -0.0386698246, -0.056509506, 0.00835268293, 0.0414798334, 0.0222738199, -0.00543311052, -0.00132444152, -0.0158804096, -0.0151456818, -0.0164088961, 0.0349575244, 0.0274040177, 0.00262793689, 0.00837846193, 0.024104191, -0.0350348614, 0.00108517206, 0.0346739441, -0.0227765273, -0.0240397416, -0.00903584901, -0.0159835275, -0.000810455123, -0.0180974789, 0.0190384444, -0.00908740889, 0.00528165372, -0.0019769948, 0.0211523958, -0.0359629393, 0.00576824928, 0.00163702271, 0.0139469178, 0.0195798222, -0.00470805122, 0.00876516104, -0.0307811815, 0.0214488637, -0.0148878833, -0.0394432247, -0.0141789364, 0.00842357706, -0.0271719974, 0.00705079827, -0.00017502124, 0.00820444804, 0.0359113775, -0.014552745, -0.0228796471, -0.00139453064, 0.0167311449, 0.00085234741, -0.0239237323, 0.0221449211, -0.0172725227, -0.0153777013, -0.0083075678, 0.0208172575, -0.00795309432, -0.00907451939, -0.0117427371, -0.0245682299, -0.010305509, -0.0193606932, 0.0141273765, -0.0144109549, 0.0169631634, -0.00379931042, 0.012380789, 0.00687033916, 0.0378964283, -0.0200696401, -0.021977352, 0.0145656345, 0.0101314941, 0.0140371472, 0.00719258795, -0.00345772691, -0.0445218608, 0.0331787094, 0.0566126257, 0.011671843, 0.00210589427, -0.0198505111, -0.0164217856, 0.0145656345, 0.0039539896, 0.0111369099, 0.0016756925, -0.00773396529, -0.0163573362, 0.0046081543, 0.0216422137, -0.0133282, 0.00687033916, -0.0023991405, 0.0196313821, -0.0048788432, -0.00451470213, -0.0244006608, 0.0101186046, -0.0206883568, 0.012284115, 0.00881027523, 0.0125805838, -0.00502385478, -0.0160737578, -0.0238206126, 0.0136762289, -0.0110724606, 0.0150812324, 0.00493362546, 0.00783708505, 0.0108211068, 0.0101443846, 0.00922919903, -0.0194251426, -0.021977352, -0.00317253708, -0.00272783404, -0.00738593703, 0.00445347512, -0.0138824675, -0.0137922382, -0.00926142372, 0.0281258542, 0.019708721, 0.00858470146, 0.0132379709, 0.0128383823, -0.00482728332, -0.0074697216, 0.000712572131, -0.0118007418, -0.0124967992, 0.00597126549, 0.0118071875, 0.000511569553, 0.00405066414, -0.0122196656, 0.0146300839, -0.0061388351, 0.00586170098, -0.0222351495, 0.0111369099, 0.027764935, -0.0118587464, -0.0111884698, -0.00739238178, 0.0120778754, 0.0130832912, -0.0289508104, 0.00680588931, -0.00168052618, -0.00908740889, 0.000699682161, -0.00326115545, 0.0074697216, 0.00888117, 0.0619748421, -0.0339005478, -0.00333205, -0.0353442207, 0.00380253303, 0.00415700627, 0.000838651846, 0.00170791731, -0.0129930619, -0.00491429027, 0.0429492891, -0.0303944834, 0.000627981848, 0.00370263588, 0.0259216744, 0.0123872347, 0.0154937105, -0.0015274582, 0.0128319375, -0.0303429235, -0.00137841818, 0.0231761169, 0.0269915387, 0.0121552153, 0.0142433858, 0.0126514779, -0.0117814075, 0.00491751311, 0.00461782189, 0.00719258795, 0.00691545382, 0.00205111201, -0.0242459811, -0.0198376216, -0.0181619283, 0.0217968915, 0.00576180406, 0.0102152787, -0.00856536627, 0.0222609304, -0.0166280251, 0.0135473292, -0.0034673945, 0.00287606823, 0.00212684041, -0.0232147854, -0.00438580289, 0.00344805955, -0.0116331726, 0.00863626134, -0.0114398235, 0.0160093084, -0.00444058515, -0.00108517206, 0.00021812199, 0.00991236512, 0.0218355618, -0.0144625148, 0.0207785871, -0.0144367348, -0.0133539801, -0.0087393811, 0.0232663453, 0.0143465055, 0.00329821394, -0.00598093309, -0.0257927738, -0.00325309904, 0.011233585, -0.00549756037, -0.0324310958, -0.00551367272, 0.0404486395, 0.00623550965, -0.00331593771, -0.00159674161, -0.0101572741, -0.00733437715, -0.0078757545, 0.00257637724, 0.00904873945, 0.0137793478, 0.000963523169, 6.87799256e-05, 0.0174400918, 0.00371230324, -0.0211137254, -0.00931942835, -0.0098028006, -0.0139726968, -0.0122905597, -0.0293632876, -0.0577985, 0.0081786681, 0.00998970494, 0.00968679134, -0.0026311595, 0.0308327414, -0.00599382306, -0.00165313506, -0.00984791573, -0.00389920757, -0.0220933612, -0.00369619089, -0.0120456507, -0.00483695092, 0.00614528, 0.00538799586, 0.00211717305, 0.0230214372, 0.0156097198, 0.0107308766, 0.0196700525, -1.41990768e-05, 0.0109564504, 0.0103377337, 0.0189224351, -0.00211072806, -0.0230472162, 0.0147589836, -0.00127610425, -0.00511730695, -0.0034641719, -0.0195798222, -0.0367878936, -0.0133797601, 0.00678655459, 0.000581255823, 0.02432332, 0.0251482762, -0.0215390939, -0.0179041289, 0.0036188513, -0.0292086098, -0.0104408534, 0.0103635136, 0.00973190647, 0.00462426664, -0.0199536309, 0.0119231967, 0.0118651921, 0.0386956073, -0.00222190376, -0.00387342763, -0.00335460738, -0.0347255059, 0.0405517593, -0.0259990133, 0.0207785871, 0.0159577485, -0.0315803587, 0.0235757045, 0.0131799662, -0.0131799662, 0.0283063129, -0.0331787094, 0.0252385065, 0.0108146612, -0.018239269, 0.0131348511, -0.00563290482, -0.00844291225, 0.0252642874, 0.00634185132, -0.044418741, 0.0210363865, -0.0104215182, -0.00826245267, -0.0383089073, 0.00299852272, 0.0163831171, -0.0230214372, 0.0459655337, 0.011207805, 0.0134957694, 0.0289765894, 0.0136117786, 0.00863626134, 0.0139469178, 0.0146043049, -0.0113624837, 0.011452714, 0.00185776292, -0.00742460648, -0.0349317417, -0.000680750061, -0.00857181195, 0.00786931, 0.0555298701, 0.0113173695, -0.00624839962, -0.00153470878, 0.00192221266, -0.00562001485, -0.0165249053, 0.0251224972, 0.006312849, -0.00763729075, -0.0138437981, 0.0416602939, 0.0331013724, -0.0168342646, -0.0184326172, 0.00101427734, 0.00922919903, 0.00690900907, -0.0253029559, -0.0124130147, 0.0119296415, 0.00845580176, 0.0158933, -0.0244264398, -0.00140742061, -0.00842357706, -0.0237432737, -0.0148105435, -0.0052526514, 0.0394174419, 0.0038057554, -0.00444058515, 0.00968034659, -0.00291634933, 0.00234274706, -0.0147589836, -0.00590037089, -0.0145398546, 0.0104472982, -0.0105375275, 0.000423354039, 0.012967282, -0.0302655846, 0.00856536627, 0.00374130579, 0.0264501609, -0.00292118313, -0.0100992694, 0.0254318565, -0.0275329165, -0.0396236815, 0.0335396305, 0.023885062, -0.0139340274, -0.00959656201, 0.0108726658, 0.0127610425, -7.30094398e-05, -0.0176205505, -0.00776619, -0.0129221668, 0.0147203142, -0.0332560502, -0.029646866, 0.0129157221, -0.00741171651, 0.000451953587, 0.023562815, 0.0128190471, 0.00609372, -0.0211008359, -0.0328951329, 0.0299820062, 0.0219257921, -0.0155968303, 0.0189353246, 0.00747616636, -0.000824553485, -0.0139598073, -0.0194638129, -0.00810777396, 0.0129221668, -0.0138180181, 0.0251482762, -0.0144496253, 0.00970612653, -0.0110917948, -0.0179943591, -0.000592131692, -0.00433746539, 0.0237303842, -0.00861692615, -0.00260860194, 0.0202758797, 0.00936454255, 0.00365107623, -0.00704435352, -0.00375097315, -0.0044566975, 0.0033481624, -0.0129866172, -0.00209461548, -0.0108339963, 0.00864915084, -0.00544277811, -0.0182908271, 0.018045919, 0.0402424, 0.00904873945, 0.00778552517, -0.0345450453, 0.0296726469, -0.0104472982, -0.00047048289, -0.0284867715, 0.0197989512, 0.000589714851, -0.00530421128, 0.0316319168, -0.0234854743, 0.00243297662, 0.0159061886, -0.00305975, -0.0225960687, -0.0138051277, 0.0100283753, 0.00147670403, 0.00470482884, 0.00400554948, 0.000327686488, 0.00774685526, -0.00575858168, -0.0488528796, -0.000973996241, -0.0060099354, 0.00678010937, -0.0210106056, 0.0040828893, -0.0194380321, -0.00123824, -0.00687033916, -0.0133282, -0.00225412869, 0.00984791573, 0.0188837647, -0.00079313427, 0.00741816172, 0.02222226, -0.016679585, -0.0112464745, 0.016460456, -0.00358018139, -0.0220933612, 0.0118265217, -0.0032369867, -0.0170405041, 0.00630962662, 0.00145172968, -0.00839779712, 0.00793375913, 0.0150038926, 0.0163702257, -0.00367685594, 0.00340938964, 0.000965134415, 0.0093129836, 0.0206883568, -0.0184970666, 0.00985436048, -0.0147074237, -0.00036051558, -0.00478216866, 0.0089714, 0.0140371472, 0.00723125739, 0.00539766345, 0.0300851241, -0.0241686422, 0.00851380639, -0.000414492213, 0.019193124, 0.0173756424, -0.00574569171, 0.00763729075, -0.0220546909, -0.0160608683, -0.00642885873, -0.00150892884, -0.00688322913, -0.00845580176, 0.0184068382, -0.0185486265, -0.0100412648, -0.0110853501, -0.000102666374, -0.0159061886, -0.0151070124, -0.0100863799, -0.0297757667, 0.00976413116, 0.0216551032, 0.0243748799, 0.00136552821, 0.0297499858, 0.042175889, 0.0242588706, 0.00142675545, 0.03604028, -0.0163315572, -0.00268433057, -0.000675916323, -0.0127159283, 0.00582303153, 0.0131348511, 0.0361691788, 0.0105053028, -0.0283578727, 0.0285125524, -0.0107308766, -0.0266306214, 0.0139211379, 0.0019028777, 0.0221062507, 0.0184583981, 0.0102281692, -0.0286414512, 0.00265855063, 0.0288219098, 0.00407644408, 0.0292086098, 0.00172241847, 0.0131155159, 0.00647075102, -0.00708302343, -0.0237690527, -0.0233179051, 0.003583404, -0.000838651846, 0.0225187298, 0.016898714, 0.00196732744, 0.00884894561, 0.00805621408, -0.00281484122, 0.00400877185, -0.025225617, 0.0325084329, 0.00605182769, 0.0259990133, 0.00849447213, 0.00968034659, 0.0126901483, 0.00207850314, -0.0167182554, -0.00335783, -0.0103570689, -0.010866221, 0.0188322049, 0.0355504602, -0.00663832, 0.00656742556, 0.0308327414, -0.00777908, -0.01111113, -0.00255220849, -0.0166022461, 0.00877160579, 0.00190610019, -0.00869426597, -0.00208978192, 0.00687678391, -0.00540733058, 0.0105117476, -0.00806265883, -0.00545244571, 0.0167827047, 0.0264501609, -0.00141386548, 0.00710235815, 0.0163960066, 0.00718614273, -0.00696056895, 0.0154937105, -0.0149652231, -0.00421823375, -0.00901651476, 0.010279729, -0.00125918619, -0.0262181424, 0.00317092566, -0.0163573362, 0.0209074859, -0.0118845263, 0.00656098034, -0.00632251659, -0.00681233453, 0.00645786105, 0.0374323912, -0.0120069813, 0.00708302343, 0.0245811194, 0.0167440344, -0.0104472982, -0.0033127151, -0.00928720366, 0.0121229906, 0.000861209235, -0.0268626399, -0.00218484527, 0.00685744919, 0.00754706096, 0.00115203857, 0.00607116288, 0.00172080728, 0.00150087266, -0.0151070124, 0.0183423869, 0.0171565134, 0.0270173196, 0.018265048, 0.00203983346, 0.00200760853, -0.0133282, -0.0179943591, -0.0116202831, -0.0107115423, 0.0147074237, -0.00741816172, 0.0114462683, -0.0114333788, 0.0067672194, 0.017801011, 0.00277617131, -0.00207528076, -0.0101186046, 0.00810132828, 0.0217066631, 0.00253126235, -0.000630801544, 0.0183681678, -0.0241428614, -0.00425045844, 0.00904873945, 0.00306941755, -0.00205433462, -0.0275329165, -0.00543311052, -0.00745683163, 0.0219644606, -7.16499489e-05, 0.0184583981, -0.0184455067, -0.00098124682, -0.00586492382, -0.0217066631, 0.0231116656, 0.00794020481, -0.011794297, 0.00678655459, -0.0143722855, 4.72799038e-05, -0.0263470411, 0.0207141377, 0.000117318617, -0.0081464434, -0.00597771071, -0.00924208853, 0.00058165862, 0.00613561226, 0.00907451939, 0.0103312889, 0.0309616402, 0.00877805054, -0.0148105435, 0.00860403664, 0.0239237323, 0.00792087, -0.00855247676, 0.00431490829, 0.00516242161, -0.01340554, -0.00615817, 0.0217324421, -0.0064643058, 0.0118265217, 0.0264243819, -0.0147847636, 0.0191157851, -0.0179556888, 0.0358856, 0.00694123376, -0.0153648108, 0.0280485135, 0.0103506232, -0.00200599735, 0.00515275449, 0.00267788558, 0.00365752098, 0.0200438593, 0.0191544537, -0.0154292611, 0.0128126023, -0.0213199649, 0.00686389441, -0.0151070124, -0.00917119347, -0.00507863704, -0.0160093084, -0.0263857115, -0.000645302702, -0.0177752301, 0.0137277888, 0.0260763522, 0.00792087, 0.0121681057, -0.0105375275, -0.00497229537, -0.0415056124, 0.00984147098, -0.014797654, -0.0365043171, -0.00485950802, -0.0144109549, 0.00240719668, 0.00329982513, 0.0120585412, -0.0119489767, -0.00716680801, 0.00397654716, 0.0141660469, -0.00768885063, -0.0101250494, 0.00585203385, -0.00100783235, 0.0153390309, -0.0253545158, 0.0150296725, 0.00464360183, 0.00299046654, -0.00984147098, -0.00872004591, -0.00673499471, -0.0123872347, -0.00839135237, 0.00693478901, -0.00771463057, -0.0188064259, 0.0152745815, -0.0181361493, -0.00944188237, -0.0140500367, 0.00612272229, 0.00326921162, -0.0177494511, -0.000173309294, -0.000497068395, -0.0230601057, -0.0151327923, -0.00679299934, -0.0115300529, -0.0159835275, -0.0027729487, 0.0389791839, 0.00261988072, 0.0060099354, -0.0207914766, 0.0154034812, -0.00941610243, 0.00308230752, -0.0213844143, -0.021294184, -0.00605182769, 0.0306265019, -0.00253931852, 0.00915830396, 0.022003131, 0.0145011852, -0.0212555155, 0.0246713497, 0.0209590457, -0.00161043718, -0.00868137646, -0.00432779826, -0.0315545797, -0.0244264398, 0.00643208111, -0.00804332364, 0.00754061621, 0.0107050966, -0.00520431437, 0.00953211263, 0.00658031553, -0.00708946818, -0.0028228974, 0.0201212, -0.0064643058, 0.00100702676, -0.0287703518, 0.0140758166, -0.0106922071, -0.00879738573, 0.0297499858, 0.0154808201, -0.000684778148, -0.0108146612, 0.003583404, -0.00683166925, -0.00712169288, 0.0065223109, 0.00465971418, -0.0317608193, -0.00208333693, 0.0244651102, -0.00353828911, -0.016898714, -0.0122647798, -0.00810132828, -0.0204305574, -0.0135731092, -0.0285383314, 0.00397010241, 0.0177752301, 0.0175561011, 0.0104537429, 0.00485628564, -0.0122905597, -0.00723125739, -0.0226089582, -0.00808843877, -0.000980441226, 0.00467582652, 0.0212812945, 0.00730859721, -0.0269657597, -0.0113431495, 0.019708721, 0.0028631785, 0.00778552517, 0.0163444467, -0.0211266149, 0.00944832806, -0.00599060068, -0.014849213, 0.0263470411, -0.00988658518, -0.0131735206, -1.20528512e-05, 0.0117878523, -0.00218323385, 0.0202758797, 0.0107115423, -0.0148749929, 0.00602604775, -0.00218967884, -0.010279729, 0.0139469178, -0.0250838269, 0.00199794094, 0.0114913834, -0.011820077, -0.0181361493, 0.0316577, -0.00685744919, 0.0120069813, -0.0104408534, -0.0161253177, -0.00591003848, 0.0186130758, 0.0163186677, 0.00221707, -0.0129092773, -0.0134184295, 0.00966745615, 0.011233585, -0.0174272023, 0.00323054171, -0.00612272229, -0.0195153728, -0.0235499237, 9.36031356e-05, -0.00736015709, -0.00576180406, 0.0217195526, -0.0135344388, 0.0193091333, -0.0186259672, -0.00762440078, 0.0070379083, -0.00765018072, -0.0169373844, 0.00595515314, -0.00173691974, -0.000901490333, -0.00240880786, -0.0255478658, 0.0199665204, 0.00519786915, -0.00786286499, 0.0365043171, -0.0125354687, 0.0130575113, -0.0072699273, 0.00151134573, 0.00326921162, 0.018071698, 0.0116396174, -0.00239591789, 0.0312194396, -0.00313386717, 0.00663832, 0.0126128085, 0.00523009384, -0.00797887426, -0.0246197898, 0.00372197083, -0.00311130984, 0.0168084837, -0.00301946886, -0.0151199019, 0.00529132131, 0.00969323609, 0.00660609547, -0.00399910472, -0.0155066, -0.00491429027, -0.00805621408, -0.0105117476, -0.0159577485, -0.0148621034, -0.00583914388, 0.0208945964, -0.0269399788, -0.0275844764, 0.0137020089, -0.0110144559, 0.017117843, -0.0153390309, -0.0272751171, -0.00583269866, -0.0304460432, 0.000637649326, 0.002747169, 0.000510361162, -0.00708946818, -0.0175174307, -0.0227120779, -0.0135731092, -0.010672872, 0.00861692615, 0.00597126549, -0.0102023892, 0.00842357706, 0.028228974, 0.0257154349, -0.0140758166, -0.014797654, 0.00700568361, 0.00408611167, 0.00182392681, 0.00681877928, 0.0154292611, 0.00773396529, 0.0104988581, 0.0221191403, -0.0119103063, -0.00499163, 0.00509152701, 0.00445992, 0.00381864537, 0.00248775887, -0.00219451264, 0.00644497108, -0.00275522517, -0.00192543515, 0.0330755934, 0.0186130758, -0.0064417487, 0.00870071072, -0.0123227844, 0.00842357706, -0.0229569878, 0.0080175437, -0.00130107859, -0.0157128386, -0.0192704629, -0.00560067967, -0.00427301601, 0.00485306326, -0.0111691346, -0.00233630207, -0.0191802345, 0.00345128193, 0.0113044791, 0.0156097198, 0.0234081354, 0.0247744694, -0.00728926249, 0.010402183, 0.00318059325, -0.00794020481, -0.0169760529, -0.0131993005, -0.011942531, 0.0182908271, 0.0105955321, 0.00910674408, 0.010743767, 0.0268884189, 0.00575535931, 0.001068254, 0.00870715547, 0.00219290145, 0.00861692615, 0.00329338014, -0.00149442768, -0.0200696401, -0.0163186677, 0.00353506673, -0.0107566565, -0.00227829721, -0.0124839088, 0.0336685292, -0.0290281493, 0.0129221668, -0.0117685171, 0.00109403383, 0.00507863704, -0.00241041929, -0.00712169288, -0.00325309904, -0.0214746445, -0.00850736164, 0.0153390309, 0.00975768641, -0.0012527412, -0.0225316193, 0.00589714851, 0.00458559673, -0.000234435822, 0.00192865764, 0.00419245381, 0.00260537956, 0.00314514595, -0.0015999641, 0.00851380639, 0.0119876461, -0.00309519726, 0.0061195, 0.00464682421, -0.0128770526, 0.0163702257, -0.00601638062, -0.0228151977, 0.0122261103, 0.0110982405, 0.0114333788, -0.00288573583, -0.0148749929, 0.0186775271, 0.000328894937, -0.0157643985, 0.00177236705, -0.00346094952, 0.0111626899, -0.0183810573, -0.00549111515, -0.0186130758, -0.0105890874, 0.00721836742, 0.00543311052, 0.00936454255, -0.00124871312, 0.00213006302, 0.010672872, 0.00925497804, 0.0169760529, 0.00738593703, 0.00672855, 0.0265017208, -0.0091840839, -0.00674144, -0.0252771769, 0.00877805054, -0.0335654095, -0.00253770733, 0.00301141269, 0.0163057763, -0.0199536309, -0.00466293655, -0.00588103617, -0.0126063637, -0.00324987667, -0.00425690319, -0.00417634146, 0.00498840772, -0.00190610019, -0.00874582585, -0.00561679248, 0.00269399793, 0.00963523146, -0.00226540724, -0.017801011, -3.07143159e-06, 0.00605827291, 0.0115558328, 0.0172467418, -0.0160995387, -0.00812066346, 0.0246455688, 0.00134216528, 0.0176205505, 0.0171951819, 0.0268110801, 0.00688322913, 0.00648041861, 0.0108211068, 0.0282805339, 0.00578113925, -0.0260763522, 0.00532032363, 0.0054041082, -0.01782679, 0.00527843134, -0.0266564, 0.0137922382, -0.00803687889, 0.0178783499, 0.00536866114, 0.00309036369, 0.0237690527, 0.0133797601, 0.0165764652, -0.0128770526, 0.000400595221, 0.0189224351, -0.0164991263, -0.00412478158, -0.00219612382, 0.00774685526, -0.0230085459, -0.00231374451, -0.00968679134, -0.0165377967, -0.0211395044, 0.00959011726, -0.0316834785, -0.0156612806, -0.0192833543, 0.0124839088, -0.00178847951, -0.00882316567, -0.00210589427, 0.0295695271, -0.00295824162, -0.0248002484, -0.0105439723, 0.00825600792, 0.0184841771, -0.0108855562, 0.00559745729, -0.00263921567, 0.0125870286, -0.0208172575, -0.0133024203, 0.00995748, 0.012039206, 0.00453081448, 0.0313483402, 0.0110982405, -0.000765340286, 0.00501741, -0.00173208595, -0.000142897086, -0.0123614548, -0.0191802345, -0.0135086598, 0.0351122022, -0.0187161956, 0.00371874822, 0.0112722544, -0.012380789, 0.0212039556, 0.0190771148, 0.0077017406, 0.0132250804, 0.0213973038, -0.00921630859, 0.00374130579, -0.00236047059, -0.00522042671, -0.0202629883, 0.0257541053, -0.00985436048, 0.00843002182, -0.0218871217, -0.0175689906, 0.011916752, 0.00360596133, 0.00462104427, 0.0090551842, 0.0461202115, 0.00353828911, -0.0160479788, 0.00199149596, -0.00818511285, -0.0275844764, -0.00882961, 0.0143207256, 0.010524638, 0.0211523958, 0.0140500367, -0.0133410897, 0.0304202642, -0.00783064, -0.00246681273, 0.00776619, 0.00839135237, 0.00125676941, -0.00655131321, 0.00916474871, 0.00587136857, 0.0051817568, 0.0178912394, -0.00646752864, -0.00493040308, 0.0137277888, -0.00624839962, 0.0067672194, 0.0323021933, -0.00999615, -0.0233952459, 0.0128383823, 0.0015653224, -0.00920986384, 0.0071281381, -0.0200954191, 0.0237432737, -0.0126772579, -0.00967390183, -0.00461459951, -0.00340294465, 0.0278422758, -0.000482970034, 0.00219934643, 0.00683166925, 0.0138180181, -0.000695251278, -0.00042134, 0.0260892436, -0.0228796471, -0.00317253708, -0.00197377242, 0.00936454255, 0.0061388351, 0.0192317944, 0.0107373223, -0.0202500988, 0.00760506606, 0.0258443337, 0.0045984867, 0.0109951207, -0.00542022055, -0.0101314941, 0.00474349875, 0.00178847951, 0.0114011541, -0.0127674881, 0.0258056633, -0.00991236512, -0.0151714617, 0.000520431437, -0.000348229834, 0.000723850797, 0.0116331726, 0.000186098536, 0.0163702257, 0.00108194957, -0.00190448901, 0.0138309076, -0.00261826953, 0.0247100182, -1.49417592e-05, -0.00217034412, 0.00558134494, 0.0249807071, 0.0036994135, -0.0218097828, 0.0168342646, 0.00512697455, -0.00206883578, -0.00269883173, -0.0129801715, -0.000753658824, 0.0099188108, -0.000497471192, -0.00915185921, 0.0143980654, -0.0153777013, 0.00788219925, 0.0116009479, -0.0270173196, -0.000866043, 0.00277617131, -0.00769529538, 0.00353184412, 0.0210621655, -0.0135988891, 0.00135344395, 0.0206625778, -0.00082979, -0.00538799586, -0.0178654604, -0.00366396597, -0.0194509234, 0.0158933, 0.00125113, 0.010427963, 0.00456626201, -0.0156741701, 0.0246455688, -0.0107244318, -0.00123340636, -0.0190255549, 0.00108033826, -0.00345128193, 0.0112658096, -0.00434713298, -0.0109757856, 0.00779841514, -0.0145011852, 0.000305330497, -0.0106922071, -0.00619683973, -0.00160157529, 0.00880383048, -0.00476605631, -0.024478, -0.0223253798, -0.00192704634, -0.000259812892, -0.0216937736, -0.00321442937, -0.00398299191, -0.00218484527, 0.00407644408, -0.0153777013, -0.0264759418, 0.0238077231, 0.0149523327, 0.01553238, 0.018780645, -0.0013308865, -0.0177623406, 0.00641274638, -0.00818511285, 0.0132508604, 0.00086765422, 0.0205336772, -0.00358018139, 0.00839135237, 0.0159319676, 0.00913252402, -0.00963523146, 0.00799820945, 0.01992785, -0.0140500367, 0.017607661, -0.0049014003, 0.0194380321, 0.0132766403, -0.000551447854, -0.0167827047, -0.0131477406, 0.00820444804, 0.00740527175, -0.0216035433, 0.00325954403, -0.00561679248, -0.0151456818, -0.00876516104, 0.0248775892, -0.00924853329, -0.00563290482, -0.0259345639, 0.0162155479, 0.0128834974, 0.0306265019, -0.024052633, 0.00250064884, -0.00623873202, 1.48536446e-05, 0.0108984457, -0.0051817568, 0.00355762406, 0.00633218419, 0.00531065604, 0.0452179164, -0.0258185547, -0.0236659329, -0.0122776702, 0.0399588197, -0.00831401255, 0.00523009384, 0.00289056962, 0.0103957383, 0.0130768465, 0.000458398572, -0.00323537551, 0.0136891184, -0.00364785362, -0.0027826163, -0.00984791573, -0.0329724737, -0.00168213749, 0.00494651543, 0.00919697341, -0.0125741381, -0.0183939468, -0.0109564504, 0.00182392681, -0.00633862894, -0.000133833848, 0.00182553811, -0.00224929489, 0.00160479778, 0.00599704543, -0.0206883568, -0.0031967056, -0.0154937105, 0.00664476538, 0.0049014003, -0.000279147818, -0.00451792451, 0.00868137646, -0.00849447213, 0.00806265883, 0.0287961308, 0.00395076722, -0.0109951207, -0.0201856494, -0.000134538772, -0.0168858245, -0.00705724349, -0.0133024203, 0.022196481, -0.00597126549, 0.00314997952, -0.0102539491, -0.00137519569, 0.00735371187, 0.00580691872, 0.0096610114, 0.0165506862, -0.00186904159, 0.027300898, -0.0235112552, -0.0201985389, 0.0109435609, 0.0166409146, 0.0167955942, -0.0177752301, 0.0275329165, 0.0093129836, 0.00904873945, -0.0116525078, 0.00594870839, -0.00387342763, 0.0158546288, -0.00352862175, -0.0276360363, -0.0259087831, -0.00374775077, 0.00564901717, 0.00335138501, -0.00697345892, 0.00607438525, -0.0213844143, -0.0216808822, 1.96621968e-05, 0.0062419544, 0.0017159736, 0.0111949146, -0.0139211379, -0.00926786847, -0.0198891815, 0.0161124282, -0.00408611167, 0.0245811194, 0.0154808201, 0.0130832912, -0.013650449, -0.0073408219, -0.00952566694, -0.0114011541, 0.00628062431, 0.0180588085, -0.0104924133, 0.0355762392, 0.00740527175, -0.00893917494, 0.0157128386, -0.00604538294, -0.00955144688, -0.0513019711, 0.0110209007, 0.0258314442, 0.0307811815, 0.00334171741, 0.0175689906, -0.0109500056, -0.028228974, -0.000615091936, 0.015944859, -0.0156999491, -0.0105117476, -0.00676077465, 0.0330240317, 0.00833334774, 0.0125548039, 0.0142176058, 0.0158288497, 0.00500452, 0.0119876461, 0.00821733847, -0.0247744694, 0.00837201718, -0.0143078361, -0.00881672, 0.0277907159, -0.00319187203, -0.0189482141, 0.00573280174, -0.00759862084, -0.0362723, 0.0276875962, 0.0347255059, -0.0164475664, -0.0169760529, -0.00565546192, -0.0055749, -0.0274813566, 0.00565868476, -0.0217324421, -0.014849213, -0.00582303153, -0.013869578, -0.0229183175, -0.00688322913, 0.0142433858, 0.0205852371, 0.00131396845, -0.00231857831, 0.0197473913, -0.000386094034, 0.0158159584, -0.0339778885, -0.0141918259, -0.0148878833, -0.0247873589, -0.00705724349, 0.0224027187, 0.0234468039, -0.012844827, 0.00162493833, -0.0185872968, -0.00512052933, 0.000295864447, 0.00690256385, -0.0024039743, -0.00511730695, 0.0197602808, 0.016163988, 0.0311163198, -0.0134184295, 0.0156355, -0.0161253177, 0.00971901603, -0.0140371472, 0.0141273765, 0.00154034805, -0.0123485643, -0.00963523146, -0.00362207368, 0.011330259, -0.0111175748, 0.0019850512, 0.0108404411, -0.00345450453, -0.000408248627, -0.00775974523, -0.00794665, 0.00387020502, 0.00249581505, 0.0081464434, 0.00497551775, -0.0226347391, 0.00895851, 0.00837846193, -0.00323054171, -0.0196958315, 0.00162493833, -0.0104859676, 0.0211008359, 0.0114462683, 0.0148878833, 0.00542666577, 0.010743767, 0.0158288497, -0.00163299451, -0.0198505111, 0.0328177921, -0.00311775482, 0.022905428, 4.9293958e-05, 0.000574810838, 0.00940965768, -0.000284585753, -0.00820444804, 0.0127352625, 0.00922919903, 0.0066641, -0.00978346635, 0.0110789053, -0.0155066, -0.0442898422, -0.00852669682, -0.00310003106, 0.0133668697, 0.0175947715, -0.00379931042, -0.00507541467, -0.0211008359, -0.00496262778, 0.00622261968, 0.00115767797, -0.00133974839, -0.000453967659, 0.0112464745, -0.0146171944, -0.0176463313, -0.001938325, -0.0152230216, -0.00151376263, -0.00442769518, -0.0117620723, 0.0081464434, -0.0362465158, 0.0028180636, -0.00850091688, -0.00755995093, -0.012503244, -0.00562001485, -0.0263857115, -0.0067672194, -0.00566512952, 0.0194638129, -0.00198021741, -0.000167972059, -0.010524638, 0.00254737493, 0.00130107859, 0.0234081354, -0.0184197277, -0.00704435352, 0.0276102554, -0.0160221979, 0.00256026466, 0.00790153444, -0.0240655225, -0.00780486, -0.0125805838, -0.0250451583, -0.021294184, -0.000636038079, -0.00032506822, 0.0172983017, -0.0059390408, 0.0247486886, -0.0100412648, -0.016679585, -0.0141273765, -0.0093580978, 0.0205465686, 0.00310808723, -0.0137020089, -0.0164862368, 0.0182005987, 0.0164475664, -0.0155581599, -0.0203145482, 0.00629673665, -0.000387906708, 0.0133410897, 0.00571991177, -0.000517208944, -0.0124323489, 0.0157643985, 0.0093580978, 0.0194638129, -0.00324343168, -0.00134699896, -0.00167085871, -0.00688322913, -0.01343132, -0.0172725227, 0.00516564446, 0.0190900043, 0.00527198613, -0.00181264814, 0.000520431437, 0.00668343483, 0.0143207256, -0.013895358, -0.0144496253, -0.01553238, 0.00217034412, -0.0105439723, 0.0103957383, -0.0215390939, -0.0328693539, -0.00973835122, 0.000354473421, -0.00368652353, 0.0364011973, -0.01802014, 0.043980483, 0.00842357706, 0.0272493381, -4.87463876e-06, 0.0174400918, 0.0282031931, -0.0235370342, 0.00342227961, -0.0241428614, 0.00838490762, 0.000967551256, -0.00766951544, -0.0081786681, 0.0241557509, -0.0203274395, 0.0118587464, 0.0044857, 0.0311421, 0.00899718, 0.0180330295, -0.0228925366, 0.00728281727, -0.0117105125, 0.0120263165, 0.018239269, -0.00103522348, 0.00570379943, -0.0292086098, 0.015751509, 0.00547500281, -0.0164217856, 0.012503244, 0.0159577485, -0.0205723476, -0.00670921477, 0.0227636378, -0.0119618662, 0.016460456, 0.00109483942, 0.00402488466, -0.00550400512, -0.00648041861, -0.013650449, -0.01782679, 0.00425045844, -0.00433746539, -0.0134184295, -0.00236208201, 0.001446896, 0.0101572741, -0.03756129, -0.000504319, -0.00351895415, 0.00142272736, 0.000826567528, 0.00101911102, -0.00906162895, 0.00134619337, -0.0098028006, -0.00516242161, -0.00954500213, 0.00775974523, -0.0270173196, -0.0110209007, -0.017607661, -0.0302655846, -0.006019603, -0.000139674608, 0.0382057875, -0.0377933122, -0.00355762406, -0.0067672194, -0.0332044922, 0.00426657079, 0.0081786681, -0.00232018949, 0.00321604055, -0.0188193154, 0.0202629883, -0.00964167714, 0.00771463057, 0.00810777396, 0.000476525049, -0.00747616636, 0.00413767155, -0.03537, -0.0121101011, -0.0163186677, -0.0121036554, 0.0315545797, 0.00412155921, -0.00506897, 0.0123936795, 0.00942899287, -0.0275071356, 0.00347706187, 0.000729490188, -0.0077533, -0.0201985389, -0.00478861341, 0.0149265528, 0.0166409146, -0.00407644408, -0.00538477348, 0.00745683163, -0.00667054486, 0.0148363234, -0.0162413269, -0.000743588549, 0.0117685171, 0.00572635699, 0.00142192177, -0.00302108028, -0.00171919598, -0.0142176058, -0.0365043171, 0.0139984768, -0.0289250296, 0.0133668697, 0.0224285, -0.0218355618, -0.0267595202, -0.00212039542, -0.00334171741, 0.00195121497, -0.0116589526, 0.00114881608, -0.00435035536, -0.01340554, 0.00381864537, 0.0085782567, 0.00713458285, 0.0135602187, -0.0258056633, -0.0191028938, -0.00370908086, 0.0115364986, -0.000947410765, 0.0115107186, -0.00526876375, -0.0145398546, -0.0249935985, 0.00875871535, -0.0167440344, -0.0100799352, -0.000328492111, -0.0077533, -0.00442769518, 0.0129479468, -0.0180588085, -0.0222609304, 0.0625935569, 0.0480021462, 0.00330304774, -0.0180974789, -0.0115171634, -0.0171049535, -0.0172209628, 0.0320186168, -0.0274040177, 0.0084815817, 0.00335783, -0.00498518534, -0.00676077465, 0.00995748, -0.019193124, 0.0100670448, 0.00785641931, 0.00919697341, -0.00416989625, 0.00268271915, -0.0115880584, -0.00214295299, 0.00748905633, 0.00559745729, -0.0194251426, 0.0119618662, 0.0132379709, -0.00552978506, -0.019708721, 0.00509475, -0.017685, -0.00982858054, 0.00466293655, -0.00429235073, -0.0244522206, 0.01340554, 0.00537510589, 0.0101121599, -8.85554164e-06, -0.0168342646, 0.0110015655, 0.0292601679, 0.00128738303, 0.00887472555, 0.00233146828, 0.00618717214, 0.01343132, 0.00690900907, -0.00168536, -0.00724414736, -0.0176592208, 0.00211717305, 0.0219902415, -0.0199794099, -0.0182908271, 0.0113882637, -0.0134571, -0.00988658518, -0.00548789278, 0.022196481, 0.00622584205, 0.000525265117, 0.000316609192, 0.00759217609, 0.0160995387, -0.00194477, -0.0140500367, 0.0141402669, -0.00868782122, -0.0055749, 0.0202114284, -0.00667054486, 0.00242008665, -0.0114978282, 0.02432332, 0.0174787622, 0.0181232579, -1.25752467e-05, 0.0125354687, -0.0142691657, -0.00529776607, 0.02241561, -0.0118974168, -0.00803043414, 0.000637649326, -0.000731101434, -0.00152101321, -0.0268368591, 0.00728281727, 0.00263438188, 0.00265855063, 0.0228667576, -0.00754706096, 0.0115429433, 0.0139598073, -0.00449859, -0.000681152858, 0.00108114386, 0.000244304683, 0.000859598, 0.0307554025, 0.000482567208, 0.00411833636, 0.0294148475, -0.00104408537, 0.00603249297, -0.00701857358, -0.00447925506, 0.0314256772, -0.0039217649, 0.00383153534, -0.0135215493, 0.00808843877, 0.0299562253, 0.00501741, 0.0267853, 0.0177881196, -0.0261923634, 0.0168858245, 0.000354070595, 0.0166409146, 0.00884894561, -0.000991719891, -0.018561516, -0.00940321293, 0.00173047476, 0.0221578106, -0.00752128102, -0.00111900805, -0.00695412373, 0.0176463313, -0.0102990642, 0.0105568627, 0.00272944523, 0.000885377929, 0.0110917948, -0.0301624648, -0.00792731438, -0.0109113362, 0.00117298472, 0.0158159584, 0.0132379709, 0.00636440888, 0.0364785381, 0.010305509, -0.00113431492, 0.000805218588, -0.0335138477, 0.0308843013, -0.0272493381, -0.00607438525, 0.00705724349, -0.00290023698, -0.00169986114, -0.00150812324, 0.0159061886, -0.0131606311, -0.0287187919, 0.0120907659, -0.017607661, 0.000525668, 0.00819155853, 0.0236917138, -0.000648928049, 0.0297757667, -0.024052633, 0.028667232, -0.00650297571, -0.000627981848, -0.00843002182, 0.00851380639, 0.0101637198, -0.0441609435, 0.0164088961, -0.0111175748, 0.00237819436, -0.00441158284, 0.0223769397, -0.00631607184, -0.010647092, -0.0061388351, 0.0114720482, 0.00408933405, 0.0411962569, 0.00926786847, 0.00320476177, -0.00566512952, -0.011207805, 0.0194509234, -0.00317092566, -0.00934520829, -0.0121423258, -0.0162413269, 0.000932103954, -0.00610016519, -0.0202114284, 0.0244908892, -0.00886828, -0.00763084553, 0.01572573, 0.00563934958, -0.000753255968, 0.00768885063, 0.00477572344, -0.0249420386, 0.0334107317, -0.00748905633, 0.0132895308, -0.0135215493, -0.010892001, 0.00702501833]
02 Aug, 2022
Search for an element in a Mountain Array 02 Aug, 2022 Given a mountain array arr[] and an integer X, the task is to find the smallest index of X in the given array. If no such index is found, print -1. Examples: Input: arr = {1, 2, 3, 4, 5, 3, 1}, X = 3Output: 2Explanation: The smallest index of X(= 3) in the array is 2. Therefore, the required output is 2. Input: arr[] = {0, 1, 2, 4, 2, 1}, X = 3Output: -1Explanation: Since 3 does not exist in the array, the required output is -1. Naive Approach: The simplest approach is to traverse the array and check if the element in the current index is equal to X or not. If found to be true, then print that index. Time Complexity: O(N)Auxiliary Space: O(1) Efficient Approach: The optimal idea to solve this problem is to use Binary Search. Follow the steps below to solve this problem: Find the peak index from the mountain array. Based on the obtained peak index, the partition array into two parts. It searches for its left side first using Binary search, followed by its right. It is known that the left side of the peak element is sorted in ascending order and the right side is sorted in descending order. Search in the left mountain array. Below is the implementation of the above approach: C++ // CPP program for the above approach #include<bits/stdc++.h> using namespace std; // Function to find the index of // the peak element in the array int findPeak(vector<int> arr) { // Stores left most index in which // the peak element can be found int left = 0; // Stores right most index in which // the peak element can be found int right = arr.size() - 1; while (left < right) { // Stores mid of left and right int mid = left + (right - left) / 2; // If element at mid is less than // element at (mid + 1) if (arr[mid] < arr[mid + 1]) { // Update left left = mid + 1; } else { // Update right right = mid; } } return left; } // Function to perform binary search in an // a subarray if elements of the subarray // are in an ascending order int BS(int X, int left, int right, vector<int> arr) { while (left <= right) { // Stores mid of left and right int mid = left + (right - left) / 2; // If X found at mid if (arr[mid] == X) { return mid; } // If X is greater than mid else if (X > arr[mid]) { // Update left left = mid + 1; } else { // Update right right = mid - 1; } } return -1; } // Function to perform binary search in an // a subarray if elements of the subarray // are in an descending order int reverseBS(int X, int left, int right, vector<int> arr) { while (left <= right) { // Stores mid of left and right int mid = left + (right - left) / 2; // If X found at mid if (arr[mid] == X) { return mid; } else if (X > arr[mid]) { // Update right right = mid - 1; } else { // Update left left = mid + 1; } } return -1; } // Function to find the smallest index of X void findInMA(int X, vector<int> mountainArr) { // Stores index of peak element in array int peakIndex = findPeak(mountainArr); // Stores index of X in the array int res = -1; // If X greater than or equal to first element // of array and less than the peak element if (X >= mountainArr[0] && X <= mountainArr[peakIndex]) { // Update res res = BS(X, 0, peakIndex, mountainArr); } // If element not found on // left side of peak element if (res == -1) { // Update res res = reverseBS(X, peakIndex + 1, mountainArr.size() - 1, mountainArr); } // Print res cout<<res<<endl; } // Driver Code int main() { // Given X int X = 3; // Given array vector<int> list{1, 2, 3, 4, 5, 3, 1}; // Function Call findInMA(X, list); } // This code is contributed by bgangwar59. Java // Java program for the above approach import java.io.*; import java.util.*; class GFG { // Function to find the index of // the peak element in the array public static int findPeak( ArrayList<Integer> arr) { // Stores left most index in which // the peak element can be found int left = 0; // Stores right most index in which // the peak element can be found int right = arr.size() - 1; while (left < right) { // Stores mid of left and right int mid = left + (right - left) / 2; // If element at mid is less than // element at (mid + 1) if (arr.get(mid) < arr.get(mid + 1)) { // Update left left = mid + 1; } else { // Update right right = mid; } } return left; } // Function to perform binary search in an // a subarray if elements of the subarray // are in an ascending order static int BS(int X, int left, int right, ArrayList<Integer> arr) { while (left <= right) { // Stores mid of left and right int mid = left + (right - left) / 2; // If X found at mid if (arr.get(mid) == X) { return mid; } // If X is greater than mid else if (X > arr.get(mid)) { // Update left left = mid + 1; } else { // Update right right = mid - 1; } } return -1; } // Function to perform binary search in an // a subarray if elements of the subarray // are in an descending order static int reverseBS(int X, int left, int right, ArrayList<Integer> arr) { while (left <= right) { // Stores mid of left and right int mid = left + (right - left) / 2; // If X found at mid if (arr.get(mid) == X) { return mid; } else if (X > arr.get(mid)) { // Update right right = mid - 1; } else { // Update left left = mid + 1; } } return -1; } // Function to find the smallest index of X static void findInMA(int X, ArrayList<Integer> mountainArr) { // Stores index of peak element in array int peakIndex = findPeak(mountainArr); // Stores index of X in the array int res = -1; // If X greater than or equal to first element // of array and less than the peak element if (X >= mountainArr.get(0) && X <= mountainArr.get(peakIndex)) { // Update res res = BS(X, 0, peakIndex, mountainArr); } // If element not found on // left side of peak element if (res == -1) { // Update res res = reverseBS(X, peakIndex + 1, mountainArr.size() - 1, mountainArr); } // Print res System.out.println(res); } // Driver Code public static void main(String[] args) { // Given X int X = 3; // Given array ArrayList<Integer> list = new ArrayList<>( Arrays.asList(1, 2, 3, 4, 5, 3, 1)); // Function Call findInMA(X, list); } } Python3 # Python3 program for the above approach # Function to find the index of # the peak element in the array def findPeak(arr): # Stores left most index in which # the peak element can be found left = 0 # Stores right most index in which # the peak element can be found right = len(arr) - 1 while (left < right): # Stores mid of left and right mid = left + (right - left) // 2 # If element at mid is less than # element at(mid + 1) if (arr[mid] < arr[(mid + 1)]): # Update left left = mid + 1 else: # Update right right = mid return left # Function to perform binary search in an # a subarray if elements of the subarray # are in an ascending order def BS(X, left, right, arr): while (left <= right): # Stores mid of left and right mid = left + (right - left) // 2 # If X found at mid if (arr[mid] == X): return mid # If X is greater than mid elif (X > arr[mid]): # Update left left = mid + 1 else: # Update right right = mid - 1 return -1 # Function to perform binary search in an # a subarray if elements of the subarray # are in an descending order def reverseBS(X, left, right, arr): while (left <= right): # Stores mid of left and right mid = left + (right - left) // 2 # If X found at mid if (arr[mid] == X): return mid elif (X > arr[mid]): # Update right right = mid - 1 else: # Update left left = mid + 1 return -1 # Function to find the smallest index of X def findInMA(X, mountainArr): # Stores index of peak element in array peakIndex = findPeak(mountainArr) # Stores index of X in the array res = -1 # If X greater than or equal to first element # of array and less than the peak element if (X >= mountainArr[0] and X <= mountainArr[peakIndex]): # Update res res = BS(X, 0, peakIndex, mountainArr) # If element not found on # left side of peak element if (res == -1): # Update res res = reverseBS(X, peakIndex + 1, mountainArr.size() - 1, mountainArr) # Print res print(res) # Driver Code if __name__ == "__main__": # Given X X = 3 # Given array arr = [ 1, 2, 3, 4, 5, 3, 1 ] # Function Call findInMA(X, arr) # This code is contributed by chitranayal C# // C# program for the above approach using System; using System.Collections.Generic; using System.Linq; class GFG { // Function to find the index of // the peak element in the array public static int findPeak(List<int> arr) { // Stores left most index in which // the peak element can be found int left = 0; // Stores right most index in which // the peak element can be found int right = arr.Count - 1; while (left < right) { // Stores mid of left and right int mid = left + (right - left) / 2; // If element at mid is less than // element at (mid + 1) if (arr[mid] < arr[(mid + 1)]) { // Update left left = mid + 1; } else { // Update right right = mid; } } return left; } // Function to perform binary search in an // a subarray if elements of the subarray // are in an ascending order static int BS(int X, int left, int right, List<int> arr) { while (left <= right) { // Stores mid of left and right int mid = left + (right - left) / 2; // If X found at mid if (arr[(mid)] == X) { return mid; } // If X is greater than mid else if (X > arr[mid]) { // Update left left = mid + 1; } else { // Update right right = mid - 1; } } return -1; } // Function to perform binary search in an // a subarray if elements of the subarray // are in an descending order static int reverseBS(int X, int left, int right, List<int> arr) { while (left <= right) { // Stores mid of left and right int mid = left + (right - left) / 2; // If X found at mid if (arr[mid] == X) { return mid; } else if (X > arr[mid]) { // Update right right = mid - 1; } else { // Update left left = mid + 1; } } return -1; } // Function to find the smallest index of X static void findInMA(int X, List<int> mountainArr) { // Stores index of peak element in array int peakIndex = findPeak(mountainArr); // Stores index of X in the array int res = -1; // If X greater than or equal to first element // of array and less than the peak element if (X >= mountainArr[0] && X <= mountainArr[peakIndex]) { // Update res res = BS(X, 0, peakIndex, mountainArr); } // If element not found on // left side of peak element if (res == -1) { // Update res res = reverseBS(X, peakIndex + 1, mountainArr.Count - 1, mountainArr); } // Print res Console.WriteLine(res); } // Driver Code public static void Main( ) { // Given X int X = 3; // Given array List<int> list =  new List<int>(){1, 2, 3, 4, 5, 3, 1}; // Function Call findInMA(X, list); } } // This code is contributed by code_hunt. Javascript <script> // Javascript program for the above approach // Function to find the index of // the peak element in the array function findPeak(arr) { // Stores left most index in which // the peak element can be found var left = 0; // Stores right most index in which // the peak element can be found var right = arr.length - 1; while (left < right) { // Stores mid of left and right var mid = left + parseInt((right - left) / 2); // If element at mid is less than // element at (mid + 1) if (arr[mid] < arr[mid + 1]) { // Update left left = mid + 1; } else { // Update right right = mid; } } return left; } // Function to perform binary search in an // a subarray if elements of the subarray // are in an ascending order function BS(X, left, right, arr) { while (left <= right) { // Stores mid of left and right var mid = left + parseInt((right - left) / 2); // If X found at mid if (arr[mid] == X) { return mid; } // If X is greater than mid else if (X > arr[mid]) { // Update left left = mid + 1; } else { // Update right right = mid - 1; } } return -1; } // Function to perform binary search in an // a subarray if elements of the subarray // are in an descending order function reverseBS(X, left, right, arr) { while (left <= right) { // Stores mid of left and right var mid = left + parseInt((right - left) / 2); // If X found at mid if (arr[mid] == X) { return mid; } else if (X > arr[mid]) { // Update right right = mid - 1; } else { // Update left left = mid + 1; } } return -1; } // Function to find the smallest index of X function findInMA(X, mountainArr) { // Stores index of peak element in array var peakIndex = findPeak(mountainArr); // Stores index of X in the array var res = -1; // If X greater than or equal to first element // of array and less than the peak element if (X >= mountainArr[0] && X <= mountainArr[peakIndex]) { // Update res res = BS(X, 0, peakIndex, mountainArr); } // If element not found on // left side of peak element if (res == -1) { // Update res res = reverseBS(X, peakIndex + 1, mountainArr.length - 1, mountainArr); } // Print res document.write( res + "<br>"); } // Driver Code // Given X var X = 3; // Given array var list = [1, 2, 3, 4, 5, 3, 1]; // Function Call findInMA(X, list); </script> Output: 2 Time Complexity: O(Log(N))Auxiliary Space: O(1)
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Find the Peak Element in a 2D Array/Matrix/Search an element in a sorted and rotated array with duplicates/Search for an element in a Mountain Array
https://www.geeksforgeeks.org/search-for-an-element-in-a-mountain-array/?ref=next_article
Data Science & ML
Search for an element in a Mountain Array
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Find the Peak Element in a 2D Array, Search an element in a sorted and rotated array with duplicates, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Matrix, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, Search for an element in a Mountain Array, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.00516152056, 0.0269779265, -0.0128202066, 0.00991040375, 0.00946930889, 0.0116961263, -0.0177718513, 0.0179852843, -0.0266079754, 0.00470975414, -0.0466137566, 0.0052219932, 0.0311327539, -0.0085800048, -0.0183694642, 0.000681206875, -0.00401253952, 0.0328402184, -0.0404384322, -0.0345476829, -0.0226523522, -0.0198919512, -0.0368812159, 0.0517646074, -0.0177718513, 0.00211654347, -0.00342204189, 0.0188532453, -0.0392432064, -0.0152248843, 0.00179550482, 0.0122937383, -0.00308944215, -0.00771915866, -0.0205180217, 0.0153956311, -0.00607928215, -0.00382045, -0.0400969386, 0.0102092102, -0.00803930778, -0.0124929426, 0.0190524496, -0.0185402092, -0.0062749288, -0.00633540144, -0.00757687027, -0.0215140413, -0.00538918236, 0.011824186, 0.00166922365, -0.00764801446, 0.00461370917, 0.0250143427, -0.0155379195, 0.0218270775, -0.0172596127, 0.0242744423, -0.0247724522, -0.0366820097, 0.0402676836, -0.0126992613, -0.0228942428, -0.000552257756, 0.0202049874, -0.0153529439, -0.0424873866, 0.0300798193, -0.0313888751, -0.0205464792, -0.0297952406, 0.0249858852, 0.0388447978, -0.00556704309, -0.0367673859, -0.00199204101, -0.0170746371, -0.00366748963, -0.0206176247, 0.0307912622, -0.0151110534, 0.00176437909, 0.00425087288, -0.0682985485, 0.0226381216, 0.00496587344, 0.00591209298, -0.0552079938, -0.0111554293, 0.0344623066, 0.00704684481, 0.00415127119, -0.00532515254, 0.00161675469, 0.0188532453, 0.0459592305, 0.027333647, 0.000743013516, -0.0408368409, 0.0421174355, 0.0224389192, 0.00572000351, 0.00936259236, 0.00231752614, 0.011575181, -0.0148264766, -0.00199737679, 0.0207029972, 0.0124502564, 0.0515084863, 0.0366250947, 0.0295391213, -0.0227519535, 0.0156232929, 0.0198634937, 0.00467773899, 0.0118597578, -0.0196216032, 0.0014184399, 0.00220369524, 0.0281020068, 0.0237052869, 0.0162920486, 0.00692589954, -0.0455039069, 0.0254554376, 0.0186113548, 0.0186682697, 0.0100242347, -0.00258609606, 0.0133537892, -0.0217132457, 0.0168185178, -0.0422028117, -0.00687254127, 0.0368243, 0.0291122552, 0.0581675954, 0.0194366276, -0.0221685693, -0.0216990169, -0.0530167483, -0.0479512699, 0.0118099572, -0.00469196774, 0.0171457808, -0.0177007075, 0.0332101695, -0.0541265979, -0.00919184648, -0.0201907586, 0.00542475423, 0.00801796466, -0.00267146924, 0.030421311, -0.0090709012, -0.0163347367, 0.00377776334, 0.00865826383, -0.0132043855, 0.0307058878, -0.0252135471, 0.007050402, 0.00588719267, -0.0162351336, -0.000934658514, -0.0178003088, -0.0360559411, -0.046101518, 0.0233637951, 0.0109704537, 0.0336085781, 0.00483781379, 0.0508539602, -0.0160074718, -0.0241179243, 0.0240467805, 0.00293292454, 0.00811045244, -0.0479797274, 0.0102661252, -0.0282727517, -0.00577691896, 0.00176971499, -0.0101878662, -0.0251281746, 0.00288845948, -0.0280166324, -0.0193797126, -0.00431490317, -0.0206318535, -0.0303074811, 0.0653389469, 0.0221116543, 0.0369096734, -0.0125925448, -0.0177007075, 0.0321572311, -0.0307058878, 0.016918119, 0.0182698611, -0.00941950828, -0.000713221787, 0.00679784, 0.0462438092, -0.00236021285, -0.0428288803, -0.0267218072, 0.0101024937, -0.0056595304, -0.0346045978, 0.0799093, -0.0374503694, -0.00772627303, 0.0236341432, 0.0377918631, 0.00406945497, 0.0200911555, -0.0148691628, 0.00124146836, 0.00527179427, 0.0147695607, 0.0481220186, -0.0259534474, -0.0416905731, -0.0270775277, -0.0399261937, 0.0229084715, 0.0100882649, -0.047552865, -0.00129304803, -0.0134462761, -0.0148264766, -0.00322105899, -0.00385602214, -0.0425443, -0.0303074811, 0.0177149363, 0.0415767394, 0.00526823709, 0.00954045355, 0.00914204493, -0.0162635911, -0.000920429651, 0.0312465858, -0.0205037929, -0.0213148389, 0.0114471214, 0.04348341, 0.0278458875, 0.0381902717, -0.0184975229, -0.0069365711, 0.000587385264, -0.0179710556, -0.0013063876, -0.00978945848, 0.0282442942, -0.00443584844, 0.0213432964, -0.0184832942, 0.012037619, -0.00564530166, 0.0671602413, 0.0337508656, 0.0112052299, 0.046101518, 0.00161675469, -0.00882901, -0.0308766346, 0.0192516521, -0.0222254861, 0.00398408202, 0.00786856189, 0.0213148389, -0.0248435959, -0.0387594253, -0.0273763351, 0.0196073744, 0.00774761662, 0.0240610093, 0.0245163329, 0.052390676, 0.0184690654, -0.00560617261, 0.0308766346, 0.0207883697, -0.00615754072, -0.0552079938, 0.00698992936, -0.0158651825, -0.0196500607, -0.00885035377, -0.0111625437, 0.0242459849, -0.00221436704, -0.0280735493, -0.0320149437, -0.0273763351, -0.0133253308, -0.0138589134, -0.0338362381, -0.0213717539, -0.0106503051, -0.00706818793, 0.000828386692, -0.028471956, 0.00712510385, -0.0103443842, -0.0290268827, 0.0266933478, -0.0407230072, -0.0216136444, -0.0355437025, -0.0514800288, -0.00162209047, 0.0425443, -0.0133253308, 0.018113343, -0.0335232019, 0.00730652176, -0.0414629094, 0.00437893299, 0.0517930649, -0.00537495315, -0.0297667831, -0.0133253308, 0.00532515254, -0.0267075785, -0.0406376347, -0.00547455531, -0.023050759, 0.00432913192, 0.00177238288, 0.0251993183, -0.0252420045, -0.016975034, -0.00320860883, -0.00400542514, 0.0320149437, -0.00771204429, 0.0128202066, 0.0208595153, 0.00117121334, -0.0127846338, 0.00640298892, -0.0348038, 0.0242602136, 0.027333647, -0.0067942827, 0.0013010517, -0.00235665566, 0.0454185344, -0.0454754494, 0.0209591165, 0.0162920486, -0.0314457901, -0.0495449044, 0.0582529679, 0.00868672132, 0.0248578247, 0.0080677662, -0.0414629094, 0.00308588496, 0.0283012111, -0.029226087, -0.0184406079, -0.0219693668, -0.0080677662, -0.00175993261, -0.0150683671, 0.0107499063, -0.00249005109, -0.00269992696, -0.0297098681, -0.0139585156, 0.0213432964, -0.0242744423, -0.0104297576, 0.00666978, -0.0362551436, 0.02391872, 0.0123791117, 0.00808910932, -0.00979657285, 0.00142199709, -0.0391578339, 0.0236056857, -0.00892861187, 0.0309620071, -0.00135885656, 0.0226950385, 0.000931101269, -0.0186255835, 0.0282442942, -0.00435047504, 0.0113048321, -0.00223571016, -0.00228195405, -0.0326694734, 0.0560901798, 0.00390582322, 0.0331532545, 0.0186255835, -0.00486627128, 0.0182840899, -0.00056337408, -0.0359705687, 0.0192374233, -0.0022588321, 0.0186255835, 0.0126850326, -0.0349176303, 0.0155948345, 0.012556972, 0.00193512545, -0.0421458967, 0.0268071797, -0.00576624693, -0.00680851145, -0.0241036955, -0.00306098443, -0.0528744571, 0.00472398289, -0.0508255027, 0.0166762285, 0.00253629498, 0.00299517578, 0.0347753428, -0.0349460915, -0.0543258041, -0.00211120769, -0.0141932918, 0.0324418098, -0.0154240886, -0.00867249258, 0.0168469753, -0.00381333544, -0.000997799099, -0.0631192401, 0.00418684306, 0.0719980523, 0.0223820023, 0.00143266877, 0.00562751573, 0.0244167298, -0.0261668805, 0.0388163403, -0.0236199144, 0.0117316982, -0.0180279706, -0.0129340375, 0.0222539436, 0.00971831381, 0.0497441068, -0.0183552336, 0.0227519535, -0.0138375703, 0.0011516487, 0.0147837894, 0.0212721508, 0.00639943173, 0.0141861774, -0.0206887685, 0.00435047504, 0.0277605131, -0.00993886124, 0.0275613088, -0.0216421019, -0.0255834982, 0.0541835129, -0.0125071714, 0.00188888167, 0.0322995223, 0.0489757508, -0.0100100059, -0.00106894341, -0.044365596, 0.0073207505, -0.0330678783, 0.0482073911, -0.029012654, -0.0368243, -0.000851508579, 0.00175103953, -0.0162635911, -0.00328153186, -0.0091491593, -0.0213432964, 0.0021805733, 0.00517574931, 0.00424731569, -0.0429711677, -0.0202334449, -0.0163631942, -0.0124858283, -0.0536712743, -0.0149118491, -0.00867249258, 0.0480366461, 0.000736343733, -0.0355437025, -0.035742905, 0.035629075, -0.010223439, -0.0315311626, 0.00422597257, 0.0383041, 0.0330394208, -0.0562609285, -0.0119309025, -0.0202761311, 0.0414629094, 0.0257400144, -0.00247760094, -0.0204041917, -0.00138553558, 0.00931279175, 0.00445363438, 0.0128344353, 0.0284008123, -0.00904244278, -0.00370306172, -0.00914204493, -0.00847328827, 0.0142217493, -0.00611129729, -0.0267360359, 0.0132826446, -0.00315347197, -0.0375926569, 0.0181560311, -0.0076409, 0.0322710648, 0.000761244213, -0.0364828072, -0.00785433315, 0.0245021041, 0.00996020436, 0.0344623066, -0.0078401044, 0.0146272723, 0.00614331197, 0.0235203113, -0.0405522622, 0.00874363724, 0.00214677979, 0.00883612409, 0.00155539264, 0.033352457, -0.00977523, 0.0203330461, 0.00601880951, 0.00461370917, -0.0352591239, 0.0280735493, -0.0191378221, -0.0219409075, -0.0278032, 0.0119735887, 0.000527801923, -0.0132826446, 0.016704686, 0.0149829937, -0.0212863795, -0.0352875814, -0.00841637328, 0.0349460915, -0.0390155464, 0.00997443404, 0.00655239169, 0.00286178035, 0.0245732479, 0.00243135705, 0.0205464792, 0.0486627147, 0.000421752426, -0.000941772945, 0.00156072853, -0.0162493624, 0.0289699677, -0.00067498174, 0.0056595304, -0.0212294646, -0.01502568, -0.0560901798, -0.0182556324, -0.0260672793, -0.0345192254, 0.00956179667, -0.00572711788, 0.0487765446, -0.000992463203, 0.0321003161, -0.0127846338, -0.0174161289, 0.00480579864, -0.00588363502, -0.0141719487, -0.00410147, 0.0454469919, 0.00773338741, -0.00149936648, -0.0147980182, 0.00864403509, 0.0130620971, 0.00716779, 0.0355152451, -0.0174588151, -0.00802507903, -0.0394424126, -0.00223926757, 0.00826697, 0.0237479731, 0.0161497612, 0.00572356069, 0.0172738414, 0.0217559338, -0.0115182651, -0.0171173234, -0.0147553319, -0.0161497612, -0.00719269086, 0.0392147489, -0.0215709582, 0.0289130509, -0.0387309678, 0.00334200449, -0.0134320473, -0.0262380242, 0.00567375962, -0.0302505642, -0.0131901568, -0.00479157, 0.0156944375, 0.0117743853, -3.25429683e-05, 0.0132115, -0.0188817028, 0.00770493, -0.00551368482, 0.00574134663, 0.00128059776, 0.0613548607, -0.0110202553, -0.00297561125, -0.0264514573, -0.0085515473, 0.0248151384, -0.00610418245, 0.00632828707, 0.0252420045, 0.0496302769, 0.00241001393, 0.0187536422, -0.0315027051, -0.00916338805, -0.0126636885, -0.00244736462, -0.00728517817, 0.0183125474, -0.0162920486, 0.0256546419, 0.00842348766, 0.001345517, 0.00185686676, 0.000263900962, 0.0219551362, 0.00298272562, 0.00681562582, -0.00726739224, 0.000591387157, -0.0109491106, 0.00877920911, 0.0116534391, -0.0153244864, -0.0259534474, 0.0307628047, 0.0205749366, -0.0249574278, 0.00754841231, -0.00916338805, 0.0180422, -0.00770493, -0.016704686, -0.0117957285, -0.00721047679, -0.018981304, -0.0203615036, 0.00526112225, -0.0328971334, 0.0410645, 0.0638591424, 0.016377423, -0.0164485667, -0.00379554951, 0.0177576225, 0.00828831363, -0.01979235, -0.029396832, 0.0064776903, -0.00621445617, -0.0234633964, 0.00384535058, -0.01176727, 0.0257542431, -0.0121087627, 0.0200769268, -0.0025309592, -0.0141861774, 0.0255692676, -0.0171742383, -0.00516507775, 0.0332670845, 0.0151395109, -0.00224282476, -0.00457457965, -0.0222824011, 0.0233211089, 0.00559194339, 0.0130478684, 0.0348607153, 0.0326694734, -0.0368812159, 0.0355152451, -0.00466706743, 0.0112123452, -0.00924164709, 0.00253807358, 0.00223393156, -0.0165339392, -0.00394850969, 0.00154827826, 0.020774141, 0.0151679693, -0.00474888319, 0.0258823037, -0.0145490132, -0.0135672214, -0.00110095832, -0.0182271749, -0.0111981155, -0.0147695607, 0.00956891105, 0.0228230972, 0.0123435399, 0.00474176882, -0.00414415682, -0.0178856812, 0.0244451892, -0.0155521482, -0.00882901, 0.0218128487, -0.0299375299, -0.0164627954, -0.00580181926, 0.0319011137, -0.0225385204, 0.044365596, 0.0182840899, -0.00651682, 0.0263518561, -0.0150825959, 0.00831677113, -0.00241179252, -0.006047267, -0.056460131, 0.0146699585, 0.0124644851, 0.00741323829, 0.0145703563, 0.00180795498, 0.0117245838, -0.0200911555, -0.0313319601, 0.00781164644, 0.00974677224, 0.0167473722, 0.0227377247, 0.00443229126, -0.00378487771, 0.0114044342, 0.0377918631, 0.0160074718, -0.00610062527, -0.0132186143, -0.000945330132, 0.00813179556, 0.0346615128, -0.00377420615, -0.0163489655, 0.0107214488, 0.0120660765, -0.00149136281, -0.000544698676, -0.028415041, -0.00202761311, -0.0285715591, -0.0015340494, -0.0198208075, 0.0129126944, -0.0240894668, -0.0154240886, -0.0245590191, 0.0168469753, -0.0205322504, 0.0035607731, 0.0135672214, 0.00229618303, 0.00285822293, 0.000284354959, 0.0144992126, -0.0205180217, 0.0150968246, 0.00895707, 0.0279028025, -0.00155094615, 0.0036034598, 0.00408368418, -0.0118953306, 0.00502990326, -0.0085800048, 0.033409372, -0.0115182651, 0.00638520252, 0.0366535522, 0.00216278736, -0.0306774303, 0.0289699677, -0.0303074811, 0.000255230261, 0.0258396175, -0.0160217, 0.0249716565, -0.0112052299, 0.00117565983, -0.0132043855, 0.0400115661, 0.0111127431, 0.0247582234, 0.0178856812, -0.00238511339, -0.0437395275, -0.00356610911, 0.013830456, -0.0101096081, -0.0202049874, 0.0243171286, 0.00973254256, 0.0292545445, 0.0168185178, 0.000339714141, -0.0225954354, 0.00890726876, -0.0158794113, 0.0257257856, -0.041918233, -0.039527785, -0.00192089658, -0.000647413312, -0.000106883221, 0.0240467805, -0.0139087141, -0.0146841872, 0.0343769342, 0.014043889, -0.0211440921, -0.0315311626, -0.00631405832, -0.0509393327, -0.0133253308, -0.00934836362, 0.00103426049, -0.00556704309, 0.00213432964, 0.0021094291, -0.0238333475, 0.039641615, 0.0164343379, -0.0202192161, 0.0196642894, -0.0172738414, -0.0295106638, -0.0464145541, -0.0405522622, 0.0244878754, -0.0228373259, -0.0224816054, 0.0174588151, -0.037962608, 0.0344623066, 0.00502634607, 0.00673736725, -0.00338469096, 0.0285288729, -0.024729766, -0.0195504595, 0.00239044917, -0.0239044912, 0.0361697711, 0.0172596127, 0.00378843513, 0.0156375207, 0.00469552493, 0.00591565, 0.0169608053, 0.013581451, 0.00031259036, -0.000979123753, 0.0245305616, 0.015836725, 0.0146699585, -0.0093270205, -0.056289386, 0.000857289066, -0.0101949815, -0.0373365395, -0.0269352403, -0.00223926757, 0.011091399, 0.00635318784, 0.0123293102, -0.0139371725, 0.0287423059, 0.00237622019, -0.0245163329, -0.0330394208, -0.00145312271, 0.00774761662, 0.00173858926, -0.0330109634, 0.0183410048, 0.00441806205, -0.00681562582, 0.00516152056, -0.019849265, -0.0189386178, -0.0283581261, -0.0439387336, -0.0416336544, 0.00217523752, 0.0201480705, 0.0228515547, -0.0153956311, -0.00951911, -0.0222539436, -0.0239614062, -0.0126921469, 0.00199381961, 0.0224958342, 0.00468841055, -0.00801796466, 0.0187821, -0.0276039969, 0.00709664589, 0.000634963042, -0.0160643868, -0.00744881, -0.0120233903, 0.00318548689, -0.00996731874, -0.0131830424, -0.00933413487, -0.0112906033, 0.0215851869, -0.00414059963, 0.0106503051, -0.0320434, -0.0196073744, -0.0325840972, 0.0406660922, 0.00412637042, 0.00977523, 0.024132153, -0.0137095107, 0.0398977362, 0.00834522862, -0.0385033041, 0.000288579147, 0.00286711613, -0.00828831363, 0.0218697637, 0.0285715591, -0.00924876146, 0.00340069854, 0.00123613258, 0.0091847321, -0.0123150814, 0.0237906612, 0.0170888659, -0.00899264216, 0.0282158367, 0.0243029, -0.0385602228, -0.015722895, 0.00545321219, -0.0150683671, 0.0195931457, -0.0146557298, -0.0132115, 0.00704328762, 0.00511883385, 0.027120214, -0.0204895642, 0.0147695607, -0.00844483078, 0.00966139883, -0.0162920486, 0.00760532776, -0.0261668805, 0.00228373264, -0.00343804923, 0.00263233972, 0.00669112336, 0.00953333918, 0.000500233495, -0.01502568, 0.00813179556, 0.0408083834, 0.014100804, 0.0127988635, -0.0234633964, -0.0131403562, 0.0039911964, -0.0026821408, 0.0269210096, -0.00173947867, -0.00575913256, 0.03568599, -0.00330287497, 0.000969341374, 0.00811756682, 0.00310011371, 0.0184548367, 0.00389515143, -0.00504413247, 0.018383693, -0.00276929257, 0.00395206688, -0.0105009014, 0.026423, 0.00587652065, -0.000522466085, 0.00910647307, -0.0132043855, -0.0210587177, 0.0113546336, -0.00743458141, -0.0078401044, 0.0100384634, 0.00200449117, 0.025057029, 0.0181702599, -0.00691878516, -0.0182840899, 0.00994597562, -0.00219658087, -0.0126281166, 0.0112194596, 0.0110202553, -0.00972542819, -0.0275613088, 0.00566664524, -0.0142786652, -0.00941950828, 0.0184263792, 0.00618244149, 0.0106218467, 0.0146841872, 0.00892861187, 0.0114613501, -0.0155236907, -0.0244736467, -0.0114115486, 0.0101522943, 0.024943199, 0.00159096485, 0.000680317578, -0.00452477857, -0.0277178269, -0.00996731874, -0.0256688707, 0.0127063757, 0.00954045355, -0.00429711677, -0.0168896616, 0.0107499063, 0.0129482662, 0.0263091698, -0.0171315521, 0.00309655652, -0.000824384799, -0.0265795179, -0.00625714287, 0.0112336883, -0.00323173078, 0.0194366276, 0.0735347718, -0.0242032968, -0.0101807518, -0.0354298726, -0.00269103399, 0.0237622019, 0.00257186708, 0.0206318535, 0.00258609606, -0.00716067571, 0.0117815, -0.00403744029, 0.00885035377, -0.0162778199, 0.0120162759, -0.00101914234, -0.00227839686, -0.0155236907, -0.00654527731, -0.0151110534, 0.0103941849, 0.00838080049, 0.031730365, 0.00621445617, 0.000954223215, 0.025327377, -0.00882901, 0.029226087, -0.039755445, -0.0109135387, 0.00122457161, -0.0405522622, -0.00430778833, -0.00797527842, -0.00389159424, 0.0282869823, 0.00541408267, 0.00208097138, -0.0101594087, 0.00777607411, -0.00941950828, 0.00277818576, -0.022936929, 0.0213432964, -0.00500144577, -0.0117316982, -0.000776362373, 0.00374930562, -0.00586940628, -0.00303964107, 0.00507259, -0.000102492282, -0.0233637951, 0.0017377, 0.00509749074, -0.0161639899, 0.0188105572, -0.0242602136, 0.0271629021, -0.0171457808, -0.0140652321, -0.00727450661, 0.00706463074, -0.0236483719, -0.00944796577, -0.012770405, -0.0298521575, -0.0238333475, -0.0183694642, 0.00773338741, -0.0191093646, -0.00865114946, 0.0315880775, -0.00931279175, -0.00702905888, -0.00941950828, -0.0330394208, 0.00589075, -0.0472113714, -0.00237799878, -0.00171635672, 0.033466287, -0.0155379195, 0.00378132053, -0.00711798901, -0.0286711603, -0.0174019, -0.0091776168, 0.00193156826, -0.0137095107, -0.0175299607, -0.00222859578, -0.0480935611, 0.00886458252, 0.00246337196, -0.00964005571, 0.0308197197, 0.0231788196, 0.00870806444, -0.00694012828, -0.0110060265, 0.0121372212, -0.00105026807, 0.00819582585, 0.01290558, -0.0041655, 0.0140865752, -0.0211867783, 0.00973965693, 0.0050192317, 0.0160359293, 0.00314813619, -0.00174570375, 0.0223393161, 0.00971831381, 0.00213788683, 0.00991751812, -0.0104084136, -0.00229618303, -0.00609706808, 0.000728784653, 0.0106716482, 0.0250997152, -0.0444794297, 0.00177860796, -0.0149829937, 0.0154383173, -0.0127134901, 0.0116534391, 0.0258823037, -0.0219978243, 0.0122439377, 0.00106627552, -0.00706463074, -0.0169892628, 0.00714644697, -0.0314742476, -0.00423664413, -0.00251317304, 0.00336512621, 0.00888592564, 0.0172880702, 0.00729229255, -0.00973965693, 0.0128984656, -0.00631761551, 0.00339892, -0.0023833348, 0.0163062774, -0.0196642894, -0.0229653865, 0.0122012505, -0.00451410701, 0.00834522862, 0.00505480403, -0.0232072771, 0.0162209049, 0.022723496, -0.0135956798, -0.00858711917, 0.0095546823, 0.0231788196, 0.0258538462, 0.00426865928, -0.00768358633, -0.00945508, -0.00325841, -0.00590142142, -0.00649191905, 0.00593699329, -0.0141434912, -0.00911358744, 0.0140794609, 0.0097823441, 0.00567020243, 0.0277747419, 0.0220831968, 0.00315880775, 0.00307699176, 0.00170212786, -0.0388447978, 0.0323279798, -0.0065915212, 0.0167331435, -0.0205180217, -0.0117245838, -0.0280735493, 0.00995309, 0.0309620071, -0.000460214826, -0.00169234548, -0.0139585156, -0.00579114771, -0.0166193135, -0.000712777139, 0.0133609036, -0.0099246325, -0.0126067735, -0.0214144401, 0.0102305533, 0.0154525461, 0.0105009014, -0.00726739224, 0.00963294134, 0.00670179492, -0.0404384322, -0.0202334449, 0.0167758297, 0.0099246325, -0.00705395918, 0.0017626005, -0.00504413247, -0.00905667152, -0.030421311, -0.00744881, 0.00502634607, -0.00303074811, 0.0191662796, 0.0225242916, 0.00169857068, 0.00563818729, 0.00611841166, -0.00104404287, -0.0182414036, -0.018981304, -0.0276182257, 0.0272909608, -0.00531092333, -0.00184619508, 0.0136668235, -0.0249574278, 0.0206887685, 0.0141292615, 0.0218982212, -0.00341137, 7.74806103e-05, 0.00894995499, -0.0462153517, -0.0336085781, 0.00622512819, 0.028144693, -0.0107001057, -0.0278458875, 0.0064776903, 0.0519068949, 2.61372e-05, 0.000834611827, 0.0176295619, -0.0232926495, 0.0263091698, -0.00887169689, -0.0199773256, -0.00852309, 0.000461548771, 0.00811045244, 0.0161497612, -0.0253416058, 0.00377420615, -0.00338113378, -0.0267787222, 0.022182798, 0.0272909608, -0.0106431898, 0.0108423941, -0.0157513525, 0.0067942827, -0.0205464792, -0.010764136, 0.001837302, -0.0114613501, -0.0240610093, 0.0130620971, -0.00922030397, 0.0104297576, -0.00865114946, -0.0286569316, 0.00333666848, 0.0121158781, 0.0070930887, -0.00716067571, -0.0169323478, 0.0119878175, 0.0123933405, 0.0342631042, -0.00134640629, 0.0205749366, -0.00586584909, 0.0236199144, -0.0020667424, -0.0224104598, -0.000544698676, 0.00281731505, -0.0303928535, -0.0125071714, 0.0359705687, 0.0236626, -0.0122225946, 0.0293114595, -0.00973965693, 0.00514017697, 0.0120518478, 0.0225242916, -0.0224531479, 0.00647413312, -0.00221614563, -0.0432842039, 0.00738478033, -0.0274332501, 0.0219835956, 0.0115965242, 0.0121514499, -0.0308481771, 0.00252384483, 0.00374574843, -0.000305920577, 0.0256831, -0.0113119464, -0.0182698611, 0.0246586204, -0.0202049874, -0.0224816054, -0.0173449852, -0.0380479805, -0.0188105572, -0.0192374233, -0.00224282476, -0.0125925448, -0.0128415497, -0.0141506055, -0.0193797126, 0.00303074811, 0.0091847321, 0.0123719973, -0.0147126457, -0.00241534971, 0.0159505568, -0.0202049874, -0.0258965325, -0.000169968233, 0.013232843, 0.00136508164, 0.00315525057, -0.00909224432, -0.00618599867, 0.00317659392, -0.0121941362, 0.00574134663, 0.02380489, -0.00816736836, 0.0144707542, -0.0257542431, -0.0233922526, -0.00748438248, 0.00450699264, 0.0303928535, 0.00483069941, 0.00881478097, -0.0103443842, -0.0165766273, 0.00273372047, -0.0134960776, -0.00991040375, 0.0106503051, -0.00384890777, 0.0258538462, -0.0135529926, 0.0158224963, 0.00860846229, 0.02380489, 0.0258253887, 0.00454256497, -0.0291691702, -0.000561150839, -0.0219266787, -0.0176011045, -0.0181702599, -0.0183552336, -0.00764801446, -0.00656306371, -0.0187536422, -0.00251139444, -0.01377354, 0.00660219276, 0.00220725243, -0.0261526518, 0.000206874349, -0.0268925522, 0.0207314547, 0.0245590191, 0.0161924474, -0.00980368722, 0.0223962311, 0.0605011284, 0.020774141, 0.0195931457, 0.0498579405, -0.00821716897, 0.00582316238, -0.00383467879, -0.016704686, 0.0224246904, 0.0333809145, 0.0216990169, 0.0102305533, -0.00698992936, 0.0436256975, -0.0220405106, -0.0219693668, 0.0215851869, -0.0204184204, 0.016704686, 0.00425443053, -0.00323173078, -0.0344623066, 0.00947642326, -0.000538918248, -0.000416416588, 0.0302790217, 0.0132115, 0.0036034598, -0.000376620243, 0.0173307564, 0.000539807545, -0.0147980182, -0.00105738244, -0.022182798, 0.0252135471, 0.0123150814, -0.0120233903, -0.00348429312, 0.0112550315, 0.00507614715, -0.000666978, -0.0145703563, 0.00710020307, 0.0140296603, 0.00727094943, 0.00958314, -0.0147837894, 0.0121372212, -0.000578936888, -0.00562040135, -0.0139585156, 0.00807488058, -0.00391293736, 0.0177433938, 0.0356006175, -0.0105151301, -0.00246692938, 0.00959025417, -0.0106645338, 0.00691522798, 0.0133324452, -0.0179568268, -0.00853731856, 0.000382623053, 0.00314457901, -0.00251850882, 0.00964005571, 0.00774050178, 0.00500144577, -0.0171457808, -0.00441450486, -0.00188354589, 0.0162493624, 0.00922030397, 0.0162493624, 0.0050192317, -0.00821716897, 0.00461370917, 0.00788990501, -0.0109348819, -0.0214571264, 0.00744881, -0.0070219445, -0.0120162759, -0.029226087, -0.00796105, -0.0172026958, -0.0126067735, -0.00890015438, 0.020774141, -0.000309700117, 0.00747726811, 0.00641366048, 0.0368812159, -0.0126921469, 0.0250712577, 0.0130549828, 0.00336512621, 0.00850886106, -0.0131261274, -0.0283865836, -0.00090575614, -0.0105364742, -0.0338646956, -0.00936259236, -0.0162920486, 0.00808910932, -0.00554214232, 0.00342915626, -0.019578917, -0.0214144401, 0.00944796577, 0.0249289703, 0.0132897589, 0.00957602542, 0.00102092104, 0.0260103624, 0.00228551123, -0.01778608, -0.0270917565, -0.0201480705, 0.00987483189, 0.0183410048, -0.000139287236, 0.0154952332, -0.0228515547, 0.0182271749, 0.0340639, 0.0100100059, -0.00410858449, -0.00668400899, 0.00341848447, 0.0041761715, 0.00506547559, -0.00302896951, 0.0138019985, -0.0179283693, 0.00340069854, -0.0103088124, 0.00645990437, -0.00773338741, -0.0254127514, 0.00108584017, 0.0137521969, 0.0295675788, 0.000649636553, 0.0305066835, -0.0166335423, 0.0022677253, -0.00136152445, -0.0161497612, 0.0321856886, 0.00658084964, 0.0061361976, 0.00389515143, -0.0256119557, 0.0167900603, -0.0193085689, 0.0039200522, -0.00907801557, -0.0027603996, -0.0102305533, -0.00800373591, -0.00950488076, 0.0206745397, 0.00980368722, 0.0107214488, 0.0226096641, 0.0159932431, -0.00548522687, 0.00860846229, 0.0217701625, 0.00747015374, -0.00420818664, 0.0107427919, -0.00558838621, 0.00416194275, -0.016975034, 0.00323173078, -0.0206887685, 0.0239898637, 0.00563818729, -0.0135672214, 0.0256831, -0.00623935694, 0.031616535, -0.0143640386, -0.028087778, -0.0173022989, -0.0031036709, -0.00889304, 0.0103514986, -0.00453900779, 0.00816736836, 0.02191245, 0.00379910669, -0.00966139883, 0.012172793, -0.0132470727, 0.00615754072, -0.0192943402, -0.00313390722, -0.0160786156, 0.000714111084, -0.0272625033, -0.00343804923, -0.00364081049, 0.00890015438, 0.00446074875, 0.00339002674, 0.021855535, -0.0161924474, -0.0101380656, -0.0378487781, 0.00799662154, 0.00835234299, -0.0353160389, -0.0207029972, -0.0392432064, -0.00448920671, -0.00052113214, 0.00170034927, -0.00327441725, -0.0214855839, -0.00939816423, 0.0127348332, -0.0143640386, -0.0267218072, 0.00941239391, 0.00502278889, 0.00355721591, -0.0238760337, 0.0102376677, 0.0132541871, -0.0193797126, -0.0010369285, -0.0114755789, 0.00480579864, -0.0145490132, 0.00790413376, -0.00200804835, 0.00743458141, -0.00924164709, 0.0141506055, -0.0109206531, -0.0268640947, -0.0156517494, -0.0020293917, 0.0092914477, -0.0280024037, 0.00349674327, 0.0200057831, -0.0265795179, -0.0181275718, -0.00542475423, -0.00907801557, -0.0257542431, 0.0045888084, 0.0340923592, 0.00912070181, 0.0125640873, -0.0278458875, 0.013830456, -0.0120660765, 0.0247439947, -0.00612552604, -0.0160501581, 0.0242032968, 0.00024322464, -0.01789991, 0.00209164293, 0.0190239903, 0.0246017054, 0.0062749288, 0.0141719487, 0.0234491676, -0.00194579712, 0.00275150663, -0.00581249082, -0.0294537488, -0.013040754, 0.0131190121, -0.000259454449, 0.0101949815, 0.0198634937, -0.0108352797, -0.00483781379, 0.0270348415, -0.0115894098, -0.0217559338, 0.0135387639, 0.00110985141, 0.00742035266, -0.0284434985, 0.00620378461, -0.0118170716, -0.00960448291, 0.0113475192, 0.0257684719, 0.0101380656, -0.00939105, -0.00539273955, -0.0129909525, -0.00711087463, 0.00121034274, 0.00796816405, -0.0176864788, 0.00954756793, 0.0216563307, 0.0156802088, -0.00479157, 0.00485915691, -0.0178287663, -0.0088076666, 0.00378843513, -0.00266969064, -0.00669823773, -0.000313924305, 0.0107499063, 0.00356433052, 0.00981791597, -0.00769781554, 0.00712866103, -0.00644211797, -0.00289201667, 0.0094052786, 0.013638366, 0.0200769268, -0.000608728558, -0.00424375851, -0.0204184204, 0.00304675545, 0.0158794113, 0.00731363613, -0.00500500295, -0.0191662796, 0.0150683671, -0.0116463248, -0.0223108586, 0.0264941454, -0.00745592453, -0.00316592213, -1.60908439e-05, 0.00808199495, 0.0137593113, 0.0186682697, -0.00506903278, -0.002372663, 0.00315169338, -0.0214713551, -0.0269352403, 0.00774761662, -0.0109917978, -0.00327263866, 0.00987483189, -8.84857509e-05, -0.00380622107, 0.0183267761, 0.0173307564, -0.0321287736, -0.00231396896, -0.0276039969, 0.0271629021, 0.00965428445, 0.000998688396, -0.0177576225, 0.00446430594, -0.0185117517, 0.014641501, 0.00420818664, -0.0115965242, -0.00281020068, -0.00834522862, -0.0147553319, -0.00713933259, 0.00254340935, 0.0167189147, -0.0207883697, 0.0176011045, -0.0129411519, 0.0090709012, -0.00501211733, -0.0207456835, 0.0106716482, -0.0191520508, -0.0251566321, 0.015509462, -0.0126067735, -0.00158296106, -0.0122012505, -0.0180422, 0.00643144641, -0.00655950606, -0.0148833916, 0.0112977177, -0.010166523, -0.000767469348, 0.00213077245, 0.0080962237, 0.0367104672, 0.0157655813, -0.00116320967, 0.0302505642, 0.0213290676, 0.00165766268, 0.0251993183, 0.0116249816, 0.0139158294, -0.00107072201, -0.03557216, -0.00711443182, -0.019735435, 0.0138731422, -0.012229709, -0.00139353937, -0.00408012653, -0.00857289, 0.00492318673, 0.000576269, -0.0177718513, -0.0141932918, 0.0161213037, -0.00173947867, -0.0328971334, -0.0103159267, -0.00205251365, 0.00978945848, -0.0134889632, 0.00222681719, 0.031616535, 0.0176011045, 0.00399475358, 0.0156659801, -0.00956891105, -0.0110415984, -0.00822428335, 0.000206763172, 0.000713221787, 0.0017225818, -0.0126708029, 0.00281375786, -0.0186113548, -0.0210302602, 0.0221970286, 0.0111910012, 0.00261277519, -0.00091598311, -0.00277818576, 0.0172169246, 0.013503192, -0.00144689763, -0.00899264216, 0.0309050921, 0.00543542625, -0.00843060203, 0.00568443118, 0.0167473722, -0.00770493, 0.00786144752, 0.0257257856, -0.0140723465, -0.00751995482, 0.0291407127, -0.00043820453, -0.00497298781, -0.0088076666, -0.0132613014, 0.0192801114, -0.0359136537, -0.0108708525, 0.00525400788, -0.00378132053, -0.0151252821, 0.0119878175, -0.0213575251, -0.0124075692, -0.00140510034, 0.00543898344, -0.0141719487, -0.0223820023, -0.0111554293, -0.0111838868, 0.00942662265, 0.0105507029, -0.0144636398, -0.0210587177, -0.00813179556, -0.0090211, 0.0177576225, 0.0101878662, 0.00664487947, -0.00597256562, -0.00780453207, -0.00511171948, -0.0163205061, -0.00833811425, 0.00776184537, 0.000891082629, 0.0147126457, 0.0275613088, 0.006751596, -0.00148602703, 0.0250854865, 0.0134391617, 0.0102020958, -0.00523622194, -0.00373863406, -0.003525201, 0.0104439864, -0.0102020958, -0.0155806057, -0.0123435399, 0.00115609518, -0.00225705351, 0.00786144752, -0.00609706808, 0.00385957933, 0.0270348415, -0.0243598148, 0.0267502647, 0.0140510034, -0.0149972225, -0.00935547799, 0.0119807031, -0.00349852187, -0.0083238855, -0.0133253308, -0.011091399, 0.0170177221, 0.0050192317, -0.018867474, -0.0306774303, 0.0302505642, 0.00354832294, 0.0124075692, 0.00164610171, -0.0100384634, 0.02380489, -0.00251317304, 0.0113688624, 0.0249005128, 0.00838080049, -0.00454256497, 0.0247439947, 0.00951911, -0.00161853328, 0.0228088684, -0.0111269718, -0.00499077421, 0.0180564281, -0.0211298633, 0.0127134901, 0.000851063931, -0.0223820023, 0.0119309025, -0.00742746703, -0.00083639042, 0.00410147, -0.00504768966, 0.013830456, 0.00862980634, -0.0053607244, -0.0249716565, -0.0182414036, 0.0137023963, 0.0103657274, 0.00199381961, -0.012578316, -0.0116036385, 0.00199381961, -0.00450699264, 0.00839503, 0.000633629097, 0.0135316495, 0.00443229126, 0.00893572625, 0.00956891105, 0.00100491347, -0.0175584182, -0.00302007631, -0.00127881917, 0.0023388695, 0.0184121504, -0.0317019075, -0.0106787626, -0.0105151301, -0.00467062462, -0.0109491106, 0.00954045355, -0.00848040264, -0.00613975478, -0.00193512545, -0.00369950454, -2.12043415e-05, -0.00676938193, 0.00278352154, -0.00364970369, -0.0145845851, 0.00585873472, 0.0168754328, -0.00868672132, 0.0208452865, -0.00358923082, -0.00899264216, 0.0170888659, -0.00797527842, 0.0294537488, 0.0123150814, 0.0135103064, 0.0234349389, 0.00630694395, 0.0107072201, 0.0273763351, -0.0171030946, 0.00664843665, 0.00465283869, -0.0194935445, -0.00928433333, 0.0317588225, -0.0122225946, -0.0157371238, 0.00307699176, 0.0239898637, 0.00484137097, 0.00437537581, 0.010821051, 0.00758398464, 0.00741323829, -0.00990328938, -0.0127632907, 0.0106929913, -0.0208595153, -0.0218839925, -0.00186220254, 0.0149829937, -0.019522002, 0.019735435, -0.0104866726, -0.0237622019, -0.00209875754, 0.00260743941, -0.0190809071, 0.00405166904, -0.00899975654, 0.0303359386, 0.00250605866, 0.00968985632, 0.00691522798, 0.0114257773, -0.00506547559, -0.0295960363, 0.00259676762, 0.00553147076, 0.00162920495, -1.98009093e-05, 0.0112834889, -0.000689210603, 0.025000114, -0.0187251847, -0.00149136281, 0.0115680667, -0.00619667023, 0.0132541871, 0.0274617076, 0.00258609606, -0.00044909853, 0.00514729135, -0.00896418467, -0.013424933, -0.0365966372, -0.00931279175, -0.00325307413, 0.028201608, -0.0134818489, -0.0133893611, 0.00490895798, -0.0132470727, 0.0412352495, 0.000590942509, 0.000247448828, -0.00996731874, 6.85875711e-05, -0.00667689461, 0.0227946397, 0.0182983186, -0.000248338154, -0.00115342729, 0.0112336883, -0.0133039877, -0.00502990326, -0.0131545849, -0.0173734426, -0.00383467879, -0.0105933892, 0.00771915866, 0.0085515473, 0.0261099655, 0.00468841055, -0.0265083741, 0.0144067248, -0.0111340862, -0.0243455861, -0.0141577199, 0.010358613, 0.00134729559, 0.0186967272, 0.0289841965, -0.0022588321, -1.88560243e-05, -0.0188105572, -0.000964005536, 0.0137521969, 0.0168042891, 0.0091847321, -0.000522466085, 0.00959736854, -0.000323484332, 0.0201623, -0.00311612128, 0.0147268744, 0.01195936, 0.00890726876, -0.0147695607, 0.00752706919, 0.0254127514, 0.00666978, -0.0270348415, 0.0176437907, 0.00398408202, -0.00904955715, 0.0130122965, -0.0255977269, 0.0215425, -0.0151110534, -0.00766935758, -0.0196642894, 0.00911358744, 0.0246017054, 0.00754129793, -0.00380622107, -0.00881478097, 0.0277747419, 0.0258965325, -0.0107214488, 0.0149260787, -0.0142146349, -0.0134818489, 0.00628560083, 0.0273478758, 0.0025665313, 0.00214144401, 0.00204717787, -0.0111483149, 0.0242886711, 0.0110131409, 0.000737233029, -0.0106929913, -0.00627137162, -0.000217212495, 0.000792369887, -0.0174588151, 0.0101736374, -1.98425951e-05, 0.00110985141, -0.0267644934, -0.0141292615, 0.018924389, -0.000926654786, -0.0157513525, 0.0211440921, 0.00807488058, 0.0207883697, -0.00856577605, 0.00252918061, -0.00453900779, -0.00332066114, -0.010166523, -1.40690672e-05, 0.00352342241, -0.00547099812, 0.0113261761, 0.0166335423, -0.011496922, 0.00462082354, -0.0150968246, 0.00341848447, 0.00757687027, -0.00461726636, 0.00409435574, 0.0207314547, 0.00782587472, -0.00845194515, 0.000266791205, -0.00847328827, -0.0126850326, -0.0020667424, -0.0013410704, -0.0125427432, 0.00476666959, -0.0312465858, -0.00946219452, 0.0134747345, -3.64614643e-05, 0.00396629563, -0.0166050848, 0.00309122074, 0.00787567627, -0.0145988148, -0.00952622481, -0.0293114595, 0.00142555428, 0.00623579975, 0.0177718513, 0.00294181751, -0.00757687027, 0.0199346375, -0.00341848447, 0.00233175512, -0.0109775681, 0.000750127947, 0.0210587177, 0.0145988148, 0.00782587472, 0.00240467791, -0.000957780401, 0.00166477705, -0.00492318673, -0.00648480467, -0.00855866168, -0.0100882649, -0.00635674503, -0.00057849224, -0.033181712, -0.0147411032, 0.00306987739, -0.0109206531, 0.0127206044, 0.026081508, -0.00328153186, 0.00393783813, -0.0112977177, -0.0121158781, -0.000446652935, 0.0194223989, 0.00363013893, -0.00898552779, 0.0302505642, -0.0288845934, -0.00320327305, 0.00724960631, -0.0104582151, 0.00409791293, 0.00299161859, 0.00219124509, -0.00422597257, 0.0129553806, 0.0221970286, 0.00909224432, -0.0252989195, 0.0111554293, 0.00172524981, -0.0043326891, 0.00477378396, 0.0059512225, -0.0002253274, -0.00705395918, 0.00337935518, -0.0104439864, -0.0135458782, 0.00808199495, -0.00482358504, -0.00161853328, 0.00676226756, -0.00381333544, -0.0283296686, -0.0237052869, 0.00486627128, -0.0125854304, -0.0143426945, -0.0222112574, 0.010493787, -0.000293692632, 0.0265226029, -0.00305209123, 0.0178714525, -0.00124413625, -0.00121389993, 0.00457102247, -0.00973254256, -0.00386313652, 0.0159078706, 0.00908513, 0.0319864862, -0.00083149923, -0.0174019, -0.0133751323, 0.000721225515, -0.0327263884, 0.00670890929, 0.0181418024, 0.00548878405, 0.0203899629, 0.00198670523, -0.0195504595, 0.0248578247, -0.00330643216, -0.00769070117, -0.0146699585, -0.011361748, -0.0221685693, 0.0115467235, 0.00830965675, -0.0134889632, -0.0129980668, -0.00111696578, 0.0141932918, 0.0105435885, 0.00191200362, 0.00861557666, -0.00264834729, -0.0147553319, 0.000844394148, -0.0257257856, -0.00110095832, -0.0125498576, -0.00560261495, -0.00127081538, -0.00566664524, -0.0133466739, 0.0122083649, 0.0139585156, 0.00887881126, 0.0277320556, -0.0184690654, -0.00227306108, 0.00113653054, -0.00185153086, 0.000419973803, -0.0117032407, 0.010628961, 0.0209733453, -0.0244736467, -0.00899975654, -0.00949065201, 0.0120447334, 0.0102020958, -0.0069792578, 0.00424731569, 0.00422241539, -8.49841163e-05, 0.0190097615, -0.0226238929, -0.0103870705, 0.0194081701, 0.00902821403, 0.0132186143, 0.00358567364, 0.0191235933, -0.00536428159, 0.0006900999, 0.003226395, -0.000192423147, -0.00738478033, 0.0144636398, 0.016662, -0.0384748466, -0.0181702599, -0.0117957285, -0.000542475434, 0.0200769268, -0.00563818729, -0.00641366048, -0.0040338831, -0.0251708608, -0.00410858449, -0.00329042482, 0.0269352403, 0.00855866168, -0.00415838556, -0.0191662796, -0.0112194596, 0.0188390166, -0.00378132053, 0.0120874196, 5.15240499e-05, -0.00137041742, 0.00967562757, 0.0149545362, 0.00578759052, -0.00612552604, -0.00858711917, 0.0122510521, 0.0175015032, 0.0296529531, 0.0149118491, -0.0110487128, 0.0111483149, -0.00726739224, -0.00541052548, -0.0644852147, 0.0127561763, 0.0444794297, 0.0242175255, -0.00692589954, 0.016975034, -0.00759821339, -0.0220405106, -0.00606861059, 0.00552435638, -0.0107499063, 0.00252918061, -0.0061361976, 0.0228230972, -0.00329220342, 0.000401743077, 0.0161639899, 0.012770405, 0.0173022989, -0.00856577605, 0.00098801672, -0.0224389192, 0.017842995, 0.00523622194, -0.00282442942, -0.00336156902, 0.0032512953, -0.0120020472, 0.00310011371, -0.00448920671, -0.00345049961, 0.0237764325, 0.0214998126, -0.00581249082, -0.00946930889, -0.00143355806, -0.00376709178, -0.0237052869, 0.00360701699, -0.0159790143, -0.0138375703, -0.00462793792, -0.0282442942, -0.0251993183, 0.0199488681, 0.0159647856, 0.00842348766, 0.0213575251, 0.0046492815, 0.0203899629, 0.000263678638, 0.0209164303, -0.0187821, -0.000875519763, -0.00826697, -0.00341848447, -0.0138233416, 0.0173734426, 0.0138731422, 0.0189955328, -0.0097823441, -0.0115894098, 0.00463860948, -0.00444652, 0.00296671805, 0.00804642215, 0.00309299934, 0.0031036709, 0.00212187925, -0.00415127119, -0.0233353376, 0.0190809071, -0.0044749775, -0.00995309, 0.00613975478, 0.00594410812, -0.00623224257, -0.0111554293, -0.0120162759, -0.00628915802, 0.0162635911, -0.00830965675, 0.00527890865, 0.00885746814, -0.00326374569, -0.010628961, 0.00296849664, 0.00930567738, -0.00184619508, -0.000833277823, 0.0199346375, 0.00172969629, -0.00552791357, 0.0243029, 0.00200271257, 0.00293648173, -0.00519709243, 0.00756975543, -0.000711887842, 0.0135245351, 0.0183267761, 0.0088076666, 0.00877920911, -0.0100171203, 0.0228515547, -0.00860134792, -0.0217559338, 0.0172311533, -0.00944796577, 0.00758398464, 0.0159505568, -0.0102518965, 0.0130478684, -0.0227377247, 0.0100882649, 0.0267218072, -0.000113942071, -0.00173236418, -0.0059761228, -0.000470441824, -0.00606149621, -0.0230934471, 0.0105009014, -0.0053180377, -0.00710376026, 0.0190382209, -0.00996020436, -0.00505836122, -0.0271059852, 0.00697214343, 0.0110415984, 0.0288561359, 0.0130620971, -0.022936929, -0.00148958422, -0.025868075, 0.00542119704, 0.0354014151, 0.0206318535, 0.00244202884, 0.0090211, -0.00519353524, 0.00401253952, -0.0231361333, 0.0194935445, 0.000177860798, -0.0134747345, -0.00774761662, -0.01789991, -5.49701035e-05, 0.000779474969, -0.0194935445, -0.00650970545, 0.00216456596, -0.0125854304, -0.0227804109, 0.00741323829, -0.00361591, 0.0224958342, -0.0245163329, 0.0140865752, 0.0319580287, -0.0172169246, -0.00582316238, 0.0167473722, -0.0108423941, 0.00243313564, -0.00597968, -0.0110700559, -0.00923453271, 0.00892861187, -0.00563463, 0.0164343379, 0.00179194752, 0.0252562333, -0.0114898076, -0.00892861187, -0.00872940756, -0.012172793, 0.0136668235, 0.0137450825, 0.01778608, -0.0203045886, 0.0205607079, 0.00970408507, -0.0178145375, -0.000797261, -0.000638075639, -0.0124431411, 0.0247013085, 0.00523977913, 0.00554925716, 0.0133893611, 0.0046314951, -0.00695791468, 0.0172169246, -0.00523266476, -0.00538562518, -0.0139158294, -0.000188865932, -0.0128486641, -0.016704686, 0.000223771116, -0.00900687091, 0.0156375207, -0.00636030221, 0.00766224321, -0.00719269086, -0.0104511008, -0.0257969312, 0.0091847321, -0.00267502642, 0.0182556324, 0.0103657274, -0.00861557666, -0.00874363724, -0.0286853891, 0.00358389504, 0.00867960695, 0.00461726636, 0.0032975392, 0.00954045355, 0.0205749366, 0.0158509538, 0.0268214084, -0.00723182, 0.0176295619, 0.00778318848, -0.0339785255, 0.000133617927, -0.00749861123, 0.0110842846, -0.0067764963, -0.0164912529, -0.00431134598, 0.0160074718, -0.00227839686, 0.0210587177, -0.00592987891, 0.0154383173, 0.0222966298, 0.0136597091, -0.0122937383, 0.00981791597, 0.014235978, 0.0280308612, 0.00825985521, -0.0108068222, 0.0176864788, -0.00246515078, -0.0216136444, 0.00180350849, -0.0137379682, 0.00991040375, 0.0170034915, 0.00264479, -0.00294003892, 0.018654041, 0.0118811009, 0.0226950385, -0.0145703563, -0.00613975478, 0.00744169578, -0.00546388375, 0.00192089658, -0.0141150327, 0.00914204493, -0.0294252913, 0.000450210151, -0.00539273955, -0.00591920735, 0.00226238929, -0.0139229437, 0.00116143096, -0.0117316982, -0.00345049961, 0.00151181675, 0.0108352797, -0.0106929913, -0.00189066026, -0.0213859826, -0.0115538379, 0.00231930474, 0.00523622194, -0.0165197104, -0.00880055223, -0.0250712577, -0.0135529926, 0.00341314869, 0.000601614127, 0.0297098681, -0.0150399096, -0.00269459118, -0.0136454804, -0.0352022089, -0.00751284, 0.0274047926, -0.0103230411, -0.00256475271, -0.00553147076, 0.0333809145, 0.0118313, -0.0039200522, 0.0179141406, -0.0267360359, -0.0152960289, -0.0222681724, -0.0309620071, -0.00136152445, 0.0118028428, -0.021741705, 0.0321003161, 0.000340825762, -0.0112621458, 0.00274439203, -0.0223393161, -0.0204895642, -0.00385957933, -0.0018764314, -0.0190951359, -0.0155379195, 0.0179710556, -0.00349496468, 0.00854443293, 0.011575181, -0.018383693, 0.00982503, -0.00240645651, 0.0113475192, -0.0115822954, -0.00769070117, -0.00123880047, -0.00243847165, -0.0130763259, -0.0141150327, 0.0140723465, -0.0154952332, -0.0252277758, 0.0131972712, -0.014698416, 0.00803930778, -0.00132328435, -0.0170746371, -0.0139869731, -0.0121799074, -0.00326552428, -0.00723182, 0.00518642087, 0.00941950828, 0.00687254127, -0.0132470727, 0.000122723955, 0.00589430705, 0.00947642326, -0.000702994817, -0.0118953306, -0.0229511578, -0.0328402184, 0.0266506616, 0.0119095594, 0.0234918538, -0.0106431898, -0.0250143427, -0.0132613014, -0.00786144752, -0.00656306371, -0.000479334849, 0.00035260903, -0.00343627064, 0.00223393156, -0.000262344693, -0.00849463139, -0.0071642329, 0.0688677, 0.0241606105, 0.0153102577, -0.0354867876, -0.00223748875, -0.0194223989, -0.0293114595, 0.0403815173, -0.0139442869, 0.00395918125, -0.0188959315, -0.0110558271, 0.00633540144, 0.00471331133, -0.0136668235, -0.000956001808, 0.00468129618, 0.00622157054, 0.00315525057, -0.00661642151, -0.00223748875, 0.0142004061, 0.0095546823, -0.00951199513, 0.00065541704, 0.000152070977, 0.00059805694, 0.0181560311, -0.0127419475, 0.0130905546, -0.00512594823, 0.0149972225, 0.010436872, -0.00104582147, -0.0313604176, -1.90783503e-05, 0.0112408027, -0.000668311957, -0.008331, -0.0241463818, 0.0117245838, 0.0192943402, 0.00786856189, 0.0166193135, 0.00354476576, 0.0191947371, -0.000318370818, 0.0080677662, -0.0107854791, -0.0130265253, -0.0100811496, 0.0026803622, 0.0198208075, -0.0387878828, -0.000414193346, 0.0400400236, -0.0069081136, -0.00263767573, 0.00503346045, 0.028144693, -0.00193868275, -0.00528958, 0.00641010329, 0.0186967272, 0.0137521969, 0.00502634607, -0.0220831968, -0.00699704373, 0.00572000351, -0.010956225, 0.0102376677, -0.0108779669, -0.00496587344, 0.00936970674, 0.0112763746, 0.000126392333, 0.0192516521, -0.00461726636, 0.00935547799, -0.0118811009, -0.00205073506, 0.00594410812, -0.0121585643, -0.0161213037, 0.00234776246, -0.014563242, -0.000486004632, -0.0159505568, 0.00379199232, -0.00897129904, 0.00457813684, 0.00892861187, 0.00767647196, -0.00127970846, 0.0120091615, 0.00254163076, 0.00135529926, 0.00339714135, -0.000366615568, -0.00209342153, 0.0219409075, 0.00706107356, -0.0139371725, 0.0159221, -0.000484670687, 0.00571288867, -0.0222539436, -0.0045888084, 0.0122510521, 0.00434691785, 0.0102518965, -0.0163631942, 0.0196785182, 0.0244025011, -0.00351452944, 0.0111127431, 0.0125356289, -0.00291513861, -0.000201983174, 0.000227550656, 0.0212294646, -0.0127348332, -0.0175299607, -0.0234633964, -0.0024953871, -0.00555992872, 0.00988906063, -0.0144067248, 0.00759109901, -0.0109419962, 0.00395918125, -0.0121443355, 0.00947642326, 0.00500500295, 0.00808910932, 0.0167900603, -0.0173592139, -0.00890726876, -0.00858711917, 0.00807488058, 0.00369950454, -0.00431846036, 0.0157371238, 0.0266364329, 0.000145623533, 0.00400186796, 0.0112977177, -0.0209448878, 0.0191378221, 0.00258076028, -0.00451410701, 0.0299090724, 0.00649547623, 0.0104012992, -0.00800373591, 0.0111056287, -0.0134320473, -0.0119807031, 0.0278885737, -0.0107214488, -0.00585873472, 0.000837279717, 0.0231503621, -0.00141666131, 0.0055456995, -0.0227946397, 0.033466287, 0.0202761311, 0.00477022678, 0.0147268744, -0.00263767573, -0.000336156896, -0.0155236907, 0.0198208075, -0.00442873407, -0.0022944042, -0.0140510034, 0.0121229924, 0.00540341111, -0.00579826208, 0.00736343721, -0.0115467235, -0.0032975392, 0.0297667831, 0.000640743528, -0.0202049874, -0.0103159267, -0.00604015263, 0.0228373259, 0.00639587454, 0.00147268747, -0.00289735245, -0.00719624804, -0.0090211, -0.0123435399, -0.0147411032, 0.00956891105, 0.00504413247, -0.0124431411, 0.0148976203, 0.020717226, 0.00334378309, -0.00729940739, 0.0132613014, -0.0113190608, 0.0225527491, -0.020119613, 0.00312323566, 0.00406945497, -0.0205749366, 0.0104084136]
23 Oct, 2024
How to Sort an Array in Descending Order using STL in C++? 23 Oct, 2024 Sort an array in descending order means arranging the elements in such a way that the largest element at first place, second largest at second place and so on. In this article, we will learn how to sort an array in descending order using STL in C++. Examples Input: arr[] = {11, 9, 45, 21};Output: 78 45 23 21 11 9Explanation: As the elements are sorted in decreasing order. Input: arr[] = {11, 9, 56, 1, 89, 7};Output: 89 56 11 9 7 1Explanation: As the elements are sorted in decreasing order. C++ STL provides the following different methods to sort an array in descending order: Table of Content Using std::sort() FunctionUsing std::stable_sort() FunctionUsing std::partial_sort() FunctionUsing std::sort() FunctionC++ STL provides the std::sort() algorithm to sort the given range of elements. We can also sort the array using this function. By default, it sorts the array in ascending order, but we can change it to descending order using custom comparator function. Syntaxstd::sort(first, last, comp); where, first and last are the iterator to the beginning and the end of the range, and comp is the custom comparator. Example C++ // C++ Program to sort an array in descending // order using std::sort() #include <bits/stdc++.h> using namespace std; // Comparator function bool comp (int a, int b) { return a > b; } int main() { int arr[] = {11, 9, 45, 21}; int n = sizeof(arr) / sizeof(arr[0]); // sort an array in descending order along // with custom comparator sort(arr, arr + n, comp); for (auto i : arr) cout << i << " "; return 0; } Output45 21 11 9 Time Complexity: O(n * log n), where n is the size of the array.Auxiliary Space: O(1) Note: We also can use the std::greater<>() functor as comparator in this code. Using std::stable_sort() FunctionWe can also use std::stable_sort() function is similar to the std::sort() function but preserve the relative order of equal elements in the array while sorting. It also sorts the array in the ascending order by default, so we have to provide custom comparator Syntaxstd::stable_sort(first, last, comp); where, first and last are the iterator to the beginning and the end of the range, and comp is the custom comparator. Example C++ // C++ Program to sort an array in descending // order using std::stable_sort() #include <bits/stdc++.h> using namespace std; int main() { int arr[] = {11, 9, 45, 21}; int n = sizeof(arr) / sizeof(arr[0]); // sort an array in descending order stable_sort(arr, arr + n, greater<>()); for (auto i : arr) cout << i << " "; return 0; } Output45 21 11 9 Time Complexity: O(n * log n), where n is the size of the array.Auxiliary Space: O(1) Using std::partial_sort() FunctionWe can sort an array in descending order using std::partial_sort() function provided by STL in C++. This function is generally used to sort a part of the given range, but we can modify it to sort the whole range. We also have to provide custom comparator for sorting in decreasing order. Syntaxstd::partial_sort(first, middle, last, comp); where, first and last are the iterator to the beginning and the end of the range, and comp is the custom comparator. middle is the iterator to the point till which we have to sort starting from first. Example C++ // C++ Program to sort an array in descending // order using std::partial_sort() #include <bits/stdc++.h> using namespace std; int main() { int arr[] = {11, 9, 45, 21}; int n = sizeof(arr) / sizeof(arr[0]); // Sort array in descending order partial_sort(arr, arr + n, arr + n, greater<int>()); for (auto i: arr) cout << i << " "; return 0; } Output45 21 11 9 Time Complexity: O(n * log n), where n is the size of the array.Auxiliary Space: O(1)
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Find the Peak Element in a 2D Array/Matrix/Search an element in a sorted and rotated array with duplicates/Search for an element in a Mountain Array/How to Sort an Array in Descending Order using STL in C++?
https://www.geeksforgeeks.org/how-to-sort-an-array-in-descending-order-using-stl-in-c/
Data Science & ML
How to Sort an Array in Descending Order using STL in C++?
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, How to Sort an Array in Descending Order using STL in C++?, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Find the Peak Element in a 2D Array, Search an element in a sorted and rotated array with duplicates, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Matrix, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, Search for an element in a Mountain Array, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.0105487388, -0.0060789343, -0.0163255762, 0.0338842, 0.0321825929, -0.0332923383, -0.0355611481, 0.00795933511, -0.0240691267, 0.0418003798, -0.0290999692, -0.0125401141, 0.00871149544, -0.0237608645, 0.0245870072, -0.0279162414, -0.00839090254, 0.0396055505, -0.0159186702, -0.0410358906, -0.0158816781, 0.0294945445, -0.00183416123, 0.045302242, -0.0108446712, 0.0199507419, 0.00780520355, -0.00341554731, -0.0192109123, -0.000723645964, 0.00383786671, -0.000503238349, -0.00722567039, -0.0549446866, 0.0049846028, 0.0153391361, 0.0373367406, -0.000185342753, -0.000897043559, 0.0293219183, -3.67265739e-06, 0.0140444338, 0.0331690311, -0.00864984281, -0.0244390424, 0.0226634499, -0.00682492927, -0.000453916349, 0.0374353826, 0.00869299937, 0.0234895945, -0.00802715216, -0.010875497, 0.014303375, -0.0145993065, 0.00544083118, -0.00465167919, 0.0274970047, -0.0264612436, -0.0506536737, 0.0228730682, -0.0260173455, 0.0120715555, -0.0202590041, -0.000391107897, -0.0430827513, -0.0327004753, 0.0450556315, 0.00886562653, 0.00487671094, -0.0317880176, 0.00918005407, -0.00477498444, 0.00187115266, -0.0363009796, -0.0203576479, 0.0274230223, -0.0182984546, -0.0504563861, 0.0698399246, -0.0220715869, -0.00879780855, -0.0290259868, -0.0307275951, 0.00484896731, 0.0034679519, -0.000723260629, -0.0240321364, 0.0321086086, 0.00983357, -0.00111668045, -0.0267571751, 0.016744813, 0.00584773766, 0.00913689751, 0.0334649645, 0.00872382522, 0.019087607, -0.014488332, 0.0371147916, 0.00101187127, 0.0180025231, 0.0194821823, -0.00802715216, 0.0173983295, -0.0023998227, 0.0171393882, -0.00448521785, -0.0228977297, 0.00370531389, 0.0027604897, 0.0187546834, -0.0178792179, 0.0442911386, -0.0283354782, -0.00763257686, 0.00520963455, -0.070185177, 0.00246764044, 0.0153391361, 0.0216893423, 0.0273983609, 0.00273428741, 0.0419976674, -0.0614058673, 0.0113132298, 0.0232676454, -0.0140937567, -0.00668929378, -0.00341554731, -0.00360358739, -0.00453145709, -0.00722567039, -0.00429717777, -0.0125277834, 0.0214673933, 0.0168681182, 0.0122256866, -0.0115043521, -0.0195684955, -0.0283354782, -0.0210974775, -0.0056103752, 0.014217061, -0.00877314713, 0.00958079472, 0.00421086419, 0.0634280667, -0.0489767268, -0.00104809215, -0.0458201207, -0.0102219805, 0.0380272493, -0.00504009, 0.042688176, -0.00526203914, -0.0138594769, 0.0148952389, -0.015524094, -0.041874364, 0.00560112763, -0.00580149796, -0.00418003788, 0.00277127884, -0.0178052355, 0.0253268369, 0.0563750267, 0.00945749, -0.0613565445, 0.0166831594, 0.0408386, 0.0293465797, 0.00210234942, 0.00158601, -0.0248089563, -0.0181011669, 0.0260420069, 0.020443961, 0.0168064646, -0.00476265373, 0.00370531389, -0.00895194, 0.00463010091, -0.00161683618, -0.00355426525, 9.86439627e-05, 0.0119605809, 0.00125231594, 0.0402713977, 0.0122750085, -0.0396548733, 0.0111652641, 0.0311961528, 0.017509304, 0.00410605501, 0.000720948679, -0.0349692851, -0.0212454442, -0.024056796, 0.0308262389, -0.00595871173, -0.0146116372, 0.00634404, -0.00990755297, 0.0533663854, -0.0227990858, 0.0016045057, -0.00691740774, 0.00486438, -0.0141060865, -0.0103576165, 0.0322072543, -0.0311961528, 0.00174630643, -0.0154131195, 0.0103206243, -0.0238471776, 0.0301850531, -0.0184957422, -0.00903208833, 0.00457461365, -0.0325525068, 0.05578316, -0.0380765684, -0.029198613, -0.0381012298, 0.0166215077, 0.0244513731, 0.0390136875, -3.70155685e-05, 0.0139951119, 0.00502467668, -0.0100185275, -0.0166461691, 0.0590877347, -0.0292725954, -0.0442418158, 0.0410358906, -0.00712086121, 0.00861901604, 0.0296918321, 0.0336375907, -0.0322072543, 0.00230426132, 0.0168804489, 0.012996342, 0.00809497, -0.0222195536, 0.0292725954, 0.0277929362, -0.00231350912, -0.0107336966, 0.00614058692, -0.00593096809, -0.00709003489, -0.00137562095, -0.0271764118, -0.0157460421, 0.0163009148, -0.00479656272, -0.0138348155, 0.0290999692, 0.016473541, 0.0145376539, 0.0253514983, 0.00976575259, 0.0239704829, 0.0144760013, 0.00213625841, -0.0777807683, -0.00921704527, -0.014303375, -0.0061621652, -0.0207892153, 0.0136991804, 0.00536068296, -0.0222565439, 0.00877931248, 0.00442048255, -0.0211468, -0.00266184565, -0.0156350676, 0.0193712078, 0.058989089, 0.00647351, -0.0461407155, 0.00771889, -0.0188903194, -0.038767077, -0.00943282899, -0.0214920528, -0.0102651371, 0.000502467679, -0.00781136891, 0.0208755285, 0.0247966256, -0.0248336177, -0.0261899717, -0.0220345948, 0.00115136, 0.0153637975, -0.0224784929, 0.0208878592, -0.00222103042, -0.0360790305, -0.0226634499, -0.0199754033, -0.0249199308, 0.00715168752, -0.000763720076, 0.00426635146, -0.0163872279, 0.000612671487, 0.00103730289, -0.00787302107, -0.0096116215, 0.0591370575, 0.014303375, -0.0303083584, 0.00902592298, -0.0216400195, -0.0207398925, -0.00770655973, 0.00869916473, -0.003384721, -0.0256474297, 0.00549940113, 0.00845255423, -0.0126017667, -0.0445130877, -0.00644268375, 0.0190506149, -0.0624416284, -0.0096486127, 0.00569052342, -0.0101171713, -0.0373614021, 0.0051880558, -0.0218373071, 0.00986439642, 0.00646118, -0.000515954162, -0.0120653901, 0.00627005706, 0.0193465482, -0.0147719337, -0.0242417548, 0.00231350912, 0.0413564816, 0.0272997171, 0.000972567825, -0.0271024294, 0.0349446237, 0.00633170921, 0.0658941641, -0.0412085168, 0.0016091296, -0.027349038, 0.00640569255, -0.0202959962, 0.0338102169, 0.0186067168, -0.027077768, -0.0154871019, 0.0147349425, -0.0275956485, 0.00633787457, -0.0163132455, 0.00694206869, 0.00907524489, 0.0131073166, -0.020850867, 0.0142787136, 0.0199260805, -0.0192479026, -0.0138594769, 0.0194698516, -0.00427559949, 0.0143157048, -0.00572443241, -0.0153391361, 0.0478916429, 0.00177867396, 0.0162885841, -0.0150678651, -0.0327991173, -0.0393836, 0.0183354467, -0.0134279095, 0.0146732898, -0.005336022, 0.00562887127, 0.0145376539, -0.00282522477, -0.00728732301, 0.0014812008, -0.00711469585, 0.0210358258, -0.0256474297, -0.0390630104, 0.0341801345, 0.0104994169, 0.0412085168, -0.032725133, -0.0232923049, 0.0364982672, -0.00971026532, -0.0146116372, 0.0223921798, -0.00446363958, 0.00284834439, 0.0236868821, -0.0311714932, 0.00518497312, 0.0312701352, 0.016202271, -0.0134402402, 0.0408632606, 0.0163379069, 0.0111406026, -0.00156211969, 0.0343034379, -0.0292725954, -0.00062307535, 0.0300370865, 0.0208262075, -0.00802098773, 0.0107275313, 0.00392418029, 0.0132799437, -0.0260173455, 0.0337608978, -0.0258693788, 0.0220469255, -0.00847105, -0.0441431738, 0.0135018928, -0.00327066402, -0.0286807325, -0.0313687809, 0.00384403206, 0.0442418158, 0.00735514052, 0.0177312531, -0.00890261773, 0.0188903194, -0.0249199308, 0.0316647105, -0.0021717085, 0.0116276573, -0.0350679308, -0.0113070644, -0.000233508763, -0.0120838853, 0.0629348457, -0.0298891217, -0.00175247167, -0.0135882059, 0.0461900346, 0.0210728161, 0.00118141563, -0.00418003788, -0.00822444074, -0.0265845489, -0.0037885448, 0.0268558189, 0.0206659101, 0.014303375, -0.0196178183, -0.0106905391, -0.0288040377, -0.0203823093, 0.0139211295, 0.0043125907, 0.0484095253, 0.0195561666, -0.00641185744, -0.0149075687, -0.00400741119, -0.0579040051, 0.0102466419, -0.00291616214, -0.0162392631, -0.0202713348, -0.00396117149, -0.0150308739, 0.00999386609, -0.0199754033, -0.0239828136, -0.0342541151, -0.00116754381, 0.0215167142, -0.010604226, -0.0255981088, 0.00821211, 0.0283354782, -0.04377326, 0.00520346919, -0.0180888362, 0.0313687809, 0.0332430154, -0.0400494486, -0.0365722477, 0.0411838554, -0.0022087, -0.0464859679, -0.0382985175, 0.00784836058, -0.00771889, -0.0106288875, 0.0334649645, -0.00372997485, 0.00292541, 0.0081134662, -0.0112947337, -0.0159679912, -0.0115166828, -0.00860668626, -0.0229593832, 0.0124353049, 0.0242787451, -0.00269267196, -0.0139211295, 0.0185080729, 0.00771272508, 0.0272997171, 0.00814429205, -0.0164488815, 0.0237978566, -0.0101664932, -0.0292972568, 0.00641185744, -0.0208878592, 0.00268804794, -0.0155857466, -0.0217879862, -0.0046825055, 0.0151418485, -0.0243773889, 0.0365722477, 0.00465167919, 0.0322319157, -0.0166954901, 0.0221948922, -0.0166708305, 0.0265598875, 0.0259433631, 0.0207892153, -0.00271579158, -0.00595562952, -0.00734897517, 0.0411345325, -0.0119852414, -0.00960545614, -0.0330210663, 0.0230950173, -0.0318620019, -0.0264119208, -0.00565969758, 0.00855119899, -0.0211468, 0.0357830971, 0.0108138444, 0.0103761116, -0.0135018928, -0.0474970676, 0.033933524, 0.0259926841, -0.00434341701, 0.0113625517, 0.00496302452, -0.0355364867, 0.00771272508, 0.0153268054, -0.00028764733, 0.0329964049, -0.0206412487, 0.0109494803, -0.00998153631, -0.00495069381, -0.00703454763, -0.00963628199, -0.0231196787, -0.0225031544, -0.029198613, -0.012312, -0.0391123332, -0.00478423201, 0.0175956171, 0.00807031, -0.0113070644, 0.0186560396, -0.00631937897, 0.0198397674, -0.0204932839, 0.0231566709, 0.00729965325, -0.0354378447, -0.0279655643, 0.00901359227, 0.0158693474, 0.0357584357, 0.000379740726, -0.00652283197, -0.00175247167, -0.0118434411, 0.0234772637, 0.0058415723, 0.0095191421, -0.00523121282, -0.0736870393, -0.00035064845, 0.0183477774, -0.0183847696, -0.0117078051, 0.00875465199, -0.00631013094, 0.0320099667, -0.0264365822, -0.0044174, -0.020850867, -0.00985823106, -0.0245006941, 0.00760175055, 0.014981552, 0.0392109752, -0.0165351946, -0.00412763329, -0.0132799437, -0.0381258912, -0.00858819, -0.0407892801, 0.00119759934, -0.0186313782, -0.012996342, -0.00531444373, 0.0184710827, 0.0174476504, -0.0312947966, 0.0337855592, -0.0316400528, -0.00430950802, 0.00578608504, 0.04801495, -0.00395192392, 0.00919238478, -0.0154871019, 0.0125647746, 0.0100061968, 0.0189766325, -0.00550248381, 0.0277929362, 0.0164982025, 0.00307645858, -0.0154624414, -0.0230333656, 0.0189149808, 0.0243403986, 0.0174353197, 0.0159186702, -0.0195315052, -0.0385697894, 0.0234402716, 0.0040937243, -0.0119482502, 0.00841556303, -0.00452837441, -0.0162146017, 0.0294698849, -0.0286807325, -0.0165721867, -0.0159803219, -0.00114288274, 0.0341554731, -0.0051510646, -0.026313277, -0.00244606193, 0.0514921471, 0.0262886155, 0.00438349135, -0.000840015, 0.00234895945, 0.0218496379, 0.00581691135, -0.0244513731, -0.0043125907, -0.0229717121, -0.019494513, 0.0219729431, -0.0231936611, -0.00689891214, -0.00688658189, 0.0317880176, 0.0168434568, -0.0115783354, -0.00891494844, 0.0143650267, 0.0089211138, -0.0207892153, -0.0219606124, 0.0312454756, -0.015388458, -0.0400494486, -0.0304316636, -0.0199754033, 0.0296918321, 0.00222565443, 0.0124353049, -0.0142787136, -0.00252158637, 0.0192479026, 0.00860668626, -0.015166509, 0.0184957422, 0.0277189538, 0.0300864093, -0.0227867551, -0.00196209014, -0.0142787136, -0.0339828469, 0.00660298, 0.0110049676, 0.012503122, -0.0194575209, 0.0325771682, -0.0202096812, -0.0347719975, 0.0213070959, -0.0130333332, 0.00290691433, 0.00381320575, 0.00837240648, 0.0114611955, 0.0116584832, -0.0232676454, -0.0252405237, 0.00915539265, -0.0130456639, -0.0156350676, -0.0166338384, 0.002668011, -0.0151788397, -0.030505646, 0.00927253254, 0.00338780368, 0.0180148538, 0.0140567645, 0.00543774851, -0.00890261773, 0.0223305281, -0.00201449473, 0.00429101242, -0.0123366611, -0.00838473719, 0.0253268369, -0.0243157372, 0.00648584077, -0.00213009305, 0.0321825929, 0.00131165644, 0.013131978, 0.0355611481, 0.00295623625, 0.0358077586, -0.0405180082, -0.03935894, -0.0495439321, 0.0296671726, 0.0124599654, -0.000765646691, 0.0164118893, -0.0100493534, 0.00255857781, -0.0199137498, -0.0198397674, -0.00925403647, 0.00796550047, -0.00331998593, 0.0276696309, -0.00168465392, -0.0210481565, 0.0387424156, -0.0125462795, -0.0102651371, 0.00894577429, -0.0309248827, 0.0224661622, 0.0072749923, 0.0527745187, 0.00277127884, -0.0110049676, -0.00339705148, 0.00491678482, 0.0429347865, -0.00250925589, -0.0217263326, -0.0396548733, -0.0356597938, -0.0373120792, -0.0121578686, 0.00360666984, -0.0159679912, 0.00434958236, 0.00702838227, 0.0278175976, -0.0241307802, -0.0270284452, 0.0261899717, 0.0241924319, 0.00773122068, -0.00582924159, -0.00376080116, -0.00850187615, 0.014759603, 0.00493528089, 0.00875465199, -0.00262947823, -0.00844639, 0.0143280355, -0.0173490066, 0.00683725951, 0.0067879376, 0.0160543043, 0.0141430786, -0.0518867262, 0.00935884565, 0.00396117149, 0.00736130588, 0.0201973524, 0.00663997186, 0.0120530594, 0.00408447674, -0.0224661622, 0.0199384112, -0.0140937567, -0.00458386168, 0.0242787451, 0.0276696309, 0.00281905942, 0.0136621892, 0.0174229909, -0.00812579691, 0.000342556566, -0.0216893423, 0.0357584357, -0.0203329865, -0.044093851, 0.0142047303, 0.00566586247, -0.0106843747, 0.0203823093, -0.0298891217, -0.0243527293, 0.0263379384, 0.0286560711, 0.0498152, -0.0545994341, -0.0107460264, -0.0139334602, 0.000386098633, 0.0237238724, 0.00572134973, -0.00700372132, -0.00464243162, 0.0243897196, 0.020037055, -0.0186067168, 0.00661531091, -0.0219729431, -0.0431567356, 0.0239334907, 0.00700372132, -0.0203206558, -0.025721414, -0.0281875134, 0.00129161938, -0.0211468, 0.0352898762, 0.0140444338, 0.0195068438, 0.0243280679, -0.0232553147, -0.0337362364, -0.0373120792, -0.0131073166, 0.0168804489, -0.0104994169, 0.0153144756, -0.00918005407, -0.030505646, 0.0315167457, -0.0179285407, -0.0200000629, -0.0329964049, 0.0239704829, -0.0109248189, 0.0246486608, -0.0155364238, 0.00572751509, -0.0325771682, 0.0150062125, -0.0149692213, 0.0214304011, 0.00569052342, 0.0410605483, 0.0212207828, 0.0222565439, 0.0272257347, 0.0183970984, 0.0370161459, 0.00681876391, -0.00159063388, -0.021800315, -0.0183354467, 0.0309495442, -0.00444206083, -0.022293536, -0.0214920528, 0.0252405237, -0.00696673, -0.00113748817, 0.00812579691, 0.0146239679, 0.0287547149, -0.00271733291, 0.00333539909, -0.02039464, -0.00869916473, -0.0149198994, -0.0169914234, -0.00156443159, 0.00454378733, 0.00705920858, -0.034032166, 0.00845255423, -0.00186344609, -0.000245646603, -0.014303375, -0.0750680566, -0.0308509, -0.0183354467, 0.00444822619, 0.036646232, -0.0207029022, -0.024771966, 0.0171270575, -0.0430580899, -0.0271270908, -0.00129470206, 0.00994454417, 0.00665230211, 0.0156350676, 0.00445439154, -0.041381143, -0.00182337197, -0.00154593587, -0.0255241264, -0.0020792298, 0.0149198994, 0.0261899717, 0.0278669205, -0.00802715216, 0.0286067501, -0.0104254335, -0.0023905749, -0.0186437089, -0.00144575059, 0.00694823405, 0.0153021449, -0.00808263943, 0.0191862509, -0.0126634184, 0.0164858717, -0.00201449473, -0.0402713977, 0.038446486, 0.00567202782, -0.0420469902, 0.0086375121, -0.00662147626, 0.0117632924, 0.0195561666, -0.0111036114, 0.0275956485, 0.0294452235, -0.0188163351, 0.0117817884, 0.00935268123, 0.00224877405, 0.0241307802, 0.00222565443, 0.012096216, 0.0516894385, -0.0328731, 0.0112639079, 0.0205302741, 0.00837857183, -0.00368065294, -0.0138224857, -0.017151719, 0.00514181657, 0.0182368029, -0.0187793449, 0.00501234643, 0.0487794392, 0.00592788588, 0.0172996856, -0.0117941191, -0.00889645237, -0.0140690953, 0.011911259, -0.0357830971, -0.0209618416, 0.00305796275, 0.000173879249, 0.0224168412, 0.0172873549, 0.0135265533, 0.0238965, 0.00136868504, -0.0148582468, -0.0500618108, 0.0178545583, 0.0200863779, 0.00394575857, -6.45906039e-05, 0.0102713024, 0.00345562142, -0.00549940113, -0.023107348, -0.0336869135, -0.00858819, -0.00430334313, 0.00209156028, -0.0120099029, -0.0147842644, -0.00863134675, -0.0355611481, 0.0216276888, -0.00707153929, 0.000692049041, 0.00991988368, 0.017016083, 0.0252158623, -0.00327682914, -0.01791621, -0.00979041308, -0.0223675184, 0.000826913863, 0.0196918, 0.00393034564, 0.0103946077, 0.00280981162, -0.00218558032, -6.6324581e-05, -0.0156350676, 0.00853886828, -0.0141060865, 0.00359433936, 0.0010611933, -0.0102651371, -0.0190136246, 0.00191585068, -0.0088286344, 0.0154007887, 0.0452035964, 0.0183601081, 0.0100740148, 0.00754009793, -0.00594638148, 0.0355118252, -0.0422689393, -0.0154377799, -0.0248582792, -0.00649200566, 0.0233786199, 0.0216030274, -0.0143403662, 0.013538884, -0.0292479359, 0.0335636102, -0.0331690311, -0.014217061, 0.0143157048, -0.0140690953, -0.00241215318, 0.0233169664, -0.00314735901, 0.00573676312, -0.0329224244, 0.00553022698, 0.0216400195, 0.0327744558, 0.00286684022, 0.00225031539, 0.00302559533, 0.034032166, 0.0361283533, -0.00709620025, 0.0175832864, -0.019630149, 0.0101726586, -0.00948831625, -0.006972895, -0.00792850833, 0.0159063395, -0.00436807796, -0.0122873383, -0.00195284223, 0.00049938506, 0.00403515482, 0.016559856, -0.000514412881, 0.0399508066, -0.0216153581, 0.0210358258, -0.0184834134, -0.00411838526, 0.00450063078, 0.00446672179, -0.00247997092, 0.0290506463, 0.00578300236, 0.011146768, -0.00841556303, -0.0347226746, -0.0185943879, 0.0134772314, -0.0191246, 0.0345500484, -0.00884096511, 0.00486129802, 0.0155857466, 0.0386437736, 0.0035604306, -0.0251172185, 0.0418497026, -0.0064488491, 0.00192047469, 0.00446672179, 0.020937182, 0.00640569255, 0.0163502377, 0.001872694, -0.0016091296, 0.0072564967, 0.00139180466, -0.0187670141, -0.00831691921, -0.0269544628, -0.00021019642, 0.00713935681, 0.00459310971, 0.0235759076, -0.024821287, 0.020443961, -0.0127620632, 0.00541308755, -0.00164612115, 0.00142802554, -0.0217633247, 0.0185080729, -0.00263564335, -0.0302836969, -0.0224168412, 0.0268804803, -0.0120345633, -0.0163132455, 0.0289766639, 0.0189273097, 0.00194975955, -0.0289520025, 0.0148582468, -0.0133415964, -0.0170037523, -0.0314920843, -0.00475340616, 0.020443961, -0.000823060574, 0.0181134976, 0.0147349425, -0.0167078208, 0.0069543994, -0.00858819, 0.00212084525, 0.0146979503, 0.0192479026, -0.00162146019, 0.00491678482, -0.0122133559, -0.00503392471, -0.02188663, 0.00791617762, 0.00478423201, 0.0248582792, 0.0150678651, -0.000751774875, -0.0176202785, -0.0104192691, -0.0030070995, -0.0121208774, 0.00803331751, -0.0313934423, -0.00793467369, -0.000425402104, -0.0129346894, 0.0258200578, 0.0251665413, -0.0129716815, -0.00101726584, -0.00892727915, 0.00276819617, -0.0146486284, 0.00295161223, 0.0166831594, -0.00689891214, -0.0160419755, -0.0400247872, -0.0074784453, 0.0081134662, 0.00234895945, -0.0265845489, -0.0207275636, -0.0127127403, 0.0303330179, 0.0267325137, -0.00717634847, -0.0123366611, -0.0202096812, 0.00815662276, -0.0317140333, -0.00672628544, 0.0174353197, -0.0168434568, 0.0239704829, -0.0302590355, 0.0163502377, 0.0459680855, 0.0279655643, -0.028384801, -0.0499878302, 0.012860707, -0.0226757806, 0.0409865677, -0.00137253827, 0.00399816316, 0.0184464213, -0.00641802279, -0.000635791162, 0.00302405399, -0.00507399905, -0.0109063229, -0.0226141289, 0.0102589726, -0.00988289248, 0.00803331751, -0.0163255762, -0.0119420849, 0.0177065916, 0.0282861572, 0.0210234951, -0.0240814574, 0.00577067165, 0.0122565124, 0.0276696309, -0.00816278812, 0.0178668872, 0.00966710877, -0.0251295492, 0.00895194, -0.0205549356, 0.0273983609, -0.00615908252, 0.0159803219, -0.0146609591, 0.0223551877, 0.0338595398, -0.0067879376, 0.00868066866, 0.00112284569, 0.00522504747, -0.0235019252, -0.017373668, -0.0284094606, -0.0056566149, 0.0140321041, 0.00364057883, -0.00861901604, 0.00463010091, -0.00378237944, -0.00837857183, 0.0266585313, 0.0219606124, -0.00579225039, -0.0157460421, -0.0270037856, 0.0218249764, -0.00924787112, -0.00979041308, -0.0153514668, 0.00177250872, -0.0113008991, 0.0227374341, -0.0308509, -0.0186930317, 0.0146486284, -0.0257953964, -0.0199630726, -0.00549940113, -0.0102158152, -0.0266831927, -0.00718251336, 0.0207892153, -0.000164053388, 0.0220715869, 0.023514254, 0.000579918618, 0.00181258284, 0.0029716494, -0.00260481727, 0.00322750723, -0.00726266159, -0.00937117636, 0.00506166834, 0.00190043764, -0.0121640339, 0.00404748507, -0.018273795, 0.004580779, 0.0165228639, 0.0101171713, 0.0215413757, -1.99166407e-05, 0.0158940088, -0.036646232, -0.0272257347, 0.0189273097, 0.0366955549, -0.0100493534, -0.00881013926, 0.00702838227, 0.0430334285, -9.41645267e-05, -0.00156520226, -0.0251048878, -0.0253021773, 0.00573059777, 0.010314459, -0.0271764118, 0.0114796916, -0.0122133559, -0.00951297767, 0.0182244722, -0.00177405006, -0.0216523502, -0.00531752594, -0.0161036272, -0.00869916473, 0.0259680226, -0.00399816316, 0.0459187664, 0.0137854936, 0.00244143815, -0.0220962483, -0.0131566385, 0.0151048573, -0.0111221066, 0.00888412166, 0.0125771053, -0.0147842644, -0.00204223837, 0.00508016394, -0.0124846268, 0.0233539585, 0.0165351946, -0.00755242864, -0.00321517675, 0.00285142707, 0.034204796, -0.0105425734, 0.0303576794, -0.0227497648, 0.00638103159, 0.00305025629, 0.0101356674, -0.00333231641, -0.0163255762, 0.0283354782, 0.000772197265, -0.000357584358, 0.0145499846, 0.0306042898, 0.0180148538, 0.00277127884, -0.0128730368, 0.0130456639, 0.00366523978, -0.0105610695, 0.0353145376, -0.00269729597, 0.00467634061, 6.03519948e-05, -0.00969793461, -0.00129007804, 0.00857585948, 0.0215413757, 0.0166215077, 0.00384711451, -0.035018608, -0.0145869758, 0.0203576479, 0.00539459195, -0.00376080116, 0.027077768, -0.0261406507, 0.00206227531, -0.026313277, -0.0254254807, -0.0016615343, 0.00500926375, 0.0258200578, -0.00457153097, -0.0196178183, -0.0233169664, 0.00530519569, -0.0401234329, -0.00853886828, 0.0163502377, 0.0250678975, 0.00292078615, 0.00780520355, 0.027349038, -0.0151295178, -0.0207892153, -0.00480272807, 0.0186560396, 0.0103452858, 0.0130949859, 0.0459927469, -0.0101603279, -0.00966710877, 0.0136375278, -0.0023258396, -0.0146979503, 0.0140690953, 0.0147965942, 0.0227867551, -0.0229593832, -0.0234402716, -0.00956846401, -0.0143650267, 0.00503392471, 0.0162762534, 0.0149075687, 0.00529903034, 1.8206747e-05, 0.00195592479, 0.00115675456, -0.0027789853, 0.0315660685, -0.0141184172, 0.020579597, -0.0160296448, 0.021800315, -0.00529903034, -0.00299631036, 0.0420716517, -0.00122380164, -0.00629780069, -0.00566894514, -0.0178668872, 0.0181504898, -0.00023716937, -0.00615291717, 0.00745378435, -0.00815662276, -0.0124661308, -0.00710236514, 0.0126202619, -0.0146116372, 0.000232545441, -0.0167201515, 0.0167571437, -0.00690507749, 0.0293712392, 0.0104131037, -0.00568435853, 0.0253761597, 0.0290753078, 0.0467819, 0.0276449714, 0.0345747098, 0.0260666665, -0.0215906966, -0.0342541151, 0.000520192785, -0.0041584596, 0.0227374341, -0.000141704368, 0.0157460421, 0.0107583571, -0.0274476837, 0.0154871019, 0.00488595897, -0.041159194, 0.00793467369, -0.0415537693, 0.00881630462, 0.0128853675, -0.0337855592, -0.00193280517, 0.00730581861, 0.0107645225, -0.00645501446, 0.0304070022, 0.00322134187, -0.0110481242, -0.00582615891, -0.0257460736, -0.00188964838, -0.0250802282, 0.0354378447, -0.018051846, -0.00037569477, 0.0224168412, -0.0101726586, -0.00731198397, -0.00149969652, -0.00704687834, 0.0104747554, -0.0183724388, 0.024599338, 0.0146856196, 0.00402282411, -0.00194513565, 0.0189766325, 0.0129223596, 0.00139951124, 0.00856969412, -0.0132429525, -0.00289150118, -0.00204994483, -0.00938967243, 0.0346733518, 0.00540383952, -0.000849262869, 0.00739829708, 0.00322750723, 0.0047657364, 0.0131689692, 0.00475340616, -0.00751543697, 0.00183570245, -0.00228884816, 0.0268804803, 0.0204562917, 0.00278977468, -0.0147719337, -0.0160543043, 4.31988792e-06, -0.024056796, 0.0206165891, -0.0100308582, 0.0169544313, -0.00686192093, 0.0189273097, 0.014759603, -0.00134556531, -0.00819361396, 0.018680701, -0.00600803411, 0.00347103435, 0.0151418485, -0.0096116215, -0.00742912339, -0.00834774505, 0.00764490711, 0.00604194263, 0.0253514983, -0.00375771848, 0.014710281, -0.00404131971, 0.0218496379, -0.016966762, 0.00757708959, 0.0156227378, 0.0072749923, 0.0039550066, 0.00726266159, -0.00837240648, 0.0140197733, 0.0116153266, 0.0161899403, 0.0013386294, 0.0226264596, 0.0056936061, -0.000213471707, -0.00117525039, -0.00869299937, 0.00246918178, -0.00674478104, 0.0161282886, 0.000603808963, 0.00303330179, 0.0131073166, 0.0114118736, -0.0114735262, -0.00284834439, -0.0274970047, 0.0255241264, 0.00288995984, 0.00638103159, -0.0133539261, -0.011146768, -0.00898276549, -0.0047657364, 0.0212207828, 0.0125462795, -0.020037055, 0.0161159579, -0.00654749293, 0.0135018928, 0.0101233367, 0.0138348155, 0.00201603607, 0.00497535476, -0.0199630726, -0.00425402075, 0.00262947823, -0.00310882623, -0.0040937243, 0.00805797894, 0.00156674359, 0.0179532021, -0.00310111954, 0.00599262072, 0.0116646485, -0.0076079159, 0.0242170934, 0.0071085305, 0.00795933511, 0.00118758087, -0.0115783354, 0.020628918, 0.026263956, -0.00900126155, 0.00187577656, 0.0188286658, -0.0198890883, -0.0029978517, 0.000765646691, 0.0052712867, 0.00248459494, -0.00287608802, 0.024463702, 0.0200863779, 0.0322565772, -0.0156350676, 0.0137731638, -0.0162392631, 0.000106157859, 0.0168064646, 0.00253854063, 0.00435266504, -0.0030810826, 0.0098459, 0.0112392465, 0.0129716815, -0.00754626328, 0.00479656272, -0.00249384274, 0.0181998108, 0.016017314, 0.00534218736, 0.0185697265, 0.014574646, -0.0012415268, -0.00264335, 0.00637486624, -0.00271887425, 0.00139103399, -0.00576142408, 0.000243141956, 0.0219729431, 0.0176326092, 0.0113440556, -0.00541617, -0.00610359525, 0.0120715555, -0.00877314713, -0.0225771368, -0.0347719975, 0.00159063388, 0.00480889343, 0.00588781154, -0.0257953964, 0.0161406193, -0.0131936297, -0.00956846401, 0.0289520025, 0.0170654058, -0.0136621892, -0.0172380321, -0.00377929676, 0.00689274678, -0.046214696, 0.00126156386, -0.0204069708, -0.0206042584, -0.00105117471, 0.00204840349, -0.00760175055, 0.0179408714, 0.0147472722, -0.0020884776, 2.3396633e-05, -0.0145376539, -0.00581382867, -0.0115228482, 0.00196209014, -0.0164118893, 0.0167571437, -0.0036436615, 0.0014264842, -0.0332923383, -0.00821827538, -0.00927869789, -0.00511407293, 0.00609743, -0.0152035011, 0.00413071597, -0.00985823106, -0.00431567337, 0.0121517032, -0.0128360456, -0.020443961, 0.00319359824, 0.0121270418, -0.00123690278, 0.00510174269, 0.00146270497, -0.0139211295, 0.00718251336, -0.00760175055, -0.0173490066, -0.0229593832, 0.00179716968, -0.00200370559, -0.00739213219, 0.00330149, -0.0174353197, 0.0208878592, -0.0107706878, 0.0209125206, 0.0104870861, -0.0104747554, 0.0112269158, 0.00746611506, -0.00190506154, -0.00575525872, 0.00884713, -0.00569052342, -0.00562578859, 0.00976575259, 0.0100000314, -0.0121886944, 0.0107645225, -0.0015497891, -0.0286807325, -0.0351172499, 0.00786685571, 0.00101032993, 0.0224168412, 0.0152281616, 0.00320284627, 0.000284757378, 0.0102034854, -0.0108816624, -0.0121393725, 0.0148705775, 0.00946365483, 0.000536761887, -0.0288533587, -0.016744813, -0.00116369047, 0.00304563227, -0.00834774505, 0.00289304252, -0.00996304, 0.0163255762, -0.00864367746, -0.0047472408, 0.00600495143, 0.0237115435, 0.00682492927, -0.0130826561, 0.000341400591, 0.0151541792, 0.0118804323, 0.0288533587, -0.025721414, -0.012996342, -0.00755859353, -0.00148813671, 0.00453453977, -0.0132182911, -0.00430334313, 0.00296086026, 0.00421394687, -0.00356351328, -0.0186067168, -0.0094821509, -0.00282214209, -0.0112947337, 0.0250555668, 0.0363749601, 0.00872382522, 0.00872382522, -0.0370901302, 0.0165968463, -0.0187670141, -0.0104069384, -0.00724416599, -0.00875465199, -0.0342541151, -0.00651666662, -0.00585390255, 0.01394579, 0.0266338699, 0.0170037523, -0.00496919, -7.34531477e-06, 0.0170530751, -0.00662147626, 0.00152127491, 0.0201603603, 0.0010111006, 0.00520346919, -0.00938350707, -0.0228237472, 0.00369298342, -0.00471024914, -0.0052527911, 0.00755859353, -0.00895194, -0.00146501698, 0.0383231789, 0.0217016712, -0.0132799437, 0.0100000314, -0.0137361716, -0.00428484706, -0.00125231594, -0.00257861475, 0.00786685571, 0.0157583728, -0.00493219821, -0.0154624414, -0.00599878607, -0.0116708139, -0.0235019252, 0.00848954637, 0.00572134973, -0.0220715869, 0.00974109117, 0.0027512419, -0.00387485814, 0.0254008211, -0.0205179453, 0.0102096498, -0.00353268697, -0.0292725954, 0.0104747554, -0.0121270418, 0.000560652232, -0.000282445399, -0.00123921479, 0.00248921872, -0.0050030984, -0.0212947652, 0.0163132455, -0.0201480296, 0.00260789972, 0.00512948632, 0.000441200536, 0.0182984546, 0.0184957422, 0.00293774065, 0.0108878277, -0.00554564036, 0.000413842266, 0.0191615894, 0.0084340591, -0.00709003489, 0.030012425, -0.00226572854, -0.00856969412, 0.00663380651, -0.004139964, -0.00529286498, -0.024624, -0.0198644288, 0.0150308739, 0.00485821534, 0.0225278158, -0.00460235728, 0.00786069129, 0.00663380651, 0.00455611805, -0.0108570009, -0.0231443401, 0.0055918796, -0.0103637818, 0.00303946715, -6.63727478e-05, 0.0315660685, -0.00401974143, -0.00452837441, 0.0114303697, -0.00771889, -0.00614983449, 0.00734281, -0.0114057083, -0.00795317, -0.00608201697, 0.00344020827, -0.00134556531, -0.0193342175, -0.00541000487, -0.00735514052, -0.0181134976, -0.0263872594, 0.0247349739, -0.00466401, 0.0163748972, -0.0128360456, -0.00014266769, 0.048113592, -0.0012199484, 0.0157707036, -0.0046455143, 0.00810730085, 0.00887795631, 0.0108323405, 0.00726266159, -0.00102343108, -0.00765723782, 0.00434649969, 0.00232275715, -0.0248582792, -0.0103267897, 0.0298644602, 0.0268064979, -0.00426018611, 0.00844639, -0.0240321364, -0.0105425734, -0.0122133559, -0.0118989283, 0.00449138274, -0.01818748, 0.007762047, -0.00859435555, 0.0197534543, 0.00327374646, -0.0151171871, -0.00709003489, 0.00485205, -0.0096116215, -0.00586623326, 0.00600495143, 0.000958696, 0.0245870072, -0.0195191745, -0.012028398, -0.0258447193, -0.00623306539, 0.00905674882, 0.0238965, -0.00130163797, -0.0170284137, -0.0192602333, -0.00228268304, 0.0109679755, 0.00570285413, 0.0252775159, -0.0121517032, 0.0143773574, 0.0171887111, 0.0113872122, 0.0168311261, 0.0316647105, 0.0231443401, 0.0112392465, 0.0155364238, 0.022564806, 0.00667696306, 0.00406906335, -0.0039087669, -0.0116153266, -0.00094405358, 0.000279362779, 0.00734897517, -0.00217787386, -0.0222442131, -0.0191492587, 0.0206535794, -0.00385019719, 0.00792234298, 0.00979657844, -0.00537609588, -0.0022903895, -0.0233292971, 0.00251542102, -0.0115783354, -0.0123983128, -0.013267613, 0.015388458, 0.0258447193, -0.000866988, -0.014488332, 0.0290013254, 0.00212238659, -0.00276203104, 0.0235512462, 0.026313277, 2.35652151e-05, -0.00403823704, 0.00164457981, 0.0182244722, 0.00686192093, -0.00144652126, -0.00281751831, 0.0199754033, -0.00934651587, 0.00663380651, -0.0111282719, -0.0121517032, 0.00991371833, 0.00350802601, -0.00539767416, 0.00459310971, -0.0197041314, 0.00332923373, -0.0170284137, -0.00163841457, 0.00353576965, 0.00119451678, 0.00512332097, 0.027349038, -0.000902438129, -0.0394575857, -0.014759603, 0.00639952719, 0.0149075687, 0.00512640364, 0.00807031, -0.0194328614, 0.00709620025, -0.0072749923, 0.00881630462, 0.0297164936, -0.00898893084, 0.0220962483, 0.00770039437, -0.00434958236, -0.0175709557, -0.0405426696, -0.0145129934, -0.0312701352, 0.0204316303, -0.0243034065, -0.0207768846, 0.0112392465, -0.0103576165, 0.00790384784, -0.0191615894, -0.00552714476, 0.00728732301, -0.00353268697, -0.00541617, -0.00680026831, 0.00148197147, 0.00151973357, -0.00381628843, 0.0101726586, -0.0198890883, 0.0153761283, -0.00142263086, -0.000325216824, 0.0236992128, 0.00197904441, -0.0308015775, 0.000934805663, -0.0195068438, 0.0226387903, 0.0103761116, 0.0181011669, 0.0138224857, 0.00415537693, 0.0132306218, 0.0224415, 0.00901975762, -0.0194328614, -0.00828609336, -0.0125462795, -0.0295685288, 0.029149292, 0.00207460579, 0.0019775033, 0.00558263203, -0.00548398774, 0.00300864084, 0.0116646485, 0.0152035011, 0.0340075046, 0.00794083904, 0.00486129802, 0.00297319074, 0.0255734473, 0.00663997186, -0.0105734, -0.00228576548, 0.00291153812, 0.00330457278, 0.0114981867, -0.0174106602, -0.0217016712, 0.00477190176, -0.00452529173, -0.00514798192, -0.0100123622, 0.0160543043, 0.0239211619, -0.0109309843, -0.00849571172, 0.00581382867, 0.00287300535, 0.0137608331, -0.00856352877, -0.0201110374, -0.0118311103, 0.015795365, 0.0162146017, 0.00491370261, -0.00884713, 0.0222072229, -0.02188663, 0.00728115765, 0.00627313973, -0.0131689692, 0.00853270292, 0.0242294241, 0.0136005366, 0.0229593832, 0.00779287331, -0.00428484706, -0.0114981867, -0.0197781138, -0.00859435555, 0.0159433298, 0.0200987067, -0.0159310009, 0.00507091638, -0.00217324984, -0.0186560396, -0.00675711129, -0.0212454442, -0.0111899246, -0.0100123622, 0.011350221, 0.00441123452, -0.00010191925, 0.00857585948, 0.0117817884, -0.00558571424, 0.0135142226, -0.00033773997, -0.00223644357, -0.00190043764, 0.00312269805, -0.00214550621, -0.0109124882, 0.0077990382, -0.000663920131, 0.0193588771, -0.00884096511, -0.00700372132, 0.00281597697, 0.00110435, -0.0411838554, -0.00622073514, 0.00650433637, -0.0055086487, 0.0312701352, 0.00420469884, -0.0203206558, -0.00750927161, -0.00509557733, -0.00619299151, -0.00452220906, 0.0106905391, -0.00907524489, -0.0232553147, 0.033933524, 0.000175613226, -0.016609177, -0.0130579947, 0.00650433637, -0.00752160233, 0.0235512462, -0.0035604306, 0.021750994, 0.0299137812, -0.00167694734, -0.0286067501, -0.0120777199, 0.00109972607, -0.0100801801, 0.0167078208, -0.0199754033, 0.0258447193, 0.00782369915, -0.00500001572, -0.0122380164, 0.0180641767, 0.0336622521, -0.0178668872, 0.00869916473, -0.00584465498, 0.034426745, 0.00510790758, -0.00351110846, -0.000836932391, -0.00473182742, -0.0267818365, -0.000300170504, -0.00193126383, 0.00252775149, 0.0169174392, -0.0103946077, -0.0200000629, -0.0198151059, 0.0289766639, 0.020172691, 0.0100000314, 0.0148335863, -0.00461468799, 0.0176696, -0.00962395128, -0.00407214602, -0.00996304, -0.00832308456, -0.022700442, -0.0186560396, 0.0322812386, -0.0074784453, -0.0200987067, 0.00323059, 0.0239334907, 0.0118434411, -0.0203206558, 0.0176696, 0.0189766325, -0.00303946715, -0.00897660106, -1.86041161e-05, -0.00123227888, -0.00900126155, -0.000106446852, 0.0155857466, -0.0126880798, -0.000491678482, -0.0217263326, -0.0202590041, 0.00245839241, 0.000771041319, 0.000242563969, 0.0276696309, -0.00127851823, -0.00877931248, 0.0102589726, -0.0172257014, -0.0124599654, 0.00835391, -0.00902592298, 0.0245130248, 0.0128113851, -0.00511099026, 0.00725033134, 0.00343712559, 2.18673631e-05, 0.00342787779, -0.0108939931, -0.00223336089, 0.0155117633, -0.00835391, -0.00739829708, -0.0229840428, -0.00573368045, 0.0104439296, -0.00269883708, 0.0286807325, 0.0213194266, -0.0118434411, 0.0173366759, 0.00484280195, -0.000469329476, 0.0224784929, 0.000190833685, 0.0222072229, 0.0215906966, -0.0237731952, -0.00987672713, 0.00350186066, 0.00931568909, 0.0145376539, -0.01818748, -0.00926636718, -0.00278515066, 0.016609177, -0.0157707036, -0.0176202785, -0.0106288875, 0.0115906661, -0.00190197898, 0.00780520355, -0.0141307479, 0.00711469585, 0.00625772635, -0.0229717121, -0.000392456539, -0.00359742204, 0.0216646809, 0.0265105646, 0.0207398925, -0.00818128325, 0.00572134973, -0.00440815231, -0.0143526969, -0.00118295685, -0.0279655643, 0.000722875295, -0.00064658036, -0.000957154727, 0.022342857, 0.00570901949, -0.0188286658, 0.01019732, -0.00908141, 0.00939583778, 0.0117694577, -0.00517264288, 0.0178792179, 0.0346733518, 0.0106658787, 0.00703454763, 0.00429101242, -0.00664613722, 0.0204316303, -0.0064488491, -0.00907524489, -0.00473182742, -0.0209248513, -0.00493836356, 0.0186190475, -0.0252035335, -0.000230233476, -0.00382553623, 0.0211591311, -0.00255087134, 0.0291739516, 0.00923554134, -0.00363133079, 0.000910144707, -0.00480889343, 0.015388458, -0.00722567039, 0.00988289248, 0.00132244569, 0.00467017526, 0.0134155788, -0.0118002845, -0.0217016712, -0.0148212556, 0.00786069129, -0.0416770764, -0.00296086026, 0.0012415268, -0.0117817884, -0.00190660288, 0.00325216819, -0.0133539261, 0.0330457278, 0.00815662276, -0.0335142873, -0.000160296448, -0.022651121, 0.00428176438, 0.0108508356, -0.00456844876, -0.0200863779, -0.00674478104, 0.0276942924, 0.0172380321, -0.0150062125, -0.0028051876, 0.0111406026, 0.0178298969, -0.023871839, -0.0091985492, -0.0263872594, -0.00865600817, -0.0103391204, -0.00881013926, 0.0242170934, 0.00543466583, -0.00466401, -0.0124106435, -0.00557646668, 0.0128360456, -0.00326758134, 0.000369722198, 0.00953763817, -0.00425710343, -0.0344514027, 0.00764490711, 0.00282060076, -0.0106412172, -0.00179871102, -0.0277189538, -0.0158940088, 0.0192355737, 0.00741679315, 0.00410297234, 0.0322319157, 0.000651204318, -0.00418312056, -0.00494452845, 0.00995687488, -0.0187053625, -0.0191492587, -0.00142571353, 0.0141060865, -0.00868066866, -0.00625464367, 0.00945749, -0.000665076077, -0.00575217605, 0.015252823, 0.00646734471, 0.0096116215, 0.00363749615, 0.0267078523, -0.0345747098, -0.0144513408, -0.00975958724, 0.00762024615, 0.0173490066, -0.00964244734, 0.00428484706, 0.00119759934, -0.0328484401, -0.00422627712, -0.0114118736, 0.0145993065, 0.00510174269, -0.0126387579, -0.0111714285, -0.0098459, -0.00175555423, -0.00864984281, -0.00205765152, 0.0186190475, -0.00614675181, 0.00367757026, 0.0089950962, -0.0030995782, -0.000639259117, -0.0201850217, -0.00182183075, 0.00326141599, 0.00042578741, -0.00230117864, -0.000330226088, 0.0123428255, -0.018273795, 0.00447597, -0.0634773895, 0.0250555668, 0.0334649645, 0.0189273097, -0.00426635146, 0.0126387579, -0.00896427, -0.0282861572, -0.00244297949, 0.00651050173, -0.00921088, 0.0207029022, 0.0169297699, 0.0127127403, -0.00955613423, -0.00156057836, 0.02039464, -0.000780674512, -0.0214920528, -0.00183107855, 0.0107336966, 0.00966094341, 0.0137854936, -0.0181998108, -0.00333539909, 0.031812679, 0.00787302107, 0.00205302751, -0.00808263943, -0.00302405399, -0.00555180572, 0.0132059604, 0.0174476504, -0.00702838227, 0.00528053474, 0.0032829945, -0.00691740774, -0.0111652641, 0.00336930784, -0.0279409029, -0.014759603, -0.0039735022, -0.0121332072, -0.00879780855, -0.0175216347, 0.0096486127, -0.00246147509, -0.00432492141, 0.011639988, 0.000439273892, -0.0152774835, 0.0208385382, -0.0180641767, -0.0100493534, -0.0203083251, -0.0154131195, -0.0105918953, -0.0170530751, 0.0392356366, 0.0366955549, -0.00436807796, -0.0370408073, -0.00452837441, 0.0100431889, 0.0142910443, 0.0219482817, -0.0091985492, 0.0104254335, 0.0119544156, -0.012299669, -0.00353576965, -0.00581999402, 0.0102836331, -0.0023998227, 0.0084340591, 0.00603577774, -0.00491370261, -0.00572134973, -0.0155610852, -0.00490445457, -0.000499770395, -0.00247072312, 0.00836624112, -0.00887795631, 0.00378237944, -0.00397658488, 0.0139581207, 0.00306258677, 0.0118372757, -0.0102281459, 0.0136128673, 0.0124846268, 0.0125956014, 0.00504317274, 0.0190999378, 0.00706537394, -0.00421702955, -0.0197904445, -0.00226881122, 0.0222688746, 0.0113687171, 0.000429640699, -0.00258323876, -0.00760175055, 0.0420963131, -0.00761408079, 0.005573384, 0.00498152, -0.00331998593, -0.00692357309, 0.0255981088, 0.0010727531, -0.00405365042, -0.0191492587, 0.0180025231, 0.00893960893, 0.00438040867, -0.000789922371, 0.00936501101, 0.00352343917, 0.0149445608, -0.0165105332, -0.0182984546, -0.00613442156, 0.0197041314, 0.013403249, 0.000208462443, -0.010468591, -0.0141924005, 0.000977962394, 0.00698522571, -0.000676250609, 0.0168064646, -0.0188779887, 0.010468591, -0.0373614021, -0.00949448161, 0.0203083251, 0.0038070404, 0.0161899403, 0.00730581861, -0.00650433637, 0.00516956, -0.031812679, 0.00209001894, -0.00932185445, -0.00659681484, 0.0112885684, -0.000315390964, -0.00908757467, -0.0394329242, -0.0239334907, 0.00362208299, 0.00691124285, -0.00995687488, -0.014710281, 0.0208262075, -0.00586623326, 0.0131566385, -0.0101356674, 0.00152898137, 0.00177713262, -0.00202682521, 0.0274476837, -0.00924170669, 0.0260666665, -0.0102466419, -0.012299669, 0.0253514983, -0.0108323405, 0.0170777366, 0.0139827821, 0.0256474297, 0.00272658071, 0.019136928, 0.000695131661, -0.022836078, -0.0260173455, -0.0097041, 0.0172996856, 0.026535226, -0.00603269506, -0.00316585461, 0.00512640364, -0.00382861891, -0.00565969758, 1.79418348e-05, -0.0140197733, 0.000835391053, -0.00844022445, 0.0231936611, 0.0174599811, -0.0117078051, 0.0126634184, -0.0108138444, 0.00337239052, 0.00820594467, -0.00059879967, 0.000374731462, 0.0118865976, -0.00616833055, -0.0185943879, -0.000827684533, 0.00845255423, 0.0142910443, -0.0088286344, 0.00348953018, -0.010111006, -0.00458386168, -0.0155487545, 0.00894577429, -0.0241307802, 0.0146979503, 0.0182368029, -0.00949448161, 0.000247380551, -0.0212824345, 0.0129346894, 0.00273120473, 0.00236129, 0.0107706878, -0.0111652641, 0.0195561666, -0.016473541, 0.00749077601, 0.00813196134, -0.0056751105, 0.00440815231, -0.00755859353, 0.0130210035, -0.0112454118, -0.0214550626, 0.0151788397, -0.020628918, 0.00040074109, -0.0134895621, -0.0078175338, 0.0354378447, -0.0109063229, 0.00599878607, 0.00415229425, 0.00744761946, -0.0216276888, -0.00134402397, 0.00244760327, 0.0117016397, 0.0294698849, -0.00604502531, 0.00810730085, 0.00254008197, -0.0200863779, 0.0109803062, -0.00591247249, 0.022342857, 0.00444514351, -0.0118311103, -0.0130949859, 0.0287547149, 0.0152404923, 0.0233539585, -0.00990755297, -0.0133046042, 0.0077990382, -0.0108323405, 0.0205919277, -0.0038810235, 0.0121270418, -0.0154254502, -0.00770655973, 0.0020792298, -0.00147349422, -0.00568127586, -0.0161899403, -0.00557646668, 0.00568744121, 0.0072749923, -0.00113440561, -0.00434958236, -0.0283601396, -0.0195315052, -0.0102281459, -0.0299137812, -0.0245006941, -0.00619299151, -0.017151719, -0.00803331751, -0.00319359824, 0.00587239861, -5.6932211e-05, -0.0143773574, 0.0306042898, 0.00562578859, 0.00364057883, 0.0264365822, -0.0162392631, -0.0212454442, 0.00153822929, 0.00239519868, 0.0129223596, -0.00646118, 0.00408139406, 0.0186560396, -0.0134155788, 0.00766956806, -0.00406598067, -0.00925403647, -0.0266585313, -0.0146362977, -0.00167232344, -0.0038902713, -0.03654759, 0.000971026486, -0.0040752287, 0.0150062125, 0.0041769552, 0.00276665483, 0.00410913769, -0.0022996373, -0.00596179441, -0.0047287452, -0.00538842659, 0.0168311261, 0.0282861572, 0.0129470201, 6.35791148e-05, -0.027349038, 0.00047433874, 0.0183724388, 0.0124414703, 0.0205179453, -0.0114920214, 0.00245839241, -0.00582307624, 0.0144760013, 0.0135758752, 0.0162146017, -0.0157337114, -0.0310235266, 0.0120592248, -0.00784836058, -0.00660914555, 0.00877314713, 0.00215013023, -0.0126880798, 0.00689274678, -0.0312454756, 0.0017231867, 0.0154994326, 0.0163625665, -3.46795168e-05, -0.0237731952, -0.00252466905, 0.00652283197, 0.00980890915, 0.017965531, -0.0167941339, -0.0131813, -0.0139087988, 0.0285574272, 0.00908757467, 0.0103206243, 0.00099337555, 0.00167386478, 0.000412300928, -0.0100308582, 0.0038902713, 0.0360543691, 0.0156720597, -0.0305796284, 0.00159679912, 0.00256936694, -0.0300370865, -0.00805181358, 0.0522319786, 0.0231566709, 0.0211221389, -0.0256967526, -0.00325525086, -0.018680701, 0.0122750085, 0.0254254807, 0.0166585, -0.0191246, -0.00367757026, -0.016966762, -0.00481814099, 0.00209310162, 0.0079839956, -0.0142293917, -0.00294236443, 0.0110357935, 0.00534526957, -0.000370878173, -0.0138224857, -0.0109371496, 0.000122823301, -0.0170037523, 0.00509866, 0.00980274379, 0.00660298, -0.0237855259, -0.0330210663, 0.0230703577, 5.03334668e-05, 0.0159063395, 0.0121208774, 0.00234433543, -0.0189519711, -0.00530519569, -0.0170777366, -0.00581074599, -0.00786685571, -0.0163995586, -0.00346486922, -0.00621457, 0.0118434411, 0.00758325448, 0.00243989681, -0.00288995984, 0.0148582468, 0.00348953018, 0.0140690953, -0.0140074426, -0.0206165891, -0.00628547, -0.0295685288, -0.0247473046, 0.0102713024, 0.0255734473, 0.0343774222, 0.00185728085, 0.00942049827, 0.0181998108, 0.00475648884, 0.00750310626, 0.0106473826, -0.00597720779, -0.00620840443, -0.0032182592, -0.00844022445, 0.013403249, -0.00863134675, -0.0031997636, -0.00881013926, -0.0121763647, -0.00315660681, 0.00814429205, 0.0279409029, 0.000736747112, 0.00310266088, -0.00540075684, 0.000498999725, -0.00169081916, 0.00206689932, 0.00299168634, -0.0105425734, -0.000220985603, 0.0106843747, 0.00718251336, -0.0183354467, -0.0244760327, -0.00858819, 0.00967943855, 0.00943899434, 0.00714552216, 0.00451912638, 0.0067509464, 0.0242417548, -0.00704687834, -0.0064303535, 0.00966710877, 0.0260173455, 0.0061159255, 0.0272503942, 0.0190999378, -0.00491062, -0.00243527279, -0.0261159893, 0.0109864715, -0.00346486922, -0.00268034148, -0.00649817102, 0.00426326878, 0.0072934879, 0.0010658172, -0.00254933, 0.0150925266, -0.0082675973, 0.000123786609, 0.0108631663, 0.0112269158, 0.00935268123, -0.00215321267, 0.0208755285, 0.00691740774, -0.0102713024, 0.000453531044, 0.0116646485, -0.010382277, 0.0163872279, -0.0117694577, 0.000335813325, 0.00205919263, -0.00564736687, -0.00896427, -0.00721950503, 0.00359433936, 0.0243773889, 0.0192355737, -0.00395192392, 0.00112592836, -0.0129346894, 0.0276449714, -0.00340938196, 0.0141430786, -0.00632554432, 0.0223305281, 0.0267571751, -0.00664613722, -0.00361591787, -0.0123366611, -0.0124476347, -0.0011320936, 0.00221948908, 0.0123366611, 0.0154994326, 0.00669545913, 0.0215906966, 0.00352343917, -0.00171239756, -0.0249939151, 0.0247473046, -0.00668929378, -0.00484280195, 0.00621765247, 0.00801482238, 0.00934035052, 0.0206042584, -0.00916772336, 0.0116091613, 0.025770735, 0.0157583728, 0.0210111644, 0.00100878871, 0.0289026815, 0.0111159412, 0.0292232744, 0.00111128588, -0.0221455693, 0.00291307946, 0.0168927796, 0.00244143815, -0.0281875134, 0.000933264382, -0.0040937243, -0.00784219522, 0.0296918321, 0.0172626935, -0.0206905715, -0.0122256866, 0.00845872, -0.00564428419, 0.00451912638, -0.0106905391, 0.00909990538, -0.0169174392, -0.0285574272, -0.00327682914, -0.0108570009, 0.023600569, -0.00964244734, 0.00402590679, 0.00213317573, 0.0098520657, -0.000526743359, 0.0132799437, 0.00925403647, -0.0114550302, 0.00955613423, 0.00565353222, 0.00856969412, -0.0153021449, -0.00757092424, -0.00599262072]
10 Jan, 2025
Bitwise Operators in C 10 Jan, 2025 In C, the following 6 operators are bitwise operators (also known as bit operators as they work at the bit-level). They are used to perform bitwise operations in C. The & (bitwise AND) in C takes two numbers as operands and does AND on every bit of two numbers. The result of AND is 1 only if both bits are 1.  The | (bitwise OR) in C takes two numbers as operands and does OR on every bit of two numbers. The result of OR is 1 if any of the two bits is 1. The ^ (bitwise XOR) in C takes two numbers as operands and does XOR on every bit of two numbers. The result of XOR is 1 if the two bits are different. The << (left shift) in C takes two numbers, the left shifts the bits of the first operand, and the second operand decides the number of places to shift. The >> (right shift) in C takes two numbers, right shifts the bits of the first operand, and the second operand decides the number of places to shift. The ~ (bitwise NOT) in C takes one number and inverts all bits of it.Bitwise operators allow precise manipulation of bits, giving you control over hardware operations. Let’s look at the truth table of the bitwise operators. X Y X & Y X | Y X ^ Y 0 0 0 0 0 0 1 0 1 1 1 0 0 1 1 1 1 1 1 0 Example of Bitwise Operators in CThe following program uses bitwise operators to perform bit operations in C. C // C Program to demonstrate use of bitwise operators #include <stdio.h> int main() { // a = 5 (00000101 in 8-bit binary), b = 9 (00001001 in // 8-bit binary) unsigned int a = 5, b = 9; // The result is 00000001 printf("a = %u, b = %u\n", a, b); printf("a&b = %u\n", a & b); // The result is 00001101 printf("a|b = %u\n", a | b); // The result is 00001100 printf("a^b = %u\n", a ^ b); // The result is 11111111111111111111111111111010 // (assuming 32-bit unsigned int) printf("~a = %u\n", a = ~a); // The result is 00010010 printf("b<<1 = %u\n", b << 1); // The result is 00000100 printf("b>>1 = %u\n", b >> 1); return 0; } Outputa = 5, b = 9 a&b = 1 a|b = 13 a^b = 12 ~a = 4294967290 b<<1 = 18 b>>1 = 4 Time Complexity: O(1)Auxiliary Space: O(1) Interesting Facts About Bitwise Operators1. The left-shift and right-shift operators should not be used for negative numbers. If the second operand(which decides the number of shifts) is a negative number, it results in undefined behavior in C. For example, results of both 1 <<- 1 and 1 >> -1 are undefined. Also, if the number is shifted more than the size of the integer, the behavior is undefined. For example, 1 << 33 is undefined if integers are stored using 32 bits. Another thing is NO shift operation is performed if the additive expression (operand that decides no of shifts) is 0. See this for more details. 2. The bitwise OR of two numbers is simply the sum of those two numbers if there is no carry involved; otherwise, you add their bitwise AND. Let’s say, we have a=5(101) and b=2(010), since there is no carry involved, their sum is just a|b. Now, if we change ‘b’ to 6 which is 110 in binary, their sum would change to a|b + a&b since there is a carry involved. 3. The bitwise XOR operator is the most useful operator from a technical interview perspective. It is used in many problems. A simple example could be “Given a set of numbers where all elements occur an even number of times except one number, find the odd occurring number” This problem can be efficiently solved by doing XOR to all numbers. Example Below program demonstrates the use XOR operator to find odd occcuring elements in an array. C // C program to find odd occcuring elements in an array #include <stdio.h> // Function to return the only odd // occurring element int findOdd(int arr[], int n) { int res = 0, i; for (i = 0; i < n; i++) res ^= arr[i]; return res; } int main(void) { int arr[] = { 12, 12, 14, 90, 14, 14, 14 }; int n = sizeof(arr) / sizeof(arr[0]); printf("The odd occurring element is %d ", findOdd(arr, n)); return 0; } OutputThe odd occurring element is 90 Time Complexity: O(n)Auxiliary Space: O(1) The following are many other interesting problems using the XOR operator. Find the Missing NumberSwap two numbers without using a temporary variableA Memory-Efficient Doubly Linked ListFind the two non-repeating elementsFind the two numbers with odd occurrences in an unsorted arrayAdd two numbers without using arithmetic operators.Swap bits in a given numberCount the number of bits to be flipped to convert a to bFind the element that appears onceDetect if two integers have opposite signs4. The Bitwise operators should not be used in place of logical operators. The result of logical operators (&&, || and !) is either 0 or 1, but bitwise operators return an integer value. Also, the logical operators consider any non-zero operand as 1. For example, consider the following program, the results of & & && are different for the same operands. Example The below program demonstrates the difference between & and && operators. C // C program to Demonstrate the difference between & and && // operator #include <stdio.h> int main() { int x = 2, y = 5; (x & y) ? printf("True ") : printf("False "); (x && y) ? printf("True ") : printf("False "); return 0; } OutputFalse True Time Complexity: O(1)Auxiliary Space: O(1) 5. The left-shift and right-shift operators are equivalent to multiplication and division by 2 respectively. As mentioned in point 1, it works only if numbers are positive. Example: The below example demonstrates the use of left-shift and right-shift operators. C // program to demonstrate the use of left-shift and // right-shift operators. #include <stdio.h> int main() { int x = 19; printf("x << 1 = %d\n", x << 1); printf("x >> 1 = %d\n", x >> 1); return 0; } Outputx << 1 = 38 x >> 1 = 9 Time Complexity: O(1)Auxiliary Space: O(1) 6. The & operator can be used to quickly check if a number is odd or even. The value of the expression (x & 1) would be non-zero only if x is odd, otherwise, the value would be zero. Example The below example demonstrates the use bitwise & operator to find if the given number is even or odd. C #include <stdio.h> int main() { int x = 19; (x & 1) ? printf("Odd") : printf("Even"); return 0; } OutputOddTime Complexity: O(1)Auxiliary Space: O(1) 7. The ~ operator should be used carefully. The result of the ~ operator on a small number can be a big number if the result is stored in an unsigned variable. The result may be a negative number if the result is stored in a signed variable (assuming that the negative numbers are stored in 2’s complement form where the leftmost bit is the sign bit). Example The below example demonstrates the use of bitwise NOT operator. C // C program to demonstrate the use of bitwise NOT operator. #include <stdio.h> int main() { unsigned int x = 1; printf("Signed Result %d \n", ~x); printf("Unsigned Result %u \n", ~x); return 0; } OutputSigned Result -2 Unsigned Result 4294967294 Time Complexity: O(1)Auxiliary Space: O(1) Note The output of the above program is compiler dependent Related ArticlesBits manipulation (Important tactics)Bitwise Hacks for Competitive ProgrammingBit Tricks for Competitive Programming
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Find the Peak Element in a 2D Array/Matrix/Search an element in a sorted and rotated array with duplicates/Search for an element in a Mountain Array/How to Sort an Array in Descending Order using STL in C++?/Bitwise Operators in C
https://www.geeksforgeeks.org/bitwise-operators-in-c-cpp/?ref=popular_lbp
Data Science & ML
Bitwise Operators in C
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, How to Sort an Array in Descending Order using STL in C++?, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Find the Peak Element in a 2D Array, Search an element in a sorted and rotated array with duplicates, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Matrix, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, Bitwise Operators in C, Search for an element in a Mountain Array, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[0.00325094, -0.0246817563, -0.0111420499, -0.00159638072, 0.0336800218, 0.0621134043, 0.0171926059, 0.012369086, -0.0120094381, 0.0243009534, -0.0176439304, -0.0140615497, 0.0235252399, -0.0360494703, -0.0400267579, 0.0272627641, 0.00705545628, 0.00286484673, -0.024117602, -0.0220161267, 0.0297873542, 0.0173477493, -0.0487429425, -0.00594477728, -0.025697235, 0.0292796157, -0.00224956591, -0.00258982158, -0.0313105732, -0.0232854746, 0.0316490643, 0.00294947, -0.0146680158, -0.0284898, 0.0187158231, -0.0335671902, 0.00028229758, -0.0145551842, -0.0621698201, 0.00117502792, -0.00919571705, -0.0132717332, -0.0228905659, 0.00236063381, -0.0193928089, 0.0303515084, -0.00798278581, -0.0417192206, 0.0113677122, -0.0391805246, 0.0233277865, -0.0134127717, 0.0579386614, 0.0360776782, 0.0344698355, 0.00801099278, -0.034949366, -0.0217904653, -0.00540177897, -0.00425584, 0.00840590149, -0.00442508655, -0.0216353238, -0.0395190194, 0.0224815551, -0.0152603779, -0.036218714, 0.028250033, 0.00829307, -0.0220725425, -0.0616056658, 0.0269101672, 0.00901236758, -0.0116638932, -0.0248933155, 0.0267127138, 0.0661753193, -0.0173900612, -0.00805330463, 0.0414935574, -0.0190120041, 0.00578963477, 0.0138852512, -0.00969640445, 0.0328337885, 0.00759492908, 0.028264137, -0.0510841832, 0.0329466201, -0.00628327, 0.00729169603, -0.0144564575, 0.0154014165, 0.0241599139, -0.00716828741, 0.0214660764, 0.0265998822, 0.000760727, -0.0122350994, 0.0205916371, 0.0426500775, 0.0249215234, -0.0163040627, -0.0157963242, 0.0464581177, 0.00773596764, 0.00753146177, 0.00590599189, 0.00563801825, 0.0326645412, -0.00392087316, 0.0136948489, -0.0147526385, 0.045724716, -0.0213673487, 0.0106554674, 0.00729169603, -0.0528612696, -0.00893479586, 0.0258382726, 0.0142307961, 0.0341313444, 0.0330876596, 0.0361623, -0.0452451855, 0.0180247352, 0.0144987693, 0.00361764035, 0.00428404799, -0.00899121165, 0.00333732623, 0.0106202075, 0.0124537097, 0.0203377679, -0.00588483596, 0.0029194993, 0.0134339277, 0.0357391834, -0.00925918482, -0.0164168943, 0.00338845258, -0.00497866282, 0.00810266845, 0.0116568413, -0.0275025293, 0.0186735112, -0.0180811491, 0.0425936617, -0.0196043663, 0.055541005, -0.0406755358, 0.00744683854, 0.00246288674, -0.0210006498, 0.0571770519, -0.0075878771, 0.0316208564, -0.00061439944, -0.00240118243, -0.0708578, 0.00622685486, -0.0410986505, -0.0177003462, 0.00724233268, -0.0141038606, 0.0284615923, 0.0158386361, -0.00789111, -0.026656298, 0.0502379537, -0.00373752322, 0.0232995786, 0.0125101246, 0.0248933155, -0.0231162291, 0.0388984494, -0.0101688839, 0.00930854864, 0.0109728035, -0.0536792949, -0.035231445, -0.0198159255, -0.0123479301, -0.0297027305, 0.0238637328, -0.0325799175, 0.0197454058, -0.0283628646, -0.0110433232, -0.00798278581, -0.00228482555, -0.0269383751, 0.0181798767, 0.0036529, 0.0138288355, 0.0101406761, -0.0720989406, -0.00302175223, 0.0096258847, 0.0318465196, 0.00963293668, 0.00124819169, -0.00158756587, 0.0167412832, 0.0302950926, -0.0354853161, -0.0559359118, -0.0358238071, 0.00104897469, -0.0145692881, -0.0149783008, 0.0445399918, -0.0200274829, -0.00313634612, -0.00453086523, -0.00183526496, -0.00867387466, 0.00374810118, -0.0155001432, -0.00279256445, 0.00364232203, 0.0318183117, 0.039716471, -0.0159373637, -0.0337364338, -0.056161575, -0.0461196266, 0.0101124682, 0.00399844442, -0.00958357379, 0.0241740178, 0.0216776337, -0.0190825239, -0.0211416874, 0.0112830885, -0.0184619538, 0.0101265721, 0.00601882255, 0.0142237442, 0.0147385346, -0.0265293624, 0.0153450007, -0.00739042321, -0.00427347, -0.0175875146, -0.0109939594, -0.00815203134, 0.0109304925, -0.0128133576, 0.0285603181, 0.0102041438, 0.00233947788, 0.0125594884, 0.0161489211, -0.0315080248, -0.0340185128, 0.0070519303, 0.028250033, -0.018095253, -0.00461548846, -0.0140051339, 0.0264165308, -0.0315362327, 0.00109745667, 0.00724938465, -0.0216776337, 0.005560447, -0.0203941837, -0.00959767774, -0.0727759227, 0.0514226779, -0.0464017019, 0.0180529431, 0.00457670307, 0.0359084308, -0.00417826883, -0.0544126965, 0.00455202116, 0.00656182133, 0.0210429598, 0.0392087325, 0.033341527, 0.0230316054, -0.00738337124, 0.0161348172, -0.0223687235, -0.0286308378, 0.0157963242, -0.075483866, -0.00279785343, -0.00368110766, 0.0097105084, -0.0263037011, 0.0138076795, 0.0165156219, -0.0135890702, -0.00280490541, -0.00514438329, 0.00437219674, -0.0444271639, -0.00864566676, -0.0331722796, -0.0112619335, 0.0146680158, -0.0479813367, 0.00272733415, 0.034949366, 0.00697788503, 0.00997143, -0.017474683, -0.00896300375, -0.049786631, -0.0147103267, -0.0234124102, -0.0102182478, -0.00381862046, 0.0305771716, -0.0183209162, -0.0352596529, -0.0138006285, -0.00303409318, -0.0054934537, 0.0138429394, 0.0446528234, 0.0176580343, 0.0122985672, -0.0037622049, 0.00908288639, -0.0432424396, -0.0223264117, 0.00521490257, -0.003966711, -0.039716471, 0.00743273459, 0.00404428225, -0.0502097458, 0.0101336241, 0.0486019067, 0.00458022906, -0.00179295335, -0.00175681221, -0.00136014109, 0.00231127022, 0.0069496776, 0.0106836744, -0.0324106738, -0.0335107744, -0.0132646812, 0.0263883248, -0.00541940844, 0.00126670301, 0.0166707635, 0.0183914341, 0.0145269772, 0.0271217246, -0.0185888894, -0.0391241089, -0.00395965902, 0.0232008509, -0.0133069931, 0.0283346567, 0.0101265721, 0.000831246318, 0.000490549894, 0.00603997847, -0.0183350202, 0.0246817563, -0.0215365961, -0.018109357, -0.010147728, -0.0309156626, 0.0114875948, -0.0188427586, -0.0117908278, -0.0247945879, 0.018109357, 0.0400267579, 0.00558160292, -0.0108388169, 0.00791931804, -0.0308310408, 0.046994064, -0.000282517954, -0.00800394081, -0.045104146, -0.0396882668, -0.0197313018, 0.00335319294, 0.0134480316, 0.0559077039, -0.000601177104, 0.0035206764, -0.00608229, 0.0130531238, 0.0505200289, 0.0145269772, -0.00328972563, 0.00439687865, -0.00239236746, -0.0140897576, 0.0301822629, -0.0297309384, -0.00873028953, -0.00774301961, -0.011748516, 0.0278128143, -0.0537921265, 0.0173477493, -0.00862451084, 0.0272486601, -0.00644546468, -0.0166002437, -0.0404216647, 0.00130637013, -0.0216212198, 0.0305207558, -0.0031874727, 0.0388138257, 0.0394061878, -0.0148795731, -0.0210570637, -0.00644193869, 0.000518757617, -0.000777034613, -0.00153555791, -0.00831422582, 0.0246817563, 0.0140544977, 0.0268960632, 0.0162476487, -0.0294488613, 0.0229046699, -0.00518669467, 0.0350621976, -0.0368110761, -0.0628468, 0.0182645, 0.0166002437, -0.0466273651, -0.038108632, 0.00476005301, 0.0485737, -0.035231445, -0.0266704019, -0.0200556908, 0.0188145507, -0.0563872382, -0.0113888681, -0.0386727862, -0.0173759572, -0.0701243952, -0.0218186732, -0.00535241514, 0.0119882822, 0.0311413258, -0.00753146177, 0.0196043663, -0.0317901038, -0.00619864697, -0.00223017298, 0.0172349177, 0.0206621569, -0.00343076419, -0.00657239929, 0.0568949766, 0.0286590457, -0.0163322706, -0.0119248144, -0.025937, -0.00734811183, -0.0192658734, -0.0188568626, 0.027319178, -0.00159373635, 0.0164733101, 0.00382214645, 0.00373399723, 0.00118296139, -0.0251189768, -0.0547229797, 0.0676985309, -0.0123620341, -0.0220302306, -0.0384189188, 0.0246817563, -0.00248227944, 0.0255561955, 0.0271076206, 0.0114170751, -0.00705545628, -0.0355417281, 0.032072179, 0.00253693201, -0.00740452716, -0.000736926741, 0.0105637917, -0.0504354089, -0.0105496878, 0.0150629235, 0.0666266382, -0.0173759572, 0.0150206117, -0.0202672482, 0.0451323539, 0.00335143, -0.0590669699, -0.014921885, 0.0426782854, 0.000858131796, -0.0471633114, -0.00040218042, -0.000847113144, 0.0168400109, 0.0283346567, -0.00103839673, 0.00933675561, -0.0435809307, -0.00951305404, 0.00645251665, 0.0248227958, 0.0313105732, 0.0233277865, 0.005296, 0.0471068956, 0.0221007504, 0.0155847669, 0.0185324736, -0.0153450007, -0.0333697349, -0.0252882224, -0.0171926059, 0.00586368, -0.0297027305, 0.0128768254, -0.00852578413, -0.0268537514, 0.0354289, 0.0235393438, -0.0092662368, 0.0647649318, 0.0103381304, 0.0227213204, -0.0109657524, -0.00593772531, -0.0156552866, 0.00280314242, 0.000277669751, 0.00106219703, 0.0152180661, 0.0270935167, -0.0126441112, 0.0379958, -0.00407248968, 0.00311519043, -0.0160501935, -0.00218080962, -0.0128838774, -0.0223969314, -0.0187581349, -0.0057437974, -0.00790521409, -0.0415781811, 0.0242586415, 0.0376573093, 0.0222276859, -0.0352596529, 0.0105567398, 0.03108491, -0.00105867104, -0.017432373, -0.0112971924, 0.00337787461, -0.00925213285, 0.0288706031, -0.0426218696, 0.0222135819, 0.00574027142, 0.00468953373, -0.0021138161, 0.0470786877, 0.00388561375, -0.0347801223, 0.0289411228, 0.00134603726, 9.55867145e-05, -0.0030305672, -0.0294488613, 0.0206903648, 0.0054934537, 0.00649482803, -0.0149641968, 0.0500405, 0.000188969701, 0.00397376297, 0.0038256722, -0.00772891566, -0.0152039621, 0.0127639938, 0.0265293624, 0.00706603425, -0.000870031945, 0.0124466578, 0.0242727455, 0.0116779972, 0.01585274, -0.012686423, -0.0178554878, 0.0138217835, -0.0384471267, 0.0136102261, 0.0146116, -0.0136031741, 0.06092868, 0.0192376673, 0.015542455, -0.0116145294, -0.0344698355, -0.0069214697, -0.0459503792, -0.00513380533, -0.00421000272, -0.0145128733, -0.0132999411, 0.0170515683, 0.00170215976, 0.011120894, -0.0248792116, 0.00152850593, -0.00871618651, -0.025937, 0.00724233268, -0.00295828492, 0.011424127, 0.0168823209, -0.0246817563, 0.0274884254, 0.00584252458, 0.0322696343, 0.00940727536, 0.0239342526, -0.00339197856, 0.0114593869, 0.0269947909, 0.104594231, -0.0143365748, 0.011410024, -0.0052078506, 0.0172490217, 0.00620922493, -0.02538695, -0.0112901405, -0.00984449498, 0.0109375445, 0.00974576827, 0.00275730481, -0.00801099278, 0.0096258847, -0.000557543244, -0.0313951932, -0.00266210386, 0.0152039621, -0.0154155204, -0.0137230568, 0.000586632465, -0.0338492654, -0.0237367973, -0.0134480316, -0.0216494258, -0.0133069931, 0.0158245321, -0.0254574697, -0.00939317141, 0.0290821623, 0.023186747, 0.000129358858, -0.0263460129, -0.0246253405, 0.0411550663, 0.0113606602, 0.00839179754, 0.014921885, 0.00316455378, -0.0115933735, -0.0277987104, 0.00995732564, -0.00906173047, -0.0363033377, 0.0135890702, -0.0237791091, -0.0198864434, 0.00391734764, -0.0207467787, 0.0142660551, -0.00556397298, -0.0268678553, -0.000632910756, 0.000856809551, 0.00630442612, -0.00578258326, 0.0322132185, 0.0245689265, -0.0205916371, -0.0131447986, -0.00642430875, 0.001467683, 0.0218327772, 0.000970521942, 0.0138993552, 0.0105285319, -0.00193399191, -0.00634321151, 0.0297027305, 0.0205070134, 0.00403370429, 0.013962822, -0.0163322706, 0.0119107105, -0.0239201486, 0.0034924685, -0.0248086918, 0.013321097, 0.0031398721, 0.0102958186, -0.0114664389, -0.0151052354, 0.0106907263, -0.0223546196, -0.0102111958, -0.0261908695, -0.00675222371, 0.00394908106, 0.0219738148, 0.00145181618, -0.0137583166, -0.00559570687, -0.0310284942, 0.016811803, 0.0126370592, -0.0146257039, -0.0243009534, -0.0100490013, 0.0195056405, -0.0418038443, 0.023821421, 0.0184478499, -0.0262472853, 0.0487147346, 0.0161489211, -0.0188850705, 0.039716471, -0.0121434247, 0.0235957596, 0.0297591463, -0.0308028329, -0.0171361919, -0.0130460719, 0.00388561375, -0.00640667882, 0.0343570039, -0.00827896688, -0.00103046338, 0.013010812, -0.0170515683, 0.00142096402, 0.0443425402, -0.00651245797, -0.045019526, -0.00478120893, 0.0191530436, -0.0169246327, -0.00326856971, 0.0125524364, 0.0228341501, 0.00371284131, -0.0250202492, 0.00172155257, 0.000708278269, -0.0338492654, -0.00775007159, 0.00985859893, -0.00487641, 0.0262472853, -0.00172948593, 0.0149641968, 0.00514790928, -0.00884312112, 0.0108458688, 0.00448150188, 0.0227918401, -0.0019145991, 0.0018705246, 0.000438541931, 0.019378705, 0.042875737, -0.00848347228, -0.0163604785, -0.0140544977, -0.0134057198, -0.00429815147, -0.0449066944, 0.0237650052, -0.00821549911, -0.0224533472, -0.0243432634, 0.0275025293, -0.0239765644, -0.0393779799, -0.00413595745, -0.0124325538, 0.0216776337, 0.0080603566, 0.021254519, 0.00818729121, 0.0232713707, -0.00308169355, 0.0310284942, 0.00576142734, -0.0072352807, -0.00890658796, 0.0187158231, 0.00313105714, 0.0136807449, 0.0487993583, -0.0256126113, 0.00473889709, 0.0261908695, 0.00109128619, -0.0291667841, -0.00567680411, -0.00116268708, 0.00772891566, -0.0122562554, 0.0141109126, 0.0179683194, 0.0112901405, 0.0145128733, -0.000254310231, -0.011748516, 0.0333697349, 0.0325799175, 0.03999855, -0.00699904095, 0.0083494857, 0.00169246329, -0.000844909402, -0.00875849742, -0.00768660428, 0.0150911314, 0.00792637, -0.0228905659, 0.0107400902, 0.0126229553, 0.00118648726, 0.0201121066, -0.027953852, -0.0102535067, -0.0149359889, -0.0438912138, 0.000855487306, -0.0193504971, 0.0157963242, 0.019985171, -0.00767955231, -0.00612107571, 0.034610875, -0.00815203134, -0.00426289206, -0.000835653744, -0.0210288577, -0.00999258552, -0.0180106312, 0.0092944447, -0.00282077212, 0.0567539372, 0.00485878, -0.0363315456, -0.0148513652, -0.0186312012, 0.0210288577, 0.0150347156, 0.0182786044, -0.00338492659, -0.0257959627, -0.0151757542, -0.0310567021, 0.0278833341, -0.00679806108, -0.0496455915, -0.00293184, 0.0041606389, 0.00820139516, 0.0166284516, -0.00586015405, -0.000600295607, 0.0188145507, -0.00617043907, -0.00892069191, -0.0321568027, 0.0158104282, 0.0094495872, 0.00115034613, 0.0167412832, -0.0121786837, 0.00690383976, 0.0113112964, -0.0463170782, -0.00870913453, 0.0278128143, -0.00651598396, 0.0279961638, -0.00605408242, -0.000649218331, -0.000867828203, -0.0203941837, 0.0117132571, 0.0299566016, -0.0469094403, 0.00133634079, 0.0173477493, -0.00649130205, 0.0109375445, 0.0223546196, -0.0143436268, 0.0191953555, 0.000143793266, -0.0137160048, -0.0403652489, 0.0166989714, -0.0263037011, -0.00884312112, -0.0198018216, 0.0042910995, 0.00353125413, -0.0149924047, -0.0365854166, 0.0126441112, -0.00779943494, 0.0238778368, -0.0475582182, -0.032072179, -0.0163463745, 0.0287577733, 0.0423962064, -0.0134973954, 0.00232184818, -0.014907781, -0.0107612461, -0.0037163673, -0.0312823653, -0.00319805043, -0.000999611104, -0.00405133422, 0.0344416276, -0.0175875146, -0.00899826363, -0.0536792949, -0.0370931551, -0.00747504644, -0.00179559784, 0.024752276, 0.0179824233, 0.00100313709, -0.000971403439, 0.0112125697, -0.0126511632, 0.00673106778, 0.0326645412, -0.0198018216, -0.0233418904, 0.00888543203, -0.00260745129, -0.006819217, 0.0427911133, 0.0460350029, 0.00884312112, 0.00679453509, -0.0155988699, -0.0554281734, 0.0134973954, 0.0153026888, -0.00901236758, -0.00776417553, -0.0044391905, -0.018109357, 0.0230880212, -0.0103169745, 0.0240611862, -0.0249215234, -0.00732695591, -0.00258982158, -0.0157117, -0.0198018216, 0.00796868186, -0.0146821197, -0.0233559944, 0.0458657555, -0.00416416489, -0.0070519303, 0.00503860414, -0.037741933, 0.00179383485, -0.00739747519, -0.0111984657, 0.00103134487, 0.00334966695, 0.0217481535, 0.00438630069, 0.013659589, 0.00757377315, -0.0258946884, -0.028250033, 0.00244173105, -0.000818023924, -0.0120023862, 0.0459785871, 0.0122421514, -0.0344416276, -0.00063467375, 0.0252177045, 0.0235534478, -0.0157540124, -0.00545114232, -0.0272909719, -0.00937201548, 0.0118754506, 0.0156552866, -0.00749620236, -0.0113183483, -0.0154155204, 0.00249638339, -0.0144353015, -0.00973166432, 0.00244878279, -9.10415292e-06, 0.00430520345, -0.0478120893, -0.00676985318, -0.03999855, -0.0192940813, 0.0159796737, 0.0419730917, -0.0168682169, 0.00466485182, 0.00369873759, 0.000974047929, -0.00672049, -0.0169669446, -0.0102535067, -0.00617396506, 0.00705898227, 0.0152885858, 0.0112689845, -0.0144423535, 0.016797699, -0.0010004926, -0.00195338484, -0.000944958709, -0.0197736137, 0.0239060447, 0.0131518506, -0.00563449226, -0.0308592487, -0.0078770062, 0.00594477728, 0.0083494857, 0.0163322706, 0.0154860392, 0.00543351239, 0.0118260877, -0.00333556323, 0.00582842063, -0.0106977783, 6.3908119e-05, 0.0119459704, -0.00945663918, 0.010465065, 0.00772186415, 0.012390242, -0.0284474883, 0.00432283338, -0.0221571662, -0.0244701989, 0.0131730065, 0.0117344121, 0.00484115025, 0.0173477493, 0.00895595178, -0.0145833921, 0.000295079226, -0.0273755938, -0.0138006285, 0.0046331184, -0.0165861398, 0.00566622615, 0.0280948915, -0.0164027903, 0.00415006094, 0.0987270251, -0.0214378685, -0.0149500929, -0.0115651665, 0.00760198105, -0.0166002437, -0.00691441773, -0.00285603176, 0.000181587209, 0.0189555883, 0.00959767774, -0.00746799447, 0.0324106738, 0.0504354089, -0.00370578957, -0.0106977783, -0.0204929095, 0.00745389052, 0.00227424758, -0.0438630097, -0.00388208777, 0.00132840744, 0.0203377679, 0.00332145928, 0.0189273823, -0.00586015405, -0.0242304336, 0.00762313697, -0.0150770275, -0.00180529419, 0.0199005473, -0.0159373637, -0.0128415655, -0.00851873215, 0.000281856861, 0.00980923511, -0.018419642, 0.00161577354, -0.0246112384, 0.0309720784, 0.0089489, 0.0136736929, -0.0151193393, 0.0123267742, 0.0195197444, -0.00844116, -0.0103804413, 0.0115016988, -0.0103381304, 0.000812735, 0.013962822, -0.0155001432, 0.016177129, -0.00140597869, 0.00421352871, 0.00338668958, 0.0172631256, 0.0121857356, 0.00137600792, -0.0020027482, -0.00236944854, -0.0115651665, -0.00983039103, -0.0151616503, 0.0135961222, 0.00588836195, -0.0383907109, -0.0195197444, -0.0293924473, 0.0167553872, -0.015556559, -0.00514438329, 0.0276999827, 0.0213814527, 0.000899121165, 0.0154437283, 0.012700527, -0.0120799569, 0.013948719, -0.0171361919, -0.0109869074, 0.00961883366, -0.000533743, 0.020633949, 0.000390280271, -0.013017864, -0.0122280475, 0.0294488613, -0.0208878182, -0.00249638339, 0.00239060447, 0.0297873542, 0.00231303321, 0.00514085731, 0.00836359, -0.000329898117, -0.0102958186, 0.0137935765, 0.0137583166, -0.00547935, 0.0234406162, -0.00784174632, 0.00400902238, 0.00411480153, -0.0168682169, -0.00810972, 0.0337364338, -0.023497032, -0.0194492247, 0.0117132571, 0.0149783008, 0.0328337885, 0.00542293442, -0.00189344329, 0.0212404151, 0.00702372286, 0.00700256694, 0.0143859386, -0.0109939594, -0.0165861398, -0.0204929095, 0.00581784267, 0.0237085912, -0.0192094594, -0.00934380759, -0.0239906684, -0.0143013149, 0.00686858036, -0.0140121859, 0.0131165907, -0.0083494857, 0.00139187474, 0.00316984276, -0.0119177625, -0.0118472436, -0.00901942, 0.00972461235, 0.0275307372, -0.00658650324, -0.0184760578, 0.0309156626, 0.0118119838, -0.00490109157, -0.00837064162, -0.0112619335, 0.0140686017, -0.0160784014, -0.0179119036, 0.0148231583, 0.00853988808, 0.00058178429, -0.0312541574, 0.00709071616, 0.0184055381, 0.0103310784, -0.0233418904, -0.00163604785, -0.0181375649, 0.0134550836, -0.0185324736, 0.0118472436, 0.010147728, 0.0435809307, 0.00855399203, -0.0100419493, -0.0149783008, -0.00997143, 0.00760903303, -0.00518316915, 0.0188709665, 0.00501039671, -0.0260498319, 7.29985e-05, -0.0247804839, 0.0151334433, 0.00717533939, 0.0428193212, -0.0194774326, -0.00116268708, 0.0139275631, -0.0220020227, 0.0058107907, 0.0176016185, 0.00914635416, -0.022876462, -0.0249497294, -0.0118825026, -0.00302351522, 0.0128838774, 0.0127498908, 0.00161489204, -0.00159109186, 0.00462254044, -0.0137160048, 0.00700609293, -5.14570565e-05, -0.00352596515, 0.0110503752, -0.0366982482, 0.00647367211, -0.0341313444, 0.00660060719, -0.00297944061, 0.00398434093, 0.00347131281, -0.0152744818, -0.00736926729, 0.00760903303, -0.00343429018, 0.011748516, -0.0110715311, -0.00144388282, 0.0190261081, -0.032072179, -0.0158386361, -0.0107330382, 0.0134621356, 0.0299001858, 0.02093013, 0.00379041256, 0.0159514677, 0.0076442929, 0.0065688733, -0.00503507862, -0.0150911314, 0.00831422582, 0.019040212, -0.00540883094, 0.00642783474, 0.0187017191, -0.0218186732, -0.00345015712, 0.0123549821, 0.000389178429, 0.00255985069, -0.0169669446, 0.0124184499, -0.021564804, -0.0293360315, 0.0122068916, 0.00682274299, 0.00447092392, 0.0177708641, -0.00913225, 0.0163886864, -1.74576599e-06, 0.000933499308, -0.000280314242, -0.0210570637, 0.00570148602, 0.000621451356, -0.0125876963, 0.00886427704, -0.00790521409, -0.00791931804, 0.0170515683, 0.00623038085, 0.00802509673, 0.0063185296, -0.0356545597, 0.0192940813, 0.0123197222, -0.0202813521, 0.0223405156, -0.0224533472, 0.00919571705, -0.0385035388, -0.0317054801, 0.0059306738, -0.0167553872, 0.0187722389, 0.037121363, 0.0175452027, 0.0195338484, -0.00307111582, -0.0251612887, 0.0194351207, 0.0155001432, -0.00632910756, -0.0118895546, -0.013666641, 0.0287577733, -0.0114523349, -0.00461901445, -0.0146821197, -0.00589894, -0.0165861398, 0.0104086492, -0.000588836207, 0.000848876138, 0.00937201548, -0.0145410812, 0.00743978657, -0.0232854746, 0.0285462141, 0.0148936771, 0.00413948344, -0.0117767239, -0.0108247129, 0.0156834926, -0.00887132902, -0.00322978408, -0.0167694911, 0.0026039253, -0.000549609831, 0.00544409035, 0.0123408781, -0.0203941837, 0.0327773727, 0.0100278454, 0.0112478295, -0.0413525216, -0.0149359889, 0.0122985672, 0.0091816131, -0.0282923449, 0.006188069, -0.000666848209, 0.0110221673, 0.0235816557, -0.000781882787, -0.000811412756, -0.0180106312, -0.0105355838, -0.0153732086, 0.0201826245, -0.0152603779, 0.00109040481, -0.00781353936, 7.84527292e-05, 0.00894184783, -0.0159514677, 0.0375726856, -0.00899121165, -0.0181234609, -0.00493635144, -0.00789816212, -0.010465065, 0.0217340495, -0.016811803, -0.0201262105, 0.0103381304, -0.00448150188, -0.0105637917, 0.00642783474, -0.0154437283, 0.0104509611, 0.0177708641, 0.00393145112, 0.0311695337, -0.0308310408, -0.00542646041, -0.00128256984, 0.0252318066, 0.0186453052, 0.0392087325, 0.00291597331, 0.0138923032, -0.021254519, 0.00539825298, -0.0121645797, 0.00866682269, 0.0202249363, -0.0251894966, 0.0167553872, -0.0323824659, 0.00246288674, 0.00571206352, 0.01585274, 0.0141250165, 0.00242233812, -0.0182362925, -4.5975281e-05, 0.00691794371, 0.00547582423, 0.00348894252, -0.00449913181, 0.00209089741, -0.0146962237, -0.0131659545, -0.00786995422, -0.00218257238, 0.0242304336, -0.0046331184, 0.0036052994, 0.0140333418, -0.0145551842, 0.045724716, 0.0061528096, -0.000881050597, 0.0439758375, 0.0102887666, 0.0263742208, 0.0202813521, -0.0199428592, -0.00744683854, -0.000261362176, -0.0123972939, -0.00741157914, 0.0116568413, -0.00656534731, 0.00119265774, 0.0121011129, 0.0105990516, 0.00954831392, 0.00913930219, -0.00616691308, -0.00911814626, 0.0196607821, 0.00319452444, 1.14042941e-05, 0.0129332403, -0.0151757542, -0.0293924473, -0.00148002396, -0.00461196247, 0.0309720784, 0.0308310408, -0.00699198898, -0.0191389397, 0.0136031741, -0.00279432745, -0.0179965273, 0.00486935815, -0.00877965335, 0.00553576555, 0.00183879083, 0.0141109126, 0.0171502959, -0.00589541392, -0.0170233604, 0.00315397582, -0.00117590942, -0.00782764331, -0.0078770062, 0.0120164892, 0.0203941837, 0.00655124336, 0.00101107056, 0.00339903054, -0.00242410111, 0.00487288414, -0.00622332888, -0.00238355249, 0.00699551497, -0.0116921011, 0.000342459389, -0.00775712356, -0.00908993836, -0.021184, 0.0147385346, -0.00609992, -0.0158386361, 0.0120305931, 0.0106202075, -0.000837857486, -0.0104227532, 0.00467543, 0.0186312012, -0.00384330214, -0.00239413045, -0.0350057818, 0.00233242591, 0.00478826091, 0.0268819593, -0.000923802902, 0.00847642, 0.00490814354, -0.00421352871, 0.0120164892, -0.0105355838, -0.0106907263, -0.0187722389, -0.00121910253, 0.0122280475, 0.0061528096, 0.00414653495, -5.55890474e-05, 0.00679806108, 0.00578963477, 0.000182248332, 0.0198018216, -0.0147103267, -0.0133422529, 0.012390242, 0.0303233, 0.00502802664, 0.0042241062, 0.00186876161, 0.0274743214, -0.000474683067, -0.0132928891, -0.0126511632, -0.00705545628, -0.00427699601, 0.0212686229, 0.00755966967, 0.00538767502, 0.0200838987, 0.0185042657, -0.0142025882, 0.00114064978, 0.000575173064, -0.00101018907, 0.0156834926, 0.000264447386, -0.0233136825, -0.00023998601, 0.0102252988, -0.000611314201, 0.0103592863, -0.0449913181, 0.0156129738, 0.00703782681, 0.0173195414, 0.00617043907, -0.0104157012, 0.00763018895, 0.0124748647, 0.0161207132, 0.0343852118, 0.00383625017, 0.00745389052, -0.0239483565, -0.00322802109, -0.0110221673, 0.0181375649, -0.00480589084, -0.0103592863, -0.00633968553, 0.012051749, -0.000318218372, -0.00980218314, -0.0246676523, -0.0268960632, -0.00461901445, 0.00203271909, -0.00510207191, 0.0131730065, -0.00709424214, -0.0141743803, 0.0038080425, -0.0308028329, 0.0193081852, -0.00406191219, 0.00370578957, -0.00129931816, -0.003966711, -0.00685447641, -0.0141109126, 0.00966819655, -0.00988680683, 0.00166866311, 0.000249682402, -0.010479169, -0.0126652671, -0.02600752, -0.0169810485, 0.0103169745, 0.01523217, 0.00188286544, 0.00983039103, 0.00573674543, -0.0043827747, -0.00170833012, -0.0111491019, -0.000611314201, 0.00402665231, 0.0142731071, -0.0192799773, -0.0314234, 0.00268325955, 0.0253023263, 0.0216071159, 0.0174041651, 0.00425936608, 0.00352420239, 0.0233700983, -0.0120023862, -0.00674164575, -0.0121786837, -0.0081167724, -0.0179401115, -0.0250061452, -0.0138358874, -0.0116568413, 0.0251330808, 0.0308028329, -0.0227777362, 0.00731285196, 0.0128627215, 0.0105144288, 0.00581431668, -0.00211557909, -0.013010812, -0.0153167928, -0.0158386361, 0.0131024867, -0.00380451651, -0.000106825726, -0.00557807693, -0.0146257039, 0.00784174632, 0.00175240473, -0.0253023263, -0.0590105541, 0.00406543817, -0.00416416489, -0.0329466201, -0.013969874, -0.0125876963, -0.0205493253, -0.0070801382, 0.0143295228, -0.00728464406, -0.00467895577, 0.0260357279, 0.0146539118, -0.0134550836, -0.0183773302, -0.00760903303, 0.00215612771, 0.00377983483, -0.0222558919, 0.0066076587, 0.00968935248, 0.00640315283, -0.0109022846, 0.000487905432, 0.00894184783, -0.0153167928, -0.0010225299, -0.00110010116, -0.000141258977, -0.0182362925, -0.00492577348, -0.00640315283, -0.0103451824, -0.00346778682, 0.0226366967, 0.0092662368, 0.0075878771, -0.0309156626, -0.00388913974, -0.0130954348, 0.00641725678, 0.00527484389, 0.00111684948, -0.00632910756, 0.0117696719, 0.0308310408, 0.0120235411, 0.00892774388, -0.000424878817, 0.010472117, -0.010592, 0.0041888468, 0.00277317176, -0.0121786837, 0.0101195201, 0.0106413634, 0.0117767239, -0.00672401581, 0.0250907689, -0.0119036585, -0.00569796, 0.000334525947, 0.020633949, -0.00446387194, 0.0018722876, 0.0174605791, -0.0236662794, -0.0160219856, -0.00225309189, -0.0177003462, 0.0203800797, 0.0112901405, -0.00758082513, 0.00609286781, 0.0051055979, -0.0112548815, -0.0124960206, 0.0124889687, -0.0197736137, 0.000127706051, -0.0336518139, -0.00991501473, 0.0169810485, 0.0188709665, -0.0101406761, 0.00112830894, -0.00313282013, 0.00785585, 0.00657239929, -0.0103874933, -0.0459221713, 0.000473360822, 0.0137512647, 0.0148231583, 0.0101195201, 0.00756672164, 0.0265857782, 0.00409364561, -0.00496808486, -0.000113381822, 0.00453086523, 0.00745389052, 0.0156129738, 0.0023165592, 0.00032174433, -0.00222135801, 0.0162476487, -0.0123056192, -0.00686505437, -0.0124466578, -0.00780648692, 0.00449208, 0.00601882255, 0.0311695337, 0.00598356314, -0.00389971747, -0.0185465775, 0.00525721442, 0.00547229825, -0.00952715799, 0.00386445783, -0.0184478499, -0.0270512048, 0.00188286544, -0.0200274829, -0.0114523349, 0.019040212, 0.0102182478, -0.0200556908, -1.1817493e-05, 0.00224075094, 0.00156729156, -0.0173477493, 0.00648425, 0.0165579338, 0.0135044474, 0.0121786837, -0.0226649046, -0.013666641, -0.00693204766, -0.0118895546, 0.0159514677, 0.00782059133, -0.00367053, 0.0348365381, 0.00624801032, 0.0141179645, 0.0109304925, -0.0246676523, 0.0137512647, -0.000180705727, 4.4900964e-05, -0.00607523834, -0.00501744868, 0.00525721442, 0.00115387212, -0.0151616503, -0.00249638339, -0.0102041438, -0.0025563247, -0.000983744278, -0.00622685486, 0.015866844, 0.00296181091, 0.0173759572, 0.00653361343, -0.00565564819, 0.0245971344, 0.00133105193, 0.000448238337, 0.0220443346, -0.00453086523, -0.0317054801, 0.00297062565, 0.00887132902, -0.00342371222, -0.0186453052, -0.0170797762, 0.00584252458, 0.00510207191, -0.00623390637, -0.0067628012, -0.00120411708, 0.018095253, -0.00839884952, 0.00398081494, 0.0394061878, 0.00934380759, -0.0085046282, 0.0197313018, 0.00605055643, 0.0147949504, 0.00129755517, 0.0219456069, -0.00233066315, 0.00178590138, -0.00578963477, -0.000119882818, -0.0146962237, 0.00363527029, -0.0151898582, 0.0127146309, 0.0153450007, -0.0143577307, 0.00458022906, -0.0148513652, 0.00883606914, 0.00789816212, 0.00741863111, -0.00421352871, -0.0046965857, -0.00693204766, 0.00847642, 0.0189414863, -0.0263460129, 0.00813087635, -0.00548992772, 0.0188709665, -0.00863156281, 0.00208031945, -0.00399139291, 0.00458022906, -0.00707661221, 0.00737631926, -0.00238884147, -0.010161832, -0.0100560533, -0.00877965335, -0.0330594517, -0.0363879614, -0.013976926, 0.00810266845, 0.0097387163, -0.00223722495, 0.0324952975, 0.0102605587, 0.011741464, -7.71304913e-05, 0.011099739, 0.0315926485, -0.00223369896, 0.0165297259, 0.00421000272, 0.00728464406, -0.00516201323, 0.0157258045, 0.00295652193, 0.00236592279, -0.000158007315, 0.0255985074, 0.018109357, -0.00694615161, -0.0342159681, -0.017446477, 0.00559923286, -0.00339374156, 0.00216670567, 0.0221289583, -0.00189520628, -0.00695672957, 0.0193363931, -0.00386093208, -0.00241704914, 0.010161832, -0.0183350202, -0.00644546468, -0.0189979, -0.0100983642, -0.00499276677, 0.0168400109, 0.00692499569, -0.0111914137, -0.027643567, -0.0244984068, -0.00507386401, 0.0184619538, 0.00293536601, 0.0150629235, -0.00916045811, 0.00421352871, -0.00327738468, 0.00467190379, 0.0151193393, 0.00919571705, -0.00791931804, 0.008561044, 0.00680158706, 0.00192341406, 0.0118966065, 0.0100278454, -0.0288565, 0.0183068123, 0.0105708437, -0.0207890905, -0.0111914137, -0.00913930219, -9.03528635e-05, -0.0200838987, 0.00147385348, -0.00827896688, 0.0103451824, 0.0166425556, 0.0246253405, 0.00494340342, 0.00805330463, -0.0115087507, 0.0283769686, 0.00323859905, 0.0113183483, -0.00472831959, -0.00471774163, -0.0120940609, -0.010789454, -0.0122492034, 0.00218962436, 0.0201826245, 0.0183491241, 0.0220584385, 0.0110080633, 0.0307464171, -0.0110080633, -0.0128063057, 0.0043827747, 0.0134409796, 0.00940727536, -0.00548992772, 0.0152462739, -0.0106272595, -0.00157258054, 0.00489756558, 0.021578908, -0.00154878024, 0.00208737142, 0.0240611862, -0.00751735782, -0.0260921437, 0.00666760048, 0.00875849742, 0.00220020232, 0.00515496125, -0.0209019221, 0.0154155204, -0.0106977783, -0.0298719779, 0.00925213285, -0.00345720886, 0.00675574923, 0.0129543962, 0.00579668675, 0.00350304646, -0.0238919407, -0.00566622615, -0.00171626359, 0.00830012187, 0.0162335448, -0.00391382165, 0.01523217, 0.00898416, 0.00742568262, -0.00409364561, -0.017432373, 0.0118683986, -0.00367758167, -0.0131165907, -0.0182645, -0.00855399203, -0.0046331184, 0.0101265721, -0.0288565, 0.00711187208, -0.0160642974, -0.0062550623, 0.00884312112, 0.00678395713, 0.00377983483, -0.00116356858, -0.00678395713, -0.031733688, -0.0160078816, 0.00834243372, -0.0294488613, -0.00398434093, 0.00930854864, 0.00161048467, -0.0131165907, 0.0162899587, -0.000652744318, 0.00895595178, 0.017474683, -0.00772891566, -0.00410422357, 0.00275730481, -0.0126018, 0.0118260877, 0.00540530495, -0.00386093208, -0.00695320358, -0.00742568262, 0.00898416, 0.0016907003, -0.0264870506, -0.0195197444, -0.00389266573, -0.00201685214, 0.00455554714, 0.0167271793, 0.00632205559, 0.0219315048, 0.000761608477, 0.0210288577, -0.00614575762, 0.00274320086, 0.00896300375, 0.0233418904, 0.00856809597, 0.0055498695, 0.0147808464, 0.0166566595, -0.000917632482, -0.00368463364, -0.00184584281, -0.000435236347, -0.0338492654, -0.00588836195, -0.0160784014, 0.010465065, 0.00825781096, -0.00553576555, -0.0186876152, -0.0101900399, 0.00592009583, 0.0103099225, 0.0178695917, -0.00286132074, 0.0182786044, 0.0140897576, 0.00601882255, -0.0368957, -0.0168541148, -0.00220372831, -0.00715770945, 0.0116215814, -0.0266845059, 0.017756762, 0.0170656722, -0.00748915039, 0.0219879188, 0.0198582355, -0.0290539544, -0.0130460719, -0.000690648449, -0.000425319566, 0.0189132784, 0.00995732564, -0.0131941624, -0.00246993871, -0.00200803718, -0.0222982038, -0.00578963477, 0.00785585, -0.0167130753, -0.00314339809, -0.0103240265, -0.01238319, 0.0131306946, 0.0166989714, 0.00484115025, 0.00839179754, 0.00397376297, -0.00484115025, 0.00743273459, 0.0019128361, 0.000958181045, 0.0056521222, 0.00635026349, -0.00119001325, -0.00484820222, -0.0017127376, -0.0247945879, -0.00838474557, 0.0147808464, 0.0194069128, 0.00385388, 0.00456965109, -0.0184055381, -0.00676632719, 0.0145551842, -0.00534888916, -0.0135256024, -0.000398434087, -0.0121998396, 0.00163869234, 0.0338210575, 0.0221148543, -0.0109445965, 0.0170092564, -0.00390676968, 0.00513027934, 0.0178272799, -0.00908993836, -0.0295052771, -0.0158809479, 0.0267550237, 0.00568738207, 0.00763724092, -0.00461196247, 0.0188004468, -0.00519727264, 0.00318042072, -0.0239624605, 0.00693557365, 0.0291103683, 0.00506328605, -0.0266986098, 0.00573674543, -0.0237367973, -0.00828601792, -0.00361411436, -0.00179383485, 0.0113042444, 0.00865977071, -0.00112742744, -0.0120799569, 0.0270512048, 0.00510912389, -0.013983978, 0.019378705, -0.000602499291, 0.0170938801, 0.00452028727, -0.0189273823, 0.0252036, -0.0152180661, -0.0246112384, 0.000844468654, 0.00172507856, 0.0021138161, 0.00366700394, -0.00370578957, 0.0382778794, -0.0166566595, 0.0022054913, -0.0113042444, 0.0147667425, -0.00561333681, -0.0208737142, 0.0182362925, -0.0212686229, -0.0161912329, -0.0226931125, 0.0156411827, -0.0323260501, -0.0222982038, 0.0382778794, -0.00255985069, -0.023821421, 0.0231444351, 0.0337082297, 0.00997848157, -0.0229892936, -0.00733400788, 0.0107189342, -0.00925918482, -0.00974576827, -1.09428884e-05, -0.00243820506, 0.00473184558, 0.0113677122, 0.00379393855, -0.00493987743, 0.0108035579, 0.010472117, 0.0052078506, -0.0152744818, 0.0161912329, -0.00904762652, 0.00373399723, -0.00379746454, -0.00385035411, 0.0111349979, -0.00709071616, 0.0069496776, 0.0128486175, 0.00824370701, 0.0169105288, -0.00530657778, 0.00232008519, -0.0241599139, 0.0116427373, 0.0154860392, -0.00264271093, 0.00100578158, -0.0075526177, -0.00352772814, -0.0170797762, -0.010592, -0.00228129956, 0.0227354243, 0.00808151253, 0.0241458099, 0.0150206117, 0.00547935, 0.00679453509, 0.0131236427, 0.00727759209, 0.0030957975, 0.00475300103, -0.0175452027, 0.0329466201, -0.00375515292, -0.0170797762, -0.0167412832, -0.018095253, 0.0021138161, 0.0141743803, -0.00765839638, -0.0312823653, 0.000944958709, 0.00561333681, 0.00863156281, -0.00619159499, -0.00477063097, -0.0260639358, -0.00443213852, 0.0112760365, -0.00930149667, -0.00300059654, -0.00508091599, -0.0226366967, 0.010479169, 0.00741157914, 0.00502802664, 0.00690383976, 0.0322978422, -0.0137865245, 0.0153026888, -0.0105214799, 0.00627621822, -0.00908288639, 0.00139628223, -0.00943548325, 0.0255703, 0.00567680411, -0.000505094533, 0.00616338709, -0.0199005473, -0.00428404799, 0.0281654112, 0.00696730753, 0.00892069191, 0.00834243372, -0.00898416, 0.00870913453, 0.0138781993, -0.00338845258, 0.00795457792, 0.00837064162, 0.00653008744, 0.0146680158, 0.00611049775, -0.00823665503, -0.0207044687, -0.000961707032, -0.0213391427, -0.0219315048, -0.0167835951, -0.0238355249, 0.00836359, -0.00233242591, 0.0134268757, -0.00265505188, -0.00779238343, 0.000107486849, 0.00220372831, -0.026656298, -0.0160642974, -0.00569796, -0.0313387811, -0.00782764331, 0.034328796, 0.00485172821, -0.0159091558, -0.0105355838, 0.0111349979, -0.00325622899, 0.0160501935, 0.00181763514, 0.00285603176, 0.00779943494, 0.01300376, -0.0185747854, -0.00513380533, 0.010782402, -0.0113888681, -0.00881491322, -0.0239906684, -0.00352596515, 0.0213814527, -0.00590951787, -0.013017864, -0.000930854818, 0.0166425556, 0.00643488672, -0.0264870506, -0.00441803457, 0.0204223916, 0.0122633073, 0.014921885, -0.00349952048, -0.0310002863, -0.0145128733, 0.00830012187, -0.000873557874, 0.000785408774, -0.0106907263, -0.00877965335, 0.016177129, 0.0229892936, -0.0141391205, 0.0230033975, 0.0138076795, 0.00904057454, -0.0103733893, -0.00753851375, -0.0232431628, -0.0117132571, 0.0097105084, 0.0138006285, -0.0178695917, -0.0101688839, -0.00724233268, -0.0181657728, 0.0155001432, 0.00521842856, 0.00885017309, 0.00368815963, -0.00589541392, 0.00983039103, -0.00290539535, -0.0142590031, -0.00905467849, 0.00825781096, -0.00760198105, 0.00902647153, 0.0112548815, -0.00885722507, -0.0130249159, 0.00415711291, -0.015556559, -0.00825781096, 0.0109163886, 0.0137301087, -0.0240329783, -0.00295299594, -0.0163886864, 0.0137230568, -0.00110539014, -0.0125030726, -0.0103663383, -0.0217763614, -0.00904057454, -0.0121081648, -0.0118049318, 0.00134074828, -0.00512322737, 0.0261062477, 0.00103575224, -0.0135538103, -0.0088219652, -0.00492577348, 0.00667817844, 0.00734106, -0.0089771077, -0.011438231, 0.00906173047, -0.000837416737, 0.0200415868, 0.00166513713, 0.00236063381, 0.0080321487, 0.0219174, 0.0354289, 0.0102605587, -0.0208172984, -0.0165156219, -0.00436514476, -0.0340467207, -0.0101759359, 0.0137512647, 0.0346672907, -0.00680511305, 0.00545466831, 0.00629032217, -0.0040301783, -0.0106625194, 0.0169669446, 0.00341313449, 0.000233154453, -0.0060963938, 0.0126793711, 0.00812382437, -0.0312823653, 0.0189837962, -0.00104456721, -0.00949895, -0.00851873215, 0.0153308967, -0.0277140867, -0.00978102721, -0.0106202075, -0.0262472853, -0.00247875368, -0.000988151762, -0.00923097692, -0.000558424741, 0.000807446, -0.0134621356, 0.0157822203, 0.0199710671, -0.0286449417, -0.003649374, 0.0049857148, -0.0210993756, -0.0247804839, 0.00322625833, 0.00414300896, 0.00105073769, 0.0146680158, -0.0076442929, -0.0279256441, -0.00680158706, 0.0220443346, 0.0145269772, 0.00727759209, -0.00206445274, 0.0150065077, -0.00251753931, 0.0155001432, -0.0300130155, -0.0164451022, -0.0145269772, 0.000827720331, -0.00267620757, -0.0347801223, 0.0183773302, 0.0129402922, 0.0179683194, -0.037121363, -0.00385740609, -0.011127946, 0.006505406, 0.00985154696, -0.0143154189, -0.00834243372, 0.00283487607, 0.017164398, -0.0125947483, -0.000683155784, -0.00374104921, 0.0116004255, -0.0109375445, 0.02476638, -0.00120323559, 0.00175240473, 0.0035859067, -0.00680863904, 0.0277281906, 4.17606498e-05, 0.0056521222, 0.0024928574, 0.00754556572, 0.0163040627, -0.0262895972, -0.0161630251, -0.00974576827, -0.00506681204, -0.000163957389, 0.00753851375, 0.0024910944, 0.00528189586, 0.0128556695, 0.019364601, -0.0183632262, 0.0045414432, 0.0227636322, 0.0184760578, 0.00699904095, 0.0066993339, 0.0335389823, 0.00606818637, 0.0328055806, -0.00906173047, 0.00840590149, 5.26966542e-05, 0.0210711677, -0.00408659363, 0.0295616928, 0.00206974172, -0.00508091599, -0.000799071859, 0.0217199456, 0.0169669446, 0.0049469294, 0.0037622049, -0.0122139435, 0.0188145507, 0.00369521161, -0.0384753346, 0.00759492908, -0.0137230568, 3.35242148e-05, -0.0112760365, -0.0138640953, -0.00630442612, -0.0229046699, -0.0080321487, 0.0232713707, 0.0204647016, 0.0212263111, -0.0148936771, -0.00387503579, -0.0151757542, 0.00990796275, 0.00721765077, -0.00360177341, -0.002224884, 0.0169528406, 0.0012922663, 0.00266739284, -0.0129261883, -0.00177708652, -0.000812294253, -0.00901236758, -0.000764693716, -0.00650188, -0.00317160576, 0.00119001325, -0.010782402, 0.0141955363, 0.00487288414, -0.0191812515, -0.00124466571, 0.00376573089, -0.00131077762, 0.0142096402, -0.0141461724, 0.0231585391, -0.0028066684, -0.0164168943, 0.0115369586, 0.00192870304, -0.0198018216, 0.00736221531, -0.0189273823, -0.023821421, -0.0103663383, -0.00395965902, 0.00920276903, 0.00947779417, -0.00688268431, 0.00305348588, -0.00115387212, 0.00284545403, -0.0122068916, -0.0134621356, 0.0162053369, -0.000269956712, -0.0013583781, -0.0146398079, 0.000999611104, -0.0274602175, -0.011127946, -0.00608229, -0.00361058838, 0.00691794371, 0.000134868169, 9.94983347e-05, 0.00306582684, -0.000913225, 0.00959767774, -0.00817318726, -0.0239060447, 0.00239413045, 0.00824370701, 0.00023535818, 0.00931560062, 0.00184584281, -0.0140827056, -0.00474242307, -0.0224392433, 0.00348894252, -0.018744031, -0.0295899, 0.0127428388, -0.00909699, -0.0128063057, -0.000142471035, 0.0164168943, -0.0176580343, -0.00270794122, 0.00288776564, 0.0138711473, -0.0183068123, 0.00598356314, -0.0057720053, 0.0156270787, 0.0153591046, 0.00242939, 0.0122633073, -0.0121575287, 0.0277422946, -0.0124537097, -0.00619159499, 0.0112055177, -0.00615633512, -0.000409232336, -0.0150911314, 0.00361411436, 0.0162899587, -0.0114946468, 0.000200539274, -0.00202390412, 1.7202854e-05, 0.0181657728, -0.00790521409, 0.0383060873, 0.0258100666, 0.0264024287, -0.0030288042, 0.0168682169, -0.00444976799, 0.00954831392, 0.03108491, -0.0219597109, 0.00814497937, -0.00275377883, -0.0169669446, -0.0132364733, -0.0106625194, 0.00753146177, 0.0111914137, -0.0199146513, -0.0143295228, -0.00271675619, 0.0101265721, 0.0284051765, 0.00243291608, -0.0147808464, 0.00939317141, 0.0203941837, -0.00346954982, 0.003649374, -0.000784527278, -0.0235816557, 0.00584957656, 0.00412890548, -0.000917632482, -0.00854694, -0.00436867075, 0.00608229, -0.000229187746, -0.00583194662, -0.0191107318, 0.0143859386, 0.00720354682, -0.00214554975, -0.00211910508, 0.00736221531, -0.0192094594, 0.0135326544, -0.000640403421, -0.00644193869, -0.0106413634, -0.0106907263, -0.00386445783, 0.0116145294, 0.0373188145, 0.00111773098, 0.0158950519, 0.0106272595, -0.0157117, -0.0370931551, -0.0155988699, -0.00967524853, -0.00387150981, -0.00743978657, 0.00302527822, 0.00494340342, -0.0133986678, 0.00969640445, -0.0151334433, -0.00987270288, -0.00184231682, -0.0124889687, -0.00943548325, -0.0143929906, -0.0073058, 0.02030956, 0.00269383751, -0.0129826041, 0.0014906018, 0.00442861253, -0.0123549821, -0.00187933946, -3.31661104e-05, -0.0239765644, -0.0236380715, -0.0100207934, -0.0100701572, -0.00033055924, 0.00632205559, -0.0132223694, 0.0026691556, 0.0242586415, 0.0219597109, 0.0179542154, -0.0107118823, 0.00797573384, 0.00261274027, 0.00576495333, 0.00185994664, -0.00908993836, -0.00490461756, -0.0151193393, -0.00513733132, -0.00575437536, -0.00157169905, 0.0144705614, -0.0295052771, -0.0209019221, 0.0118683986, 0.00576495333, 0.00347660179, 0.000582225039, 0.0163745824, 0.00789111, 0.00784174632, 0.00837064162, 0.0145833921, 0.00309050852, 0.0207326766, -0.00052625034, -0.00421705423, 0.00762313697, 0.013638434, 0.00768660428, 0.0202108324, -0.0160501935, -0.00830717385, 0.000849757635, 0.00906878244, 0.00369521161, 0.019054316, 0.0040019704, -0.0070801382, -0.0115722176, 0.0118331397, 0.00796163, -0.00256161368, 0.0658368245, 0.0155706629, 0.00431578141, 0.00147737947, -0.00998553354, -0.010161832, 0.00449913181, 0.0456683, 0.00954126194, 0.0215930119, -0.0127498908, -0.00300059654, 0.00960473, -0.0075526177, -0.00118648726, 0.00266210386, -0.0229469817, 0.00605055643, 0.0132082654, 0.0069214697, 0.00528542185, -0.0110785831, 0.00210147537, -0.00432283338, -0.00538767502, 0.0184619538, -0.00832833, -0.00722117675, -0.0186170973, -0.00172772293, -0.00464369636, 0.0189696923, 0.0168259069, -0.0112548815, -0.0252036, 0.00506328605, 0.0104862209, 0.032354258, 0.00434398931, -0.00329501461, 0.00995732564, 0.0203800797, -0.00794752594, 0.00919571705, 0.00626564026, -0.00308169355, -0.0176721383, -0.0189696923, -0.000835213, -0.0234265141, -0.00125700666, 0.00687563233, 0.00631500361, 0.000621451356, 0.00689678825, 0.0197595097, 0.00938611943, -0.0189837962, 0.00607523834, 0.0180670451, 0.0176439304, -0.00286308373, -0.00727759209, 0.0028066684, -0.0068297945, -0.0100348974, -0.0298155621, 0.00773596764, 0.00750325387, -0.00116709445, 0.0089771077, -0.00642783474, -0.0149783008, -0.0130883828, 0.0117626199, -0.00350304646, -0.0203941837, 0.0248510037, -0.018109357, -0.0203236639, 0.00305701187, 0.00884312112, -0.0201544166, -0.00332145928, -0.0112619335, 9.10690724e-05, 0.0122350994, -0.00124378421, 0.00436161924, 0.00473537156, -0.00653361343, 0.0249215234, -0.0198864434, 0.0229610857, 0.0119389184, -0.00995732564, -0.00810972, 0.0123972939, 0.0260498319, 0.00355064706, 0.0316490643, 0.0172631256, -0.00932265259, 0.00944253523, -0.00813087635, 0.0196466781, -0.0167271793, -0.00956241786, 0.0162758548, -0.00585662853, 0.0197595097, 0.0123549821, -0.00383625017, 0.0169528406, 0.00966114458, -0.00242057513, 0.00995027367, 0.0105778957, -0.00127463648, -0.0099432217, 0.00387503579, 0.0128627215, -0.0209865458, 0.00142096402, -0.00299354456, 0.00706250826, 0.0188286547, -0.000791579194, 0.00666760048, -0.0099220667, 0.0160078816, 0.000664644467, 0.0166848674, -0.00942137931, -0.00889953598, 0.0237509012, -0.0210429598, -0.00727759209, -0.0216494258, 0.0159796737, 0.00235181884, -0.0148090543, -0.00594830327, 0.00478826091, -0.000461460702, -0.0267268158, 0.00622332888, -0.00136631157, 0.0111420499, -0.00990796275, 0.00752441, 0.00395260705, 0.00562391477, -0.00375867891, 0.0114523349, -0.000166161117, 0.000284942071, -0.0231444351, 0.00991501473, 0.00533125969, 0.000645251654, 0.00478473492, 0.0209160261, 0.00503155263, 0.0190261081, -0.0109093366, 0.0235252399, 0.00474242307, 0.0153873125, -0.00163781084, 0.0312823653, -0.00582842063, -0.00416769087, 0.0142590031, -0.00229892926, 0.00682274299, -0.00605408242, 0.00767250033, -0.0128274616, -0.00537004508, -0.011424127, 0.0205070134, -0.00710834609, 0.0369521156, -0.00863156281, -0.00613870565, -0.00260921428, -0.0129120843, 0.0281936191, 0.0103663383, 0.000149412779, 0.0039385031, -0.0317618959, -0.00242233812, -0.0218468811, -0.0187722389, 0.0122350994, -0.00316102779, -0.0014685645, 0.00935791153, -0.00290010637, 0.00789816212, 0.0124113979, 0.0342723839, -0.00145798665, 0.0160078816, 0.00820844714, 0.00406543817, 0.00223017298, 0.00794752594, 0.00735516334]
23 Dec, 2024
restrict Keyword in C 23 Dec, 2024 The restrict keyword is a type qualifier that was introduced in the C99 standard. It is used to tell the compiler that a pointer is the only reference or access point to the memory it points to, allowing the compiler to make optimizations based on that information. Let’s take a look at an example: C #include <stdio.h> // Function that specifies its parameters as restricts void add(int *restrict arr1, int *restrict arr2, int *restrict res, int n) { for (int i = 0; i < n; i++) res[i] = arr1[i] + arr2[i]; } int main() { int arr1[] = {1, 2, 3, 4, 5}; int arr2[] = {10, 20, 30, 40, 50}; int res[5]; int n = 5; // Calling function add add(arr1, arr2, res, n); for (int i = 0; i < n; i++) printf("%d ", res[i]); return 0; } Output11 22 33 44 55 Explanation: In this example, the restrict keyword indicates that the pointers arr1, arr2, and result do not overlap, allowing the compiler to optimize memory access and improve performance. Since no other pointer modifies the arrays, the compiler can safely optimize the loop in the add_arrays function. Syntax of restrictThe syntax for declaring a pointer with the restrict keyword is as follows: type* restrict name; type: The data type of the pointer (e.g., int, char, float).restrict: The keyword that marks the pointer as restricted.name: The name of the pointer variable.Example of restrict C #include <stdio.h> void multiply_arrays(int *restrict arr1, int *restrict arr2, int *restrict result, int size) { // Loop through the arrays and multiply corresponding elements for (int i = 0; i < size; i++) { // Multiply and store the result in the result array result[i] = arr1[i] * arr2[i]; } } int main() { // Initialize two arrays with values int arr1[] = {1, 2, 3}; int arr2[] = {4, 5, 6}; int result[3]; // Call the multiply_arrays function to multiply elements of arr1 and arr2 multiply_arrays(arr1, arr2, result, 3); // Print the resulting array for (int i = 0; i < 3; i++) { printf("%d ", result[i]); } return 0; } Output4 10 18 Explanation: In this example, the restrict keyword tells the compiler that the arrays arr1, arr2, and result do not overlap, allowing for optimized memory access. This helps the compiler make better performance optimizations, especially when dealing with large arrays. Need of Restrict KeywordThe restrict keyword helps the compiler optimize memory access, making the code run faster by allowing reordering or parallelizing memory operations. It also improves code clarity by clearly indicating that a pointer won’t point to the same memory as another, making the code easier to understand. It’s especially helpful in performance-critical applications like scientific computing or graphics, where large data sets are manipulated. When Should You Use restrictThe usage of restrict should be specific to the cases given below: Performance-Critical Code: Use restrict in performance-sensitive areas like loops or large data processing, as it helps the compiler optimize memory access for faster execution.Parallel Computing: In multithreaded or SIMD computing, restrict helps optimize memory access and prepares the code for parallel execution.Large Arrays or Data Structures: When handling large arrays or complex data structures, restrict improves memory access efficiency.
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Find the Peak Element in a 2D Array/Matrix/Search an element in a sorted and rotated array with duplicates/Search for an element in a Mountain Array/How to Sort an Array in Descending Order using STL in C++?/Bitwise Operators in C/restrict Keyword in C
https://www.geeksforgeeks.org/restrict-keyword-c/?ref=lbp
Data Science & ML
restrict Keyword in C
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, restrict Keyword in C, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, How to Sort an Array in Descending Order using STL in C++?, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Find the Peak Element in a 2D Array, Search an element in a sorted and rotated array with duplicates, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Matrix, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, Bitwise Operators in C, Search for an element in a Mountain Array, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.0119708646, 0.00582293188, -0.008219813, 0.0213552639, 0.0254313163, -0.00560287945, 0.000930145674, 0.00442475127, -0.0404626057, -0.0297917444, 0.0267990287, 0.0112125296, 0.02585111, -0.0451480336, -0.00551824365, -0.0101562766, 0.0111922165, 0.0197708849, 0.000997007824, -0.0136771193, 0.0388105176, 0.00388985383, -0.0174958799, -0.0162365, 0.00807762519, 0.00409297924, -0.000718133408, -0.00401511462, -0.0393792689, -0.00424193824, 0.0249438155, -0.00898492, -0.0254313163, -0.0340980068, -0.0045364704, -0.0131896175, 0.0111786751, -0.0208271369, -0.0321750827, -0.00765106175, -0.0105286734, -0.0381334312, -0.0204750542, -0.0148417056, 0.000593295845, 0.0479917936, -0.0049156379, -0.044931367, 0.000482423144, -0.0432521962, 0.0107927369, 0.00732606091, 0.0141917039, -0.0012678419, 0.029710494, 0.0107317986, 0.0187417157, -0.0179156717, -0.0061208494, -0.0204073451, 0.00750887394, 0.00241719373, -0.0434417799, -0.0569293164, -0.000991083332, -0.0163042098, -0.0305500794, -0.00529819075, 0.00430964679, -0.0202583857, -0.0600709915, 0.032148, -0.0139885778, 0.0488313772, -0.013385972, 0.0145573299, 0.0206646379, 0.0048513147, -0.00739376945, 0.0790293738, 0.00173841603, 0.0216531809, -0.00900523178, 0.0197573435, -0.0068284031, 0.00421146955, 0.0254313163, -0.0195677597, 0.0596376546, -0.0727460235, -0.0306313299, 0.0104271108, 0.0481542908, 0.00158099376, 0.0191073418, 0.0185792148, -0.00710262265, 0.00203802623, -0.00575860869, 0.0401646867, -0.0107114865, -0.0254584, -0.0446063653, -0.0182677563, 0.0251198579, 0.00893075205, 0.00875471067, -0.00513907615, 0.0120859686, 0.0630501658, -0.0182271302, -0.00439766794, 0.0194323417, 0.0283021573, -0.0385126024, -0.0166562926, -0.0233594365, -0.0176719204, 0.00683178846, 0.0391896851, -0.0575793162, -0.016074, 0.0315792486, 0.0236302707, -0.0268125702, -0.0179833807, 0.0252823569, 0.00854481384, -0.0310104974, 0.0139885778, -0.0253500659, 0.0182542149, -0.0113750296, -0.0119708646, 0.00349375908, 0.00920158625, 0.033123, 0.00304519036, -0.0264875684, -0.0219646413, -0.02291256, -0.00915419, 0.00473959558, 0.0248625651, -0.0038526142, -0.0448501185, -0.00538959727, 0.0418980271, 0.0113818, 0.0105963815, -0.0085245017, 0.00619194331, 0.0233865194, 0.00984481722, 0.0673835129, 0.0187417157, -0.0330688357, 0.0288438257, 0.00694689294, -0.0284104906, 0.0262709018, -0.0294125769, 0.0041099065, 0.0355334245, -0.00134993845, 0.0404084399, 0.00511876354, -0.0260542352, -0.0271781962, 0.0253771488, -0.0205969289, 0.0173469204, 0.02736778, 0.0176854637, -0.0150989974, 0.00241719373, 0.000470997329, -0.00149043358, 0.0505105481, -0.0287625752, 0.0161687918, -0.0465834551, 0.00188060384, -0.0106573198, 0.0152208731, -0.0197031759, 0.0152479568, -0.0205427613, 0.0386751, 0.00532866, -0.0176312961, 0.0305229966, 0.0249708984, -0.00819273, 0.0212875549, -0.00186029135, -0.06451267, -0.0317959152, 0.0182948392, -0.00376459328, 0.0221135989, 0.00170117628, -0.0266365279, -0.0179969221, 0.00266094436, 0.0047937627, 0.0385396853, 0.0359396785, 0.0101088807, 0.00359193655, 0.0238875616, 0.0345584229, -0.0327709205, -0.0270427782, 0.00927606598, -0.0167646278, -0.0304146633, -0.0131489923, -0.0111109661, -0.0452022031, 0.00861252286, 0.00200417195, 0.0270427782, -0.00497996109, -0.0393251032, 0.012031802, -0.0214365143, -0.0125599289, 0.0199469272, -0.011686489, 0.00320599787, 0.0369688459, -0.0105286734, -0.00317722186, 0.00554194162, -0.0162500422, -0.000775262422, -0.00122637034, -0.0186333824, 0.0444167815, 0.00577215059, 0.020569846, -0.0540584736, 0.0121604484, 0.0328250863, 0.0534355566, -0.00325508672, 0.00391355203, -0.0075494987, 0.00561303552, -0.0442542806, -0.00354115502, -0.0380521826, 0.00316875824, -0.0550063923, -0.00506121106, 0.00415053172, 0.0025864651, 0.00403881259, -0.0317146666, 0.0303604957, 0.0145167047, 0.0155458739, -0.00827398, -0.0152885811, 0.00897137728, 0.0465022065, -0.0326084197, 0.0279771555, -0.0258375667, 0.0156271234, -0.0225875583, 0.0367792621, -0.0142458705, -0.00893075205, 0.053977225, -0.00226484961, 0.0285729915, -0.00211081281, -0.0379709341, 0.0114359669, 0.0145031633, -0.0255396497, -0.00379844732, 0.0586084872, -0.0347480066, -0.0318500847, -0.0236438122, -0.0117203435, 0.0332584195, -0.00896460656, -0.00688934093, -0.0163177513, 0.0210438054, 0.0569834821, -0.0208406802, -0.00912710745, -0.0492647104, -0.0396501049, -0.0037916766, 0.00713647716, -0.0191615075, -0.00288776797, -0.0206510965, -0.0386209339, -0.00699428888, 0.0121604484, -0.00455678254, 0.021788599, -0.0700376853, -0.0149906641, -0.0232646447, -0.0287625752, -0.0210031793, -0.0120521151, 0.00244766264, 0.00255261082, -0.0105896108, -0.0256615262, 0.00719064381, -0.0250115246, -0.00882918946, -0.020502137, -0.00949273352, 0.0157083739, -0.0277334061, 0.0184979644, 0.00463126227, -0.0156406667, -0.0386480168, -0.0342334211, -0.0235761032, -0.068791844, -0.018850049, -0.0181458816, -0.0312542468, -0.0304417461, 0.00661173603, -0.000958075398, -0.0224927664, 0.00951981638, -0.0257698596, -0.00447553257, 0.0242802724, 0.00683178846, -0.0106776319, -0.0279229898, 0.00764429057, -0.000614454737, 0.00253737648, 0.000967385364, 0.038458433, -0.00471251225, -0.00212943275, 0.0344230048, -0.0161417089, -0.0234813113, -0.0268125702, 0.0137515981, 0.00354792597, 0.0303334128, -0.014327121, 0.017197961, -0.00336511293, -0.0344500914, 0.00371381175, -0.0342063382, -0.0325271674, -0.00882241875, -0.0175229628, -0.0248219389, 0.000224284435, 0.0150719145, 0.0208271369, 0.00602267217, -0.0119776353, 0.00220899, -0.0261761099, -0.0398126058, 0.0445251167, 0.00175026502, 0.0215177648, 0.0256344415, -0.0135281608, 0.00168594194, -0.0162771251, -0.0414376073, -0.013040659, 0.0248625651, -0.00283698668, -0.0395417698, 0.0138396192, -0.0350188427, -0.0585001521, -0.0148958722, 0.0282479897, -0.0197302606, 0.013385972, 0.010034401, -0.0162771251, -0.0161417089, 0.0185115058, 0.0024933659, -0.00583985914, -0.00331263896, 0.0726918578, -0.0415459424, -0.00832137559, 0.0205833875, 0.0453376174, -0.0100073181, -0.0321750827, -0.0272052791, 0.0449584499, 0.0197844263, 0.0246729814, 0.0117474264, 0.00300287246, -0.0122281574, 0.027435489, -0.00805054232, -0.0179698393, -0.0296834111, 0.0304417461, 0.0242802724, -0.0183490068, -0.0063781417, -0.0117271142, -0.0101427352, -0.00539298262, -0.014922956, 0.0257292334, -0.0223302674, 0.013616181, -0.0102510685, -0.0375105143, -0.0104677361, 0.0199469272, -0.00745470682, -0.00735314423, -0.00799637474, 0.0296021607, -0.0137245152, -0.0104948189, -0.00712293526, 0.0228583924, -0.00222422462, 0.0141510786, 0.0175365042, 0.0265959036, -0.0353980102, 0.00198385934, 0.000812078943, 0.0210979711, 0.0816835463, -0.00138463906, -0.0157354586, 0.0038526142, -0.000190324397, 0.00274727284, -0.0169677529, -0.0385126024, 0.00223945896, -0.019445885, 0.0304959137, 0.00192122895, -0.0253636073, -0.00647970429, -0.00902554486, -0.0124719078, -0.0199604686, -0.0421146937, -0.00222930266, -0.00738022756, 0.0110297166, 0.0190938, 0.0192969255, 0.0153698316, -0.0351271741, -0.0477209575, 0.0237927698, -0.0138599323, -0.0244021472, -0.0313084163, 0.0113614881, -0.00489194, 0.0120859686, 0.0320938341, 0.0441459492, -0.0453647, 0.0226281844, 0.0078745, -0.000483269483, -0.0547626428, 0.0259459019, 0.0200958867, -0.0961460844, 0.0515126362, 0.00544037903, 0.0426021963, 0.0095469, -0.00692996616, -0.00702137267, 0.0475855395, 0.00656434, -0.00317891454, -0.0476667918, 0.0408417732, -0.0177260879, -0.0273813214, 0.01368389, -0.0077052284, 0.001968625, 0.00274727284, 0.0191750508, -0.0347750895, -0.0183896311, -0.0437938645, 0.00263386103, 0.0122010736, 0.0286000744, 0.0155458739, -0.00434688618, -0.0157625414, 0.00469897082, 0.0120859686, 0.0449042842, -0.0187687986, -0.014855247, -0.0439563654, -0.0156677496, -0.0292771589, -0.00124414393, -0.012397428, -0.0133114932, 0.00660158, -0.0179021303, 0.0247000642, -0.00360209285, 0.00532527454, -0.0195813011, 0.0354521759, -0.0226281844, 0.0227636, -0.0105354441, 0.00757658249, -0.018850049, 0.0127901379, -0.0134943062, 0.0281396564, -0.00370027, 0.0580668189, 0.0205563046, -0.0242125634, -0.0191344246, -0.0255396497, -0.00321953977, -0.0104067978, -0.0100411717, -0.0386209339, 0.000230208942, 0.00109518517, 0.0284375735, 0.0209219288, -0.00752241537, -0.0252823569, 0.0239688121, -0.0175635871, 0.00119420886, 0.0192156751, 0.0269886125, -0.0250386074, 0.0223844331, -0.0238604788, 0.0139073282, 0.0158844162, -0.0299000777, 0.00293177855, -0.00350391539, 0.0132437842, -0.041762609, -0.0266365279, -0.00662527792, 0.0283021573, 0.0454459526, 0.00589402579, 0.0102036726, -0.00681824703, -0.024889648, 0.0191344246, -0.0368605144, 0.0243208967, 0.00121706049, 0.00955367088, -0.0117135718, 0.00885627326, 0.0133182639, -0.0117135718, -0.0136297233, -0.0079489788, 0.00130931335, 0.0362105109, -0.00159707444, -0.0105692986, 0.0216125567, 0.0125531582, -0.0247813147, 0.00151159253, 0.0400021896, 0.0164667089, -0.0293584093, -0.0270156953, 0.0329605043, 0.0131896175, -0.00294024195, -0.0340438373, -0.0404084399, 0.000539129, -0.0176042132, 0.00478360616, 0.0104609644, 0.00257969415, -0.0160333756, 1.92942807e-05, 0.024063604, 0.00259323604, -0.0299271606, -0.0187146328, -0.0193510931, 0.00835523, 0.00639168359, -0.0201771352, 0.0103390897, -0.0120859686, -0.00697397674, 0.010054714, 0.0109146116, 0.0251469407, -0.00924221147, -0.00348021742, 0.00642892299, 0.0101562766, 0.0216125567, 0.044795949, -0.0112937791, -0.0137515981, 0.013385972, 0.0379167646, 0.00796252117, -0.0255667344, 0.0304417461, 0.020136511, 0.00458725169, 0.0257563181, 0.00202617724, 0.0131896175, 0.0531647205, 0.0396501049, 0.0106911734, -0.0178344212, -0.0133250346, -0.000409636501, -0.0405980237, 0.0214635972, -0.00801668782, -0.0113411751, -0.00685210107, 0.0245375633, 0.0193375498, 0.0260000676, -0.022546934, -0.0369688459, 0.0114969052, 0.00289792428, 0.00158776459, 0.00157845463, 0.00962137897, 0.0303334128, -0.00410652114, 0.0341250896, 0.0249708984, -0.0218156818, -0.0151260812, -0.0106708612, -0.0191479661, -0.0124245118, -0.0110838832, -0.0204479694, -0.0283563249, -0.0373209305, -0.0142729543, -0.0379709341, 0.000471843668, 0.0291417427, 0.00757658249, -0.0136906607, 0.0274084043, -0.0243344381, -0.0139073282, 0.0334750861, -0.0107521117, -0.015911499, 0.004902096, -0.0111719044, -0.0224521421, 0.0522980541, -0.00370027, -0.0161958765, -0.0136500355, -0.019676093, -0.00567735871, -0.00324493041, -0.00717710191, 0.012214615, 0.0057789213, 0.0301709119, -0.0117745101, 0.0210167207, -0.00756304059, -0.0215990152, -0.00466850167, 0.0112463832, 0.00262031937, -0.0207594298, 0.0185385905, -0.0114765922, -0.0230073519, 0.000342774321, -0.0308209136, 0.0036461032, -0.026609445, 0.0358313434, -0.0158844162, -0.00845002197, -0.0164531674, -0.0251063164, 0.00131946953, 0.0097094, -0.0169677529, -0.00929637812, -0.0125734704, -0.00432318822, 0.0114901345, 0.0290604923, -0.00661850674, -0.0109010702, -0.0115646133, -0.0105219027, -0.00593803637, 0.0326084197, -0.0316334143, 0.0194594264, 0.00966200419, -0.0332584195, 0.0114495093, -0.0186333824, -0.011388571, -0.0156542081, 0.0110500287, 1.047366e-05, -0.00928283669, 0.0339896716, -0.00962815061, 0.00983804651, 0.0167240016, -0.0227229763, -0.0127765955, 0.0357500948, 0.0179021303, -0.00710262265, 0.00646954821, 0.0105015896, 0.0201094281, 0.00853804313, 0.00388985383, -0.00259323604, -0.0124786785, 0.00667944457, 0.00914064888, 0.0130068045, -0.00146504294, 0.0388105176, -0.00501043, -0.0120588858, 0.0253094416, -0.0112531548, 0.0300896615, 0.00542006642, 0.0142052453, -0.0288167428, 0.00354115502, 0.000342985935, 0.065000169, -6.64389736e-05, -0.0261084, -0.0154239982, -0.026541736, -0.0241854805, -0.0461772047, -0.0438209474, 0.0288979914, 0.0218969323, -0.000763413438, 0.0169406701, -0.00073971547, -0.00843648054, 0.0299000777, -0.0220729746, -0.0105625279, 0.0316334143, 0.0154104568, -0.00611746404, 0.00444844924, 0.0251469407, -0.0138057657, -0.00204310426, 0.00645262096, -0.00844325125, 0.0207458884, 0.0190260913, -0.00360886357, -0.00185013504, -0.00656434, -0.0110635702, 0.00168340281, 0.018619841, 0.0307396632, 0.0256209, 0.0282479897, 0.0255802758, -0.0255261082, 0.00868023094, 0.0140021201, 0.000771453837, -0.0200146362, -0.0134401396, 0.00505782571, -0.00958075374, 0.000118807278, 0.00802345853, 0.00427579228, -0.0137312859, -0.0272052791, -0.00918804482, -0.0160469171, 0.0227365177, -0.0217073485, 0.0283834077, -0.00505444035, 0.0205427613, 0.044173032, -0.028193824, 0.0178073384, 0.00654064212, -0.00627996447, -0.00299102347, -0.0278417394, -0.0459876209, -0.000884442416, -0.0119708646, 0.00521017, 0.0230886023, -0.0150312893, 0.0170083772, 0.00912710745, 0.00355469668, 0.0286813248, -0.0200010948, 0.008632835, -0.0277875718, 0.0111651337, 0.0238063131, -0.0166698359, 0.0243479796, -0.0075494987, -0.00697397674, 0.0124380533, 0.00220560469, 0.0341792554, 0.0169812944, 0.0427376106, -0.0160469171, -0.00784741621, -0.00908648223, 0.0182542149, 0.0287625752, -0.0322834179, -0.0259052757, -0.00715001859, -0.0221813079, 0.0405980237, -0.000415772578, -0.00645939168, -0.0379438475, 0.0141510786, 6.55926196e-05, -0.0240094382, 0.00278789783, 0.00174518686, 0.0287896581, 0.00438412605, -0.016074, -0.0168594196, 0.0128172208, 0.0181187969, 0.0265281945, 0.0149094136, 0.0452563688, 0.00527449278, 0.030604247, 0.0187687986, -0.0111651337, -0.00432318822, -0.0252959, 0.0268938206, 0.0513501354, -0.0274896547, -0.00807085447, -0.000211271705, 0.00882918946, 0.0264198612, 0.0352625921, -0.027232362, 0.0171167105, -0.0158437919, -0.0333125852, 0.00598204695, -0.0141375372, 0.00211081281, -0.0170490034, -0.0180781726, -0.0120453443, 0.0281125735, 0.0346938409, -0.00582631724, 0.00200586463, -0.0134875355, 0.0064492356, -0.0388105176, -0.0303875785, 0.00214635977, 0.0142323291, 0.0122213857, -0.00830783416, -0.00918804482, -0.0118625313, -0.0109484661, 0.0252011083, -0.0280042402, 0.0448501185, -0.00938439928, 0.020502137, -0.00591772376, -0.0328521691, -0.0250792317, -0.0404084399, -0.019608384, -0.00692319497, -0.0316334143, 0.0277604889, -0.00790158287, 0.0273406971, -0.00481407531, -0.0203802623, 0.018321922, 0.0269615296, -0.0131760761, -0.0251740236, -0.0065338714, -0.0110703418, 0.00714324787, -0.0268802792, 0.0240771454, 0.043279279, 0.0198250525, -0.0130271176, 0.019676093, -0.0292229932, 0.0372938477, 0.00699428888, 0.0192021336, 0.00556563959, -0.00454662647, 0.0147198299, 0.0124854492, -0.035289675, 0.0130745135, 0.00906616915, -0.0195677597, 0.0273271538, 0.0162229594, 0.000182072414, 0.00683855964, -0.0106234653, -0.0156948324, 0.0363459289, 0.00538282655, 0.000666082487, -0.0255125668, -0.0110703418, 0.0214365143, -0.00282683037, -0.0195948426, 0.00865991879, -0.0169542115, 0.00784741621, -0.0014057979, 0.0287354924, -0.00409297924, 0.000225765558, -0.0158031657, -0.00698751817, -0.0106166946, -0.0273136124, 0.0406792723, -0.0200823434, -0.00365287415, 0.00671329862, 0.00735314423, -0.00820627157, -0.0238198545, 0.0142864957, -0.0411667749, 0.0108739864, 0.00327201374, 0.00333125866, 0.0228854772, 0.00849064719, 0.013501077, 0.00739376945, 0.00462787645, -0.0265146531, -0.00395417679, 0.0152479568, -0.0169406701, -0.0239688121, -0.0112396125, -0.0397584364, -0.00044856887, 0.0195406768, 0.0249167327, 0.0197031759, -0.00968231726, 0.0355334245, -0.0024832096, -0.0181052554, 0.0203125533, -0.018552132, -0.0202990118, -0.00311628426, 0.000104419218, 0.0039744894, 0.0191344246, -0.0027608145, 0.0223979745, -0.0169000439, 0.005464077, -0.0242261048, -0.00317552919, 0.00973648392, -0.0242396463, -0.0316063315, -0.0218427647, -0.000755796267, -0.018321922, 0.0228177682, 0.0178073384, 0.0316063315, 0.0208677631, 0.00849064719, 0.0162771251, 0.018917758, -0.0205833875, -0.0239146464, -0.0137854526, 0.00790835358, 0.0108469035, -0.00176042132, 0.0246865228, -0.0383501, -0.0203125533, -0.00426225085, -0.00329232635, 0.00313321128, 0.00922867, -0.0221271403, 0.0122349281, 0.00354454061, -0.0250927731, 0.0222490169, -0.0178750474, 0.00283021573, 0.0100614848, -0.000615724246, 0.00622918317, 0.0187958833, 0.00710939337, 0.0631043315, -0.0111380499, 0.00132624048, 0.00449246, 0.0164125431, 0.0144489957, 0.00174349418, -0.0240365211, 0.0085245017, 0.022154225, 0.0315521657, 0.0106234653, -0.0046583456, 0.0505918, 0.00880887732, 0.0179292131, -0.0182000473, -0.011503676, -0.00859221, 0.00552162901, 0.00630704779, 0.0202313028, 0.0058297026, -0.0218698494, 0.0299813282, -0.00494272122, -0.0515126362, -0.00862606429, -0.018321922, 0.014855247, 0.00611069286, 0.00613100547, 0.00741408207, 0.00102324481, -0.00337696192, 0.01726567, 0.0150177479, 0.0115646133, -0.0186875481, 0.00534558669, -0.0262031928, 0.0083890846, 0.0118760727, 0.000719826086, -0.0134807648, -0.00708231, -0.0230750609, -0.0248354822, -0.0441188663, 0.0286271572, 0.0113208629, -0.0137922233, 0.0310646649, 0.00738699827, -0.00039609478, 0.0193646345, 0.00413021911, -0.0325542502, -0.0206646379, -0.018091714, -0.0193917174, -0.000566635572, -0.0215583891, -0.00959429611, -0.00258477242, -0.0200281776, 0.0030925863, 0.0175635871, 0.0141917039, 0.00311628426, -0.0103932563, -0.0104948189, 0.0283834077, 0.0169542115, -0.0155594153, 0.00607683882, 0.0182542149, -0.00242227199, 0.00663881935, 0.00729897758, 0.0103594018, -0.00642215228, 0.0055351709, 0.00196693232, 0.0109416954, -0.00200247928, -0.00547423307, -0.0299542453, 0.00694012223, 0.0163448341, -0.0267854873, 0.024564648, -0.0282209069, 0.0135349315, 0.0258375667, -0.000551824342, 0.0279500727, -0.0211792216, -0.00720418571, -0.0021835994, 0.02172089, -0.00158522546, -0.000848895463, -0.00914064888, -0.0179427546, -0.00390339573, 0.0214771386, -0.00274388748, -0.0169135854, 0.00635782909, 0.0158573333, 0.0101291928, 0.00434688618, -0.0137786819, 0.00386615586, -0.0228042267, 0.00578907784, 0.0106370067, -0.00334818591, 0.0134672225, -0.0156542081, -0.00218529208, 0.0140698282, -0.00809116662, -0.0126818037, 0.0225740168, -0.0332042538, 0.00178919733, 0.00658803806, 0.00874116831, -0.00324662309, -0.0113411751, 0.0168594196, -0.00667605922, 0.00108418253, 0.00328047737, 0.0236167274, -0.00686564296, -0.01726567, -0.00134316762, 0.0248490237, 0.000794728636, 0.0346396752, -0.0329605043, -0.0207865126, 0.018917758, 0.0154781658, -0.021788599, 0.000392920949, -0.0261625685, -0.0273136124, -0.0281125735, 0.00260508503, 0.0145437876, 0.0322021693, -0.0127495127, 0.0206917208, -0.0301709119, -0.0200688019, -0.00405574, 0.00173249154, 0.0154375406, 0.0184844229, -0.0215042233, -0.0114021134, 0.00264232466, -0.0122281574, -0.044470951, -0.00363933248, 0.00656434, -0.0135823274, 0.00633074576, 0.0187687986, 0.00228346954, 0.0186740067, 0.0207458884, 0.0344230048, -0.00162754336, 0.028952159, 0.0161281675, -0.0175771285, -0.0196219254, 0.0172521286, 0.00820627157, -0.00489871064, -0.0262844432, -0.0267854873, -0.0173740033, -0.00285729906, 0.00117389625, 0.0112802377, 0.0253771488, -0.000433757639, -0.0107724238, 0.0101765888, -0.00561642088, -0.000879364263, -0.0056909, 0.0055351709, -0.0159385838, 0.0059989742, 0.0154239982, -0.00702814339, 0.0141375372, -0.0228177682, -0.00094791915, -0.0214771386, -0.00394063536, -0.0140427453, 0.00412006304, -0.00993283838, 0.0229396429, 0.00513907615, 0.00992606767, 0.00734637352, -0.0444438644, 0.000624611, 0.00306211738, 0.00627657911, -0.009045857, 0.00763752, -0.0213688053, -0.00538959727, 0.00425209431, 0.0186333824, -0.0215990152, -0.0219781827, 0.012695346, 0.0055724103, 0.00481068948, 0.0131693054, -0.0168187935, 0.0144625381, 0.0101359636, -0.0181458816, -0.00136940461, 0.0238198545, -0.0131693054, -0.0557918139, 0.011801593, -0.00365964486, -0.0112531548, 0.0106370067, 0.00101139583, 0.0137312859, -0.000187785321, 0.0118354475, -0.0115172174, -0.0286271572, 0.0283292402, 0.00311797694, -0.0226011015, 0.0136229526, -0.0181458816, 0.0246865228, -0.0154239982, 0.0161010846, 0.00334480032, -0.00512891961, -0.0240500625, 0.0184167139, -0.0302250795, -0.00960106682, 0.00022745828, -0.018024005, 0.00259154313, -0.0320938341, -0.0123094069, 0.000465072837, -0.0281667411, -0.0080099171, 0.0105219027, 0.0203396361, -0.0111041954, 0.0198656768, -0.0149906641, 0.0203396361, 0.00979742128, -0.0178479627, -0.0108062783, -0.0145573299, 0.0135958688, 0.0255396497, 0.0104067978, -0.0124583663, 0.00844325125, 0.00650678761, 0.00176719215, -0.00892398134, 0.0114833629, 0.0121198231, 0.018917758, 0.0342875905, -0.00793543737, 0.0170896277, 0.000562403817, -0.0103458604, 0.0292771589, -0.00497319, -0.00861929357, 0.00242057932, 0.00542006642, 0.0326625854, -0.0116661759, 0.0187146328, -0.0177667122, -0.00437735533, 0.022479225, -0.00348360278, -0.00659480877, -0.00137956091, -0.0175771285, -0.0102036726, -0.0102239847, -0.0051932428, -0.0137583697, 0.0118625313, 0.00345990481, 0.00375105138, -0.0173469204, 0.00419115694, 0.00790835358, -0.0102307554, 0.0230479762, -0.00749533204, 0.0138599323, 0.000193392436, -0.0132167013, -0.0125599289, 0.0101224221, 0.0145031633, -0.0214094315, -0.00165124133, 0.0100479433, -0.00436381344, -0.000675392395, -0.00776616624, 0.017793797, 0.0139885778, 0.0138802445, -0.0163448341, 0.0167781692, -0.0144354543, 0.0134807648, 0.00367318676, -0.00101054949, -0.0345042571, 0.0111312792, -0.0155864991, 0.0276386142, 0.0160062909, -0.00487839803, 0.00792189594, 0.0117338849, 0.0253094416, 0.0134062851, 0.0131354509, 0.012099511, -0.00140241254, -0.00783387478, -0.00150143623, -0.00944533758, 0.011273467, 0.00747501943, -0.00694689294, -0.0216125567, -0.0196219254, -0.00492240861, -0.00650340226, 0.000411963963, -0.00406928128, -0.00666251732, 0.00217175041, -0.0106166946, 0.0201771352, 0.00571459811, 0.02585111, -0.0056942855, -0.0177667122, -0.0320667513, -0.00820627157, -0.0282479897, 0.025025066, -0.019743802, -0.0246458985, -0.00861252286, -0.0156406667, 0.0445792824, -0.0174823366, -0.00834168866, 0.0362646766, 0.00127715175, 0.0159521252, 0.0334480032, -0.0259594433, 0.0135078477, -0.0269615296, -0.0128172208, 0.00775262434, -0.0115307597, 0.00474636676, 0.0105692986, 0.0127833672, 0.0233188104, -0.00884950254, -0.0115239881, -0.0211792216, -0.0286271572, 0.0185656734, -0.0118760727, -0.00750887394, 0.00444844924, -0.0125396159, -0.003730739, -0.00864637643, -0.0140562868, -0.00381537457, 0.000784572389, -0.00521355541, 0.00506798178, 0.00945210829, -0.0217615161, 0.0103120059, -0.0255802758, 0.00187721848, -0.0180104636, 0.00265925168, -0.0049156379, 0.0314709172, -0.020136511, 0.000861590786, -0.0123364907, 0.00792866666, -0.00438751141, -0.0133047225, 0.00786095764, 0.00205495325, 0.0134401396, -0.000808693527, 0.021788599, -0.00968231726, -0.0105489856, 0.0209083874, -0.0151667064, 0.0242396463, -0.00145573297, 0.0022546933, -0.00085862854, -0.000279086, 0.00256445981, 0.0297375768, -0.0046448037, -0.00375105138, -0.00596511969, -0.00647970429, -0.00765783247, 0.000575945538, 0.00241380837, 0.0188635904, 0.009045857, -0.00512891961, -0.0142052453, -0.0104203401, -0.0148958722, -0.00667267386, 0.0140427453, 0.0105692986, 0.00553178508, -0.00538959727, 0.000254541694, -0.0132640973, 0.00344128511, 0.0115916971, 0.00759012392, -0.0196354687, -0.0073057483, 0.000180591291, -0.0144489957, 0.0177125465, -0.00615131808, -0.0127359703, 0.0138599323, 0.0222761, -0.000280567125, -0.00136601925, 0.0318229981, -0.0221813079, 0.00940471236, 0.000350179966, 0.00568751479, -0.0225740168, 0.00723126903, 0.00316706556, -0.0372938477, 0.00977033842, 0.0178615041, -0.00766460318, 0.0173875447, 0.0160198342, 0.00614116201, -0.0234271437, 0.00644246489, -0.0260948595, 0.00694012223, 0.0151260812, 0.0106844027, -0.025025066, 0.00941148307, 0.00354115502, 0.0101562766, -0.0160469171, -0.0296021607, -0.015085456, -0.00400157273, 0.0192021336, -0.00683855964, -0.0106573198, 0.0233594365, -0.00151159253, 0.00960783754, -0.0169677529, -0.0204615109, -0.00680809049, -0.00214466709, 5.87688701e-05, 0.0113411751, 0.0135417022, 0.00638829777, -0.0204615109, 0.00614116201, -0.0106505491, 0.0198250525, -0.00593803637, -0.0110094035, -0.00805731304, -0.0162500422, 0.00671329862, -0.0176583789, 0.00750887394, 0.00137702178, -0.00063434412, 0.0129187834, -0.0403271876, 0.00176380668, -0.0049156379, 0.00857866835, -0.0168052521, 0.00103001576, 0.00615470344, -0.00691980962, 0.0191885922, -0.0171437953, -0.00764429057, 0.00847033504, -0.00472266879, 0.0186063, -0.00411667721, -0.0113005508, -0.00495964848, 0.00977710914, 0.00369349914, 0.00690965354, 0.0108333612, -0.00650340226, 0.00016059613, 0.0145302461, -0.00329571171, -0.0171844196, -0.001885682, -0.00840939675, -0.0149635803, 0.0228583924, 0.0281667411, 0.00937762856, -0.00354115502, 0.0174146295, -0.012397428, 0.00960783754, 0.0117338849, 0.00843648054, 0.0123161776, -0.00626642257, -0.0176583789, -0.0104745068, -0.0128713874, -0.0140427453, -0.0115984678, 0.0128443046, -0.000647885783, 0.0171708781, -0.0129932631, 0.00542683713, -0.0123838866, -0.0212333892, -0.00910002366, -0.00106217724, -0.0155052487, 0.0211521387, -0.00736668613, -0.0206781793, 0.00874116831, 0.00922867, 0.0238604788, 0.0221813079, 0.000178475399, -0.0268802792, 0.0137380566, -0.0303334128, 0.00413021911, -0.00195339043, 0.00513907615, -0.0294667445, 6.1691444e-06, 0.0158437919, 0.00595157826, -0.0250521488, 0.00272526755, 0.00207695854, 0.0172250457, -0.0106099239, -0.00585001521, -0.00390339573, 0.00691642426, -0.00339727453, 0.0010774117, 0.0103458604, 0.0142458705, -0.00705522671, 0.0152614983, 0.0131828468, 0.00142864953, 0.0101359636, -0.0121672191, -0.00961460825, -0.0313084163, 0.0100073181, -0.00663543399, 0.0012576856, -0.0199604686, 0.0143542038, -0.00348021742, -0.0161281675, -0.0222761, -0.0320396684, -0.0417896919, -0.0205563046, 0.0166427512, -0.0286813248, 0.0100479433, 0.00859898049, 0.0290063266, 0.0102239847, -0.00537605584, 0.00366303045, -0.00576199405, -0.0170896277, -0.00346159749, -0.0130000338, -0.0148958722, -0.00330079, 0.013501077, 0.0119505525, 0.00701460149, -0.00783387478, -0.00813179184, -0.0121130524, 0.00588048389, 0.0433334447, -0.0335834213, -0.0020718805, 0.0163583755, -0.00506798178, -0.00501720048, -0.00505105499, 0.0178344212, 0.023372978, 0.00575183798, -0.013501077, 0.00874794, 0.000722788332, -0.0244427714, -0.0159250423, 0.00322969584, -0.023670895, -0.00547084771, -0.0326355025, -0.000395036826, 0.0182812978, 0.024199022, -0.00517970091, -0.0260271505, -0.00721772714, 0.026149027, -0.0026152411, -0.00198893738, -0.0408417732, -0.0107385693, 0.00648647547, 0.0113073215, -0.0028539137, 0.0244156886, 0.00259323604, 0.0164802521, -0.00599220302, -0.00810470898, -0.00559610827, -0.000746486301, 0.0298729949, -0.013108368, 0.00265078829, 0.00688595558, -0.0229261015, -0.0145302461, -0.00264232466, -0.0162906684, 0.0127698248, -0.00349714444, 0.00647631893, 0.0535168052, 0.002628783, -0.00461094966, 0.0115375305, -0.00110449502, 0.00388646848, 0.00618855795, -0.00800314546, 0.0193510931, -0.0178479627, -0.00523386803, -0.0215042233, 0.00205326057, 0.00894429442, 0.0108062783, -0.000919143, -1.46789935e-05, -0.00253737648, 0.00987867173, -0.00358178024, 0.00347006111, -0.00127884443, 0.00641876692, 0.0249167327, 0.00620548474, 0.001225524, 0.0138802445, 0.0129187834, 0.0069130389, 0.0210438054, -0.00600574492, 0.0325542502, -0.00581616117, 0.0126682622, 0.00883596, 0.00939794164, -0.00554532697, -0.00768491579, -0.00365287415, -0.00337526924, -0.00128476904, -0.00455678254, 0.00474298093, 0.00723126903, 0.0150312893, -0.00736668613, 0.018917758, 0.013568785, -0.00996669289, -0.00151243887, -0.0140562868, 0.00792866666, 0.025187565, 0.00775262434, 0.032391753, 0.00823335443, -0.00519662816, 0.0173062943, -0.0122890947, -0.00162246521, -0.00677762181, 0.0160469171, 0.0028217521, -0.00598881766, -0.0202448443, 0.0184167139, -2.01009643e-05, 0.00987190101, 0.00939794164, -0.011503676, 0.00352761336, 0.00311628426, -0.0157760829, 0.00542345177, 0.0270292368, 0.00865314715, -0.00206341688, -0.0130203469, 0.00819950085, 0.0110635702, -0.0136026395, -0.000914064876, 0.0104812775, -0.00927606598, -0.00614454737, -0.00411667721, 0.0219511, -0.000234440711, -0.00319922715, -0.00301302876, -0.00559949363, 0.00708908122, 0.00863960572, 0.00459740777, 0.0194865093, 0.00885627326, -0.0125937825, -0.0104880482, 0.0178885888, -0.00876148138, 0.0200958867, -0.0108807581, 0.00115019828, 0.0126005542, 0.00474298093, 0.00588048389, 0.00656772545, -0.0226823501, -0.012214615, 0.012512533, -0.00370704103, -0.0065271, 0.00123314129, -0.00413360447, -0.0298729949, -0.00882241875, -0.0146114966, -0.00656434, 0.00621902663, 0.000526433694, -0.0139885778, -0.00718387309, 0.00433334475, 0.000269352924, 0.0139073282, -0.00466173096, 0.0224250592, 0.015085456, 0.00983804651, -0.00955367088, 0.00112480763, -0.0241719373, -0.0095604416, -0.0159521252, -0.0199604686, -0.00810470898, -0.00330586801, 0.0116526345, -0.0236979779, 0.000804884941, 0.00369688473, -0.0118219061, 0.0348563418, 0.00459063705, -0.00284714275, -0.00686225761, 0.00448568864, 0.00196523941, -0.0117474264, 0.019676093, -0.00859221, -0.0123094069, -0.0140021201, 0.0107182572, 0.00183151523, 0.0244833976, 0.0291688256, 0.0314709172, -0.0064627775, -0.0239417292, -0.0211385973, -0.011916698, 0.0113344043, 0.0201229695, -0.00143372768, 0.00874116831, -0.0146521218, 0.038458433, 0.0150448307, -0.0065711108, 0.00228516222, -0.0232781861, 0.00690965354, -0.00351745705, 0.00479714805, -0.00328894099, -0.00201771362, 0.00574845262, 0.0129729509, 0.00749533204, -0.00212943275, 0.00251367851, -0.00892398134, 5.90333584e-05, -0.0217479728, 0.0126614915, 0.0165344179, 0.00144219131, -0.0064492356, -0.00671329862, 0.0365625955, -0.0102781523, 0.000308920076, 0.0149906641, 0.000697397627, 0.0113208629, 0.0126885744, -0.0379980169, -0.00371042639, -0.0250927731, 0.00654064212, -0.014855247, 0.00142611051, -0.0178885888, 0.00876148138, 0.0152885811, 0.00690288283, -0.0214365143, -0.00617840141, 0.00975002535, 0.00867346, 0.0165208764, -0.00764429057, 0.00154290767, 0.00821304228, -0.0213146396, -0.0157354586, 0.0212063063, 0.0170490034, 0.00214635977, -0.00466850167, -0.0013854854, -0.0227229763, 0.00912033673, -0.0128172208, 0.00682163239, 0.0287354924, -0.0303604957, 0.00889689848, -0.014029203, -0.0207729712, 0.00893075205, -2.53576309e-06, 0.00260339212, 0.0394876041, 0.00165039499, -0.017197961, 0.00314167491, -0.0162906684, 0.00753595727, 0.0218292233, 0.014922956, 0.00307227368, 0.0161687918, -0.00434350083, 0.00354115502, 0.0155594153, -0.00367318676, -0.00175026502, 0.0135349315, -0.0112396125, -0.00231055287, -0.00657449616, -0.013798994, -0.00802345853, -0.00122890947, 0.0046448037, -0.00767137436, -0.00446537603, -0.00459063705, -0.0103052352, -0.0106370067, -0.0104067978, 0.0189313, 0.00685887225, -0.00476329355, 0.00968231726, -0.0223708916, -0.0113073215, 0.00817918777, 0.00500704441, -0.0117474264, -0.00129577157, 0.00748856133, 0.0135146184, 0.0118354475, 0.000900523213, -0.0267990287, 0.0117135718, -0.00498334644, 0.0140427453, -0.0273136124, -0.0134604517, -0.0199469272, 0.0104203401, -0.00598204695, 0.0233188104, 0.00417084433, 0.00132031599, 0.00595834898, -0.00373412436, 0.00438074069, -0.00661512138, -0.00444167806, -0.0176719204, 0.00780679146, 0.0011806672, 0.00569767132, 0.00933023263, 0.0252959, 0.0147198299, -0.000243327464, -0.000837892818, -0.0106437774, 0.0107995076, 0.00722449785, 0.00565366074, 0.00933700334, 0.00473282486, -0.0207458884, 0.0225198511, 0.0028115958, 0.0192021336, 0.0169000439, 0.0198115092, -0.0122552402, 0.0113208629, 0.00145827199, 0.0059854323, -0.0156948324, 0.0221813079, -0.00505105499, -0.0230208933, -0.00568412943, -0.0299542453, 0.0020905002, -0.0127901379, 0.013568785, 0.00457709515, -0.0020905002, 0.0118489889, 0.0280854907, 0.00444844924, 0.016439626, 0.00827398, -0.00330079, -0.00387969753, 0.0278959069, 0.00687579904, 0.0239552706, 0.00108926068, 0.00196523941, -2.49410641e-05, -0.00342435786, 0.00488516921, 0.00872085616, 0.02585111, -0.012925555, 0.00180781726, 0.0100005474, -0.0040726671, -0.000260677771, 0.00543022249, 0.00726512307, -0.0153427487, 0.0146114966, 0.00217852136, -0.00744793611, 0.00461433502, 0.0192021336, 0.00180950994, -0.0179021303, -0.0097094, 0.00246966793, 0.0154917073, 0.00194323424, -0.00285560638, -0.000162712007, 0.0174687952, -0.0147875389, -0.00928960741, 0.00714324787, -0.0112328418, 0.00497319, 0.0143677462, -0.0397855192, -0.0109349247, -0.00308920071, -0.00502735702, 0.0306313299, 0.009045857, -0.00706876861, 0.00221745367, 0.00903231557, -0.019445885, 0.00140071986, -0.00907971151, -0.00691980962, -0.0145167047, 0.0116932597, 0.00260847039, 0.0052304822, 0.00518308626, -0.00349037373, -0.00561303552, 0.0275709052, -0.0161010846, 0.0113344043, 0.00201094267, -0.0192292165, 0.00892398134, 0.00117304991, -0.0021514378, -0.0116323223, 0.00162923604, 0.0156406667, 0.0113411751, -0.0155052487, -0.00905939844, -0.00916096102, 0.0130745135, 0.00199063029, -0.0296563283, 0.0154917073, -0.0247406904, 0.029250076, -0.0155458739, -0.020136511, 0.00775262434, -0.0249979813, -0.00220052665, 0.0109213823, 0.000279297616, -0.0103526311, 0.00308920071, 0.0117812809, 0.00503412774, -0.0115375305, 0.0041099065, -6.31064468e-05, 0.00598881766, -0.0282750744, 0.00659480877, 0.028058406, -0.0178208798, 0.0157219153, -0.00404558331, 0.0107250279, -0.00554194162, -0.0263386108, 0.00604298431, -0.00363594689, 0.0366167612, 0.011388571, 0.0227636, 0.033150088, -0.00892398134, -0.000521778711, -0.00279974681, 0.00807085447, 0.022777142, -1.77999318e-05, -0.021856308, -0.00118489889, -0.00767814508, -0.0123364907, -0.0201229695, -0.0075833532, 0.0176854637, 0.043143861, -0.00842293911, -0.00166816846, 0.000890366908, 0.0151802478, -0.0305771623, -0.0209490135, 0.0257563181, -0.00903908629, 0.000317383645, 0.0208948459, -0.0107250279, -0.00491225254, -0.0122281574, -0.00977710914, -0.028952159, 0.0262709018, 0.0188906752, -0.0225063097, 0.0279229898, 0.0102646099, 0.0206510965, -0.0252011083, 0.0127359703, 0.0178479627, -0.0128036793, 0.0092557529, -0.00798960403, 0.0169135854, -0.0284646582, 0.0144625381, 0.0239146464, -0.0120927403, 0.00743439421, -0.00363256154, -0.00912710745, 0.0138193071, 0.00192292174, -0.0109620076, -0.014692747, 0.0056909, 0.0240771454, 0.0306584127, 0.00350730075, -0.0140833706, -0.00349714444, -0.0107859652, -0.00477683544, -0.0102307554, -0.00637137098, -0.024131313, -0.0162635837, 0.0100073181, -0.00869377237, -0.018321922, -0.00547761843, -0.0114021134, -0.00786772929, 0.00602944288, -0.000252637372, 0.0162229594, 0.0127562834, 0.00310274237, 0.0238063131, 0.00284206471, 0.0140698282, 0.0179156717, -0.00403881259, -0.00140495156, 0.0122010736, -0.00120690418, 0.00639506895, 0.0140698282, -0.00847710576, -0.00634767301, 0.00203294796, -0.00360886357, -0.00195169786, -0.0077187703, 0.0132979518, 0.0149635803, 0.0160333756, -0.00166309031, 0.00486824196, 0.00684871571, 0.00300964317, -0.0152208731, 0.00867346, -0.00392709346, -0.00168678828, -0.00604637, -0.00788804144, -0.026541736, 0.00187891116, -0.00884950254, 0.00744793611, -0.0147604551, 0.00572475465, 0.00725835236, -0.00666928804, -0.0167646278, 0.00240365206, -0.0183896311, -0.0228177682, 4.99350281e-05, -0.00440443866, 0.016074, 0.00191784359, -0.00990575459, -0.0110500287, 0.00253737648, 0.0319042504, -0.0347209238, 0.0180375464, 0.0249844398, 0.004489074, -0.0248625651, 0.0145573299, -0.00297409622, 0.0125802411, 0.00649324618, 0.00301302876, -0.0071567893, -0.00477345, -0.00537267048, 0.0274084043, -0.0183354653, -0.00245443359, -0.00484454399, 0.0111719044, 0.00780002028, -0.0215854738, -0.000439682131, 0.0139479535, 0.0173469204, -0.0116052385, 0.00353099871, -0.0478834584, -0.0153698316, 0.00657788198, -0.0104203401, 0.0128713874, -0.0246458985, 0.0127833672, 0.0167646278, 0.00805731304, -0.00750210276, -0.0201771352, -0.00921512861, 0.0122213857, -0.0121130524, -0.00992606767, -0.0242802724, 0.0265011117, -0.00744793611, 0.017197961, 0.0115104467, -0.0155323325, -0.0186469238, -0.0131828468, 0.0281125735, 0.0052440241, -0.000622495136, -0.0148281641, -0.0205156785, 0.0208271369, -0.0280313231, 0.00152598054, 0.00906616915, -0.0097094, -0.00289961696, 0.0097094, 0.0200281776, -0.0107656531, -0.0107724238, 0.00951304566, -0.00278281979, 0.0056570461, 0.00850418862, 0.020962555, -0.00676069455, 0.0226688087, -0.00393725, 0.0213688053, 0.0172250457, -0.0073057483, -0.00671329862, -0.00526433671, -0.0178479627, 0.0127698248, 0.00261016306, 0.0235490203, 0.014394829, -0.0269479863, 0.0123635735, -0.0213010982, 0.011043258, -0.0205292199, -0.00320261251, -0.00120521151, -0.019608384, -0.0167104602, -0.00284545, -0.00170202262, 0.0075833532, 0.00794220809, -0.00392370811, 0.0148823308, -0.00159453542, 0.0243886057, 0.00759689463, -0.0014481158, 0.0141917039, 0.00840262603, -0.0143542038, -0.0316605, 0.0164802521, 0.0252959, 0.0122890947, 0.00542006642, -0.00688257, 0.00172572071, 0.009804192, 0.0226688087, 0.0296292435, -0.00631381851, 0.0127224289, 0.0099396091, -0.0224927664, -0.0113818, 0.0136026395, 0.00240703765, -0.0212063063, -0.0174417123, -0.00372396805, -0.0199198443, 0.0056570461, -0.00947919115, 0.036806345, -0.0069265808, -0.0193240084, -0.000498927082, -0.017333379, -0.00234948541, 0.011801593, 0.0178479627, 0.0151396226, 0.00145996478, -0.0141781624, 0.0184844229, 0.00985835865, -0.00951304566, -0.00983804651, -0.00750210276, 0.014259412, 0.0132573266, 0.0124854492, -0.00274050189, 0.0258240253, 0.0142052453, 0.0188365076, 0.0131693054, 0.00844325125, 0.0286271572, -0.0127630541, 0.00318060722, -0.00785418693, -0.0246188138, -0.0163583755, -0.00481746066, -0.00422162563, -0.0240500625, 0.014394829, 0.0299813282, -0.0100614848, -0.0254990254, 0.01161878, 0.0105896108, 0.00935731642, 0.00466173096, 0.0147198299, -0.0164802521, -0.0129661793, 0.0216531809, -0.00384922884, -0.0159792081, -0.00917450339, -0.000675392395, 0.0109416954, 0.016074, 0.0104880482, 0.00851095933, 0.00316537288, 0.0137515981, 0.014259412, -0.00384922884, -0.000371973641, 0.00271511124, -0.00225300062, 0.00384584349, -0.00141680054, -0.0115239881, -0.0101630474, 0.00985158794, 0.00952658709, -0.00136009476, 0.0352355093, 0.00135755562, 0.0382688493, 0.0128781591, -0.0178885888, 0.00971617084, 0.0150719145, 0.00335834222, -0.00682163239, -0.00898492, 0.0315792486, 0.0227636, 0.007461478, -0.00213958882, 0.00527110742, 0.0221406836, -0.0116661759, -0.0129323257, -0.00346159749, 0.00618517259, 0.0175365042, 0.0247000642, 0.0207052622, -0.00536928466, -0.00949950423, 0.00196693232, -0.0280854907, -0.0446063653, -0.00558933755, -0.0115104467, -0.0126614915, -0.0110906539, 0.0152208731, 0.016371917, -0.00125514646, -0.0111854458, -0.00367995747, -0.00301133608, 0.00884273183, 0.0202313028, -0.00195339043, 0.00701460149, -0.0117271142, -0.0279771555, -0.00556902494, -0.00776616624, 0.00600235956, 0.0220052656, 0.000589064031, 0.0106505491, -0.00720418571, -0.00882918946, 0.0239146464, 0.00533543061, -0.00411667721, 0.00126022461, -0.00728543568, 0.0243750643, 0.007461478, -4.12069749e-05, -0.000563673326, -0.0197573435, -0.00282005942, -0.00432657357, 0.00765783247, -0.00859898049, 0.00240365206, -0.0141104534, 0.000693165872, -0.00600913027, -0.00291146594, -0.0185115058, -0.00676408038, -0.00101139583, 0.00281667407, -0.0115104467, 0.00537944119, 0.00667267386, 0.000706707593, -0.00977710914, 0.00983127579, -0.00879533589, 0.012512533, 0.0131489923, 0.0136432648, -0.0190260913, 0.000372819981, 0.0152344145, 0.0188906752, 0.0163448341, -0.00144049851, -0.00913387816, -0.0127969086, -0.00594819244, 0.00343959243, -0.0322021693, -0.00175872853, 0.0022546933, 0.0105828401, -0.000875978847, 0.0138937859, 0.0174146295, -0.0255667344, 0.0182000473, 0.00560626481, 0.00646616286, -0.024564648, 0.0140156616, 0.00125260744, -0.0140021201, -0.0154781658, -0.00239349576, -0.0103458604, -0.0162365, -0.00581616117, 0.00773231173, 0.00327370642, -0.0193917174, -0.0136500355, 0.00474975212, -0.0300896615, 0.00404558331, -0.00312982593, 0.020366719, 0.0120588858, 0.0117474264, 0.0058635571, 0.00965523347, -0.015911499, 0.0114224255, -0.0103864856, 0.00941148307, 0.0178750474, 0.00821304228, -0.0220458917, 0.0137312859, 0.0191344246, -0.0130948257, 0.00685548643, -0.00494272122, 0.00937085785, -0.00989221316, 0.010284923, -0.00984481722, -0.00493595051, 0.0213146396, 0.00838231388, 0.00252044923, 0.0197302606, 0.00865314715, -0.00173672324, 0.008219813, -0.00796929188, -0.000243750634, 0.0117406556, 0.0124245118, 0.00398126058, -0.00589064043, -0.00339388917, 0.00417422969, -0.0120250313, 0.00487839803, 0.00160976988, -0.0156948324, -0.00649663154, 0.00468204357, 0.0136568062, 0.0176719204, 0.0183490068, -0.00971617084, -0.00267787161, 0.0022868549, 0.015153165, -0.00870731473, -0.00306211738, -0.0177396294, 0.000424024533, 0.0101969019, -0.00363256154, -0.00803022925, -0.00875471067, -0.000584409107, -0.00457032444, 0.00206003152, -0.0296021607, -0.0187417157, -0.00287253363, 0.0115849264, -0.0147062885, -0.000980080687, -0.00665236125, -0.00042254341, -0.0113818, -0.0108401328, 0.00448230328, -0.00125345378, 0.0119708646, 0.00555548305, -0.00013055047, 0.00719064381, -0.002451048, -0.011273467, -0.0322834179, -0.0278688222, -0.0115781557, -0.00841616746, -0.00231393822, 0.00913387816, -0.0262438189, -0.00807762519, 0.00933700334, -0.0073057483, -0.0153562902, -0.000129704116, -0.00826720893, -0.00961460825, 0.00496641919, -0.0036461032, -0.016209418, 0.00114258111, 0.00310104969, -0.0147875389, 0.000384034211, 0.00284883566, -0.0282479897, 0.0106099239, 0.000698244, -0.0208000541, -0.00692996616, -0.011226071, -0.0101901311, -0.0170625448, -0.00424532359, 0.0115578426, 0.0313355, -0.00321784685, -0.0122078443, 0.0141917039, -0.0215313062, 0.00453308458, 0.00886981469, -0.000454493362, 0.00587709853, 0.0140562868, 0.00669975718, -7.99806803e-05, -0.00701460149, 0.00647970429, -0.0166562926, -0.00754272798, -0.0236167274, 0.00661512138, 0.00265925168, -0.00462110573, 0.0129594086, 0.00595834898, 0.0121943029, -0.0061580888, -0.0119573232, -0.018159423, 0.00211927644, -0.0328521691, -0.0189042166, -0.0186875481, 0.00700783078, 0.0140021201, 0.0134265972, 0.00416745897, 0.00296224724, -0.0147469137, -0.0135890981, -0.0243479796, -0.0142864957, 0.0154917073, 0.00477006473, -0.00302995578, -0.00774585363, 0.0296563283, 0.0100953393, -0.00277604884, -0.0415188596, 0.00983127579, 0.0154375406, 0.0250927731, -0.00231732382, -0.00281498139, -0.00857866835, -0.000699090364, 0.034395922, 0.00900523178, -0.00452631386, 0.00949950423, 0.00554194162, -0.0132505558, 0.0101359636, -0.0140156616, 0.00761043653, -0.0116052385, 0.00742085278, -0.0171708781, 0.0100276303, 0.00917450339, -0.00102832296, -0.0174823366, -0.001211136, 0.0174687952, 0.00945210829, 0.0121739898, -0.00712293526, -0.0182948392, 0.0220458917, 0.00879533589, 0.00190430181, 0.0189313, -0.00467188703, -0.0123703452, 0.0147604551, -0.00477006473, 0.0104203401, -0.00335664931, 0.0135146184, 0.0127495127, 0.00827398, -0.00301979948, 0.0208813045, 0.0179156717, -0.00121367502, -0.0104067978, 0.00593465101, 0.00128476904, -0.00835523, -0.00488855457, 0.0163448341, -0.00510522164, -0.00867346, 0.0346396752, -0.0155729577, 0.0195406768, -0.0190667156, 0.0232104771, 0.00173249154, 0.0283292402, 0.00991252623, 0.0174146295, 0.00223099533, -0.00258138706, -0.00715001859, -0.00216836506, 0.0105354441, -0.00178750465, -0.0160469171, 0.00370365544, 0.0010714872, 0.0133114932, 0.00386954146, -0.00742085278, 0.0117068011, -0.0082536675, 0.00857866835, -0.00202448457, -0.000749871775, -0.0106099239, -0.0137719112, -0.0362917632, 0.00125599292, -0.0201906785, 0.0113411751, -0.00939117, -0.00351068634, -0.00544037903, -0.0168594196, 0.017197961, -0.00181120262, 0.00315521657, 0.0118354475, 0.00704168528, -0.0143542038, -0.00470235618, -0.00294362754, 0.0313084163, -0.000485808559, 0.015085456, 0.00705522671, -0.00613777665, -0.0187958833, -0.00451277243, -2.52055506e-05, 0.0162906684, -0.0143135786, 0.0172250457, -0.0180375464, -0.0271104872, 0.0228177682, 0.0192833841, 0.0183896311, 0.00629689125, 0.00134147482, -0.00877502281, 0.00664559, 0.0184167139, -0.0222896412, 0.0165344179, 0.0151260812, -0.00731928973, 0.0237927698, 0.00436381344, 0.00297071086, 0.0150583731, -0.0137854526, -0.0194188, -0.029250076, 0.0152344145, -0.044173032, -3.07597657e-05, 0.00424532359, 0.00148789457, 0.00635782909, -0.00529142, -0.0123500321, -0.0323646665, 0.0201229695, 0.000329655799, 0.00331094605, -0.0193375498, -0.0192833841, -0.00565366074, -0.03756468, 0.023603186, -0.0016326214, -0.00204648962, 0.0103120059, -0.014327121, -0.0239417292, -0.00575183798, -0.00943856593, -0.00740731088, 0.00710262265, 0.00710939337, -0.0232781861, 0.0209083874, -0.0213010982, 6.34238313e-05, 0.00464141835, 0.0306854974, -0.00372396805, 0.0106708612, -0.00355808227, -0.00170456176, -0.00505444035, 0.00181289541, 0.0188365076, 0.00111719046, 0.016371917, -0.000765529345, -0.0001475834, 0.00687579904, 0.0365625955, -0.00613100547, -0.00297917449, -0.00920835696, -0.00308750803, -0.00280482508, 0.0174146295, 0.000958921795, 0.00689272629, -0.0123094069, 0.0028962316, -0.0105557563, 0.0192292165, -0.0113953426, 0.0112057589, 0.00151667057, 0.0096687749, -0.00462787645, -0.0156135829, -0.000561980647, -0.00110957318, 0.0202313028, 0.00933700334, 0.0142052453, 0.000862013956, 0.00807762519, -0.0270021539, -0.00889012776, 0.00746824872, 0.00663204864, 0.00355469668, 0.00574845262, 0.00131015969, 0.0047294395, -0.00603959896, 0.00605652621]
18 Jan, 2022
Chain of Pointers in C with Examples 18 Jan, 2022 Prerequisite: Pointers in C, Double Pointer (Pointer to Pointer) in CA pointer is used to point to a memory location of a variable. A pointer stores the address of a variable.Similarly, a chain of pointers is when there are multiple levels of pointers. Simplifying, a pointer points to address of a variable, double-pointer points to a variable and so on. This is called multiple indirections.Syntax: // level-1 pointer declaration datatype *pointer; // level-2 pointer declaration datatype **pointer; // level-3 pointer declaration datatype ***pointer; . . and so on The level of the pointer depends on how many asterisks the pointer variable is preceded with at the time of declaration.Declaration: int *pointer_1; int **pointer_2; int ***pointer_3; . . and so on Level of pointers or say chain can go up to N level depending upon the memory size. If you want to create a pointer of level-5, you need to precede the pointer variable name by 5 asterisks(*) at the time of declaration. Initialization: // initializing level-1 pointer // with address of variable 'var' pointer_1 = &var; // initializing level-2 pointer // with address of level-1 pointer pointer_2 = &pointer_1; // initializing level-3 pointer // with address of level-2 pointer pointer_3 = &pointer_2; . . and so on Example 1: As shown in the diagram, variable ‘a’ is a normal integer variable which stores integer value 10 and is at location 2006. ‘ptr1’ is a pointer variable which points to integer variable ‘a’ and stores its location i.e. 2006, as its value. Similarly ptr2 points to pointer variable ptr1 and ptr3 points at pointer variable ptr2. As every pointer is directly or indirectly pointing to the variable ‘a’, they all have the same integer value as variable ‘a’, i.e. 10Let’s understand better with below given code: C #include <stdio.h> // C program for chain of pointer int main() { int var = 10; // Pointer level-1 // Declaring pointer to variable var int* ptr1; // Pointer level-2 // Declaring pointer to pointer variable *ptr1 int** ptr2; // Pointer level-3 // Declaring pointer to double pointer **ptr2 int*** ptr3; // Storing address of variable var // to pointer variable ptr1 ptr1 = &var; // Storing address of pointer variable // ptr1 to level -2 pointer ptr2 ptr2 = &ptr1; // Storing address of level-2 pointer // ptr2 to level-3 pointer ptr3 ptr3 = &ptr2; // Displaying values printf("Value of variable " "var = %d\n", var); printf("Value of variable var using" " pointer ptr1 = %d\n", *ptr1); printf("Value of variable var using" " pointer ptr2 = %d\n", **ptr2); printf("Value of variable var using" " pointer ptr3 = %d\n", ***ptr3); return 0; } Output: Value of variable var = 10 Value of variable var using pointer ptr1 = 10 Value of variable var using pointer ptr2 = 10 Value of variable var using pointer ptr3 = 10 Example 2: Consider below-given code where we have taken float data type of the variable, so now we have to take same data type for the chain of pointers too. As the pointer and the variable, it is pointing to should have the same data type. C #include <stdio.h> int main() { float var = 23.564327; // Declaring pointer variables upto level_4 float *ptr1, **ptr2, ***ptr3, ****ptr4; // Initializing pointer variables ptr1 = &var; ptr2 = &ptr1; ptr3 = &ptr2; ptr4 = &ptr3; // Printing values printf("Value of var = %f\n", var); printf("Value of var using level-1" " pointer = %f\n", *ptr1); printf("Value of var using level-2" " pointer = %f\n", **ptr2); printf("Value of var using level-3" " pointer = %f\n", ***ptr3); printf("Value of var using level-4" " pointer = %f\n", ****ptr4); return 0; } Output: Value of var = 23.564327 Value of var using level-1 pointer = 23.564327 Value of var using level-2 pointer = 23.564327 Value of var using level-3 pointer = 23.564327 Value of var using level-4 pointer = 23.564327 Example 3: Updating variable using chained pointer As we already know that a pointer points to address location of a variable so when we access the value of pointer it’ll point to the variable’s value. Now to update the value of variable, we can use any level of pointer as ultimately every pointer is directly or indirectly pointing to that variable only. It’ll directly change the value present at the address location of variable. C #include <stdio.h> int main() { // Initializing integer variable int var = 10; // Declaring pointer variables upto level-3 int *ptr1, **ptr2, ***ptr3; // Initializing pointer variables ptr1 = &var; ptr2 = &ptr1; ptr3 = &ptr2; // Printing values BEFORE updation printf("Before:\n"); printf("Value of var = %d\n", var); printf("Value of var using level-1" " pointer = %d\n", *ptr1); printf("Value of var using level-2" " pointer = %d\n", **ptr2); printf("Value of var using level-3" " pointer = %d\n", ***ptr3); // Updating var's value using level-3 pointer ***ptr3 = 35; // Printing values AFTER updation printf("After:\n"); printf("Value of var = %d\n", var); printf("Value of var using level-1" " pointer = %d\n", *ptr1); printf("Value of var using level-2" " pointer = %d\n", **ptr2); printf("Value of var using level-3" " pointer = %d\n", ***ptr3); return 0; } Output: Before: Value of var = 10 Value of var using level-1 pointer = 10 Value of var using level-2 pointer = 10 Value of var using level-3 pointer = 10 After: Value of var = 35 Value of var using level-1 pointer = 35 Value of var using level-2 pointer = 35 Value of var using level-3 pointer = 35 Note: Level-N pointer can only be used to point level-(N-1) pointer. Except for Level-1 pointer. The level-1 pointer will always point to the variable.
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Find the Peak Element in a 2D Array/Matrix/Search an element in a sorted and rotated array with duplicates/Search for an element in a Mountain Array/How to Sort an Array in Descending Order using STL in C++?/Bitwise Operators in C/restrict Keyword in C/Chain of Pointers in C with Examples
https://www.geeksforgeeks.org/chain-of-pointers-in-c-with-examples/?ref=lbp
Data Science & ML
Chain of Pointers in C with Examples
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, restrict Keyword in C, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, How to Sort an Array in Descending Order using STL in C++?, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Chain of Pointers in C with Examples, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Find the Peak Element in a 2D Array, Search an element in a sorted and rotated array with duplicates, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Matrix, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, Bitwise Operators in C, Search for an element in a Mountain Array, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.0318306647, 0.000693929207, -0.0188101381, 0.0464634858, 0.0167459082, -0.0119578736, -0.0161107611, 0.0105532203, -0.0110234739, -0.0102356467, -0.00670569204, -0.0178085603, -0.0136068147, -0.0187979247, -0.0163061917, 0.00862334948, -0.00931956898, 0.00858670566, 0.0100157885, -0.0198972188, 0.0669836327, -0.00693776552, -0.0597038679, -0.00418953085, 0.0214240141, 0.00764009217, -0.00214514975, -0.0284350663, -0.0284350663, 0.0556486957, 0.0236470308, -0.0114448704, -0.021082012, -0.0491506495, 0.0136312433, -0.0256746169, 0.00252837571, -0.0164283346, -0.0121349823, -0.0267983396, -0.00935010426, -0.0191277117, -0.00144740357, -0.0185414217, 0.00119319186, 0.034615539, 0.016782552, -0.00507812668, 0.00234363321, -0.0558929816, -0.00049697241, -0.01379003, 0.033907108, -0.0117380153, 0.0074263406, 0.0402341522, -0.0217660181, 0.00933178328, 0.0262120496, 0.00519110961, -0.00155656948, 0.0231218133, -0.0414067321, -0.0427258871, 0.0158176161, -0.00271769869, -0.0338093936, 0.0443137549, 0.0382798538, -0.0373027027, -0.019396428, 0.022181306, -0.00590565056, 0.0207644384, -0.0142663904, -0.0256501883, 0.0401608683, -0.00017825354, -0.0158298314, 0.0640521869, -0.01222659, 0.0221568774, 0.00452847965, -0.018260492, 0.0156344, 0.0118968021, -0.00235279417, -0.0310978, 0.0116036572, -0.0099486094, -0.0378401354, 0.000616062549, -0.0140465321, 0.00846456271, -0.0109074377, -0.00765230646, -0.000237607775, 0.010644828, 0.00969210733, 0.0273602, 0.000743550132, 0.0304137953, -0.0113349408, 0.00730419671, 0.00291465549, -0.0169413388, 0.0166726224, 0.0162817631, -0.0372538455, 0.0382798538, -0.00137030031, -0.0178818461, -0.00927681848, 0.0382309966, -0.00052101945, -0.00339254295, 0.00787827186, -0.0943926945, -0.00155580614, -0.00537432544, 0.00818973873, 0.0262853373, 0.00415594131, 0.0482956432, -0.00839738362, 0.0201781485, 0.0115609067, -0.0286304969, -0.0314886607, -0.0260410495, -0.0156710446, -0.0153168272, -0.0155000426, -0.00585679291, -0.00138785841, 0.00312382658, 0.0474406332, 0.0107852938, 0.0250028279, -0.0181383472, -0.032514669, -0.0271159131, 0.0204590801, 0.0114631914, 0.0160008315, 0.0156710446, 0.0130938105, 0.0271159131, -0.0198727883, -0.0170879122, -0.0272380579, 0.0391104296, -0.000158405179, 0.0062781889, 0.0296076462, -0.0259189047, 0.0218148753, 0.0399898663, -0.0345422551, -0.0425793119, 0.0174421277, -0.00379867083, -0.0314398035, -0.00664462056, -0.0165016223, -0.0086661, 0.015011468, -0.0107120071, -0.0108402586, 0.020959869, 0.00821416732, 0.0260166209, 0.0354949757, 0.0407227278, -0.0244531799, -0.015683258, 0.00612856308, 0.00647361903, 0.0342735387, -0.0201659333, -0.0232073143, -0.038402, -0.00873327814, -0.0182238482, 0.0345911123, -0.00357270497, 0.0120922318, -0.011933445, -0.00363683025, -0.0488330722, -0.00258028693, 0.00922796, 0.0388905704, 0.0122571262, 0.00465673069, 0.0053010392, -0.0321238078, 0.0211552978, 0.0167581234, 0.0076828422, 0.00898978, -0.0612673089, -0.0655667707, 0.0102295401, 0.00571327424, 0.0181872062, -0.0202636495, -0.0137289586, 0.0515935235, -0.000184456163, -0.0157565437, 0.0272136293, 0.0119578736, -0.0328566693, 0.0546715446, 0.00806148816, -0.0597527251, 0.0337116756, 0.00340170367, -0.0456817634, 0.018297134, -0.0188345667, 0.038915, -0.00627208175, -0.0529126748, -0.000494300504, -0.0201781485, 0.00283068162, -0.0474650636, -0.00683394307, -0.0123243053, 0.016403906, 0.0243188217, -0.0070293732, -0.0396967195, -0.0219492335, -0.0125685921, -0.00311466586, 0.00301542389, 0.0689867958, 0.0090569593, 0.0203980077, -0.0235859603, 0.033394102, 0.0257479046, 0.0361301228, -0.0323925242, 0.014547321, -0.0145839648, 0.0192620698, 0.0177841317, 0.00489491085, 0.00803706, 0.024160035, -0.0503232293, 0.025723476, -0.00876992196, 0.00373149174, -0.00525218155, 0.0158176161, -0.0173077695, 0.00258639408, -0.0251616146, 0.0154023273, 0.0259921905, -0.056674704, 0.0180162042, 7.35248177e-05, 0.00467505213, -0.023659246, 0.041113589, -0.0247829687, 0.0496636517, -0.000871037657, 0.0306336544, 2.99156782e-05, -0.00633926084, -0.019372, 0.0151213966, 0.0324169546, 0.0528149605, 0.015475614, 0.0204102211, 0.0128983809, 0.0118540516, -0.00643697614, -0.0243432503, -0.0133747412, -0.0204346497, 0.00735916151, -0.00827524, -0.018003989, -0.00188864779, -0.0204102211, 0.070599094, 0.00757291308, -0.0133136697, -0.0187979247, -0.00988753699, -0.00742023299, 0.0188834239, -0.0507140867, 0.00776834274, -0.00526134251, -0.00944171194, 0.0262609068, 0.00656522671, -0.00689501502, -0.00814088155, 0.0199705046, 0.00876381435, -0.0493460782, -0.0245631095, -0.00573770283, -0.0151946833, -0.00132602314, 0.0567724183, -0.00943560526, -0.0165993366, 0.0220835917, -0.0117196934, 0.0211430844, -0.00273296656, 0.031293232, 0.00429640664, 0.018260492, 0.0267250538, 0.000863403664, -0.0437763222, -0.0275312029, -0.0181627758, -0.0375225618, -0.0225843806, -0.00764619932, -0.0296809319, -0.0467810594, -0.0222790204, -0.00210087257, -0.0228164531, -0.00738969725, -0.019310927, -0.00469948119, -0.0274090581, -0.0114754057, 0.0171245541, -0.0444114693, -0.0427014567, -0.0183337778, 0.0230485275, -0.0136801, 0.000717594579, 0.0362522677, 0.00820806064, 0.00130999181, 0.0391592868, -0.00255433121, 0.000706143619, 0.0076950565, 0.00604611589, 0.00762177026, 0.0275800601, -0.000130445711, -0.0229996685, 0.0098081436, -0.046341341, -0.0219370183, 0.0108524729, -0.031293232, -0.0143763199, -0.023573745, -0.012776237, -0.011829623, 0.0153290415, -0.0177474879, 0.0104249697, -0.00127792906, 0.00272075227, 0.0174177, -0.000456130598, 0.0098081436, -0.0142053189, 0.0423838831, -0.00264593912, -0.002751288, -0.0240989625, 0.0315863751, -0.0474650636, 0.0270670559, 0.0231584571, 0.00570716709, -0.0148648955, 0.0445580408, 0.0132281687, 0.00753016258, 0.0245875381, -0.00399104739, -0.0306336544, -0.00170237862, -0.00881877914, -0.0402097255, 0.00180009357, 0.0378645658, -0.0170390531, -0.0168924816, -0.0215705875, 0.0373515598, -0.0287770685, -0.0120067317, 0.037571419, 0.077634573, -0.00583541812, -0.00177413807, -0.0129594523, -0.00803706, 0.0339559652, -0.00392997544, -0.00528271729, 0.0559418388, -0.0202270057, -0.0066324058, 0.0479536392, -0.0197262168, 0.0177474879, -0.00468421308, 0.00222454313, 0.0178818461, -0.0103455763, -0.00813477393, -0.013704529, 0.0126663074, -0.0192254279, 0.0122143757, -0.0131182391, 0.0384997129, -0.0211430844, -0.082520321, 0.0288014971, 0.00604611589, -0.0491506495, -0.0289480705, 0.0091546746, 0.0205201507, -0.0126174502, -0.00627208175, -0.0218637325, 0.00384447468, -0.0450710468, 0.00373149174, 0.0149748242, -0.0260899067, -0.0159031171, -0.00620795647, 0.00458039064, 0.00345666823, 0.0302672237, 0.00546898693, -0.000387233886, -0.0324902385, -0.0124647701, 0.0077317, -0.0228164531, -0.0027650292, 0.0138633167, -0.0214606579, 0.0138877453, -0.0114387628, 0.0116036572, -0.00966767874, -0.0213995855, -0.011725801, 0.011365477, -0.0124281272, 0.0016794767, 0.0173688419, 0.00674844254, 0.0162817631, 0.0365942679, 0.0319528058, -0.0137778157, -0.0587267168, 0.0269937702, -0.0236836746, -0.0121899471, 0.00436663907, -0.0245753247, 0.000135407812, -0.0173322, 0.00357575854, 0.00787216518, -0.0210942272, 0.0206789374, 0.0198850036, 0.0215705875, 0.0137289586, 0.00874549337, 0.0199094322, -0.0547204, 0.0208010823, 0.0218637325, 0.0402830094, -0.0181017052, -0.0188834239, -0.010522685, 0.0345422551, -0.0175276287, -0.0201415047, -0.0211797282, -0.0218393039, -0.0126785217, -0.00713319518, -0.0317329466, -0.0319039486, 0.0203247219, 0.0262120496, 0.0187612809, 0.00210087257, -0.0213873722, -0.00560945179, -0.00104814616, 0.0112616541, 0.00719426712, 0.0191277117, 0.0325390957, 0.0108707948, -0.00679119304, 0.023952391, 0.00427808519, 0.00174054853, 0.00876992196, -0.0443381853, 0.0110417958, 0.00720037427, -0.016660409, 0.00374065246, -0.0104555059, 0.00820806064, 0.0083485255, 0.0328566693, -0.0318062343, 0.0224866662, -0.0069744084, 0.00500484044, -0.00601558, -0.00519416342, -0.0379622802, 0.0570167042, -0.00799430907, 0.00715151709, -0.00171611982, -0.00276808278, -0.00494376849, 0.0153290415, 0.0135946, 0.00427197805, -0.0139610311, 0.024037892, 0.00799430907, -0.0212407988, 0.0134846708, -0.028044207, 0.00403990457, 0.00952721294, 0.00558807701, 0.0126785217, 0.0367408432, 0.0137533871, -0.00575907808, 0.0247463249, 0.00926460419, 0.0309268, 0.00768894935, 0.00836074, -0.00556670176, -0.0121716252, 0.0287526399, 0.0116341924, 0.0142053189, -0.00721258903, 0.0238424614, 0.00394524354, -0.0249783974, -0.0545738302, 0.0142541761, 0.0188956391, -0.00851952657, -0.00434221048, 0.00108784286, 0.014168676, -0.0127273798, -0.038744, -0.0157931875, 0.034615539, 0.00393608259, 0.0155122569, -0.0126174502, -0.0152557548, -0.00451321201, 0.0131915258, 0.00250089332, -0.0336383916, -0.0152801843, 0.00259402813, 0.0241966788, -0.0282152072, 0.0577007122, 0.0128250942, 0.0154145425, -0.0147916088, -0.0118113011, 0.00798820145, -0.047391776, -0.037913423, 0.0399654359, 0.0246730391, 0.0100096809, -0.0240501054, -0.0249417555, 0.0163306203, -0.0369118415, 0.00523691345, 0.0331498161, -0.018553637, 0.0101012886, -0.0219003763, -0.00309023703, -0.00109165977, -0.0135946, -0.00787216518, -0.00669347774, -0.0109440805, 0.0181261338, -0.0184925646, 0.020788867, -0.0265051946, -0.0102417544, 0.00895924494, -0.00223828433, 0.0221935213, -0.0125563778, 0.0344933979, 0.0184192788, 0.00567357754, 0.0215705875, 0.0889206529, -0.0170024112, 0.0113227265, 0.0256746169, 0.0197017882, 0.00338948914, -0.00362766953, 0.00382920681, -0.0217904467, -0.00318489852, 0.0180284176, 0.00411929842, -0.0124464491, 0.000287419534, 0.0188345667, -0.0125319492, 0.000543921429, -0.0104066478, -0.0108952234, -0.0090691736, 0.0160130467, -0.0305359382, -0.0301695075, -0.0105715422, 0.00924628228, -0.00365209836, 0.0168558378, -0.0433366038, 0.00541707547, 0.00611329498, 0.0184437074, -0.00423228135, 0.0152435405, -0.0174177, 0.0425548851, -0.00677897828, 0.0229019541, 0.0151213966, 0.00810423866, 0.0264074802, -0.0111700464, 0.0328322425, -0.00702326605, -0.043727465, -0.038963858, -0.0145839648, -0.00155809626, -0.00684615737, -0.0217782315, 0.0174421277, 0.00858059898, 0.000857296516, -0.0418220237, 0.0219736621, 0.0276289172, -0.000104776438, -0.00780498609, 0.0328566693, -0.0134480279, 9.68084714e-05, -0.00428724568, 0.00713319518, 0.00476360647, -0.0299007911, 0.0105593279, -0.00935010426, -0.00322154164, 0.00439106813, -0.00299710245, -0.0157809742, 0.0332231, 0.0102417544, 0.00962492824, -0.007737807, -0.0230729561, 0.0163428355, -0.0321482383, -0.0215950161, -0.0073408396, 0.027873205, 0.0175154153, 0.015390113, 0.00482773175, -0.0296076462, 0.00311619253, -0.004849107, -0.00675454969, -0.0262853373, -0.0104127554, 0.00595756155, -0.000915314769, -0.0319772363, 0.00431167474, 0.0266029108, 0.00792102236, -0.0256746169, 0.00309176394, -0.00855006278, -0.00370400934, -0.0140098892, 0.0115364781, -0.00880656485, -0.015683258, 0.0303405095, 0.00200926489, 0.0241844635, 0.0471230596, -0.00102448079, 0.0303160809, 0.0353728309, -0.0222423784, -0.00938064, -0.0251371842, 0.00033704043, -0.0261631925, 0.0331498161, 0.00384447468, -0.018260492, 0.0392325744, 0.0121960538, 0.0159275457, 0.0253081862, 0.000950431102, -0.0421395972, 0.01379003, 0.00407654792, -0.00765841361, 0.0145595362, 0.00942949764, 0.00712708803, -0.00158786878, -0.0117624439, -0.0230485275, -0.025088327, 0.0185902789, -0.011176154, 0.00378034916, -0.0468299165, 0.00559113035, 0.0254547596, -0.0149503956, 0.0267250538, -0.00414678035, 0.00914246, 0.0190177821, 0.0209232252, 0.00659576291, 0.0159519743, 0.0279220622, -0.0132648116, 0.014168676, 0.0267494824, -0.0279953498, -0.0470986329, -0.00676065683, -0.0181505624, -0.0247829687, 0.0116219781, -0.0276289172, -0.00304443319, -0.0120067317, -0.00722480332, -0.029265644, -0.0291923583, 0.0156954732, -0.00936231855, -0.00862945616, 0.0192376412, 0.00459871255, -0.00539875403, 0.0381332822, 0.00263067125, 0.0439717509, 0.0289236419, -0.00731641101, 0.00123594212, 0.0388661437, -0.0183215626, 0.00179856678, 0.00307802274, -0.0092401756, -0.034786541, -0.00212072092, 0.00447351485, -0.00377729558, 0.0371317, 0.0219492335, 0.0125685921, -0.0128983809, 0.0197628606, 0.0256257597, -0.00688890787, -0.00578656048, 0.000929055968, -0.025381472, -0.00478803506, -0.0198117178, -0.00727366051, -0.0110784387, 0.00694998, -0.0108463652, -0.0259921905, 0.00336506055, -0.00860502757, 0.0345178246, 0.014840466, 0.0214973018, 0.00581098907, 0.00991196558, 0.0160252601, 0.0284106378, -0.000845845498, 0.0220225193, -0.00190849614, -0.0263830516, 0.00176803092, -0.0310733709, 0.0298763625, 0.0171978418, -0.0310733709, -0.0084462408, 0.029094642, 0.0109135443, -0.00245050923, -0.00211461377, -0.0097226426, 0.0101990039, 0.0217538029, 0.041113589, -0.0148648955, 0.0309756566, 0.00215583737, -0.00974096451, -0.0145351067, -0.0178452022, 0.0258944761, 0.00279709208, 0.0251127556, -0.0341758244, -0.0528638177, -0.0135213137, -0.016660409, 0.000623314874, 0.0059942049, -0.0263097659, -0.0181505624, -0.0252837576, 0.0238180328, 0.00352079375, -0.0098631084, -0.0168314092, 0.0170512684, 0.0165504795, 0.00418953085, -0.0127029503, -0.00109929382, 0.0164527632, 0.00163672632, -0.00657133432, -0.0335162468, 0.0165016223, 0.0221690927, 0.00777445, 0.0232928135, 0.0319772363, -0.016318405, 0.0204835087, 0.00367347337, -0.00751794828, -0.0184314921, -0.0416510217, 0.0111639397, -0.00374981342, -0.0312688, -0.00164436037, 0.0135701718, 0.0115181562, -0.0134480279, -0.018174991, -0.0274823457, 0.0296565033, 0.0261876211, -0.0216805171, -0.0293633584, -0.0242943931, -0.0340536796, -0.00513919862, -0.0108402586, -0.00372233102, -0.000518347544, -0.0129228095, 0.0214240141, 0.00738359, -0.0141564617, 0.00929513946, -0.0466344878, -0.0144618209, 0.00242608041, -0.0024657771, 0.0384997129, 0.0200437903, -0.0392325744, -0.0106875785, 0.00718816, 0.00825081114, 0.0242088921, 0.00570411328, 0.0118723735, -0.0114815133, 0.0169169102, -0.0598992966, -0.010522685, 0.000241233924, 1.77370857e-05, -0.00818363205, -0.00685226452, -0.00814698823, 0.0261143353, 0.0283129234, 0.0317818038, -0.000409944972, -0.0170512684, 0.0186635666, 0.0219492335, -0.0271892, -0.00627208175, -0.00518500246, -0.00106646772, -0.0205201507, 0.0463902, 0.0370339863, 0.00332231028, 0.00305206701, -0.0305115096, -0.0338582508, 0.0144129628, 0.0329788141, 0.00184284395, 0.0399654359, 0.00801873766, 0.00214056927, 0.0379867069, -0.0134358136, 0.033565104, -0.00327039906, 0.0199582893, -0.0141931046, -0.01090133, -0.00555143366, -0.0021100333, -0.00193750532, 0.0141931046, 0.0384752825, 0.00121151342, -0.0372538455, -0.040600583, -0.0484177843, 0.00614993833, -0.0273357723, 0.00419258466, 0.00787827186, 0.018003989, 0.00116570946, 0.0291190725, 0.0510560907, -0.00101226638, -0.00974096451, -0.026773911, -0.0203369353, 0.00396356499, 0.00954553485, 0.0108585795, 0.00354522257, -0.0227675959, -0.0148038231, 0.0214240141, 0.005639988, -0.0188589953, -0.0172589123, 0.0175276287, 0.000713777554, 0.0129228095, 0.0144129628, 0.00654079812, 0.0172100551, 0.0189200677, -0.0136312433, -0.0128983809, -0.000793171, -0.018003989, -0.00615299167, -0.00107181142, -0.0142663904, -0.0067179068, -0.0516912378, 0.0214606579, 0.0204712935, 0.0337116756, -0.0197628606, 0.00427503139, 0.0152679691, 0.005923972, -0.00421395944, 0.0177474879, 0.000652324, -0.000525218144, 0.0161107611, 0.00441855052, -0.0245020371, 0.00222301646, 0.0159519743, -0.0101135029, 0.0324658118, 0.0110417958, 0.00279556517, 0.0105959708, -0.0203125067, -0.00348415063, -0.011005152, 0.0220225193, 0.0257967617, 0.0131426686, -0.00780498609, 0.0038963859, -0.00540180784, -0.0113960123, -0.00310092466, -0.00133289373, 0.00919131748, 0.0257967617, 0.0125319492, -0.00760955596, 0.0120922318, -0.00895924494, 0.0246608239, 0.0109074377, -0.0515446663, -0.0367408432, -0.0218637325, 0.00349331135, 0.0143641056, -0.00237569609, -0.00774391415, 0.0274090581, -0.00789659377, 0.0154634, -0.0414555892, -0.0219003763, -0.00299557555, 0.0165260509, 0.022095805, 0.00833631121, -0.00892260112, -8.168364e-05, 0.0880412161, 0.00717594568, -0.0155244712, 0.00536516448, -0.00300626317, 0.00432694238, -0.0120800175, 0.00899588782, 0.00887374394, 0.0114021199, -0.0156344, 0.00837295409, -0.00510560907, 0.0186147094, -0.000430938439, 0.00859892089, -0.0199705046, -0.016489407, -0.00292534288, -0.00785384327, -0.00735916151, 0.000601558, 0.0278243478, -0.00251463451, 0.0131426686, 0.00159092247, -0.0113776913, -0.00544761168, -0.0104677202, -0.00655911956, 0.0189567115, -0.0133136697, -0.00762177026, 0.0114815133, 0.0161596183, 0.0275556315, -0.0031329873, 0.0273602, -0.0135090994, 0.0384264253, -0.0126296645, -0.00337422127, -0.0024108123, 0.014632822, 0.0172222704, 0.00408265507, 0.00593924, 0.0137656014, -0.0277510621, -0.00681562163, -0.00688280072, -0.00746909063, 0.0188589953, -0.0154389711, -0.0149381813, 0.0139243882, 0.0296320748, -0.0236836746, 0.0317329466, -0.0154145425, -0.00947835576, 0.0031482554, 0.00513614481, 0.0026230372, 0.00713319518, 0.0167581234, -0.014547321, 0.0175398439, -0.00644308329, 0.0336628184, 0.000216041764, 0.00495292945, -0.00126113428, 0.0100341095, -0.0139854597, 0.0146572506, -0.0194575, -0.00247188425, 0.00269326987, -0.0321970955, -0.0251127556, 0.00815309584, -0.000816836371, 0.0265540518, 0.0162329059, -0.00521248486, -0.0186147094, 0.00414678035, -0.00103058794, 0.0167092662, -0.0138999596, 0.030780226, 0.000780956645, 0.00583847146, -0.0102051105, -0.00988753699, 0.0134968851, 0.00776223559, -0.00859281328, -0.0113227265, 0.0103944335, -0.0204346497, -0.00566441659, -0.004195638, 0.0134113841, -0.0317573771, 0.000546593335, -7.66738376e-05, -0.0148771098, 0.00202300586, 0.0334918164, 0.0104310764, -0.00130846503, -0.0358614065, -0.0183948502, -0.0305847973, -0.0185780656, 0.00961882062, 0.00982646551, -0.0220713764, -0.0177230593, 0.0246608239, 0.00628429605, -0.0109379739, -0.00496209, -0.00688280072, -0.000840501743, 0.0235248879, 0.0110967606, 0.0140465321, -0.0129105952, 0.00372843817, 0.022010304, -0.00314214802, -0.00997303799, -0.00268716272, 0.00987532269, 0.00506896572, 0.00757902, -0.00579877477, -0.00201537204, 0.00698051555, 0.00373149174, -0.00269632344, -0.0158786885, 0.0115059419, -0.00685837213, -0.0201659333, 0.0106020784, -0.0223156642, 0.00473307073, -0.0296320748, 0.0167703386, -0.00374065246, 0.0049040718, -0.0375958495, 0.0257479046, -0.00938064, 0.0244409665, -0.0111150816, 0.00897145923, 0.0245020371, -0.00309023703, -0.0122632328, 0.0052857711, -0.00655301241, -0.0127151655, -0.022474451, -0.0190299973, 0.0107242223, 0.0173810571, -0.00806148816, 0.01808949, -0.0103577906, -0.0016000832, 0.00784773659, 0.0243798941, -0.00804316625, 0.0199705046, -0.018468136, -0.0151946833, 0.0232561715, 0.0272380579, -0.00270395749, -0.0203613639, 0.00285663712, -0.0069866227, 0.0145717505, 0.0186024942, -0.000132926754, 0.00939285476, -0.00217721239, 0.0101684676, 0.00725533906, 0.0145106781, -0.0314642303, -0.00533157494, -0.0187246371, -0.00178635248, -0.000722938334, -0.0125930216, -0.0212163702, -0.0320505202, 0.00736526866, -0.0365942679, -0.0218270887, -0.00072561024, 0.00723701762, 0.00869052857, 0.0135457423, -0.0131548829, 0.0308535136, 0.00824470352, -0.0236714594, -0.00087180105, 0.0127395941, 0.00382920681, -0.00638811849, 0.029387787, -0.00373149174, -0.00480941031, -0.0113227265, -0.0202025771, 0.0336628184, 0.0107791862, -0.0214728732, 0.000354407734, -0.00935010426, -0.00567968469, 0.0148282517, 0.000151534594, 0.0277999192, 0.0553555489, -0.0086661, -0.0167947672, -0.00620490266, 0.0166237652, -0.0231218133, -0.0124342348, 0.0358125493, -0.00189017458, 0.0132037401, 0.0113227265, -0.00252837571, 0.00795766618, -0.000115845716, -0.00834241882, 0.0133380983, -0.036691986, 0.00897145923, -0.00549952267, -0.0139732454, -0.0256501883, 0.00609191973, 0.00727976812, 0.0160252601, -0.00173749495, 0.0194330718, -0.0200193617, -0.00800041575, 0.0258700475, -0.00221538241, -0.0152191119, 0.0159764029, 0.00859281328, 0.0203613639, -0.0205934364, -0.0346644, -0.0107547576, -0.00521859201, 0.00871495716, 0.0209720824, 0.0207277946, -0.00140159961, 0.00910581741, -0.0229630265, 0.0167581234, 0.0129838809, -0.0262120496, -0.00635147514, -0.0181139186, 0.0107914, -0.0148648955, 0.00921574607, -0.0347132571, 0.0104188621, 0.00341697154, 0.0242821779, -0.00014332807, 0.0230607409, 0.00320016639, 0.00429029949, 0.025552474, -0.00171001256, 0.0655179098, 0.02238895, -0.0197262168, 0.018297134, -0.00510255527, 0.00442771101, -0.0212407988, 0.000213179024, 0.000426739745, 0.0170024112, 0.00486437511, 0.0165138356, -0.0374492742, -0.0112738684, 0.0135946, -0.00508423382, 0.032685671, 0.002166525, 0.00954553485, -0.0150603252, 0.0102906115, 0.00731641101, -0.000922185369, -0.0191643555, -0.000955011521, 0.0105348993, 0.0167703386, 0.00108555262, 0.015939761, 0.00870274287, -0.00140847021, 0.00892260112, -0.00143442571, -0.0171856266, 0.00505980523, -0.00987532269, 0.00845845509, 0.00278182398, -0.00051643909, -0.00408876222, -0.0264563374, 0.003172684, 0.00480330316, 0.0173077695, 0.0298275054, 0.0178085603, -0.0256501883, 0.0494193621, 0.00958828535, -0.0321482383, 0.000779048132, 0.0265296232, 0.0141564617, 0.00566441659, -0.00189780863, 0.0170512684, -0.0296809319, -0.0073286253, 0.00614077738, -0.0146694649, 0.0124708777, -0.0143274628, 0.0133869555, 0.00323070236, -0.0193231422, -0.00109318667, 0.0113776913, -0.0184070636, 0.0092401756, -0.00828745402, 0.0158420447, -0.0114204409, 0.00732251815, -0.0128983809, -0.00290702144, 0.0106326137, -0.0126540931, -0.0220591631, 0.0171367694, -0.00192529091, 0.00217415881, -0.0109257586, 8.59300417e-05, 0.0042078523, -0.0167092662, -0.0215095151, -0.0186147094, -0.0173566286, 0.00319711282, 0.00800041575, -0.0277754907, 0.0217049457, -0.00322154164, 0.0159153324, -0.00653469097, 0.00103364151, 0.00931956898, 0.0163428355, 0.0251127556, 0.00473001692, -0.00463840924, 0.016403906, -0.0277022049, 0.00354522257, -0.00687669357, -0.00964935683, 0.00851342, 0.0296809319, -0.0010763919, 0.00434831763, 0.00411319081, 0.00837295409, -0.0324658118, -0.0074263406, 0.00598809775, -0.0464390554, 0.0170024112, -0.0098508941, -0.00674844254, -0.0116341924, -0.0274090581, 0.00415899511, -0.0146450363, 0.0378889926, -0.00309176394, -0.00582320336, 0.0208499394, -0.0177597031, -0.0161351897, 0.00572243519, 0.0197628606, -0.0117074791, 0.00581709621, 0.00856838468, -0.00181994203, -0.011573121, -0.00864167, -0.00461703399, -0.00309481751, -6.47695879e-06, 0.00802484434, 0.00214362284, -0.0119151231, -0.00935621187, 0.00602779444, 0.00548120122, 0.00764619932, -0.00343834679, 0.0118113011, 0.0026505196, -0.00699273, -0.0256257597, -0.00654690526, -0.0188834239, -0.0143274628, -0.0139121739, 0.0116769429, 0.00457123, -0.0111089749, -0.000833631144, 0.00107944547, -0.00435137143, -0.000980967074, -0.0182849206, 0.00889206585, -0.00891038682, 0.00947835576, -0.00922185369, -0.0130083105, -0.00477582077, 0.00929513946, 0.0176986307, -0.00312229968, -0.00837906171, -0.00929513946, 0.00806148816, 0.0143885342, 0.0150847537, 0.0265296232, 8.75999758e-05, 0.00225660601, -0.015390113, -0.00179551321, -0.0138022443, 0.0315619484, 0.00864777807, -0.0144129628, 0.0144007485, 0.0186635666, -0.0154267568, -0.000628276961, 0.0575052798, -7.95365777e-05, 0.0177963451, 0.0170390531, 0.00894092303, 0.00420174515, -0.0147305373, 0.00230546342, -0.0217904467, 0.00396661833, 0.0022963027, -0.0256013311, 0.0102967182, 0.0209476538, -0.0163550489, -0.00881877914, -0.00682172878, -0.0300962217, 0.00696830126, -0.000645071734, 0.0248196106, 0.00126800488, 0.00330093503, 0.0133136697, -0.000516057364, -0.010522685, -0.0289480705, -0.0186879952, 0.00433305, -0.0117990868, -0.00018025747, 0.0210331548, 0.00575297093, 0.0123181976, -0.00344750751, 0.0155366855, -0.00511477, 0.00723091047, -0.015683258, -0.00234516, 0.0159641895, 0.00987532269, 0.0253570434, -0.0091852108, 0.00122601795, 0.00654690526, 0.000353262643, -0.0121044461, -0.0140587464, -0.0141931046, -0.0100585381, 0.0131670972, -0.0130083105, -0.0066751563, -0.00413151272, -0.00813477393, 0.015475614, -0.0381821394, 0.015683258, 0.00340475724, 0.0103577906, -0.0116769429, -0.00083286775, 0.00117945066, -0.0258456189, 0.032514669, -0.00977150071, -0.00354522257, -0.0158786885, -0.000345246954, -0.0076828422, -0.0250638984, -0.0101928962, 0.0144007485, 0.00865999237, -0.00197872892, 0.00757291308, 0.0427014567, 0.0141564617, 0.00742023299, 0.004195638, -0.00455596205, 0.0212774426, 0.00312535348, -0.0122876624, -0.015768759, 0.00573770283, 0.0249783974, 0.00340475724, 0.0203369353, 0.00103364151, -0.0210942272, 0.00035478943, -0.00451931916, -0.00952721294, -0.00684615737, 0.0113288332, 0.000181784257, -0.0138266729, -0.00688280072, 0.00704769464, 0.00991196558, 0.0132648116, 0.000506896584, 0.0138266729, 0.00633926084, 0.0172955561, -0.0159519743, -0.0305115096, -0.0237203166, -0.00652858382, -0.0144496066, 0.0131548829, 0.0111395102, -1.89060404e-06, 0.00677897828, -0.0103089334, 0.0341025367, 0.0217171591, 0.00149091717, -0.0590687208, -0.00182604918, -0.0103089334, -0.0182238482, -0.0110723311, 0.0120678032, -0.013533528, 0.00385363563, 0.00997303799, 0.00402158312, 0.005923972, 0.00529493205, -0.00840349, 0.00600031205, -0.00689501502, -0.00463230209, -0.00242760708, 0.00145274727, -0.0144007485, 0.0204346497, 0.0213140864, -0.00414983416, -0.0227187388, 0.00774391415, 0.00316352327, 0.015011468, 0.00730419671, 0.00930124708, 0.00556059461, -0.0234516021, -0.00986921508, -0.0142541761, 0.00172833411, -0.00789048709, -7.35725262e-05, 0.0111456178, -0.00172680733, 0.005923972, -0.0110112596, -0.0172100551, -0.00764619932, -0.00928292517, 0.0145595362, -0.00966157112, -0.00166726229, 0.0165993366, 0.019775074, -0.00205506873, -0.0126174502, 0.0211919416, -0.0179307032, 0.0162695479, 0.00020745353, -0.0159275457, -0.0179551318, 0.00063514756, 0.0249783974, -0.0173444133, -0.0132892411, 0.0162573345, 2.64803839e-05, -0.00508423382, 0.0178329889, -0.0264563374, -0.0275556315, 0.033394102, -0.0390615724, -0.0267250538, 0.000240852227, -0.00244287518, 0.0144251781, -0.00548120122, -0.000504224678, -0.0175154153, -0.0216316599, 0.00583847146, 0.00776223559, 0.0447534733, -0.0246363953, -0.0036582055, -0.0109501882, -0.0164283346, -0.00654690526, 0.0290213563, 0.0090691736, -0.0105593279, 0.00369179505, -0.0128250942, 0.0108707948, -0.00471169548, -0.0343956836, -0.00283220829, 0.0042078523, 0.0196773596, 0.0112982979, 0.0170512684, 0.00575602474, 0.0148282517, -0.00541096833, -0.00718205282, -0.00956385583, -0.00141839439, -0.00571022043, 0.000682096521, -0.00864777807, 0.0121960538, 0.00781109324, -0.00399715453, -0.000592778903, -0.0127151655, 0.00837906171, 0.0162573345, 0.0300717931, 0.0243066084, 0.0169169102, -0.0151458262, -0.0135579566, 0.0114204409, 0.00883099344, -0.0167947672, -0.00801263, -0.000392386806, -0.0168069806, -0.00130235776, -0.0211064406, 0.011005152, 0.0120983394, 0.0296809319, -0.0099486094, -1.80233601e-05, -0.00870885, -8.18744884e-05, 0.0236103889, 0.0113044046, -0.00609191973, -0.0122388043, -0.0107975081, -0.00539875403, -0.0177108441, -0.0235859603, -0.016574908, 0.00165352109, -0.00902031641, -0.0145228924, 0.0285083521, -0.0107852938, -0.00555143366, -0.00488269655, 0.0126174502, 0.0101806819, 0.00292839645, 0.00119777222, -3.25160036e-05, -0.000217377717, 0.00582931098, 0.0045926054, 0.00870274287, 0.00258486718, -0.00140847021, -0.00819584634, 0.00556059461, -0.000832104357, 0.0024215, -0.00344140036, -0.00725533906, 0.00221690908, 0.0141198179, 0.0229630265, -0.0149626099, 0.000472543645, 0.00179704, -0.0122510185, -0.00229172222, 0.00533768209, -0.00630261796, 0.0070721237, -0.005639988, -0.0106570432, 0.00513003767, -0.0220713764, 0.00194208568, -0.00116647291, -0.00700494461, 0.00644919043, 0.0171001256, -0.00316963042, 0.00840959791, 0.0141564617, 0.0128983809, 0.0372294188, 0.00536821829, 0.0160130467, 0.0221202336, 0.0181017052, -0.0178696308, -0.0115181562, -0.00256349216, -0.000423686142, -0.0073713758, 0.0133136697, 0.0200437903, 0.0232073143, 0.0224255938, -0.00418342371, 0.00919131748, -0.010522685, -0.0150603252, -0.0101928962, -0.00544455787, 0.0124098053, 0.00374981342, 0.00709044514, -0.0165382642, 0.0291190725, -0.00123746891, 0.00474223122, 0.0169291254, -0.00373149174, 0.0211308692, 0.00707823085, 0.0119395526, 0.000304977701, 0.0139121739, 0.0156344, -0.010730329, -0.0018764335, -0.0119884098, -0.00313604088, 0.00103287818, -0.0229874551, -0.0118845878, -0.00326429191, 0.00732251815, -0.0302672237, -0.00765230646, 0.000701181474, 0.0111517254, 0.0260899067, 0.00483994652, 0.0339315347, 0.0124036986, -0.0271892, -0.0106142927, 0.0133747412, 0.0180772766, 0.00175276294, -0.000681714853, -0.00500484044, 0.00726755336, 0.0097653931, -0.00147870288, -0.018003989, -0.0249417555, 0.0153290415, -0.0154389711, 0.0193231422, 0.00206728303, 0.0154878283, -0.0140587464, -0.00439106813, 0.0174787715, -0.00606138399, 0.0209720824, 0.0109685091, -0.0153534701, -0.0235371012, -0.0157199018, -0.0102783972, 0.0018764335, 0.0172589123, 0.010541006, -0.0189078543, -0.00774391415, -0.0244531799, 0.00463230209, -0.00179245963, 0.0126174502, 0.014168676, 0.00068438676, 0.0249783974, -0.0117685506, -0.00227798102, 0.0227187388, -0.0175154153, 0.000112219575, -0.00203827396, 0.000981730409, 0.00612550927, 0.0206422955, 0.0117807649, -0.0021115602, 0.0183093492, 0.0224011652, -0.00553005841, 0.015646616, -0.0230118837, -0.0356415473, -0.0108036157, 0.0188223533, 0.00863556378, 0.00604916969, 0.0124525558, 0.0114570847, 0.00504148332, -0.00399410073, -0.0109685091, 0.00978371501, -0.00822638161, 0.015011468, 0.0149626099, -0.00923406798, -0.000157737217, -0.0296076462, 0.0136801, -0.0108891157, 0.00176955771, 0.00345666823, 0.0162939765, -0.0167703386, 0.0197140016, 0.00169474457, -0.00988143, 0.00760344882, -0.00986921508, 0.0148526812, -0.0129838809, -0.00215889094, 0.0014168676, -0.00350552588, -0.00770116365, 0.00719426712, -0.00578045333, -0.0102845039, 0.00430251379, -0.00818973873, -0.0115670133, 0.00586290052, -0.0128373085, 0.00820806064, -0.00924628228, -0.0385485701, 0.00356659759, -0.0288259257, -0.0426037423, 0.0138022443, -0.00724312477, -0.0138022443, 0.0364721268, -0.000841265137, -0.0175642725, 0.00352690089, -0.0189444963, 0.0111517254, 0.00248715235, 0.00270395749, -0.016697051, 0.0157931875, 0.000177299298, 0.00750573399, 0.0114082266, -0.00305512082, -0.00768894935, 0.0129716666, -0.0160496887, 0.00553005841, 0.00198178249, -0.00272685941, 0.00659576291, -0.019652931, -0.0255280454, -0.00870274287, -0.0106203994, -0.0263830516, 0.0111395102, -0.0106326137, -0.00543539738, 0.00442160387, -0.0207522251, -0.010351683, 0.00179551321, -0.00999746658, 0.0131304534, 0.00167794991, 0.00551173696, -0.0129716666, 0.0132281687, -0.00673012109, 0.010333362, 0.00825081114, -0.0186147094, -0.00933178328, -0.00270243059, -0.0160252601, 0.0105165774, -0.00056338805, 0.0109990453, -0.0104432916, -0.0073408396, 0.0139854597, 0.0171489827, -0.0179795604, -0.0209842976, 0.00739580439, 0.00525523489, -0.0243798941, 0.0185780656, -0.00229324913, -0.0254791882, 0.0171367694, 0.0100890743, -0.0174299143, -0.00154740876, 0.00573464949, -0.00219553406, 0.00403685123, 0.00593313295, 0.0091974251, 0.0261876211, -0.00948446244, -0.000445443, -0.000582854729, 0.0124953063, -0.0252349, 0.00783552229, -0.00175887009, 0.0155366855, 0.00117258, -0.0116280857, 0.00828134641, -0.00408570888, -0.0175032, 0.0169291254, 0.0158664733, -0.0195063576, -0.00443076482, -0.00696219411, 0.022181306, -0.00898978, 0.00145122048, -0.0218148753, -0.00477887457, 0.00338948914, -0.0159641895, 0.0201292913, 0.011573121, -0.0146816792, 0.000643926614, 0.00441549672, -0.0238424614, 0.00148022966, 0.0151946833, 0.0121471966, 0.0299007911, 0.016782552, 2.49058758e-05, -0.00351163303, -0.000294099271, 0.00340170367, 0.0263341945, 0.0162329059, -0.0207522251, -0.00842791889, 0.00806148816, -0.00706601609, 0.00135274208, -0.0124769844, 0.000894703029, -0.0237569604, 0.0181994196, -0.00136342971, 8.72182791e-05, 0.020959869, -0.0142786056, 0.0103883268, 0.0123670558, 0.00582320336, -0.0170146246, -0.0128373085, -0.000809965772, 0.00176039687, 0.00363988406, 0.00263983198, 0.00153061398, 0.0185902789, 0.0218759477, 0.00320627354, 0.0204590801, 0.0134480279, -0.00433610333, -0.0103150401, -0.015182469, 0.00246272353, 0.0329788141, -0.0100096809, -0.011744122, -0.00526439585, -0.0066201915, -0.0109257586, 0.00518805627, -0.0301450789, 0.00656522671, -0.0178696308, 0.0116219781, -0.0106020784, -0.00618047407, -0.0349086858, 0.0143518914, 0.00140770676, 0.0176131297, 0.00884931535, 0.00249173259, 0.0126663074, 0.0063759042, -0.00282304757, -0.0210087262, -0.0165626928, -0.0169413388, -0.0143885342, 0.00898367353, 0.00483689271, -0.00557280891, -0.00864167, -0.00248867902, 0.00951499864, 0.019481929, -0.016574908, -0.00482467841, 0.000130827408, 0.0330276713, -0.0116341924, -0.0412357338, 0.029387787, -0.0151458262, 0.00326123834, 0.00786605757, -0.00340475724, -0.000823706971, 0.0073286253, 0.0100707524, -0.00178024522, -0.0141320322, 0.0101440391, -0.00590565056, -0.00735916151, -0.00916688889, -0.00407654792, 0.0484422147, 0.00428724568, -0.0195552148, -0.0276533458, 0.00113822718, -0.0211919416, 0.000442771125, -0.00690112216, -0.00103211473, -0.00938064, 0.0150358966, 0.0331498161, 0.0151213966, 0.00312993373, -0.00437274668, 0.00284442282, 0.0259921905, -0.0042078523, -1.1701467e-05, -0.00544761168, 0.00517584151, 0.0134113841, 0.00287953904, -0.0103028258, -0.000973333081, 0.00203674706, -0.00502316188, -0.0235981736, 0.000378073106, 0.00404601172, -0.000477505761, -0.00173902174, 0.0162084773, -0.00831188262, -0.0091852108, -0.013325884, 0.0119151231, -0.00264593912, 0.0167947672, -0.0204224363, -0.0114204409, -0.0319283791, 0.0187857095, -0.00550257601, -0.00232531177, 0.0048765894, -0.00152832374, 0.00032673456, -0.00636979705, -0.00761566311, 0.0191154983, 0.0129838809, 0.0113105122, 0.00577129237, 0.0269937702, -0.00543234358, -0.00640644, -0.000364141073, 0.0261876211, -0.0149381813, -0.00434831763, -0.0102173248, 0.0107181147, 0.0102417544, -0.00663851295, 0.0010420389, -0.00982646551, -0.018639138, 0.023402743, -0.00763398455, -0.0189567115, -0.000321199914, -0.0246119667, 0.00631483225, -0.0173566286, -0.0154878283, -0.0210697986, -0.0121838395, 0.00787216518, -0.0020703366, -0.00498651899, -0.00452847965, -0.0107852938, -0.00233599939, 0.00858059898, 0.000418724056, 0.0232317429, -0.00117105327, -0.035299547, -0.0067973, 0.00121685723, -0.00360018713, 0.0270670559, 0.0109746167, 0.00749351969, -0.00511171622, 0.0118113011, 0.0185658503, -0.000542394642, -0.000102199971, -0.00738969725, -0.000748512219, -0.0149748242, 0.020996511, -0.0130449533, 0.00216805167, 0.00418647705, 0.00951499864, -0.00338338199, 0.000524836476, 0.00137717091, 0.0186635666, -0.01379003, -0.011176154, -0.0024245535, 0.00443381816, 0.0202147923, -0.0308779422, 0.00307496917, 0.00273907371, -0.000146286227, -7.12704059e-06, -0.00933178328, 0.0202514343, 0.000843555317, 0.0014619081, -0.00606443733, 0.010247861, 0.004843, -0.00381088513, 0.00575297093, -0.0115914429, -0.00800652336, 0.0131915258, 0.0195430014, 0.0109135443, -0.00247035758, -0.00762787741, -0.0171367694, 0.00611940213, 0.0396967195, -0.00601252634, -0.000323108397, 0.014840466, -0.0106814718, 0.00478192791, -0.0130327391, 0.00407044077, 0.00903863832, -0.0231462419, 0.0135823861, -0.0107059, -0.0102845039, -0.0141198179, -0.03913486, 0.0200193617, 0.00349025778, -0.00614077738, 0.0214606579, 0.00415594131, 0.0208621528, 0.00349025778, 0.0145106781, -0.0160252601, 0.00635758275, 0.0138266729, 0.0129838809, 0.00720037427, -0.0284350663, -0.0112127969, 0.0042078523, 0.0193597861, -0.0244165361, -0.00531630684, -0.00634536799, -0.0130938105, 0.00703548035, -0.0146938935, -0.0134358136, -0.00515446672, -0.021338515, 0.00193292496, 0.00884931535, -0.00914246, 0.018382635, -0.00645529758, 0.0211186558, 0.0138999596, 0.00658354862, 0.0170512684, 0.0097653931, 0.0175276287, -0.024074534, -0.014840466, -0.0110845463, 0.00050727831, -0.00284442282, 0.0305847973, 0.0311710872, 0.00285969069, -0.0215583723, 0.0216560885, -0.0206300803, 8.55006292e-05, -0.00491017895, 0.0121899471, -0.0216072313, -0.00797598716, -0.0291679297, 0.0215461589, 0.0193842147, -0.0134724565, -0.004849107, -1.98602884e-05, -0.000607665163, -0.0302427933, -0.00235584774, 0.0194086432, 0.000924475549, 0.0377668478, 0.00164588715, -0.00978982169, -0.00139472901, 0.0124281272, 0.00731641101, -0.012312091, 0.00581404287, 0.0187002085, 0.00812866725, -0.0311466586, -0.0142175332, 0.0189444963, -0.0236226022, 0.0129716666, -0.0125319492, 0.0104555059, -0.00767062791, -0.0126296645, -0.00468421308, -0.0102539686, -0.0167214796, -0.0102234324, 0.0318550915, -0.00408570888, -0.0098936446, 0.00253295619, 0.0135090994, 0.0103089334, 0.00505064428, 0.0155489, 0.0295099318, -0.00777445, -0.0128250942, -0.00413151272, -0.0141564617, -0.0122143757, 0.0197140016, 0.0242821779, -0.00407044077, -0.0124769844, 0.0084889913, -0.0181627758, 0.0186147094, -0.0056125056, 0.0270426273, -0.00440938957, 0.0128373085, -0.0109562948, 0.0085317418, 0.00216347119, -0.0160985477, 0.0145106781, 0.0141808903, -0.0176497735, -0.00145885453, 0.00482467841, -0.010437184, -0.0263586231, 0.00451931916, -0.00212072092, 0.0192864984, -0.000318146311, 0.0124403415, -0.00360934809, -0.0125930216, 0.0165260509, 0.0223767366, -0.00588122196, -0.00553921936, 0.0178085603, 0.00768894935, -0.00227950793, -0.00332536385, -0.0295099318, -0.0307069402, -0.000190277075, -0.00430251379, -0.0151946833, 0.0345911123, -0.00897145923, -0.00850731228, -0.0124403415, -0.00481857127, -6.20738356e-05, 0.0303893667, -0.0102173248, -0.000843555317, 0.0120922318, 0.0199582893, -0.00183673669, -0.01956743, 0.000102199971, -0.00651026238, 0.0033589534, 0.0291679297, -0.00589954341, 0.000549646909, 0.015768759, 0.011383798, 0.0271403436, 0.0235859603, -0.0144373924, -0.0106081851, -0.00434221048, -0.0310245138, 0.00833631121, -0.0135457423, -0.00299404887, -0.0264074802, -0.00613467, 0.0011748703, 0.00206270278, 0.0246486105, 0.0124953063, 0.0166237652, -0.01222659, -0.00571327424, -0.0446313284, 0.0132159544, 0.000673699134, -0.00709044514, -0.00760955596, 0.0122815548, 0.00596366869, 0.0373271331, -0.00776223559, -0.00173596817, -0.000385516236, -0.00304137962, 0.00340170367, 0.01237927, -0.00124662975, 0.00182910275, 0.00704769464, 0.0250638984, 0.000966462481, 0.0167459082, 0.00714541, -0.0289969277, 0.013704529, -0.00400631502, -0.0224988796, 0.00276960968, -0.0160252601, 0.00163672632, -0.00621711742, 0.0125808073, 0.00193292496, -0.0318550915, 0.00290244096, 0.0254791882, 0.0185292084, -0.0189933535, -0.00821416732, -0.00611634878, -0.0184803512, 0.00451626536, 0.00348109705, 0.0202270057, 0.0097104283, -0.00682172878, 0.013619029, -0.0144984638, 0.00581098907, -0.00180314726, -0.0142786056, -0.00987532269, 0.00142831856, -0.011090653, 0.0170390531, -0.00227034697, -0.000932872936, -0.014718323, -0.0116036572, -0.0232561715, -0.0221690927, 0.0132770259, 0.0151946833, -0.00587816816, -0.0271159131, -0.00559113035, -0.0049315542, 0.0153168272, -0.0148282517, -0.00619268836, 0.0133625269, 0.0179917756, -0.0217293743, -0.0130938105, -0.0119090164, 0.00494071515, 0.00247341115, -0.0127395941, 0.00025383, 0.0110417958, 0.00363988406, -0.00136037613, -0.0164649785, 0.00858670566, 0.00856838468, 0.0202147923, 0.0135701718, 0.0288259257, -0.00794545095, 0.001375644, -0.0143274628, -0.00154969888, -0.00996082369, -0.0155977579, -0.00388111779, 0.00779887894, 0.0138999596, 0.0133747412, 0.0231218133, -0.0149748242, -0.0106509356, -0.0010763919, 0.00209171185, 0.000186460078, 0.0102600753, -0.00684615737, 0.00811645295, 0.00263067125, -0.0212163702, 0.00124357617, 0.0106936861, -0.00809813105, 0.00644919043, 0.00138175127, -0.00659576291, 0.00490712561, -0.00660797721, -0.0154878283, 0.0126052359, -0.0143030342, 0.00770116365, -0.00591786485, 0.0148160374, 0.00017081041, 0.0168924816, 0.0118235154, -0.0187368523, 0.029387787, 0.0189811401, 0.032001663, 0.0150358966, 0.0131426686, 0.018297134, 0.0246974677, -0.0250638984, -0.0115975495, -0.0209232252, 0.00122830819, -0.049297221, 0.00836684741, -0.00603390159, -0.000572167162, 0.00930124708, -0.00152527017, 0.00405211933, 0.0134113841, 0.00726755336, -0.00628429605, 0.000562243, 0.00721258903, -0.00359102641, 0.0347621143, -0.0301206503, -0.000155256159, -0.00815920252, -0.0314153731, 0.0114326552, -0.0114570847, -0.0141076036, 0.000835157931, 0.0090691736, -0.003911654, -0.0227187388, 0.0232439563, 0.0167703386, 0.0033436853, 0.00328872073, 0.0142297475, -0.0156954732, -0.00952721294, -0.00534684304, -0.0122021614, -0.0211064406, 0.00713319518, -0.00829966832, -0.00193597854, -0.0135823861, -0.000574839069, -0.00932567567, -0.00681562163, 0.0231095981, -0.0115303705, 0.0170512684, 0.000222148956, -0.0109135443, -0.00941728335, -0.00850731228, -0.0229752399, -0.0170024112, 0.0168558378, -0.0240134634, -0.0302916523, 0.0354216881, 0.0109074377, -0.00743244775, 0.0126296645, 0.0154878283, 0.000743168406, -0.01007686, -0.0365454108, -0.0100463238, 0.000909207563, -0.00665683486, 0.00748130493, -0.00596061535, -0.00251005427, 0.00359408, 0.0162451193, 0.00746298349, 0.013875531, -0.007823308, -0.0131304534, 0.00474223122, -0.0146083934, -0.0106081851, -0.0163550489, 0.0218759477, -0.0273846295, 0.0176253449, -0.000626368448, -0.0177963451, 0.00256196526, -0.00756069832, 0.00086951087, -0.0172100551, -0.00925239, 0.00734694675, -0.0195796434, -0.0144984638, 0.0167581234, 0.000688585453, 0.0172955561, 0.0188101381, 0.00749962684, 0.0182849206, -0.00493460754, 0.00575907808, -0.0124098053, -6.67973654e-05, -0.0206545088, 0.0105165774, -0.00149091717, -0.00546287932, -0.00836074, 0.0191154983, -0.00914856698, 0.00844013318, -0.015390113, 0.0141320322, -0.00767673505, -0.0224133786, 0.00367958075, -0.0121105537, 0.0105165774, -0.0161596183, -0.0118968021, 0.00502926903, 0.0265540518, 0.00344140036, -0.00514530577, -0.0163306203, -0.0049590366, 0.0235248879, -0.00579877477, -0.0178085603, 0.00469642738, 0.0221202336, -0.0134358136, -0.00341697154, 0.00246272353, -0.00375592057, -0.00169474457, 0.00688280072, -0.0189322829, -0.00654690526, -0.0167214796, 0.000973333081, 0.00351163303, 0.00430556759, 0.0348354, -0.0027940385, -0.00743855489, -0.0153290415, -0.0110723311, -0.0184803512, 0.0372049883, 0.0234393869, 0.0178452022, -0.0173444133, -0.00467199879, 0.00327345263, -0.00475444552, 0.0124525558, -0.0102783972, 0.00323070236, -0.00752405543, 0.0076828422, 0.0381332822, -0.000785537, -0.00614383118, 0.0016382531, 0.00140770676, 0.0055972375, 0.011005152, 0.00588427531, -0.00483383937, 1.86972989e-06, 0.00495292945, -0.0179917756, 0.0102112181, 0.000955774914, -0.0227920245, -0.0340292491, 0.00754848402, 0.0245508943, -0.000334750221, -0.00334063172, -0.00709044514, 0.024709681, -0.00228866865, 0.00848288368, 0.00665683486, 0.0187612809, -0.010437184, -0.00319100567, -0.0256990455, -0.0179184899, -0.0152923986, 0.00914856698, 0.0105715422, -0.00745687634, -0.00742023299, 0.0145717505, 0.012208268, 0.00336506055, -0.0172589123, -0.00945392717, -0.00799430907, 0.020788867, 0.0125075206, 0.0045620692, 0.0122510185, 0.00273449346, 0.000777139678, -0.0137167443, 0.0182238482, 0.0119029088, 0.000966462481, 0.0066751563, -0.0134113841, -0.0104738269, 0.0133014554, -0.001375644, -0.00560334465, 0.00873327814, 0.0111700464, 0.000367003813, 0.0120433746, 0.000951194495, 0.0049743047, -0.0272624865, -0.00774391415, -0.0439228937, 0.0190910697, -0.0256013311, -0.0142175332, 0.000475215551, 0.00261998363, 0.00498651899, 0.000613009, 0.000806148804, 0.0169046968, -0.00913635269, 0.0160863325, 0.00779277179, 0.00467199879, 0.0201292913, 0.00615604548, 0.0328566693, 0.0097226426, -0.0083485255, -0.0114448704, -0.00718205282, -0.0119456593, 0.031293232, -0.0292900726, 0.0248928983, -0.0346399695, 0.0135579566, -0.000980203622, 0.0142419618, 0.0341269672, -0.00638811849, -0.00430556759, -0.00180314726, -0.00532546779, -0.00143289892, -0.0120800175, 0.024966184, 0.000995471608, 0.00732251815, -0.0201415047, 0.000227874451, -0.000716067792, 0.0052155382, -0.012690736, 0.0109746167, -0.00425365614, 0.0186269227, -0.0157809742, -0.0104249697, -0.00306733511, -0.00284136925, 0.00705990894, 0.0091974251, 0.000964935694, -0.0146816792, 0.0123853767, -0.0261631925, -0.000392768503, 0.0123670558, 0.0143030342, -0.00672401395, -0.0111334035, 0.0302672237, -0.0181139186, 0.00801263, -0.0204957221, -0.0133380983, 0.0227920245, -0.0303893667, -0.00883099344, -0.00743244775, -0.016660409, 0.0308535136, -0.0373515598, 0.00606138399, -0.0107608652, 0.0149137527, 0.0163672641, 0.0238791052, -0.00350552588, 0.0159153324, -0.00745076919, 0.0021100333, 0.0115242638, 0.0239279624, 0.00754848402, 0.0223767366, 0.0278243478, -0.00870885, 0.0136434576, 0.00751794828, 0.00668737059, -0.00998525228, 0.00690112216, -0.0262364782, -0.00143900618, -0.000513385457, -0.00944782, 0.000882488617, -0.00249020592, -0.00724923192, 0.000941270322, -0.016868053, 0.00837295409, 0.0262364782, 0.0111578321, 0.00286427117, 0.00706601609, -0.00807370245, -0.0029772541, 0.00431778189, -0.00878213625, 0.0156710446, -0.0273846295, -0.0247829687, 0.0124464491, -0.00761566311, -0.0190299973, 0.00746298349, 0.00142221141, 0.00462619495, 0.0136434576, 0.0202880781, 0.00850120559, -0.00161229761, 0.0128006656, -0.0110295815]
07 Mar, 2025
C – Pointer to Pointer (Double Pointer) 07 Mar, 2025 In C, double pointers are those pointers which stores the address of another pointer. The first pointer is used to store the address of the variable, and the second pointer is used to store the address of the first pointer. That is why they are also known as a pointer to pointer. Let’s take a look at an example: C #include <stdio.h> int main() { // A variable int var = 10; // Pointer to int int *ptr1 = &var; // Pointer to pointer (double pointer) int **ptr2 = &ptr1; printf("var: %d\n", var); printf("*ptr1: %d\n", *ptr1); printf("**ptr2: %d", **ptr2); return 0; } Outputvar: 10 *ptr1: 10 **ptr2: 10Explanation: In this code, ptr1 is a pointer that stores the address of the integer variable var. ptr2 is a double pointer that stores the address of the pointer ptr1. **ptr2 dereferences ptr2 to get the value of ptr1 (which is the address of var) and then dereferences that address to get the value of var itself. Table of Content Syntax of Double PointerExamples of Double PointerFind the Size of Double PointerCreate a Dynamic 2D ArrayPass Array of Strings to FunctionApplication of Double Pointers in CMultilevel Pointers in CSyntax of Double PointerThe syntax to use double pointer can be divided into three parts: Declaration A double pointer can be declared similar to a single pointer. The difference is we have to place an additional ‘*’ before the name of the pointer. type **name; Above is the declaration of the double pointer with some name to the given type. Initialization The double pointer stores the address of another pointer to the same type. name = &single_ptr; // After declarationtype **name = &single_ptr; // With declaration Deferencing To access the value pointed by double pointer, we have to use the dereference operator * two times. *name; // Gives you the address of the single pointer**name; // Gives you the value of the variable it points to The below image illustrates these for the first example: In C, a double pointer behaves similarly to a normal pointer. So, the size of the double-pointer variable is always equal to the normal pointers i.e. only depending on the operating system and CPU architecture. 8 bytes for a 64-bit System4 bytes for a 32-bit SystemExamples of Double PointerThe below examples demonstrate the use of double pointers for different applications in C: Find the Size of Double Pointer C #include <stdio.h> int main() { // Defining single and double pointers int a = 5; int* ptr = &a; int** d_ptr = &ptr; // Size of double pointer printf("%d bytes", sizeof(d_ptr)); return 0; } Output8 bytesNote: The output of the above code also depends on the type of machine which is being used. Create a Dynamic 2D Array C #include <stdio.h> #include <stdlib.h> int main() { int m = 2, n = 3; // Create a double pointer int** arr; // Allocate memory for rows arr = (int**)malloc(m * sizeof(int*)); // Allocate memory for each row for (int i = 0; i < m; i++) arr[i] = (int*)malloc(n * sizeof(int)); // Initialize with some values for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { arr[i][j] = i * n + j + 1; } } // Print the array for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { printf("%d ", arr[i][j]); } printf("\n"); } // Free allocated memory for (int i = 0; i < m; i++) { free(arr[i]); } free(arr); return 0; } Output1 2 3 4 5 6 Explanation: A 2D array is an array where each element is essentially a 1D array. This can be implemented using double pointers. The double pointer points to the first element of the 2D array, and each pointer it references points to a dynamically allocated 1D array using malloc(). Pass Array of Strings to Function C #include <stdio.h> // Function that takes array of strings as argument void print(char** arr, int n) { for (int i = 0; i < n; i++) printf("%s\n", *(arr + i)); } int main() { char* arr[10] = {"Geek", "Geeks", "Geekfor"}; print(arr, 3); return 0; } OutputGeek Geeks Geekfor Explanation: Array of strings are generally stored as array of pointer to strings. This can be passed using double pointers to function. Application of Double Pointers in CFollowing are the main uses of pointer to pointers in C: They are used in the dynamic memory allocation of multidimensional arrays.They can be used to store multilevel data such as the text document paragraph, sentences, and word semantics.They are used in data structures to directly manipulate the address of the nodes without copying.They can be used as function arguments to manipulate the address stored in the local pointer.Multilevel Pointers in CDouble Pointers are not the only multilevel pointers supported by the C language. What if we want to change the value of a double pointer? In this case, we can use a triple pointer, which will be a pointer to a pointer to a pointer i.e, int ***t_ptr. Examplesint*** ptr3; // Triple pointer int**** ptr4; // Quadruple Pointer Similarly, to change the value of a triple pointer we can use a pointer to a pointer to a pointer to a pointer (Four level Pointer). In other words, we can say that to change the value of a ” level – x ” variable we can use a ” level – x+1 ” pointer. And this concept can be extended further. Note: We can use any level pointer in C. There is no restriction about it but it makes the program very complex and vulnerable to errors.
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Find the Peak Element in a 2D Array/Matrix/Search an element in a sorted and rotated array with duplicates/Search for an element in a Mountain Array/How to Sort an Array in Descending Order using STL in C++?/Bitwise Operators in C/restrict Keyword in C/Chain of Pointers in C with Examples/C – Pointer to Pointer (Double Pointer)
https://www.geeksforgeeks.org/double-pointer-pointer-pointer-c/
Data Science & ML
C – Pointer to Pointer (Double Pointer)
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, restrict Keyword in C, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, How to Sort an Array in Descending Order using STL in C++?, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Chain of Pointers in C with Examples, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Find the Peak Element in a 2D Array, Search an element in a sorted and rotated array with duplicates, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, C – Pointer to Pointer (Double Pointer), Matrix, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, Bitwise Operators in C, Search for an element in a Mountain Array, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.0278677642, 0.00453707762, -0.0117524303, 0.0242586602, 0.0386493914, -0.0069326777, -0.010119196, 0.0157612767, -0.0229794849, -0.0169148184, -0.00365193351, -0.0484716371, -0.00987935066, -0.0114726108, -0.0249439329, 0.0120036965, -0.000239131681, 0.028141873, 0.00382039649, 0.0129973423, 0.0635019541, -0.00756655494, -0.0513041, -0.00596187403, 0.00310086, -0.00265971548, 0.0141052008, -0.0228652731, 0.00566777773, 0.0544106662, 0.0125747574, -0.00310371513, -8.32053338e-05, -0.068161808, -0.0019573106, -0.0431721918, -0.0136597734, -0.028964201, 0.00183024968, -0.0181597322, 0.0206952412, -0.0136711942, 0.00191162585, -0.00211292482, 0.0107473629, 0.0502990298, 0.0158069618, -0.0147105251, 0.0128488671, -0.035360083, -0.0184338409, -0.0010828739, 0.0206267145, -0.00316938711, -0.00442857621, 0.0167663433, -0.0107873371, -0.00805195607, -0.00196444895, 0.00366906519, 0.00931971148, 0.0221571568, -0.0472838283, -0.0363651477, 0.000540009292, -0.00729244575, -0.0173830893, 0.0131915035, 0.00781211117, -0.0284388252, 0.000530372665, 0.00761795044, -0.0097422963, 0.00151902158, -0.01786278, -0.0290555712, 0.0441772602, 0.0098450873, -0.0304489583, 0.0611263439, -0.01569275, 0.0131343976, -0.0150874248, -0.00925118383, 0.0120151183, 0.0166749731, -0.0028367443, -0.0202155504, 0.027981976, -0.00107073889, -0.0410706885, 0.010427569, 0.0261317398, 0.00402312307, -0.0228766929, -0.029786529, -0.00661288342, 0.0134656122, 0.0086687021, 0.0164351277, 0.0043115085, 0.0354286097, 0.000750944891, -0.0272510182, -0.00287814625, -0.023436334, 0.0109529449, 0.000365300424, -0.0365478881, 0.0174858794, 0.00854877941, -0.0053793923, -0.000361195911, 0.0328017287, 0.00493682036, 0.00807479862, -0.0148133161, -0.0831007585, -0.039334666, -0.00852593686, -0.00857733283, 0.0255835224, 0.00765792467, 0.0345149115, -0.029169783, 0.034080904, 0.0179769918, -0.0109529449, -0.0368676819, -0.0378270634, -0.0140709365, 0.00379184331, -0.0255149938, 0.00566777773, 0.00186023035, 0.0125404941, 0.050436087, 0.00799485, 0.0146534191, 0.00549931498, -0.03355553, 0.000342101092, 0.0205010809, -0.0115411375, -0.0304718018, 8.2848419e-05, 0.013785406, 0.0293982066, -0.0170290321, 0.00496537331, -0.0213119872, 0.0249210913, -0.0145163639, -0.0123349121, 0.0325733051, -0.0159782805, -0.00294667343, 0.0267028, -0.0192447472, -0.0179313067, 0.00314368936, 0.00418016454, -0.0389006585, 0.0105018076, -0.0342408, 0.0156813283, 0.0182967857, -0.00111214083, 0.00410307152, 0.0125290724, -0.000960095902, 0.0106388619, 0.061902985, 0.0239845514, -0.023333542, -0.0266114306, -0.0170747172, 0.00224284106, 0.0349260755, -0.0210492983, -0.0147904735, -0.0355199799, 0.00456848601, 6.78580764e-05, -0.00657861959, -0.0218031, 0.0186965298, -0.0219629966, 0.00649867114, -0.0253550969, -0.022614006, 0.00540223485, 0.0404996276, -0.012494809, 0.037073262, -0.00757226534, -0.0285987221, 0.0124377031, 0.00653864536, -0.0121407518, -0.00507387472, -0.045068115, -0.0520350561, 0.0266799573, 0.00724676065, 0.020809453, -0.0135112973, 0.00225854525, 0.0686186627, -0.00539081357, 0.00645869691, 0.011409794, -0.00607037591, -0.0483802669, 0.0429666117, -0.0100906435, -0.0444970541, 0.0149503704, 0.0256520491, -0.0249667764, 0.0304946434, -0.0154985888, 0.0610349737, -0.0134541914, -0.0454335921, -0.0317738205, 0.00189449405, -0.0109529449, -0.0546390936, 0.00195588311, 0.019518856, 0.0266114306, 0.00433149561, -0.00853164773, -0.0182853658, -0.0143564669, -0.0112327645, 0.00492825406, 0.000889427087, 0.0592989475, 0.015178795, 0.025949, -0.0395859294, 0.0212663021, 0.0116267968, 0.0391976088, -0.0386265479, 0.00011403369, -0.0605781227, 0.00388035784, 0.0019373236, 0.0285758805, 0.00354628731, 0.00606466504, -0.0425326042, -0.00191590877, 0.00574201578, 0.0292154681, -0.0124719664, -0.00831464492, 0.00529373297, -0.0173259825, -0.0478777327, 0.0141851492, 0.0144249946, -0.0228766929, 0.0400427803, -0.0134427696, 0.0181254689, -0.00946818758, 0.026588589, -0.0667455792, 0.0592989475, -0.0189135317, 0.0579740852, 0.000653864583, -0.0240530781, -0.0337382704, -0.00293810759, 0.0309514925, 0.0552786812, 0.0288499892, 0.0264515337, -0.00988506153, 0.0025240886, -0.0346748084, -0.0200099684, 0.000709543, 0.0112156328, -0.0254921522, 0.00453993306, -0.0327103585, -0.00689270301, -0.00393746374, 0.0708115324, -0.0125404941, -0.0139338821, -0.0299464259, -0.00402026763, -0.0159897, 0.0348575488, -0.0264058486, 0.017451616, 0.0127803395, 0.0100106951, 0.00636732718, -0.0107473629, -0.0243500303, -0.0162523892, 0.0152587434, -0.0161039121, -0.0564664863, -0.0246698242, -0.0103019355, 0.0127232336, 0.0117524303, 0.036296621, -0.00964521617, -0.0436290428, -0.000873009092, -0.0137968278, 0.0254693087, 0.00443428662, 0.0158640668, 0.0361824073, 0.00911412947, 0.0137283, 0.0128260246, -0.0436975695, -0.029718, -0.0192104839, -0.0390148684, -0.0304261167, 0.00407737354, 0.00116496393, -0.0356113464, -0.0385808647, 0.0134884547, 0.00759510789, 0.0153158493, 0.00213719485, 0.0117866937, -0.0337611102, 0.00374901388, 0.010376174, -0.0259946845, -0.0334641598, -0.0127917612, -0.0221343152, -0.00453136722, 0.000528588076, 0.0506188236, 0.0121179093, 0.0387864448, 0.0110557359, -0.00151331094, -0.015076004, -0.0113298455, -0.00835461915, 0.00261117518, 0.0541365594, 0.00802340358, -0.0253779404, 0.000995073351, -0.0438117795, -0.0141623067, 0.014402152, -0.0305403285, -0.0141394641, -0.0417331196, -0.0119580124, 0.00324648037, -0.00118923397, -0.00232421723, -0.0137625644, 0.00385466, 0.0288728308, 0.0217688363, 0.0122321211, 0.0189592168, 0.0031465448, 0.0319337174, -0.0245556124, 0.00281104655, -0.0200328119, 0.0234134905, -0.0307002254, 0.0203640256, 0.0488371141, 0.0165493414, -0.0124034397, 0.036296621, -0.0030980045, -0.0166749731, 0.016161019, 0.00227567717, 0.00631593168, 0.00922263134, -0.0270911213, -0.034948919, 0.0386037081, 0.00607608631, -0.0296494737, -0.0125290724, 0.0103076464, 0.0390605554, -0.020135602, -0.00872009806, -0.00190734293, 0.0342179611, 0.00403168891, -0.000309265073, -0.020603871, 0.00554785505, 0.0274109151, 0.0208779816, 0.0116724819, 0.0658775643, -0.00986793, -0.0149161071, 0.0541822426, -0.0102334088, 0.0115982434, -0.00669283187, 0.0247383509, 0.0239845514, 0.00598471658, -0.00945105497, 0.00374044781, 0.00145906024, -0.0252408851, 0.0110100508, -0.00987935066, 0.041047845, -0.0365707316, -0.0730044, 0.0222827904, 0.0160468072, -0.0319794, -0.00943392329, 0.0218716264, 0.0129402364, -0.00935397483, 0.010016406, -0.0520350561, 0.00415732246, -0.0322078243, 0.0121978577, 0.02210005, -0.014607734, -0.025949, -0.0152473217, -0.00399457, 0.00637303805, 0.0471924618, -0.00261831353, -0.0185023677, -0.0338524804, -0.0390605554, -0.00931971148, -0.0222142637, -0.00957668852, 0.016777765, -0.0306316987, 0.0349260755, -0.0205010809, -0.00772645185, -0.0248982478, -0.0308144372, -0.0151445307, 0.00346919405, 0.00749802776, 0.0279362909, 0.0110957101, 0.00280105299, 0.0168577135, 0.0327103585, 0.0162638109, -0.0140024098, -0.0454335921, 0.0186051596, -0.0254236236, -0.0399514101, -0.0149046853, -0.0024241528, -0.000321757048, -0.00893139, 0.0145506281, 0.0155556947, -0.0162295457, 0.00425725803, 0.0412762724, 0.0161952823, -0.007846375, 0.0025968987, 0.0245556124, -0.0398371965, 0.00174601818, 0.0420072302, 0.065466404, -0.0293296799, -0.0293982066, -8.46329858e-05, 0.0231850669, -0.00666998932, -0.0150417397, -0.0162409674, -0.0135227181, -0.0324362516, -0.0126432851, -0.0142765185, -0.00878862478, 0.0289870426, 0.0245099273, 0.0106045976, -0.0279591344, -0.0254464671, -0.0190848503, 0.0036348016, 0.0296951588, 0.0110328933, 0.00511670439, 0.00974800717, 0.00362909096, -0.00879433565, 0.0287814625, 0.0351316556, -0.0125633366, -0.00169319508, -0.0397229865, 0.00792632345, -0.00592761068, -0.00012804252, -0.0108615756, -0.00606466504, -0.0032036507, 0.0025940435, 0.0391062386, -0.0213919356, 0.0059161894, 0.00340923271, 0.0166292898, 0.0172802974, -0.0411392152, 0.0116724819, 0.0279591344, -0.0118438, 0.011101421, -0.0091541037, -0.00706402166, 0.00432578521, 0.0189021099, 0.0203297623, -0.0158183835, -0.000529658864, 0.0014362178, -0.0103647523, 0.00345777278, 0.0057620029, -0.0201241802, 0.0275479704, 0.0116096651, -0.0004843309, 0.0141052008, 0.00530229881, 0.00930258, -0.0129859215, 0.0215746742, 0.0154871671, 0.0160924923, 0.0164922345, -0.0120265391, 0.0165493414, -0.0355656631, 0.0146419974, 0.00243700179, -0.0129859215, -0.0178513583, 0.0160468072, 0.011050025, -0.0333499461, -0.0234134905, 0.0182511, 0.0226825327, 0.031339813, 0.0123234913, 0.00484545063, 0.0294210501, -0.0329159424, -0.0215175692, -0.0124377031, 0.0144706797, 0.00102648174, 0.00929115806, -0.00928544812, -0.00971374288, -0.00286529725, 0.00209436519, -0.0121521726, -0.0228995364, -0.00519950828, 0.0183995776, 0.0138310911, -0.00236133626, 0.0106045976, 0.0104332799, 0.00807479862, -0.0233678054, -0.0130772907, 0.0215404108, -0.0663801, -0.0462559201, 0.026428692, -0.00182596676, 0.019256169, -0.00578770088, -0.0177371465, 0.00533941807, -0.0236190725, 0.0091084186, 0.0404996276, -0.00625882577, 0.0121521726, -0.0273652319, -0.0181140471, -0.00481975265, 0.00717823347, -0.030197693, -0.0206381362, -0.0174059309, -0.0114954524, -0.0288499892, 0.0252408851, -0.00922834128, -0.00748660648, 0.0165607613, -0.0148475794, 0.0320707709, -0.0316139236, 0.0347661786, 0.0277535524, 0.0186508447, 0.00187450694, 0.0882174671, -0.00520236325, -0.00231707888, -0.000431864697, 0.0252865702, -0.0190391652, -0.0210378785, 0.028553037, -0.0189706385, -0.00965092704, 0.0137625644, 0.000960095902, 0.00458276272, 0.0153957978, 0.0263144784, 0.0164122861, 0.0111356843, -0.0331672095, 0.00368048646, -0.00486829272, 0.0123463329, -0.0227853246, -0.0160468072, 0.000632806681, -0.00798914, 0.00727531407, 0.0218031, -0.0169490837, -0.0063444851, 0.00881146733, 0.00861159619, 0.000763793767, -0.0168462917, -0.0019573106, 0.0361595675, 0.00342065399, 0.0376900099, 0.038055487, 0.00544791948, 0.00569633115, -0.0136711942, 0.00408308441, -0.00264401129, -0.0438117795, -0.0116439285, -0.0093596857, -0.00878291391, -0.0128488671, -0.0231850669, 0.0278449226, 0.0157041699, -0.00372902676, -0.036296621, 0.00734955166, 0.0208665598, 0.000965806481, -0.0132371886, 0.0146419974, -0.0195873845, -0.00657861959, -0.0139338821, -0.0146534191, 0.0520807393, -0.010119196, 0.0173145626, -0.013008764, -0.0230023265, 0.0019387512, 0.0032893098, -0.0100221159, 0.026428692, 0.0268855393, 0.020603871, -0.00570489699, -0.0282104015, 0.000929401373, -0.0181026254, 0.000913697178, -0.0099764308, 0.0284616668, 0.0324362516, 0.0300149526, 0.0018345326, -0.0267713275, -0.00582481967, -0.0414818525, -0.0179084651, -0.0335783735, 0.00264115585, -0.00455706473, -0.00551073626, -0.0131686609, -0.0175658278, 0.0145620489, -0.00488828, -0.0174630377, 0.000962237362, -0.00557355303, -0.00434006145, 0.0165950246, -0.0196444895, -0.00795487594, -0.000986507395, 0.0181140471, 0.0159897, 0.0307002254, 0.0440402031, -0.00467127701, 0.00364907808, 0.0309058074, -0.037530113, 0.00876007229, -0.0423498638, 0.00890283659, -0.00807479862, 0.0181597322, -0.0152701642, -0.0149161071, 0.0142879402, 0.0225797426, 0.00615603477, -0.00572773907, 0.00144264218, -0.0317281336, 0.0230594333, 0.0226254277, 0.00356912962, 0.0263601635, 0.0177143048, -0.0110386042, -0.00704688951, 0.0104561225, -0.0230594333, -0.00499963667, 0.0192904323, -0.0246012975, 0.0103590423, -0.0615831912, -0.00895994343, -0.000380469224, -0.0133628212, 0.00557355303, -0.0170176104, 0.00430008722, 0.0270682797, 0.0157955401, 0.007846375, 0.0288043041, 0.0132942945, -0.0088742841, 0.00708686374, 0.0119237481, -0.0257205758, -0.0116724819, -0.0124719664, -0.0227282178, -0.027570812, 0.0200556535, -0.0150417397, -0.00359482737, 0.00430008722, 0.0163894426, -0.0381011739, -0.0133285578, -0.005188087, -0.0172346141, 0.000940822589, 0.0141166216, 0.0125062307, 0.00475979131, 0.0375757962, -0.0121293301, 0.0592532642, 0.0114840316, 0.0145506281, -0.0116496393, 0.026999753, -0.00327788875, -0.0003633374, -0.000156863243, -0.0150074763, -0.0147562101, 0.0262002666, 0.0201698653, -0.010016406, 0.0392661355, 0.00869154464, 0.0113012921, -0.0128945513, 0.0188107416, 0.0108330222, 0.000917266298, -0.00871438719, 0.0114040831, -0.00832606573, 0.00265114941, 0.0103304889, -0.00488256942, -0.0190163236, 0.00172174815, -0.00281961239, 0.0037375926, 0.00153329805, -0.00538224773, 0.0317052938, -0.00158754888, 0.0044514183, 0.0112841604, 0.00868583377, 0.0092568947, 0.0203754473, 0.00471696164, 0.0246469826, -0.0106103085, -0.0240530781, 0.00889712665, -0.00187593454, 0.0328702554, 0.0321621411, -0.0104047265, -0.022248527, 0.0170176104, -0.00311799161, 0.0183310509, 0.00913697202, 0.0144135728, -0.0150074763, 0.011512585, 0.0448396914, -0.00370332901, 0.0368448384, -0.00669283187, -0.0105532026, 0.00184309855, -0.00918265712, 0.0440173633, 0.0361824073, 0.0484259501, -0.0211749319, 9.93110298e-05, 0.00880575646, -0.0251723584, 0.00422584964, -0.0188906901, -0.0181483105, -0.00643585483, -0.00874865055, 0.0245327689, 0.0117752729, 0.0143564669, -0.0153386919, 0.014402152, 0.0275479704, 0.005576408, -0.0081376154, -0.0186280012, 0.0158640668, 0.000256085041, -0.022716796, 0.00334927137, 0.00413448, 0.0216660444, 0.00591047853, 0.0412534289, 0.0363194644, -0.0452965386, 0.0299464259, 0.0253779404, -0.00502533466, -0.00352058955, -0.0488371141, 0.00338067953, 0.00108715694, -0.0182396807, -0.0153615344, 0.029718, 0.0173488259, 0.00544791948, -0.0108787073, -0.0144821005, 0.0212663021, 0.0113755297, -0.0392204523, -0.0299007408, -0.0226825327, -0.0177828316, -0.000153651039, -0.012186436, 0.00021272013, 0.0130772907, -0.00853164773, -0.00551073626, -0.0210721418, -0.01683487, 0.0109700765, -0.047238145, -0.0175315645, 0.00414875615, 0.0300606377, 0.0479234196, 0.0236190725, -0.0186165795, -0.0125404941, -0.00403168891, 0.0138653554, 0.0201241802, -0.020135602, -0.00847454183, -0.00257691159, 0.0152587434, -0.0403397307, -0.00507673, -0.0218145214, 0.00405738642, 0.00768076722, -0.0138996188, -0.00904560182, -0.0124833882, 0.0138767762, 0.0547304638, -0.00925118383, 0.00590476813, 0.0197015963, 0.0162295457, -0.0092055, -0.0119351698, 0.00965663698, 0.0196444895, -0.0181140471, 0.0431493483, 0.0310657043, 0.0188221615, -0.0069326777, -0.00500820298, -0.0476036221, 0.0186280012, 0.0178399384, 0.00689841388, 0.0273195468, 0.0187079497, 0.000354949938, 0.0326875187, -0.00428295555, 0.0364565179, -0.00636732718, 0.0178856235, -0.0161381774, -0.00657861959, -0.0218259413, 0.00729244575, -0.0109472349, 0.00292240339, 0.0356341898, -0.00949674, -0.0264515337, -0.0370275788, -0.0504817702, -0.00557926344, -0.0354971364, -0.0074694748, -0.00986221898, 0.0131001333, 0.00828038063, 0.00619029859, 0.0154871671, -0.0144478371, 0.00310371513, -0.011718167, -0.0208437182, -0.0203183405, -0.00842885673, 0.0340352207, 0.0294667352, -0.0300377961, 0.00570489699, 0.0137968278, 0.0147904735, -0.00549931498, 0.00827467069, -0.00553928921, 0.0292383097, 0.00982224476, 0.0132600302, 0.00686986092, -0.000678134616, 0.0320250876, 0.00619029859, 0.0107302312, -0.00795487594, -0.00509957224, 0.00102362642, -0.00182453904, -0.0194503292, -0.0127574969, -0.046826981, 0.0256520491, 0.00243129116, 0.0207637679, -0.00253836508, -0.0108158905, 0.0158298034, -0.00752087, -0.0162638109, 0.0240759216, 0.00720678642, -0.00500249211, -0.0096966112, -0.000206117242, -0.0333499461, -0.00525661418, 0.0176914614, -0.0185708962, 0.00874294, -0.00132843, -0.00355770835, 0.00578199, -0.0152930068, 0.00335212657, -0.0150417397, 0.00924547389, 0.00240702112, 0.00315796584, -0.00717823347, 0.034377858, -0.0126661276, -0.007846375, -0.024784036, 0.00595045276, 0.0118209571, 0.0183538925, 0.0171318222, -0.00215718197, -0.0262687951, -0.00148761319, 0.0274566, -0.00039189044, -0.047649309, -0.0408194214, -0.0199757051, 0.00852022599, 0.0254464671, -0.00536511559, 0.00728673534, 0.0418016464, 0.0203526057, 0.0109472349, -0.0370047353, -0.0282332432, 0.0111299744, 0.0191990621, 0.00808622, -0.0122549636, 0.00344920694, -0.000279998232, 0.0686643422, -0.00428581098, -0.0438574664, -0.00551644666, 0.00131772272, -0.0180569403, -0.00781211117, 0.0202383921, -0.0115925334, 0.0201584436, 0.0185137894, 0.00178170949, 0.0283017699, -0.006401591, 0.00905702356, -0.00782353245, -0.00228281529, -0.000540366222, -0.00964521617, -0.00288956729, 0.000195231391, -0.0154300611, 0.0215975177, -0.00346348342, 0.0283702984, 0.00355770835, -0.0186622646, -0.0186851081, 0.00881146733, -0.000975086237, 0.00938252825, -0.0157041699, 0.00908557605, 0.00106431451, 0.00168320152, 0.0402483605, 0.029786529, 0.0169719253, -0.0124377031, 0.0337611102, -0.022819588, -0.00845169928, 0.00258262223, 0.0131686609, 0.0082860915, -0.000196480585, -0.00187878986, -0.00584195135, -0.0157841183, -0.0229109563, -0.0147105251, -0.00838317163, 0.045593489, 0.00767505635, -0.0128260246, 0.0303804316, 0.0228310078, -0.0210721418, 0.0246469826, -0.0149161071, -0.0215518326, 0.00315511064, 0.00155043, 0.0188564267, -0.00656148791, 0.0259033162, -0.00461417064, 0.0163780227, -0.0110728675, 0.0194960143, 0.0105988877, 0.026999753, -0.0192790106, -0.00221857103, -0.0226482693, 0.021426199, -0.012392018, 0.0248982478, -0.00276107877, -0.00758939749, -0.0107530737, 0.00432007434, 0.0224426873, 0.0326875187, 0.0320479274, 0.00211006938, -0.00211292482, 0.0142536759, 0.000296237762, 0.0224426873, -0.00396887213, 0.0345605947, 0.000500748865, 0.0117866937, -0.000395102659, -0.0166521315, 0.0187878981, 0.0149161071, -0.0103476206, -0.013111555, -0.00281247427, -0.0199757051, 0.000645655557, 0.0208437182, -0.0042172838, -0.0399285667, 0.0220772084, -0.00748660648, -0.0170861371, -0.0124148605, 0.0375072695, 0.00636732718, 0.0248982478, -0.0411620587, -0.0127803395, -0.0207637679, -0.0113012921, 0.0157726984, -0.00227567717, 0.00066707033, -0.0144935213, 0.0218145214, 0.000588549476, -0.0140480939, 0.0073209987, -0.00665285764, -0.0041144928, 0.0357484035, 0.00223998586, 0.00158754888, 0.00533085223, 0.0160696488, 0.0165379196, -0.0107987588, -0.0110100508, -0.0273423884, 0.0167891867, -0.0171204, 0.00257976702, 0.0148247369, -0.0016275231, 0.0288271457, 0.00944534503, -0.00297522638, -0.0348118618, 0.0273195468, 0.022819588, -0.0278220791, -0.010221987, -0.00871438719, -0.00803482439, -0.0130544491, 0.0160582289, -0.00504246633, 0.0068298867, -0.0390605554, 0.0418701731, -0.00809193123, 0.0278220791, -0.000447925762, 0.016777765, 0.0215632543, 0.00195588311, -0.0181254689, -0.017600093, -0.00978227053, -0.0195074342, -0.0220772084, -0.00151045562, 0.0222142637, 0.0104504116, 0.00360910385, 0.0229680631, -0.00579341128, 0.00608179718, -0.0133285578, 0.0161495972, -0.00729815615, 0.00286386954, -0.0137283, -0.0288043041, -0.00571346283, 0.0321164578, 0.0248754062, -0.0148818428, -0.00412876904, -0.00401455723, 0.00669854274, 0.018845005, 0.00406309729, 0.0015047451, -0.00957097858, 0.0123463329, -0.0168462917, 0.0182282589, -0.0315225534, 0.000952243805, -0.0245099273, -0.0314997099, 0.00195445539, -0.0122778062, -0.0278677642, -0.0146191549, 0.00279677, -0.039334666, -0.00649867114, 0.00161039131, -0.0124491239, -0.00251409505, -0.00601326954, 0.0059675849, 0.0378499068, 0.0132600302, -0.0160810705, -0.0100449584, 0.0156242223, 0.00489113526, 0.020752348, 0.00247840374, 0.00881146733, -0.01109, -0.0267028, -0.0153729552, -0.0111927902, -2.89099498e-05, -0.021837363, 0.000690269691, -0.0129745, -0.000656363, -0.00967947952, -0.010633151, -0.00647011818, 0.0400884636, 0.0176914614, -0.00971945375, 0.00211006938, 0.0242129751, -0.0223398972, -0.0279362909, 0.0213576723, -0.00262402417, 0.0123805972, 0.0154186403, -0.00917694625, 0.00669283187, -5.95598503e-05, -0.020809453, 0.00357198506, -0.0270682797, 0.0041715987, -0.00537653686, -0.000964378822, -0.00602469081, -0.0105474917, 0.0129745, 0.0300377961, 0.00311513641, 0.0202612355, -0.00105146563, -0.0178056732, 0.0262459517, -0.00648725, 0.0109643666, 0.0101363286, 0.00745234266, 0.0209465083, -0.0133514, -0.0261317398, -0.00837746076, -0.0187993199, -0.0183196291, 0.00801769271, 0.0444513671, -0.000971517118, 0.00518237613, -0.0365250446, 0.0137968278, 0.00558782928, -0.0142765185, -0.00602469081, -0.0178056732, 0.00694980938, -0.00854306854, 0.000203797303, -0.0193018541, 0.00580197712, 0.00221143267, 0.0121293301, -0.00415446702, 0.0083888825, 0.0162295457, 0.00475979131, 0.0481518432, -0.0108273113, 0.0443371572, 0.0182168372, -0.010170592, 0.0235733874, -0.00543935364, -0.00158326596, -0.0196559113, -0.0147562101, 0.0311799161, 0.00611606054, 0.0078064003, 0.0110043408, -0.0230936967, -0.0018845005, 0.0222028419, 0.00357198506, 0.0168234501, -0.0273652319, -0.00145906024, -0.0187993199, 0.0104332799, 0.00168748456, 0.00987364072, -0.0172802974, -0.00707544247, -0.00107002503, -0.00894852169, -0.010427569, 0.0409336351, 0.0150531614, -0.00446855044, 0.0118894847, -0.0139110396, -0.0134313488, 0.00417445414, -0.00675564865, 0.0150074763, 0.00999356341, 0.00453136722, -0.00205296348, -0.00771503057, -0.00714968052, -0.00420015166, 0.0086687021, 0.0114954524, -0.0122092785, -0.0231508035, 0.0416645929, 0.0124377031, -0.0212091953, 0.0156470649, 0.0274794437, -0.00787492748, 0.0026825578, 0.00185023679, 0.0320022441, -0.0294438917, 0.000899420702, 0.0201241802, -0.00771503057, 0.0144706797, -0.0067328061, 0.00979940221, 0.00583338551, -0.0147333676, -0.0102790939, 0.0203640256, -0.0286215656, 0.0210607201, 0.0155899581, 0.0138082486, 0.00708115334, -0.020809453, -0.00111642375, 0.00600184826, 0.0152130583, -0.0211178269, -0.0179084651, 0.0196330678, 0.0107073886, -0.00436575944, -0.00666998932, -0.0118894847, 0.00954813603, -0.0136255091, -0.0308829658, -0.00294952886, -0.0107587846, -0.0047911997, 0.00998785254, -0.0208779816, 0.0247611944, -0.0106502827, 0.0141394641, -0.00386322592, -0.010324778, 0.0292383097, 0.0274109151, 0.0343093313, 0.0107188104, -0.0227967445, 0.0022485517, -0.00473123835, -0.0106617045, -0.0195988044, -0.0205010809, -0.00305517507, 0.0144364154, 0.0115354275, 0.00153758109, -0.0118780639, -0.0059219, -0.0342864878, -0.0189135317, 0.0134313488, -0.0432407185, -0.00203012093, -0.0259033162, -0.0104618333, -0.00313797873, -0.018639423, -0.0264515337, -0.015955437, 0.0237104427, -0.00158754888, 0.00239845505, 0.0132942945, -0.0191305354, -0.00614461349, -0.00242700824, 0.00884002075, -0.0314768702, 0.00565635692, -0.0083317766, 0.00708686374, 0.0151445307, -0.00960524194, -0.00864586, -0.00220143911, 0.0359768271, 0.0135912457, -0.0112270545, 0.0199414417, 0.0227739029, 0.00562494854, 0.00664714724, 0.00945105497, -0.00132700242, 0.00820043217, -0.017040452, -0.0159668587, -0.0058647939, -0.0162866525, -0.0276393406, -0.0205125026, 0.00179598609, 0.0150417397, 0.00492254365, -0.0059161894, -0.000616031757, 0.00712683797, -0.0156813283, 0.00796629768, -0.00977656, -0.00596187403, -0.0158869103, -0.00734384125, -0.00403454434, -0.0332357362, -0.00541365566, 0.0088742841, 0.0150188981, 0.017040452, -0.000298736151, 0.00515096774, 0.000778070244, 0.0152701642, 0.00282104, 0.014402152, -0.0062474045, -0.00603040168, -0.0309971776, -0.00979369227, -0.0213005655, 0.0342408, 0.00625882577, 0.000819472189, 0.0193932224, 0.00459703896, -0.00849167351, 0.00924547389, 0.0272053331, -0.0105246492, 0.0077036093, -0.00625882577, 0.00250267377, -0.00674422737, 0.00456848601, 0.011204212, -0.0322763547, -0.00144978042, 0.0135227181, -0.00174173526, 0.00931400061, 0.0188221615, 0.00986793, -0.0109700765, 0.00695552, -0.0188678466, -0.00464843446, -0.00549360458, 0.020341184, 0.0058590835, 0.00127560692, 0.0133399786, -0.00616174564, -0.0171775073, -0.0394717194, -0.0224997941, 0.00800627191, -0.00254835864, 0.0137511427, -0.00490826694, 0.00570775196, 0.00192161941, 0.000206831071, 0.0242358185, 0.000731671578, 0.00113426941, -0.00559639512, 0.00648153946, 0.0266799573, 0.015178795, 0.0152130583, -0.0189135317, 0.0031979403, 0.00987935066, 0.00809764117, -0.0158298034, -0.00648153946, -0.0275479704, -0.0053279968, 0.00773787312, -0.0186280012, -0.00148475799, -0.0116553502, -0.0120950667, 0.00228995364, -0.0223970022, 0.0104732541, -0.00460846024, 0.0133628212, -0.0043115085, 0.00179741369, 0.00560781639, -0.0103818839, 0.034377858, -0.0268170126, -0.0182282589, -0.00194446184, 0.0104447007, -0.0134199271, 0.0100106951, -0.0106674144, -0.0122549636, 0.00523377163, -0.00924547389, 0.0148818428, 0.0353829227, 0.00399457, 0.0162523892, 0.0147904735, -0.00709828502, 0.00808622, 0.0124719664, -0.0145163639, -0.0183424708, 0.0261317398, 0.0341722742, 0.00865728129, 0.0326875187, 0.0073666838, -0.0216546226, -0.00895994343, -0.0123463329, 0.00489113526, 0.0166863948, 0.00822327472, -0.00503675593, -0.00922263134, -0.0167092383, 0.00209722063, 0.0115468483, 0.0234134905, 0.00163608906, 0.0132257668, 0.00684130797, 0.00929115806, -0.02416729, -0.0240530781, -0.0139795672, -0.00113141409, -0.0136026666, 0.012905973, -0.00204297, -0.0226482693, 0.00401170179, 0.00345777278, 0.0290784128, 0.0338296369, -0.0106445728, -0.0503904, -0.00650438201, -0.0125290724, -0.0249667764, -0.00721249729, -0.00656719878, -0.0145620489, 0.00405453146, 0.0112727387, 0.00975371711, -0.0143450461, -0.00515667861, -0.00975371711, 0.0044142995, -0.0235962309, -0.00310086, -0.00695552, -0.014299361, 0.00589334685, 0.0200328119, 0.00943392329, -0.00352915539, -0.0387864448, -0.00396887213, 0.00659575174, 0.000844456081, -0.00500534754, -0.00122349767, 0.00903989188, -0.0326646753, -0.0074295, -0.00524804834, -0.00611606054, -0.00869725551, 0.00339495623, 0.00886286236, 0.00142051361, -0.0137397218, -0.0244642422, 0.000159986244, -0.0086801229, -0.00219001807, -0.00898849592, -0.00235990854, 0.00457134144, 0.0141623067, 0.0136597734, -0.000956526725, 0.00613319222, 0.0110614467, -0.0204668175, 0.00530515425, -0.000613890297, -0.00257405639, -0.018639423, 0.0242815036, 0.0285301954, -0.0121293301, -0.00060425367, 0.00811477285, -0.00728673534, 0.00293525215, 0.00399171468, -0.00329787587, -0.0162980743, 0.0345834382, -0.0181711521, -0.026017528, 0.0029580947, 0.00066457194, 0.0162523892, 0.00730386702, 0.00194160652, -0.0155785372, -0.0217574146, 0.0152930068, -0.00539081357, 0.0373930596, -0.0274566, -0.00389748951, -0.0138196703, -0.0164008643, -0.00021272013, 0.0348118618, 0.00342636439, -0.00937110651, -0.00763508212, -0.0113983722, 0.00994787831, -0.00911984, -0.0230708551, 0.0062474045, -0.000456848589, -0.0048483056, 0.0050910064, 0.00942250248, 0.00376329035, 0.00709828502, -0.0053279968, -0.0149960555, -0.00977656, -0.0062988, -0.00519094197, -0.0115582692, 0.00965663698, -0.00840030331, 0.0111813694, -0.0201127604, -0.00585337263, -0.0072696032, 0.000475051173, 0.0218031, 0.0185708962, 0.0265200604, 0.00758939749, 0.0103647523, -0.00252123317, -0.00438003615, 0.0047026854, -0.00270682783, 0.00789777, 0.00616745604, -0.0122663844, -0.000278392108, -0.0237104427, -0.00644727563, 0.0237789694, 0.0126204425, -0.00372617133, -2.22289855e-05, -0.0111870803, 0.0094053708, 0.0214376207, -0.0113012921, -0.00285815913, 0.00406024186, -0.00277392752, -0.00734384125, -0.0145163639, -0.00327503332, -0.00836604, 0.00370332901, -0.00218859036, -0.0103019355, 0.0121750152, -0.00494824117, 0.00341779855, -0.00113498326, -0.00243842928, -0.000626382243, -0.00580197712, 0.00343493046, 0.00296380534, 0.0125747574, 0.0103533315, 0.0194389075, 0.003252191, 0.0206724, -0.00846883096, -0.00728673534, 0.00821185391, 0.00282389531, -0.00252266089, -0.0187193714, -0.00627024705, 0.00677278033, -0.010016406, 0.0141737275, -0.00815474708, -0.00245127827, 0.0108501539, -0.0101477494, 0.00311799161, -0.010016406, 0.000700977049, 0.00741236843, -0.0217117295, -0.0212320387, 0.016161019, -0.0162181258, 0.0169947688, -0.00633877423, 0.00504532177, 0.015898332, 0.0157384351, 0.00222142623, 0.00863443874, 0.0256977342, 0.0125062307, 0.0212663021, 0.000685986714, 0.0136026666, 0.0062988, 0.00576771377, -0.0183196291, 0.00559068471, -0.00998785254, 0.00981653389, 0.00466842158, -0.0101648811, 0.0150074763, 0.0108216014, 0.00927402638, -0.00203440385, 0.00234705978, -0.013214346, -0.00696123065, -0.0100049842, -0.00666998932, 0.000581411237, -0.00643585483, 0.0131458184, -0.0108901281, 0.0377128534, -0.00227424945, -0.0123234913, 0.0222942121, -0.00390034495, 0.00495966244, 0.000450067251, 0.00210150355, 0.0138310911, 0.0236419141, 0.00575914746, -0.0137968278, -0.0206952412, -0.00879433565, -0.0142422551, 0.00198015315, -0.0308372807, -0.000114569062, -0.000130897824, -0.00473409379, -0.0394260325, 0.0067784912, -0.0114669, 0.0104675433, 0.0125976, 0.015178795, 0.0324362516, 0.0230365898, -0.0172802974, -0.000583195768, -0.00644727563, -0.0148133161, 0.00260403706, -0.0149960555, -0.0102790939, 0.00633877423, 0.020603871, -0.00261688582, -0.0222599488, -0.014402152, 0.0246241391, 0.00408594, 0.0150988465, -0.019724438, -0.00478263386, -0.012803182, 0.0055706976, 0.00899991766, 0.00541365566, 0.0202155504, 0.0114269257, -0.0298550557, -0.0204325542, -0.0148018943, -0.0140709365, 0.0243043453, 0.0113469772, 0.019518856, -0.0210607201, -0.0128602879, -0.0114783207, 0.00960524194, 0.0144249946, 0.011718167, 0.0211064052, 0.00534227351, 0.00946818758, 0.00099792867, 0.0173602458, 0.0217802562, -0.0275251288, -0.0101820128, -0.00105075177, 0.0185594745, 0.0103476206, 0.0116839027, 0.014402152, 0.00424583675, 0.0292154681, 0.0122778062, -0.00490541197, 0.0175429862, -0.00669283187, -0.0197701231, -0.0284388252, 0.00845740922, 0.00806337781, -0.00231707888, 0.00802911445, -0.0116781918, 0.00315511064, -0.00436004903, -0.011718167, 0.0188107416, 0.000707044615, 0.0194046441, 0.00637303805, -0.01156398, -0.00454564346, -0.0306316987, 0.0110671576, -0.00568776485, -0.00397172756, -0.00303518795, 0.0173488259, 0.000989362714, 0.00452565635, -0.0176914614, 0.0045028138, 0.00511670439, -0.00472838292, 0.00749231689, -0.00436575944, -0.0152359009, -0.00405453146, -0.00686986092, -0.014973213, 0.014093779, -0.000748803432, -0.016161019, -0.0062988, -0.00396601669, -0.0125633366, -0.0127574969, -0.00997072086, 0.00304946443, -0.0143450461, -0.036822, 0.00298093702, -0.0129288156, -0.0333042629, 0.0171432439, -2.52515929e-05, -0.0160468072, 0.0352915525, 0.000871581491, -0.0158754885, 4.14911337e-05, 0.00241558696, 0.00583909592, -0.00708686374, 0.00551073626, -0.00409450568, 0.0134313488, -0.00608179718, 0.00962237362, 0.0128146028, 0.0107702054, -0.011101421, -0.0118552214, 0.00136769051, 0.0037347374, 0.00482260808, 0.0196787529, -0.00431721937, 0.00360053801, -0.0294438917, -0.00668712147, 0.0149617912, -0.0109814983, 0.01993002, 0.00422870461, -0.00202441029, 0.0151331099, -0.0157612767, -0.0124833882, -0.00226140046, -0.0139567247, 0.00493682036, 0.0207751896, -0.000950102345, -0.0094053708, 0.00813190546, -0.0198043864, 0.0057620029, 0.0121407518, -0.0081376154, -0.00852593686, 0.00938823912, -0.0120493816, 0.0197587013, 0.00713254884, -0.0146191549, 0.00426582387, 0.008623017, 0.0123349121, 0.00708686374, -0.0017988414, -0.0107245212, 0.00840601418, -0.00451423507, -0.00898278598, 0.0241216067, -0.00235277019, -0.0177714098, 0.0202041287, 0.0109472349, -0.0139110396, -0.00388035784, -0.00181882852, -0.00888570491, 0.0105189392, 0.0111985011, -0.00360910385, 0.0354514495, -0.02416729, -0.00256977347, -0.00342636439, 0.000398314878, -0.0376214832, 0.00567063317, -0.0138996188, 0.0222256836, 0.000617816346, -0.0193703808, -0.0183082074, 0.0156242223, -0.0114954524, 0.00480833137, 0.0131229758, -0.00701833656, 0.0016789186, -0.00102291256, 0.00806908868, -0.01156398, -0.00174601818, -0.0131915035, 0.00172888639, 0.0068812822, -0.0237561278, 0.0438574664, 0.00629308959, -0.017451616, 0.00797200762, 0.00965663698, -0.0161267556, -0.00982795563, -0.0110728675, -0.00394602958, 0.0245556124, 0.00447426084, 0.00301805604, -0.00610463927, 0.00183881563, 0.0074694748, 0.00628166832, 0.0216432028, -0.0311570745, -0.00628737872, 0.00854877941, -0.00722962897, 0.0109415241, -0.00365478871, -0.00246269954, -0.0123006487, 0.0301063228, -0.00789777, 0.0102448296, 0.00235848082, -0.0211977754, 0.00971374288, -0.00289813336, 0.010427569, -0.00575058162, 0.000476478803, 0.000943677907, -0.00155471289, 0.0110957101, 0.0164465494, 0.0123006487, 0.0133514, 0.00384609425, 0.00235848082, 0.0164008643, -0.000257691165, -0.0170747172, 0.00722391857, -0.0210607201, -0.000599613762, 0.036707785, 0.00705260038, -0.00656148791, -0.021163512, -0.0216546226, -0.0044142995, 0.00150331738, -0.0135112973, 0.00230423012, -0.0206152927, 0.0108444439, -0.00785208493, 0.00710970629, -0.0198272299, -0.000551787438, -0.00512812566, 0.0273195468, 0.0170975588, 0.00936539657, 0.0254921522, 0.00459418353, 0.00173031411, 0.0054307878, -0.0150988465, -0.00125490595, -0.000252872851, 0.0199528616, 0.0280961879, -0.000401884, -0.011615376, 0.000686700572, -0.00493110949, 0.00713254884, -0.0292839948, 0.00505103217, 0.0129745, 0.0175886713, -0.0152701642, -0.0315453969, 0.0121179093, -0.0220886301, 0.000523591298, -0.00367763126, 0.0165836047, -0.0129745, 0.0308601223, 0.00948531926, 0.000868012314, -0.0101249069, 0.0244642422, 0.00633877423, -0.0068812822, -0.0155671155, -0.0192790106, 0.0320707709, 0.00973087549, -0.00893710088, -0.0330529958, 0.00411734777, -0.0226939544, 0.0143107828, -0.00779497903, 0.0206838194, -0.00502819, 0.00442286534, 0.0181140471, 0.0145963123, 0.00886286236, 0.00714968052, -0.00223855814, 0.0278906077, -0.00393746374, -9.0287831e-06, 0.0064529865, 0.0104504116, 0.0117524303, 0.0055250125, -0.020603871, -0.0150988465, 0.00647582905, -0.00302947732, -0.0329844691, -0.0144364154, -0.00274394685, 0.0171089806, -0.0162295457, 0.0170632955, 0.00803482439, -0.00560210599, -0.00372902676, 0.00412591407, 0.00331786298, 0.00571631826, -0.0291469414, -0.0269312244, -0.0411392152, 0.0243043453, 0.0117524303, -0.00632735295, 0.0274337586, -0.00518523157, 0.0145163639, 0.00880004652, -0.00541651109, 0.019724438, -0.0074180793, 0.00846883096, 0.000340673432, 0.024372872, 0.00641872268, -0.016366601, 0.0122435428, -0.00211006938, -0.0307002254, -0.0113698198, -0.0248297211, 0.0170176104, 0.0136711942, -0.0138767762, -0.00733813038, 0.00264972192, -0.00896565337, 0.0294667352, 0.000369048, -0.0111813694, -0.00701833656, -0.01683487, 0.0107302312, -0.0216660444, -0.0202155504, -0.0206152927, -0.00447711628, 0.0157841183, -0.00163037842, -0.0183538925, -0.0165379196, -0.00975942798, 0.0115411375, 0.0108273113, -0.00221857103, 0.0204668175, -0.00354343187, -0.0174973011, -0.00909699779, -0.0077492944, 0.00307516218, 0.0324134082, 0.00631022127, 0.00879433565, 0.00314368936, 0.00844598841, 0.0198614933, -0.0116953244, -0.0151559524, -0.0256977342, 0.0188906901, -0.0185023677, -0.00840030331, -0.0131001333, 0.00317509775, 0.0152359009, 0.0219858382, 0.00840030331, -0.0123234913, -0.0046570003, 0.00656148791, -0.0286444072, -0.0151216881, -0.0175315645, 0.00363765704, 0.0218259413, -0.018845005, -0.000314618781, -0.0127346544, 0.00693838811, -0.0122549636, 0.000481118681, 0.0291240979, -0.000642443367, -0.0091084186, 0.000646012486, 0.00402597804, -0.00632735295, -0.0200213902, 0.00172460347, -0.00445427373, -0.00437718071, -0.0139567247, 0.00161467423, 0.00727531407, 0.00489113526, 0.0019387512, -0.00923976302, -0.0118438, 0.0379184335, -0.00623598322, -0.00943963416, 0.0255835224, 0.00886286236, -0.00729244575, -0.00692696683, -0.0161267556, -0.00987935066, -0.0292839948, 0.0169148184, -0.00209436519, -0.00154471933, -0.030197693, -0.0213119872, 0.0112498971, 0.00599042745, -0.0024755483, 0.0141166216, 0.0103019355, 0.0254693087, 0.00363765704, 0.0102848038, -0.014607734, -0.0176686198, 0.00150760042, -0.00808050949, 0.00155185757, -0.0155100096, -0.0144249946, -0.00251695025, -0.0016946228, -0.017657198, -0.0113869514, -0.00550788082, -0.00142551039, 0.00506530888, -0.0059161894, 0.00422584964, -0.00607037591, -0.0117295878, 0.0197358597, 0.00697836233, -0.000182471747, 0.0129745, -0.00932542235, 0.0283017699, 0.0130887125, -0.0041144928, 0.0175315645, 0.00842885673, 0.0260403696, -0.0274566, -0.00907415524, -0.0107759163, 0.00994216744, -0.0031979403, 0.00684130797, 0.0237332843, 0.00333213946, -0.0155671155, 0.029169783, -0.0106617045, -0.00195873831, -0.00214861613, 0.00929686893, -0.0250124615, -0.0045028138, -0.0264515337, 0.0239160247, 0.00233849371, 0.00939966, -0.00550788082, 0.0012806037, 0.000406166946, -0.0247383509, -0.0133970855, 0.00990219321, 0.00115211506, -0.00437432528, 0.00208722707, -0.0113127138, 0.00857162196, 0.014870422, 0.0135341398, -0.00172603107, -0.0118095363, 0.0208437182, 0.0146419974, -0.0379184335, -0.00599613786, 0.0205581877, -0.0214947257, 0.028964201, -0.00544791948, -0.00283531658, -0.00207009516, -0.0237561278, -0.0125633366, -0.0165950246, -0.005085296, -0.00288100145, 0.0266799573, -0.00251552253, 0.00883431, -0.00609892886, 0.00649296073, 0.02218, 0.0291469414, 0.0274109151, 0.0262916368, -0.0138653554, -0.0125519149, 0.00659575174, -0.0162752308, -0.0150531614, 0.00369190774, 0.0235962309, -0.0126432851, -0.0198500715, 0.00689270301, -0.0211520903, 0.0214947257, -0.00366335479, 0.0117524303, 0.00189877697, 0.0148932645, -0.0106274402, 0.00888570491, 0.000932970492, -0.0017488735, 0.000707044615, 0.00823469553, -0.0196330678, 0.00558782928, 0.00399457, 0.000123581121, -0.0213234089, -0.00599613786, 0.00757797621, 0.0314997099, 0.0010364753, 0.00477121258, 0.00240416569, -0.00185023679, -0.0018859281, 0.00985650811, -0.00170461636, 0.000656006043, 0.0259718429, 0.00473980419, -0.00102576788, 0.00308087282, -0.0244870856, -0.0225226358, -0.00874865055, -0.00742378971, -0.0242358185, 0.0375757962, -0.00449424796, 0.000722748751, -0.0151331099, -0.00295523927, -0.00430579809, 0.0183995776, -0.000818044529, -0.000471482024, 0.0087714931, 0.0139453039, -0.01466484, -0.0119694332, -0.00359482737, -0.0229680631, 0.0275936555, 0.016572183, -0.00371475, 0.0163780227, 0.011409794, 0.0099764308, 0.0219858382, 0.00822327472, -0.00925118383, -0.00130558759, 0.0077036093, -0.0190049019, 0.00829180237, -0.00855449, -0.0112784496, -0.0172346141, -0.0124833882, 0.00511384895, 0.0270454362, 0.00814903714, 0.0129630789, 0.0216660444, -0.000536083302, -0.000927973713, -0.0197701231, 0.0191419572, 0.0019387512, -0.00255264156, -0.0059161894, 0.0227282178, 0.00153758109, 0.0314997099, -0.00820614304, 0.00705831079, 0.00436004903, 0.0238931812, -0.00425440259, 0.024372872, -0.0021785968, 0.00534227351, 0.00402597804, 0.0213119872, 0.00458561769, 0.0131572392, 0.00654435623, -0.0139795672, -0.00772074144, -0.0170861371, -0.0251952, -0.00977656, -0.00284245494, 0.00244128471, -0.00739523675, -0.00129273871, -0.0182625223, 0.00178884785, -0.00999927334, 0.000409022265, 0.00535654975, -0.0170176104, 0.00125490595, -0.00903418101, -0.0144935213, -0.0010364753, -0.00424012588, 0.00549931498, 0.0303347465, -0.010376174, 0.00893139, -0.0115696909, 0.00656719878, -0.0134884547, 0.00285958662, -0.0107016787, 0.00999927334, 0.000141248311, 0.00283531658, -0.0157726984, -0.0180455204, -0.0107873371, -0.0226825327, -0.0193932224, -0.00674993824, 0.0142536759, 0.0100049842, 0.0085373586, -0.0378499068, -0.0176457763, 0.00195873831, 0.00699549401, -0.0117752729, -0.00366906519, 0.0086801229, 0.0160353854, -0.0299235824, -0.00490826694, 0.00547076203, 0.0147447884, -0.000573202211, 0.00263687293, -0.013008764, 0.00257405639, 0.0137625644, 0.00178884785, -0.0175886713, 0.0106217302, 0.000678491546, 0.0207409263, 0.0159782805, 0.0254693087, 0.00954813603, -0.00906844437, -0.0135341398, 0.0047911997, -0.011461189, -0.0112213437, -6.84269071e-06, 0.00941108074, 0.0158754885, 0.0139795672, 0.0202155504, -0.0232421719, -0.0078064003, -0.00238132337, -0.00486829272, -0.0062988, 0.0191076919, -0.00861159619, -0.00351773412, 0.00820614304, -0.021015035, -0.006401591, 0.00358626153, -0.00981082395, 0.00241130404, 0.00482260808, -0.0114669, 0.0217117295, -0.012083645, -0.0214490425, 0.0204325542, -0.0241901334, 0.00534512848, -0.00533656264, 0.00311799161, 0.0124148605, 0.00185166451, -5.46076844e-05, -0.00249553542, 0.0254693087, 0.00124491239, 0.0232650153, 0.00449424796, 0.0110957101, 0.0171775073, 0.012392018, -0.0175429862, -0.0097879814, -0.024372872, 0.0178742018, -0.0571060739, 0.0123577546, -0.00128345902, 0.0119580124, 0.0166863948, -0.00103576144, -0.00388606847, 0.00217716908, 0.0199757051, -0.00383181754, 0.00200727861, 0.00448568212, 0.0108044697, 0.029786529, -0.0318880305, -0.00644156523, 0.000288742594, -0.0261088982, 0.0166635532, -0.00362052512, -0.0291926246, 0.0159325954, -0.0136597734, -0.00530800968, -0.0202383921, 0.0246698242, 0.0103133572, 0.0098336665, -0.00104432739, 0.0227282178, 0.000708829146, 0.00682417583, -0.0242129751, -0.00328074396, -0.0135227181, -0.00708686374, -0.0144478371, 0.00139338826, -0.00858304277, 0.00845740922, -0.00250410149, -0.0207751896, 0.0145163639, -0.000812333892, 0.0219287332, -0.0102562513, -0.000223427516, -0.00194160652, -0.0192790106, -0.013990988, -0.00154900225, -0.0025968987, -0.0191762205, -0.0110443151, 0.0292383097, 0.00627024705, 0.00301520084, 0.0219058897, -0.00638445932, -0.00019612367, -0.0138196703, -0.0407508947, -0.0138196703, 0.00210150355, -0.00768647762, 0.0125176515, 0.0139567247, 0.00409450568, 0.0115297167, 0.00513383606, -0.00264258357, 0.00820043217, -0.00748089561, -0.00203012093, -0.0122321211, -0.00912555, -0.0227053761, -0.00336640305, 0.026428692, -0.01419657, 0.0180455204, -0.0013926744, -0.0123577546, -0.00467698742, 0.00858304277, -0.00118709251, -0.0121521726, -0.0119580124, -0.00504817721, -0.0163894426, -0.0183196291, 0.00630451087, 0.0113926623, 0.0272053331, 0.0192447472, 0.0132828727, 0.0282332432, -0.00870867632, -0.00289242272, -0.0193818025, 0.0294210501, -0.00765792467, 0.00820043217, -0.0133856637, -0.0166978166, -0.0164693911, -0.00301234541, -0.015281586, -0.00490541197, -0.0178170949, 0.00827467069, -0.0135798249, -0.0276850257, 0.00903989188, -0.015076004, 0.0140366731, -0.0148361586, -0.0127689186, 0.00778355775, 0.0403854176, 0.00174601818, -0.00304946443, -0.0151102673, 0.00658433046, 0.0298550557, 0.00141052, -0.0112955812, -0.0086687021, 0.0140709365, -0.00808622, -0.0258576311, -0.00686415, 0.00402597804, -0.00878862478, 0.00326932268, -0.00774358353, 0.00545934075, -0.0236876, 0.0035834061, 0.00583909592, 0.00962237362, 0.0204553958, -0.00360053801, -0.0140252523, -0.0184338409, -0.01786278, -0.0220657866, 0.0377128534, -0.00332357362, 0.00452851178, -0.0259033162, 0.00545934075, -0.0114040831, 0.00457705185, 0.00214433321, 0.00346062821, 0.00361767, -0.00247983122, -0.0116724819, 0.0253094118, -0.00724676065, 0.00661288342, 0.00535654975, 0.000131522422, 0.0165950246, 0.0207751896, 0.0108787073, -0.00798342936, -0.0237789694, 0.00424583675, 0.00440002326, 0.00191876409, 0.00528802257, -0.0197587013, -0.0254921522, -0.0013833947, 0.0156470649, 0.00898278598, -0.00423441548, -0.00710399589, 0.0292154681, -0.00398314884, 0.00321507198, 0.00845740922, 0.020809453, 0.00455135433, -0.0112384753, -0.0213119872, -0.0274794437, -0.0209236667, -0.000354057673, 0.0283702984, 0.00176172238, -0.0200556535, 0.0138196703, 0.0128374454, -0.00417730957, -0.0259946845, 0.00355485315, 0.00599613786, 0.0182282589, 0.0307915956, 0.0140709365, -0.00918836705, 0.00361481449, -0.00803482439, 0.00222142623, 0.0114383465, -0.00428866642, -0.00165464857, -0.00244842307, -0.00740094716, -0.0219058897, 0.00556213176, -0.00786921754, 0.00104646885, 0.0101991445, 0.00129844935, -0.00653293496, -0.00918265712, 0.00723534, 0.0115982434, -0.0272510182, -0.00110000581, -0.0309058074, 0.0160125438, -0.0139453039, -0.0135684032, -0.0128488671, 0.00760081876, 0.00287386309, -0.0040174122, 0.000504318043, 0.0280276611, -0.0032007955, 0.0166863948, 0.00880575646, 0.00147333671, 0.00504246633, 0.00478548929, 0.00649296073, 0.0140595157, -0.0105703343, -0.0181368887, -0.0108101796, -0.00637303805, 0.00711541669, -0.0255378373, 0.0152701642, -0.0272510182, 0.0150303189, 0.00749231689, -0.000355128403, 0.0221114717, 0.011204212, -0.0115811117, 0.00610463927, -0.00652722456, -0.006401591, -0.0161381774, 0.0128488671, 0.013317137, 0.0113355555, -0.0114326365, 0.00171032699, -0.00694980938, -0.00451994594, -0.00788063835, -0.00414875615, -0.0068355971, 0.0183196291, -7.42379e-05, -0.00755513366, 0.00673851697, -0.000548218319, 0.024578454, 0.0178285167, -0.00104004436, -0.0169148184, 0.0249667764, -0.0409564786, -0.00845169928, 0.0117295878, 0.0141508849, -0.0123691754, -0.0129973423, 0.0229794849, -0.0131001333, 0.0129973423, -0.0320936143, -0.0193018541, 0.00812048372, -0.0153158493, -0.0165607613, 0.0034434963, -0.00529944384, 0.0164122861, -0.0350631289, 0.0155556947, 3.13191122e-05, 0.0015204493, 0.010427569, 0.0154529037, -0.000819472189, 0.014767631, -0.00937110651, 0.0126775485, -0.00156327884, 0.0113869514, 0.00695552, 0.0176800415, 0.0208779816, 0.00899991766, 0.00943392329, 0.000561424124, 0.0174973011, -0.0323448814, -0.0110557359, -0.0302205347, -0.00623598322, 0.00324362493, -0.00670996355, -0.00844598841, 0.00129773549, -0.00362052512, -4.13126763e-05, -0.0055706976, 0.00856591109, 0.0126775485, 0.00868583377, -0.00795487594, 0.0107130995, -0.00419158582, -0.0108044697, 0.0182282589, -0.00111071311, 0.0103704631, -0.0148018943, -0.0262687951, 0.0186622646, -0.00713825924, -0.0220772084, 0.000163376913, 0.0238246545, -0.000913697178, -0.000821613648, 0.00452280091, 0.00578199, -0.010690257, 0.0124034397, -0.0189363752]
23 Dec, 2024
C Pointers 23 Dec, 2024 A pointer is a variable that stores the memory address of another variable. Instead of holding a direct value, it holds the address where the value is stored in memory. There are 2 important operators that we will use in pointers concepts i.e. Dereferencing operator(*) used to declare pointer variable and access the value stored in the address.Address operator(&) used to returns the address of a variable or to access the address of a variable to a pointer.Example 1: C #include <stdio.h> int main() { // taking an integer variable int m = 100; // pointer variable ptr that stores // the address of variable m int *ptr = &m; // printing the value of variable m printf("The Value of Variable m is: %d\n", m); // printing the memory address of variable m // in hexadecimal format printf("The Memory Address of Variable m is: %p\n", &m); // printing the value of ptr i.e. // printing the memory address of variable m // in hexadecimal format using pointer variable printf("The Memory Address of Variable m is using ptr: %p\n", ptr); return 0; } OutputThe Value of Variable m is: 100 The Memory Address of Variable m is: 0x7ffee1eea79c The Memory Address of Variable m is using ptr: 0x7ffee1eea79c Important Points:%p format specifier is used to print the address stored in pointer variables.Printing a pointer with %d format specifier may result in a warning or undefined behaviour because the size of a pointer (usually 4 or 8 bytes) may not match that of an integer.The memory address format will always be in hexadecimal format(starting with 0x).C does not use the term “reference” explicitly (unlike C++), “referencing” in C usually refers to obtaining the address of a variable using the address operator (&).Pointers are essential for dynamic memory allocation, providing control over memory usage with functions like malloc, calloc, and free.Example 2: C #include <stdio.h> int main() { // An integer variable int a = 10; // Create a pointer to integer (declaration) int * ptr; // Store the address of a inside pointer (initialization) ptr = &a; // Print the content of ptr printf("ptr = %p\n", ptr); // Get the value pointed by ptr (dereferencing) printf("*ptr = %d", *ptr); return 0; } Output ptr = 0x7fffa0757dd4*ptr = 10The above demonstration can be understood by dividing it into three steps: A. Pointer Declaration To declare a pointer, we use the (*) dereference operator before its name. In pointer declaration, we only declare the pointer but do not initialize it. B. Pointer Initialization Pointer initialization is the process where we assign some initial value to the pointer variable. We use the (&) addressof operator to get the memory address of a variable and then store it in the pointer variable. Note: We can also declare and initialize the pointer in a single step. This is called pointer definition. C. Pointer Dereferencing Dereferencing a pointer is the process of accessing the value stored in the memory address specified in the pointer. We use the same (*) dereferencing operator that we used in the pointer declaration. Note: It is recommended that the pointers should always be initialized to some value before starting using it. Otherwise, it may lead to number of errors. Example 3: C language stores provide a way to store the string as a pointer C #include <stdio.h> int main() { // Storing string as pointer char *s = "Geeks"; printf("%s", s); return 0; } OutputGeeksTypes of Pointers in CPointers in C can be classified into many different types depending on the data it is pointing to: 1. Integer Pointers As the name suggests, these are the pointers that point to the integer values. These pointers are pronounced as Pointer to Integer. Similarly, a pointer can point to any primitive data type and is named accordingly. Similarly, a pointer can point to any primitive data type. It can point also point to derived data types such as arrays and user-defined data types such as structures. 2. Array Pointer Pointers and Array are closely related to each other. Even the array name is the pointer to its first element. They are also known as Pointer to Arrays. 3. Structure Pointer The pointer pointing to the structure type is called Structure Pointer or Pointer to Structure. It can be declared in the same way as we declare the other primitive data types. 4. Function Pointers Function pointers point to the functions. They are different from the rest of the pointers in the sense that instead of pointing to the data, they point to the code. 5. Double Pointers In C language, we can define a pointer that stores the memory address of another pointer. Such pointers are called double-pointers or pointers-to-pointer. Instead of pointing to a data value, they point to another pointer. In C, we can create multi-level pointers with any number of levels such as – ***ptr3, ****ptr4, ******ptr5 and so on. 6. NULL Pointer The Null Pointers are those pointers that do not point to any memory location. They can be created by assigning a NULL value to the pointer. A pointer of any type can be assigned the NULL value. 7. Void Pointer The Void pointers in C are the pointers of type void. It means that they do not have any associated data type. They are also called generic pointers as they can point to any type and can be typecasted to any type. 8. Wild Pointers The Wild Pointers are pointers that have not been initialized with something yet. These types of C-pointers can cause problems in our programs and can eventually cause them to crash. If values are updated using wild pointers, they could cause data abort or data corruption. 9. Constant Pointers In constant pointers, the memory address stored inside the pointer is constant and cannot be modified once it is defined. It will always point to the same memory address. 10. Pointer to Constant The pointers pointing to a constant value that cannot be modified are called pointers to a constant. Here we can only access the data pointed by the pointer, but cannot modify it. Although, we can change the address stored in the pointer to constant. Other Types of Pointers in CThere are also the following types of pointers available to use in C apart from those specified above: Far pointer: A far pointer is typically 32-bit that can access memory outside the current segment.Dangling pointer: A pointer pointing to a memory location that has been deleted (or freed) is called a dangling pointer.Huge pointer: A huge pointer is 32-bit long containing segment address and offset address.Complex pointer: Pointers with multiple levels of indirection.Near pointer: Near pointer is used to store 16-bit addresses means within the current segment on a 16-bit machine.Normalized pointer: It is a 32-bit pointer, which has as much of its value in the segment register as possible.File Pointer: The pointer to a FILE data type is called a stream pointer or a file pointer.Size of Pointers in CAs pointers in C store the memory addresses, their size is independent of the type of data they are pointing to. This size of pointers in C only depends on the system architecture. The size of the pointers in C is equal for every pointer type. The size of the pointer does not depend on the type it is pointing to. It only depends on the operating system and CPU architecture. The size of pointers in C is 8 bytes for a 64-bit System4 bytes for a 32-bit SystemThe reason for the same size is that the pointers store the memory addresses, no matter what type they are. As the space required to store the addresses of the different memory locations is the same, the memory required by one pointer type will be equal to the memory required by other pointer types. C Pointer ArithmeticThe Pointer Arithmetic refers to the legal or valid arithmetic operations that can be performed on a pointer. It is slightly different from the ones that we generally use for mathematical calculations as only a limited set of operations can be performed on pointers. These operations include: Increment/Decrement by 1Addition/Subtraction of IntegerSubtracting Two Pointers of Same TypeComparing/Assigning Two Pointers of Same TypeComparing/Assigning with NULLC Pointers and ArraysIn C programming language, pointers and arrays are closely related. An array name acts like a pointer constant. The value of this pointer constant is the address of the first element. For example, if we have an array named val, then val and &val[0] can be used interchangeably. If we assign this value to a non-constant pointer to array of the same type, then we can access the elements of the array using this pointer. Not only that, as the array elements are stored continuously, we can use pointer arithmetic operations such as increment, decrement, addition, and subtraction of integers on pointer to move between array elements. This concept is not limited to the one-dimensional array, we can refer to a multidimensional array element as well using pointers. Uses of Pointers in CThe C pointer is a very powerful tool that is widely used in C programming to perform various useful operations. It is used to achieve the following functionalities in C: Pass Arguments by PointersAccessing Array ElementsReturn Multiple Values from FunctionDynamic Memory AllocationImplementing Data StructuresIn System-Level Programming where memory addresses are useful.To use in Control Tables.Advantages of PointersFollowing are the major advantages of pointers in C: Pointers are used for dynamic memory allocation and deallocation.An Array or a structure can be accessed efficiently with pointersPointers are useful for accessing memory locations.Pointers are used to form complex data structures such as linked lists, graphs, trees, etc.Pointers reduce the length of the program and its execution time as well.Disadvantages of PointersPointers are vulnerable to errors and have following disadvantages: Memory corruption can occur if an incorrect value is provided to pointers.Pointers are a little bit complex to understand.Pointers are majorly responsible for memory leaks in C.Pointers are comparatively slower than variables in C.Uninitialized pointers might cause a segmentation fault.ConclusionIn conclusion, pointers in C are very capable tools and provide C language with its distinguishing features, such as low-level memory access, referencing, etc. But as powerful as they are, they should be used with responsibility as they are one of the most vulnerable parts of the language. FAQs on Pointers in CWhat is the difference between a constant pointer and a pointer to a constant?A constant pointer points to the fixed memory location, i.e. we cannot change the memory address stored inside the constant pointer.On the other hand, the pointer to a constant point to the memory with a constant value. What is pointer to pointer?A pointer to a pointer (also known as a double pointer) stores the address of another pointer. Does pointer size depends on its type?No, the pointer size does not depend upon its type. It only depends on the operating system and CPU architecture. What are the differences between an array and a pointer?The following table list the differences between an array and a pointer: Pointer Array A pointer is a derived data type that can store the address of other variables.An array is a homogeneous collection of items of any type such as int, char, etc.Pointers are allocated at run time.Arrays are allocated at runtime.The pointer is a single variable.An array is a collection of variables of the same type.Dynamic in NatureStatic in Nature.Why do we need to specify the type in the pointer declaration?Type specification in pointer declaration helps the compiler in dereferencing and pointer arithmetic operations. Quiz:Quiz on Pointer BasicsQuiz on Advanced Pointer
Data Science & ML/AI ML DS - How To Get Started?/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/Transformers in Machine Learning/Difference Between Encoder and Decoder/Camera Calibration with Python – OpenCV/NumPy Introduction/How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?/Ordinary Least Squares (OLS) using statsmodels/Stacking in Machine Learning/ML | Naive Bayes Scratch Implementation using Python/Applying Multinomial Naive Bayes to NLP Problems/Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn/Gaussian Discriminant Analysis/Quadratic Discriminant Analysis/Basic Understanding of Bayesian Belief Networks/Hidden Markov Model in Machine learning/Components of Time Series Data/Pearson Correlation Coefficient/Differential Equations/Logarithmic Differentiation/Change of base rule for Logarithm/Properties of Logarithms/Division Property of Equality/Divisibility Rule of 23/Divisibility Rule of 17/Practice Questions on Divisibility Rules/GCD Practice Questions Medium Level/Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts/GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities/Score High on GRE: How to Get Good Score in GRE/Latest GRE Verbal Reasoning Topics and Format 2024/Updated 300+ GRE Vocabulary List of Words With Usage and Definition/GRE | List of words to enhance your vocabulary with alphabet ‘B’/GRE | List of words to enhance your vocabulary with root alphabet ‘E’/GRE | List of words to enhance your vocabulary with root alphabet ‘H’/ACID Properties in DBMS/File Organization in DBMS | Set 3/Last Minute Notes – DBMS/Commonly asked DBMS interview questions/Commonly asked DBMS Interview Questions | Set 2/Database Management System – GATE CSE Previous Year Questions/GATE CSE and IT Previous Years Papers PDF Download Link/Theory of Computation – GATE CSE Previous Year Questions/Automata Theory | Set 6/Data Structures and Algorithms | Set 25/Graph Data Structure Notes for GATE Exam [2024]/Binary Heap Notes for GATE Exam [2024]/Searching and Sorting Algorithm Notes for GATE Exam [2024]/Recursion Notes for GATE Exam [2024]/Divide and Conquer Notes for GATE Exam [2024]/Greedy Algorithm Notes for GATE Exam [2024]/Dynamic Programming (DP) Notes for GATE Exam [2024]/Graph-Based Algorithms for GATE Exam [2024]/Tips to Clear GATE CS Exam [2024]: Road to Success/Data Structures and Algorithms | Set 1/Data Structures and Algorithms | Set 2/Data Structures and Algorithms | Set 3/Data Structures and Algorithms | Set 4/Data Structures and Algorithms | Set 6/Data Structures and Algorithms | Set 7/Data Structures and Algorithms | Set 8/Data Structures and Algorithms | Set 9/Data Structures and Algorithms | Set 10/Data Structures and Algorithms | Set 11/Data Structures and Algorithms | Set 12/Data Structures and Algorithms | Set 13/Data Structures and Algorithms | Set 14/Check for Majority Element in a sorted array/Allocate Minimum Pages/Find a String in given Array of Strings using Binary Search/Binary Search on Singly Linked List/Binary search in an object Array for the field of an element/Check if an array is sorted and rotated using Binary Search/Longest Common Prefix using Binary Search/Find the Peak Element in a 2D Array/Matrix/Search an element in a sorted and rotated array with duplicates/Search for an element in a Mountain Array/How to Sort an Array in Descending Order using STL in C++?/Bitwise Operators in C/restrict Keyword in C/Chain of Pointers in C with Examples/C Pointers
https://www.geeksforgeeks.org/pointers-in-c-and-c-set-1-introduction-arithmetic-and-array/
Data Science & ML
C Pointers
Artificial Intelligence – Boon or Bane, GRE | List of words to enhance your vocabulary with alphabet ‘B’, AI ML DS - Projects, Hidden Markov Model in Machine learning, restrict Keyword in C, Theory of Computation – GATE CSE Previous Year Questions, Dynamic Programming (DP) Notes for GATE Exam [2024], Automata Theory | Set 6, Artificial Intelligence Examples, How to Sort an Array in Descending Order using STL in C++?, Stacking in Machine Learning, Properties of Logarithms, Camera Calibration with Python – OpenCV, Division Property of Equality, Does Artificial Intelligence Require Coding?, Divisibility Rule of 17, Gaussian Process Classification (GPC) on the XOR Dataset in Scikit Learn, Components of Time Series Data, Change of base rule for Logarithm, Agents in Artificial Intelligence, Score High on GRE: How to Get Good Score in GRE, Check for Majority Element in a sorted array, Binary search in an object Array for the field of an element, Data Structures and Algorithms | Set 13, Data Structures and Algorithms | Set 4, Data Structures and Algorithms | Set 9, Pearson Correlation Coefficient, Divisibility Rule of 23, Data Structures and Algorithms | Set 7, Chain of Pointers in C with Examples, Differential Equations, Graph Data Structure Notes for GATE Exam [2024], GRE | List of words to enhance your vocabulary with root alphabet ‘E’, Data Structures and Algorithms | Set 3, GRE | List of words to enhance your vocabulary with root alphabet ‘H’, Greedy Algorithm Notes for GATE Exam [2024], Gaussian Discriminant Analysis, Find the Peak Element in a 2D Array, Search an element in a sorted and rotated array with duplicates, Top 10 Tips for GRE Quantitative Exam: Learn Maths Tricks and Shortcuts, Data Structures and Algorithms | Set 6, How to compute the eigenvalues and right eigenvectors of a given square array using NumPY?, Data Structures and Algorithms | Set 2, Data Structures and Algorithms | Set 14, Check if an array is sorted and rotated using Binary Search, C Pointers, Graph-Based Algorithms for GATE Exam [2024], Searching and Sorting Algorithm Notes for GATE Exam [2024], Updated 300+ GRE Vocabulary List of Words With Usage and Definition, Practice Questions on Divisibility Rules, Binary Search on Singly Linked List, Data Structures and Algorithms | Set 11, Divide and Conquer Notes for GATE Exam [2024], Recursion Notes for GATE Exam [2024], Transformers in Machine Learning, Commonly asked DBMS interview questions, Latest GRE Verbal Reasoning Topics and Format 2024, Longest Common Prefix using Binary Search, AI ML DS - How To Get Started?, Quadratic Discriminant Analysis, Logarithmic Differentiation, Binary Heap Notes for GATE Exam [2024], GCD Practice Questions Medium Level, Data Structures and Algorithms | Set 10, Data Structures and Algorithms | Set 1, Data Structures and Algorithms | Set 12, Tips to Clear GATE CS Exam [2024]: Road to Success, GATE CSE and IT Previous Years Papers PDF Download Link, Find a String in given Array of Strings using Binary Search, Commonly asked DBMS Interview Questions | Set 2, Allocate Minimum Pages, File Organization in DBMS | Set 3, Last Minute Notes – DBMS, ACID Properties in DBMS, Matrix, Basic Understanding of Bayesian Belief Networks, ML | Naive Bayes Scratch Implementation using Python, Ordinary Least Squares (OLS) using statsmodels, Bitwise Operators in C, Search for an element in a Mountain Array, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Data Structures and Algorithms | Set 8, NumPy Introduction, Data Structures and Algorithms | Set 25, GRE Accepting Universities in USA in 2024: GRE Score Required for US Universities, Applying Multinomial Naive Bayes to NLP Problems, Database Management System – GATE CSE Previous Year Questions, Data Science & ML, Difference Between Encoder and Decoder
GeeksforGeeks
[-0.018410895, 0.00662915735, -0.00864323508, 0.0454217754, 0.022056004, -0.0014186583, -0.013159465, 0.0070925192, -0.0106943818, -0.0238229558, -0.0147163589, -0.00822312105, 0.00351845776, -0.0203755461, -0.0344988033, -0.00895214267, 0.00343196373, 0.0388482213, -0.015470094, 0.00874208566, 0.0667734742, -0.0175459534, -0.0670700222, -0.00729022, -0.0169281382, 0.015618369, -0.00830343645, -0.00407449156, -0.0223154873, 0.0237488188, 0.00894596428, -0.00363893178, 0.00547693204, -0.0411959216, -0.0227479581, -0.0470033847, -0.0265660547, -0.0694918558, -0.00802542, -0.00457183272, 0.0257999636, -0.00940314773, 0.0207585916, -0.0166933686, -0.00694424333, 0.0571355522, 0.0194364674, -0.027307434, 0.0166933686, -0.0343505293, -0.0235016923, -0.00588160101, 0.05377464, 0.0110774273, 0.0284442138, 0.0186085943, -0.0217718091, -0.0409487933, -0.0137402108, -0.0172617584, 0.011133031, 0.0100024287, -0.0292844418, -0.0523907319, 0.0100333197, 0.00158932968, -0.0337327123, 0.0309649, 0.04972177, -0.0526378602, -0.00700602494, 0.0327689201, -0.0220065787, -0.0112133464, -0.0323488079, -0.0315580033, 0.031162601, 0.0158160701, 0.00505990675, 0.0668723211, -0.0122203855, 0.0195229612, -0.00852585, 0.00155843899, -0.000509697595, 0.00750645529, -0.016248541, -0.0277028363, 0.0551091209, -0.0221672114, -0.0219447967, -0.0125416499, 0.0284442138, -0.00395710673, -0.0211045686, -0.00439575547, -0.00304428465, 0.0119052995, 0.00644999091, 0.0328430571, 0.000847179152, 0.0498947576, -0.0114604728, -0.00974294636, 0.018769227, -0.0249473788, 0.032076966, 0.0234769788, 0.000149627129, 0.0192511231, 0.00497959089, -0.0273321457, -0.0201037079, -0.00704927184, -0.00996536, -0.00508153, 0.0285183508, -0.0716665685, -0.00434941938, 0.000553716905, -0.00195847428, 0.0532309599, 0.0283206515, 0.0610401444, -0.0346470773, 0.0253798496, 0.0263189301, -0.0237982441, -0.0110774273, -0.0133942347, 0.0201037079, 0.0204126164, 0.00398181938, 0.00893978681, 0.0186703764, -0.0308413375, 0.0159890577, 0.0215123259, -0.0152353235, -0.00759912748, -0.0302729476, -0.00313695683, 0.0242430698, -0.00827872381, -0.0203014091, -0.0121215349, -0.00423512328, 0.0628688782, -0.00924251601, -0.017718941, -0.00709869713, -0.00971823372, 0.0150870485, -0.0165203791, 0.0352401808, -0.0303470846, -0.00952053256, 0.0497711971, -0.0129988324, -0.021215776, 0.00590940285, -0.0177312978, -0.0137031423, -0.0262942165, -0.0138143487, 0.0195971, 0.0346470773, -0.0163350347, -0.0210551433, 0.0352154672, -0.00621213205, 0.0472505093, 0.0389965, 0.0168787129, -0.0249103103, -0.011343088, -0.0170393437, 0.0135919349, 0.0118188057, -0.00643763505, -0.0109476857, -0.0241812877, -0.0112565933, 0.00455329847, -0.000688477885, -0.0126466779, 0.0140367625, -0.00979855, 0.00282650464, -0.0227479581, -0.0258741025, 0.0116952425, 0.0240577254, 0.00425983593, 0.0206473861, 0.002651972, -0.0732481778, -0.00224575843, -0.00358950649, 0.0158407837, 0.0168663561, -0.0337821357, -0.0230197962, 0.00835286174, 0.0296798442, -0.00217007613, -0.00774122495, -0.00534101296, 0.0417643115, 0.0255775508, 0.00467068329, 0.0118002715, 0.0238723811, -0.0282959379, 0.0313355885, 0.00834050588, -0.0470033847, 0.00417334214, 0.00173297175, -0.0156307258, 0.0069813123, 0.0350671932, 0.0342763886, 0.00606385665, -0.0780918449, -0.0416160338, -0.00203261222, -0.0056684548, -0.0333867371, 0.00712341, 0.00297632487, 0.016594518, 0.0147410715, -0.00689481804, 0.0069751339, 0.00289291982, 0.00258246763, -0.0131841777, -0.0403062664, 0.072259672, -0.0165203791, 0.0288149025, -0.00361421914, 0.0188062955, 0.00837757438, 0.00774122495, -0.0182749741, -0.0346470773, -0.0307671987, 0.0178548601, 0.0203755461, 0.0179660674, 0.0127022816, 0.0119794374, -0.0350177698, -0.00990975648, -0.00745703, -0.00652412884, 0.00625846861, -0.0124304425, 0.014358026, -0.00275545591, -0.0256764013, -0.00416716374, -0.00763001805, -0.0295809936, 0.0366735123, -0.0210551433, 0.00496723456, -0.0334608741, 0.0568390042, -0.0499936081, 0.0437166058, -0.0309401881, 0.014358026, 0.0387740843, -0.0151364738, 0.0107808756, -0.0108797261, 0.00963791739, 0.0363769606, 0.00300258212, 0.0328183472, 0.00937225763, -0.0055201794, -0.0252686441, -0.0484120026, 0.00270294165, -0.0318051279, 0.0285924897, -0.0172864702, -0.0466079824, -0.00258710142, 0.0332384594, 0.0389965, -0.00122172968, -0.0247002542, -0.0326947831, -0.0110897832, -0.00108503806, 0.0146422209, -0.0219324417, 0.0131841777, 0.0281723756, -0.0362534, -0.023032153, 0.0149881979, -0.036203973, 0.00184726762, -0.00057109294, -0.0272085834, -0.0279005356, -0.01491406, -0.0285924897, 0.00388914696, 0.00442355732, 0.0279252492, -0.00237395498, -0.014209751, -0.00826636795, -0.0261212289, 0.0131965335, -0.00956378, 0.00794510357, 0.0244037025, -0.0233039912, 0.0109662209, 0.01330774, -0.0358332843, -0.0300752465, -0.0300752465, -0.0269367453, -0.0256022643, -0.000358332851, 0.0234646238, -0.0437166058, -0.0128999818, 0.0367970765, -0.0114851855, 0.0183244, -0.00560358446, -0.00590631366, -0.0491286665, -0.00577348331, -0.0121524259, -0.0391942, -0.0311873127, -0.0102557326, -0.00375322765, -0.00300876028, 0.00110666151, 0.0455947667, -0.00203261222, -0.00122713554, 0.0369206406, 0.0203755461, -0.0210427865, -0.0108055882, -0.00580746308, -0.00963174, 0.0234399103, 0.00242492487, -0.0325217955, 0.00943403877, -0.0428269543, -0.0138267055, 0.00976148061, -0.0217718091, 0.0123686614, -0.0185838826, -0.0139996931, -0.00743849576, 0.00963791739, 0.00872355141, -0.0276781227, 0.0203631911, 0.0173111837, 0.0147781409, -0.0150005538, 0.00231680716, -0.00913748704, 0.0419373, -0.00960702728, 0.00929812, -0.0175212398, 0.00640056608, -0.0128752701, 0.00037435742, 0.0493016578, 0.000685774896, -0.0264919177, 0.0276286975, 0.0107314512, -0.00748174265, 0.0101754172, -0.0091622, -0.000383431587, 0.000406599662, -0.0238847379, -0.0351413302, 0.0683056563, 0.00944021717, -0.0117755588, 0.0148646347, 0.0136907855, 0.0284689255, -0.0470033847, 0.00992829073, 0.000464133715, 0.0360557, 0.00788332243, -0.00454094214, -0.0228591636, 5.40588335e-05, 0.0227232445, 0.0532309599, -0.0227479581, 0.0695907101, -0.0125107588, 0.00439884467, 0.0335102975, -0.00848260336, 0.0130482577, 0.0160508398, 0.0107746981, 0.0208327305, -0.0416160338, 0.000516261847, 0.0231433585, -0.0190534219, -0.0538240634, 0.0182502624, 0.0249350239, 0.010323693, -0.0117570236, -0.0623746254, 0.0396143124, 0.00552635733, -0.054763142, -0.0249473788, 0.0177065842, 0.033263173, -0.00965027418, -0.0211045686, -0.0346965045, 0.0249103103, -0.0327936336, 0.0215370394, -0.00664151367, 0.00358950649, -0.0224019811, -0.0182131939, 0.00888418313, 0.0247126091, 0.0436177552, 0.0108550135, 0.025626976, -0.0446556844, -0.0135548664, -0.0124119082, 0.000279561384, -0.00802542, 0.0264424924, 0.016668655, 0.0428763777, 0.00130281784, -0.00374396029, -0.00895214267, -0.0335844383, -0.0251697935, -0.0057796617, -0.0365005247, 0.0541206151, -0.00579510676, 0.00579819595, -0.0069751339, 0.0105399285, 0.0306930616, -0.0213393383, -0.0498947576, 0.00703691551, -0.0330901854, -0.0326206461, -0.0290867426, -0.0187445153, -0.00370071339, 0.00960084889, 0.0172617584, 0.00932901, -0.0167551488, 0.00726550724, 0.0377608687, -0.000563756388, -0.0155195193, 0.00363584282, 0.0178672168, -0.0255281255, -0.00397255179, 0.0222784169, 0.0897067711, -0.00739524839, -0.0367723629, -0.0187198017, 0.0486344174, 0.0161620472, -0.0322252437, -0.019461181, 0.0114666512, -0.00043980722, -0.00430308329, 0.00105723634, -0.0190410651, 0.0287654772, 0.0625229, 0.0176077336, -0.0221424978, -0.0339798369, -0.0246014036, 0.00845171232, 0.0225255433, 0.0124860462, 0.00480042445, 0.00550473388, 0.0231680721, 0.0204496849, -0.0019414844, 0.0144692333, -0.0188927893, -0.0423821248, -0.0677125528, -0.0113554439, -0.00300103752, -0.0171381943, 0.00174687256, -0.0158902071, -0.00974912476, 0.00473246491, 0.0376867317, 0.00937843509, 0.0278758239, -0.00123949186, 0.0237858873, 0.0106387781, -0.00780918449, -0.00406522444, 0.033708, -0.0255281255, 0.00279561407, 0.0276286975, -0.00830343645, 0.0245890468, 0.0125354715, 0.0128258448, -0.0136042917, -0.00587233389, 0.0127764195, -0.0273568593, 0.00430617202, -0.00629862631, -0.00879768934, 0.00734582311, 0.00114373048, 0.0301246718, 0.0326947831, -0.000149916727, -0.0378844291, 0.0185344573, 0.0106202438, 0.020931581, 0.0270850211, -0.000675735413, -0.0178795736, 0.0154206688, -0.00900774635, 0.0342763886, 0.00594029343, 0.00607930217, 0.00599898584, 0.00595573895, 0.0141356131, -0.0202149153, -0.0320275426, 0.0263683554, -0.00161867589, 0.00292535522, 0.0124119082, -0.0230197962, 0.0266649053, 0.0050382833, -0.0117693804, -0.00894596428, 0.0265907682, 0.0137896361, 0.00698749, -0.00457183272, -0.0031292343, -0.00943403877, -0.0126157869, -0.0167304371, -0.0151488297, 0.0039879973, 0.00248979544, 0.00455329847, -0.000639438804, 0.0176077336, -0.0056746332, -0.00790803507, -0.0108982613, -0.0393671878, 0.021215776, -0.0283453632, -0.0355120189, 0.0327442065, 0.0263436418, 0.0107623413, -0.0203261208, -0.0287901908, -0.00285276189, -0.00927958451, 0.0250833, 0.00885947049, -0.0176077336, 0.0127517069, -0.00124026416, -0.0092919413, -0.00372233684, 8.41652582e-06, -0.0202519838, -0.0211663507, -0.0156554375, 0.0122203855, -0.0193499736, 0.0301988088, -0.00511551043, -0.00860616658, 0.0261706542, -0.00845789071, 0.0461631566, -0.0339798369, 0.0401827022, 0.0281723756, 0.0116149262, -4.93045518e-05, 0.106857322, 9.95261726e-05, 0.0278511103, -0.0147410715, 0.0414430462, -0.00914984383, -0.0207833052, 0.0234646238, -0.0262942165, -0.0128752701, 0.00349065615, -0.0072407946, 0.0100024287, 0.0407510921, 0.00827254634, -0.00286202901, 0.00597736239, -0.00895832106, -0.0115963919, 0.0166068729, 0.00539043779, -0.0242060013, -0.0264177807, -0.0224019811, -0.00932283234, 0.00525451871, 0.0215864647, -0.0234151985, -0.0331643224, -0.0289384667, 0.00163566589, -0.0133571653, -0.00219478854, -0.0258493889, 0.0127146374, 0.00679596746, 0.00506299594, 0.0164956674, 0.013097683, 0.0310390387, -0.0228344519, 0.0246261153, -0.0107685197, -0.0277028363, 0.00722226035, -0.0208203737, -0.0197824445, -0.0173482522, -0.0122945234, 0.0146298651, 0.0154824499, -0.00815516151, -0.0283453632, 0.0144568766, 0.0107994108, -0.0241071507, -0.00937843509, 0.0232051406, -0.00537190353, -0.00474173203, -0.00497032376, -0.0268131811, 0.00573950354, 0.00214073, -0.0150994044, -0.00311378879, -0.0100889225, 0.00975530315, 0.0202766955, -0.00449460605, 0.0186085943, 0.01330774, 0.0255281255, 0.00170671463, -0.00875444245, -0.0310637504, -0.0230568647, 0.0115037197, 0.00223958027, 0.0165574476, 0.0077226907, 0.000565687078, 0.00359568466, -0.0300752465, -0.000740219897, -0.0358579978, -0.00473555364, -0.0125107588, -0.0041455403, 0.0175583083, -0.025132725, -0.0180772748, -0.0141726816, 0.0109415082, -0.0109600425, -0.00196156348, -0.0151364738, 0.0153218182, -0.00177776336, -0.0101568829, -0.0100580323, -0.0077226907, -0.0157048628, 0.00903863739, 0.00315240235, 0.00412391685, 0.0429505147, -0.0388235115, 0.00577039458, 0.0245272648, -0.0307919122, -0.00432161754, -0.048461426, -0.0117261335, -0.00181792141, 0.00370071339, 0.0106573133, -0.0141973943, 0.0147781409, -0.000166810118, -0.0066106231, 0.00699366862, 0.0112689501, -0.0340045504, 0.0148646347, 0.0122265639, -0.000822466565, 0.0214629024, 0.0386010967, 0.0224637631, 0.0111515652, 0.00598354079, 0.012813488, -0.0282959379, -0.00376867293, -0.0140861878, -0.0035122796, -0.0659332424, 0.0228962321, 0.00371924788, -0.0116211046, 0.0221301429, -0.0320275426, 0.0212775562, 0.0357344337, -0.000204072101, -0.00396328466, 0.0371677652, 0.0147657841, 0.00207431475, 0.042505689, -0.0030967989, -0.0179289989, -0.030248234, -0.0308166239, -0.00725315092, -0.0213146266, 0.0196465254, 0.00160477508, -0.00749409897, 0.0071975477, 0.0197948013, -0.0207833052, -0.033411447, -0.00191059359, -0.0212775562, 0.0137031423, 0.0257505402, -0.00305355177, 0.0064561693, 0.00403742259, -0.0119114779, 0.0211539939, 0.0256516896, 0.00656119781, 0.00160786416, 0.0397378765, -0.017718941, 0.0213640518, 0.0042505688, -0.0435189046, -0.0172123332, 0.0292844418, 0.00986651, 0.0023878559, 0.0258246772, 0.00920544751, 0.000666854321, -0.0289631784, 0.0161867589, 0.0182996877, -0.00454403134, 0.00763619645, 0.0121030007, -0.0210798569, 0.0138514182, -0.00251450809, -0.0308660492, -0.00479733525, -0.000663379091, 0.00170053646, -0.0139749805, 0.039985, 0.00870501716, 0.0233287029, 0.00641910033, -0.00694424333, 0.00415171823, -0.0128258448, 0.0159767028, 0.0309154745, 0.0341034, 0.0198442265, -0.0422091372, -0.0270108823, 0.0181884803, -0.000949118694, 0.036203973, 0.00328677706, -0.00861234404, -0.011553145, 0.0264919177, 0.0222537052, -0.00626773573, 0.00782771874, -0.0145557271, -0.0163473915, -0.0057827509, 0.0172370449, -0.00341651822, 0.0563941747, 0.0108982613, 0.00538734905, -0.0111762779, -0.0095946705, 0.0233534165, 0.00615961803, 0.0238476675, -0.00557578262, -0.033708, -0.00843317807, -0.0139873372, 0.0148152094, -0.0114851855, -0.033189036, 4.93528205e-05, -0.0190163534, 0.0159519892, 0.00240484579, -0.0064561693, -0.00659826677, 0.00217007613, 0.00845171232, 0.00542441802, -0.0124675119, -0.00973059051, 0.0101136351, 0.0112504158, -6.2698593e-05, -0.0185097456, -0.00384898903, 0.0192264095, 0.0032064612, -0.00340416189, 0.0257258266, -0.0254045632, 0.0316321403, 0.0299269706, 0.0203508344, -0.00640056608, -0.0540711917, 0.0134930853, 0.0453229249, -0.0177065842, -0.00917455647, 0.0317804143, -0.00480660237, 0.00333929132, -0.0123686614, 0.00819840841, 0.0242924951, 0.00557887182, -0.0121647818, -0.0270603076, 0.00569316745, -0.031236738, -0.00171443727, 0.00208512647, -0.00666622631, 0.000435173599, -0.00191831635, -0.0215246826, 0.00350301247, -0.0110465363, -0.00526069663, -0.0585688837, -0.004253658, -0.010848836, 0.0180772748, 0.0293585807, 0.00543059595, -0.0145804398, -0.00990975648, 0.0212404877, 0.00263652648, 0.0153712435, 0.00756205851, 0.00122018508, 0.00402815547, 0.0132953841, -0.0286913402, -0.00559431687, -0.0288890414, -0.00730257621, -0.0122018512, -0.0088100452, 0.00270448625, 0.00169899187, 0.0120350411, 0.0208203737, -0.0145310145, -2.15873333e-05, 0.0254539885, 0.00937843509, -0.0321758166, -0.00643763505, -0.00949582, 0.0115716793, -0.0206473861, 0.0577286556, 0.027653411, 0.0340045504, -0.0136413602, -0.0053008548, -0.0482637286, 0.0297292694, 0.0210798569, 0.0238723811, 0.0260965154, 0.00165420026, 0.0150870485, 0.0213516951, -0.0204002596, 0.0259482395, -0.0181267, 0.00696895598, 0.0109476857, -0.0206720978, -0.0159767028, -0.00455947639, 0.00118620531, 0.00184263394, 0.0430987924, -0.00263189292, -0.0201778449, -0.0168045741, -0.0224514063, -0.00287438533, -0.00468921755, -0.0141603258, 0.00639438769, 0.0246878974, 0.0191275608, 0.0195600297, -0.00459036743, -0.00168354658, 0.00687628379, -0.0229209457, -0.0321016796, -0.0266896188, -0.00320337201, 0.0409982204, 0.0284195021, -0.0316321403, -0.0077659376, 0.0152353235, -0.0103360489, -0.0120844664, 0.00418878719, 0.00613181619, 0.0146916462, 0.0087729767, 0.00539661618, 0.0291855913, -0.0148028536, 0.00899539, -0.000919000187, -0.00263343751, 0.0161373336, 0.00412700605, 0.00104024645, 0.00826019, -0.0200666394, -0.00208358187, -0.0516493544, 0.0297045577, 0.00180247601, 0.0345235169, -0.00834050588, -0.00505681755, -0.00107190944, 0.0120597538, -0.0160755534, 0.00267359545, 0.0108364793, -0.00738907047, 0.0027600897, 0.000458727824, -0.0211910624, -0.00700602494, 0.00731493253, -0.0129123386, 0.0152600361, 0.00743849576, -0.0095514236, 0.00683921482, -0.0110341804, -0.0064129224, -0.0151364738, 0.00822312105, 0.0071975477, 0.00796363875, 0.00426601432, 0.0330901854, -0.0192758348, 0.000702764839, 0.00725932932, 0.0203508344, 0.0158902071, 0.0156677943, 0.0092486944, -0.00922398176, -0.0107623413, -0.0210922118, 0.0120597538, 0.0149881979, -0.0155195193, -0.0126404995, -0.0174594596, 0.0213269815, 0.0206968114, -0.0118126273, -0.0285924897, 0.0371430516, -0.00997153763, -0.0020511467, -0.0138390614, -0.00607621297, 0.0111515652, 0.0212281309, 0.0105275717, -0.00872355141, 0.00896449946, 0.0104657905, 0.0797723, -0.00174223899, -0.0326947831, -0.0164462421, 0.0208203737, -0.00501974905, -0.00365437707, -0.0116396388, -0.00206041383, 0.0109476857, 0.0155195193, 0.0017561398, 0.0289384667, 0.0367970765, 0.00227201567, -0.00331457867, -0.0238970928, -0.00255003246, -0.00324044097, -0.0322993807, -0.011899122, 0.00669711735, 0.0259976648, -0.0245890468, 0.0189545713, -0.00538734905, -0.00651177252, -0.0342269652, 0.0178795736, 0.00482204789, 0.0123748397, -0.0166562982, -0.00228746096, -0.013023545, 0.00780918449, 0.0136907855, 0.0282712262, 0.0181267, -0.00484058261, 0.0313355885, -0.00902010221, -0.00927958451, -0.0402321294, 0.00145649945, 0.0110588931, -0.0104348995, -0.0239712317, -0.00944021717, -0.0329666212, 0.00646852562, -0.0181019865, 0.00229209452, 0.0317062773, 0.0128999818, -0.00469539594, 0.0185962394, 0.0015862406, -0.0108735487, 0.0111700995, -0.023736462, -0.019819513, -0.0245519783, -0.000374743569, -0.027307434, -0.0118249841, 0.00013012733, -0.0124180866, -0.014283888, -0.0204991102, 0.00978001487, 0.0133942347, 0.0155565878, 0.00501974905, 0.0190039966, -0.0112257032, 0.031088464, -0.00522053894, 0.0221424978, -0.00308907614, -0.0344493762, -0.0183861814, -0.00264579384, 0.0213640518, 0.0259729531, 0.0182379056, 0.00294080051, -0.00838375278, 0.0045131403, -0.0241812877, 0.0282465126, -0.00445753708, -0.00315858051, -0.0261459406, 0.00206041383, 0.0169652067, -0.0115037197, 0.0172617584, 0.007982173, -0.00277707959, 0.00040080765, 0.0067156516, -0.00277399039, 0.00241256854, -0.00541515043, -0.010997111, -0.0370689146, 0.0148028536, 0.00621522125, -0.014704003, 0.0141973943, 0.0413689092, -0.0147534283, 0.0046243472, -0.0443838462, 0.0196588803, -0.0128505575, 0.00446680421, 0.00271220901, 0.00796981622, -0.00481587, -0.0162856095, 0.00800070725, 0.00691953069, -0.013653717, 0.00446680421, 0.00455947639, 0.00386134535, 0.0272827204, 0.000451005122, 0.0192387663, -0.00713576609, 0.0203014091, 0.00535954721, 0.00819223, -0.0159149207, -0.00602678768, 0.0214876141, 0.0112627717, -0.00253767613, -0.0130111892, 0.00594029343, 0.017718941, -0.00254539889, -0.00110280025, -0.00623066677, 0.0338068493, 0.0225873254, -0.0105399285, -0.00636349712, 0.000191522719, -0.00281569292, -0.0254787, 0.0170764141, -0.000495024491, 0.0105213933, -0.0291114543, 0.00754352426, -0.0222042799, 0.0256764013, -0.00543059595, 0.0177560095, 0.0135548664, 0.0244778395, 0.010712916, -0.0197948013, -0.0101012792, -0.00752498955, -0.0395648889, 0.00179629785, 0.0236376114, -0.00724697299, -0.0260965154, 0.0139626246, -0.0320275426, 0.016174404, -0.00653648516, 0.0465338454, -0.014209751, 0.0178672168, -0.00961938314, -0.0289137531, 0.00431543961, 0.0274804216, 0.0188557208, -0.0152476802, 0.00591249205, -0.00942168292, 0.0125354715, 0.0184603203, 0.0190287102, -0.0129246945, 0.0129617639, 0.00310452166, -0.0137154981, 0.0222413484, -0.0183861814, -0.0051896479, -0.0370689146, -0.0292350166, -0.026961457, -0.0251450799, 0.00505372882, -0.0101198135, 0.0010780876, -0.0103175147, -0.00438339915, -0.00475717755, -0.000511242135, -0.0123748397, -0.00121400692, -0.00453785295, 0.0259482395, 0.00934136659, -0.0178054348, 0.00428146, 0.00935990084, 0.00607930217, 0.00992829073, 0.0172370449, 0.00814898312, 0.00712341, -0.00400344282, 0.00603914401, 0.00817987416, -4.50812076e-05, 0.00701220287, -0.00485911686, 0.013937912, -0.00916837808, 0.0102310209, -0.0109662209, -0.00384589983, 0.0408252329, 0.00410847133, -0.00894596428, -0.0143333133, 0.0292350166, -0.032076966, -0.0439884439, 0.0275545605, -0.00339798373, 0.000821694266, 0.0218953714, -0.012257454, 0.0194117557, 0.000128679327, -0.000495796732, 0.000124721453, -0.0217841659, 0.00817369577, -0.00926105, -0.0176571589, 0.00813044887, -0.000788872829, 0.0256764013, 0.0102310209, 0.00252223061, 0.00766708702, -0.0188927893, -0.0333125964, 0.00872355141, -0.00716047874, -0.00281414832, 0.0260718036, -0.00251296349, 0.02310629, -0.0166192297, -0.0492028072, 0.0077659376, -0.00816751737, 0.0123254145, 0.0218335912, 0.0229456574, 0.000827100128, 0.016038483, -0.0312861651, 0.0333620235, 0.01330774, -0.011522254, -0.00952671096, -0.0133942347, 0.0375878811, -0.018559169, 0.00390150328, -0.0117940931, 0.00822929945, -0.027801685, 0.0274557099, 0.00230445084, 0.0114172259, 0.0227356013, 0.00661680102, 0.0285430644, 0.00191986084, 0.0447298251, 0.0236746799, 0.0123563046, -0.00172524911, -0.00340416189, -0.00695042126, -0.0054120617, 0.000731338805, 0.0122018512, -0.00218861061, -0.0136413602, -0.00621522125, -0.0115840361, -0.000440193369, 0.0130853271, 0.00491780927, -0.0108673703, -0.0415418968, 0.0113554439, -0.0128258448, -0.000195963279, -0.00138931198, 0.0127517069, -0.0138019929, -0.000653339608, 0.00626464654, -0.000322422333, -0.0166810118, -0.011028002, 0.0228097383, 0.00295624603, 0.00107113714, -0.00512168836, -0.00971823372, 0.00124489772, -0.00958231464, 0.0189422145, -0.0025716559, -0.0227726698, 0.0031724812, -0.0242430698, -0.0129494071, -0.00240639038, 0.00272147614, -0.0005320934, -0.00581055228, -0.0323982313, 0.0318298414, 0.0130111892, -0.0120412195, 0.0170393437, 0.0208574422, -0.0224884748, 0.0120968223, -0.00585688837, 0.03333731, -0.0398120135, 0.00355243776, 0.0176695157, 0.00449769478, 0.0254787, 0.00610092562, 0.0123748397, 0.00229981728, -0.021981867, -0.00827872381, 0.00579819595, -0.00120473967, 0.0259235278, 0.00847642496, 0.0282218, -0.0108735487, -0.0239712317, -0.00745085161, 0.0236870367, 0.0195229612, -0.002468172, -0.0204496849, 0.0192016978, -0.011238059, -0.0024650828, 0.00600825343, 0.00648088194, 0.0140120499, -0.01491406, -0.0239588749, -0.0322005302, -0.013233602, -0.0191522725, -0.0169034246, -0.0156801511, 0.0116334613, -0.0145063018, 0.0380574204, 0.00957613625, -0.0197700877, 0.0335597247, 0.00752498955, 0.0285924897, 0.0033578258, -0.0413936228, 0.0056746332, -0.0326947831, -0.0036234865, -0.0144321639, 0.00479424652, 0.0189175028, 0.00916837808, -0.0107808756, 0.0171999764, -0.0069813123, -0.010187773, -0.0333867371, -0.00775975967, 0.0444085598, -0.0185838826, -0.0140120499, -0.0145927956, -0.00887800474, -0.00592793711, 0.00965645257, -0.00359877385, 0.0148152094, 0.011899122, 0.00274927774, 0.00860616658, 0.00250369636, -0.00484984973, 0.000433242938, 0.0010780876, -0.0105152158, -0.0318298414, -0.00407140236, -0.0143209575, 0.0107685197, -0.0175953787, 0.00786478817, -0.0275792722, -0.00395092834, 0.0109723983, -0.00921162497, 0.0102989804, 0.0213887636, 0.0161249787, -0.00355552672, 0.0103792958, 0.00806866679, -0.00702455919, 0.00433706306, 0.00415171823, 0.00168354658, -0.00500739273, -0.00785243139, -0.00243264763, -0.00508770859, -0.0186580196, 0.019535318, -0.00730257621, -0.00710487552, -0.0060422332, 0.00483440422, -0.00532247825, -0.00217316509, 0.00267205085, 0.0163721032, -0.010502859, -0.0201160647, -0.00730875414, -0.00568698952, -0.00491780927, 0.00800070725, -0.00509697571, 0.0202272702, 0.0153218182, -0.0122945234, 0.0134313032, 0.00158160704, -0.00638203137, 0.0180031359, -0.00020001769, -0.0172741134, -0.0185715258, -0.0115716793, -0.0109167956, 0.0164956674, -0.00625537941, -0.0119794374, 0.0180154927, 0.00200635497, 0.00672183, 0.00912513118, 0.0266649053, 0.0107005602, 0.0231927838, 0.00827254634, 0.00892125256, 0.000518964778, -0.00900156796, -0.00115917588, -0.0273321457, 0.00811809208, 0.0190657787, 0.000542132882, 0.0119052995, -0.00624302309, -0.00377794029, -0.0110156462, -0.0112813059, -0.0136290044, -0.0141109, 0.0126096094, 0.00840228703, -0.0102371983, 0.00252840878, 0.0172988269, -0.00556651549, -0.00883475784, -0.0379091427, -0.0190287102, 0.0105461059, 0.00733964518, 0.0101630604, -0.0304706469, 0.0012325414, 0.0057827509, 0.00442973524, 0.0262942165, 0.012183317, 0.0189916398, -0.0205361787, 0.00465832697, 0.0288149025, 0.00575494906, 0.00308598718, -0.00913131, -0.00231835176, 0.0155195193, -0.0082849022, -0.0164833106, 0.00726550724, -0.0135548664, 0.00889036153, 0.0100703882, -0.0121277133, 0.0063048047, 0.0127393501, 0.000233997518, 0.0253304243, -0.0367723629, 0.0195229612, -0.0125354715, 0.00388914696, -0.0127146374, 0.00100935565, 0.00319719384, -0.0159767028, 0.0156307258, -0.00846406911, -0.00359877385, -0.00926105, 0.008427, 0.00230754, -0.0124366209, -0.0125169372, -0.00889654, 0.00380265294, 0.00329913339, -0.00794510357, 0.0310390387, 0.0138884867, 0.0112565933, 0.015334174, 0.00162485405, 0.0207215231, 0.0014171137, -0.0215741079, -0.017372964, 0.0111762779, 0.0379338562, 0.0258493889, 0.0144074513, 0.0101445261, -0.0218583029, 0.0120968223, -0.00829108059, 0.00613799458, 0.0137154981, -0.00573023641, -0.00392003777, -0.0184973888, -0.00171598187, -0.00496723456, 0.0150870485, 0.0175212398, -0.010187773, 0.0070863408, 0.0104472553, 0.0309649, -0.00875444245, -0.0100086071, -0.0212034192, -0.00612563826, -0.0211045686, 0.00681450218, 0.00152677589, -0.00773504702, 0.00817987416, -0.00767326541, 0.0224266928, 0.00667858263, -0.0118558742, -0.0352154672, -0.0283206515, -0.00800688565, -0.0262447912, -0.0116211046, 0.00434941938, -0.0304212235, 0.0102989804, 0.00755588058, 0.00653030723, 0.00148198428, 0.00293925591, -0.000212760118, 0.0156801511, -0.0265660547, -0.00819840841, 0.000630557653, -0.0130111892, 0.00370380236, 0.0194982495, 0.00632642815, 0.00305200741, -0.0214999709, -0.00395710673, 0.0116643514, 0.021710027, 0.0169034246, 0.00337327132, 0.00262262579, -0.0313355885, -0.000749487139, -0.0203879029, -0.00733964518, -0.0030180274, -0.0049950364, 0.0139502678, -0.00421967823, 0.00964409579, -0.0190904904, -0.0206844546, -0.00367291155, 0.0177930798, -0.0114975413, -0.0087667983, 0.00349683431, 0.0223772675, 0.0162856095, 0.000489232421, -0.0055634263, -0.0104966806, -0.0164956674, 0.00543677434, 0.0183861814, 0.0123563046, -0.031928692, 0.00868648198, 0.0138761308, -0.0133571653, 0.00428146, 0.00516184652, -0.0183244, 0.00161867589, 0.0171999764, -0.0239712317, -0.00934754498, 0.0324229449, -0.0126652122, -0.0235016923, 0.00277707959, -0.00088810944, 0.00999625, 0.00242801383, -0.000382659317, -0.00425983593, -0.00684539275, 0.00300567108, -0.0124304425, 0.0161620472, -0.0128629133, 0.00189205923, -0.0286913402, -0.013653717, 0.0123130577, 0.0217965227, 0.0133571653, 0.00777211599, 0.00183182221, -0.0151117612, -0.00400962075, -0.00889036153, -0.0297786947, 0.00367291155, 0.00963174, -0.00149202382, 0.0164709538, 0.00413318397, 0.0145063018, 0.00994064752, -0.0144568766, -0.00351845776, -0.0101259919, -0.0180896297, 0.00833432749, 0.0136166476, 0.00622139964, -0.00376249477, -0.00533792377, -0.011763202, -0.00961938314, -0.0250338744, 0.00142097508, 0.00422894536, 0.0131965335, 0.0298775453, 0.00978001487, 0.00292535522, -0.0114048691, 0.00154376589, 0.0100147855, 0.00282032648, -0.00588777941, 0.025626976, -0.0234275535, 0.00604841113, -0.0135919349, -0.00726550724, 0.0303470846, 0.024514908, -0.00935372245, -1.14030354e-05, -0.0183614697, 0.00292998878, -0.010051854, 0.00450387318, 0.0116643514, -0.0128011322, 0.0147904968, -0.00908806268, -0.00644999091, -0.00341960741, -0.0109476857, 0.00919309072, 0.00728404149, -0.011028002, 0.0327442065, -0.00716665667, 0.00946493, 0.00404668972, -0.00591558078, 0.00328677706, 0.00157929026, -0.00872355141, 0.00528232055, -0.00686392747, -0.00497341249, 0.0207091663, 0.0199801456, 0.00889036153, -0.0131223956, 0.0132088903, -0.00521127135, -0.00469230674, 0.00689481804, -0.0108611919, 0.00732111046, 0.0155195193, -0.00127887761, 0.0106017096, -0.00874208566, 0.0056746332, 0.0182008371, -0.000633646734, 0.00169744738, -0.00430308329, -0.0035462596, 0.00780300656, -0.0136290044, -0.0194364674, 0.023180427, -0.0122450981, 0.0130359018, -0.00379956374, 0.0125045804, 0.00611328194, 0.00219942234, -0.0160261281, 0.0198318698, 0.0275298469, -0.00165883393, 0.0210798569, -0.0101692388, -0.00293925591, -0.00232298533, 0.0107685197, -0.0196588803, -0.00318792672, -0.0066106231, 0.0150870485, 0.00997153763, -0.00640056608, -0.0098170843, 0.016310323, 0.00572096929, -0.010576997, -0.0101012792, -0.00770415599, 0.00486838399, -0.00230290624, 0.00389841408, -0.000466450496, -0.0069813123, -0.00310606603, -0.000517034146, 0.00976765901, -0.00330531155, -0.00608856929, 0.0114975413, 0.0150746917, 0.0121277133, 0.000986187602, 0.0035462596, 0.00752498955, 0.0132583147, 0.0143209575, 0.00685774907, -0.0137896361, -0.0114913639, -0.0114975413, -0.0132088903, -0.0285924897, -0.000235735133, 0.0102804452, -0.00174996164, -0.0213146266, 0.0239712317, 0.00452858582, 0.0365746617, 0.0246384721, 0.0125107588, 0.0242801383, 0.00740760472, 0.00850113761, -0.00581673067, 0.00431543961, -0.0103607615, 0.0161620472, 0.000282071269, -0.0130111892, 0.0107685197, 0.00651177252, 0.014704003, -0.00998389442, -0.0161373336, 0.00650559459, -0.00478806812, 0.00865559187, -0.0187198017, 6.83940816e-05, -0.0103731183, 0.0225008316, 0.0073520015, 0.000148468724, 0.0220436472, 0.0109538641, -0.0156554375, -0.0101692388, -0.0132830273, -0.00521127135, 0.0110403588, 0.0199801456, 0.0252192188, -0.0278758239, -0.0205238219, -0.0232298523, 0.00330531155, 0.0186456647, 0.00395710673, 0.00350919063, 0.000203106756, 0.0172123332, 0.014073831, 0.0142962448, 0.0125663625, -0.00620595412, -0.0275792722, 0.00768562173, 0.0123192361, 0.00131517416, 0.017434746, 0.00929812, -0.00406831317, 0.00160477508, 0.0173358954, -0.012109179, 0.0133571653, -0.0112998411, -0.0216729585, -0.0115284324, 0.0101136351, 0.000516648, -0.00407758076, 0.00213146256, 0.0108550135, 0.0241689328, 0.0147657841, -0.0125910742, 0.00863087922, 0.0166192297, 0.00234460877, -0.00248516188, -0.0225379, -0.0111515652, -0.041319482, 0.0128505575, -0.0236746799, 0.00320955017, 0.0101383477, 0.0196465254, -0.00154376589, 0.0211045686, -0.0116890641, 0.00516493525, -0.0071975477, 0.00806866679, 0.00768562173, -0.0127640627, -0.00550164469, -0.00324353, -0.011899122, -0.0202272702, 0.010292802, 0.0145186586, -0.00476953387, 0.00597736239, 0.00111515657, -0.0127640627, -0.00222104578, -0.0182749741, 0.00066453754, 0.00282032648, -0.0239341632, 0.00769179966, -0.0171876196, -0.0398861505, 0.00789567921, 0.000490004721, -0.0104101868, 0.0328183472, 0.0153588867, -0.0154330246, -0.0169281382, -0.00866794772, 0.0162114725, -0.00408684788, 0.000139104959, -0.0117075993, 0.0135054411, 0.0109600425, 0.00171134819, 0.0203631911, 0.0124860462, 0.00913748704, -0.0106202438, 0.00225965935, 0.00415171823, 0.000515103457, 0.0193993989, -0.00294080051, -0.0170022752, -0.0302976593, -0.01989365, 0.00493325479, -0.0110094678, 0.00982326269, -0.00732728885, -0.0109600425, 0.0147287156, -0.0200295709, -0.0180772748, -0.0169281382, -0.0143703828, 0.0226491075, 0.0178054348, 0.00374087133, -0.0284689255, 0.0153588867, -0.0042969049, 0.0143703828, 0.00727168564, -0.006196687, -0.0122142071, -0.00535336928, -0.0107499855, 0.0254787, -0.000718982483, -0.000761457311, -0.0172123332, 0.015618369, 0.0171258394, 0.0111268526, -0.0147163589, -0.0303223729, 0.00914366543, -0.0122636324, -0.00875444245, 0.00248979544, -0.000229750047, -0.00370380236, 0.0210304316, 0.00897685532, 0.000242878625, 0.00380265294, -0.00116844312, 0.0155813005, 0.00669093896, 0.00960702728, 0.0124489767, 0.0211416371, -0.0146298651, -0.00413318397, -0.00174378348, 0.00353699224, -0.0130482577, 0.0118620526, -0.00863087922, 0.00695042126, 0.00648088194, -0.0076114838, -0.00518655917, 0.0218088776, -0.00657973252, 0.00950199831, 0.0117075993, -0.00128814473, -0.000534024031, -0.00204496854, 0.00729639782, -0.0217841659, 0.000757982081, -0.00404051179, 0.00380265294, 0.0122203855, -0.0269367453, 0.0242060013, 0.00470466306, -0.0114913639, 0.0131100398, 0.0108241234, -0.0189792849, -0.00928576291, 0.0157790016, 0.000957613636, 0.0303965099, 0.00389223592, -0.00907570589, -0.00442973524, -0.000488074031, -0.0141109, -0.00644381298, 0.0218212344, -0.0183491129, -0.00448533846, -0.015544232, -0.0107005602, 0.0330654718, -0.00367908971, -0.00374704949, -0.020931581, 0.018769227, -0.0143456701, 0.0196588803, 0.0118435184, -0.00607312378, 0.0082478337, -0.00233997521, -0.00581055228, -0.00782771874, 0.00380265294, -0.00585071044, -0.0226614624, 0.0101012792, -0.00402815547, 0.00454094214, 0.0142591754, 0.00853202865, -0.00881622359, -0.00199090969, 0.0200913511, -0.0342022516, -0.0178795736, -0.0189422145, 0.00513713388, 0.0369453505, 0.0155195193, -0.0179660674, -0.00966263, -0.00971823372, -0.000294620637, 1.46972452e-05, -0.0234028418, -0.0164462421, -0.017088769, 0.011553145, 0.00934754498, 0.0272827204, -0.00705545, 0.0150994044, 0.00254539889, 0.0125910742, -0.00305973, 0.0160261281, 0.0125416499, -0.0117446678, -0.00643763505, 0.00450387318, -0.00430926122, -0.00345976534, 0.00337327132, -0.00377176213, 0.0210675, 0.00943403877, -0.00535645802, -0.0042969049, 0.0112689501, 0.00207585911, -0.015544232, -0.00170671463, -0.000946029613, 0.0261459406, -0.00039656015, -0.0243295636, 0.0117693804, -0.0326206461, -0.00163103221, -0.019115204, 0.00610092562, -0.00445444789, 0.0154453814, 0.0157666449, 0.00321263936, -0.011553145, 0.0122698108, 0.0039879973, 0.00803777669, -0.00614726171, -0.00740142679, 0.0220312923, 0.000418569834, -0.0118126273, -0.0357591473, -0.00778447185, -0.0302235223, -0.0115469666, 0.0116767082, 0.015470094, -0.01344366, 0.0167551488, 0.0181143433, 0.0115098981, -0.00740142679, -0.00732728885, 0.00438648835, 0.0175830219, -0.00247589452, -1.23261379e-05, 0.0111021399, 0.00811191369, 0.0272085834, 0.0197577309, -0.0150623359, -0.0139873372, 0.00367908971, -0.00279715843, -0.0300505329, 0.0181143433, 0.000566459377, 0.011133031, -0.00281260395, 0.007982173, 0.0111700995, -0.0198442265, 0.00160786416, 0.0117940931, 0.00244809291, 0.00839611, -0.011133031, -0.00829108059, -0.0300011076, 0.0221054293, 0.00202488946, -0.0184973888, -0.0110094678, -0.0113369096, -0.00857527554, -0.0150623359, 0.000677279953, 0.016038483, 0.000166906655, 0.00683921482, 0.0166562982, 0.0204867534, -0.0166810118, -0.00405904604, 0.0117384894, 0.0103545832, 0.000528232, -0.0164215285, -0.0216853153, 0.0252686441, 0.0237735305, -0.00182873313, -0.013023545, 0.00376249477, 0.0167551488, 0.0118126273, 0.0215864647, -0.0115037197, 0.0220436472, -0.023044508, 0.00240330119, -0.0189792849, -0.00702455919, -0.0137031423, 0.00260254671, 0.0112133464, -0.00745703, -0.0134189473, -0.00442973524, -0.0111886337, 0.000903554785, 0.0183985382, -1.26459054e-05, 0.0179537106, 0.00331766787, -0.033708, -0.00499812514, 0.00651795091, 0.0118805869, 0.0223031305, 0.0139502678, -0.0149387727, -0.0148028536, 0.0189916398, 0.0157048628, -0.0132953841, -0.00245272648, -0.0079883514, 0.0132706715, -0.0069751339, 0.0193129051, 0.000865713635, -0.0116025703, 0.0241812877, 0.0169652067, 0.000926722889, -0.00758677116, 0.0129988324, 0.0150376232, -0.00111747335, -0.0213887636, -0.0178795736, -0.0163721032, 0.00411464972, -0.011763202, 0.00676507689, -0.0009707422, -0.00971205533, -0.0101383477, 0.00240330119, 0.0304953605, -0.00830343645, 0.00722843828, -0.00397873, -0.000509311445, -0.0193129051, -0.0244531278, 0.00166037842, -0.00448842766, -0.00381500903, 0.000246739975, -0.00937225763, -0.0104225427, -0.00392003777, 0.000929811969, -0.0170517, 0.0105522843, 0.0284936391, -0.00295161223, -0.000341922132, 0.0213146266, -0.0103484057, 0.0154577373, -0.00663533574, -0.00382118719, 0.0051927371, -0.0381068438, 0.020869799, 0.0166068729, 0.0020943936, -0.0318051279, -0.0324476548, 0.013233602, -0.0156060131, -0.00302575016, 0.0165450927, 0.0128258448, 0.0215864647, 0.0101074576, 0.00676507689, -0.0323240943, 0.000375708885, 0.0102804452, 0.0111886337, -0.00335164764, -0.022340199, -0.0076547307, -0.00504446123, 0.00555107, -0.0192881916, -0.000497727422, -0.0205608904, 0.000600053056, 0.00339798373, -0.0103607615, -0.00796363875, -0.0223772675, -0.00682068, 0.0258246772, 0.00100394979, -0.00266587269, -0.00132830278, -0.00241565751, 0.0172617584, 0.0177436545, 0.0118558742, 0.00475717755, 0.000144896985, 0.00837757438, -0.00408684788, 0.00400962075, 0.0129370512, 0.00375013845, 0.00394166121, 0.0201407764, 0.0150129106, -0.00128660025, -0.00402506627, 0.0120721096, 0.00489927502, -0.00523598399, 0.00658591045, -0.00180556509, -0.00763619645, 0.00884711463, -0.0168045741, 0.0231433585, 0.0147904968, -0.0136166476, -0.00819840841, -0.000258517073, -0.00408684788, -0.0141973943, -0.00868648198, 0.00542132882, 0.0167427938, 0.00857527554, -0.00361730834, -0.0241689328, 0.0100271413, -0.00376558397, 0.00636967504, 0.0153712435, -0.0193623304, 0.0119485464, 0.00988504384, -0.0217470974, 0.00395092834, 0.0354625955, -0.0105522843, 0.0190163534, 0.00625846861, 0.0178177916, 0.0027570005, -0.00952671096, -0.00562520791, -0.00471084146, -0.0529838353, -0.0113369096, 0.0225131866, 0.0207215231, 0.0170517, -0.0039941757, -0.00131980784, 0.0222289916, 0.0150746917, 0.0249103103, 0.0256764013, 0.00114295818, -0.0064561693, 0.00696895598, -0.0167180803, -0.0146792904, 0.0159767028, 0.00834050588, -0.0189545713, -0.0240947939, 0.0149881979, -0.0222166367, 0.0288890414, -0.00945257302, 0.0103607615, -0.0017731298, 0.00646852562, -0.00415789662, 0.0119979717, 0.00390150328, -0.00254539889, 0.00454712, 0.0218335912, -0.013023545, 0.00526687503, -0.0110959616, -0.0163968168, -0.0349436291, -0.00476953387, 0.009557602, 0.00894596428, 0.0236993935, -0.0163597483, -0.00875444245, 0.00433706306, 0.0237117484, 0.00547384284, -0.00230136188, 0.0137649234, 0.0102186641, -0.00727786357, 0.0173111837, -0.0143456701, -0.00651795091, -0.016854, -0.00513095548, 0.00397873, -0.023736462, 0.0415913239, -0.00164956669, -0.0109538641, -0.0212034192, -0.00167427934, 0.00523289526, 0.0274804216, -0.00484367134, -0.00984179694, 0.000196832072, 0.012078288, -0.0106017096, -0.0202149153, -0.00212991796, -0.0131347524, 0.00234151981, 0.0150376232, -0.0055572479, -0.000581904722, 0.0111268526, -0.00375013845, 0.00905717164, 0.0253551379, -0.0125601841, 0.0136784296, -0.00264116027, 0.00345358718, 0.0028373166, -0.0175953787, -0.010471968, -0.00966880843, 0.000800843, 0.0116211046, 0.0170640573, 0.00910659693, 0.0232916344, 0.0133324526, 0.00624302309, -0.0144321639, -0.0116025703, -0.00298404763, 0.0166562982, -0.00464906, -0.00449769478, 0.0192264095, -8.09917183e-05, 0.0356355831, -0.0316815674, 0.010082745, 0.0143456701, 0.0107438071, 0.000602756, 0.0370194912, 0.00272456533, -0.00810573623, -0.00405286811, 0.0324723683, 0.0129494071, -0.00742613943, 0.00847642496, -0.0165821612, -0.00468612881, -0.0133818779, -0.0376620181, -0.00568698952, -0.0143456701, 0.00459654536, 0.00371924788, 0.000160438896, -0.00350610144, -0.00812427048, -0.0150376232, 0.0089892121, 0.00419187639, -0.00679596746, -0.0181761254, 0.00100703887, -0.0189298596, 0.00741996104, 0.0134683726, 0.00535954721, 0.0222784169, 0.00129200611, 0.00227356, -0.00837757438, -0.0026473382, 0.000107538464, 0.00453476375, -0.0141232563, 0.0226367507, 0.0110032894, -0.00790803507, -0.0104843248, -0.0152353235, -0.00644999091, -0.00483749341, -0.0196588803, -0.00383045455, 0.0236746799, 0.0155318752, 0.00541515043, -0.0289631784, 0.0192016978, -0.0254292749, -0.00618742, 0.00191368267, 0.00300876028, 0.0134313032, 0.0140120499, -0.0288396161, 0.0030211166, -0.00650559459, -0.000685774896, -0.0128258448, -0.0115716793, 0.00290836534, 0.00279406947, 0.00844553392, 0.00451005111, -0.0166068729, -0.00131285738, 0.00803777669, 0.0125787184, 0.00569007825, 0.00909424, -0.00794510357, -0.00565609848, -0.00446989341, 0.000294620637, 0.00184417854, -0.00134915404, 0.0111392085, 0.0027585451, 0.0138390614, 0.00271220901, 0.0107994108, -0.0284689255, -0.000129644672, 0.000607003458, 0.0137649234, -0.00243110303, 0.0137525676, 0.0146792904, 0.00394783961, 0.00236159866, 0.000825555646, -0.00612872699, -0.0155071625, 0.00493943272, 0.00789567921, 9.15621495e-05, -0.0247496795, 0.0268626064, 0.000523212308, -0.0267143305, 0.00355861569, -0.0225749686, 0.00234769797, -0.0259729531, 0.00295161223, -0.0095514236, 0.00195229612, 0.0178425051, -0.00402815547, 0.0326206461, -0.0042135, 0.0220930725, 0.00179938693, 0.00966263, 0.0233781282, -0.00341342925, -0.00125957082, -0.00437104283, -0.0261953659, 0.00315858051, -0.0199183635, 0.0134313032, 0.00983561855, 0.0228715204, 0.0172370449, -0.00075527915, 0.0212775562, 0.00968116522, 0.0135177979, -0.00176077348, -0.00843317807, 0.0041393619, 0.00931047555, 0.0146175083, -0.0189298596, -0.0102495551, 0.00158006244, -0.0243172087, 0.00972441211, -0.0117755588, -0.0059310263, 0.00723461667, -0.0222537052, -0.00899539, -0.00128351117, 0.00508770859, 0.00469539594, 0.0165821612, -0.00347212167, 0.0189792849, -0.00305973, 0.0175335966, -0.00756823691, -0.0104905032, -0.00609165849, -0.0116952425, 0.00685157115, 0.00663533574, 0.000855674094, -0.0038057419, -0.00120628427, -0.00890889578, 0.0106820259, -0.00573023641, 0.0149387727, -0.0132088903, 0.00868648198, -0.0173853207, -0.0104040084, -0.0242677834, -0.0117693804, -0.00699366862, -0.0221177861, -0.00961938314, 0.0138267055, 0.00505372882, -0.00915602222, 0.02688732, 0.000954524556, 0.0123995524, -0.00319719384, -0.044754535, -0.0174718145, 0.000655270298, -0.0203508344, 0.0087729767, 0.0108055882, 0.00560358446, -0.00488074031, 0.00565609848, 0.00989122223, 0.00611637114, -0.034029264, -0.00441428972, -0.0226614624, -0.00485293893, -0.00914366543, -0.00861234404, 0.0200295709, 0.000633646734, -0.00564374216, 0.00565918768, -0.000412777823, -0.00369144604, 0.00569007825, 0.0123686614, -0.0134189473, -0.0146545777, -0.00428763777, -0.0279499609, -0.00612872699, 0.0108426576, -0.000696972827, 0.00703073759, 0.0211416371, -6.88284781e-05, 0.0143950954, -0.0180772748, 0.00322190649, -0.0138267055, 0.00688864, 0.0149264159, 0.0127393501, -0.0197330192, -0.008507316, -0.0117817363, -0.00205732486, -0.0203755461, 0.0211539939, -0.0176200904, -0.00162330957, -0.00395401753, -0.0219077282, 0.00138081703, -0.00427528145, 0.00348756695, -0.0224266928, -0.0212775562, -0.000101456848, 0.0175706651, -0.00979237165, 0.0111948121, -0.00020078996, -0.0104163652, 0.0228220951, -0.00130359014, -0.0139255552, -0.00303965108, -0.00258246763, -0.0149017032, -0.0157048628, -0.00598971872, 0.0103113363, 0.000905099325, -0.00412700605, -0.0232422091, -0.00465214858, 0.0123192361, -0.00372542581, -0.00118543301, 0.0705792159, 0.0275545605, 0.00813662633, -0.00817987416, -0.0115963919, -0.0183985382, -0.0229456574, 0.0284195021, -0.0088100452, 0.0118867652, -0.0203137659, 0.00688246172, -0.005303944, 0.00108349347, 0.00173297175, 0.0214752574, 0.00716665667, -0.00150669692, 0.0171629079, 0.0113986917, -0.00525142951, 0.00421041111, 0.00992829073, -0.00506299594, 0.00160014152, 0.0199060068, 0.00639438769, -0.0227356013, -0.0193252601, 0.00276472326, -0.00361113017, 0.00185344578, -0.00196001888, -0.00394166121, -0.0407263823, -0.000480351358, 0.0160631966, 0.0101568829, 0.00563447503, -0.0109291514, 0.0203755461, -0.0159272775, -0.0046675941, 0.0183738247, -0.00269985269, -0.00233843061, -0.0111824563, -0.00408684788, -0.00403742259, -0.0142715322, 0.00807484519, 0.0236128978, -0.00354934856, -0.0159767028, 0.0223772675, -0.00654266356, 0.0247249659, -0.00837139692, 0.0198689383, 0.0141603258, 0.0222907737, 0.0125663625, 0.014209751, -0.0016789129, -0.00455947639, -0.00439575547, -0.00908806268, 0.0174965281, 0.00947728567, 0.003360915, 0.00392003777, 0.0048838295, -0.0179413538, -0.00157774566, -0.000741378288, 0.00225657015, -0.0042135, 0.0237611737, 0.00685157115, -0.016038483, -0.00155380531, -0.00744467368, -0.0127022816, -0.00835286174, -0.0330654718, 0.00758677116, -0.013097683, -0.0212404877, 0.000537885411, 2.79464857e-05, -0.000251373567, 0.00790185668, -0.0120535754, 0.0358579978, -0.00590322446, 0.00106650358, -0.00544913067, 0.015964346, 0.0240947939, 0.0121709602, 0.015470094, 0.0108797261, -0.00966880843, -0.00605150033, -0.00755588058, -0.00357097201, 0.010712916, -0.0137154981, 0.0285677761, -0.0195723865, 0.00953288935, 0.00469539594, 0.0178425051, 0.0300258212, -0.00588160101, -0.00485911686, -0.00984797534, -0.0150994044, 0.0032836881, -0.0126404995, 0.00161404232, 0.00429381616, 0.0106264222, -0.0129123386, 0.00476026628, -0.0164462421, 0.0280488115, 0.0140861878, 0.00310915522, -0.013097683, 0.0119114779, -0.0250709429, -0.00485293893, -0.0112195248, -0.00134529267, 0.0416901708, -0.000842545531, -0.0111021399, -0.00404977892, 0.0289384667, -0.0136413602, 0.00308753178, -0.00794510357, -7.49583633e-05, -0.0210427865, -0.0114851855, 0.0174841713, -0.0256516896, 0.0269367453, -0.00924251601, -0.00510315411, 0.0151611865, -0.0103422273, -0.00569316745, 0.0123439487, -0.00416407455, 0.015124117, -0.029482143, 0.0232051406, -0.0199677888, -0.00211756164, -0.00173606083, 0.0359568484, 0.000854129554, 0.00555107, -0.0273321457, 0.00554180285, 0.000185054974, 0.01491406, 0.00710487552, 0.0287654772, 0.0117817363, 0.00446371501, 0.000922861509, -0.00879768934, 0.0142221069, 0.00461816881, -0.00247743912, -0.0216111764, -0.00101785059, 0.0138019929, 0.00547075411, 0.0144568766, 0.0288149025, -0.00624611229, -0.00752498955, -0.0123192361, 0.00682068, 0.0169899184, 0.0165698044, -0.00824165531, -0.0111206742, -0.00285430648, 0.00560667319, -0.0050413725, -0.00478497893, 0.0173358954, -0.0167551488, -0.0181019865, 0.00423203455, 0.0132953841, -0.00868648198, 0.0102371983, 0.0241071507, 0.00408993708, 0.0150623359, 0.0133695221, 0.0101630604, -0.000966880878, 0.00698749, -0.0118620526]
10 May, 2024
PHP Tutorial 10 May, 2024 PHP (Hypertext Preprocessor) is a versatile and widely used server-side scripting language for creating dynamic and interactive web applications. This PHP tutorial will give you an in-depth understanding of the PHP scripting language. Whether you are a beginner or a professional PHP developer this free PHP tutorial will provide valuable knowledge about PHP scripting language. What is PHP?PHP is a popular scripting language used for creating dynamic web pages and web applications. The term PHP is an acronym of Hypertext Preprocessor. It is an open-source, interpreted, object-oriented server-side scripting language. With our PHP tutorial, you'll learn all the important topics, including control statements, functions, arrays, strings, file handling, form handling, regular expressions, date and time manipulation, object-oriented programming in PHP, mathematical operations, working with PHP and MySQL, integrating PHP with Ajax, harnessing the power of PHP with jQuery, and more. Table of Content Prerequisites for this PHP TutorialWhat is PHP?Features of PHPHistory of PHPPHP CharacteristicsFirst Hello World Program in PHPWhy We Learn PHP ?Getting Started with PHP TutorialFunctions Complete ReferencesApplications of PHPInterview Questions and Answers:PHP Online QuizPHP Programming ExamplesPHP Tutorial: Frequently Asked QuestionsPrerequisites for this PHP TutorialHTML and CSS: Understanding of basic HTML and CSS.Basic programming conceptsFeatures of PHPOpen-Source and Free: PHP is firstly open source which means anyone can use PHP code without any licensing. Along with this one can run PHP on any operating system like Windows, macOS, Linux, Unix and more.PHP Server-Side Scripting: PHP code executes on the server before sending HTML content to the user's browser, allowing for the dynamic generation of web pages and handling user interactions.Interpreted language: PHP code is interpreted line by line, eliminating the need for compilation and simplifying development and testing processes.Database connectivity: PHP integrates seamlessly with various databases like MySQL, PostgreSQL, and Oracle, facilitating data storage and retrieval for web applications.Object-oriented programming (OOP): PHP supports OOP concepts like classes, objects, inheritance, and polymorphism, enabling better code organization and modularity.Built-in functions: PHP comes with a rich set of built-in functions for various tasks such as string manipulation, date and time handling, file handling, and more, reducing the need for external libraries.Session management: PHP allows for user session management, enabling personalized experiences and storing user data across multiple page visits.Security features: While security considerations are essential for any development language, PHP offers several built-in security features and best practices to help mitigate vulnerabilities.History of PHPPHP is developed by Rasmus Lerdorf in 1994 the very first version of PHP that simply designed to set the Common Gateway Interface (CGI) binaries, which are written in C programming language. The latest version of PHP is PHP version 8 which is released on November 24, 2022. It can be easily embedded with HTML files. HTML codes can also be written in a PHP file. The PHP codes are executed on the server side whereas HTML codes are directly executed on the browser. PHP CharacteristicsSimpleEfficientSecureFlexibleFirst Hello World Program in PHPSimple program to print "Hello world!" message on the screen. PHP <?php /* echo is a print command */ echo "Hello world!"; ?> Output: Hello world! Why We Learn PHP ?PHP is one of the widely used open-source general-purpose scripting languages for backend Development. Apart from this, let's see why we should learn it. Easy to Learn: It is easier to learn for anyone who has come across any programming language for the first time.Free of Cost: Since it is an open-source language, therefore developers are allowed to use its components and all methods for free.Flexible: Since It is a dynamically typed language, therefore there are no hard rules on how to build features using it.Supports nearly all databases: It supports all the widely used databases, including MySQL, ODBC, SQLite etc.Secured: It has multiple security levels and provides us with a secure platform for developing websites as it has multiple security levels.Huge Community Support: It is loved and used by a huge number of developers. The developers share their knowledge with other people in the community who want to know about it.These applications demonstrate the versatility and widespread use of PHP in web development, powering a vast array of websites and applications. Also Check: Recent Articles on PHP Getting Started with PHP TutorialExplore the power of the web with this, free PHP tutorial! We'll guide you through the essential building blocks, transforming you from a beginner to a confident PHP developer. Get ready to craft dynamic web applications and robust server-side functionality with the versatile PHP language! Functions Complete References Array Functions String Functions Math Functions GMP Functions Calendar Functions IntlChar Functions Imagick Functions Gmagick Functions ImagickDraw Functions Image Processing and GD Functions SPL Data Structures DS\Sequence Functions DS\Vector Functions Ds\Deque Functions Ds\Map Functions Ds\Set Functions Ds\Stack Functions Ds\Queue Functions Ds\PriorityQueue Functions Filesystem Functions Applications of PHPServer-side web development: It is a development where the program runs on a server dealing with the generation of content of web pages.Content management systems (CMS): It is a framework already designed by other programmers and coders on which you can either contribute your knowledge and skills or just use those coders’ skills to design your own website or blogE-commerce websites: E-commerce, or electronic commerce, refers to the buying and selling of goods and services over the Internet.Database-driven applications: It is a software application that relies on a database to store, manage, and retrieve data. It utilizes a database management system (DBMS) to organize and manipulate data, enabling efficient data storage, retrieval, and management.Web APIs: It is an API as the name suggests, it can be accessed over the web using the HTTP protocol. It is a framework that helps you to create and develop HTTP-based RESTFUL services.Interview Questions and Answers:PHP Interview Questions and Answers Set-1PHP Interview Questions and Answers Set-2PHP Online QuizPHP Quiz | Set-1PHP Quiz | Set-2PHP Quiz | Set-3PHP Programming ExamplesHere in the section, we have listed some PHP programming examples that will help you to level up your PHP programming skills. Programming ExamplesFrequently Asked Questions on PHP TutorialWhat is PHP full form?The full form of PHP is Hypertext Preprocessor It was abbreviated previously as Personal Home Page. Is PHP easy to learn?Yes, to get a pro in PHP it will take 6 to 12 months so it more towards the easy programming language to learn. Can you learn PHP on your ownYes, you one can easily learn PHP by its own, just get some good resource like GeeksforGeeks and YouTube Why is PHP used for?PHP is used for a wide range of web development tasks, but here are some of its most common applications: What is a PHP developer's salary?The average salary of the PHP developer lies between 3.5 Lakh to 11 Lakh. 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
https://www.geeksforgeeks.org/php-tutorials/?ref=outindfooter
PHP
PHP Tutorial
PHP Tutorial, PHP
GeeksforGeeks
[-0.0618418269, 0.0121706976, -0.0117824208, 0.0389123447, 0.0244825855, 0.0161381755, 0.00169782643, 0.0120789232, -0.0269675534, 0.0403242595, 0.0148109766, -0.00381569704, -0.00174724334, -0.0574084185, -0.0138014574, -0.000242893308, -0.0196679607, -0.0173806585, -0.0548387319, 0.00204021554, 7.19193631e-05, 0.0167876557, -0.0737583786, -0.0335753113, -0.0139991259, 0.0290289484, 0.0141614955, 0.020218607, 0.00424280111, -0.00489934115, 0.0232118629, 0.0220823325, 0.00349625153, -0.026007453, -0.0382911041, -0.00438046269, 0.0164064392, -0.0256544743, -0.0355519913, -0.025682712, 0.060599342, 0.0228165276, 0.0154463369, -0.0199221037, 0.0121918758, 0.0151215969, 0.0103775663, -0.0286618508, 0.0221388098, -0.0230565537, -0.00304267439, 0.033857692, 0.0582273267, 0.0646091774, -0.00144456432, 0.00704545, 0.00708780764, -0.0301867183, 0.000165679259, -0.0119094932, 0.00651245238, -0.0172112305, 0.0222517624, -0.0186090246, 0.0330105461, 0.0301584788, -0.0442493781, 0.0358908512, 0.0438258052, 0.0164346769, 0.00274264254, 0.025343854, 0.00282559264, 0.0125095565, 0.00455695204, -0.00361802918, 0.0175218508, 0.0108787958, -0.00518525345, 0.0395618267, -0.00829499401, -0.00932569057, 0.0569283664, -0.0088597592, 0.018411357, -0.000834352861, -0.0413125977, -0.0484286435, 0.0404936895, 0.0130037265, -0.0113023706, 0.0134343598, 0.000120012679, -0.0231130291, -0.0203739163, 0.00511818752, -0.00270205014, 0.0163782, -0.00451106485, 0.053172674, 0.000829940604, 0.0156440046, -0.000702427118, -0.035834372, -0.00934687, -0.0396747775, 0.00375922071, 0.0128837135, 0.020218607, -0.0115070976, 0.00103157957, -0.0279276557, -0.00452165399, 0.0316551067, -0.016589988, 0.00551705342, -0.00497699622, -0.0834158733, 0.0285912547, 0.00617359346, 0.00771610904, 0.0294807609, 0.00298796268, 0.0486263111, -0.0477226861, 0.0343095064, 0.00129896076, -0.0196679607, 0.00871150848, -0.00635361206, -0.0067736567, 0.0205151085, 0.0167876557, 0.0467061102, 0.021870546, 0.0131237395, 0.0199079849, 0.0384605341, 0.010441103, -0.00869739, -0.040860787, 0.000709927932, -0.00577472756, -0.0257109515, 0.031852778, 0.00936804805, -0.0102293156, 0.0117753614, 0.0163782, 0.00355978776, -0.0421315096, -0.0196820796, -0.00806908775, -0.0150086442, -0.000359817408, -0.0282665156, 0.0215175673, 0.0335470736, -0.0382063873, -0.0411996469, -0.0193855762, 0.0120506845, 0.00704192044, 0.0235789604, -0.0130319651, 0.0481462628, 0.0694661587, -0.0388276316, -0.0465084426, 0.0404654518, -0.0139214704, 0.00424986053, -0.020726895, 0.00134308299, -0.0315421559, -0.00533703435, 0.0152204316, -0.00945276301, 0.00693249702, 0.0168300122, -0.00379098859, -0.0140626617, 0.00709133735, -0.0139355892, 0.0132931685, 0.0411149301, 0.025019113, 0.00561235752, -0.00850678049, -0.0141897341, -0.0476097353, -0.00614888454, 0.0116624087, 0.0263745505, 0.016928846, -0.0103775663, -0.0600910522, 0.0499252751, -0.000895682839, 0.0138579346, 0.00242319703, -0.0836982504, -0.0419056043, 0.0427809879, 0.0358626097, -0.0141261984, -0.00115512207, 0.00286089047, 0.0220258553, 0.0306102913, -0.00989751611, -0.00625124853, -0.0246237777, 0.00347330794, -0.00495228777, 0.00269852043, -0.0137379216, -0.0107870214, 0.013914411, -0.0114859194, -0.00375216105, 0.0354108, -0.00379451853, 0.0134837767, -0.0419620797, -0.0637620315, -0.0216022823, -0.0048675728, -0.00794201531, 0.00423927139, 0.0284641832, 0.0173947793, -0.00170400355, -0.0159828644, -0.000988339656, 0.0118530169, 0.00335506024, -0.0224917866, -0.0539633483, 0.0430916101, 0.0344507, 0.011394145, 0.0148392143, 0.0241719652, 0.01081526, -0.00546763651, -0.00833735149, -0.00145074143, -0.00861973409, 4.80105846e-05, -0.00506171118, -0.0585097112, 0.0112035368, 0.0363144241, -0.058622662, 0.0181995686, 0.0216446389, -0.0203739163, 0.0609382, 0.0228588842, -0.00386864389, -0.00132984633, -0.021545805, 0.0024620248, 0.00943864416, 0.0257533081, 0.0264451467, -0.00933275092, -0.00796319451, -0.0257533081, 0.0830770135, -0.0534268208, 0.0460001528, 0.00659010792, 0.0053123259, -0.000821998576, -0.021305779, 0.00384040573, 0.0277441069, 0.00680189487, 0.0247649681, -0.023522485, 0.0350154638, 0.0494734608, 0.0169570856, -0.00660422677, -0.0251603052, -0.00539704086, -0.0449835733, 0.00263321935, -0.00793495588, -0.0195267685, 0.0146274278, 0.0122907097, 0.0356931835, 0.0267557669, -0.0274052471, 0.0274193659, -0.0256262366, 0.0258521419, 0.0041369074, -0.000567412877, 0.00313268392, 0.0193291, -0.0129401907, 0.00424280111, 0.00158752059, 0.0100528263, 0.00591591885, -0.0688449219, -0.000887299597, -0.0311185811, -0.0110976426, -0.0270522684, -0.0152204316, 0.0311185811, 0.0479203574, 0.00537586212, -0.0202609636, -0.0422162227, 0.0106740687, 0.00130866759, -0.023282459, 0.0246520154, 0.0614464916, -0.00255379919, 0.007161933, -0.00545351719, 0.00931157172, -0.032530494, -0.0435716622, -0.0340553634, -0.00553470245, -0.0127919391, 0.0195408873, -0.0423856527, -0.00870444905, 0.0487957411, 0.0125589734, 0.0120012676, -0.0246520154, 0.0024390812, 0.00880328286, 0.0234518889, 0.0535680093, -0.0477509275, -0.015926389, 0.0122271739, 0.0105116982, 0.0133072883, 0.00139514741, 0.0315703936, 0.0102999117, 0.00941040553, -0.0138932317, 1.14924824e-05, 0.0082243979, -0.0104340436, -0.0199079849, 0.00675600767, 0.0271228645, 0.00709486706, -0.0145568317, 0.00374510139, 0.021955261, -0.043515183, 0.019978581, -0.0114223827, 0.0439669974, -0.0368791893, -0.0150651205, -0.0340836, 0.0121989353, -0.00196962, -0.0420467928, 0.0102293156, -0.00119218475, 0.00185666676, -0.0126083903, 0.000720517302, -0.00619124202, 0.0377545767, -0.0139567684, 0.0347330794, 0.0234518889, -0.0264733844, 0.0133637646, -0.0440799482, 0.00242319703, -0.0284077059, -0.0371615738, 0.000521525682, 0.0150651205, -0.018905526, 0.000818027591, 0.00535468338, 0.00105628802, -0.018905526, 0.0101375412, -0.0248920415, 0.0501794182, -0.018326642, 0.0284218248, 0.0308079608, -0.0282241572, -0.0123048294, 0.0159969833, -0.0279135369, 0.0300172884, 0.00137396867, -0.0184395947, 0.0169853233, -0.0734195188, -0.0123471869, 0.00319974963, 0.0270522684, -0.0259086192, 0.0267840046, 0.00617006328, 0.0324457809, 0.0458307229, 0.0249908753, -0.0125024971, -0.00482168561, 0.00213551964, -0.00177106936, 0.0107164262, -8.09092817e-05, 0.00640302943, 0.0187219772, -0.0199079849, 0.0172253493, 0.00281323842, -0.00148515683, -0.00307091256, -0.0469037779, 0.0314009637, 0.0202327259, -0.00128572399, 0.000987457228, -0.0106599499, 0.00397453737, 0.0138085177, 0.00846442301, -0.0309491511, 0.0371615738, -0.0518737137, 0.0188490506, 0.0101940176, 0.00277441065, -0.0155310519, -0.0248638019, -0.0250332318, 0.0164487958, 0.0466778725, -0.0431198478, -0.0337447412, 0.0137308622, 0.00847148336, -0.0166464634, 0.00133867085, -0.000186637364, 0.0208116099, 0.00498758582, 0.00896565244, 0.00638185069, -0.0129896076, 0.034027122, -0.0105681755, -0.016759418, 0.0190043598, -0.0242143217, 0.0563071221, 0.0293395687, 0.0255415216, -0.0155734094, 0.0131237395, 0.0356931835, -0.0139355892, -0.0160252228, 0.0352131315, 0.030384386, 0.0293678083, -0.0158557929, -0.00063977344, 0.0199362226, 0.0363709, 0.0080832066, 0.034507174, 0.0116553484, -0.0243131556, -0.000869650685, -0.00820322, -0.012467199, 0.00671012048, 0.00370274414, -0.0163782, -0.0203315597, -0.0106881876, 0.0186372623, -0.0394206345, 0.0243696328, -0.0214187335, 0.0208257288, 0.00832323171, -0.000436369621, -0.0180583782, 0.00689366926, -0.0431763269, 0.0238472242, -0.00889505725, 0.0230000764, 0.00517819403, 0.0236072, -0.0137308622, 0.0184537135, 0.0164346769, 0.0108011412, -0.0112035368, 0.00476167956, 0.0152910268, 0.0158416741, 0.0104622813, -0.0196820796, -0.00019722672, -0.0107940817, 0.0263180733, -0.0153898606, -0.0230283141, -0.0610511526, -0.0234236512, 0.0003042233, 0.00773728779, 0.0223647151, -0.00768081145, -0.00552411284, -0.00179401308, 0.0136108492, 0.0234095324, 0.0222376436, -0.0654563233, 0.0312315337, -0.0306950063, -0.0138579346, 0.00216199318, 0.00765963271, -0.0074478453, -0.0107376045, 0.0342812687, -0.00419691391, -0.00709486706, 0.0270663891, 0.011189417, 0.0267275292, -0.00290148286, -0.0206139423, -0.0184254758, -0.0124107227, -0.0124319009, -0.00759609649, -0.000147699422, -0.0120506845, 0.0212916601, 0.00596533576, -0.00870444905, -0.0044298796, -0.00188843475, 1.13752822e-05, 0.0147827379, 0.00137573353, 0.000465049117, -0.0171829909, -0.0220823325, 0.00732077332, 0.0202044863, 0.0343942195, 0.0242566802, -0.0134625984, -0.00777964527, -0.00174106623, -0.0135049559, 0.000931863149, 0.0207410138, -0.000824204704, 0.00301620085, -0.00804084912, 0.0119377319, -0.00717605231, -0.0268263631, -0.0221529286, 0.00811850466, 0.0163923204, -0.0151357166, 0.0099892905, -0.0218564253, 0.0143944612, 0.0136320284, 0.0076949303, 0.01130943, 0.00130337302, 0.00128219428, 0.00611005723, 0.0215175673, -0.00456754118, -0.0187784545, -0.0171123967, 0.0174088981, -0.00621242076, 0.0286336131, 0.0142179728, -0.031626869, 0.0127284033, 0.031372726, 0.0113588469, -0.0112105962, -0.0415667444, -0.00989751611, -0.0275040809, 0.00198726868, -0.0368791893, -0.000550205179, 0.00601475313, -0.021305779, -0.0101234224, -0.0195832457, 0.0171688721, -0.0238754638, 0.00589827029, -0.00454989215, -0.0357778966, 0.0246378966, 0.0161522944, -0.0133002279, -0.0117753614, 0.0234942455, 0.0150933592, -0.0265439805, 0.0157428384, -0.0125095565, 0.0119659696, 0.000501229428, 0.0271087456, 0.0169429667, 0.146161318, -0.0152345505, 0.0197809134, -0.0165476296, -0.00352096022, 0.00308326678, 0.000194910288, -0.0116059314, -0.055149354, 0.0121142203, 0.0148956906, -0.0237907488, -0.00849266164, 0.0116271107, -0.0261204056, -9.2215625e-05, -0.0061947722, 0.00230318448, -0.0319374911, 0.00763139408, -0.00868327, 0.000482256815, -0.0229859576, 0.0310338661, -0.00252203108, 0.00497699622, 0.0141967935, 0.013081382, -0.0226470977, -0.00555235101, 0.025682712, -0.0162511282, -0.0129966671, -0.00601475313, 0.0287748035, 0.0269816741, 0.0183831174, -0.0232259817, 0.000419161923, 0.0169994421, 0.00303737959, -0.00322092837, -0.00335682509, -0.0333211683, 0.0236213189, -0.0186796207, 0.00248673325, 0.00243202155, 0.0106528895, 0.015192193, 0.0175924469, 0.00315033272, 0.00268263626, 0.0106034726, 0.00042291233, -0.0216446389, 0.00285559567, 0.00982692, -0.0092127379, -0.0169429667, -0.0112317745, -0.00532644475, 0.0194561724, -0.00609946763, -0.0182842836, -0.0248779226, -0.00751844142, 0.0431198478, 0.0261204056, -0.0155310519, 0.0206845384, -0.0105328774, 0.0362297073, 0.00648774393, -0.00248320354, -0.023691915, 0.0173947793, 0.0274758432, 0.000929215807, -0.00510406867, -0.0128060589, -0.0262898356, -0.0126366289, -0.0175218508, 0.00839382783, -0.0188490506, -0.000816262676, -0.0168864895, -0.0142956274, 0.0514219031, -0.0219270214, 0.00395688834, -0.0328975916, 0.00176224497, -0.00240025343, -0.0287748035, 0.00828087423, -0.00411219895, -0.0247367304, -0.029311331, 0.0157004818, -0.0244967043, -0.0106387706, 0.0472991131, 0.0225200262, 0.00520643219, 0.0290007107, 0.00108893856, -0.00823145732, 0.0273346528, -0.0362579487, -0.00470167305, 0.0126366289, -0.0196679607, -0.0108576175, 0.0147827379, 0.011683587, 0.00529467687, 0.0199927, -0.00756079843, 0.00741254771, 0.0176489223, 0.00874680653, -0.034253031, 0.00614535483, 0.00209845696, -0.00878210366, 0.019978581, 0.0115847532, 0.0282523967, 0.0170418, 0.0110623445, -0.0141120786, 0.00183901773, -0.042837467, -0.0249626376, 0.0177195184, -0.0253297351, -0.00366038666, -0.0163076054, 0.00500876456, 0.0211787075, -0.0247367304, 0.0115918126, 0.00152839674, 0.0142603302, 0.0164770354, 0.0538786314, 0.0237201527, -0.00540057058, 0.0217011161, -0.010236375, -0.0064312676, -0.0223082379, -0.024186084, -0.0101798987, -0.0289018769, 0.0271511022, 0.0196961984, 0.00399571611, 0.0062794867, 0.0120859826, -0.00786436, -0.00780082401, -0.0259086192, -0.0146697843, -0.00513230683, -0.0185949057, -0.00870444905, -0.0107658431, 0.00945276301, -0.0273628905, -0.0088597592, 0.0306385309, 0.0123895444, -0.0307232458, 0.0301867183, 0.00871150848, 0.00347683788, -0.0113164894, -0.00407690136, -0.0198515095, 0.0354955122, 0.00253615016, 0.00291030738, 0.0254850443, 0.0118247783, 0.00560176838, -0.0298196208, 0.0112953112, 0.0309209134, -0.00527349813, 0.0137943979, 0.0391100124, -0.00535468338, 0.0175924469, 0.0211504698, -0.013744981, -0.011224715, 0.0130672622, -0.00119483203, -0.0286618508, 0.0352978446, 0.00399924582, 0.0224211924, 0.0375851467, -0.00117718312, 0.0192020275, 0.00870444905, 0.00392512046, 0.0300455261, 0.00869032927, 0.00693955645, -0.0392229669, -0.0110199871, 0.0257956665, 0.00247261417, -0.000952159404, -0.0141473766, -0.020557465, 0.0147686191, 0.0216728766, -0.0281394422, -0.0132790497, -0.0013863229, -0.0112953112, -0.052014906, -0.00580296572, -0.00396041851, 0.0186655018, 0.0168582518, 0.0135473134, -0.0132437516, -0.0314009637, -0.0078925984, -0.0120789232, 0.00322622317, 0.0407760702, 0.00640302943, -0.00396041851, -0.00104216894, -0.00143485749, 0.00407337165, -0.0263745505, -0.0123260077, 0.0178607106, 0.0213481374, 0.00724311778, -0.00591944857, -0.0255556405, -0.0437410921, 0.00312562427, 0.0208257288, -0.00554176187, 0.0254285689, -0.028563017, 0.047892116, 0.0119942082, 0.0505465157, 0.00694661587, 0.0146274278, 0.021305779, -0.0061841826, 0.00426045, 0.021715235, 0.00496640708, -0.00502641313, -0.0145850703, 0.0206845384, -0.00244614063, -0.0417361744, 0.0238331053, 0.0136955641, -0.0338294543, -0.00289442344, 0.0399289243, -0.0210375171, 0.0185666662, 0.0293678083, 0.0108364383, 0.0339141712, -0.0027991191, 0.0259368569, -0.0372745246, -0.00138808775, -0.00314327329, -0.0225765016, 0.00565118529, 0.0218846649, -0.00741254771, 0.0200491771, -0.019569125, -0.00125219114, -0.0272781756, 0.00866209157, -0.0568154119, 0.00422515208, -0.00641714828, 0.0140979597, 0.0088527, -0.0130955009, -0.0356367044, -0.013370824, -0.0138720535, 0.0118459575, -0.00139073515, -0.0179877821, -0.0194279347, -0.028887758, 0.00310091581, -0.00341683161, -0.0110199871, -0.0163358431, -0.0233530551, -0.00460989866, 0.00572531065, 0.0206280611, 0.00849972107, 0.00627242727, 0.0285912547, 0.0140556023, 0.0342812687, -0.0020684537, -0.0239884164, -0.0386864394, 0.000677718665, 0.0108505581, 0.0244402289, -0.0212210659, 0.0369921438, -0.00974220503, 0.0228730049, -0.00967161, -0.0338859335, -0.0303561483, 0.0362861864, 0.015926389, 0.00455695204, -0.0059018, 0.00529820658, 0.0141120786, 0.0363991372, -0.0387711525, -0.00882446114, -0.00307620736, 0.0114012044, -0.001228365, -0.0130602028, 0.000685660634, -0.0324740186, -0.0392512046, -0.000157957867, 0.00273028831, -0.00281676813, 0.0321351588, -0.00948100165, -0.0141544361, -0.000166892627, -0.0135473134, -0.0269534346, -0.0368791893, 0.0511677563, 0.0603734367, 0.0123895444, -0.00991869438, -0.026911078, 0.021545805, -0.011888315, -0.0308644362, 0.00108540873, -0.0279135369, 0.00153545628, 0.00674188836, -0.028887758, -0.00262968964, -0.00713722454, -0.017663043, -0.0323045887, 0.0122977691, 0.0225906223, -0.00806908775, -0.00638185069, 0.0117330039, 0.0142956274, -0.00222552917, 0.00305679347, 0.0255556405, -0.0085209, -0.00411219895, 0.0151357166, -0.00251497142, -0.0230989102, -0.0200350583, -0.0270381495, -0.0461978205, -9.88615466e-06, -0.00322798803, -4.34880494e-05, -0.0155451717, 0.00974926539, 0.0127284033, 0.00161752384, -0.0204586312, -0.0123542463, 0.000747431885, -0.0107376045, -0.0130249048, -0.00500170467, -0.0209386814, -0.00389335235, -0.0059865145, -0.0264451467, 0.00798437279, -0.0135755511, 0.00369215477, 0.012177757, 0.000725370715, -0.00572178094, -0.0110482257, -0.00847148336, 0.0103069711, -0.00561941694, 0.0302714333, 0.0063359635, -0.00697838422, -0.0139426496, 0.0202468447, 0.000618153543, -0.0235507227, 0.0107446639, 0.0116553484, 0.00460636895, 0.00381216733, 0.00832323171, -0.0159405079, 0.00945276301, -0.0215599239, 0.0070207417, -0.00232789293, 0.0100245886, 0.0124883782, -0.00328975916, -0.0427245125, 0.0220399741, -0.0202892013, -0.00591238914, -0.0238189865, 0.000459754432, 0.00763139408, 0.000602710701, 0.0197244361, 0.00391806103, 0.00752550084, 0.0164911542, 0.0699744523, 0.00786436, -0.0055982382, 0.00135455478, -0.00159722753, -0.0029967872, -0.00108805613, 0.00655833958, 0.0155310519, -0.00801967084, 0.0134061221, -0.000367980043, 0.0237483904, -0.000217633278, -0.0231271479, 0.0234377701, -0.0156440046, 0.00239142915, 0.0166323446, -0.0253014956, -0.0173947793, 0.0106881876, 0.0115141571, -0.0203456786, 0.0126295695, 4.79002811e-05, -0.00617712317, -0.00804084912, -0.0378392898, -0.0219834987, 0.0153475031, -0.0173806585, 0.00877504423, -0.00786436, -0.00346448366, 0.0126507478, 0.00419691391, 0.0108293789, -0.019893866, 0.00292619155, -0.00442635, -0.0210233964, -0.0354390368, 0.00978456251, 0.0184960719, 0.0127637014, -0.00520290248, -0.00532291504, -6.92168687e-05, -0.0142250322, -0.0220964514, -0.0256544743, 0.0173806585, 0.00208080793, 0.0114082638, -0.00220082072, -0.0039357096, 0.0127142845, 0.0122201145, -0.00371333351, -0.0126931053, -0.00596180605, 0.0263463128, -0.0182984024, 0.00782906264, 0.0114012044, -0.0037768695, 0.00979162287, -0.00479697715, 0.0188631695, 0.00567236403, 0.0266851708, -0.00311327, 0.0102646137, 0.0109705701, 0.0156298857, 0.00745490519, 0.0247649681, 0.00342742074, -0.0113729658, -0.0116412295, 0.00836558919, 0.00235436624, 0.015107478, -0.0129472502, -0.00522408122, -0.0102857919, 0.0119377319, -0.0088597592, -0.00700662239, 0.00727135642, -0.0320504457, 0.00186549115, -0.0174794942, 0.0187643357, 0.00743372645, 0.0124813188, -0.000191159896, -0.00359155587, -0.00633243378, 0.00703486055, 0.0222235247, -0.00660422677, -0.0301867183, 0.00234554196, -0.00539351068, 0.0172394682, 0.00743372645, -0.00100334128, 0.0223223586, 0.000914214237, 0.00633949321, 0.00715487357, -0.00122307031, 0.0200350583, 0.0146697843, 0.0149380481, 0.00579943601, 0.0148250954, 0.00351919513, 0.0065830485, 0.033349406, 0.0023384823, -0.0274193659, -0.00119306718, -0.0147403805, 0.00320857414, 0.0254709255, -0.0108011412, 0.025259139, -0.022294119, 0.0211081114, 0.00498052593, -0.0155169331, -0.0199503433, 0.00587709155, 0.00255203433, 0.0379240066, 0.00529820658, 0.00678424584, 0.0108787958, -0.00696073519, -0.0296784285, -0.00975632481, -0.012961369, 0.0189337637, -0.015107478, 0.0078925984, 0.00938922726, 0.00297737331, -0.0107940817, -0.00981280115, 0.00277441065, 0.00709839677, 0.0208680872, -0.0251603052, 0.0211222302, -0.0116553484, 0.0114859194, 0.0253156144, 0.00840794668, 0.0315986313, 0.00938216783, 0.00593356788, -0.0251320656, 0.00297207874, 0.00891623553, -0.018905526, 0.0139708873, 0.0278570596, -0.00449341582, -0.00612417608, 0.00707015861, -0.0132084535, -0.00321210409, 0.00219376106, 0.0650609881, -0.0126013309, 0.0262898356, -0.00733489217, -0.0202750824, 0.010031648, 0.00418632431, 0.0251179468, -0.0274476055, -0.00635008235, -0.000888182, 0.00175959757, 0.00660069706, 0.0281818, -0.0279700123, -0.00494169863, 0.0142603302, -0.00326681556, 0.00669247145, 0.00810438581, 0.0231271479, -0.0207833722, -0.0212069452, 0.0068795504, -0.0133496458, 0.000383422856, -0.0147262616, 0.00761021581, -0.00457107089, 0.01081526, -0.0228730049, -0.00582767418, -0.0209951587, -0.0135473134, 0.00367097603, 0.00233142264, -0.0184678324, 0.00382628641, 0.00669953134, -0.000818468805, 0.000386732019, -0.00084053, 0.0148956906, -0.01081526, -0.00050255307, -0.012876654, 0.011563574, -0.013420241, 0.0091915587, -0.00575707853, 0.0141403172, 0.0129119521, -0.00155222276, 0.0357778966, -0.0328411162, 0.0367662348, 0.00593356788, -0.00936804805, 0.0311185811, -0.021051636, -0.0122765908, -0.0186090246, -0.0325022563, 0.0136037897, 0.0109988088, 0.0125589734, -0.0279982518, -0.0108717363, 0.0159546267, 4.92515246e-05, -0.00594415748, -0.0115706343, -0.0173806585, 0.00563353626, -0.0338012166, -0.0191596709, 0.0289442334, -0.0134767173, 0.0232259817, 0.00956571661, -0.00373451202, 0.000341506646, -0.0249767564, -0.0342247933, -0.00737019, 0.0286194943, -0.00135102507, 0.0108011412, -0.00155222276, 0.0258239042, -0.0107799619, -0.00964337122, 0.00324034225, 0.0181007348, -0.0146274278, 0.0170982759, 0.000612417643, 0.0121212807, -0.00444399891, -0.00259615667, 0.00672776951, 0.0021143409, -0.0356084667, -0.010935273, -0.00917744, 0.0353825614, -0.0104693407, -0.0120506845, -0.0148109766, 0.0205292273, -0.00574648939, -0.0063747908, -0.00305149867, -0.0161381755, 0.0316551067, 0.0234942455, -0.0117612425, 0.00222729403, 0.00801967084, 0.0410584547, 0.00649127411, -0.0164629146, -0.00112511881, -0.0140061853, -0.0206704177, -0.0203739163, -0.0301302411, 0.0018266635, -0.00165282167, 0.0135120153, 0.00511818752, 9.78412136e-05, 0.00513583655, -0.0118671358, -0.00364979729, -0.0314574391, 0.00580296572, -0.0324175432, -0.0220682137, -0.0099892905, -0.0334058814, -0.00403101416, -0.00428515859, -0.0114859194, 0.0297066681, -0.0208539683, -0.00549940439, -0.0105328774, -0.0112035368, -0.00761021581, 0.016349962, -0.0217575915, -0.00312915398, -0.00737724965, -0.00639244, -0.0274052471, -0.00325622619, 0.0165758692, -0.00227141636, 0.0116129909, 0.00404513301, -0.00320504443, 0.0144015215, -0.0202044863, -0.00986927748, 0.000361361686, -0.00286795, 0.00931157172, 0.0298196208, 0.00684072264, -0.000377466349, 0.0214469712, -0.00493816845, -0.00220258557, -0.00582061475, -0.0117683019, 0.015107478, 0.0152627882, 0.0375004299, 0.0264733844, 0.0216446389, 0.0174936131, -0.00430280762, -0.00291207223, -0.023522485, 0.00581708504, 0.00807614718, -0.00583473407, -0.00626889756, -0.000841853616, -0.0335188359, -0.0108717363, 0.0369921438, 0.0280547272, 0.00145162386, -0.00228553545, 0.0359755643, 0.00520290248, -0.00718664145, 0.0240025353, -0.000960101432, 0.0273770094, 0.0235789604, -0.0160958171, -0.030384386, -0.0250473507, 0.00206139428, -0.0248638019, -0.0137238028, 0.0159405079, 0.00424280111, 0.0110270474, 0.0180724971, -0.00502641313, 0.00926921424, -0.00414396729, 0.0147686191, 0.0124177821, -0.00148780423, 0.0091915587, -0.0165476296, -0.00990457553, -0.00878916401, 0.0192020275, -0.000457107119, 0.000287456845, -0.00534409378, 0.00297913817, 0.0142673897, -0.0102928523, -0.00558411935, -0.0209810399, 0.00327034551, 0.00258203736, 0.00634655263, -0.00977750309, -0.0293395687, -0.0191455521, 0.00753256027, -0.00668188231, 0.0175642073, 0.023282459, 0.0140697211, 0.0110411663, -0.0108505581, 0.0122201145, -0.0188914072, -0.00973514561, -0.000242672686, -0.0059018, 0.0291419011, 0.0287465658, -0.0234660078, -0.00508641964, 0.00526290899, 0.012551914, -0.0250473507, -0.00602534227, -0.0166041069, 0.0213340186, 0.011888315, -0.00445105834, -0.00597945508, 0.0107376045, 0.00532291504, 0.00480403705, -0.0177759957, -0.0203597974, 0.00593356788, 0.0119377319, -0.000582414446, 0.00647009537, 0.00297560846, -0.0112388339, 0.0172112305, 0.0109917494, -0.0118671358, 0.00444399891, -0.015107478, 0.00131837453, -0.0169853233, -0.0231836252, 0.029311331, 0.000458872, -0.00650892267, -0.000536527252, -0.00421103323, 0.0106175924, 0.00963631179, 0.0137591008, 0.00129190111, 0.0216022823, 0.0212210659, 0.00785024092, 0.0133284666, -0.0278711785, 0.00631831447, -0.00195197086, 0.0215599239, -0.00214610901, -0.014698023, 0.00458872, -0.00531585561, 0.00218846649, -0.0174512547, 0.0232259817, -0.00111452944, 0.0158416741, 0.0352131315, 0.0439952351, 0.00766669214, 0.00245496514, 0.0191314332, 0.0100881243, 0.00285206595, 0.00554176187, 0.00386158423, -0.0107093668, 0.0162228905, 0.0139567684, -0.0101657799, -0.00387217361, -0.0148815718, -0.000882887398, 0.00533350464, -0.0158416741, 0.012213055, 0.00695367577, 0.0311750583, 0.00460283924, -0.00133778842, -0.00228200573, 0.0144368187, 0.00866209157, 0.0144579979, -0.0203174409, -0.0186372623, 0.0178042334, 0.00584179349, -0.0241578463, -0.0146274278, -0.019074956, 0.0103069711, 0.00787141919, 0.0298478585, 0.00300561148, 0.0170418, -0.0130955009, 0.000257453677, 0.00362508884, 0.00777258584, 0.017253587, 0.0173665397, 0.00605358044, -0.00291030738, 0.00890211668, -0.00515701529, 0.0136179086, 0.0110411663, -0.017338302, -0.000608005386, 0.00643832702, -0.00137838093, 0.00265439809, 0.00110835233, 0.0314292, -0.0254426878, 0.00158840301, -0.0139214704, -0.013744981, -0.00419691391, -0.00249026297, 0.0170276817, 0.00461342838, 0.00559470849, 0.00391100114, -0.00948100165, 0.00515348557, 0.026247479, 0.0102787325, 0.000137661598, -0.0135261342, -0.0132366922, 0.0256262366, 0.00845030416, -0.00608534878, 0.00692190742, 0.00548881525, 0.00917744, -0.0105611151, -0.0126789864, -0.0140979597, 0.00517819403, -0.0199079849, -0.014613308, 0.00787141919, 0.000848913216, 0.0257109515, 0.0264169071, 0.0111541189, 0.0088597592, -0.00777964527, -0.0142673897, -0.0159405079, -0.00617712317, -0.0271228645, -0.00789965782, -0.00378392916, 0.000350110524, 0.0297349058, 0.0132719902, 0.0199079849, -0.0214187335, -0.0188772883, 0.013709683, 0.0149098104, -0.0173241831, -0.00063183147, 0.00271793408, -0.00250261719, -0.0156298857, -0.0172677059, -0.012262472, -0.000106003841, -0.00573943, -0.0125942715, 0.00794201531, 0.00328446459, 0.00226082699, -0.0235507227, -0.0205715839, -0.0142956274, -0.0158840306, -0.0107446639, 0.0110341068, -0.0251320656, 0.00608534878, 0.00730665401, -0.0109705701, -0.0132790497, 0.0177195184, 0.00852796, 0.00622654, 0.0219834987, -6.21573e-05, 0.00864797272, -0.00957277603, 0.00057359, 0.0199079849, 0.00494169863, 0.0131096197, -0.00100775354, -0.020966921, -0.00592650846, 0.0053123259, 0.00607122947, -0.0131378584, -0.00491699, -0.0192020275, -0.00464166654, -0.028238276, -0.012213055, -0.0201480109, 0.0190608371, 0.0211222302, 0.0111823576, 0.00548881525, -0.0100034093, 0.0133214071, 0.0125166159, 0.00373451202, -0.00266498746, 0.0181995686, -0.00973514561, 0.00919861905, 0.00672071, -0.00620536134, -0.00127866445, 0.00643479731, -0.014698023, 0.0154039804, 0.00237025041, -0.0109635107, -0.00504406216, 0.0104693407, 0.00103510928, -0.00703486055, 0.00187961035, 0.00656539947, -0.0210233964, 0.000263630791, -0.00583473407, -0.0147403805, 0.0147544993, 0.0193855762, -0.0193432197, 0.0161381755, -0.00767375156, -0.0179454256, 0.0236354377, 0.0169147272, -0.00423927139, -0.00743372645, 0.0248779226, -0.0102010779, 0.00135278993, 0.00375922071, -0.0414537899, -0.0150227631, -0.0263180733, -0.0114647401, -0.00790671725, 0.0118530169, 0.0110764643, -0.0105328774, -0.000227671102, -0.0307232458, 0.00477932813, 0.0209951587, -0.0367944762, -0.0113870855, 0.0154604567, 0.0105328774, 0.0251885429, 0.0306667686, 0.00620536134, -0.0267557669, 0.00770199, -0.00508289, 0.0100740055, 0.0203739163, 0.0217293538, 0.00902213, 0.00559470849, -0.0150510017, 0.00252203108, -0.00327564, -0.0181995686, -0.00744078588, -0.00416867575, 1.43811149e-05, 0.0136532066, 0.00595474662, -0.0119589102, 0.00817498099, 0.0211222302, -0.0082738148, -0.00149221648, -0.0127919391, 0.00873974711, -0.00597945508, -0.0198373888, 0.0149239292, -0.00802673, -0.0181289744, 0.0152627882, 0.0184537135, -0.00487816241, -1.31746456e-05, 0.00249908748, -0.0151780741, -0.00519231334, 0.0158557929, 0.0170276817, 0.00854207855, -0.0015822259, -0.00298090302, 0.00305855833, -0.00630066544, -0.0023155387, 0.031372726, 0.0193008613, -0.00862679351, 0.0324740186, 0.0106175924, -0.0145568317, 0.0129825482, -0.0126931053, -0.00463107741, -0.0127142845, -0.00611005723, 0.012177757, -0.00871150848, 0.0100387074, 0.00723605836, 0.00294913515, 0.00168547209, 0.00207904307, 0.0240731314, -0.0273064133, -0.0216446389, -0.00693249702, -0.00712663494, 0.00462048827, -0.00312738912, -0.00367097603, 0.0221529286, -0.0166323446, 0.00150192331, 0.033603549, -0.0166323446, 0.00392512046, -0.00418632431, 0.00709839677, 0.00420044363, -0.00620183162, 0.0137591008, 0.039703019, 0.0116694681, 0.0127425222, 0.0239319392, 0.0200209375, 0.00646303548, 0.00282912236, -0.00141809101, 0.023282459, 0.0190184787, 0.015926389, 0.024934398, -0.00494875805, 0.0217858311, 0.0013889703, 0.0115565145, 0.0120365657, -0.0125448545, -0.014613308, 0.0118741952, -0.00680189487, 0.0116624087, 0.00635714224, 0.0105116982, 0.00956571661, 0.00178430614, -0.00845030416, 0.00456754118, 0.00669600116, -0.017253587, 0.0108293789, 0.000380775513, 0.00609593792, -0.0068795504, 0.0216728766, 0.0115847532, -0.00804790854, 0.0125942715, -0.0119871488, 0.0226470977, -0.00434516463, 0.00563000655, 0.000732871529, 0.0133567052, 0.00922685675, 0.0206845384, -0.0180724971, -0.0211787075, -0.00284324144, -0.0141261984, -0.0200491771, -0.0247367304, -0.0152769079, -0.00859149545, -0.00514289597, 0.00410866924, 0.00976338424, -0.0158699118, 0.0145427128, -0.0082243979, -0.0127284033, 0.0129331304, -0.000479168259, 0.0314856768, -0.0246378966, -0.043910522, -0.00471579237, 0.0279558934, 0.00547116622, 0.0108787958, -0.00315915723, 0.0223223586, -0.0159546267, -0.0248355642, -0.0177759957, -0.0167452972, 0.0208963249, 0.0103705069, -0.0220117364, 0.0121495184, -0.00852796, 0.0032385774, -0.00684778206, -0.00322975288, -0.00680189487, -0.0162087716, -0.0222376436, -0.00267028203, -0.0121848164, 0.0120789232, -0.00288736378, 0.00158928556, -0.00782200228, -0.0263463128, -0.00361802918, -0.0184960719, -0.0212069452, 0.00781494286, -0.00565824471, 0.00505818147, -0.0190608371, 0.0167452972, 0.00163958489, 0.00242672698, 0.00927627366, 0.0219834987, -0.002785, 0.0160252228, 0.0237342715, 0.0130743226, -0.0124107227, 0.0081891, -0.00382981636, -2.31366357e-05, 0.0114012044, -0.0266851708, 0.00515701529, -0.0102434345, -0.00147456757, 0.0282947533, 0.00525937928, -0.0107446639, -0.021305779, 0.00704192044, -0.00277970545, 0.0109493919, 0.00227318122, -0.00737724965, 0.0088809384, 0.0342812687, -0.00557352975, -0.0210233964, -0.0108576175, -0.0285912547, 0.000695808791, 0.0264027882, -0.0177618768, -0.00732783275, 0.0224917866, -0.013166097, 0.00406984147, 0.0142673897, 0.0169853233, -0.00744078588, 0.0213763751, 0.00321210409, -0.00138544047, -0.0241719652, -0.00432751607, -0.00562647684, -0.0168158934, -0.0268687196, -0.00558411935, 0.0259509757, 0.00535468338, 0.0117824208, -0.00313444878, -0.0334623568, -0.0250332318, 0.00220964523, 0.0147121418, 0.00786436, 0.0019678548, 0.0151498355, -0.00678071612, -0.013250811, -0.00627242727, 0.0169853233, 0.00174900831, 0.028563017, 0.00950218, 0.00511112809, -0.0125307357, 0.00112247153, 0.0069642649, -0.00971396733, -0.00233671744, -0.00804790854, 0.0154180992, -0.0106670093, 0.0125942715, 0.0267416481, -0.00806202833, -0.00732783275, -0.00716899242, 0.00372392265, -0.00918449927, 0.000563883106, 0.014698023, -0.00717252214, -0.0245531816, -0.0147262616, -0.0144721167, 0.00422162237, 0.000108816639, 0.0199079849, -0.0134131815, -0.00701368181, 0.00809026603, -0.0303279087, -0.00914920121, 0.0055029341, -0.0031203297, 0.00859855488, -0.00825263653, 0.00573943, -0.0136955641, 0.0225200262, -0.00372039294, -0.00755373901, 0.00373451202, -0.0138367554, -0.00427103927, 0.00447929651, -0.00834441092, 0.00513230683, 0.00253262045, 0.0131307989, -0.00529467687, 0.0257391892, 0.000742137199, 0.00748314336, -0.00845030416, -0.0192585047, -0.007059569, 0.0189478844, -0.0138014574, 0.0200068187, 0.0149804056, -0.00597239565, 0.000941570033, -0.00434869481, -0.00933981, 0.016759418, -0.00776552595, 0.0229012426, -0.00660422677, 0.00160693447, 0.0115706343, 0.0153192654, 0.0180866159, -0.000980397686, -0.00860561524, 0.0107517242, 0.00745490519, 0.00238789921, -0.000458872, -0.0259650964, 0.00415102672, -0.0130249048, -0.000365773943, 0.0104905199, 0.0179030672, 0.0155451717, 0.015107478, 0.0182136893, 0.0236354377, 0.00544292806, 0.00165193924, -0.0301302411, 0.0112035368, 0.00546763651, -0.00364273763, -0.0111541189, -0.0364556164, 0.0317398235, -0.000762874668, -0.000416955794, 0.0175218508, 0.00209492724, -0.017423017, 0.0118388971, 0.030299671, 0.00229788967, 0.0170418, -0.00078890688, -0.0286053736, -0.0129048927, -0.0211222302, -0.0129190115, -0.00162546581, 0.00612770626, -0.0190608371, -0.00122307031, -0.0136602661, -0.027574677, 0.0144579979, -0.00494522834, 0.00914214179, -0.0245390628, 0.0136885047, 0.000211787075, 0.019978581, -8.01922943e-05, 0.00486051338, 0.0155028142, 0.0209951587, 0.00510759838, 0.000219508482, 0.00603593187, -0.00697838422, -0.0162934866, 0.0091915587, 0.00749020278, -0.00904330797, 0.00977044366, -0.00647715479, 0.00225023762, -0.0165335108, -0.0104975794, -0.00732783275, -0.000593003817, 0.00515348557, -0.0207127761, 0.0163782, 0.0155734094, -0.0282523967, -0.0107799619, 0.00276205642, -0.00289442344, 0.023282459, -0.0298478585, 0.001228365, -0.00649127411, -0.00370274414, 0.0294807609, 0.0201762486, 0.0152204316, -0.0174512547, -0.000373274728, 0.00229436, 0.00434163492, 0.00487463269, 0.00749726268, 0.00848560221, -0.00491699, 0.0119165527, 0.00363920792, -0.014698023, -0.0033109379, -0.0052170218, 0.031626869, 0.0229859576, -0.0312880091, -0.00441929046, -0.0065830485, 0.00370627386, 0.0198656283, 0.00905742683, 0.0185666662, 0.0147121418, -0.00654422073, -0.0168300122, 0.000499023299, -0.0150933592, -0.00327387522, -0.0172394682, 0.00999635, -0.0130178453, 0.00716546271, -0.0202892013, 0.0145427128, -0.0117612425, -0.00355625805, -0.00125925068, 0.0133002279, -0.00361449947, 0.0104481624, 0.023282459, -0.0240166541, -0.0200915337, -0.0223647151, -0.00770904962, -0.00468049431, -0.0158840306, 0.00587709155, -0.010031648, -0.0104340436, 0.0151780741, -0.00331270276, 0.00597592536, 0.00095392426, 0.0106811281, 0.0345354117, 0.0118812546, -0.0059476872, -1.84348519e-05, 0.00658657821, 0.00305149867, 0.025343854, 0.0130884415, 0.00394982891, -0.00960807409, -0.0124177821, 0.0194420535, -0.0126860458, 0.0181007348, 0.000102198297, 0.0154745756, -0.00235613133, 0.0125448545, 0.0243696328, -0.0117753614, -0.00370980357, 0.0052170218, -0.00981280115, 0.0082738148, -0.00975632481, -0.0141120786, -0.0219834987, 0.0177336372, 0.00185843161, -0.00471226266, -0.0152769079, 0.00656892918, -0.00886681862, -0.0183125231, 0.0101657799, -0.0151357166, -0.00344506977, 0.0049240496, 0.0281676818, 0.0163076054, -0.00888799783, 0.0181572121, 0.0121989353, -0.0185525473, 0.00184784224, 0.000664481951, 0.0117400633, 0.0387146771, -0.00614535483, -0.0030973861, -0.00167400029, -0.00218140683, 0.00577472756, 0.00151163025, -0.0125589734, 0.0108434986, 0.0165052731, 0.0106458301, 0.0123966038, -0.00546410633, 0.00631831447, -0.0116906464, -0.00403101416, 0.0154322181, 0.00960101373, 0.00282382779, -0.00694661587, -0.0444752872, -0.0228447653, 0.0308079608, 0.0138014574, 0.0215034485, 0.00410161, -0.0180866159, -0.0206986573, 0.0196114834, -0.00825969595, -0.00123542466, 0.00810438581, -0.00675600767, 0.0103634475, 0.016759418, 0.00576413842, -0.0108364383, -0.00777964527, -0.0058912104, -0.00418632431, -0.00265263324, 0.0123895444, 0.00854207855, -0.00201903679, 0.00321386894, -0.00250967685, 0.00456048176, 0.00199079863, 0.00532644475, 0.00814674329, -0.00907154661, 0.0135120153, -0.00991869438, -0.00614182511, -0.00102187262, 0.0116977058, -0.00691131828, -0.0137802791, -0.0315986313, 0.00350154634, -0.00108011405, 0.0121424589, 0.00154516322, 0.0022202346, -0.00926921424, 0.00474050082, 0.00194667617, -0.0174653735, -0.000792436651, 0.00178430614, -0.00506877061, 0.00514995586, -0.0012168932, -0.00595474662, -0.0031203297, 0.021715235, 0.00751844142, 0.00610652752, -0.00762433466, 0.0121071609, 0.00518172374, 0.0379240066, -0.00723605836, 0.0218564253, -0.0174088981, -0.0126225101, 0.00462401798, -0.019074956, -0.0199221037, 0.0133849429, -0.00942452531, -0.00483933464, 0.0114082638, 0.000385408348, 0.00625124853, -0.0340836, -0.00607122947, 0.014698023, 0.0123189483, 0.0123754246, 0.0145568317, -0.0376416221, -0.012926071, 0.000511377526, 0.00542527903, 0.00290854252, -0.0297913812, -0.0103140306, -0.00273911282, 0.00423574168, -0.0147827379, 0.0108929155, 0.00242849183, 0.0158275533, 0.00853501912, -0.0124954376, 0.0161664132, 0.00257497793, -0.0146697843, 0.0310621038, -0.0139638279, -0.0168441329, -0.0139214704, 0.0214187335, -0.013166097, 0.0133849429, -0.0085209, -0.00671718, -0.0161946509, -0.00798437279, -0.014119138, -0.0183689985, -0.00751844142, 0.0135967303, -0.0188914072, 0.0260639302, 0.0141403172, 0.0196961984, -0.0107587837, -0.00766669214, 0.000309297378, 0.00761021581, 0.0096857287, 0.00993281417, -0.00418985449, -0.00444399891, -0.0142532699, -0.00673482893, -0.00373451202, -0.000894359197, 0.0145850703, 0.00238613435, -0.0223505963, -0.00457107089, 0.00763139408, 0.00208786759, 0.00431339676, 0.0316551067, -0.0177336372, -0.00296325423, -0.00980574172, 0.0153475031, 0.000990987, 0.00268969592, -0.0171547532, -0.00692190742, 0.0317680612, -0.0121565778, 0.00516407471, 0.0117683019, -0.0236495566, -0.0138579346, 0.00596180605, 0.0138579346, 0.00160693447, -0.00675247796, -0.00950218, 0.00730665401, -0.0421032719, -0.0285488982, 0.000320107327, 0.00276911608, 0.0170700382, -0.0109776305, 0.0228165276, 0.0221388098, 0.00247084931, -0.00100422371, 0.0145144742, -0.00597239565, -0.0116341701, -0.00800555106, -0.0193714574, 0.00493110903, 0.0155169331, 0.0204868689, -0.00149486377, -0.0149380481, 0.0203880351, -0.000234068837, 0.00298619783, -0.0181148537, -0.00953041855, -0.000401513, 0.00258203736, 0.017917186, 0.000491963699, -0.0105611151, 0.00137573353, -0.00880328286, 0.0304126237, -0.00042004438, 0.00833029207, 0.00994693302, 0.00678071612, -0.0234095324, -0.00806202833, -0.0084150061, 0.00327211036, -0.0214893278, -0.00574295968, -0.0162370093, -0.0122765908, 0.0334623568, 0.00833029207, -0.0143309254, -0.00349625153, -0.00441929046, -0.0150227631, 0.0149098104, 0.00617006328, 0.00642773788, 0.0145709505, -0.00626536785, -0.0220117364, -0.0107658431, 0.00148339197, 0.00490640057, -0.0211504698, -0.0112811914, 0.00784318149, -0.00416514603, -0.0117894802, 0.0057006022, -0.0146839041, 0.0164770354, 0.00776552595, -0.0035809665, -0.00208786759, -0.00826675538, 0.00979868229, -0.00807614718, 0.0161805321, -0.00615947414, 0.00134749524, 0.00835147, 0.0126366289, 0.0235789604, -0.00486404309, 0.00480050687, 0.00883858092, 0.000437472685, 0.0137873385, 0.0240025353, -0.00784318149, 0.000867003342, 0.0071160458, -0.0111117624, 0.0317963, -0.0248779226, 0.00669953134, 0.026911078, -0.00496287737, 0.00641008886, 0.000177261376, -0.0120648034, 0.00712663494, 0.0209528022, 0.00768081145, -0.0102504948, 0.0273205321, -0.00153192657, 0.0343377441, -0.00614182511, -0.0182984024, -0.00403807359, 0.00953747798, 0.0136108492, 0.0200068187, -0.0148109766, 0.00989045668, -0.000197337024, 0.0369921438, 0.0099892905, 0.00753961969, -0.0301584788, -0.0211363509, -0.00572178094, -0.00288030412, -0.0230989102, -0.0014957462, 0.00651245238, 0.0106528895, -0.00277794059, -0.016674703, -0.0241013691, 0.0040521929, -0.0296501908, 0.00859855488, 0.01032109, 0.000958336517, -0.0212916601, -0.0225906223, 0.0044298796, 0.0244261101, 0.0108364383, -0.00862679351, 0.00278676488, -0.0156298857, 0.009657491, -0.0110976426, 0.000222045506, -0.0203597974, -0.0189337637, -0.000674188836, 0.00405925233, -0.030384386, -0.015192193, -0.00124513148, 0.00816086214, 0.00375569076, -0.00253968, -0.0144297592, -0.00390394172, -0.00457460061, 0.00568648288, 0.0128131183, -0.0194279347, 0.011973029, -0.00974926539, 0.00693602674, 0.0169570856, -0.0106670093, 0.014203853, -0.00256615342, -0.00700662239, -0.00397100765, -0.0129966671, 0.0158275533, 0.00271793408, -0.00018057054, -0.00301090628, -0.0228306465, 0.00882446114, -0.0198515095, 0.00749726268, 0.0203456786, 0.00583826378, 0.00534409378, 0.0196820796, -0.011683587, 0.0012080688, 0.000476079702, -0.0216587577, 0.00398865668, 0.0156722441, -0.00672776951, 0.0204445124, 0.0258521419, -0.0110129276, -0.0149662867, -0.0128272371, -0.00201021228, -0.0271934606, -0.010031648, -0.00602534227, -2.00618615e-05, 0.0200068187, 0.023861343, 0.00733489217, -0.0122836502, -0.0201621298, 0.00496640708, 0.00802673, 0.000673747621, 0.0237766299, 0.00314680301, -0.00975632481, -0.00926215481, 0.0154604567, -0.0128272371, 0.00936098862, -0.0111752981, -0.0178324711, -0.0151780741, 0.00573237, -0.00993281417, -0.0175500885, -0.0029509, -0.00103863911, -0.00206492399, -0.00519937277, 0.0226612166, 0.00258380221, 0.0133425854, 0.0326434486, -0.000680366, -0.00503700273, -0.0174653735, -0.00631478475, -0.00245673, -0.0118177189, 0.000669776637, 0.00360214524, -0.00434516463, 0.0254850443, -0.00226259185, 0.0135896709, 0.0188066922, 0.0118530169, -0.0018407827, -0.00972808618, -0.00196962, 0.0188349299, -0.0182278082, -0.00400630571, -0.000898771395, -0.0153616229, 0.0071160458, -0.0119871488, 0.00193079212, -0.00510053895, 0.00232259836, -0.0119447913, -0.0139073515, 0.000506965327, 0.00243025669, -0.00270734471, -0.0111329406, -0.0147544993, -0.00823851768, -0.0015707541, 0.0122836502, 0.0114365024, 0.000938922691, 0.0103987455, 0.00314856786, -0.00315562752, 0.00527702784, 0.00187608053, -0.00778670469, -0.0315421559, 0.0229012426, -0.0265298616, -0.0207833722, -0.0140979597, -0.00460989866, -0.0130884415, -0.0274758432, -0.00722546922, -0.00489934115, -0.0115423957, -0.00355096324, -0.00815380272, -0.00369568449, 0.00111717684, -0.0120506845, 0.00495581748, -0.00743372645, 0.00321739865, -0.00421809265, 0.00564765558, -0.021390494, -0.00130160805, -0.00057359, -0.0236354377, -0.012551914, -0.0100528263, 0.0121142203, -0.0194561724, -0.00637126109, 0.00893741474, 0.00988339726, -0.00830911286, -0.0135049559, -0.0221388098, -0.0200491771, 0.00705250958, -0.00700309267, 0.00332682207, 0.000558588421, 0.00289442344, 0.00905742683, 0.015107478, -0.0177901145, 0.00484992424, 0.0181572121, -0.0236636754, -0.0113376677, 0.00628654659, -0.0116271107, -0.00780082401, 0.0175077319, -0.00760315591, 0.000161377335, 0.0190184787, -0.00974926539, 0.0216446389, -0.00374863134, 0.00101834291, -0.0135826115, 0.00621595047, -0.00056432432, -0.0141544361, 0.0102716731, -0.00566883385, -0.00745490519, -0.00416161586, -0.0165758692, 0.0248214453, 0.00310444552, -0.00706309918, 0.0168158934, -0.0181572121, -0.0243413951, -0.00262615969, 0.0229718387, -0.0331234969, -0.0115000382, -0.0085773766, 0.000313047785, 0.000381216727, -0.000284147653, 0.00606417, -0.0107517242, -0.0145991892, 0.0168441329, -0.00401336513, -0.0149662867, -0.0156298857, 0.00307620736, 0.00163958489, -0.00814674329, -0.00303032016, -0.0217011161, -0.0114859194, 0.00654069101, 0.0123895444, 0.0144721167, -0.0185525473, -0.0145144742, 0.0802531838, 0.0291983783, 0.0109423324, -0.000567854091, 0.00505465176, -0.0362861864, -0.0105328774, 0.0402395427, -0.0143309254, 0.00668188231, 0.00548175536, 0.0148392143, -0.00740548829, 0.010935273, -0.0306102913, -0.000480933144, -0.00714075426, -0.00344330491, -0.0127284033, -0.0223223586, 0.00301267114, -0.0112882508, 0.0207974911, -0.0174088981, -0.00713369483, -0.00765257282, -0.00602887198, 0.00519584306, -0.00807614718, -0.00341683161, -0.00452165399, 0.0114012044, 0.0162511282, 0.000908919552, -0.0232118629, 0.00533703435, 0.0185384285, -0.00253791502, 0.0251320656, -0.0138155771, 0.00798437279, 0.00500523439, 0.00523467036, 0.00516407471, 0.0119377319, 0.000226568052, -0.0103422692, -0.0261062868, -0.00797731336, -0.0178889483, 0.00542527903, 0.00190431881, 0.00416867575, -0.0160534605, 0.00668188231, 0.00478638802, 0.00811144523, -0.00798437279, -0.00766669214, 0.000839647488, 0.0281253234, -0.00626183767, 0.00701721199, -0.0240166541, -0.00877504423, -0.00438752212, -0.009163321, -0.0082243979, -0.00772316847, -0.00528055755, 0.00396747794, -0.014613308, 0.00943158474, -0.0155028142, 0.0148674529, 0.00858443603, -0.0180442594, 0.0150227631, -0.0126154497, -0.012382484, -0.0114153232, 0.0135826115, -0.0149662867, -0.0174371358, -0.0165052731, -0.0174371358, -0.0193714574, -0.00330211339, -0.00878916401, -0.00051314244, 0.00129101868, 0.0211081114, -0.0326716863, 0.0308361985, 0.00990457553, 0.0171688721, 0.00625124853, 0.0162370093, 0.016674703, 0.000415190909, 0.00614535483, 0.00880328286, -0.00967161, -0.0153757418, -0.0220399741, 0.0150651205, -0.00794907473, 0.00256438856, 0.0226612166, 0.00576766813, -0.00315562752, 0.00651598256, 0.0109988088, 0.032699924, -0.00699250307, 0.0265298616, 0.00941040553, -0.00723605836, 0.0262051206, -0.0124530802, -0.00113659061, 0.0111258812, -0.00641008886, 0.00245849509, 0.00186196133, 0.00529114716, -0.00336212, 0.0119800894, 0.0228306465, -0.00300031691, 0.0215175673, -0.0147968568, -0.0130178453, 0.0073984284, 0.00909272488, 0.0349025093, -0.00272146403, -0.00815380272, -0.000279514818, 0.0136743858, -0.00696073519, 0.00571825122, 0.00957277603, 0.0147827379, -0.00809026603, -0.000621683314, -0.00403101416, -0.0183548797, -0.0264027882, -0.00436281366, -0.00375216105, 0.00120630383, 0.0131731564, -0.0281959195, -0.00606064033, 0.00734195206, -0.0102081373, -0.0278570596, 0.0115070976, -0.00957277603, 0.00541821914, -0.00182136882, 0.00230847904, -0.0100881243, 0.00475815, -0.0131802158, 0.0135331945, -0.00137220381, 0.00137838093, 0.0108717363, 0.0209245626, -0.00780788343, 0.0140061853, 0.0139850061, -0.00537233194, -0.000194910288, 0.018990241, -0.0122554125, 0.0187078584, 0.00369568449, 0.00665364414, -0.00297207874, 0.00665011397, 0.0259509757, 0.0082738148, 0.00223964825, -0.00147721486, 0.00233671744, 0.0287042093, 0.0148674529, -0.00977750309, 0.00447929651, 0.00220964523, -0.0119377319, -0.00897271279, -0.012262472, 0.00300208176, -0.00151339511, -0.0217858311, -0.014203853, -0.000676836178, 0.00215316867, -0.0199927, -0.00465225615, -0.00676659727, 0.00353684416, -0.00790671725, 0.00301796594, -0.0049699368, 0.00119836186, 0.00833029207]
02 Dec, 2021
PHP Date and Time 02 Dec, 2021 In this article, we will see how to get the date & time using the date() & time() function in PHP, we will also see the various formatting options available with these functions & understand their implementation through the examples. Date and time are some of the most frequently used operations in PHP while executing SQL queries or designing a website etc. PHP serves us with predefined functions for these tasks. Some of the predefined functions in PHP for date and time are discussed below. PHP date() Function:  The PHP date() function converts timestamp to a more readable date and time format. Why do we need the date() function? The computer stores dates and times in a format called UNIX Timestamp, which measures time as a number of seconds since the beginning of the Unix epoch (midnight Greenwich Mean Time on January 1, 1970, i.e. January 1, 1970, 00:00:00 GMT ). Since this is an impractical format for humans to read, PHP converts timestamp to a format that is readable and more understandable to humans. Syntax: date(format, timestamp) Explanation: The format parameter in the date() function specifies the format of returned date and time. The timestamp is an optional parameter, if it is not included then the current date and time will be used. Example: The below program explains the usage of the date() function in PHP. PHP <?php echo "Today's date is :"; $today = date("d/m/Y"); echo $today; ?> Output: Today's date is :05/12/2017 Formatting options available in date() function: The format parameter of the date() function is a string that can contain multiple characters allowing to generate the dates in various formats. Date-related formatting characters that are commonly used in the format string: d: Represents day of the month; two digits with leading zeros (01 or 31). D: Represents day of the week in the text as an abbreviation (Mon to Sun). m: Represents month in numbers with leading zeros (01 or 12). M: Represents month in text, abbreviated (Jan to Dec). y: Represents year in two digits (08 or 14). Y: Represents year in four digits (2008 or 2014). The parts of the date can be separated by inserting other characters, like hyphens (-), dots (.), slashes (/), or spaces to add additional visual formatting. Example: The below example explains the usage of the date() function in PHP. PHP <?php echo "Today's date in various formats:" . "\n"; echo date("d/m/Y") . "\n"; echo date("d-m-Y") . "\n"; echo date("d.m.Y") . "\n"; echo date("d.M.Y/D"); ?> Output: Today's date in various formats: 05/12/2017 05-12-2017 05.12.2017 05.Dec.2017/Tue The following characters can be used along with the date() function to format the time string: h: Represents hour in 12-hour format with leading zeros (01 to 12). H: Represents hour in 24-hour format with leading zeros (00 to 23). i: Represents minutes with leading zeros (00 to 59). s: Represents seconds with leading zeros (00 to 59). a: Represents lowercase antemeridian and post meridian (am or pm). A: Represents uppercase antemeridian and post meridian (AM or PM). Example: The below example explains the usage of the date() function in PHP. PHP <?php echo date("h:i:s") . "\n"; echo date("M,d,Y h:i:s A") . "\n"; echo date("h:i a"); ?> Output: 03:04:17 Dec,05,2017 03:04:17 PM 03:04 pm PHP time() Function: The time() function is used to get the current time as a Unix timestamp (the number of seconds since the beginning of the Unix epoch: January 1, 1970, 00:00:00 GMT). The following characters can be used to format the time string: h: Represents hour in 12-hour format with leading zeros (01 to 12). H: Represents hour in 24-hour format with leading zeros (00 to 23). i: Represents minutes with leading zeros (00 to 59). s: Represents seconds with leading zeros (00 to 59). a: Represents lowercase antemeridian and post meridian (am or pm). A: Represents uppercase antemeridian and post meridian (AM or PM). Example: The below example explains the usage of the time() function in PHP. PHP <?php $timestamp = time(); echo($timestamp); echo "\n"; echo(date("F d, Y h:i:s A", $timestamp)); ?> Output: 1512486297 December 05, 2017 03:04:57 PM PHP mktime() Function: The mktime() function is used to create the timestamp for a specific date and time. If no date and time are provided, the timestamp for the current date and time is returned. Syntax: mktime(hour, minute, second, month, day, year) Example: The below example explains the usage of the mktime() function in PHP. PHP <?php echo mktime(23, 21, 50, 11, 25, 2017); ?> Output: 1511652110 The above code creates a time stamp for 25th Nov 2017,23 hrs 21mins 50secs. PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples. 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
https://www.geeksforgeeks.org/php-date-time?ref=asr10
PHP
PHP Date and Time
PHP Date and Time, PHP Tutorial, PHP
GeeksforGeeks
[-0.0272662435, -0.000542342605, -0.000301419786, 0.0390725248, 0.00624737795, -0.00861613266, -0.0247032158, 0.0161007158, -0.0252349079, 0.0171913654, 0.0551323444, 0.0136876535, -0.000724259589, -0.0392361246, 0.000130366723, -0.000597727194, -0.00942730345, 0.0050987876, -0.00735506881, 0.0324468277, -0.0163733792, 0.0427534692, -0.0429988652, 0.00824803859, -0.0107974326, 0.021690296, -0.00646891631, 0.0150782326, -0.000440946256, -0.00519081112, 0.048397582, 0.0214449, -0.0119017148, -0.0628759563, -0.0592768118, -0.0227536801, 0.0268845148, 0.0196998604, -0.0265573207, -0.0299656, 0.0313561782, 0.0327467583, 0.0103679886, -0.0252212752, -0.0232853722, 0.0238852296, -0.0122493599, -0.0428898, 0.0223992188, -0.0338646732, 0.0120584955, 0.0127606019, 0.045643691, 0.0825621858, 0.0203678831, 0.0152418297, 0.0220856573, -0.0087183807, -0.0321196355, -0.00430125, 0.0547506139, 0.00276922784, 0.00536122499, -0.00385817327, 0.0376819484, 0.00787312724, -0.0501153544, 0.0434623919, 0.0345463306, 0.0144511089, -0.016877804, 0.00678929454, 0.0160461832, 0.00187114591, 0.00174077915, -0.030374594, 0.0352279842, 0.0380909406, -0.0234080702, 0.0579135, -0.0302655287, 0.00420922646, 0.00980903115, 0.00925688911, 0.0144374752, -0.00544984033, -0.0123311579, -0.0507424772, 0.0365367644, 0.056713786, 0.0260528959, 0.0074368678, -0.00416832697, 0.00342532177, -0.0160052851, 0.0177230574, 0.0266527515, 0.0272798762, -0.0149282683, 0.0316833742, 0.00615535444, 0.0211449713, 0.00421263464, -0.0292021465, 0.0142193455, -0.0302655287, 0.037082091, -0.0184456129, 0.00174674368, -0.0349825881, 0.00458754553, -0.0117381178, 0.0058588339, 0.0174640287, -0.0552959405, 0.0130946133, 0.0157735217, -0.0689835921, 0.0420172811, 0.0086025, -0.0124947559, 0.0362095721, 0.0396996513, 0.0598766692, -0.0314107127, 0.0453437604, 0.0142602446, -0.00919554, 0.012719702, -0.0373820178, -0.0296384059, 0.0238034297, 0.00832983758, 0.0451256335, 0.0181320515, 0.0253576059, 0.0339737386, 0.0224401187, -0.00731417, -0.0144511089, -0.0438986495, -0.0146010732, -0.00800264254, -0.0407357663, 0.0234080702, -0.0273344088, 0.0152554633, 0.00451597152, 0.0289840158, 0.012985548, -0.0477704592, -0.0377910137, 0.00718465494, -0.00910010841, -0.00439668167, -0.0355006494, 0.0319833, 0.00372184208, -0.0478522554, -0.079181172, -0.0249213465, 0.0131150624, 0.00917509105, 0.0090387594, 0.0165506098, 0.0110973604, 0.0455891564, -0.023748897, -0.0143420435, 0.0387180634, -0.00916827377, -0.00964543317, -0.0285750218, 0.0116154198, -0.0274025742, 0.008704748, 0.000944093685, 0.00449893, 0.00290044653, 0.00982266385, -0.0214449, 0.00913419109, -0.0107088173, -0.00277774851, 0.0181593169, 0.0124129569, -0.0162779465, -0.005494148, -0.0157326218, -0.0184456129, -0.0459163524, 0.00279478985, 0.0257120673, -0.0106133847, -0.019672595, -0.019386299, -0.0213631019, 0.0215539653, -0.0386362672, 0.0111859757, 0.00051209412, -0.0669658929, -0.0519967265, 0.0302655287, -0.000328899041, -0.0076754475, 0.00298054121, -0.00977494847, 0.0307835881, 0.00873883069, 0.0204360485, -0.00242839986, -0.0189091396, -0.00308108539, 0.00321230432, 0.0110223787, 0.015064599, -0.00418536831, 0.0239670277, -0.0302109979, -0.0453982949, 0.0343009345, 0.00185410446, -0.00487724924, -0.0298838019, -0.036182303, -0.00128492166, -0.000267123978, -0.0167687386, 0.0287931524, 0.035146188, 0.0217993613, -0.00546688167, -0.0383090712, 0.0305654574, -0.0262710247, 0.0525420494, -0.0316561088, -0.0439804494, 0.0186910089, 0.0263664573, -0.00462844456, 0.0277297683, 0.0186637435, -0.0139330504, -0.00850706734, 0.00787312724, -0.00344065903, -0.00824122224, 0.0134149911, 0.00638370914, -0.0468706712, 0.00822758861, 0.0269117821, -0.0333193503, -0.00166835322, 0.00782541186, -0.00289363, 0.0395633169, 0.0257802326, 0.00156184449, 0.0311925821, -0.0164824445, -0.00200236472, -0.00195805705, 0.0238988623, 0.0176139921, -0.0198225584, -0.00838436931, -0.0320923664, 0.0603129305, -0.02642099, 0.0134558911, -0.0127946846, 0.00827530492, -0.011172343, -0.0510696732, 0.00905239303, 0.0326922238, 0.0226446148, 0.0068029277, 0.00196146546, 0.0222765207, 0.0182547495, 0.0070415074, 0.00631895196, -0.0188818723, -0.0344372652, -0.0035207537, -0.00536122499, -0.00659161434, 0.00251531089, 0.0174912941, -0.00516013661, 0.019672595, 0.0144783752, -0.00895696, 0.0123516079, -0.019508997, 0.0290385485, -0.00236193836, 0.00351734529, -0.0146147059, 0.0288476851, -0.00708922325, 0.00966588315, 0.0291476138, -0.010865598, 0.00740960147, -0.056059394, -0.0335102119, -0.019386299, -0.030538192, -0.00734143611, -0.0131355124, 0.0206269119, 0.0147101376, 0.00805035792, -0.0139262332, -0.0144102089, 0.0197816584, -0.0098158475, -0.0407357663, 0.0395360515, 0.0441440456, -0.00538508315, -0.0140421148, -0.0335647464, -0.00329580717, -0.0443349108, -0.0540689602, -0.0202179197, -0.00721873762, -0.00592018291, -0.000426674087, -0.0422899425, -0.00269594975, 0.0119221648, 0.0150237, -0.0076754475, -0.00961135048, 0.0349007919, 0.00946138613, 0.00416151, 0.0393997207, -0.0323650315, -0.0129787317, 0.012781051, -0.00106764387, 0.0104634203, 0.00121164368, -0.00172288576, 0.0127742346, 0.0124129569, 0.015473593, -0.0454800949, -0.0261483267, -0.0271435454, -0.0150237, 0.0156235574, 0.00186944182, 0.0172731653, 0.00682678539, 0.0139057841, 0.00712330593, -0.0719828829, 0.0149828, 6.44378e-06, 0.0190045703, -0.0126788029, -0.00229036435, -0.00862294901, 0.00580430124, 0.0129378326, -0.0363731682, 0.0364822336, 0.0114722718, 0.0107565327, 0.024321489, -0.00503062177, -0.0354733802, 0.0174912941, -0.00112984492, 0.014737404, 0.0102521069, -0.0567683168, -0.00935232174, -0.0200134218, 0.0295838732, 0.00584179256, -0.0500335544, 0.0143284108, 0.0354461148, -0.0288476851, 0.0282750931, -0.0141375465, 0.0294475425, -0.00692562573, 0.041444689, -0.000556827814, 0.00321230432, -0.00297542871, 0.0204769485, 0.000965395418, -0.0287386198, 0.0182274841, -0.0134695238, -0.0246350504, 0.0594404079, 0.0313289128, -0.00628827745, 0.045316495, -0.0402449742, -0.0324740969, -0.012658353, 0.00686086854, -0.0408175662, 0.0410084277, -0.0251394752, 0.019754393, 0.00350030395, 0.059222281, -0.0494882315, -0.0111518931, 0.0337283425, 0.0198634584, -0.000651833601, 0.00537826633, 0.00681996904, 0.0270072129, -0.0368639603, 0.0263255574, 0.0122766262, 0.0342191346, 0.0098158475, -0.0441167802, 0.00665637152, 0.0237352643, -0.00113069697, -0.0309744515, -0.0232308395, 0.0285750218, 0.021404, 0.0210904386, -0.0482339822, 0.0370548256, -0.0518876612, 0.0251394752, 0.0108928643, 0.000300993765, -0.0374092869, -0.0311653148, 0.0165915079, 0.0223992188, 0.0333738811, -0.010926947, -0.0147783039, -0.00398428, 0.0250849426, -0.0210222732, 0.0278933663, -0.00173566677, -0.011029195, -0.00147748948, 0.0265164208, -0.0235171337, 0.0195771623, 0.00725282077, -0.0155690247, -0.0224810168, 0.00222219876, -0.0123379752, 0.0235989336, 0.0135785891, 0.0278524663, -0.00292430446, -0.0218947921, 0.0100067109, -0.0104293376, -0.021690296, 0.0476886593, 0.0283023603, -0.00446143886, -0.00281353551, -0.0158689525, 0.00397405494, 0.00540212449, -0.00424671732, -0.00472046807, 0.0289840158, 0.0230672415, 0.0248804465, -0.00833665393, 0.0119289812, -0.0227673128, 0.00106764387, -0.0382000059, -0.0158962198, -0.0064212, -0.0160461832, -0.0206678119, 0.0441167802, -0.0449893, 0.0408448316, -0.0062541943, -0.0140148485, 0.011008746, -0.0160052851, -0.0719828829, 0.010579302, 0.0177503247, 0.0161552485, 0.00590314157, 0.0559503287, -0.00472728489, 0.0280842297, 0.00227673119, -0.0179411881, 0.00519081112, 0.008704748, 0.0358551107, 0.0146965049, 0.0231354069, -0.0180229861, -0.0107906153, 0.00387180643, 0.0298565365, 0.0100135272, -0.0420990773, -0.0297474712, -0.00160870829, 0.00907284208, 0.000826934, 0.0114790881, 0.00588950841, -0.0346281268, -0.0132922931, 0.0179548208, 0.00201599789, 0.0164142773, -0.0486702435, 0.0332375504, -0.0296929386, -0.017450396, 0.00413424429, -0.0132309441, -0.00266186707, 0.00133008137, 0.0196998604, 0.00723237079, -0.0259029306, 0.0137830861, 0.0133877257, 0.0173413306, -0.0356097147, -0.000535952102, -0.0273071416, -0.00761409849, -0.0198907237, 0.0210086405, -0.015473593, 0.00717783859, 0.0231081415, 0.0134013584, 0.0134490747, -0.00337249343, -0.0066052475, 0.0203133505, 0.0144511089, 0.0185683109, 0.0119357975, -0.0206269119, -0.0287386198, 0.0154190604, 0.00540894084, 0.0231354069, 0.00562366238, 0.0185137782, 0.0123652415, -0.0121471109, -0.0168232713, 0.0181047861, 0.0214312673, -0.0227400474, -0.0126515366, -0.0165097099, 0.0139875822, -0.00806399155, -0.0162234139, 0.0104770539, 0.0288204178, 0.00722555444, 0.00122357265, 0.0285204891, -0.0229718089, 0.0124811223, -0.00658138935, -0.00944093615, 0.0271571781, -0.0220038574, -0.0140284821, 0.0221674554, 0.00416491879, 0.00737551879, -0.00880699605, -0.0175594613, 0.0310835168, -0.00582475122, -0.00167261355, 0.0144920079, -0.0300201327, 0.0104634203, 0.0187728088, 0.0198089257, -0.0145056415, -0.0127333356, 0.00286295544, 0.0161007158, -0.0228900108, -0.032637693, -0.00843890198, 0.000304189016, 0.00303507363, 0.00795492623, -0.023217205, 0.0507152118, -0.00587246707, 0.00916145742, -0.0119494312, -0.06882, 0.0211995039, -0.0254121386, -0.00998626184, -0.0131218797, 0.0552959405, 0.0113086738, -0.000671431248, 0.00169391534, -0.00517036114, 0.021731196, -0.0207359772, 0.0107769826, 0.0183774475, 0.142111659, -0.00217789109, 0.0158280544, -0.00976813119, 0.0417446196, -0.0163733792, 0.0200134218, -0.00910692476, -0.0337828733, 0.00537145, 0.0217448287, -0.0128287673, -0.0102316579, 0.0273207761, -0.0376001485, -0.00385817327, -0.00706195692, 0.0111382604, -0.0304018613, 0.00383772375, -0.0211313386, 0.00977494847, -0.00895014405, 0.0314107127, -0.00626782747, 0.0132786604, 0.021281302, 0.0152963623, -0.0294475425, 0.00782541186, 0.0106951836, 0.00348155829, -0.010640651, -0.00685746, 0.0430806652, 0.0245123524, 0.000637774472, -0.0423444733, 0.000258603279, 0.0202315524, 0.0217993613, 0.0121948272, -0.00253576064, -0.0264891554, 0.00765499752, -0.0010182237, -0.0173140634, 0.0135240564, -0.0034849667, 0.0327194929, 0.0253712386, -0.00676202821, 0.0129787317, 0.00234489678, 0.0165778752, 0.00156099244, -0.00928415544, 0.0016913591, 0.0142738782, -0.0167414732, -0.00445803069, -0.0250167772, 0.0382818058, -0.0118812649, -0.00572591089, -0.0284932237, -0.0142057128, 0.037327487, 0.00101311132, -0.000902342203, 0.00851388462, -0.00567478687, 0.0286840871, 0.0139262332, 0.00473751, -0.0190182049, 0.000981584773, 0.0240215603, -0.0389634594, -0.0294475425, -0.0111791594, -0.00781859551, 0.00740278512, 0.00423649233, -0.00311687239, -0.0278933663, 0.00690858439, -0.0140284821, 0.00750503317, 0.0257393327, -0.0181047861, -0.0174640287, -0.0304836594, -0.00304018613, 0.00921599, -0.0205042139, 0.0159098525, -0.0247986484, -0.00935232174, -0.0488883741, 0.0116495024, -0.013210495, 0.00905920938, 0.0352279842, 0.0166187752, -0.000104218823, -0.00127980928, -0.00722555444, -0.00473069306, 0.0100271609, -0.0482067168, 0.0132309441, 0.0134967901, -0.0213358346, -0.0118062831, 0.0461072177, -0.0116358688, 0.00492155692, 0.00667000469, 0.00167857809, 0.0101566752, 0.00715057226, -0.0102725569, -0.0159916505, 0.0180229861, -0.000550011231, 0.00602243142, 0.00909329206, 0.0060974136, 0.0273753069, 0.0268027168, 0.0201770198, 0.0028510266, -0.0187591743, -0.0357733108, -0.0172186326, 0.0381727405, -0.00518058613, -0.00612808811, -0.030538192, -0.0209541079, 0.0223446861, -0.0228763781, -0.00494882325, -0.0169050712, 0.0110769114, 0.00935913809, 0.0428625345, -0.00595767424, 0.00415810198, 0.00537485816, 0.0126106376, -0.0204633158, -0.0134763401, -0.0185819436, 0.00141784467, -0.0247032158, 0.017982088, 0.00418877648, 0.0118403658, -0.0295020752, 0.0210222732, -0.0203951504, -0.0228082128, -0.0180366188, 0.0116904015, 0.00738233514, -0.0232035723, 0.0302382633, -0.00627805246, 0.00795492623, -0.0230263416, 0.00469320221, 0.0189773049, 0.0256575346, -0.0095772678, 0.00905239303, 0.0271435454, -0.0148873683, 0.00501358043, -0.0126174539, -0.0340555385, 0.0229990762, 0.00777769554, 0.00329580717, 0.00871156435, 0.0127333356, 0.0244305544, -0.0247304831, -0.00135393941, 0.033210285, 0.0218947921, 0.015350895, 0.00914100837, 0.0107360827, 0.00892287772, 0.0610218532, -0.00112473255, -0.00897059403, 0.0131832287, 0.026134694, -0.00173651881, 0.00959771778, -0.0325013623, 0.0245396178, 0.019386299, 0.00335715618, 0.0349825881, 0.00533395866, -0.0132036777, 0.0115336208, 0.0146828722, 0.0274298396, -0.06140358, -0.00734825246, 0.0485066473, 0.0166733079, 0.0190727375, -0.00590654975, -0.00940003712, 0.0108519644, 0.0417173505, -0.0380091406, -0.020040689, 0.0142738782, -0.00227332301, -0.043953184, -0.0158553198, -0.00187625829, 0.0371093564, 0.00931823812, -0.003817274, -0.0281387623, -0.0170823019, -0.00343725085, 0.00699379109, -0.0332375504, 0.0334556811, 0.0107974326, -0.0142602446, -0.00110683904, -0.0190727375, 0.0116358688, -0.0290930811, -0.0183774475, 0.00730053661, 0.0101225926, 0.0223174188, 0.0231626742, 0.00610423, -0.0323922969, 0.00759364851, -0.000155609305, 0.0155553911, -0.00737551879, 0.00505788811, 0.0308926534, 0.00506129628, 0.0252621733, 0.0158416871, 0.00620307028, 0.0173549633, -0.0172595326, -0.00827530492, 0.0122289099, 0.00298735779, 0.0252212752, -0.0153781613, 0.0302382633, 0.0032157125, -0.0205723811, 0.00666318787, -0.0170686673, -0.0224946495, 0.000331881311, 0.0275798049, -0.025930196, -0.00858886633, 0.0274707396, 0.0160052851, 0.0383908711, 0.00263289665, 0.00387862301, -0.0226173475, -0.0205996465, -0.00556231337, -0.0100544272, 0.00685064355, 0.00900467671, -0.00164193904, -0.00624397, -0.0282478277, 0.0242669564, -0.0425353386, 0.0279751644, -0.0466252752, 0.00163512246, 0.0118267331, 0.043380592, 0.00896377768, -0.013067347, -0.0183638148, -0.0182411168, 0.00355483638, 0.0224946495, -0.00387521484, -0.0457800217, 0.00159677933, -0.0158553198, 0.0232444722, 0.00514991162, 0.00292089628, -0.0247713812, -0.0288476851, 0.00311516831, 0.023217205, 0.0351734534, -0.00120567915, 0.033210285, 0.00828212127, 0.0221129227, 0.00810489058, 0.0214721654, -0.000740448886, -0.0251122098, -0.00744368415, 0.00607014727, 0.00558276335, -0.0310017187, 0.0377092138, 0.000871241675, -0.0162506811, -0.00172458985, -0.0126992529, -0.0229036435, 0.00787312724, -0.00446143886, 0.0270208474, -0.011192793, -0.00691199256, 0.0221810881, 0.0351734534, -0.0349007919, -0.015146398, -0.0227945782, 0.0150509663, -0.0125015723, -0.0284659583, 0.00101992791, -0.0117653841, -0.0509878732, -0.0123856906, -0.00246248255, -0.00751185, 0.00722555444, -0.00861613266, -0.00858205, -0.000795407454, -0.000462248019, -0.0382000059, -0.00907965843, 0.0263255574, 0.0501698852, 0.0163870119, -0.00859568268, -0.00388884777, -0.00452278787, 0.00589291658, -0.0358551107, 0.0153645277, -0.0173004307, 0.0166596752, 0.0130741633, 0.000464378187, -0.000409845699, 0.00219152425, -0.0116426861, -0.0156780891, 0.0202588178, 0.00773679651, 0.00147919368, 0.00635644281, -0.0160325505, 0.0101703089, 0.00455687102, 0.00500335544, 0.000263928698, -0.00332307327, -0.015637191, 0.0183638148, -0.0122220935, -0.0278661, -0.0096590668, -0.0208041426, -0.0545597523, 0.00892969407, 0.0141920792, -0.0214312673, -0.008704748, 0.00579748489, -0.00558276335, -0.0161825158, -0.0179275554, 0.00346962945, 0.023912495, -0.0120175965, -0.0029498667, 0.00558617152, -0.00215062499, -0.000501017203, 0.00566797, -0.00458072871, 0.00426716683, -0.0146828722, -0.00230570161, 0.0201497544, -0.00824122224, 0.00165216392, 0.000984140905, -0.0086025, 0.0187319089, -0.000321443455, 0.0187455416, 0.00622692797, 0.00525556831, -0.00858205, 0.00737551879, 0.00703469058, -0.0252621733, -0.00864339899, -0.00796856, -0.00518740248, -0.0162234139, 0.0298292693, -0.0116426861, -0.019386299, -0.0198225584, 0.0142193455, 0.0138853341, 0.0067722532, 0.00718465494, 0.00828893762, -0.0289022177, 0.0161961485, -0.0118403658, -0.0133059267, -0.0173004307, -0.00693925889, 0.00384794851, -0.0190045703, 0.0124947559, 0.0182820167, 0.0163461119, 0.0141102802, 0.0730735287, 0.00745731732, -0.0201633871, -0.0144511089, 0.0086025, 0.00648254901, -0.00303166546, 0.00868429802, 0.00951591879, -0.00872519799, 0.0116017861, -0.000708496256, 0.0121130282, 0.00494200643, -0.0169732366, -0.00736870198, 0.000838436943, -0.00193590322, 0.0144238425, -0.0363186337, -0.00381386583, -0.00408312, 0.013067347, -0.00980221387, 0.0033452271, -0.00292260037, 0.00195635296, -0.0213494673, -0.0144511089, -0.0253167059, 0.00638711732, -0.03441, -0.0115063544, -0.0132650267, 0.000457987684, 0.0254803039, 0.0113427574, -0.0202588178, -0.0141239138, 0.0267345514, 0.00259029306, -0.00077964412, -0.0247032158, -6.18283375e-05, 0.0244987197, 0.00282205618, -0.0227809455, 0.00698697474, -0.00399450446, 0.00473069306, -0.0132991103, -0.0197271258, 0.0106474683, -0.00124317023, 0.00371502549, -0.00023112401, 0.00903194305, -0.00901830941, -0.0172731653, 0.0150100663, 0.00226480234, -0.0260801613, 0.0445530415, -0.0306199901, -0.0216084979, 0.00382409059, -0.0170277692, 0.00890924502, -0.0147237713, 0.0301837306, -0.0146147059, 0.0187591743, 0.0122834425, 0.00643142499, 0.00323957042, 0.0382272713, 0.0338646732, 0.0236807317, 0.0115540707, -0.0203269832, -0.00810489058, 0.00329239876, 0.0203542504, 0.0335920118, -0.019386299, -0.00273344084, -0.0170959346, 0.0134013584, -0.0183910802, 0.0176003594, -0.00554527203, 0.0052248938, 0.00535781682, -0.000367029192, 0.0206678119, 0.0113768401, 0.0261619594, -0.00751185, -0.0074368678, 0.0195635296, 0.00533055048, 0.030538192, 0.00320037524, -0.0226582475, -0.00712330593, -0.0176548921, 0.000500165159, 0.00964543317, -0.0115404371, 0.00467616087, 0.0141511802, 0.0189500395, -0.0300746653, -0.0399723127, 0.0278115682, 0.00728690345, 0.0224401187, 0.0353097841, 0.00352416188, 0.00676202821, -0.0173413306, 0.000223029347, 0.00750503317, 0.000336993719, 0.0201906525, -0.0142193455, -0.00760728167, 0.0338374078, 0.00488406559, 0.0179411881, -0.0164960772, 0.0161552485, 0.000725963735, -0.0130196307, -0.0112745911, 0.0139534995, 0.00323275384, 0.0303200614, -0.0152827287, 0.0244305544, 0.00787312724, -0.00804354157, -0.024157891, -0.00935232174, -0.00300099095, 0.0204633158, -0.0209268406, 0.0319015048, 0.021281302, -0.00329921534, -0.00910010841, 0.00328047, -0.00946138613, 0.0289567504, 0.0227400474, -0.0252758078, 0.0158553198, -0.00232103886, 0.0111587094, 0.00550778117, 0.00604969775, 0.0146419723, 0.0293112118, 0.00508856261, 0.00112643663, -0.0105043203, -0.000380875339, -0.00937277079, -0.0185410455, 0.0236534663, -0.00659161434, 0.0206814446, 0.00256643514, 0.00299247, 0.00705514, -0.0193999317, 0.0446893722, -0.0220038574, 0.0114313727, 0.00406267028, -0.0300746653, 0.0112882247, -0.0218811594, -0.00665637152, -0.00556572201, 0.0232308395, -0.0112064257, -0.00774361286, 0.0229309108, 0.00662569702, -0.00180298032, 0.00574636087, 0.0180502534, 0.0014238091, -0.005351, -0.00824803859, -0.00199554814, -0.0158962198, -0.00304529839, 0.0167960059, -0.017205, 0.0122834425, -0.013005998, 0.0158689525, -0.00553845568, -0.00413765246, -0.0145329079, 0.00803672522, 0.00919554, 0.00108298112, -0.0141648129, 0.0212131366, -0.0032157125, 0.00118267327, 0.000788590871, -0.0188409742, 0.00393997226, -0.0142875109, 0.00543279899, -0.0126992529, -0.00935913809, -0.00501358043, 0.0041137943, -0.0267754514, -0.0174640287, 0.00110769109, -0.00360936881, -0.000385774736, -0.0247441158, 0.0164279118, -0.0278388336, 0.0164960772, 0.0110155623, -0.0315470435, 0.0134967901, -0.0102180243, -0.0193590317, -0.0269663148, -0.0200679544, 0.0343554653, -0.00293964171, 0.00082309969, -0.0220311247, -0.021281302, 0.00427398365, -5.68756768e-05, 0.0202315524, -0.0465162098, -0.0128424, -0.00135819975, -0.0157871544, -0.0182956494, 0.0180911515, -0.0192090683, -0.00364345172, 0.00744368415, 0.00430125, 0.00850706734, 0.00119630643, -0.0154326931, 0.00803672522, 0.0176412594, 0.0101771252, 0.0126242703, 0.0087183807, 0.0113632064, -0.0269799475, -0.00728690345, -0.00139739492, 0.0124061406, -0.00124402228, 0.0213222019, -0.000580259715, -0.0174231287, -0.0180366188, -0.00156440074, 0.00254768948, 0.0173004307, -0.0119903302, -0.0113700237, -0.00478181755, 0.0278115682, -0.00252042338, 0.0120107802, -0.015064599, 0.0132445777, -0.0110360114, -0.0108178817, -0.00398428, -0.0211313386, 0.0445257761, 0.00406607846, -0.0242124237, -0.0135172401, -0.00418877648, 0.0311380494, 0.00536463317, 0.00750503317, -0.0122698089, 0.00681315223, -0.0426444039, -0.00606673909, -0.0239261277, 0.0226582475, -0.019631695, 0.0223992188, 0.0134081747, 0.0195498969, 0.00900467671, -0.00381045742, 0.00308619789, -0.0366185643, 0.015269096, -0.0321741663, -0.0282750931, -0.0151327644, -0.0257666, -0.0134286247, -0.00375933317, -0.0121811936, 0.0247304831, -0.00638370914, 0.00673817, -0.0157053564, -0.0128969327, -0.0129173826, -0.000247526361, -0.00456027919, 0.00210120482, -0.00931823812, 0.00755274948, -0.00446484704, -0.0100339772, 0.0108996807, -0.0154463267, 0.00898422673, -0.0102998232, -0.0108315153, 0.0332648158, -0.0161552485, 0.00140165526, 0.00601902325, -0.0150918653, -0.00773679651, 0.0321741663, 0.0163052138, 0.0106951836, 0.0167005733, -0.0120584955, 0.0187182762, 0.00794129353, -0.00572591089, 0.0177912228, 0.0198361911, 0.00950910244, 0.0012389099, -0.00715057226, 0.0171913654, -0.00770271337, -7.67395613e-05, -0.0184865128, 0.00619284529, 0.00442054, -0.00678588636, 0.0120107802, -0.028193295, -0.0277434029, 0.0148192029, 0.0292021465, 0.0167687386, -0.0117381178, -0.0313561782, 0.015187297, 0.0326104276, 0.0075322995, 0.0165778752, -0.00817305595, 0.0104702376, 0.0314652435, -0.0158825871, -0.0253167059, -0.00758001534, -0.00354120322, -0.0164142773, -0.0152009306, -0.000351478899, 0.00715738861, 0.0247441158, 0.0103066396, 0.00398087129, 0.017573094, -0.00670067919, 0.00265164208, -0.00100799894, -0.00721192127, 0.00133689796, 0.00718465494, -0.025439404, -0.0108110653, 0.0166733079, 0.0132445777, 0.0114313727, 0.0186773762, 0.00514650345, 0.0101566752, 0.00782541186, -0.00972723216, -0.000560662127, -0.0248531811, -0.0144102089, -0.00276241126, -0.0040285876, -0.0109746624, -0.00963861682, -0.00685064355, -0.0197134931, 0.00324979541, 0.0377092138, 0.0338919386, 0.0145329079, -0.00768908067, 0.0229718089, -0.00986356288, -0.0140830148, 0.00881381333, -0.00593722425, -0.0019427198, 0.0274025742, -0.0146828722, -0.0123856906, 0.000794981373, 0.0229309108, -0.0171641, 0.0101225926, -0.000253277831, 0.0258892979, 0.0170959346, 0.00611104676, -0.00604969775, 0.0200679544, 0.000845679548, -0.0120789455, -0.0102180243, -0.0243487544, 0.00601561461, 0.0169459693, -0.0111246267, 0.0182274841, 0.00483634975, 0.000206627, 0.00685405172, 0.00835710298, 0.00203474332, 0.00901149306, -0.0160052851, -0.0102043916, -0.0190318376, -0.0306199901, 0.0224810168, 0.000347431574, -0.0110769114, -0.00983629748, -0.0126242703, -0.00826167129, 0.0215539653, 0.0136740208, 0.0258756652, 0.0211858712, 0.0130400807, 0.0191272702, 0.00401495444, -0.00835028663, 0.010988296, 0.00178082648, 0.00787994452, 0.00499313092, 0.0154872257, 0.0125901876, -0.00286295544, -0.0116563188, -0.00975449849, 0.0180638861, -0.00525556831, 0.00616217079, 0.0326922238, 0.0521603227, -0.00989764649, -0.00486361608, -0.00542939082, 0.00245396188, 0.0158962198, 0.00824122224, -0.00799582526, 0.00482271658, 0.0191272702, 0.00979539752, -0.0161825158, -0.00559980469, -0.0147783039, 0.00223071943, 0.00619284529, 0.00159592729, 0.0186773762, -0.00422967598, 0.0173004307, 0.0248122811, -0.0180093534, -0.0114654554, 0.00679270271, 0.00161722908, 0.0105520356, -0.0168641713, -0.00396383, 0.0202860851, 0.0090251267, -0.0259983633, 0.000318035163, -0.00510219578, 0.0055180057, 0.00710967276, 0.0332920812, -0.000487384095, 0.00753911631, -0.00233126385, -0.0103066396, -0.0144102089, 0.0103952549, 0.0113154911, -0.00837073661, 0.00457050418, -0.00290555903, -0.0065882057, -0.000991809531, 0.0158689525, 0.0101294089, -0.0121607445, -0.0150373327, 0.00518058613, -0.00126276782, 0.00834347, -0.00461822, 0.0344372652, -0.017368596, 0.00785949454, -0.00332477759, 0.00908647571, 0.00663933, -0.00255450606, -0.00521466881, 0.00131900446, -0.00360255223, -0.012781051, -0.0115199871, 0.0138921505, 0.0337556079, 0.0281114969, -0.00387862301, 0.00702105742, -0.00626441929, 0.0285204891, 0.00567819504, 0.00829575397, 0.00374229182, 0.00431147451, 0.0103611723, 0.00291067152, -0.00836392, -0.00929097179, 0.0101839416, -0.0279751644, -0.00504084677, -0.000981584773, 0.0317924395, 0.0152554633, 0.023339903, 0.00794811, 0.00720510446, -0.00163512246, -0.00404903712, -0.0121402945, -0.0122016435, -0.0165097099, -0.0141511802, -0.00386498985, -0.0136535708, 0.00789357722, 0.0185819436, 0.00806399155, -0.0158962198, -0.000873371842, -0.00445121434, 0.00254768948, -0.00950910244, -0.00758683216, -0.0320923664, -0.000169242427, 0.00554186385, -0.00184217549, 0.0119903302, -0.0135240564, -0.00328387809, -0.0191136356, 0.0141920792, -0.000141976183, -0.00578385172, -0.0308108535, -0.0155690247, 0.00328047, -0.0259165633, 0.00019640215, 0.0145192742, -0.0325558931, 0.00517717795, -0.00710967276, -0.0162097812, -0.00641438365, 0.0255484693, 0.00693244208, -0.0133195594, 0.00859568268, -0.00263800891, 0.0024147667, -0.00680974405, 0.00398768811, 0.00369798415, 0.00569523638, 0.0114995381, -0.00503743859, -0.0123925069, -0.0210631732, -0.0134627074, 0.00692562573, -0.00886152871, 0.0101566752, -0.0090251267, -0.0103339059, -0.0180229861, -0.00972723216, -0.0189500395, 0.0153781613, 0.0200270545, 0.0155144921, -0.0153781613, -0.00185410446, 0.016714206, 0.0208314098, -0.00149708719, 0.00611445494, 0.0233808029, -0.00173396268, -0.00290726312, 0.0169732366, -0.0171232, 0.0126924356, 0.000490792387, -0.0231081415, 0.0121471109, 0.0105929356, -0.0204224158, 0.000857608567, 0.00841845293, -0.0070006079, -0.00898422673, 0.00853433367, 0.000870389573, -0.00198361906, 0.00769589702, 0.00691540074, 0.00103952549, 0.0127878683, 0.010988296, -0.0223310534, 0.0136876535, -0.0080571752, -0.0204769485, 0.0287386198, 0.0313016474, -0.00201088539, -0.00985674653, 0.0237761643, -0.00648595765, -0.00222390285, 0.0147237713, -0.0208450425, -0.0145465406, -0.041199293, -0.000297798484, 0.00219834084, 0.00911374204, 0.00541575765, -0.00652344851, -0.00328558218, -0.035391584, -0.00323275384, 0.00428420817, -0.0158144217, -0.00368094281, 0.0116154198, 0.0140012158, 0.0286840871, 0.0108383317, 0.00150731194, -0.0213358346, -0.00138120563, 0.014737404, -0.00430465816, 0.0273344088, 0.000520614849, 0.0100816935, -0.00073320634, -0.0215130653, -0.000844401482, 0.00167261355, -0.00690176757, -0.00910692476, 0.00275729876, -0.00384113193, 0.0045500542, 0.0126310866, 0.00275900285, -0.00208075508, -0.00944093615, 0.00970678218, 0.0016913591, -0.0165506098, 0.00736188563, -0.00490110693, -0.038690798, 0.0136126718, -0.0121743772, -0.0212949365, 0.0191681683, 0.0152554633, -0.00595426559, -1.38860796e-05, 0.00366730965, -0.0158962198, -0.00361277722, 0.0362095721, 0.015473593, 0.0143965762, -0.00129770278, -0.00937958714, -0.00181320519, -0.000125254301, 0.00832302, 0.0189909376, -0.0138103524, -0.00225457735, 0.028029697, 0.0126174539, -0.0181456842, 0.010783799, -0.0200270545, -0.0102452906, -0.0132241277, 0.00310494332, -0.000446910766, -0.0146692386, 0.0110973604, -0.0158144217, -0.00506470446, -0.00218300358, -0.0156780891, 0.00485339109, -0.00165557221, -0.00400813762, -0.00283398503, -0.0104906866, -0.00317651732, -0.00153628236, 0.0107565327, -0.00505448, -0.0144374752, 0.00687450171, 0.030292796, -0.00657798117, 0.00610763859, -0.00339123886, -0.0126174539, 0.0121811936, -0.0168369059, 0.0136876535, 0.0319833, -0.0178457554, 0.00974768214, 0.0116154198, 0.0226037148, 0.00422285916, 0.0279206336, -0.0111996094, 0.0468434058, 0.0252076406, 0.00159848353, 0.0354461148, -0.00483634975, 0.0144511089, 0.00149282685, 0.0129787317, 0.00765499752, 0.00420581782, -0.00276922784, -0.0182683822, -0.0137762688, 0.000312070682, 0.0154872257, -0.000260946457, 0.00312539306, 0.00876609702, -0.00622352, -0.00196657772, 0.0129514653, -0.0150237, -0.000472898886, 0.00403881213, 0.00927733909, 0.00449211337, 0.0095772678, 0.0118812649, -0.00716420542, -0.0212676693, -0.0176412594, 0.0121198446, 0.00480567524, 0.00524875196, 0.00693925889, 0.0272798762, -0.00248634047, 0.0221810881, -0.00816624, -0.0258756652, -0.00521126064, -0.0138171688, -0.017000502, -0.0362913683, -0.0141102802, -0.00424671732, -0.002211974, 0.0135240564, 0.0104702376, -0.016877804, 0.0115131708, -0.0177639574, 0.0035480198, 0.00830257125, 0.00756638218, 0.0143011445, -0.000915975368, -0.0219356921, 0.00485679973, 0.0157871544, 0.0143965762, 0.00630872697, -0.00587246707, 0.0190863702, -0.00289533427, -0.0114722718, -0.0177366901, -0.012719702, 0.00165472017, 0.00179105136, -0.0175458267, 0.015391794, -0.0195771623, -0.00467616087, -0.00514309527, -0.00514991162, -0.00227673119, 0.00209098, -0.0266118534, -0.010763349, -0.0142875109, 0.00818669, 0.00694948342, 0.00563047919, 0.0117722, -0.00362300198, 0.00202792673, -0.0304018613, 0.00504425494, 0.0129991816, 0.0176003594, 0.00157377345, -0.0201770198, 0.0113700237, -0.0014382943, -0.0194135644, 0.00509537896, 0.00950228516, -0.0100407936, 0.0306199901, 0.0249758791, 0.0205996465, -0.0120244129, -0.00430125, 0.00199895632, 0.00689154305, -0.00459777, -0.00597812375, 0.0227127802, 0.011192793, -0.00138631801, 0.0286840871, 0.015146398, -0.00255109789, -0.0178048573, -0.00349689554, -0.00335374777, 0.00183195074, 0.0197134931, -0.00809807424, 0.00673817, 0.0251803752, -0.0205860138, -0.00507152127, 0.000503999472, -0.0317106396, -0.0125492886, 0.0159780178, -0.0169596039, 0.00190352462, 0.0189636722, -0.00236875494, -0.00328047, 0.0105929356, 0.00686427671, -0.00568501186, 0.0194544643, 0.0158689525, 0.006492774, -0.0259029306, 0.00633940147, -0.0114518218, -0.0155553911, -0.0118812649, 0.00821395591, -0.00208586757, 0.00141784467, 0.0214994326, -0.0213767346, -0.0357733108, -0.0230808742, -0.000165088582, 0.0108928643, 0.0119766975, 0.00672794553, 0.0147101376, -0.0138785178, -0.00874564704, -0.0159098525, 0.00160359591, 0.0116767688, 0.0341100693, 0.000711904548, 0.0192363337, -0.00330432784, -0.00558617152, 0.00573954405, 0.00479545025, 0.0205042139, -0.00120567915, 0.00830257125, -0.0106338346, 0.0168096386, 0.0205860138, -0.0150509663, -0.00644165, 0.00243010395, -0.00424671732, -0.0134422574, 0.00560662104, 0.0436259881, -0.00952955149, 0.00738233514, -0.000443502475, 0.000496330846, 0.00363322697, -0.0109337633, 0.00457050418, 0.0047579594, -0.00726645393, -0.00442735618, -0.0189909376, -0.00993854553, 0.00463866955, -0.0100067109, 0.014941901, -0.0152009306, 0.0140966475, -0.0213085692, 0.0170277692, -0.00916827377, -0.0178730227, 0.013005998, -0.00980221387, -0.00666659651, 0.019672595, -0.00226480234, -0.00549074, 0.019345399, 0.0165506098, -0.00809125789, 0.0282478277, -0.00263119233, -0.00433192449, -0.00491814874, -0.0221810881, -0.00704832375, 0.0251667425, 0.00215062499, 0.0235171337, 0.00198702747, -0.00179445965, 0.00667000469, -0.000444780599, -0.0165915079, 0.0155144921, 0.0027521865, 0.0178730227, 0.0192908663, -0.000251999736, 0.028602289, 0.0223174188, 0.0191272702, -0.0197134931, -0.0166460406, 0.0150100663, 0.0161279831, -0.0100407936, 0.000259242312, -0.00839800294, 0.0115949698, -0.00515672797, -0.00070977438, 0.0117722, 0.0120721292, 0.0122766262, 0.0213494673, 0.0253985059, 0.0140012158, -0.0042262678, 0.00199043564, -0.00385476509, 0.00238920446, -0.00175526435, 0.000116201059, 0.00427057547, -0.0109133134, 0.0385272, -0.0117926504, -0.0061689876, 0.0188682396, -0.0209541079, -0.00671772053, 0.00859568268, 0.0247168485, 0.0265027881, 0.0124402232, -0.0011221763, -0.00779814553, -0.00677906955, -0.0226718802, 0.00818669, 0.0147101376, 0.00104634208, -0.0177366901, -0.0155008594, -0.0348735228, -0.0118199158, -0.00188989146, -0.00717102177, 0.00541234901, -0.023503501, 0.006574573, 0.000238366614, 0.0157735217, 0.0160461832, 0.00208075508, 0.0187864415, -0.00036958541, 0.00230058935, 0.00068037794, 0.0104020713, -0.0159507524, -0.00568501186, -0.00830257125, 0.00403540395, 0.00620988663, 0.00433874084, 0.015105499, 0.0112609584, -0.00914100837, -0.0111178104, -0.0113836564, -0.00441372301, 0.00116989226, -0.0215539653, 0.0104702376, 0.0310017187, -0.0247850139, -0.00738233514, -0.00314073032, 0.00634280965, 0.00752548315, -0.0295293406, 0.00278797327, -0.000680804, 0.00642460864, 0.00950910244, 0.00631554332, -0.00760046532, -0.0153236287, 0.00850025099, 0.00802990887, 0.00657116435, 0.0191272702, 0.0185683109, -0.00311346399, -0.017286798, 0.00132070866, 0.00405244529, -0.0145329079, -0.00676884456, 0.00527942646, 0.0304291267, 0.00290044653, -0.0273344088, -0.0135922218, 0.00385135668, -0.00660183886, 0.0110973604, 0.00366730965, 0.0146965049, 0.0190863702, -0.0122425426, 0.0045909537, 0.00499994727, -0.0207905099, -0.00391952228, 0.00646550767, 0.0203678831, 0.0160461832, 0.000265845854, -0.0286568217, 0.0181865841, -0.0118744485, -0.00756638218, 0.0100271609, -0.0024420328, 0.0151600307, -0.00205348898, 0.010824698, -0.0272526089, -0.0086025, -0.0160189178, -0.0138171688, -0.0168641713, -0.0122493599, 0.0116631351, -0.0029856537, -0.00957045145, 0.0220038574, -0.014941901, -0.000291834, -0.0208723098, 0.00223412784, 0.015146398, 0.0119017148, -0.0211040713, -1.9344654e-05, -0.0181047861, 0.010374805, 0.0264482554, -0.00825485494, -0.00155673199, -0.0134081747, -0.0142602446, 0.0193590317, -0.0127606019, 0.0134286247, -0.0111382604, 0.0163597465, -0.0108724143, 0.0063666678, 0.00877973065, -0.0265027881, -0.00961135048, 0.0100816935, -0.0113291238, 0.00852070097, -0.0174231287, -0.000388756976, -0.0105384029, -0.0175458267, 0.0225082841, 0.00189670804, -0.00828893762, 0.00735506881, 0.0098158475, -0.013333193, 0.00111621176, -0.00921599, 0.0138308015, -3.32307318e-05, 0.0312198475, 0.00384113193, -0.00144085055, 0.00683019403, 0.00328558218, -0.0105588529, -0.00317822141, -0.00150219956, 0.00772316335, 0.0424808078, 0.0326649584, -0.0108928643, -0.00482271658, 0.00299417437, 0.0055350475, 0.0165642425, -0.00984993, 0.015637191, 0.00895696, 0.0139057841, -0.00226821052, -0.0141511802, -0.00603606459, 0.00665296335, 0.000420709606, 0.0203133505, 0.00169221114, 0.0238443296, 0.00154906337, -0.0205723811, -0.00912055839, 0.0254530385, 0.00761409849, 0.0120380465, 0.00616217079, -0.0254121386, -0.0209132079, 0.00355483638, 0.00347303762, 0.00847298466, 0.0210768059, -0.0218402613, -0.00468979357, 0.00734143611, 0.0119698802, -0.000839715067, -0.00105571479, -0.00928415544, -0.0104497876, -0.00685405172, 0.0169596039, 0.00397746312, 0.00884789601, 0.00945457, 0.000220473128, -0.0135240564, -0.0144511089, 0.0229854435, 0.0135036064, -0.00249997363, 0.0298020039, -0.0102384742, 0.00733461929, -0.0234762356, 0.00621329527, -0.0238034297, -0.023339903, -0.0156235574, 0.00477840891, -0.000967951608, -0.000741301, 0.00690517621, -0.0146283396, -0.0148464693, 0.0146556059, -0.00133689796, -0.0236807317, -0.00217107451, -0.0158007871, 0.00946820248, 0.0200543217, -0.000794981373, -0.0146965049, -0.0023738672, -0.00788676087, -0.00279478985, 0.00569182821, -0.00344065903, 0.0122152772, -0.0119630639, 0.0542598218, -0.0121198446, 0.00421604281, -0.0154190604, 0.00190693291, -0.0178321227, 0.00652685668, -0.0147783039, 0.0128764836, -0.00498290593, -0.0104225213, -0.00295838737, 0.0198361911, 0.00725282077, -0.0113018574, -0.00556913, 0.0165915079, 0.00648254901, 0.00135138317, 0.00640415866, -0.0197407603, -0.0202860851, 0.00194953638, 0.00036937237, 0.00364004332, -0.0221947208, 0.000946649874, -0.0289294831, -0.0147510376, -0.00676202821, 0.0126651702, -0.00261074281, 0.00400132127, 0.00481249206, -0.00611104676, 0.0310017187, 0.0158553198, -0.00542939082, 0.017286798, -0.00624056114, -0.0101430425, -0.00960453413, 0.022262888, -0.00293112104, 0.0130400807, -0.0227673128, 0.00474432623, -0.00994536187, -0.023626199, -0.0222901534, -0.00777087919, -0.000574721256, 0.00407630345, -0.00777087919, 0.0132854767, 0.0113904728, 0.0333193503, -0.0188409742, 0.00872519799, -0.000166153666, -0.00307767722, 0.010926947, 0.00764136435, -0.0271162782, -0.000584520109, -0.00632236, -0.0204633158, 0.00706877327, -0.00790039357, 0.0204087831, 0.00594404107, -0.0187182762, 0.0011707443, 0.00226480234, 2.06893274e-05, 0.00607696408, 0.0151600307, -0.00453301286, -0.0197271258, -0.00982948, 0.0184592456, -0.0100748772, -0.0147101376, -0.0298838019, 0.0245532524, 0.0223583188, -0.00963861682, 0.00172544189, -0.00596789876, -0.0096590668, -0.00974768214, -0.00368094281, 0.00193931151, -0.00398428, -0.0186228435, -0.0270890128, 0.0177503247, -0.0539598949, -0.021281302, 0.0164551772, -0.00313220965, 0.0065882057, 0.00274537, 0.00179275544, 0.0118403658, 0.00275900285, 0.0125697376, 0.00528624281, -0.00396723812, -0.00235512177, -0.0174231287, -0.017450396, 0.00291919219, 0.0201361198, -0.0011528508, 0.00439668167, -0.0191545356, 0.0212540366, -0.0135445064, 0.0138853341, -0.0215539653, -0.0143420435, -0.00127640099, 0.0215130653, 0.000780922244, -0.0113359401, -0.0123243416, 0.00680633588, -0.00895014405, 0.00877291337, -0.0015405427, -0.000539360393, 0.00752548315, 0.00164875563, -0.0293930098, -0.0101771252, -0.000905750494, 0.0130332643, 0.00103356107, -0.0110564614, -0.0214994326, 0.0046318532, 0.0149282683, 0.01781849, -0.0105452193, -0.0074368678, -0.00880699605, -0.0121743772, 0.02214019, 0.0194271989, 0.021281302, 0.00288510928, -0.00335886027, 0.00289363, -0.00820713863, 0.0068029277, -0.014737404, -0.00316799665, -0.0138853341, -0.00130196312, -0.00607014727, 0.0051124203, 0.0029447542, -0.0158553198, 0.0189909376, -0.000404307269, -0.000879336323, -0.0205587465, 0.00523511879, 0.00117330055, -0.0202860851, 0.0118199158, -0.00943412, -0.00729372, -0.00322934566, 0.00592359109, 0.00236875494, 0.00701424107, 0.0108315153, 0.00722555444, -0.0211313386, 0.0056611537, 0.0167414732, -0.019795293, 0.0100135272, 0.0154463267, -0.0173004307, 0.0251531098, -0.00667000469, 0.00697674975, 0.0124606732, 0.00392633909, 0.0045909537, -0.0116835851, 0.00432510767, -0.00818669, 0.0241033584, 0.00526920147, 0.0104293376, 0.0217857286, -0.0096726995, 0.0549960136, 0.00837755296, -0.0207223445, -0.00591336656, 0.00377296633, 0.00598153193, 0.0247986484, -0.0206269119, -0.00284421, 0.00504425494, 0.0307835881, -0.00438645668, 0.0070415074, -0.013087797, 0.00445462251, -0.019059103, 0.00989764649, -0.0266118534, 0.00531691732, 0.00903194305, 0.0025136068, -0.00352416188, -0.029720204, -0.00297031621, -0.00433533266, -0.00454323785, 0.00573954405, 0.0137626361, 0.00400132127, -0.00989764649, -0.00339975976, -0.00778451236, 0.0217175633, 0.00784586184, 0.00084653165, -0.00640075048, -0.000110023553, 0.0111859757, 0.00827530492, 0.0102725569, -0.0276343375, -0.006564348, -0.00840481929, 0.00137694529, -0.0211858712, -0.0269663148, -0.024076093, -0.00216255384, 0.000300780754, -0.00825485494, -0.0134081747, -0.00147152506, 0.0151600307, 0.00377637474, 0.0112405084, -0.0199588891, 0.0144783752, 0.00654389849, 0.00644165, 0.00969996583, -0.00309642265, 0.00218811608, 0.00130281516, -0.00786631089, -0.00426035048, -0.00755274948, 0.0116495024, -0.00112643663, 0.00433192449, -0.00196146546, -0.00514650345, 0.00274196151, 0.0015226492, -0.000522318936, 0.0055350475, -0.00114944251, 0.00864339899, 0.0112609584, -0.0133059267, -0.00175696856, -0.00874564704, -0.00403540395, 0.0177230574, 0.0177912228, -0.00701424107, 0.00396723812, 0.00248122821, 0.000809466583, -0.0135990391, 0.000503999472, 0.00620647846, -0.0332648158, -0.00413765246, -0.0153236287, -0.0129310153, 0.00781859551, 0.00460799504, -0.00131218799, 0.00630191, -0.0175458267, -0.00046267407, 0.00561684603, -0.00609400542, 0.0241715237, -5.27484626e-05, -0.00897059403, -0.0016248977, -0.00192567834, -0.0103679886, 0.00944093615, -0.00255791447, 0.00925007276, 0.005351, 0.00719147176, -0.0118812649, 0.00868429802, -0.0116495024, 0.0129719153, 0.00503062177, -0.0134149911, -0.000616046658, -0.0138512515, 0.00990446284, 0.0156508237, -0.00153883861, 0.00702787424, -0.00711648958, -0.0165233426, -0.00163256633, -0.000254555925, 0.0139739495, 0.000871241675, -0.0021812995, 0.0225764494, -0.00046523026, 0.0187864415, 0.00933187176, 0.00115881534, 0.0118676322, -0.00921599, 0.00737551879, 0.0144238425, -0.00416151, -0.0134286247, 0.00751866633, 0.00122698094, -0.0174231287, 0.000946649874, -0.0038854396, -0.00206712214, -0.00374910841, -0.0233671702, -0.0201361198, 0.0148873683, -0.0154054267, 0.015637191, -0.00458413688, -0.0132854767, -0.0102861905, -0.00516013661, 0.0153781613, -0.00377637474, 0.0206678119, -0.00448188884, 0.00406607846, -0.00702787424, 0.00188648317, -0.00832302, -0.00215914566, -0.0164551772, 0.025562102, -0.00801627524, -0.021853894, -0.00622692797, -0.00890242867, 0.000183621101, -0.00766181434, -0.015064599, -0.00776406284, 0.0050987876, -0.00432851585, -0.00486361608, 0.00807762425, 0.000858034589, -0.0292021465, 0.00396383, -0.0137353698, 0.0181865841, 0.00501698861, 0.00850706734, -0.0142466119, -0.00120227085, 0.00622692797, -0.0173822306, -0.0259574633, -0.00194101571, 0.0209677406, -0.021281302, 0.00186944182, 0.0101157762, -0.000341893116, -0.0164960772, -0.0058997334, -0.0316288434, -0.00935232174, 0.0017271461, -0.0111859757, -0.00256132265, -0.000793703308, 0.0134695238, 0.0241442584, -0.00506129628, -0.0272526089, -0.00235341769, 0.0246214177, -0.0224401187, -0.000347218564, -0.00155332382, 0.00276752375, -0.0145601733, 0.0110155623, -0.0126856193, 0.0123993242, 0.00901149306, 0.0122834425, 0.0182820167, -0.00379341608, 0.00898422673, -0.00352416188, 0.0169323366, -0.0161961485, -0.0115063544, -0.00782541186, -0.000840567169, 0.00186262524, 0.000256686122, -0.0385544673, 0.0171777327, 0.00139483868, 0.00856841635, 0.0215403326, -0.0121743772, -0.00502039678, -0.00445121434, 0.0246895831, -0.00646550767, -0.00749821682, -0.00984993, -0.00787312724, -0.00545324851, 0.0162234139, 0.00346622104, -0.0153372614, -0.00279138167, 0.0161961485, -0.000359573576, -0.0392906554, -0.0110973604, 0.000932164665, 0.000536378124, -0.0104634203, 0.0146147059, -0.0040285876, 0.00913419109, -0.0095772678, 0.00874564704, 0.0111041777, 0.00732098613, -0.0210359059, 0.0683837384, 0.00843890198, 0.0187319089, -0.00171862543, 0.00266527524, -0.0340282694, -0.00275389059, 0.0397269167, -0.00777087919, -0.000769845326, -0.00577703537, -0.00669386284, -0.0161143504, 0.00338271819, -0.00972041581, 0.00218641176, -0.0070960396, -0.00925688911, -0.015105499, -0.00583156757, -0.012924199, 0.00282035209, 0.0123856906, -0.0158825871, 0.0149010019, -0.0112677747, -0.0127469683, 0.00265334616, 0.000341680105, 0.00169476739, 0.00693244208, 0.00150219956, 0.0208995752, -0.00639393413, -0.0140830148, 0.00859568268, 0.0191272702, -0.0046318532, 0.0203406177, 0.00850025099, 0.0105452193, -0.00460458687, -0.0135922218, 0.00339975976, 0.00851388462, 0.00152520544, -0.00710285641, -0.0292839445, -0.0124947559, -0.00335715618, -0.000599431281, -0.0158144217, 0.000524875184, -0.00769589702, 0.0186092108, -0.00196998613, 0.00893651135, -0.00215914566, 0.00115966739, 0.0123584243, 0.0135649554, 0.010456604, 0.0144374752, -0.0118199158, -0.0165915079, -0.0109610297, 0.00331625668, 0.00603265641, -0.0210904386, 0.00125254306, 0.00862976629, -0.0117790168, 0.00101311132, -0.0173276979, 0.0229581762, 0.00440690666, -0.0343827307, 0.03441, -0.0166051425, 0.00473751, 0.0042808, 0.00371502549, 0.000461395946, -0.00381045742, -0.00399791263, -0.00433533266, -0.00235000928, -0.0143147772, -0.00460458687, 0.0126310866, -0.00346622104, 0.00534077547, -0.0135854054, 0.0234080702, 0.0189773049, 0.0142466119, 0.0141375465, 0.000952614355, 0.0229036435, 0.00671772053, -0.0128287673, 0.0155417584, -0.00643142499, -0.024035193, -0.00667341286, 0.00740278512, -0.00872519799, 0.0152827287, 0.0107701663, 0.00203985581, 0.000193632921, 0.00127554894, 0.000494200678, 0.0136467544, -0.0058588339, 0.0207905099, -0.00652685668, -0.00348837487, 0.0238034297, -0.0165915079, -0.0159234852, 0.00732780294, -0.0220447574, 0.00546006532, -0.0141920792, -0.0025187193, -0.00609400542, 0.000694011105, 0.0338101424, 0.0101294089, -0.00173822301, -0.00731417, -0.0180229861, 0.0182820167, 0.0127946846, 0.0235853, 0.00178253057, -0.00602924777, 0.00248804456, 0.0172731653, -0.00369457598, 0.0130400807, 0.0117449341, 0.00209268415, -0.0159507524, -0.0123447916, -0.000186922873, -0.0203406177, 0.0167414732, 0.0053918995, -0.0106065683, 0.00552141434, -0.0113768401, 0.000197786765, 0.0105656693, 0.0116017861, -0.00410356931, -0.0350098573, 0.0139330504, -0.00452960469, 0.00794811, -0.00323786633, -0.00473410124, -0.0175049286, 0.000489514263, -0.00813897327, 0.0141511802, -0.00410016114, 0.0124743059, 0.017532194, 0.0157735217, 0.00195294467, -0.00632917648, 0.00494882325, 0.0105724856, -0.00323275384, -0.00662910519, -0.0163461119, -0.0112950411, -0.0204905812, -0.00157547754, 0.0109133134, 0.0229990762, 0.0327194929, 0.00408312, -0.0185955781, 0.0225219168, -0.000820543501, 0.0111041777, 0.0116358688, -0.0208177771, 0.0121334782, -0.00284421, -0.00548051484, 0.00513287028, -0.0230399743, 0.00664273836, -0.00598834874, -0.00376274157, 0.00244032871, 0.0184319802, -0.0158280544, -0.016877804, -0.00342532177, -0.0090251267, 0.0173276979, -0.0144783752, 0.0119630639, -0.0020142938, -0.0117517505, 0.0184319802]
31 Jan, 2023
Node.js date-and-time Date.isLeapYear() Method 31 Jan, 2023 The date-and-time.Date.isLeapYear() is a minimalist collection of functions for manipulating JS date and time module which is used to check if the given year is a leap year or not. Required Module: Install the module by npm or used it locally. By using npm: npm install date-and-time --save By using CDN link: <script src="/path/to/date-and-time.min.js"></script> Syntax: const isLeapYear(y) Parameters: This Method takes a string of year. Return Value: This method returns the Boolean value true if and only if the string of year is leap. Example 1: index.js // Node.js program to demonstrate the // Date.isLeapYear() method // Importing http module const date = require('date-and-time') // creating object of current date and time // by using Date() const now  =  new Date(); // Checking the year is leap or not // by using date.isLeapYear() api const value = date.isLeapYear(now.getFullYear()); // display the result if(value) console.log("This is a leap year") else console.log("This is not a leap year") Run index.js file using below command: node index.js Output: This is not a leap year Example 2: index.js // Node.js program to demonstrate the // Date.isLeapYear() method // Importing http module const date = require('date-and-time') // Creating object of current date and time // by using Date() method const now  =  new Date(); now.setFullYear(2016) // Checking the year leap or not // by using date.isLeapYear() api const value = date.isLeapYear(now.getFullYear()); // Display the result if(value) console.log("This is a leap year") else console.log("This is not a leap year") Run index.js file using below command: node index.js Output: This is a leap year Reference: https://github.com/knowledgecode/date-and-time#isleapyeary 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
https://www.geeksforgeeks.org/node-js-date-and-time-date-isleapyear-method?ref=asr10
PHP
Node.js date-and-time Date.isLeapYear() Method
PHP Date and Time, Node.js date-and-time Date.isLeapYear() Method, PHP Tutorial, PHP
GeeksforGeeks
[-0.0292970724, 0.0249593984, -0.00420434307, 0.0241060872, 0.0064294748, -0.0209772736, -0.00258067856, 0.0195195302, -0.0348199, 0.0028503018, 0.0425471254, 0.000814054452, 0.00945162401, 0.00203995081, 0.00427249, -0.00150737108, -0.0376405753, 0.00940421782, 0.0106012262, 0.00482951337, -0.0301740877, 0.0309088863, -0.011614535, 0.0071879751, -0.0174218025, 0.00181180821, 0.0429974832, -0.00981309731, -0.0585467368, 0.0123730358, 0.0204795077, -0.00554653304, 0.0347962, -0.029984463, -0.0126337698, -0.0410538279, 0.0272349, 0.0196498968, -0.0499187969, -0.0325207, -0.00562060531, -0.0064294748, -0.0205150619, 0.000906644855, 0.0177892018, 0.038659811, 0.00389620243, -0.0108382571, 0.00249623624, -0.0108382571, -0.0028903007, 0.0275193378, 0.0520046726, 0.0142811378, 0.0273534153, 0.00407397607, -0.00556727359, 0.0205506161, -0.0027569707, -0.019732859, 0.0350569338, -0.041598998, 0.0265949145, 0.00285622757, -0.000341102888, 0.0352702625, -0.0272586029, 0.0361235738, 0.0219965074, -0.000743315439, -0.031074807, -0.00729463901, 0.0272349, -0.0266423207, 0.0193536077, 0.00444137445, -0.0274245255, 0.0340851061, -0.0404375456, -0.0300792754, -0.00907237455, -0.0613437071, -0.0361709818, 0.00442063436, 0.0200409982, -0.0191165768, 0.0455574207, -0.0396079347, 0.0143878022, 0.0293681826, 0.0253623519, -0.0210246798, -0.0562712364, -0.00994939, -0.0113715781, 0.0455811247, 0.0322362594, 0.00760870567, -0.0539009236, 0.01784846, 0.0282778386, 0.0182040054, -0.00448581809, -0.0324021839, -0.0276141502, -0.035649512, 0.0127167311, -0.00375398365, 0.0199580379, 0.00103479, 0.0444907807, -0.0141626224, -0.00527098402, -0.00207106117, -0.0388257317, 0.0600163341, -0.037806496, -0.0179551225, 0.0333029032, 0.0361709818, 0.00700427592, 0.0247460715, 0.0400345922, 0.0640932694, -0.0263578836, 0.020811351, -0.0371665135, 0.000551097852, 0.00514061702, -0.0454626083, -0.038636107, 0.00135478214, 0.00474951509, -0.0314066522, 0.032710325, 0.00482358737, -0.0104293786, 0.0343932472, 0.00283104298, -0.0157151781, 0.0182632636, -0.0205861703, 0.00831387378, 0.0404612496, 0.0132026449, -0.00231846259, -0.0180736389, 0.0478803292, 0.00493914029, -0.00443544891, -0.00899533927, -0.024556445, 0.0270926803, -0.0271637905, 0.0244379304, -0.0184765924, 0.0125389574, -0.0106308553, -0.0224350151, -0.0285859779, 0.0192825, -0.0422152802, 0.039726451, 0.0226246398, -0.060822241, 0.0574089885, -0.00919089, 0.0194365699, 0.0290363375, 0.0214276314, 0.00579245295, -0.00887682289, -0.0222572424, -0.00232586986, 0.0196854528, -0.004459152, 0.0293681826, -0.0226246398, 0.0300792754, -0.0548016429, -0.0206454284, -0.00127848773, -0.000705908926, 0.0506773, 0.00530357612, -0.0169714428, 0.0169714428, -0.0350095257, -0.0272349, -0.0185595527, -0.0334925279, -0.0253149457, 0.0457470454, 0.0203491393, -0.00126885832, 0.035673216, 0.0147907548, 0.0143878022, -0.0131196845, -0.00715242047, -7.03223777e-05, -0.011081215, -0.023075, -0.0408879034, 0.0217357725, -0.0324495882, -0.00554949604, -0.00335103041, 0.0649465844, -0.052099485, 0.0126574729, -0.0147077944, -0.021877991, -0.00222365023, 0.0534268618, -0.00144811324, 0.00122441491, 0.00320288585, 0.0184884444, -0.00771537, -0.040532358, 0.00795832649, -0.00682057673, -0.0358865447, -0.0265475083, -0.0355309956, 0.0343458392, -0.00998494495, 0.0081361, -0.0218187347, 0.0250542108, 0.00493914029, -0.0184765924, -0.00674354145, 0.00814795215, 0.00556134759, 0.00833165087, 0.00389620243, 0.00490654865, -0.000102404942, 0.0161892399, -0.0182751156, -0.0123493327, -0.0553705171, -0.028111916, -0.0306481514, 0.00993161276, 0.0196498968, -0.00642354926, -0.0146840913, -0.00753759639, -0.0307429638, 0.00201772922, 0.00185625162, -0.0285859779, -0.0407930911, -0.00684428, 0.048378095, 0.0214631874, 0.0277089626, 0.0197802652, 0.0307666659, -0.0158218406, 0.00399101526, -0.00214068918, -0.00605911342, -0.0363132, 0.00879386254, -0.00696872128, 0.00412138226, 0.0242246017, -0.0412908569, 0.0148144579, 0.0325681046, -0.000473321939, -0.000682946527, -0.0166040454, 0.00379250129, -0.0101982728, -0.0366450436, -0.0190336164, 0.0201476626, 0.0114960195, -0.0138426293, 0.0315725729, -0.00849757344, 0.0140796611, -0.0220794678, -0.0170425531, -0.00530950166, -0.0349384174, -0.0134752309, 0.000369620742, 0.0217713285, 0.00337177073, -0.0244379304, -0.00687983446, 0.0591630191, -0.0109804766, 0.0244853366, -0.0631451458, -0.0491128899, -0.0469322, 0.0287281964, 0.0045628529, -0.0123137776, 0.030529635, -0.016509233, -0.00991976075, 0.00116737932, 0.0291311499, 0.0374509506, -0.0379013084, -0.020278031, 0.0289652292, 0.00752574485, 0.0031465909, 0.00112441741, 0.0215817019, 0.0171966236, -0.000908126298, 0.0234542508, -0.000653688, 0.0400108881, 0.0400108881, -0.00345473154, -0.0139967, -0.0144470595, -0.0201595146, -0.026452696, -0.0176588334, -0.00986050349, 0.0204558037, 0.00828424469, 0.0180143807, -0.0361472778, -0.0204202496, -0.0233001802, 0.0287281964, 0.0412197486, 0.00703983055, 0.0039999038, 0.0242009, -0.0147077944, 0.0100738313, -0.0214987416, -0.0264289938, 0.00174218032, 0.00631688489, 0.0205743201, 0.000569986296, 0.0496343598, 0.0418123268, -0.0177062396, 0.0231342576, -0.0313118398, -0.0308851823, -0.038612403, -0.0222809445, 0.0314540565, -0.000321844098, -0.00470803492, 0.0438270941, 0.0299607608, -0.00991383567, -0.0707775578, -0.00699835, -0.0329947621, -0.012681176, -0.0429737791, 0.000212217114, 0.00601170724, 0.00386064779, 0.00802351069, -0.0349384174, -0.0261919629, -0.0381857492, 0.0441826396, 0.0379487164, -0.00219698413, -0.0189151, 0.043471545, 0.0234779529, -0.00869312417, 0.0122663714, -0.00220883568, 0.0173388422, 0.00715834601, -0.00403545843, 0.0230157431, -0.0273771193, 0.0299370568, 0.00943977293, -0.00773314713, -0.00378361251, -0.0134041216, 0.00560282823, 0.00414212234, 0.00753759639, -0.0332792, 0.00843238924, -0.0486388281, -0.0105064139, -0.0202306248, -0.0258127116, -0.0134515278, -0.0476907045, -0.0527157672, 0.0330658704, 0.00791684631, 0.00494210329, 0.0343695432, -0.0251964312, -0.00624577561, 0.0175995771, -0.00971235894, 0.0155137, 0.036739856, -0.0129182078, 0.016746264, 0.0230631493, 0.0121952621, -0.0274008214, 0.00122737791, -0.0147077944, 0.0368109643, 0.0255282745, -0.000642577128, -0.0281356182, 0.0525261424, -0.0234423988, -0.0235490631, 0.00742500648, 0.0332554951, -0.000226476026, -0.00469025737, 0.0150514897, -0.0106130783, 0.0105953, -0.00452433573, -0.0140796611, 0.000469247956, -0.0119463792, -0.0267608371, -0.0325681046, 0.0239046104, -0.0593526438, 0.0435900614, -0.00786351413, 0.0228853747, -0.000883682456, 0.00498950947, 0.00269178697, 0.0158573966, -0.00101923477, 0.00662502553, -0.0180973429, -0.0288704168, -0.0165803414, 0.00787536614, 0.0142337317, -0.0114130583, -0.0111997304, 0.0214039292, -0.025931228, -0.00765018631, 0.0240231249, -0.0321177468, 0.00694501819, 0.00787536614, 0.0248408839, 0.0039999038, 0.00455100136, 0.0349621214, -0.00012296, -0.0157981385, -0.0145063177, -0.0154781463, -0.00814202614, -0.00609763106, 0.00612133415, -0.0086220149, 0.0296526197, 0.0392286852, 0.0174810607, -0.0047584041, 0.0303400103, -0.0209654216, -0.0114663905, -0.0265475083, 0.00454803882, -0.00397916324, -0.027566744, -0.0162247941, 0.0288704168, 0.0203609914, -0.0344169475, -0.0203728434, 0.0133211603, -0.0298422445, -0.0269741658, 0.0311459173, -0.0164144188, 0.0254808683, -0.0351754501, -0.0207165387, 0.004725812, 0.00775092468, 0.00557912514, -0.0163788646, -0.0365028232, 0.000374805793, -0.0154188881, 0.0390390605, 0.01460113, -0.0245327428, 0.00943384692, -0.00481766183, -0.02269575, 0.017812904, 0.0181328971, 0.000308696268, -0.00104516, -0.0209180154, 0.00574504677, 0.0271163844, -0.00391398, 0.000188051024, -0.0182277095, -0.00799388159, 0.0315962769, 0.0113063948, 0.000157033253, 0.04432486, -0.0213209689, -0.00457766745, -0.0374746546, 0.0191047247, -0.00634058798, 0.00281030266, 0.00124589598, -0.00179995666, -0.0216883663, 0.00957014, -0.00703390455, -0.0218305849, 0.0555127375, 0.00555245904, -0.00149922317, 0.00167107093, 0.00712871738, -0.0131907938, 0.011626387, 0.00386064779, 0.0258364156, -0.0080057336, -0.0348199, -0.00354954414, 0.00463988818, 0.020811351, -0.00277326652, -0.0143759502, 0.0198869295, -0.0206809845, -0.00666650617, -0.0411960445, -0.0285148695, 0.0380435288, -0.0287044942, 0.0078042564, -0.0155137, -0.0310274, 0.0287281964, -0.015964061, 0.00154959236, -0.0034725091, 0.0432819203, 0.0186069589, 0.0171966236, -0.0111641753, 0.010257531, 0.0371191055, 0.0183225218, 0.00685613137, -0.0257890094, 0.0203254372, -0.00294807716, -0.0385412946, -0.00603541033, 0.0351043418, 0.0170069989, -0.0139611457, -0.0301503856, 0.0175640211, 0.00575097278, 0.00689761154, -0.0428789668, -0.00852127653, 0.0467662811, -0.0131907938, -0.010524191, 0.012953762, 0.00306066708, 0.0144352084, 0.0185002945, -0.00250956928, 0.003579173, 0.0039673117, -0.0137004107, -0.016497381, -0.0205150619, 0.0272111967, -0.0306007452, -0.00719390111, -0.00104886363, 0.0101153124, -0.0034725091, 0.0200647023, -0.0210720859, -0.00992568675, -0.0326629169, 0.03079037, 0.0175166149, 0.0354835913, -0.0325444, 0.0255282745, 0.00154959236, -0.0182632636, 0.00471988646, -0.0579778627, 0.0166396, -0.0342747308, -0.00163255329, 0.0111404723, 0.0094753271, -2.4860512e-05, 0.00537172239, -0.0317859, -0.018393632, 0.00808869395, -0.00607392797, 0.0185714047, 0.0220913198, 0.072579, -0.000419249176, 0.0249119923, -0.0256230868, 0.0494921431, 0.0149211222, 0.00744870957, 0.00965902675, 0.00625170115, 0.0187491775, 0.0155374035, 0.0128826527, -0.0145537239, 0.0389916524, 0.00598800415, -0.0166633017, 0.00874645635, -0.0147196455, -0.0280171037, 0.017018849, -0.0149685284, 0.0374035425, -0.0212972648, 0.0347724967, -0.0107552968, 0.00829017069, 0.0385887, -0.00554949604, -0.028894119, -0.0166277476, 0.00842646416, 0.00791092, -0.0267134309, 0.000940718106, 0.0273534153, 0.0219491012, -0.00776870176, -0.00356732146, -0.0145537239, 0.0163314585, 0.00828424469, 0.00411841925, -0.000144440972, -0.0173625443, -0.020823203, -0.00127700635, -0.0173862483, 0.00444137445, -0.0135463402, 0.0505350791, -0.0178840142, -0.0137359658, 0.0012429331, 0.0224824212, -0.000467766513, -0.0140204029, -0.00990791, -0.0257653054, 0.0230394453, -0.0466951728, 0.00663687708, -0.0262867752, 0.028633384, 0.00314362813, -0.00186958467, -0.00827832, -0.0301029794, -0.00510802539, 0.0268556494, 0.0166514516, -0.0169951469, 0.006755393, 0.0222690944, -0.00884719472, -0.00748426421, -0.0230987035, -0.0039050912, 0.00645317789, -0.043116, -0.031928122, -0.0120411916, -0.00910200272, -0.0420019515, -0.0064591039, -0.0247697737, -0.0147077944, 0.00968865585, -0.0436848737, 0.0420019515, 0.00849757344, -0.00597615261, 0.00138885551, 0.0224231631, -0.0330184661, 0.0122782225, 0.0441589355, 0.014873716, -0.00956421439, -0.00411249371, -0.0109567735, 0.0199343357, 0.015122599, -0.00863386597, 0.00597615261, 0.0292022601, -0.0368346684, -0.00523542939, -0.0253149457, 0.00327695813, 0.00926792528, -0.0284674633, 0.0154188881, 0.0299607608, 0.0231698118, 0.00394953461, 0.0315725729, 0.0174218025, 0.0192469433, -0.0137478169, 0.0024310525, -0.0141744735, -0.00848572142, -0.0123137776, -0.00412138226, -0.00775685, -0.00869905, -0.00250660628, -0.0282541346, 0.00987828057, 0.0311933234, 0.0290837437, -0.00285474607, 0.0284911655, 0.0026191962, 0.00434656208, 0.0123019265, 0.00650058407, 0.0177536458, 0.0215224456, 0.0171610676, -0.0271163844, 0.00890645199, -0.0150870439, 0.0355547, 0.0118041607, -7.33778652e-05, 0.013510786, 0.00381620438, -0.00466655428, 0.0351043418, -0.00355547, -0.0109152924, -0.010257531, 0.0106367813, -0.00124219235, -0.00365028251, -0.0438033901, 0.0067257639, -0.00162514602, 0.0126456218, -0.0302451979, 0.0143048409, 0.0190573186, -0.0160944276, -0.0270689782, 0.00655391626, 0.020787647, -0.0135344891, -0.00842646416, -0.00682057673, -0.00122441491, 0.00344880577, -0.0119345272, 0.0379250124, 0.0160588734, -0.00992568675, 0.00379250129, 0.0281356182, -0.0250779148, 0.0322599635, -0.000379990845, 0.000654799049, 0.0265238062, 0.0289415251, -0.0118693439, -0.0112352846, -0.00615096325, 0.00348732341, -0.0224824212, -0.0269267596, 0.0278274789, -0.00778055331, -0.000120923018, -0.0235846173, 0.0259075239, 0.00961162057, 0.0306718536, 0.0136411535, 0.0239283126, -0.00573023222, -0.0204321016, 0.0312407296, -0.00773314713, -0.0132856062, 0.00673761545, -0.00546653522, 0.0170662552, 0.0154662943, 0.0188084356, 0.008918304, 0.0009184964, 0.0143878022, 0.0165447872, 0.00562060531, 0.0126100667, 0.0100204991, 0.00408286462, 0.00191106508, -0.0311222132, 0.0327577293, 0.0171492174, 0.024319414, -0.00277622952, -0.00649465853, -0.0275193378, -0.0212380067, 0.00975383911, -0.0146959424, -0.00693909219, 0.0232883282, 0.0063998457, 0.0201358125, 0.00753759639, -0.0191639829, -0.00234957295, -0.00861608889, -0.0343458392, 0.0241890475, -0.00906644855, 0.0130722784, -0.00908422563, 0.0136174504, 0.0140915122, -0.0176943894, -0.0570771433, -0.00840276107, -0.0259075239, 0.0075079673, 0.0111286212, 0.00899533927, 0.00466655428, 0.0205150619, 0.0265238062, 0.00973013602, -0.0302689, 0.00964125, 0.0176232792, 0.0258838218, -0.00230068527, 0.0391575769, -0.0347487926, 0.0108678862, -0.0298659485, -0.00392583152, -0.0279934, 0.000393694238, 0.00421915762, 0.00804128777, 0.0132500511, -0.0425945297, 0.00980124529, 0.000278141466, -0.0165684894, -0.0470744222, 0.0244142264, 0.00161329447, 0.0154781463, -0.0428552628, -0.00717019755, -0.0158336926, 0.00645317789, -0.0109982537, -0.0254097581, -0.00115774991, -0.00763833476, -0.00031110362, -0.00402657, -0.0132619031, 0.049160298, -0.00972421, -0.0199935921, -0.0268556494, 0.0211550463, -0.0112530626, 0.0146366842, -0.0320229344, 0.0122545194, 0.000968865585, 0.02216243, -0.0240942352, 0.00896571, -0.0163907167, -0.00689761154, -0.0158810988, -0.0107730739, 0.0131196845, 0.0101390155, 0.0246749613, -0.00255253119, 0.0309562925, 0.0244616326, -0.0162366461, -0.0270452742, -0.0157744344, -0.026452696, -0.00175847614, 0.000681465084, 0.00892423, 0.0383042619, -0.010008648, 0.00338362227, 0.000759241, -0.00844424125, -0.00567986304, -0.0166751537, 0.0183343738, -0.0229209289, -0.00970643293, -0.0292496663, 0.0429974832, 0.00679094763, -0.0228498206, 0.0320229344, -0.00767981494, -0.0274719317, -0.0267134309, -0.0111582503, -0.015952209, -0.0138189262, -0.0239046104, -0.00852127653, 0.0313829482, -0.0139018875, -0.00964717474, -0.0279696975, 0.00634058798, 0.0203609914, 0.0169240367, -0.02269575, -0.0218305849, -0.0181447491, -0.0255519766, 0.0312644318, 0.0317384936, 0.00843238924, -0.00358806178, 0.00249179197, -0.0498713925, -0.012693028, -0.00517320866, 0.012704879, 0.00345176877, 0.00653613918, 0.0166751537, 0.0258364156, 0.000713686517, -0.0234068446, 0.0104886368, -0.0105538201, 0.0131670907, -0.0366687477, -0.0107078906, 0.0197565611, 0.00789314322, 0.0343458392, 0.0211787503, 0.0110338088, 0.0052443184, 0.0130367232, -0.007022053, -0.00777462777, -0.00394657161, 0.00746648712, -0.00693316665, -0.0125508094, 0.00362361642, -0.0243668202, 0.00234512868, -0.00294955866, 0.0168292243, 0.0102041988, 0.0277326666, -0.0407456867, -0.00999679603, -0.0311459173, -0.00150144531, -0.000805906544, -0.0184647404, -0.0170425531, -0.00568875205, 0.0053776484, -0.0201713666, 0.0126100667, -0.0134396767, -0.0192350931, -0.0300318692, 0.00432285899, 0.00622799806, -0.0109212184, -0.018358076, -0.0162129439, 0.020823203, 0.00391398, -0.00529468758, -0.0212854128, 0.00961754657, 0.00634058798, -0.0130011681, -0.0104767848, -0.00562356832, 0.0401057, -0.00315547967, -0.028372651, -0.0127996914, 0.028111916, -0.00985457748, 0.0269267596, -0.00123997009, -0.00438507972, -0.00593763497, -0.0236438755, 0.0214987416, -0.0299133547, -0.00976569112, 0.00356435869, 0.00407693908, -0.0114604644, 0.00527987303, -0.0320940427, -0.0173743963, 0.0248408839, 0.0161181297, -0.0122426683, -0.021877991, 0.00424286071, -0.00195550849, -0.00747241266, -0.0143522471, -0.00290659675, -0.0301029794, 0.0233001802, 0.0150870439, 0.0109034413, -0.00547838677, 0.0386835113, -0.0265475083, 0.00622799806, -0.025931228, -0.0090783, -0.00691538909, -0.0270689782, 0.025149025, 0.00577763887, 0.00306955562, 0.00857460871, 0.011336023, -0.00147848297, 0.0360287614, -0.0249119923, 0.0214987416, -0.00166958943, 0.00724723283, -0.0316199809, -0.0071879751, -0.00865164399, 0.00253179087, -0.0176588334, 0.0197921153, 0.0284674633, -0.00599096669, 0.0143878022, -0.0187254753, -0.0097716162, -0.00950495619, 0.00291400403, 0.00851535052, -0.0241179373, 0.00961162057, 0.0174336545, 0.0230275933, 0.03569692, 0.00350510073, -0.00943977293, 0.026997868, -0.00757907657, -0.010251605, -0.00243549701, 0.021889843, 0.0083198, 0.0053806114, -0.00499247247, -0.00725315884, -0.0321414471, 0.0187136233, -0.0325918086, 0.00283400575, -0.0150396377, 0.0148381609, -0.0035110265, -0.00200587767, -0.0181328971, -0.0134278247, 0.00846794434, -0.00185032585, -0.0128470985, -0.00666058, 0.0163077563, -0.0154781463, -0.0290363375, 0.0154662943, -0.0118456408, -0.00325918081, -0.0343932472, 0.0166633017, -0.00599689269, -0.00214809645, 0.0176825374, 0.00146959419, 0.00124885887, 0.00261475192, 0.0175403189, 0.003579173, 0.0147196455, -0.00618059188, 0.00318214553, 0.00993161276, -0.00875238143, 0.0204321016, 0.0118337888, 0.0181328971, -0.0321651511, -0.00157625834, -0.00770351803, 0.00872275326, -0.0287519, -0.00216735527, -0.0133685675, 0.0155611066, 0.0258838218, 0.0153003726, 0.0182632636, 0.0134870829, 0.0255045705, 0.0321651511, 0.0249119923, 0.0162840523, 0.0298896506, 0.0280408058, -0.0280408058, 0.0230512973, 0.0109686246, -0.0115967579, -0.0230631493, 0.0205032099, 0.0143878022, -0.0105715971, 0.00566801149, -0.0201950688, 0.000348510133, 0.0134633798, 0.0190928746, 0.0138544813, 0.00608577952, -0.0220676176, -0.0203135852, 0.0220083594, -0.0215817019, -0.00866942108, 0.0209417176, 0.0073479712, 0.00855090562, -0.00104367861, -0.002229576, -0.0112412106, -0.0208943114, -0.00169921841, -0.02216243, 0.00533320475, -0.00850942452, 0.0237505399, -0.00802943669, 0.0161062796, 0.0180973429, 0.0129419109, 0.0101686437, -0.0152411144, 0.011881195, -0.0014458911, -0.0190454666, 0.0127167311, 0.00414508535, 0.025931228, 0.0171255134, -0.0104530817, -0.0110397339, -0.0254571643, -0.00815980323, 0.0394183099, 0.014328544, -0.0294155888, -0.00135996728, -0.00431397045, -0.00331547577, -0.0133093093, -0.0277800728, 0.033776965, 0.0171373654, 0.0147196455, 0.0362657942, -0.00892423, -0.0265001021, -0.00485025346, -0.00511098793, 0.00426952681, 0.013510786, 0.0169240367, -0.000926644367, 0.0127759883, 0.00480877329, 0.0090783, 0.0116974963, -0.00055294967, -0.00602059579, 0.00986642949, -0.0192943495, 0.0152529664, -0.0103345662, -0.0065953969, 0.0203491393, -0.0166040454, 0.000515913533, -0.00191402796, 0.022150578, -0.00879386254, -0.00949903, 0.0272111967, 0.0139848487, -0.00706945965, -0.00263401074, -0.00265030656, -0.00724723283, -0.0117626796, 0.00210957881, 0.0321888551, -0.0107078906, 0.00666650617, 0.0134752309, -0.012953762, -0.0177299436, 0.00434359908, -0.0200647023, 0.00676724454, 0.0374272466, -0.0194247179, -0.011069363, 0.00664280308, 0.00233475864, -0.0122782225, -0.0389679521, -0.00723538129, 0.0107552968, -0.0116797192, -0.0159996152, -0.0122545194, -0.0200528502, 0.0108797383, -0.00638206862, 0.00114589836, -0.0160351694, -0.00469618337, -0.00463692518, -0.0115789808, -0.00209180149, 0.0258601177, -0.0159877632, 0.00653021317, 0.0111226952, -0.00215254072, -0.00635243952, 0.00381916738, -0.0116856443, -0.0273060091, -0.0167936701, 0.0155255524, -0.00631688489, -0.0108738123, -0.00975383911, -0.0139018875, 0.016509233, -0.000148514941, 0.0123611838, -0.00971235894, -0.00856868271, -0.0190810226, 0.0301977918, -0.00730649056, 0.00763833476, -0.0267371349, -0.0199343357, -0.0169240367, 0.003445843, -0.00710501429, 0.0223639067, -0.016473677, 0.0442063436, 0.00836128, 0.00719390111, -0.00724130729, -0.00810054597, -0.00234809169, -0.0231579617, 0.0130959814, -0.0232764762, -0.0306955576, -0.00677317, 0.0085627567, 0.0223876089, -0.00812424906, -0.0114012072, -0.0113182459, 0.0169003345, 0.00349028641, -0.000158885057, -0.0117449025, -0.0167936701, 0.00769166648, 0.0229446329, 0.0146603882, -0.0252201334, 0.0125863636, 0.00544283213, 0.0478329211, -0.0120885978, -0.00615096325, 0.0429026708, -0.00300437212, -0.00373324356, -0.00677317, -0.0113775041, 0.0300792754, 0.034843605, -0.0150514897, 0.00993161276, 0.00214661495, -0.00377768674, 0.031928122, -0.014873716, -0.0348199, 0.0282541346, 0.01377152, 0.00269623147, 0.0073183421, 0.0100916093, -0.0370479971, 0.00892423, -0.0277089626, 0.003579173, -0.0104827108, -0.0238097981, -0.014873716, -0.0111108441, -0.0328762457, 0.0123493327, -0.0184291862, -0.00119256391, -0.0259786341, 0.00766203785, -0.0266186185, 0.0205269139, -0.0296526197, -0.00869312417, 0.00103034556, -0.0103108631, 0.0214039292, 0.00925607327, 0.0122663714, -0.00503987866, 0.0291311499, -0.0347250886, 0.0161655359, 0.00700427592, -0.0320703387, 0.00538357394, -0.00300585362, 0.00231253682, 0.0220083594, -0.0352702625, -0.0183462258, 0.00741908047, -0.0136174504, 0.0470981263, -0.0152411144, -0.0212261565, -0.00898348726, 0.0127878403, -0.0126337698, 0.00118071237, 0.00429323, -0.00194365694, 0.0140322549, -0.0114723165, -0.0111938044, 0.0153714819, 0.00476136664, -0.00630503334, 0.00117997162, -0.030553339, -0.00488284556, 0.0309088863, -0.0260023363, -0.00472877501, -0.00440285681, 0.0183106698, 0.00881164, -0.00774499867, 0.0169832949, 0.0343695432, -0.000556653249, 0.0228735227, 0.000208513506, 0.0291311499, -0.00786944, -0.0214276314, -0.0116026839, -0.0154070361, -0.00108071475, 0.0247460715, 0.0174929127, -0.00565319741, -0.0236438755, -0.0111938044, -0.0174336545, 0.0155255524, 0.0430685915, -0.0049184, 0.0071879751, 0.00528579857, 0.0107256677, 0.0082309125, 0.0354835913, -0.0176825374, -0.0053746854, -0.0189862102, 0.0271163844, 0.0222690944, 0.0129063558, -0.00125552528, 0.0163314585, -0.00857460871, -0.000957014, -0.00802943669, -0.0246986654, -0.00676131854, -0.0155966617, -0.0117863826, 0.00882941671, -0.0144944657, -0.00490062265, -0.0173743963, -0.00267697265, 0.0171136614, 0.0518624559, -0.00109997357, 0.0127878403, -0.00752574485, 0.0274008214, -0.0136055984, 0.00343991723, 0.00439100526, 0.00465766573, 0.0135818953, 0.0174573567, 0.0167699661, 0.00339251081, 0.0165210832, 0.0126219187, -0.0125271054, -0.0217950307, 0.0132737542, 0.0070516821, -0.0135937473, -0.0217950307, -0.025931228, 0.0353887789, 0.00701020146, -0.0176469833, -0.00457766745, -0.00910200272, -0.0150988959, -0.0058368966, 0.00849757344, 0.0100679062, 0.027021572, 0.00774499867, 0.00323251472, 0.0306718536, -0.000155181449, 0.0287281964, -0.00140367, -0.0048917341, 0.00460433355, -0.0119286021, 0.0176588334, -0.00942199584, 0.0247934777, 0.0178840142, -0.000203513613, 0.00617466634, 0.00153329642, -0.0100204991, 0.0167107079, 0.000724427, -0.00978346821, 0.00369768869, 0.000597393, -0.0350806378, 0.000100367957, -0.00401768088, -0.0205506161, -0.00973606203, 0.00624577561, 0.0196143426, 0.0113834301, -0.00782796, 0.00446804054, 0.0301029794, 0.0166158956, -0.0244142264, -0.00887682289, 0.0155611066, -0.0216765143, 0.0182395615, -0.0100738313, 0.0274482276, 0.0118397148, -0.00623392407, -0.00124367373, 0.0159996152, -0.00532431621, -0.00253919815, -0.00840868615, 0.0136885596, 0.00812424906, 0.000704427483, -0.00151477836, -0.00845609233, 0.00470507191, -0.0166396, 0.000396657124, 0.0102338279, -0.00174218032, 0.00736574875, 0.00910200272, 0.015110747, -0.00813017506, -0.0223046485, -0.0123730358, 0.0119404532, 0.0104649337, -0.00869312417, 0.028917823, -0.0183106698, 0.010790851, 0.00920274109, 0.0145300208, -0.0207639448, -0.00253327237, -0.01838178, -0.0109804766, -0.0129063558, 0.0142574348, -0.00503691565, -0.00986050349, 0.00418360298, -0.0102930851, 0.00944569893, -0.00837905798, 0.00373324356, 0.00877015945, -0.00651243562, -0.0123019265, -0.0126456218, 0.0132619031, -0.000826646748, -0.0225890856, 0.0207283907, 0.0184647404, 0.000851831341, 0.0114723165, 0.00486803101, 0.00785758905, -0.0242957119, -0.0235372111, 0.0261445567, 0.0206809845, -0.0116737932, -0.00996124186, 0.0254808683, 0.00485025346, -0.0135700433, -0.0179077163, -0.00240586791, 0.0116026839, 0.00992568675, 0.00152737065, 0.00885312, -0.0116619412, -0.0049184, 0.0216883663, 0.00418656599, -0.000318696024, 0.00376583519, 0.0196143426, -0.0220557656, -9.53680719e-05, 0.0123967389, 0.0175640211, 0.0026858612, 0.0144589115, 0.011904899, -0.00617466634, 0.000158144336, 0.00871682726, 0.0190810226, -0.00902496837, 0.0291548539, 0.021558, 0.0101330895, -0.0484492034, 0.0133922705, -0.015383333, 0.00347547187, -0.00539542548, 0.0210365299, -0.00303696399, -0.00333917886, -0.0100619802, 0.0230157431, -0.0350095257, -0.00827239361, -0.0180973429, -0.016485529, 0.000215920722, -0.0160470214, 0.00544875767, 0.00853312761, 0.0155611066, -0.0209772736, -0.0221861321, -0.0101864217, -0.0254097581, 0.0122900745, 0.00996124186, 0.0201476626, 0.0195076782, -0.0206335764, -0.00479988428, -0.0172321778, 0.0162959043, 0.00338954804, 0.0102101248, -0.0196143426, -0.0147314975, 0.000859238557, -0.00164884923, -0.0167936701, -0.0189151, -0.00415693689, -0.0100323511, 0.00295104017, 0.0238809064, 0.010251605, 0.00347843487, 0.006891686, -0.0148855671, 0.0113004688, 0.0297000259, 0.0119641563, -0.00746056112, -0.0198869295, -0.00159848, 0.0176706854, 0.000955532538, -0.0218542889, -0.0235727653, -9.02293104e-05, -0.00776870176, -0.0102219759, 0.016473677, 0.010790851, 0.0192113891, 0.0152529664, 0.0244853366, 0.00335399341, -0.00231846259, 0.0169121847, -0.0175758731, -0.000237772052, -0.00865756907, -0.0191402808, -0.0125034023, 0.0122308163, -0.0105953, 0.00627540471, 0.0124796992, 0.0136055984, -0.00439100526, -0.00345176877, 0.0193062015, 0.00116293493, 0.0118219377, 0.0166988578, -0.00338954804, 0.00853312761, -0.00107849261, 0.00196439726, 0.00101923477, -0.0153003726, -0.014044106, 0.000934051583, 0.00563542, 0.0224942733, -0.0233001802, -0.012681176, 0.0141981766, 0.0107612228, 0.00575393578, -3.52074858e-05, 0.00987828057, -0.0363132, 0.00819535833, -0.0120115625, -0.0153003726, -0.00387249934, 0.00547246076, -0.00852127653, 0.0100382771, -0.0127285821, -0.00906052254, -0.01838178, -0.0116441641, 0.00872867834, 0.00121404487, 0.000828868942, 0.0157507323, -0.000652576855, -0.0454863124, 0.0120352656, -0.0299607608, 0.0158099905, -0.00755537348, -0.0248408839, 0.0137478169, -0.00501913857, -7.73592474e-05, -0.000632947718, -0.00500728702, 0.00589615433, -0.00705760764, -0.0132026449, -0.012681176, 0.0154307401, -0.00196587853, -0.00801758468, -0.000943681, 0.0111345472, -0.0059702266, 0.00847387, -0.0268082432, 0.0243905243, 0.0111523243, -0.0153477788, -0.011336023, -0.000768129656, 0.0118100857, 0.0325444, 0.0117330505, -0.0151463021, -1.8969451e-05, 0.0071879751, -0.00762055721, -0.00430508144, 0.0156796221, 0.00984865148, -0.000920718594, 0.00335991918, -0.0134752309, -0.00700427592, 0.00575689832, 0.00166218216, 0.0237979461, -0.0162247941, 0.0156085128, -0.00973606203, 0.0131196845, -0.00935088564, 0.00118515664, -0.0145774269, 0.00784573704, -0.0165803414, -0.00884719472, -0.00207254267, -3.53232244e-05, -0.0128115434, 0.0116915703, 0.0166514516, -0.0112234335, -0.00692131463, -0.00923829619, 0.0127641372, 0.0121952621, -0.00469025737, -0.0285148695, -0.00125700678, -0.0251964312, 0.0182869677, -0.0100679062, 0.00628725626, 0.00833165087, 0.0169714428, -0.00124071084, 0.0200884044, 0.0082605416, -0.0333740115, 0.00437026517, -0.0317147933, 0.00731241656, 0.0180499367, 0.00971235894, -0.0200884044, 0.0195550844, -0.0146959424, 0.003579173, 0.0460788906, 0.00654206472, 0.0104471557, 0.0125508094, 0.0191047247, 0.0287756044, -0.000903681968, 0.0173506942, 0.0142574348, 0.0246749613, -0.019187687, -0.015916653, 0.00572726969, -0.0167344119, -0.0139255906, 0.00424286071, 0.00458063046, 0.00035758398, 0.00740722893, -0.00700427592, -0.0395368263, -0.00555542205, 0.0041332338, 0.00210513454, -0.0170425531, -0.0118515668, 0.00631688489, 0.00225920486, 0.000704057107, 0.00516432, -0.0263104774, -0.0130248712, -0.0196736, -0.00966495275, -0.00488284556, -0.00210365304, 0.00415693689, -0.00654799072, -0.0161062796, -0.0214631874, -0.010530117, 0.00404434698, 0.0022014284, -0.0134041216, -0.00869905, -0.0252201334, -0.00872867834, -0.00268141693, -0.00394657161, 0.00311696203, 0.014055958, -0.017824756, 0.0137122627, -0.0263104774, 0.0211550463, 0.010275308, -0.0204321016, -0.00168588536, 0.00794647541, -0.00365917105, 0.00523246685, -0.00123404432, 0.0012429331, 0.00325029204, 0.00746648712, -0.00763240876, -0.00990791, -0.0161892399, -0.0268319473, 0.0110160308, 0.00646502944, 0.00935681164, -0.00738945184, 0.00133848633, 0.000197032292, -0.00388138811, 0.00715834601, -0.0255756807, -0.0167936701, 0.00286956062, -0.00080886943, 0.0201713666, -0.00278511806, 0.012432293, -0.00704575609, 0.0377590917, 0.0239283126, 0.0149329742, -0.0106427064, -0.0186543651, 0.0189743582, -0.00140515133, 0.0217831787, 0.00175847614, -0.00323844049, -0.00698649837, 0.0268556494, -0.00680279918, -0.00759685412, 0.0156203648, 0.00470803492, 0.00858053379, 0.0137241138, 0.00969458185, -0.0120885978, -1.92125e-05, 0.0319518223, 0.0284674633, -0.00495395483, -0.0208943114, 0.0157625843, -0.00202513649, 0.0286807902, -0.00782203395, 0.0106249293, -0.00378657551, -0.0185714047, 0.00573912123, 0.0186188109, 0.0114071332, 0.0218068827, 0.00129404292, -0.00905459654, 0.0168647785, 0.0082309125, 0.00103182707, -0.00439396827, -0.00964125, 0.0076738894, 0.00850349944, -0.0041302708, 0.014850013, 0.0322599635, -0.00773907313, -0.00503987866, -0.0134515278, -0.00585171115, -0.00940421782, 0.0175166149, 0.0192825, 0.00960569456, 0.0209061634, 0.0142100286, -0.0228498206, -0.0119878594, -0.0167107079, -0.0112471366, 0.00488284556, -0.0263815876, 0.0272823069, -0.0244853366, -0.0211906, 0.00293178135, -0.00035499144, -0.0222690944, -0.00382213015, -0.00678502163, 0.00910200272, -0.0138426293, -0.00283400575, 0.0138307782, -0.0135700433, 0.0127759883, 0.00160588732, 0.00493617728, 0.000212587474, -0.0200647023, -0.00833165087, 0.0148144579, -0.0021347634, -0.00599689269, -0.0120411916, -0.0117923087, 0.00413916, 0.00422508363, 0.00860423688, -0.00874053, -0.00389323966, 0.0085568307, -0.0200054441, -0.0321651511, 0.00206365413, 0.00265326956, 0.00411545625, 0.00395249762, 0.0322599635, -0.00833757687, -0.0259075239, -0.00768574094, -0.028917823, -0.000127311752, 0.00310807326, -0.00682650227, 0.00334214186, -0.0245090388, 0.0274245255, 0.00354954414, 0.0212617107, -0.00590800587, 0.00948717911, -0.016485529, 0.0186899211, 0.0109745506, 0.0180262327, 0.0130485743, -0.00803536177, -0.00199106312, 0.0169121847, -0.010536043, -0.0235964693, -0.00540431449, 0.000537764805, -0.00575986132, 0.0149566773, 0.00146218704, 0.00345176877, -0.00729463901, -0.00465173973, 0.00728871347, -0.0141152153, -0.0113597261, 0.00989605766, -0.0180025287, -0.00738945184, 0.00962939765, -0.000417767733, 0.0176114272, -0.00986050349, 0.00162070175, 0.0107019646, -0.00386064779, -0.0178010538, 0.0155729586, -0.0198869295, 0.0188321397, -0.0172321778, -0.0079346234, -0.00278215529, -0.00955236237, 0.00615688879, -0.0270689782, 0.0114723165, 0.0186069589, 0.0133685675, 0.0116382381, 0.00471396046, 0.00775092468, -0.00740130339, 0.0175284669, -0.0151700052, 0.0116560161, -0.00153625931, -0.0190454666, -0.00948717911, 0.00694501819, -0.0225179773, -0.0122545194, -0.00594652351, -0.00657169381, -0.00110367709, -0.018926952, -0.00584282214, 0.00861016288, -0.0139611457, -0.0143996533, 0.012432293, 0.0176351313, 0.0115019456, 0.0197447091, 0.00617466634, 0.00919089, -0.0106723355, -0.0124796992, -0.0148263099, 0.00163403479, -0.000921459286, 0.00141329935, -0.0078042564, -0.0355784036, -0.00187995471, 0.00836720597, -0.00381916738, 0.00254364242, -0.00679687364, -0.00361472787, -0.0122308163, -0.0133567154, -0.0118752699, 0.0315014645, 0.0230987035, 0.0173981, -0.00979531929, 0.00444137445, 0.0168529283, -0.0293207765, -0.00115404627, -0.0197802652, -0.000953310402, -0.0103404922, 0.0180736389, 0.0239046104, -0.00546060922, -0.00346362032, -0.0309562925, 0.0182988197, -0.00657169381, -0.00667835772, -0.00715834601, 0.0174336545, 0.0287281964, -0.0123374807, 0.00619836943, -0.00893608108, 0.0183462258, 0.00692724064, -0.0210246798, 0.0291074477, -0.0229446329, 0.00214809645, 0.00547542376, -0.0066191, -0.0112056565, 0.00303992676, 0.0128826527, -0.0123848869, 0.00990198366, -0.0174455065, 0.00200291467, -0.0235016569, -0.0196854528, -0.0225061253, 0.00391101697, -0.0141033642, -0.00433174754, 0.0136411535, 0.0260023363, 0.0220676176, 0.0111819534, -0.00449174363, 0.013783372, 0.00589615433, 0.00789314322, -0.0160707235, 0.00529172458, 0.00168884825, 0.015964061, -0.0107612228, 0.00882349163, 0.00612133415, -0.0039021282, 0.0160588734, -0.00487395655, 0.00882349163, 0.00402953243, -0.00683242828, -0.0138544813, 0.0214868896, -0.00866349507, -0.00708723674, 0.0196617488, 0.0102990111, -0.0153359268, -0.00103330845, -0.0193773117, -0.00332732731, 0.00378657551, -0.0186069589, -0.0112234335, 0.021356523, 0.00648873253, 0.00396138616, 0.00693909219, 0.000932570139, -0.00492728874, 0.00287548639, -0.0212972648, 0.0163314585, -0.020799499, 0.00946940202, 0.0120826717, -1.15275006e-05, -0.0133567154, 0.0109864026, 0.0130130202, 0.0082960967, -0.0142811378, 0.0244142264, 0.0184884444, 0.000263327, -0.00381620438, 0.00829017069, -0.000110552894, 0.0143403951, 6.21744257e-05, -0.00455396436, 0.00193328678, 0.00678502163, -0.0117982347, -0.00530653913, -0.00145552051, 0.00140070706, -0.00118219375, -0.0179195683, -0.0142811378, -0.028111916, -0.00151551911, -0.0155611066, 0.0128708016, 0.00114886125, 0.0190454666, -0.000968124834, 0.00513172848, 0.0298896506, -0.0123256296, -0.0042665638, 0.011626387, 0.011632313, 0.00667243218, 0.0216409601, 0.0171255134, 0.00149403815, -0.0366213396, -0.00842053816, -0.00911385473, 0.0233594384, 0.00170810707, -0.0292022601, 0.00588726578, -0.0321888551, -0.0310036987, 0.00846201833, -0.00200884044, 0.011626387, -0.000357213634, 0.00727686193, 0.0147670517, 0.00868127216, -0.00021073567, 0.00965310074, -0.00359398755, 0.0193891637, -0.0111641753, 0.0137952231, 0.0139255906, 0.00693316665, -0.00125848828, -0.00719390111, 0.0203846935, 0.00198069308, 0.0113241719, -0.0253623519, -0.0175284669, 0.0182277095, -0.0044295229, -0.00865756907, 0.000666650594, -0.0011688607, 0.014589278, -0.00979531929, 0.0267134309, 0.00372435478, -0.0061628148, -0.0300792754, -0.0169121847, 0.00233475864, 0.0289415251, -0.00995531585, 0.0122071132, 0.0339191817, 0.0232883282, -0.0161181297, -0.0108382571, 0.0059998557, 0.0249356963, -0.0123848869, 0.023786094, 0.0131552387, 0.0147789037, -0.00657761935, 0.0163077563, -0.0150396377, -0.00863386597, -0.00833165087, 0.0128233954, -0.00849757344, -0.00093331089, 0.0156559199, -0.00497173239, -0.0126337698, -0.0053746854, -0.0204202496, -0.013783372, -0.0028517833, -0.0190928746, 0.00818350632, 0.0152174113, -0.00542505458, 0.020278031, 0.00571541814, 0.001251081, -0.0130248712, -0.00131256098, -0.0115849059, 0.0206809845, -0.00244438555, -0.0190810226, 5.99522609e-05, 0.00368583715, 0.000453692774, 0.00935681164, -0.0120767467, -0.00511395093, -0.000830350386, -0.0179432724, -0.00883534271, -0.0209417176, 0.0182751156, 0.00692724064, 0.00788721722, -0.0231105555, -6.06003923e-05, 0.00257623428, -0.0063998457, 0.00623984961, 0.00967087783, -0.0211550463, -0.00013231163, 0.00595541205, 0.0157862864, 0.0082960967, -0.023264626, 0.00108293688, -0.00853905361, -0.00588134, -0.00544875767, -0.0183106698, -0.00115108339, -0.00247697742, 0.0399160758, -0.0149092712, 0.0319992304, 0.00422212062, -0.00188143621, 0.0137596689, -0.00989013258, -0.00851535052, 0.00636429107, 0.0201239605, 0.0106723355, -0.0127641372, 0.000485173514, 0.00461322209, -0.025694197, -0.00646502944, -0.0196498968, -0.0107315937, 0.00804128777, 0.0198987797, 0.014850013, 0.0104649337, 0.00315844244, 0.00811239704, 0.00454803882, 0.00630503334, -0.0164381228, -0.004459152, 0.00395546, -0.00871682726, -0.0269030556, 0.00935681164, -0.0141744735, 0.0190454666, -0.0107138157, -0.00913755782, 0.0116915703, 0.0117330505, -0.017303288, -0.00235846173, 0.000695909199, 0.0132382, 0.0141981766, 0.0169121847, -0.00394360861, -0.0165566392, 0.0175640211, -0.00870497525, -0.020266179, 0.0175877251, -0.0100797573, 0.00763240876, -0.0116382381, -0.00905459654, 0.00919089, -0.00665465463, 0.0128708016, -0.00332436431, -0.00733019412, -0.0101567926, 0.0250068046, -0.0208469052, -0.0165329352, 0.0148381609, -0.0299607608, -0.00424878672, -0.00606503896, -0.00820128433, 0.00861016288, 0.0236083213, -0.00267993542, -0.0064591039, -0.0169240367, 0.0316910893, -0.0125389574, 0.0109508475, -0.0365739353, -0.000397768192, -0.0255993828, 0.0013429306, 0.0159048028, -0.0195550844, -0.0192587953, -0.00369176292, 0.0052443184, -0.00287548639, -0.00363546796, -0.000728501, 0.00176588341, 0.00216439227, 0.0165447872, -0.00165773788, -0.0228024144, -0.00358213601, 0.00754352193, 0.0031199248, 0.0199224837, -0.0199580379, 0.00452729827, -0.0155848097, 0.00481766183, -0.0220202114, -0.00155107374, 0.000623688684, 0.0111938044, 0.000444433739, -0.0295104012, -0.017824756, 0.00509617338, -0.00468433183, 0.003445843, 0.0163551625, -0.00284733879, 0.00175551325, -0.0199580379, 0.0127759883, 0.0249356963, 0.0117567535, -0.0120945238, 0.00929755438, -0.00618651789, 0.00485025346, 0.00532727921, -0.0235135071, -0.00234957295, 0.00291104103, -0.00433767354, 0.00227698218, 0.0168529283, -0.00316140545, -0.00590208033, -0.0248408839, -0.00249771774, 0.0169003345, -0.0197684132, 0.0109804766, -0.0252438374, -0.00269178697, 0.00589319132, -0.00241920096, -0.0319755264, -0.0033776965, -0.0106130783, 0.0185832568, -0.00435545063, 0.00649465853, 0.00206069113, 0.00528876157, -0.00552875595, -0.0039702747, 0.00763833476, 0.0205861703, -0.0205387641, -0.00757315103, 0.00217179954, 0.0201950688, -0.0152885206, 0.00185032585, 0.0225179773, 0.00655391626, -0.0047524781, -0.0022977225, -0.0118752699, 0.0130959814, -0.00929162838, 0.00427249, 0.00619244343, -0.00516135711, 0.0277800728, 0.00230512978, -0.0112352846, 0.00776870176, -0.0119760083, 0.000602207729, 0.0124559961, -0.00831387378, 0.0227668602, 0.0187373273, 0.0155611066, 0.000939977355, -0.00179403089, -0.0119463792, -0.0031465909, -0.0115908319, 0.0152648175, -0.010524191, 0.00171107, 0.00366213406, -0.0278985873, 0.0187965836, -0.0127878403, -0.0195669364, 0.0081361, 0.0029199298, -0.0194128659, -0.0198158193, -0.0137478169, 0.00849757344, 0.00637021707, -3.02770495e-05, -0.000511098828, -0.00446804054, 0.0123137776, -0.0178721622, -0.00669020927, 0.0286570881, 0.00654206472, 0.00374509511, -0.0127404341, -0.0147196455, 0.00884126872, -0.00138663326, -0.030008167, 0.00964717474, -0.0139018875, -0.0215342958, 0.00302511244, 0.0226364918, 0.0138663333, -0.0155018494, 7.73708234e-06, -0.0200884044, -0.0222335383, 0.00109256629, -0.00262364047, 0.0226364918, 0.0141863255, 0.00677317, -0.00542505458, -0.0026858612, 0.00785166305, 0.013498934, -0.0111523243, 0.00701020146, 0.00708723674, 0.0220439136, -0.00033480674, -0.0173981, 0.00437322818, 0.00208291272, 0.0122071132, -0.0208587572, 0.00170810707, 0.0363369025, 0.00623392407, 0.0070516821, -0.00411249371, -0.0070813112, -0.00297918753, -0.0206928346, 0.0105656711, -0.00637614261, -0.0076442603, 0.0139018875, -0.00427545281, 0.0168647785, -0.00733019412, 0.0134515278, -0.0111938044, -0.01460113, -0.00146514992, 0.0132382, 0.00379842706, -0.00742500648, 0.0073479712, -0.0241653435, 0.0186662171, -0.00409767916, -0.00755537348, -0.00209920877, 0.0102930851, 0.0150040835, -0.00319992285, -0.0195906386, 0.00160292443, 0.0146959424, 0.00942199584, -0.0158692468, 0.0183462258, -0.0144589115, -0.000193328684, 0.0266423207, 0.00588726578, 0.00448878063, 0.000521098555, 0.0195432324, -0.0076738894, 0.00542801758, 0.0158099905, -0.00614503725, 0.00735982275, -0.0200528502, 0.0053509823, -0.0033776965, 0.00341621414, 0.0120234145, 0.00202661799, -0.00399101526, -0.0159877632, -0.0037687982, -0.011881195, 0.0180617869, -0.0116678672, 0.00847979542, 0.0127759883, -0.00539246295, -0.00868127216, -0.0169951469, 0.00772129558, 0.0188676938, 0.0212024525, -0.0138900364, -0.0154307401, -0.0133093093, 0.01838178, 0.0280645099, -0.0104234526, -0.0120767467, -0.00938644074, -0.00876423344, -0.00945162401, -0.0111286212, -0.00437915372, -0.00391101697, -0.00246364437, -0.00943384692, 0.0293444786, 0.00529765, -0.0195432324, -0.0210839361, 0.0230987035, -0.0197802652, -0.00998494495, 0.0101686437, -0.0153359268, -0.00466655428, -0.0106664095, -0.0235135071, 0.00693909219, 0.00250808778, -0.00359398755, -0.0216409601, -0.00690946309, 0.0323310718, -0.00213031913, -0.00795832649, -0.000664428459, 0.0136293015, 0.00904274546, 0.0155966617, -0.0185951088, 0.00552875595, -0.00636429107, -0.0157744344, 0.00474951509, -0.0287756044, 0.00952273328, 0.0248645861, -0.0211787503, -0.0132382, -0.0082960967, -0.0158810988, -0.0125152543, 0.0151463021, 0.00278956257, -0.00699242437, 0.0020680984, -0.00700427592, 0.014873716, -0.00748426421, -0.0009762728, -0.0220794678, 0.00148885301, -0.00570060359, -0.00857460871, 0.000137126335, 0.0109212184, 0.0125626605, -0.00141552149, -0.0215105936, -0.0159877632, -0.00586652523, 0.0150633408, -0.0116678672, 0.0078101824, -0.00818350632, 0.0428078584, 0.0098071713, -0.00855090562, -0.0132382, 0.0206454284, -0.032947354, 0.0135937473, -0.0245090388, -0.00214957795, 0.0301029794, 0.028088212, 0.0050487672, -0.0143403951, 0.00576578733, -0.00795240141, 0.00317325699, 0.00174810609, -0.00610948261, -0.00676131854, -0.0137359658, 0.00446507754, 0.00443841144, 0.018938804, 0.0137241138, 0.00729463901, 0.000703316415, 0.0190810226, -0.0108264061, 0.00442063436, -0.0151581531, 0.0157033261, -0.0118219377, -0.0221861321, -0.00589319132, -0.0208350532, -0.0107138157, 0.00622799806, -0.00299696485, -0.0316910893, 0.017812904, -0.0140204029, -0.0246275552, -0.0061331857, 0.0176351313, -0.00946347602, 0.0170544051, -0.0128589496, -0.0138426293, -0.0232764762, 0.0344169475, -0.014044106, 0.00699835, 0.0152411144, 0.00535987085, -0.0260023363, 0.00757315103, -0.00391101697, -0.00307251862, 0.028633384, -0.0201002564, 0.00990198366, 0.00293178135, -0.0186425149, 0.0109271444, 0.00592874596, -0.00194217544, -0.0376879834, 0.0129893171, -0.0117508285, 0.00482951337, -0.0212261565, -0.00586356269, -0.0253386497, 0.00289326371, 0.00623984961, -0.0146366842, -0.01513445, -0.0109686246, -0.00292881834, -0.00751981884, 0.00264141778, 0.0202069208, 0.0149566773, -0.000643317821, -0.012420442, 0.00259253, -0.00999679603, 0.0262867752, 0.00382509315, -0.000487766025, -0.0154307401, 0.00213772641, 0.0327814333, -0.044585593, 0.000499247224, 0.0146840913, 0.00648873253, -0.00557912514, -0.0119523052, 0.00962939765, -0.00191550946, 0.0177180916, -0.0308614802, 0.0101330895, -0.00408582762, 0.0131552387, 0.00493025174, 0.01944842, 0.00232735137, 0.00935088564, 0.0361472778, 0.0121952621, 0.00589022879, 0.00673169, 0.00163699768, 0.00197476731, -0.0158455446, 0.0174929127, 0.0114960195, -0.0114308363, -0.0065953969, 0.0152885206, -0.00726501038, 0.0112412106, -0.00600578124, -0.0117923087, 0.0184647404, -0.0334925279, -0.00302807521, -0.0233238824, -0.0214157812, 0.00645317789, 0.00238660933, -0.0304348227, 0.00993753877, 0.00466062874, -0.00481173582, -0.0165447872, 0.0146485362, 0.0119700823, 0.00974198803, 0.0058102305, 0.0359576531, 0.0156914741, 0.0132382, -0.00225624209, 0.00705760764, 0.00163255329, -0.0280408058, 0.0115315747, 0.0144233564, -0.00366509706, -0.00637021707, 0.0126100667, -0.0120648947, -0.00756129948, 0.000939236663, -0.0115197226, 0.00792869832, -0.00180143816, -0.0020947645, -0.00322955195, 0.00172588439, -0.00453915, 0.00384879624, -0.021368375, 0.0144115053, 0.00706353365, 0.0152055603, 0.0207165387, -0.000278141466, -0.00695686974, -0.0053450563, -0.0135818953, -0.00114441686, 0.00376583519, 0.0106012262, -0.00466359127, 0.0220439136, 0.0118100857, 0.00709908828, -0.0144826146, 0.0238690544, 0.00302807521, 0.0109389955, 0.0215698518, 0.0153003726, -0.0115612028, -0.0192232411, 0.0220320616, 0.00317325699, 0.0182514116, -0.00673761545, 0.0243431181, 0.00855090562, 0.00333325309, -0.000468136888, 0.00214809645, 0.0196143426, 0.0351991542, -0.0101982728, 0.00317325699, 0.00854498, 0.00814202614, -0.0132026449, 0.0191521309, 0.0105123399, -0.0175047629, -0.0144589115, 0.0196024906, -0.0105893752, 0.00526802149, -0.0149566773, 0.00802351069, -0.0120648947, -0.00686798291, -0.00660724845, 0.0116678672, -0.0115671288, 0.0170544051, 0.0255756807, -0.0169358887, 0.0392049812, -0.00178810512, 2.69900902e-05, 0.00230661104, -0.0146485362, 0.00571541814, -0.00804128777, 0.00670798682, -0.0431397036, -0.00305770407, 0.0254571643, -0.00782203395, 0.0180736389, -0.0225890856, 0.0268556494, -0.000584060035, 0.0159996152, -0.0082309125, 0.015952209, -0.00940421782, 0.0274008214, 0.0178603102, 0.020254327, 0.00706945965, -0.017836608, 0.00593467196, 0.00834350288, -0.0292022601, -0.00405916153, 0.0090783, -0.0240112729, -0.00142663228, 0.0141863255, -0.00453322427, 0.0127167311, -0.00569467759, -0.00166810805, -0.000264623261, 0.00155699952, 0.0122782225]
30 Dec, 2022
How to convert UTC date time into local date time using JavaScript ? 30 Dec, 2022 Given an UTC date and the task is to convert UTC date time into local date-time using JavaScript toLocaleString() function. Syntax: var theDate = new Date(Date.parse('DATE_IN_UTC')) theDate.toLocaleString() Example 1: This example converts UTC date time into local date time using JavaScript. html <body> <h1 style="color:green;"> GeekforGeeks </h1> <p> Click the button to convert UTC date and time to local date and time </p> <p> UTC date and time: 06/14/2020 4:41:48 PM </p> <button onclick="myGeeks()"> Try it </button> <p id="demo"></p> <script> function myGeeks() { var theDate = new Date(Date.parse( '06/14/2020 4:41:48 PM UTC')); document.getElementById("demo") .innerHTML = "Local date Time: " + theDate.toLocaleString(); } </script> </body> Output: Example 2: This example converts today’s UTC date time into local date time using JavaScript. HTML <body> <h1 style="color:green;"> GeekforGeeks </h1> <p> Click the button to convert UTC date and time to local date and time </p> <p id="UTC_DATE"> UTC date and time: 06/14/2020 4:41:48 PM </p> <button onclick="myGeeks()"> Try it </button> <p id="demo"></p> <script> var theDate = new Date().toUTCString(); document.getElementById("UTC_DATE").innerHTML = "UTC date and time: " + theDate function myGeeks() { var theDate = new Date().toLocaleString(); document.getElementById("demo") .innerHTML = "Local date Time: " + theDate.toLocaleString(); } </script> </body> Output: 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 ?
https://www.geeksforgeeks.org/how-to-convert-utc-date-time-into-local-date-time-using-javascript?ref=asr10
PHP
How to convert UTC date time into local date time using JavaScript ?
PHP Date and Time, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, PHP Tutorial, PHP
GeeksforGeeks
[-0.013191103, 0.0235967543, -0.0027381985, 0.0500187539, -0.00775947236, 0.0123355715, -0.0215076655, 0.0310179945, -0.0371061973, -0.0390560105, -0.000165386198, -0.0209505763, -0.0192594081, 0.0153000886, 0.018990811, -0.0265015829, -0.0266607516, -0.00959488656, -0.0191300847, 0.0297446456, -0.0139571028, 0.0431745, -0.0147131532, 0.00543660484, -0.0207914077, 0.0180258509, 0.0127732856, 0.0200453047, 0.0292074513, -0.000181396317, 0.00619763, 0.0180954877, 0.00826682243, -0.0369470268, -0.0119774425, -0.0196175389, 0.0509737656, 0.0254868828, -0.0270785689, 0.00930141937, -0.0304410066, 0.0240742601, -0.0115098841, -0.0042055347, 0.00865977071, 0.0608820133, 0.0087890951, -0.019159928, 0.0411053076, -0.0195180569, 0.00723222643, 0.0368674435, 0.0203536935, 0.0157477502, 0.0279142056, 0.00012582718, 0.0669702142, -0.00852049794, 0.0283718146, -0.014394816, 0.0539183877, -0.0292870346, 0.00135666423, 0.00920691248, 0.0213683937, 0.021328602, -0.00423786556, 0.0196971223, 0.0421399064, -0.0198960826, 0.00378771685, 0.00224950095, 0.0260240771, -0.00776942074, 0.029704852, -0.0280335806, -0.0131612588, 0.0237957165, -0.00719740801, 0.0119575458, 0.00900795218, -0.0360716, -0.0221841335, 0.027755037, 0.00764009589, 0.00379269081, -0.0219851714, -0.0402497761, 0.0138576217, 0.0291079693, 0.0246910397, 0.0275361799, -0.0347982496, 0.0246313512, -0.0229202881, 0.0328285359, -0.00761522586, 0.0182646047, -0.0510135591, 0.0462782905, 0.0181054361, 0.0186127853, 0.00646622712, -0.0504166745, 0.016921619, -0.0180358, 0.0421796963, -0.0155786332, 0.0327091627, -0.0183342416, 0.0265015829, -0.00912732817, 0.0137382457, 0.0163346846, -0.0159765556, 0.030739449, -0.011698897, -0.0464374572, 0.0523664914, 0.0270387772, -0.0144843487, 0.00966452248, 0.043811176, 0.0395335183, -0.0211893283, 0.0409461409, -0.0181949679, -0.00761025166, 0.0234176908, -0.0241936371, -0.0221045483, 0.026422, -0.01519066, 0.00295954244, 0.0376234949, 0.0209107827, 0.010326067, -0.0216668341, 0.0185431503, -0.0103459638, 0.000111837748, 0.0201746281, 0.000219634108, 0.00187644933, 0.00335497712, -0.0168121904, -0.000324865745, 0.01152978, 0.016394373, -0.0171006843, -0.00137531676, -0.0374245346, 0.00209157588, -0.00513318973, 0.0341814719, -0.0156184258, 0.0079484852, 0.000612115429, -0.0650999844, -0.0211893283, 0.00331269787, -0.0307593457, 0.0160262957, -0.0262429342, -0.0103957038, 0.0423388667, -0.000183883327, -0.00316347717, 0.0253078174, 0.0150513873, -0.0438509695, 0.00569028, 0.0191300847, 0.020124888, -0.0168619305, -0.019329045, 0.000425589649, -0.0280534774, 0.00829169247, 0.00518790353, -0.0225621592, 0.0114700925, 0.00862992648, 0.0255067796, 0.000637918187, -0.0036036782, -0.0163744763, -0.0148623744, 0.0151110757, -0.0323908255, -0.0450049415, 0.0213683937, 0.0304211117, -0.0289090089, -0.0133303758, 0.0123156756, 0.0137581415, 0.0146833099, -0.0282524377, 0.00840609521, -0.00421548262, -0.0415430218, -0.0417021923, -0.0289090089, -0.0213683937, -0.0214678738, -0.00788879674, -0.0394539349, 0.0466364212, 0.00420056051, 0.030978201, -0.00649109716, -0.0244522858, -0.0171603728, 0.000693875889, -0.0285309833, 0.0189311225, -0.00653088931, -0.00935613364, -0.0140267387, -0.0417419821, 0.00773460232, -0.0117088454, -0.0065955515, -0.0587332398, -0.00248825387, 0.00465568341, 0.0126638571, 0.0207715109, -0.0199358761, -0.0125345327, -0.000246369484, 0.0114700925, -0.0307593457, 0.0295058917, -0.0244323909, 0.01152978, -0.0021773777, -0.0159765556, 0.00540676061, 0.00508344918, -0.0295655802, 0.0389565304, -0.036569003, -0.00335995108, -0.0227611195, 0.0134895444, 0.0268199202, -0.00385984, 0.0272576343, -0.0291079693, 0.0328484327, -0.0496606231, 0.0234176908, -0.00865479652, -0.00772962859, -1.39408594e-05, 0.0140466345, 0.0351961702, 0.0273173228, 0.0101320809, 0.0232784171, -0.0224427823, 0.0111119626, 0.040707387, -0.00257902988, -0.00641151285, -0.0104752881, -0.0318735242, -0.0230794568, 0.0227014311, -0.0231391452, 0.00634685066, 0.0238156114, -0.012325624, -0.0107936254, -0.0500187539, 0.0343207456, 0.025466986, -0.00921188667, 0.0248104166, 0.0085304454, 0.0344401188, 0.0343605354, 0.00330772391, 0.0004461075, 0.02855088, -0.0120072868, 0.0173394363, -0.0214081854, 0.00884380937, 0.00798330363, 0.0240344685, 0.0201845765, 0.019329045, -0.0084956279, 0.00531225419, 0.00988338, -0.0200154595, 0.0571813434, -0.014394816, -0.0677660629, -0.0252083372, 0.0409063473, -0.00507598836, 0.0219851714, 0.00425776187, -0.0344600156, -0.00820216071, -0.0267005432, 0.0159865022, -0.00468304055, -0.0653387383, 0.00266110105, -0.00241613062, 0.000947551, 0.000229893019, 0.0248701051, -0.0346589759, 0.00844091363, -0.00601856504, -0.01107217, -0.0346987695, 0.0294263065, 0.0711086, -0.0163545813, 0.00814744644, 0.00311871106, 0.00870453659, 0.00133676815, -0.0200055111, -0.00744610932, -0.00712777209, 0.0434928387, 0.00476759905, 0.0142356474, 0.00811262801, -0.00910245813, 0.00811262801, 0.0153498286, 0.0182546563, 0.00637172069, -0.00332264602, -0.0180358, 0.0128827142, -0.013937206, -0.018224813, 0.0021724035, 0.00777936867, 0.0257654283, 0.000538437744, 0.0146236215, 0.0316546671, 0.020124888, 0.0308986176, -0.0511727259, -0.0315352939, -0.0192892533, -0.0510533489, 0.0240742601, -0.0363501459, -0.00419807341, 0.0307991374, 0.0260240771, 0.0017433943, -0.0699148402, 0.0137581415, 0.018632682, -0.000779056, -0.0335845873, -0.0174389165, 0.0057002278, 0.0137183499, -0.00710290158, -0.02763566, -0.0126539087, 0.00158298214, 0.015598529, 0.00955509394, 0.00168619305, -0.02580522, 0.0257853232, 0.00204556598, 0.0164441131, 0.0291079693, 0.00925167836, -0.00211395882, -0.0325102, 0.0104255481, 0.0160660874, -0.00536199426, 0.013648713, 0.0049516377, -0.0181850195, -0.0222040284, -0.00543163065, -0.00494169, 0.0162551, 0.058375109, -0.0152105559, -0.0262429342, 0.0139471544, -0.0260638688, -0.0217066277, -0.0154592572, 0.0213484969, -0.0207317192, -0.0288493205, 0.0347186662, 0.0300231893, -0.00914722402, 0.0102763269, 0.00633690273, -0.054117348, 0.0202343166, -0.00186525786, -0.0154891005, 0.031555187, -0.0113805598, 0.00543660484, 0.0369072333, 0.00419558678, -0.00683927862, -0.00753066735, -0.023397794, 0.0116292611, 0.0264816862, 0.0137581415, 0.00409610616, 0.0346191861, -0.0188117474, -0.0380811021, 0.0191201363, 0.0563457087, 0.0112611828, -0.0341416784, -0.000788382313, -0.00519287772, -0.00980876945, 0.0128429215, -0.0340024047, -0.00301425671, 0.0257256366, -0.00980379526, -0.0558284111, 0.0360119119, -0.0488249883, 0.0090179, -0.00243478315, 0.0101022366, -0.0185232535, -0.0323510319, 0.00762517378, 0.0274168029, 0.0145241413, 0.0197070707, -0.054594852, -0.000690145418, 0.0370067134, -0.0115098841, 0.0339029245, 0.0257455315, -0.0180258509, -0.0184237733, -0.0106245084, -0.022243822, 0.0424980335, -0.00751077151, -0.00230918918, 0.0164839048, -0.0111418068, -0.0172797479, -0.0241538454, 0.0161456708, 0.0170111507, -0.00868464075, -0.0251486488, -0.0489841588, -0.00329777575, -0.0133104799, -0.00706808362, 0.0413440615, -0.0057002278, 0.00921686087, -0.0078042387, -0.000150775013, 0.00415828126, -0.0331667699, -0.0120371301, 0.018224813, 0.0123455198, 0.030281838, -0.0149121145, 0.000458853436, 0.0045835604, -0.0244124942, -0.0308986176, 0.000508282741, -0.0169415157, -0.0183043964, -0.0376433879, 0.0251088571, -0.0127633372, 0.0332861468, -0.0367480665, -0.0148026859, 0.0157477502, 0.028789632, -0.00240866956, -0.00601359131, 0.0252083372, -0.0247905198, 0.0108135212, 0.0563059151, -0.00976897683, 0.00478252117, -0.00797335524, 0.0126738055, -0.000911489304, 0.00949540548, -0.0217663161, 0.00715761585, 0.00243727025, 0.0105449241, -0.0343605354, 0.0223433021, 0.0109726898, -0.0260837656, -0.0208312, -0.00874432828, 0.00196971232, -0.00364098325, 0.0274168029, 0.021905588, 0.00793853682, -0.0375638045, 0.00165634893, -0.00650104508, 0.0112611828, 0.0169315673, -0.00951530226, 0.0232784171, -0.0489045717, 0.0191002395, -0.00592903281, 0.00529235834, 0.0266806483, -0.0280335806, 0.000808900164, 0.0310577862, -0.0222040284, 0.0361710787, -0.00952525, -0.0182646047, -0.00218732562, -0.00727699231, -0.0417817757, -0.0152404, -0.0208709911, 0.00949043222, 0.0210301597, 0.0198662393, 0.0227611195, -0.0300629828, -0.0169415157, -0.031197058, 0.00482231332, 0.066055, -0.0469547585, 0.042537827, 0.0388371535, -0.00892836787, 0.00791864097, 0.00554105919, -0.019547902, -0.0138974143, -0.0252879225, 0.0126439612, 0.000793356332, -0.0330871865, -0.0155487889, 0.0302619431, -0.0161058791, 0.0287299436, -0.0156681649, -0.032569889, -0.0155189447, -0.0293069314, -0.0406278037, 0.00237012096, 0.0385984033, 0.00384491822, 0.0136188688, 0.0250292737, -0.0018988325, -0.00972421095, -0.00485961838, -0.00521774776, 0.00692383712, -0.0363302492, -0.000548696669, 0.0439703427, 0.0401105024, 0.0308986176, 0.0141461156, -0.00371061964, 0.00775947236, -0.0210699532, 0.00668011, -0.0235768594, -0.0378025584, 0.0118879098, -0.0155587373, -0.0161456708, 0.00445423555, -0.00436221622, -0.00230048457, 0.0494616628, -0.0415032282, -0.0259842854, 0.0141162714, -0.0256659482, 0.0034544575, 0.0311771631, 0.00464573549, 0.0629114136, 0.0135591812, -0.00317342533, -0.0118282214, -0.0689996183, -0.00440946966, -0.0208709911, -0.00457112538, 0.0510533489, 0.0260240771, 0.016056139, -0.0270785689, -0.00856526382, -0.0125245843, 0.0358527415, -0.0408665538, 0.0103857554, -0.0180855393, 0.0802608, 0.00462086545, -0.00540676061, -0.00387476222, 0.0516502336, 0.00426273607, -0.000405382685, -0.00889852364, -0.0413440615, -0.00375041179, 0.0100574698, -0.0185033567, 0.00998286, 0.0198861361, -0.0427765809, -0.0182347596, -0.00528738415, -0.00242980919, -0.00274317246, 0.02397478, -0.0189609677, 0.00675969431, -0.0146833099, 0.0112114428, 0.0116093643, 0.00553111127, 0.0299635, -0.00306648389, -0.00978389941, -0.0232784171, 0.00809273217, -0.00526251411, -0.0301823579, -0.0114601441, 0.0472333021, 0.00576986419, -0.0176776703, -0.00640653865, -0.00277550356, 0.0335845873, 0.0158969704, 0.0297844373, 0.00578976, 0.00186028378, 0.0108632613, 0.0151309716, -0.0219453797, 0.0347186662, 0.00754558947, 0.0168519821, 0.034400329, -0.0258649085, 0.0202940051, 0.0153995687, 0.00387724931, 0.00350917177, -0.0125544285, 0.0101072099, 0.00840609521, -0.00893831532, 0.0199756678, -0.0416226052, 0.0537592173, 0.00687409658, 0.0220647566, -0.0391355976, -0.000951281458, 0.0379617289, -0.0194086302, 0.00564551353, -0.00243229629, 0.00575991627, 0.0251088571, 0.0131115187, 0.0307991374, 0.0155089973, -0.0126439612, -0.0101221325, -0.0398916453, -0.0156681649, -0.0228009112, -0.00425030058, -0.000589421485, 0.04611912, -0.00377776893, -0.0306996573, -0.00284514, 0.00271581532, 0.00566541, 0.0253874026, 0.000650975, -0.0217066277, -0.0268398169, -0.027755037, 0.0220249649, -0.00498396903, 0.0287299436, -0.0294661, -0.00680446066, -0.0108533138, 0.011410404, 0.00562561769, -0.0135492329, 0.0150712831, 0.0446070172, 0.0249496885, -0.0138377259, -0.00372056756, 0.0187918507, 0.034877833, -0.00260638702, 0.0263026226, 0.0202940051, -0.0316745639, 0.00428014481, 0.0242732223, -0.0126439612, 0.0243925974, 0.00834640674, 0.0114999358, 0.0176080335, -0.0134099601, -0.000874184188, -0.00744113512, -0.00546147488, 0.00860008225, 0.0220249649, 0.00853542, 0.00231043273, 0.00835138094, -0.00468304055, 0.00898308121, 0.0159865022, 0.0194882136, -0.00542168273, -0.0143351285, 0.0180855393, 0.0256858431, -0.0178965274, -0.00132184604, -0.0125643769, -0.00340471719, 0.000992938876, 0.0218260027, -0.0247308314, 0.0125444802, 0.0021724035, -0.0154692046, -0.0182646047, 0.000441133481, 0.039633, -0.00985353533, -0.0451243185, 0.0241936371, 0.0236564428, 0.0140665313, -0.0320724882, 0.0346987695, 0.00172101124, 0.0156283733, -0.00811760221, 0.0332264602, -0.0242931172, 0.00656073354, -0.0182049163, 0.00701336935, 0.00537194265, -0.0198562909, 0.0224427823, -0.015717905, 0.00206670561, 0.0247706231, -0.00694373297, 0.021905588, -0.00242110458, 0.0157477502, -0.02580522, 0.0164341647, -0.031415917, -0.00208784523, -0.0149021661, 0.000706310966, 0.0479893535, 0.0211893283, -0.0253874026, -0.0148325302, -0.0122161955, 0.00448159268, -0.0169315673, -0.0335249, -1.26682089e-05, -0.0185630452, 0.0116093643, -0.00581960427, 0.0021040109, 0.0251486488, 0.0287100486, -0.0052078, 0.017140476, 0.0324704088, 0.00362854823, 0.0149419587, 0.00766496593, -0.0214479771, 0.00761522586, 0.000597815146, -0.00410605408, 0.0192892533, 0.0104852356, 0.017667722, -0.0174090732, 0.0137084015, 0.0176876187, -0.0174389165, -0.00514811138, 0.0246711429, 0.000719367759, 0.0282325428, 0.0195677988, -0.010206691, 0.0155388415, 0.0224626772, -0.0377428718, -0.00399662554, -0.0172001645, 0.00405382691, 0.0184436701, -0.00196722522, -0.0322714485, 0.0120371301, 0.00109055405, -0.00381507399, 0.00739636878, -0.0122659355, 0.0159566589, 0.0568232127, -0.00847075786, 0.0241339486, -0.00652094139, 0.0101072099, -0.00802309532, -0.0099977823, 0.00251312414, -0.0301226694, -0.034400329, -0.00594395492, -0.0295058917, 0.00265861419, 0.00615286361, 0.00398419052, -0.0294462033, 0.0114203515, 0.0257455315, -0.00875427667, -0.0121863512, 0.0366286896, 0.0493820794, 0.00767491432, 0.00846080948, 0.0453232788, -0.00525256619, 0.0214877706, -0.0139769986, -0.0142953359, -0.00981871691, 0.00553608499, 0.0479893535, 0.0346191861, 0.0435724221, -0.0307593457, 0.0213882904, 0.0161755159, -0.0344600156, -0.0457609929, 0.00489692343, 0.005705202, 0.0128130773, -0.0106245084, 0.012156507, 0.00193613756, -0.01152978, 0.000715015514, -0.0208312, -0.00258400384, 0.00185157929, 0.012614117, -0.00372305466, -0.0191101879, 0.00958493818, -0.00225944887, -0.0212092251, 0.00199582591, 0.030043086, -0.0322714485, 0.0285110883, -0.00899800379, -0.0257057399, -0.0190604478, -0.00915219821, -0.0147827901, 0.0173195414, 0.0112711312, -0.0101619242, -0.000971177593, -0.0266010631, 0.0214081854, -0.0212291218, 0.0236365478, 0.0073466287, 0.00451392401, 0.0226019509, 0.0269392971, -0.0157477502, -0.0212689135, 0.00990825, -0.0230197683, 0.011241287, -0.00926660094, 0.0186525788, 0.00176204683, 0.00302420463, 0.00342212641, 0.021567354, -0.0546346456, -0.00385984, 0.00492179347, -3.56536257e-05, 0.00994306803, -0.0405681133, 0.019378785, 0.00187893643, -0.0149618546, 0.0137879858, -0.00130692392, -0.0211296398, -0.00722227804, -0.0165734366, 0.0167127103, -0.0274565946, -0.0240344685, 0.00706310943, 0.0194484219, -0.0380214155, 0.003827509, 0.000494293345, 0.017259853, -0.000502065232, 0.0171603728, 0.00401900895, -0.00935613364, -0.0194683168, -0.00604343554, 0.0179363191, 0.01742897, 0.0200453047, -0.0074361614, -0.0176378787, -0.0341018885, 0.0118978582, 0.00122050033, 0.000956877251, 0.016394373, 0.0338034444, 0.0101569509, -0.0208113026, -0.00525256619, -0.00184287468, -0.0520879477, -0.0437315926, 0.0322913416, -0.0095351981, -0.031077683, 0.0546744354, 0.0202343166, 0.0390560105, -0.00993809383, 0.000433050678, 0.00789377093, -0.00657565566, 0.0314756036, -0.0154294129, 0.0013529337, -0.0170409959, -0.0136785572, -0.00739636878, 0.0160859842, -0.0342809521, 0.0228606, -0.00484469626, 0.00746103143, 0.0157378018, 0.0155885816, -0.00545650069, -0.01152978, -0.00282524386, 0.00831656251, 0.0113407671, -0.0108831581, 0.0144445561, -0.00450646272, -0.00860008225, -0.0195180569, 0.00474272901, 0.019667279, 0.0239946768, -0.00806786213, -0.00748590147, -0.0190206561, -0.0142356474, -0.0214081854, -0.012325624, 0.00742621301, -0.00799325109, -0.029824229, -0.000947551, 0.0205526538, 0.0195180569, -0.00353901577, 0.000466003577, -0.031077683, -0.01747871, -0.0213683937, 0.0201049931, -0.00636177277, -0.00796838105, 0.00632695435, 0.0221642368, -0.00409610616, -0.0274764914, 0.006162812, -0.00665524, 0.0186525788, -0.0096545741, 0.0110622225, -0.0161357243, 0.00334502896, 0.00755553786, 0.0240941569, 0.00510831922, -0.00357383396, -0.000248079275, 0.0178169422, 0.00281032175, 0.0140665313, -0.00111480244, -0.0374046378, -0.0291079693, -0.0017757254, 0.0213882904, -0.00839614682, -0.00667016208, 0.0072869407, 0.0347186662, -0.00423537893, 0.0569028, -0.0133900642, 0.00649607135, -0.00703326566, -0.00429258, -0.0354150273, -0.0102862753, 0.000537194253, 0.0129424026, -0.0432938784, 0.0217464194, -0.000790869293, -0.0275958683, 0.00528241, -0.0296849571, 0.00139023887, -0.00921188667, 0.00800319947, -0.00652094139, -0.0236962344, -0.0015966607, 0.0229799766, 0.0120669743, 0.00491681974, 0.02214434, 0.0101271067, -0.00699347351, -0.0240941569, -0.0339626148, -0.00394688547, 0.0101569509, -0.0291477628, -0.000272016769, 0.00215499452, 0.00241240021, 0.0352956504, 0.00628218846, -0.0078042387, -0.00959986, 0.0116292611, 0.0075157457, -0.0155288931, -0.0202542134, -0.00011580142, 0.0137879858, -0.019329045, -0.0257853232, -0.0133005315, -0.0115994168, -0.00243105274, -0.0155189447, 0.0165336449, -0.0256261546, 0.0010507619, -0.0151807116, -0.000300928252, -0.0369669236, -0.0199657194, -0.0172001645, 0.000719367759, 0.00539183849, -0.02397478, 0.0266408548, -0.0156980101, -0.0410655178, 0.0262031425, -0.021905588, -0.0174886566, 0.00300928252, 0.00855531543, 0.0111517543, 0.0212291218, 0.0148723228, -0.00666021369, -0.0188515391, 0.0211694334, 0.000521650421, 0.00453879405, -0.00711285, -0.0144346086, 0.00639659073, -0.00138775178, 0.0298839174, 0.0410257243, 0.00826682243, -0.0209505763, -0.0231789369, 0.00994306803, -0.0090179, 0.0223035086, -0.0144346086, 0.00859510805, -0.00280783465, -0.0133303758, 0.0374046378, 0.0214081854, 0.000774703745, -0.0212490167, 0.0179164223, 0.0147628943, -0.00597877288, 0.0220846534, 0.0184934102, 0.0099132238, -0.00587929273, -0.00452635903, 0.00722227804, -0.0119177541, 0.00603846135, 0.03038132, 0.038538713, 0.00396678178, -0.00717751216, -0.00837127678, 0.0170708392, -0.00574499415, -0.00548634492, 0.0135094402, 0.00510334549, -0.0105847167, -0.0110522741, 0.0127036497, -0.0186525788, 0.0104454439, 0.0147728417, -0.0323112383, -0.00158546912, 0.0247308314, 0.022482574, -0.0286304634, -0.00451641111, 0.0376632847, 0.0115397284, -0.0239548851, -0.00272825034, 0.00831656251, -0.0084110694, 0.0245119743, -0.0179860592, 0.000591597578, 0.0231789369, 0.00374046364, -0.00808775797, 0.0146833099, -0.0232386254, 0.0108632613, 0.00465568341, 0.0107140411, -0.00664031785, 0.0106543526, 0.0161655676, 0.0219453797, -0.0101718726, 0.0240742601, -0.00888857525, -0.00443931343, 0.02489, 0.00680943439, 0.0184834618, -0.0011651644, -0.0302420463, 0.016056139, -0.0100773666, -0.0015730341, 0.0137481932, 0.00934618525, -0.0118879098, 0.00679451227, -0.0193688367, 0.0153796729, 0.0120669743, 0.0117685329, 0.00990825, 0.00204432267, 0.0262429342, -0.0135691287, 0.00130941102, -0.0323709287, 0.0363899358, 0.0272178426, -0.0185332019, -0.0050386833, -0.00199085195, -0.0244522858, -0.00884878263, 0.0221642368, -5.00510832e-05, -0.0125444802, 0.00981871691, -0.0171603728, 0.0113009755, 0.0239150915, -0.00752569363, -0.00281280885, 0.000659057754, -0.0189808644, 0.0102663795, -0.00737647293, -0.015021543, -0.0192196164, -0.0171504244, 0.0353553407, 0.00455371616, 0.0130120385, -0.00450148899, -0.00928649679, -0.0294859949, 0.00317591242, 0.0218856912, 0.0131115187, -0.00331518496, 0.000305435969, 0.0171802677, 0.0180855393, 0.00655078562, 0.0154393604, 0.00851552375, -0.0225024708, 0.012445, -0.0124947401, 0.00269840634, 0.0222637169, -0.0218061078, -0.00589918857, -0.0195180569, -0.0217464194, 0.0216469392, 0.00527246203, -0.0159666073, 0.0312368516, -0.0295456834, 0.0231391452, 0.0143251801, 0.00531722838, 0.00505360495, -0.0209704712, -0.0004461075, -0.0284116063, -0.0192992017, 0.0114700925, 0.0233182106, 0.0160660874, -0.0113905082, -0.00511329342, 0.0117088454, -1.98475082e-05, 0.015767647, -0.00710290158, -0.000669627567, -0.0240543652, 0.00241613062, -0.00856526382, 0.0278346203, 0.00549629284, -0.0140565829, 0.00244597485, -0.0200453047, -0.00978389941, -0.00629213639, -0.00515308557, 0.0267801285, 0.00939592533, -0.0062225, -0.0036011911, -0.000710041495, -0.00887862686, -0.0133403242, 0.0042055347, -0.0295456834, 0.0221244451, 0.00230048457, 0.0244522858, 0.0262230374, -0.0192693565, 0.00798827782, -0.019786654, 0.00153945945, 0.0301425662, 0.00324803567, -0.00498645566, -0.0213484969, -0.0264617912, 0.0309384093, -0.0208312, -0.00550126703, 0.0066850842, -0.00201323489, 0.0111418068, -0.0216071457, -0.0113805598, 0.0549529828, -0.0103857554, -0.0132408431, -0.0279539973, -0.0250093769, 0.0394340381, 0.0253078174, 0.00123107014, 0.00900795218, 0.0145042446, -0.00905271806, 0.0338631347, -0.00967447087, -0.0133005315, -0.0107239885, -0.00712777209, 0.00232535484, -0.0275759716, 0.0194384735, -0.0124648958, -0.0122559872, -0.00529733207, 0.0102663795, 0.00593898073, -0.00917209405, -0.00432739826, -0.00437962543, -0.000337300793, -0.00581960427, -0.0208510961, 0.0101171583, -0.00577981211, 0.00478252117, -0.0122360913, -0.0117884297, -0.0321520716, -0.0310179945, 0.0219453797, -0.00425030058, 0.00476759905, -0.00169489766, 0.00596385077, 0.00114464655, 0.0214081854, -0.0165336449, 0.0382601693, -0.0124847926, 0.00259643886, 0.0206720307, -0.00287995813, 0.00245219236, 0.0248303115, -0.00993809383, -0.00757045951, 0.00522272196, -0.00731181074, 0.0166231785, -0.00188764092, -0.0329280198, 0.0225223657, -0.00110174564, -0.0198463425, 0.0125643769, 0.000249478238, 0.0285707749, 0.0308190323, 0.00619265577, 0.00544655276, 0.0179064758, -0.0328683294, -0.0127732856, 0.00494666351, -0.00958493818, 0.00641151285, -0.0112213911, -0.0186127853, -0.0148623744, 0.00925665256, 0.0189311225, 0.00139148231, -0.00632198062, -0.00753564155, -0.00789874513, 0.0158969704, 0.0310577862, 0.0284116063, 0.01290261, -0.00427765772, 0.00518790353, -0.0143450759, -0.0317143574, 0.0124549484, -0.00821708236, -0.04611912, -0.0171504244, -0.00249198452, -0.0101967426, -0.0160063989, 0.0117486371, 0.0280335806, -0.00473278062, 0.0210301597, 0.0104553914, -0.00352658075, -0.025466986, 0.0246711429, -0.0192494616, -0.012445, -0.00586437061, -0.00488448841, 0.0131015712, 0.0239946768, 0.0201746281, 0.000598436862, -0.0138874659, 0.0178965274, -0.00676466851, -0.0251685455, -0.00410108035, 0.00126837532, -0.0307991374, -0.00945064, -0.00328534073, -0.0263026226, -0.0252879225, -0.00991819799, 0.0128031299, 0.019159928, 0.0217464194, 0.025466986, 0.00746600516, -0.0101867951, 0.00536696846, -0.0342610553, -0.00824692659, -0.000440511707, -0.0156582184, 0.016921619, 0.018582942, 0.000309943687, 0.00768486224, -0.00836132932, 0.000194764, -0.00284265284, 0.0269194, 0.0017259852, 0.0117187928, -0.00419558678, -0.0218657963, 0.0329479128, 0.0155885816, 0.00538189057, 0.0120172342, -0.00109925866, -0.00969934091, 0.0151508674, 0.00882391259, 0.0238355082, 0.00430252822, 0.0189410709, 0.00727699231, -0.000737398572, 0.00445174845, 0.010326067, -0.00942577, 0.0219652764, -0.00119003444, -0.0199955646, 0.0145440372, -0.0172101129, 0.00986845698, 0.00235768594, 0.00263871811, -0.00136536872, 0.0225223657, -0.00106070994, 0.00853542, -0.000177665803, -0.0154194646, 0.0232187286, 0.0117088454, -0.0208113026, 0.0166928135, 0.00423786556, 0.00343704829, -0.0127633372, 0.00268597133, -0.00754558947, 0.00221219566, 0.0195379537, 0.0107936254, 0.0112313386, 0.00782910921, -0.00566541, 0.00334502896, 0.0402497761, -0.0150513873, -0.000319580839, -0.0111119626, -0.000991695444, 0.01107217, -0.00282773096, -0.0119973384, 0.00162277429, 0.0100226523, 0.0127235455, -0.0040612882, 0.0214877706, -0.00175707287, 0.000484345277, 0.018075591, 0.018821694, 0.000346627086, -0.00932628941, 0.00382502214, 0.0200353563, -1.75645109e-05, 0.00557090342, -0.00305404887, 0.000653461961, 0.00349673675, 0.000373362447, -0.0194583703, 0.0137183499, 0.00589421485, -0.0197269674, 4.43970202e-06, -0.0189510193, 0.00776444655, -0.00434232038, -0.00737647293, -0.0081573939, 0.019667279, -0.0161755159, -0.0074908752, -0.00995799, 0.0193389934, -0.00700839516, -0.00708798, 0.00232535484, -0.0203437451, -0.00484220916, -0.00990825, -0.0116790012, -0.00736652501, 0.0122957798, -0.00959986, 0.0260041803, 0.016056139, 0.00698849931, -0.00998286, 0.0141759599, -0.0183839817, 0.00860008225, 0.00122298743, 0.0300629828, -0.00883386098, 0.00377030787, -0.00442190468, 0.00617276, 0.00328285387, -0.0218459, -0.0233381055, 0.0267602317, 0.0222040284, 0.00833148509, -0.0281529576, 0.0177970473, 0.0112114428, 0.0104852356, -0.00528241, 0.0187819023, -0.0159964506, 0.00681440858, 0.00444926182, -0.00147728424, -0.000476573361, -0.0252879225, 0.00918701664, -0.0245915595, -0.0050983713, 0.010783677, 0.0293865148, 0.00856526382, 0.0351961702, 0.00298689958, 0.00255167275, 0.0074311872, 0.00219727377, 0.00809770636, -0.0148026859, -0.0137979342, -0.00126153603, -0.0161755159, -0.00030714579, 0.0021450466, -0.00550126703, 0.00335995108, -0.0105946641, -0.00149220624, -0.000418439507, -0.00521774776, -0.018055696, -0.00506604044, -0.0398916453, -0.0151011273, -0.0296252687, 0.0122261429, 0.0201547332, 0.00128454086, -0.0044119563, -0.0099132238, 0.0154393604, -0.00474770274, 0.00026579923, -0.0192494616, 0.00321321748, 0.000643513922, -0.00930639263, 0.0357930548, 0.0205128621, -0.0155288931, 0.000691388908, -0.00215623807, -0.0121167144, 0.00102464831, -0.0018988325, -0.0185232535, -0.00919199083, -0.00171479373, 0.0022457703, 0.00139894336, 0.0153398803, 0.000964338309, -0.00986348372, 0.0135193886, -0.00811760221, -0.00464324839, 0.00904774386, -0.00490438472, -0.0263424143, 0.0156084774, -0.00755056366, -0.0143550243, -0.0117187928, -0.0148026859, -0.00404387899, 0.0348380432, 1.46403308e-05, -0.00830164086, -0.002882445, 0.0200453047, -0.0387575701, -0.0112810796, 0.0311572663, -0.00800817367, 0.00405631401, 0.0274963863, 0.0109130014, 0.0172698, -0.0147728417, 0.00102837884, -0.0389565304, -0.00705316151, -0.00372305466, -0.0078042387, -0.00528241, 0.0080380179, -0.0104255481, 0.00156059908, 0.0317342542, 0.00860008225, 0.00464573549, 0.0175185017, 0.0197170191, -0.00583950058, -0.0105250282, -0.00206546206, 0.010037574, 0.0324704088, 0.00446418393, -0.0150115946, 0.00323311356, -0.0137084015, 0.0103161195, 0.00848567951, 0.0454824455, 0.00692383712, -0.0190703962, 0.00844091363, 0.0145241413, 0.00457112538, 0.00430252822, 0.0117983771, -0.010326067, 0.00369818439, 0.0247109365, -0.00871945824, -0.00304658781, 0.00710787578, 0.0205725506, -0.0122957798, -0.00633690273, -0.0123753641, -0.0152006075, -0.0293666199, 0.0109726898, 0.0130319344, -0.0014437096, -0.00638166862, 0.020413382, 0.00433734618, -0.0437713824, -0.00670498, 0.00771968, -0.00383994402, 0.0109428456, -0.00764009589, 0.00765501801, 0.00364098325, -0.0111119626, -0.0015966607, 0.0183441881, 0.0123156756, 0.00380761293, 0.00958493818, -0.0110224299, 0.0446070172, 0.00532220211, -0.00459102122, -0.0146037256, -0.00315850321, 0.00215250743, 0.00315352925, 0.000374295079, 0.0130319344, 0.0276754517, -0.0186227337, 0.00588924065, -0.00520282565, 0.0100524966, 0.0193986818, 0.0216071457, 0.011241287, -1.24739117e-05, 0.0102962228, 0.00113905082, -0.0113407671, 0.00684922654, 0.0156980101, 0.0143749202, -0.0145241413, 0.00554603338, 0.00729688862, -0.00368077541, 0.00291477633, 0.00408367114, -0.0362108722, 0.00426273607, -0.00210276735, 0.000390771515, 0.00287249708, -0.0229600798, -0.0267602317, -0.00197219918, 0.0020990367, 0.00198090379, 0.0212092251, -0.000387041, -0.00486210547, 0.00143873552, 0.0168221388, -0.0188714359, -0.0101271067, -0.015140919, 0.0136885056, 0.00768486224, 0.0197667591, -0.0194285251, -0.00664031785, -0.0432142913, 0.00416574255, -0.00928649679, -0.00390958041, 0.0078092129, 0.0334851071, -0.00573504623, 0.00830164086, 0.00463081338, -0.00543660484, -0.00357383396, -0.0219254848, -0.00415330753, 0.0300231893, -0.016921619, -0.0353155471, 0.00487702759, -0.00799325109, -0.00033885517, 0.00316596427, -0.00513816345, 0.00372554152, 0.00521774776, -0.00103894866, 0.019159928, 0.0069735772, -0.000879779924, -0.00857023802, 0.0238951966, 0.00374295074, -0.0034843015, -0.0138277784, -0.0241538454, -0.0103061711, 0.0104752881, -0.00558582554, 0.00245592277, -0.00417320337, -0.0113407671, -0.0385586098, 0.00696362928, 0.000580716936, -0.0153299319, -0.0188515391, 0.014563933, -0.00162401784, 0.0374046378, 0.0041234633, 0.0124648958, -0.0213484969, 0.0211694334, -0.0252879225, -0.0086995624, -0.0128329741, -0.00113096798, -0.00913230237, 0.0072023822, -0.0255067796, -0.0165435933, 0.00233157235, -0.00691886293, -0.01519066, 0.00339476927, 0.000456055539, -0.0457609929, -0.0137183499, 0.00330026285, 0.00846080948, 0.00849065371, -0.00528738415, -0.0295456834, 0.0317939408, -0.0169116706, -0.000875427679, 0.0115397284, -0.0058494485, 0.00529733207, -0.00744610932, -0.00491433265, -0.0163545813, 0.00868464075, 0.00481485203, -0.0101569509, -0.00102962228, 0.01473305, -0.0166828651, 0.00286006206, -0.00654083723, 0.00240120851, -0.00119873905, 0.0181949679, -0.0175284501, 0.00933623686, 0.0261036605, -0.0149519071, 0.00980379526, -0.00261882204, 0.00139769982, 0.00134049857, -0.0305006951, -0.00505857915, -0.0117386896, 0.0129722459, 0.0105349766, 0.0325300954, 0.00942577, -0.00387476222, 0.0143848686, -0.0220846534, -0.0084110694, -0.0100326, 0.0125942212, -0.0139471544, -0.00521774776, 0.000828174467, -0.00113594206, -0.016971359, 0.018632682, 0.0178467873, -0.00223582238, 0.0140366871, 0.0254073, 0.00405631401, -0.0108234696, 0.0164640099, 0.0074361614, 0.0288692173, 0.000873562414, 0.0234773792, 0.0176975653, 0.0134795969, 0.0178766306, 0.0229600798, 0.00683430443, 0.00272825034, -0.00410605408, -0.00220970879, -0.0198662393, 0.0239150915, 0.00864982232, -0.00332264602, -0.0184337217, 0.0408665538, -0.0271382574, 0.00399413891, -0.00343207433, -0.00126899709, 0.000500510854, 0.00776942074, -0.00505609205, 0.00520282565, 0.0118083255, -0.0180159044, 0.00419558678, 0.00126215781, 0.00231665024, -0.0144644529, 0.00765004428, 0.0172499046, -0.00165013142, -0.00612302, 0.0168619305, -0.0123654157, -0.00517298188, 0.0207118224, -0.00539183849, 0.000382066966, 0.00161904376, 0.013191103, -0.000798330351, -0.0357532613, -0.0142654916, -0.0124251042, 0.0224427823, 0.00470293686, 0.00765501801, 0.00502624828, -0.00638664281, 0.018125331, -0.0088686794, -0.0150613347, -0.00528241, 0.0137581415, -0.00252555916, 0.00522769568, -0.0141759599, -0.00654083723, 0.0316546671, 0.0125544285, 0.0127135972, 0.00692881085, -0.0214877706, 0.00436470332, 0.0183541365, -0.00149469322, -0.00413589831, -0.0146932574, 0.0120769227, -0.0249496885, -0.00168992358, 0.0147231016, 0.0159765556, 0.0136686089, -0.00995301548, 0.0351961702, 0.00701336935, -0.0169315673, -0.00437465124, -0.00627721427, 0.0105150798, -0.0168619305, -0.00374295074, -0.0201447848, -0.00689896708, 0.0177274104, 0.00544655276, 0.00488946261, 0.00558582554, 0.0106344568, -0.00422294391, -0.0162551, 0.00756051159, 0.00640653865, -0.00928152259, -0.00420056051, -0.00370067148, 0.0084110694, -0.000656570774, -0.00407372322, 0.00671990216, 0.00395683339, -0.00904774386, 0.0221244451, 0.0102962228, -0.000486210542, -0.0161854643, -0.00291477633, 0.0099928081, 0.00626726635, 0.00364347035, 0.01381783, -0.0254470911, 0.00386978826, -0.00830164086, -0.00415828126, 0.00868464075, 0.019159928, 0.0123554682, -0.00264617917, 0.0132408431, -0.00800817367, 0.00840609521, 0.0116392085, 0.0185332019, -0.0037479247, -0.016971359, 0.0214479771, -0.0102564311, 0.00301176962, 0.0101171583, 0.000331705029, 0.0192494616, 0.00559577346, 0.00908753648, -0.000545898802, 0.0336840674, -0.00783905666, 0.0140665313, 0.0259047, 0.00827179663, 0.00490935845, 0.0208510961, 0.00271084136, -0.0159666073, 0.00130195, 0.00240120851, -0.0132905841, -0.0174886566, 0.0186625253, -0.00473029399, -0.0115795201, 0.00770475809, -0.00120433478, 0.00383745716, 0.00366834039, 0.0129821943, 0.0130518302, 0.00208784523, 0.0134696485, 0.000835635525, -0.0156582184, -0.0244124942, -0.0127533898, 0.00774952443, 0.00526251411, -0.0113009755, -0.0158671271, -0.0424980335, -0.0171703193, -0.00413341122, -0.0207317192, -0.00181054359, -0.0124549484, 0.0178169422, 0.00415828126, -7.70973202e-05, -0.0234574825, -0.00174836838, -0.00499889115, 0.000879779924, 0.0102962228, 0.00439454755, 0.0251088571, 0.000979882083, 0.00659057777, -0.00642643496, -0.00223209197, 0.0140764788, 0.0163346846, 0.0138078816, -0.00289985421, 0.0290283859, -0.0405681133, -0.00526251411, -0.0314955, -0.0234176908, -0.0137581415, 0.0106543526, 0.0378025584, -0.0308787208, -0.0099132238, 0.0137581415, 0.00703823939, 0.0238753, -0.00954017229, 0.0217663161, 0.00142257, 0.00619763, 0.00843096524, -0.012325624, -0.00437962543, -0.00428760611, 0.0173991248, -0.00869458821, 0.00123480067, 0.000933872419, 0.00919199083, -0.0131214671, -0.0172300078, 0.0182745531, 0.00567038357, -0.0183640849, 0.0205327589, -0.00132308959, 0.0241538454, -0.0215872508, -0.00289488, 0.0148623744, -0.00848070532, -0.0168718789, 0.00988835376, -0.00978389941, -0.0118879098, -0.0120769227, -0.00361611322, 0.0159765556, 0.00685917493, 0.00877417251, 0.0173692815, 0.0125643769, 0.0209107827, -0.0134099601, 0.000503619609, -0.0298441257, 0.0174588133, 0.00828671828, -0.00895821117, 0.0186625253, 0.000214815518, 0.0058494485, -0.00798827782, 0.0163147878, -0.00591411069, -0.0131413629, -0.00268348423, -0.0270188805, 0.0117784813, -0.00089843251, 0.00442687841, -0.00583950058, 0.0227810163, -0.00713274581, -0.0126937013, -0.00566541, -0.0152006075, 0.0257455315, -0.00259892596, 0.0218061078, 0.016225256, -1.66901718e-05, -0.000839366, -0.00882391259, 0.0235370658, 0.0129324542, -0.00427765772, -0.0127036497, -0.00268099713, -0.0052674883, 0.0135392845, 0.0119674942, 0.00396926841, -0.00975405518, -0.00921188667, 0.023397794, -0.00539183849, -0.0257256366, 0.0132905841, 0.00794351101, -0.00617773412, -0.0085304454, -0.0134298559, -0.00229302351, -0.00280783465, 0.00300182169, 0.00838122517, 0.0107936254, -0.00068268436, 0.00700342143, 0.0265811682, 0.00148474518, 0.00761025166, 0.00763014797, -0.00325300964, -0.00900795218, 0.0157079585, -0.00574499415, -0.00555100711, 0.00210898486, 0.019209668, -0.0043522683, -0.0208312, 0.00631700642, 0.00637669489, 0.037384741, 0.0133900642, -0.00945561379, 0.00901292544, 0.00161282625, -0.00853542, 0.0226218477, -0.0241936371, 0.0234574825, 0.00943074375, -0.00126651011, -0.00460843043, -0.0110025341, -0.0154990489, 0.00889852364, -0.015717905, 0.0104056513, -0.0272377376, -0.000595328107, -0.0172300078, 0.010037574, 0.00808775797, 0.0289686974, 0.00779429078, -0.00265861419, -0.00265612709, -0.0212490167, -0.0266607516, 0.00496158563, 0.0330672897, 0.00833645929, -0.0116491569, -0.030401215, 0.0176478252, -0.00127459283, 0.0317541473, -0.00237882556, 0.00497899484, -1.56992537e-05, -0.0226218477, 0.0099977823, 0.00879406929, -0.00929644518, 0.00838122517, 0.0427367873, 0.0175383966, -0.00700342143, -0.000142070465, 0.00817729067, 0.000408180582, -0.0141958557, 0.0216071457, 0.00641648704, 0.0113606639, -0.0199955646, 0.0171106309, -0.0130418828, 0.000618332939, -0.0106742484, 0.0131115187, -0.00277550356, 0.00610312354, 0.0168320872, -0.00125283154, -0.00293964637, -0.00697855139, -0.0147927376, -0.0228606, -0.00632198062, -0.00326295756, 0.00772962859, 0.00298192538, -0.0188117474, 0.0078639267, -0.00216369913, -0.0110323783, -0.0250491686, 0.00808775797, 0.0221841335, 0.00235644239, -0.00676466851, 0.0365491062, 0.00311125, 0.00946058799, 0.000828174467, -0.0021748906, -0.00411600247, -0.0170012023, -0.00658560358, -0.0045785862, -0.00347684068, -0.00573007204, 0.000769729726, 0.0115596242, 0.00704321358, -0.011868014, 0.0208709911, -0.00313612, 0.00888857525, -0.00542168273, 0.0127235455, -0.00296202931, -0.0115695726, -0.0101271067, 0.0120470785, 0.018990811, -0.00801314786, 0.00571017573, -0.000153572895, 0.00725709647, -0.0139272586, -0.0219453797, -0.010181821, 0.00112910278, 0.0224626772, -0.0224029906, 0.0218459, -0.00123169192, -0.0236166511, 0.00261136098, 8.86774651e-05, 0.0097391326, -0.00664031785, 0.027874412, 0.00444677472, -0.00941084698, -0.0128827142, 0.0138974143, -0.0186625253, -0.0225621592, -0.0276754517, -0.00141759589, -0.00276306854, 0.0354349241, 0.00940587372, 0.018125331, 0.0216071457, 0.00511826761, -0.0165535416, 0.00797335524, -0.00255913381, -0.00598872127, 0.00160163466, 0.00664031785, -0.0341814719, 0.0247905198, 0.0024335396, -0.0198761877, -0.028670257, 0.000821335183, -0.00926162675, 0.0121067669, -0.0176975653, 0.0354349241, 0.00881396513, 0.0132408431, -0.0139272586, 0.00730683655, 0.0150115946, -0.018752059, 0.00796838105, 0.0113606639, -0.0198960826, -0.0124251042, -0.010783677, 0.00583452638, -0.012783234, -0.0132010514, -0.0292870346, -0.0257256366, 0.0161357243, -0.0314557068, -0.0048670792, -0.000980503857, 0.0070581357, -0.00270835427, -0.0127434414, 0.0152105559, -0.013937206, 0.00112723745, 0.00929147098, 0.00651099347, -0.0166430734, -0.00883386098, 0.00358378212, 0.0072023822, 0.00922183506, 0.00456366409, 0.000948794477, -0.0044940277, 0.00394937256, -0.00376782077, -0.0247706231, -0.000494293345, 0.0186525788, -0.0142953359, -0.011121911, -0.00564054, 0.00921686087, 0.0151707632, 0.0180855393, -0.0070581357, -0.0154294129, 0.00980876945, 0.0148623744, 0.0011415378, -0.0280733742, 0.000163520934, -0.0122161955, 0.0094456654, -0.00636177277, -0.00702829147, -0.0161854643, 0.011121911, 0.00862495229, -0.0124648958, -0.00648612296, 0.00597379915, 0.00068019738, -0.00541670853, -0.00289488, -0.0191698764, -0.000559577369, 0.00516303349, -0.0109627424, 0.0212092251, -0.0125643769, 0.0135890245, -0.0160362441, 0.00486210547, 0.00208660169, 0.00298192538, -0.0219652764, 0.00169738464, 0.0141461156, -0.0104752881, 0.0143152317, -0.0235370658, -0.00460096914, -0.00187147537, 0.0186923705, -0.0106543526, 0.0134696485, -0.00283021783, -0.0120868711, 0.00471039768, -0.00726207066, 0.00347186648, -0.0220249649, -0.00441444339, -0.0112611828, 0.0050983713, 0.0139073627, -0.00779429078, -0.0215474591, 0.00961478241, -0.019159928, 0.00485215755, 0.0141162714, 0.019498162, 0.0189012792, -0.00709295366, -0.00331767183, -0.00867966656, -0.00900795218, 0.0192992017, -0.00147604069, -0.00291975029, 0.017140476, 0.0239349883, 0.000771595, 0.00328036677, -0.024651248, 0.00966452248, -0.0244721826, -0.0145241413, -0.0136785572, 0.0100524966, -0.00618768204, -0.00553111127, 0.0207317192, -0.00578976, 0.0185729936, 0.0216071457, 0.0212888084, -0.00120433478, -0.00765501801, 0.0143152317, -0.000713771966, 0.00494666351, 0.00867469236, -0.00845583528, -0.0111815985, 0.0164043214, -0.00823200494, 0.0120072868, -0.0136984531, -0.0066850842, 0.000231913727, -0.00802309532, -0.00892339367, 0.0203934852, 0.00235519884, -0.00350917177, -0.0424184501, 0.00398419052, -0.00673482427, -0.0174687617, -0.00873935502, 0.00118319516, -0.00196598168, 0.00698849931, 0.0197767075, 0.00278047775, 0.0108135212, 0.0200055111, -0.006968603, 0.00259643886, -0.000133909969, -0.00338482112, 0.00893334113, 0.016225256, -0.00552116334, 0.00282524386, -0.0170012023, -0.0151210232, -0.0149220629, 0.0101967426, -0.0119774425, -0.0211097449, -0.0172200594, 0.0102464827, 0.00381507399, 0.000939468213, 0.00136163819, 0.0157974903, 0.000695741153, -0.018125331, 0.0108433655, -0.000539059518, 0.0147429975, 0.000781543, 0.000257094711, -0.0172698, 0.00773957651, 0.00387973618, -0.0335249, -0.00573504623, -0.0019311636, 0.0203636419, 0.0145738814, 0.0105946641, -0.0099977823, 0.00390958041, -0.0114899883, -0.00427517109, 0.0201845765, 0.0108234696, 0.0409063473, 0.00385237904, 0.0024770624, -0.00962970406, -0.00410605408, -0.00608820142, 0.0135492329, 0.00729191443, -0.00606830558, -0.00560572138, -0.00185530982, -0.00530230626, 0.0018254657, 0.00756051159, -0.00191002397, -0.0272576343, -0.0137780374, -0.000916463323, -0.0088736536, -0.0181850195, -0.00177323841, 0.00998783391, -0.00250815, -0.00988835376, 0.0074311872, -0.00214629, 0.00460345624, 0.0109627424, 0.00364844431, -0.011241287, 0.00706808362, 0.0115994168, -0.0140963746, 0.00718746, -0.0181949679, 0.00342710037, -0.00609814934, 0.0364297293, -0.0121067669, -0.00369072356, -0.00511826761, -0.00134422909, 0.0120371301, -0.0181651246, 0.00706808362, -0.00717751216, 0.0161854643, -0.00904774386, 0.0135691287, -0.0109229498, 0.0116690528, 0.0125146369, -0.0106245084, 0.0130319344, -0.00561069557, -0.001128481, -0.0136089213, 0.0140466345, -0.00654083723, 0.0129424026, 0.00686912285, 0.0138078816, 0.000805791351, -0.0148325302, 0.0358129516, -0.00647120131, 0.00160039123, -0.0194086302, -0.0100972624, 0.0047228327, -0.00815242, 0.00132806355, -0.0108831581, -0.00568033196, 0.00859510805, -0.0166430734, -0.00631700642, -0.00553111127, -0.00188142341, 0.0092467051, 0.00407869695, -0.00246089674, 0.0222239252, 0.00859013386, -0.0201746281, -0.00710787578, -0.000673358096, -0.0272775311, 0.00425776187, 0.00347932754, 0.00550126703, -0.0172499046, -0.00975405518, -0.0253874026, 0.00176577736, 0.00275560748, -0.0199955646, 0.0288095288, 0.00759035582, 0.00989830121, 0.00811262801, -0.0245119743, 0.00277799065, 0.00725212228, -0.00627224, 0.00349922362, -0.0152801918, 0.00758538162, 0.0196374338, 0.00435972912, 0.00271084136, -0.0176378787, 0.00468801474, 0.0106941452, -0.0239946768, 0.0032579836, 0.00195230322, 0.000580095162, -0.0384790264, -0.00253426353, 0.0323112383, -0.00632198062, 0.0176179819, 0.00037553857, -0.00200204342, -0.00364347035, -0.00530728046, -0.024651248, 0.00551618915, -0.013071727, -0.0287498403, 8.69676442e-05, -0.0203238484, 0.0152304517, -0.00237012096, 0.00401403476, -0.012325624, 0.0170608908, 0.00769481, -0.00426771, 0.0218260027, -0.00280286069, 0.0138874659, -0.00926660094, 0.00947551, 0.0147231016, -0.00130319351, 0.000589110598, 0.022820808, -0.00280037383, -0.00424532685, -0.000994182425, 0.0343207456, 0.0145340888, -0.0140565829, -0.000270773249, -0.00988338, 0.0024745753, -0.000172691784, -0.00278793857, 0.00154567696, 0.0021040109, -0.006391617, 0.00102651352, 0.0120271826, -0.0144942971, 0.0174090732, -0.0132905841, 0.031893421, 0.0105548725, -0.00799822528, -0.00690394081, 0.0163346846, -0.0162650477, 0.0151508674, -0.0107737295, -0.00293218531, -0.00757045951, 0.0117187928, 0.0142157516, -0.00951530226, 0.00880401675, -0.0132010514, -0.0169017222, 0.00512821553, -0.00462086545, 0.00203810493, 0.0152404, -0.0161755159, -0.00111418066, -0.0109229498, 0.0223234054, 0.00326793175, 0.00457112538, 0.00888857525, 0.0107239885, -0.0294859949, -0.00626229215, -0.000169427585, 0.00680446066, 0.0236365478, 0.00455122907, -0.0118481172, -0.0240941569, -0.0102265868, 0.00330523681, 0.0130916229, -0.00141883944, 0.00882391259, 0.00440200837, 0.000734911591, 0.00253302022, -0.0191300847, -0.0215076655, -0.0160163473, -0.00960483402, 0.00193489413, -0.00113345496, -0.0149021661, -0.0299635, -0.0201547332, 0.0172300078, -0.00428760611, 0.00945064, 0.0191400331, -0.0123057272, -0.00649109716, -0.00665026577, 0.00836630352, 0.0216071457, 0.0160163473, -0.00306897075, 0.0151110757, -0.000205489239, 0.0341018885, -0.0199458227, 0.0209704712, 0.00251436746, -0.00439952128, -0.00732175866, -0.0120669743, 0.00452138484, -0.0121366112, 0.00425030058, -0.0151807116, 0.0108135212, 0.00700342143, 0.0318735242, 0.00735657662, 0.0138675701, 0.0273173228, 0.00132557657, -0.000749211875, -0.00133428106, 0.018582942, 0.0124748442, -0.00134547264, -0.0165336449, -0.0283917114, -0.00639659073, 0.00169614109, -0.0132607399, 3.92287038e-05, 0.00123355712, -0.0190604478, 0.0027357114, -0.00291726319, 0.000857396866, -0.00631700642, -0.0172001645, -0.000948794477, 0.0108632613, -0.00669503212, 0.0175781902, -0.0181352794, -0.012325624, -0.0192196164, 0.00371061964, -0.00124226173, -0.00470293686, -0.0172896963, -0.00666518789, 0.0348579399, -0.00814247224, 0.0211495366, 0.0262827259, 0.00804299209, -0.00766994, 0.025466986, -0.00507101417, 0.00312617212, 0.0250491686, -0.00928152259, -0.0167624503, -0.0105250282, 0.018970916, -0.00745108305, -0.00442190468, -0.00139396929, -0.0125345327, 0.0120868711, 0.0108632613, 0.00913727656, -0.0132607399, -0.00378025579, -0.0126837529, 0.0114004556, -0.00138650835, 0.018175073, -0.0075754337, 0.0118381698, -0.0100226523, -0.00493671559, -0.0163247362, 0.00301674358, 0.00148598873, 0.00640156493, -0.00664529204, 0.0109826382, 0.00505360495, 0.0110622225, -0.0211296398, 0.00177075143, -0.0151608158, 0.00231167627, 0.00194981613, -0.00410854118, 0.0263424143, 0.0105847167, 0.0100425482, -0.00884380937, 0.0177075136, 0.00772962859, -0.0143450759, 0.00625731843, 0.0208908878, 0.00862992648, 0.00634685066, 0.01336022, 0.01107217, 0.0197966024, 0.0615186915, 0.0122261429, 0.00690394081, -0.0177075136, -0.0257455315, 0.0117983771, 0.0170509443, 0.00882391259, -0.0122360913, -0.0609218068, -0.00896816, 0.000703202211, -0.00396678178, -0.000711285, 0.0199259277, 0.00700342143, -0.00718248589, 0.00146360567, 0.018413825, 0.0107239885, 0.00512324134, 0.0137680899, 0.0187620074, 0.018175073, 0.00642643496, 0.0103559112, 0.0186028387, 0.00065719249, -0.000944442232, -0.00541670853, 0.00654581143, -0.0147032058, 0.00292472425, -0.00801314786, 0.00523267, 0.00804796536, -0.00381756108, -0.0124251042, 0.0104454439, 0.0214877706, 0.00851055, 0.00460594334, -0.0172996446, -0.0178567357, 0.00843593944, -0.00485215755, -0.00929644518, -0.00145614462, -0.00964462664, 0.000778434274, -0.0339427181, -0.0133104799, 0.00439703465, 0.00595390284, -0.00324554858, -0.0226815343, -0.0202940051, 0.0116093643, -0.00681440858, 0.0271581542, 0.0166729186, -0.00491930684, 0.00530728046]
15 May, 2024
Convert string into date using JavaScript 15 May, 2024 In this article, we will convert a string into a date using JavaScript. A string must follow the pattern so that it can be converted into a date. A string can be converted into a date in JavaScript through the following ways: Table of Content Using JavaScript Date() constructorUsing JavaScript toDateString() methodUsing Date.parse() methodUsing Intl.DateTimeFormat() and new Date():Method 1: Using JavaScript Date() constructorCreating date object using date string: The date() constructor creates a date in human-understandable date form. Example: In this example, we will convert a string into a date by creating a date object. javascript // It returns the Day,Month,Date,Year and time // Using Date() constructor let d = new Date("May 1,2019 11:20:00"); // Display output console.log(d); Output2019-05-01T11:20:00.000Z Getting the string in DD-MM-YY format using suitable methods: We use certain methods such as: getDate-It Returns Day of the month(from 1-31)getMonth-It returns month number(from 0-11)getFullYear-It returns full year(in four digits )Example: This example uses the approach to convert a string into a date. JavaScript // Using Date() constructor let d = new Date("May 1, 2019 "); // Display output console.log(formatDate(d)); // Funciton to extract day, month, and year function formatDate(date) { let day = date.getDate(); if (day < 10) { day = "0" + day; } let month = date.getMonth() + 1; if (month < 10) { month = "0" + month; } let year = date.getFullYear(); return day + "/" + month + "/" + year; } Output01/05/2019 Method 2: Using JavaScript toDateString() method This method returns the date portion of the Date object in human-readable form. Example: This example shows the above-explained approach. javascript // Date object let date = new Date(2019, 5, 3); //Display output console.log(date.toDateString()); OutputMon Jun 03 2019 Method 3: Using Date.parse() methodThe JavaScript Date parse() Method is used to know the exact number of milliseconds that have passed since midnight, January 1, 1970, till the date we provide. Syntax: Date.parse(datestring);Example: In this example, we will use date.parse() method to get time out of the string and convert it to get date output. JavaScript // Input string let d = "May 1, 2019 " // Using Date.parse method let parse = Date.parse(d); // Converting to date object let date = new Date(parse); // Display output console.log(date); Output2019-05-01T00:00:00.000Z Method 4: Using Intl.DateTimeFormat() and new Date():Using Intl.DateTimeFormat() and new Date(), the approach formats the input string using specified options for year, month, and day. It then creates a new Date object from the formatted string, effectively converting the string into a date. Example: This example formats “May 1, 2019” into a date string, then converts it back to a Date object using Intl.DateTimeFormat() and new Date(). JavaScript const dateString = "May 1, 2019"; const options = { year: 'numeric', month: 'long', day: 'numeric' }; // Format the input string const formattedDate = new Intl.DateTimeFormat('en-US', options).format( new Date(dateString)); // Create a new Date object from the formatted string const date = new Date(formattedDate); console.log(date); Output2019-05-01T00:00:00.000Z Supported BrowsersGoogle ChromeFirefoxEdgeOperaApple Safari 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
https://www.geeksforgeeks.org/convert-string-into-date-using-javascript?ref=asr10
PHP
Convert string into date using JavaScript
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, PHP Tutorial, PHP
GeeksforGeeks
[0.0203785934, -0.00336459652, 0.00102193141, 0.0418050438, 0.00221031881, 0.0105658695, -0.0236858856, 0.0282920804, 4.90329221e-05, -0.0148118651, 0.000248149212, -0.0145499008, -0.0194726363, -0.00146535947, -0.0100528579, -0.0123777855, -0.0267639589, -0.00788619928, -0.0053511546, -0.00940340571, -0.0134802163, 0.0235330742, -0.0489435531, 0.0229218248, -0.0333130509, 0.021251807, -0.00973631814, 0.00987821538, -0.00143397844, -0.00350649352, 0.0245809276, 0.0137094343, -0.0129672037, -0.0164600536, -0.0134365559, -0.0258470867, 0.0103475666, 0.0411719643, -0.0585052297, -0.000585666276, -0.00427601207, 0.014244277, -0.017289605, 0.000471057137, 0.00247364701, 0.0371551849, -0.00373298302, -0.0260217283, 0.00910869706, -0.0115482341, -0.0192543324, 0.0244936068, 0.005877811, 0.034906663, 0.0207715388, 0.0168311689, 0.0199092422, -0.0103530241, 0.0288596693, -0.00262100156, 0.050864622, -0.0570207685, 0.00196199911, -0.0036729495, 0.00192379602, 0.0340989418, -0.00677285343, 0.0232274495, 0.0197891761, 0.00634716265, 0.0105494969, -0.013905907, 0.0332912207, -0.0119739249, -0.0116028097, -0.0119084334, -0.0321342163, 0.0211863145, -0.059116479, 0.0320032351, -0.0143206827, -0.0182283092, -0.0246245898, 0.00281065237, -0.0146808829, -0.030060336, -0.0018678559, -0.0424162894, 0.0315011367, 0.0165146291, 0.0447957963, 0.0305187721, -0.0359326899, -0.00215437869, -0.0188504718, 0.0207060482, 0.00801718142, 0.00625438383, -0.0503843538, 0.00710576586, 0.00604153797, 0.0259344075, 0.0225943699, -0.0381593816, -0.0122904638, -0.0561038963, 0.0492928401, 0.0192325022, 0.0239041895, -0.0278773047, 0.0267857891, -0.023838697, 0.00151038449, 0.0289251599, -0.0340334512, 0.0235767346, -0.0114936577, -0.0499477461, 0.0576320179, 0.0370678641, 0.00738410233, 0.0331165791, 0.0257597659, 0.0182501394, -0.0314574763, 0.0445338301, -0.0355397426, -0.0616487935, 0.00598696247, -0.0042732833, -0.0368277319, 0.0208916068, -0.0293399356, 0.0209898427, 0.0418050438, 0.0313701555, -0.00545484852, 0.00847016, 0.000560425, 0.0272005647, -0.011526403, -0.0208479464, -0.0296019, 0.012999949, 0.0213282127, 0.0170931332, 0.00883036, 0.0417832136, 0.0349503271, -0.0330292583, -0.0338806398, -0.0457999893, 0.00338369794, 0.00872666575, 0.0322870277, -0.0276808329, 0.0110461367, -0.00976906344, -0.0299293548, -0.00439335, -0.0110297641, -0.0467605218, -0.0270914137, -0.00520107104, -0.0365439393, 0.0332912207, 0.014353428, 0.030169487, 0.0201493762, 0.0154449437, -0.0220486131, -0.00560493208, 0.00847016, -0.023729546, -0.00540573057, -0.0086066, 0.0236422252, -0.00190333009, -0.00260462868, 0.00998736639, -0.0322651975, -0.0103530241, 0.019887412, -0.0013432462, 0.00539208623, -0.0251266863, -0.00420779223, -0.000232970327, 0.00445065415, -0.0386833102, -0.0271350741, 0.0225070491, 0.0135238767, -0.0148991859, -0.00946343876, 0.00706756255, -0.0254104808, 0.0107950876, -0.0126397489, -0.0108605791, -0.0166674405, -0.0480703413, -0.0366312601, -0.0153467078, 0.00203431188, -0.0348848328, -0.0086338874, -0.0485942699, 0.0410628133, 0.0122249732, 0.00764060812, 0.0201493762, 0.00128730608, -0.00469078775, 0.00597059, -0.0277899839, -0.017627975, -0.0351031385, -0.0029498206, -0.0503843538, -0.0419578552, 0.0184356961, -0.0290561412, -0.00972540304, -0.0284230635, -0.02824842, -0.0226380304, 0.0317849293, 0.0230746362, 0.0115700644, -0.00656546559, 0.00616160501, -0.00202476117, -0.0318504199, 0.0208697766, -0.0124105308, 0.0516068526, -0.0144844102, -0.0231401287, 0.0188613869, 0.026218202, -0.063176915, 0.0122140581, -0.0353651, -0.00973086059, -8.38676133e-05, 0.00450795889, 0.0142115317, 0.005255647, 0.0366312601, -0.00189787254, -0.00417504646, -0.0137421796, 0.0314574763, -0.00200156658, -0.010451261, -0.0152484709, 0.0247337408, 0.0224197283, 0.0265238266, 0.00442882394, 0.0125633432, -0.00249820598, 0.0184684414, 0.0212954674, -0.0120394155, -0.0421324968, -0.0244936068, -0.0236640554, -0.00658183824, 0.0382685326, -0.0305842627, 0.0253886506, 0.0211644843, -0.0110243065, -0.0136876041, -0.0270259231, -0.00230991957, 0.0339897908, -0.00111129915, 0.00713305362, 0.0222450849, 0.0477647185, 0.0345355496, -0.0120066702, -0.0253668204, 0.00184466119, -0.0126070036, 0.0184793565, -0.0151938954, 0.00339461304, -0.0163618177, 0.00985638425, 0.0105058365, 0.0232711099, -0.0121922279, -0.00767881144, 0.00778796291, -0.00395947229, 0.0448394567, -0.0406916961, -0.0551870205, -0.0288160089, 0.0445556603, -0.00559947453, 0.00490636192, 0.0508209616, -0.0230964683, -0.0147791198, -0.0346010402, 0.0605572797, -0.00129412801, -0.0447521359, 0.0131418463, -0.0315229669, 0.0277681537, 0.0156086711, 0.00352832372, -0.020236697, -0.0123122949, -0.0224197283, -0.0327018052, -0.01232321, 0.0206733029, 0.050078731, -0.0160016175, -0.00508100446, -0.0226380304, -0.00407408131, 0.00657092314, -0.0217429884, -0.027353378, -0.00133437768, 0.0716470778, -0.00200565974, -0.00451068766, -0.0646613762, -0.0253886506, 0.0209789276, 0.0102329571, 0.00996553618, 0.0471098088, -0.0307152458, -0.0113626765, 0.00602516532, -0.009605336, -0.0216338374, 0.00699115638, 0.00242862199, -0.00710576586, 0.000636831042, -0.0125305979, 0.0386614762, 0.00733498391, 0.0260217283, -0.0489872135, 0.00871575065, -0.0409099981, -0.0339243, 0.0133492341, -0.00608519884, 0.00904320553, 0.0267202985, -0.00904320553, 0.0266111474, -0.0899408758, -0.00151447777, 0.014244277, -0.0181191564, -0.0331602395, 0.0102274995, 0.0143861743, 0.0134256398, -0.0180973262, -0.0340771116, -0.0435732976, -0.0087102931, -0.00262373034, 0.00819728151, 0.00714942627, -0.0343827382, 0.0425254442, -0.0184575263, -0.011864773, 0.00250639231, -0.0052229017, 0.00550669571, 0.0161544289, 0.0200948, 0.00647814432, -0.00389398145, 0.0267421287, 0.0134038096, -0.0329419374, -0.0296237301, -0.0111771189, 0.0211535692, -0.0111771189, 0.0293181054, -0.0042650965, -0.0147463745, -0.0254541412, -0.00190878764, -0.0134256398, 0.00324998726, 0.0095071, -0.0224197283, -0.0566278212, 0.0423508, 0.0118756881, -0.00688746246, 0.0144298347, 0.037198849, -0.041936025, 0.0137094343, -0.0277244933, -0.0255632922, 0.0530039929, 0.00734044146, -0.0180318356, 0.0154012833, 0.0398184843, -0.0177480411, 0.00696932618, -0.00651634717, 0.00315720844, 0.0212845523, 5.86263184e-07, -0.0266111474, 0.0598150492, -0.01198484, -0.0249520428, 0.0174642485, 0.0380720608, 0.00455980608, -0.0264146738, 0.0239260197, -0.0370023735, -0.0107405121, -0.0296237301, -0.0345355496, 0.00290616, 0.00298529491, 0.000742230506, -0.0537462234, 0.0447521359, -0.0534842573, 0.0320468955, 0.00255005294, 0.0049090907, -0.0272878874, -0.0288596693, -0.0110024763, 0.0351249687, 0.00787528418, 0.0269167721, -0.0172568597, 0.0165364593, 0.0202257819, 0.00921239052, 0.041826874, 0.0187958963, -0.0103748543, 0.0117010456, 0.00882490259, -0.0195272118, 0.000244056035, -0.0293617658, -0.00359654357, 0.00821365416, -0.0272878874, -0.00416686, -0.0409973226, 0.0306934156, 0.0333567113, -0.00993824843, -0.00863934495, -0.0158597194, 0.0279646255, -0.0235985648, -0.0158706345, 0.0121813128, 0.0135784522, 0.017518824, -0.0196145326, -0.0294272564, 0.0329201072, -0.0270477533, 0.014353428, 0.0162526648, 0.0124869365, 0.0141132949, -0.031086361, -0.00127366208, -0.00929425377, -0.013447471, -0.0302568097, -0.00625984138, -0.00922330562, -0.00312719191, -0.0167220179, 0.0324180089, 0.00330729177, 0.0187522359, -0.00915781502, -0.023052806, -0.034906663, 0.0410191528, -0.00740047498, 0.00574682886, 0.00789165683, -0.0341426022, -0.00945252366, 0.0496857837, -0.0290124808, -0.0139168222, 0.00630895933, 0.0418923646, -0.0304969419, 0.0164054781, 0.00861205719, -0.00823548436, -0.0124978526, 0.00800626632, -0.0471098088, 0.0120503306, -0.0135784522, -0.0316757783, 0.00326636015, 0.016503714, 0.0186321698, 0.00462802546, 0.0200074781, 0.0290998016, -0.0133710643, -0.0150738284, -0.0287068561, -0.00775521761, -0.000769518432, 0.0242316443, -0.0147572896, 0.0265238266, -0.0289033297, 0.0072804084, 0.00950164255, 0.00520652859, -0.00716034137, -0.034906663, 0.00188286416, 0.00591601385, -0.0276590027, 0.00964353886, -0.00602516532, 0.0164054781, 0.00233038561, -0.0103257364, -0.0330292583, -0.0203240179, -0.0159907024, 0.0317631, -0.00628167158, 0.00576320151, 0.0365876, 0.00505098794, 0.0185994245, -0.0313701555, -0.0325489901, 0.043616958, -0.0294490866, 0.0251485165, 0.013905907, -0.0303659607, -0.00142033456, -0.00335641, -0.00501551339, -0.00493365, 0.0290779714, 0.00890130829, 0.0347101912, -0.034251757, -0.00720946, 0.00673465058, -0.00770609919, 0.0208261143, -0.028139269, -0.000196302237, -0.0158924647, -0.0487252511, -0.0427874066, 0.000629326911, 0.0273752082, -0.00436333288, -0.0155322654, 0.0233584307, -0.00417231768, 0.0173878409, -0.00221304758, -0.0124105308, 0.00345737534, -0.000136524715, 0.0353214405, 0.0260653887, 0.0335531868, 0.0619107559, 0.0105986148, 0.00252549397, 0.0124214459, -0.024864722, -0.0101892967, -0.0104294308, -0.0224197283, -0.0242753047, -0.0199747328, -0.0137640098, -0.0384868346, -0.00911961216, -0.00835009292, 0.0368713923, -0.0182610545, -0.0170494709, -0.0163399875, 0.00364839053, -5.49595097e-05, 0.0225070491, -0.00111607462, 0.0265019964, 0.0182501394, -8.18210247e-05, -0.00683288695, -0.064312093, -0.00815907773, -0.0250611957, -0.0147136282, 0.021022588, 0.0181082413, -0.0036402042, -0.0366967507, -0.0034137147, -0.0148991859, -0.00276289857, -0.0315229669, 0.0113299303, 0.0166456103, 0.081470713, -0.00514922431, 0.0276808329, -0.0196909383, 0.0148773557, 0.0181955621, -0.0191233512, -0.01232321, -0.0366530903, 0.017180454, 0.0243189652, -0.0393818766, 0.0158706345, 0.0100692306, -0.0231401287, 0.00673465058, 0.0280956086, 0.00482722698, -0.0222887453, 0.0127816461, -0.00122727267, 0.0144953253, 0.000944160856, 0.033575017, 0.0227471832, 0.00658729579, -0.00314902212, -0.00111471012, -0.018763151, -0.0308243968, -0.00191697408, -0.00115768856, -0.0353651, -0.0302349795, 0.0540081859, 0.0272223949, 0.0063744504, 0.0142006166, -0.0112098642, 0.00782070868, 0.0251703467, 0.0122795487, 0.00433331635, -0.00728586596, 0.00177371269, -0.00987821538, -0.00922876317, 0.0519124754, 0.0241443217, 0.0445993207, 0.0390107632, -0.00624892628, 0.0148991859, 0.00704573235, -0.00191288081, 0.0169184897, -0.000182317192, 0.00483268453, -0.000681173871, -0.021131739, -0.00187194906, -0.032789126, 0.0256287828, 0.00715488382, 0.0174969938, -0.0373516604, -0.0084428722, 0.0324616693, 0.027353378, -0.00978543609, 0.0231182985, 0.00333185098, 0.0210116729, 0.0288596693, 0.0282047596, 0.013676689, 0.0208806917, 0.00116519281, -0.0436387882, -0.00468805898, -0.00899408758, -0.00563767739, -0.0131855067, 0.0301039964, -0.00468533, -0.0296892207, -0.0143752592, -0.0231619589, -0.00831189, 0.038203042, -0.00611248659, -0.032679975, -0.00273561059, -0.0148664406, 0.0358672, -0.0206405576, 0.0143752592, -0.0398839749, 0.00240815594, -0.0247119106, 0.000927788147, 0.000996007817, -0.0109479, 0.0320905559, 0.00675102323, 0.0225507095, -0.0206187274, -0.00599787757, 0.0191560965, 0.0293181054, -0.012203143, 0.0288596693, -0.00123409473, -0.0111989491, -0.00399767561, 0.0210007578, 0.0190360304, 0.0265456568, -0.0288815, -0.00397311617, 0.0120066702, 0.00437424844, -0.0311518516, -0.0316976085, 0.00145444437, 0.00574682886, 0.0474154316, 0.00382030406, -0.01446258, -0.00205477793, 0.0322651975, 0.0393382162, 0.0225725397, 0.0203567632, -0.0275935102, -0.0132619133, 0.0486379303, 0.00228672498, -0.025541462, 0.0196909383, -0.0074823387, -0.00340007059, 0.00121226441, 0.0130217792, -0.00489271805, 0.023511244, -0.00561038963, -0.00508373324, -0.0131855067, -0.0157505684, 0.0270259231, -0.0157723986, -0.048114, -0.0144844102, 0.00581777748, 0.00234402949, -0.0375044718, 0.0187304057, 0.0121922279, 0.0219722074, -0.0164163932, 0.0173223503, -0.0458873101, 0.00502097094, -0.00484905764, 0.00203294749, 0.0102056693, -0.000602721178, 0.0137094343, -0.0422416478, 3.94608433e-05, 0.0194180608, -0.00766243879, 0.0193416551, -0.000141555909, -0.00563767739, 0.0256069526, 0.0190032851, -0.0225070491, -0.00790257193, 0.0105222091, -0.0198110063, 0.0330510885, 0.0356052332, -0.015368538, 0.0237077158, 0.0168857444, -0.00159088382, -0.0110952547, -0.0161435138, 0.0280956086, 0.017868109, 0.0189159624, -0.0208479464, 0.00900500268, 0.0150847435, 0.0386614762, 0.0128471367, 0.0360418409, 0.0152812162, 0.0138840768, -0.0123668704, -0.00454616174, -0.00805538427, -0.00999282394, -0.00809904467, -0.0268076193, 0.0276808329, 0.00783708133, 0.0114063369, 0.00612340169, 0.0114063369, 0.0155213503, -0.00586689543, -0.0105931573, 0.00336186774, -0.0154449437, 0.0187085755, 0.0175952297, 0.0185448471, 0.000732679735, 0.00703481724, -0.0253449883, -0.00820273906, 0.00197018543, -0.0156305023, -0.00150629133, 0.00564313494, 0.0202803575, 0.016394563, 0.0172241144, -0.0063417051, -0.00508100446, -0.0249520428, 0.0132291671, 0.0359108597, 0.00680559874, 0.0419796854, -0.021808479, 0.00322815706, -0.0250393655, 0.015030168, -0.0021161756, -0.038770631, -0.0211754, -0.0137094343, -0.0171149634, 0.0101183485, 0.00256779022, 0.00321451295, -0.0284667239, 0.0207169633, 0.0268731117, 0.015150235, -0.0254759714, 0.00514103798, 0.0096271662, 0.022146849, -0.0144734951, 0.0395783521, 0.0075259991, 0.0226598606, -0.016056193, -0.00253640907, -0.0223760679, 0.00282702502, 0.00813724753, 0.0246027596, 0.0245372672, -0.0411064737, 0.0275280196, 0.0147354584, -0.0370023735, -0.0160780232, 0.00799535122, 0.00299348123, -0.00732406881, -0.0268076193, 0.0142551921, -0.0339897908, 0.0241443217, -0.00175324676, -0.0187085755, -0.04315852, -0.0129890339, 0.0205641519, 0.000831598358, 0.0168202538, 0.0272878874, 0.012890798, -0.00705664745, -0.0105003789, 0.0294054262, -0.00127980195, 0.0406480357, -0.0105767846, -0.0150956586, 0.00339734182, 0.0309990402, -0.0029389055, 0.00698569883, -0.0295582395, -0.0221577641, -0.0359108597, 0.00371388136, 0.0102711609, 0.00359381479, 0.00535934092, 0.0351686291, 0.0172132, 0.00112494314, 0.0153903682, -0.0225943699, -0.00625438383, 0.0137203494, -0.0111989491, 0.0191342663, -0.00152948603, 0.0267857891, -0.00272196671, 0.0143206827, 0.0198110063, 0.00744413538, -0.013109101, -0.00110106624, 0.0231837891, -0.0230746362, 0.0295364093, -0.0184138659, 0.0294272564, -0.0209025219, -0.00947435386, 0.0140478043, -0.00119589164, -0.0015335792, -0.0153903682, 0.00572499866, -0.0153139625, -0.0347320214, -0.0168093387, 0.0110352216, 0.042372629, -0.024057, 0.026218202, -0.0245590974, 0.0109806452, 0.0300821662, 0.00514103798, -0.0029607357, -0.00967082754, -0.0229873154, -0.000731315347, -0.0145717319, 0.0135020465, 0.0361728221, -0.021470109, 0.026436504, -0.0323306881, 0.00382030406, -0.00343827368, -0.00982363895, 0.0477210581, 0.0436387882, 0.0389016122, 0.0131418463, -0.00110720599, -0.000825458555, -0.0400149561, -0.0141023798, 0.0107623423, 0.0120503306, -0.000839102489, 0.0564531796, -0.0100146541, 0.0356925577, -0.0032936479, 0.00166046794, 0.0086448025, 0.0086884629, 0.0410409831, -0.0216010921, -0.00257188338, -0.0103257364, 0.00687109, -0.00407135254, -0.00346556166, -0.0273097176, 0.00276699173, -0.016732933, 0.00174778909, -0.00018248774, 0.0166237801, 0.00685471715, 0.0111334575, -0.0315447971, 0.0116792154, -0.0104894638, -0.00373298302, -0.0278118141, 0.00575228641, -0.000806357071, -0.000814543397, 0.0116137248, 0.0346228704, -0.00806084182, -0.0216229223, 0.00580140483, -0.0202585272, -0.0020793369, -0.00626529893, -0.0204659142, -0.00321724196, 0.00741139, -0.0404297337, 0.0022225983, 0.024973873, 0.0306497552, -0.00555854244, 0.00666915951, -0.00944160856, -0.0213827882, -0.00678922608, 0.0149646774, -0.00593784405, -0.0204113387, -0.0114499973, 0.00921784807, 0.00885764789, -0.0147245433, -0.0224415585, -0.0168202538, 0.0261527114, -0.00782070868, 0.00854110811, -0.0117010456, -0.0111552877, 0.00206023548, 0.0249083824, 0.00599787757, -0.00375481322, 0.0127270706, 0.00736772921, -0.0404297337, -0.00559947453, -0.0121158222, -0.0277026631, -0.0211099088, -0.010958815, 0.00213937042, -0.00658183824, 0.00156632473, 0.00496912422, 0.0254104808, -0.000505508098, 0.0668880716, -0.0118429428, -0.00972540304, -0.0190796908, -5.12500628e-05, -0.00315175089, -0.0383558534, 0.0407353565, 0.00705119, -0.0152703011, -0.00210935366, 0.00476446515, -0.0068165143, 0.0136330286, -0.0124760214, 0.00467714388, 0.0160780232, -0.00164273079, 0.00511920778, -0.0439007506, -0.0131527614, -0.00382849062, 0.00534569705, -0.0130763557, 0.00998736639, 0.0158924647, -0.0174642485, -0.0287941787, -0.0390762538, -0.00149401184, -0.00633078953, -0.00609065639, -0.000942114275, -0.0187849812, -0.00103284651, 0.0150519982, 0.00966536906, 0.0084319571, -0.00797897764, -0.0138949919, 0.00475082127, -0.0228781644, -0.00927242357, 0.0427655764, 0.0191451814, -0.00480812555, -0.0341426022, -0.026567487, -0.0105494969, -0.00328546157, 0.0136548588, 0.020913437, -0.0202039517, 0.000327454647, 0.00552579714, -0.00374116935, -0.000308182585, 0.00738410233, -0.00720400224, -0.0121158222, 0.00236995285, -0.0117447069, 0.0250830259, -0.0311081912, -0.0301258266, -0.00647268677, -0.00170276419, -0.00767881144, 0.00115495978, 0.00275880541, -0.00232492806, 0.00273833936, 0.00549578061, 0.000421597855, 0.00348739186, -0.0144516649, -0.00391581189, 0.0210116729, -0.00147081714, -0.0121703977, -0.000193744, 0.0130654406, 0.0395128615, 0.0521307774, -0.00791348703, 0.000897771446, -0.0163727328, -0.00883036, -0.0110843396, 0.00851927791, -0.0140587194, 0.00760786282, -0.0101074334, 0.00614523189, 0.0268731117, 0.0115591493, -0.00336732529, 0.0155868409, 0.0142006166, 0.0166456103, 0.0144844102, 0.00896134228, 0.0202476121, 0.0122686336, -0.00657092314, 0.0108551215, 0.0102165844, -0.0177152958, -0.0083882967, 0.00742230518, 0.0471971296, 0.0276590027, -0.00254459539, -0.0214591939, 0.0143425129, -0.0187740661, 0.00787528418, -0.0122140581, 0.00206569303, 0.00286795688, -0.00698569883, 0.00821911171, -0.0222014245, -0.00738410233, 0.0053729848, -0.0116901305, 0.00493637891, -0.00209570979, -0.00132482685, -0.0162090044, -0.0190687757, 0.0139277373, 0.0341862664, -0.000109663197, 0.0052119866, 0.00283248257, -0.00695841108, 0.00265784026, -0.00156496034, -0.000829551776, 0.00730769616, 0.0101838391, -0.00950164255, 0.00505371671, -0.00373844057, 0.00238632574, -0.00369478, 0.018654, -0.00195654156, -0.0164163932, 0.00455707731, -0.00601970777, 0.000362246705, 0.0320032351, 0.00291161751, -0.0194617212, 0.0353432707, 0.0197346, -0.0132837435, 0.000192379608, -0.00740047498, 0.0267857891, 0.00134188181, 0.00279973727, -0.00199338, -0.00617797766, -0.0123559553, -0.0083773816, 0.00437970599, 0.0233802609, -0.01831563, -0.000419892371, 0.0059542167, -0.00268785679, 0.00106149877, -0.00107991812, 0.0221359339, -0.02757168, 0.0241879821, 0.010342109, -0.00563222, 0.00468533, -0.000360541191, 0.00909232348, -0.037526302, -0.00914144237, 0.0101620089, -0.0110243065, 0.0063417051, -0.0230746362, 0.019210672, 0.0220486131, 0.0086666327, 0.0230746362, 0.0112644397, -0.0194289759, -0.00821911171, -0.0252794977, -0.000402496342, -0.0183702055, -0.0336623378, 0.019778261, 0.00436879089, -0.00264556054, -0.026327353, -8.38889355e-06, -0.0259125773, -0.00558855943, 0.0177152958, -0.00065866136, -0.0219503753, -0.00284066913, 0.0150192529, 0.00970357284, -0.00312173413, 0.0124105308, 0.0111170849, -0.0142879374, -0.0147682047, 0.00242589321, -0.00778250536, 0.0147463745, -0.0127379857, -0.0102165844, -0.0154340286, -0.0243626256, 0.00674556568, -0.00458436506, -0.0179990903, 0.0339679606, -0.020334933, 0.0155540956, 0.0228563342, 0.00952347275, 0.00938703306, -0.00441518, 0.0116683, -0.0157614835, -0.0175624844, 0.00576865906, -0.00927242357, 0.0249957051, -0.0214919392, -0.00609611394, 0.02824842, -5.09516e-05, 0.0177698713, -0.0198000912, -0.00373844057, -0.0218521394, -0.00694203842, 0.0168093387, 0.0224852189, 0.0052774772, -0.0124651063, -0.0173114352, -0.0162744951, 0.00782070868, -0.00181328, -0.00329637667, 0.0300821662, 0.0292962752, 0.000708120642, 0.000589759438, 0.0102111269, 0.00214619236, 0.00176689064, -0.00188286416, -0.0347320214, 0.000346385612, -0.0176498052, 0.00708939321, 0.00270286528, -0.0156414174, 0.0109915612, -0.0119302645, 0.0217757337, 0.0187413208, -0.0222778302, -0.0147027131, -0.00131527614, -0.0143425129, 0.0267857891, -0.00952347275, -0.00686563225, 0.00211481121, 0.00380938896, 0.0107023092, -0.0285322145, -0.018075496, 0.046891503, 0.00651088962, 0.00677285343, -0.0323743485, -0.0134365559, 0.0223542377, 0.00403314969, 0.0210335031, 0.0226162, 0.0155540956, -0.0118756881, 0.0231837891, -0.0279646255, -0.00512466533, -0.00504280161, 0.000617047364, -0.00806084182, -0.00749871135, 0.0400586165, -0.00952893, 0.0075369142, -0.0170931332, 0.0204768311, -0.0117228758, -0.0298202019, -0.0163727328, 0.0143206827, 0.0017969074, 0.00915235747, -0.0327454656, 0.0307589062, 0.0180427507, 0.00984546915, -0.00181191566, -0.0135893673, -0.0343172476, -0.0332039, 0.0129126282, -0.00311627658, 0.0135238767, -0.0209680125, 0.00825185701, -0.0207278784, 0.0150847435, -0.0190796908, 0.0288596693, 0.00368932239, -0.0200074781, 0.0305187721, -0.0171040483, -0.00262373034, 0.0098290965, -0.00915781502, -0.01232321, 0.00467168633, -0.00724766264, 0.0173441805, 0.0030808025, -0.0389671028, 0.0194508061, 0.013218252, -0.0246682502, -0.00562130474, 0.00810450222, 0.00492546335, 0.0126070036, -0.000342462969, 0.016853, 0.00748779625, -0.012541513, 0.0120175853, 0.00519288471, -0.012770731, 0.0126179187, -0.0306497552, -0.0361073315, -0.022834504, 0.0167111009, 0.0113190152, 0.00233584316, -0.00157178228, -0.00783708133, 0.0137094343, 0.0173332654, 0.0271132439, 0.00997099373, -0.00225807261, -0.0190360304, 0.0136985192, -0.0280956086, -0.0262836926, -0.00378210121, -0.00417231768, -0.0149319321, -0.0154121984, -0.0218848847, -0.0118866032, -0.0189050473, 0.00859568454, 0.0213937033, 0.00767335389, 0.0260872189, 0.0267202985, 0.0156414174, -0.0224633887, 0.00623255316, -0.00929425377, -0.004802668, 0.0120830759, -0.00410136953, 0.0244281162, 0.00781525113, 0.00380393141, -0.00122590829, 0.0146044772, 0.012770731, -0.00727495039, -0.0210335031, 0.0043169437, -0.0289906505, -0.0202257819, 0.0167438481, -0.017180454, -0.0214482788, -0.00440426497, -0.0236640554, 0.00371115259, 0.0393382162, 0.0127925612, 0.0132291671, -0.0125196828, -0.00378483, 0.0122468034, 0.000637854333, -0.00786436908, 0.00761877792, 0.00857931189, 0.0116792154, 0.0161871742, 0.00890130829, 0.015816059, -0.00346556166, -0.00211208244, 0.00249547721, 0.00647268677, 0.00656546559, 0.0218739696, -0.00958896335, -0.0194617212, 0.0187413208, 0.0227690134, 0.01198484, 0.00290888874, 0.0026646622, 0.00774430204, 0.0128798829, 0.0024490878, 0.031195512, 0.0156523325, 0.0161980893, 0.0237513762, 0.00715488382, 0.0124760214, 0.000488112069, -0.0186103396, -0.0189705398, -0.0154340286, -0.0206951331, 0.0211644843, -0.0135457069, 0.00208070129, -0.00606336864, -0.00517651206, -0.0120721608, 0.0135675371, -0.012650664, 0.00209570979, 0.00330729177, -0.00404406479, -0.000408295018, -0.0109206121, -0.0305624325, 0.00621072296, 0.000452978915, -0.00265784026, -0.00749871135, 0.0116246399, -0.010342109, 0.000221884635, -0.0158378892, 0.0124105308, 0.0207824539, 0.0112207793, -0.0129562886, -0.00759694772, 0.0551870205, 0.00311627658, -0.00619435031, 0.00948527, 0.00254868856, 0.022834504, 0.00380393141, -0.00337824039, -0.00246136729, 0.00241634226, -0.00550942449, -8.9453104e-05, 0.0160889383, -0.0152484709, -0.0157505684, 0.0175734, 0.00989458803, -0.00153767248, 0.00275880541, -0.0135238767, 0.0135675371, 0.000279359752, 0.0154340286, -0.00412592851, 0.00540027302, 0.00424599508, -0.017289605, -0.0244499464, 0.0319595747, 0.00447521359, -0.0160889383, 0.0147791198, 0.0133710643, 0.0156305023, 0.0114499973, -0.00136439432, -0.00622163806, 0.0249083824, -0.01078963, -0.00783162378, 0.00945252366, 0.0234239213, -0.00195108389, -0.00473444816, -0.00141351251, -0.0217975639, -0.00308898883, -0.00095234724, 0.00188559294, 0.000455366622, 0.00927242357, -2.50920639e-05, 0.00907595083, 0.0168311689, 0.0124760214, -0.012432361, 0.0178571939, 0.00817545131, -0.00330183422, 0.0148664406, 0.0125305979, 0.0138731617, 0.0156086711, -0.0106422761, -0.000520857517, 0.00863934495, -0.0141569553, -0.038879782, 0.0158815496, 0.0212408919, -0.004349689, -0.0171586238, 0.014015059, 0.00179963617, 0.0108824093, 0.00217893766, 0.0237513762, 0.00426782528, 0.0106259035, -0.00374389812, -0.013109101, 0.000188798062, -0.0276371725, -0.0112644397, -0.038421344, 0.000263839756, -0.0176934656, 0.0264583342, 0.00359108578, 0.0269386023, 0.00266193342, 0.0114609124, 0.0203567632, -0.00377664343, 0.00277654245, -0.0149319321, -0.01078963, 0.00245863851, -0.0162854102, -0.00268103485, -0.00185557629, 0.00787528418, 0.0202803575, -0.000483336684, 0.000525974, -0.0193525702, -0.005877811, -0.0221359339, 0.000575092214, -0.018872302, 0.0072804084, -0.00730223861, 0.0248865522, -0.00861751474, -0.00636899285, 0.0106259035, -0.0104021421, -0.00019220906, 0.00813179, -0.010958815, -0.022725353, -0.0287941787, 0.0130545255, 0.00868300535, 0.021699328, 0.024297135, 0.00649997452, 0.00339734182, -0.00401950581, -0.0157942288, 0.0147463745, -0.0064290259, -0.0206951331, -0.00237541064, 0.00735681411, 0.00384486327, -0.00329091912, 0.0113299303, -0.00123545912, 0.0138513315, 0.017518824, -0.0091469, -0.00507008936, -0.00644539902, 0.000428760919, -0.024515437, 0.0149319321, -0.00338369794, -0.00323361461, 0.00573045621, -0.0140805496, -0.00332093588, 0.0149974227, -0.0251048561, 0.00516013941, 0.0216010921, 0.0240351707, -0.00341644348, -0.017518824, 0.0181737319, 0.0274406988, -0.0189596228, 0.00253231591, 0.0208916068, 0.0212845523, -0.0115154879, 0.0164273083, -0.0198219214, 0.00146126631, -0.00839375425, -0.00711668096, -0.0208261143, 0.0035201374, 0.00386123592, 0.0042650965, 0.0140587194, 0.00716034137, 0.00821911171, 0.0187304057, 0.0206514727, 0.00580686238, -0.0021270907, 0.0101620089, 0.00232902123, 0.0299075246, -0.00424053753, -0.0289906505, 0.0017123149, -0.00971448794, 0.00813179, -0.00501824217, 0.0303441305, 0.00268512801, -0.0038639647, 0.00781525113, -0.0164709687, -0.000710167282, 0.00354469661, -0.000549168733, -0.00876486953, -0.015706908, -0.00512193656, -0.0245590974, -0.0272223949, 0.00147081714, 0.00982363895, -0.00110038405, -0.00773338694, -0.00737864478, -0.00852473546, -0.0222887453, -0.0114390822, 0.0119630098, 0.0228999946, 0.00667461706, 0.0133164888, 0.0102165844, -0.0207278784, 0.00127093331, 0.0064181108, -0.0149319321, -0.00500459829, -0.015259386, 0.0148336953, 0.0050237, -0.0249957051, -0.0234675817, 0.0110133914, -0.00211208244, -0.00234130071, -0.00678376853, -0.00944160856, 0.0406480357, 0.0083664665, -0.00740593253, -0.0133492341, -0.00363747519, -0.00554762734, -0.0100474, -0.0116683, 0.0142006166, 0.0125742583, -0.0216010921, 0.0101510938, -0.00606336864, -0.00646177167, 0.0416304, 0.0358672, -0.00881398749, -1.35586688e-05, 0.0149755925, -0.0168857444, 0.0125851734, 0.0305842627, -0.00589418365, 0.0114827426, 0.0226380304, 0.00179554289, -0.012203143, 0.00714396872, 0.000343827385, 0.00920693297, -0.014015059, -0.00451614521, 0.00730769616, 0.00353923882, -0.00785345398, -0.0232056193, -0.0206187274, -0.00425691, -0.00093188131, 0.000785208947, 0.000315857294, -0.0182828847, -0.00533751072, 0.00773884449, -0.000337517064, -0.0152703011, -0.0129017131, 0.0143206827, -0.00660912599, 0.0179117694, 0.00725312, 0.0105167516, 0.000496639521, -0.0255851224, 0.0113626765, -0.019996563, 0.0150083378, 0.0152812162, 0.0253449883, 0.0158597194, 0.00726949284, 0.01198484, -0.0258689169, 0.00644539902, -0.0333348811, -0.00205614232, 0.0198546667, -0.0124432761, -0.0265893172, 0.0217539035, -0.00561584719, -0.00100760523, 0.0261308812, 0.000590100535, 0.00913598482, 0.0202585272, -0.00269604311, 0.0488125719, -0.00100146548, 0.0194180608, -0.000253095146, 0.0241879821, -0.00385032082, -0.00754237175, -0.0173114352, -0.0376791134, -0.0269386023, 0.00285977055, -0.00161817169, -0.000959169236, 0.0119302645, -0.000781115785, -0.0288378391, 0.00499368319, -0.0156195862, 0.00226762332, -0.0321342163, -0.00428146962, -0.0144407498, 0.00562676229, 0.0042650965, 0.0328327864, -0.00239996961, 0.0115591493, -0.0328764468, 0.00965445396, 0.0134802163, 0.0006542271, -0.0142551921, 0.0104840063, -0.00895042717, -0.0128798829, -0.0075478293, -0.0167220179, -0.0134147247, -0.012541513, -0.00616706256, -0.0361509919, -0.0152812162, -0.00696386863, 0.0145171555, -0.00193471112, -0.00293344771, -0.0174751636, 0.0269822627, -0.0058887261, -0.00734044146, 0.0183265451, -0.00221850513, 0.00359654357, -0.00829551741, -0.0132073369, -0.0247992314, 0.0133710643, 0.0059105563, -0.00792440213, -0.000978270778, 0.00149946939, -0.00194835512, 0.00459528, -0.0153576229, -0.00122931926, -0.00720946, 0.0118538579, -0.00797352, 0.00562130474, 0.0109315272, -0.0140696345, -0.00614523189, -0.00557218632, -0.0107787149, -0.00246682507, -0.0191997569, -0.00128867046, -0.0053839, 0.01232321, 0.0246245898, 0.025541462, 0.000392945571, 0.00370842381, 0.0102711609, -0.0232274495, 0.00733498391, -0.0188395567, 0.00802809652, -0.0144080045, -0.00231674151, -0.00600879267, -0.0202694423, -0.0164818838, 0.0113408454, 0.00949072745, 0.0053184093, 0.0188613869, 0.0149974227, 0.0139386524, 0.00770064164, 0.00046321188, -0.00303168432, 0.0268512797, 0.00276699173, 0.00258689164, 0.0161216836, -0.00258143409, 0.0213937033, 0.00997099373, -0.000123562961, 0.00251730764, -0.00942523591, -1.72467971e-05, -0.00940886326, 0.0232711099, 0.00566496514, -0.0131200161, -0.0101401787, 0.0321778767, -0.0145389857, 0.0129344584, -0.0129344584, 0.000575092214, -0.00513558043, 0.0110079339, -0.00668007461, 0.00696386863, 0.0207169633, 0.00293344771, -0.00451887399, -0.00300166756, -0.00344646, 0.00583415, 0.00803901162, 0.0275061894, 0.0015936126, -0.00299348123, 0.0131418463, -0.00643994147, -0.00330729177, 0.00240269839, 0.0171586238, 0.00417504646, 0.00710030831, 0.0109697301, -0.00142169895, -0.0399931259, -0.0198655818, 0.00412865728, 0.0148555255, -0.00356379803, 0.00855748169, 0.00965991151, -0.0189159624, -0.00495820912, -0.00763515057, -0.0024272576, 0.0261963718, -0.00112085, -0.00350376475, 0.00371115259, -0.0188395567, 0.00115700637, 0.020575067, 0.00321997073, 0.0138076711, -0.00585052278, -0.00676193833, 0.0064181108, 0.0329419374, -0.01232321, -0.0140696345, -0.0325708203, -0.00433604512, -0.00356106926, -0.00156632473, 0.0163072404, 0.0219394602, 0.000246443728, -0.0144407498, 0.0216447525, 0.0101347212, -0.00956713315, -0.000262134272, -0.00794077478, 2.89933796e-05, -0.0133819794, -0.0151284048, -0.0213391278, -0.00654909294, 0.00904320553, 0.00604153797, 0.00317085255, -0.0112535246, 0.00820819661, -0.0233584307, -0.00680559874, 0.0101783816, 0.00226898771, 0.00580686238, -0.00847561751, -0.0247119106, 0.00649451697, 0.00738956, -0.0131855067, -0.00535934092, -0.00167138304, -0.0113954218, 0.0196363628, 0.0110406792, 0.0138622466, -0.00399221806, 0.0101510938, -0.00780433556, -0.000403519633, -0.00897771493, 0.0107678, -0.0104949214, -0.00889585074, 0.0140914647, -0.00901046, -0.0154995201, 0.0054794075, -0.00461983914, -0.00582323503, 0.0141678704, -0.00548213627, 0.0285758749, 0.014244277, 0.000375549542, 0.00123409473, -0.00495275157, 0.0254978016, -0.0229873154, 0.00561038963, -0.00442882394, -0.0155868409, 0.000975541945, 0.00122795487, -0.00731861126, -0.00171504368, 0.00974723324, 0.00179281412, 0.0225507095, 0.0262400322, 0.0109970188, 0.0165801197, 0.0178790241, 0.00541118812, -0.0139168222, -0.00145171559, 0.0225070491, -0.0124869365, -0.0194617212, 0.0241661519, -0.026567487, -0.0244499464, 0.0125305979, -0.0139604826, -0.00561038963, 0.00483814254, 0.010511294, -0.0038776088, 0.00616160501, 0.0121376524, -0.019996563, -0.0118101975, -0.0349721573, -0.00343281613, -5.9862803e-05, 0.0113735916, -0.00940340571, -0.013109101, -0.0139713977, -0.0294927489, 0.00709485076, -0.00340007059, -0.000179247305, -0.00821365416, 0.0258470867, 0.000451955624, 0.0143970894, -0.00830097497, 0.00546030607, -0.00500732707, -0.00305897207, 0.00215028552, -0.00235903775, 0.0191779267, 0.00166183233, 0.00889039319, -0.0290561412, 0.0146263074, 0.0181409866, 0.0142006166, 0.0384868346, -0.00105672341, 0.0100692306, 0.00105604122, -0.000459118688, -0.0158488043, -0.0215465147, -0.018654, -0.00388033758, 0.0250393655, -0.0279864576, -0.00807175692, 0.00530476542, 0.00606336864, 0.0110406792, -0.0327236354, 0.00683288695, -0.0122358883, 0.000707438448, 0.000372820767, -0.0270477533, -0.0148227802, 0.00605791109, 0.0138076711, -0.00109219772, -0.00859022699, -0.00070402748, 0.0168202538, -0.0191560965, -0.00623801071, 0.0173005201, -0.00711122341, -0.00946343876, 0.00021966749, 0.00317085255, 0.0239478499, -0.0102602458, 0.00214755675, -0.00452978909, -0.0136876041, -0.0263491832, 0.00631987443, -0.00785345398, -0.00663641421, -0.0127598159, 0.00921239052, 0.00630895933, -0.00908140838, 0.0048244982, 0.00374389812, 0.022834504, 0.00374935567, 0.00834463537, -0.0100255692, -0.0307152458, 0.00994370598, 0.0141023798, -0.002854313, 0.0108878668, 0.0220704433, 0.00826823, 0.00158951944, -0.000147780956, -0.00909232348, -0.025541462, 0.00497731054, -0.0162308346, 0.00354742538, -0.0121813128, 0.0115918946, 0.00676739588, 0.013109101, 0.00610157149, -0.00572499866, -0.00669644726, -0.0151720652, -0.0130872708, 0.0154558588, 0.00715488382, 0.00555035612, -1.30363615e-05, -0.0122904638, -0.0250393655, 0.0294709168, -0.00552033959, 0.00299893878, 0.00222805585, -0.0127052404, -0.00641265325, 0.00365384808, 0.00816999376, -0.00996553618, -0.00605245307, -0.0134693012, 0.0435514674, -0.0121485675, -0.00778796291, -0.0115373181, 0.00261008646, -0.00287341443, -0.00206569303, 0.00083569152, -0.00755328685, 0.00356925558, 0.0217102431, 0.00640173815, -0.0243407954, 0.0110024763, 0.00497185299, 0.0306497552, -0.019319823, 0.00944706611, 0.00903229, -0.0134911314, 0.00380938896, 0.0319595747, 0.00500459829, -0.00383394817, 0.015259386, 0.0244281162, 0.00774430204, -0.0198983271, 0.00573045621, 0.00361564499, 0.0169075746, 0.0246245898, -0.00343281613, -0.00359381479, -0.00211754, -0.0153357927, 0.00435241777, -0.039316386, -0.00252276519, 0.0151284048, -0.0122468034, 0.0119739249, -0.00528566353, -0.0268512797, 0.00610702904, -0.00699661439, 0.00562130474, -0.0186103396, -2.2890913e-06, 0.00217620889, -0.0260653887, 0.0107950876, -0.00421325, 0.0151938954, 0.00577411707, -0.029951185, -0.01592521, -0.0236640554, 0.0141351251, 0.00913598482, -0.00882490259, -0.021131739, -0.0148882708, 0.021360958, -0.0141351251, 0.0147682047, 4.87344587e-05, -0.00112698972, -0.0171367936, 0.00221304758, 0.00185011874, -0.0129672037, -0.00688200491, 0.0297547113, 0.0356707238, 0.0136657739, 0.0105003789, -0.00261554401, 0.0104949214, 0.00412592851, -0.0352559499, 0.0128689678, -0.00948527, 0.0162308346, -0.0131855067, 0.0121158222, -0.0235985648, 0.0124760214, -0.00974177569, 0.00837192405, -0.0257597659, -0.000880716543, 0.0387269706, -0.00320359785, 0.00175188237, -0.00181737321, -0.0157287382, -0.0228563342, -0.00778796291, 0.000714260445, 0.0101565514, -0.00647814432, -0.0139277373, -0.00691475067, 0.00415594503, -0.000759285467, -0.0284667239, -0.00654909294, 0.0268294495, -0.00078930211, 0.00343827368, 0.0325271599, -0.00867209, -0.0044561117, 0.0109424423, -0.00695295352, 0.0153467078, -0.00257870532, -0.0124869365, -0.010451261, -0.00947981142, -0.0281829294, 0.00616160501, 0.0243189652, 0.00671282, -0.0197127685, 0.00754237175, -0.00397038739, 0.0026169084, -0.0129017131, 0.0162199195, -0.0109642725, -0.0197236855, 0.0147900349, 0.00493910769, 0.0113081, 0.00361564499, 0.0083882967, -0.0109861037, 0.00991641823, 0.00237404625, -0.00441518, -0.024406286, 0.00559947453, 0.015477689, -0.0248865522, 0.0216120072, 0.0184793565, -0.0049200058, 0.000460483076, -0.000117764284, -0.00566496514, -0.00377118587, 0.0161435138, -0.0192325022, -0.0115591493, -0.0235330742, -0.00358289946, -0.0204222538, 0.00829551741, -0.0313701555, 0.000712213863, 0.00621618051, 0.0304096211, -0.00810996, -0.0020575067, 0.0259780679, -0.0139713977, -0.000461847492, 0.00248729088, -0.0203567632, -0.0111771189, -0.00770064164, 0.0158488043, -0.0356707238, 0.00700752949, -0.0054903226, 0.000584301888, -0.00158679066, 0.00335095241, -0.00624346826, 0.0117337909, -0.0064181108, 0.0146590527, -0.00470443163, 0.0130545255, 0.00839375425, 0.00680559874, -0.0208042841, -0.0270914137, 0.00346010411, 0.0113954218, -0.0223105755, -0.0111989491, -0.00880307239, -0.00486270152, 0.0101183485, -0.0261963718, -0.00792440213, -0.0100474, -0.000250536919, -0.0145062404, -0.00458982261, -0.00389398145, 0.00700207194, -0.01831563, -0.012093991, 0.00884127524, -0.0241443217, 0.026567487, -0.00698569883, -0.00663095666, -0.0194508061, 0.0142006166, 0.00292526139, -0.0075259991, 0.0255851224, 0.0243844558, 0.00970903, -0.00607428374, 4.70716041e-05, -0.0113190152, -0.0115809795, 0.0119739249, 0.00236858847, -0.0197236855, -0.0122904638, -0.0108551215, 0.00786982663, 0.0136439437, 0.0129344584, -0.0169184897, -0.00619435031, -0.000576456601, 0.023729546, 0.0161544289, -0.0156632476, -0.00939249061, -9.31199102e-05, 0.0121813128, 0.00417231768, 0.0106040724, -0.0115918946, 0.0130545255, 0.0132291671, -0.02464642, -0.0185557622, 0.0136221135, -0.0219722074, -0.00137189846, -0.00386123592, -0.00332366466, 0.00294709182, -0.0242753047, 0.0138622466, 0.0273315478, -0.00433058757, 0.0027342462, 0.00600879267, 0.0110570518, 0.00402769214, 0.0108223762, -0.00777159026, 0.0147900349, 0.00947981142, 0.00484632887, 0.00479993923, -0.0068383445, -0.0117774522, -0.00302076899, -0.000472080428, -0.00519834226, 0.0059323865, -0.00353651, -0.0264146738, -0.0074714236, -0.0158924647, 0.00582323503, 0.00593784405, 7.57238886e-05, 0.00723129, -0.0111662028, 0.0103693968, 0.00643994147, -0.0086066, 0.00166319672, 0.000236722422, 0.0144407498, 0.0171913691, 0.0145935621, 0.00289251609, -0.00397857372, 0.00498549687, -0.0109751876, -0.000656614779, 0.0296237301, 0.00399494683, -0.0035092223, 0.0183702055, 0.0224852189, 0.00252549397, 0.000199201575, -0.004210521, 0.00636899285, -0.00150219817, -0.012432361, -0.0126724942, -0.00295254937, -0.0006716231, -0.0018187376, 0.00379847386, -0.00345464656, 0.0369368829, -0.00204522721, 0.00594875915, -0.00717125647, 0.0075369142, -0.00628712913, 0.0227471832, 0.00392672699, 0.011635555, -0.00213664165, -0.017518824, -0.00240269839, -0.00318449643, -0.0162744951, -0.0161435138, -0.0337714888, 0.00339734182, 0.00660912599, -0.00378210121, 0.0217866488, 0.0167438481, -0.000914826407, -0.0216120072, -0.00333457976, 0.0149755925, -0.0263491832, -0.0138404164, -0.00226080138, 0.00384759204, 0.00516559696, 0.00215574307, 0.0053511546, -0.00283794012, 0.0212299768, -0.00203567627, -0.00396220107, 0.000826822943, 0.0059105563, -0.0135457069, 0.0193853155, 0.00732952636, -0.0312391724, -0.00760240527, -0.00815907773, -0.00790802948, -0.00848653261, -0.0132509982, -0.0163727328, -0.0182828847, 0.0100201117, -0.0131636765, 0.0109861037, -0.00133710646, -0.00810996, -0.0189268775, 0.00152129971, 0.00753145665, 0.00890130829, 0.0165801197, 0.0120285, -0.00436606212, 0.00896134228, 0.00946343876, -0.0128580518, -0.0185994245, -0.000568270218, 0.00630895933, 0.00994370598, -0.00662549911, 0.0145499008, 0.0009393855, -0.0059323865, 0.00503188651, -0.0100091966, 0.0209461823, 0.0166237801, 0.0187194906, 0.00800080877, 0.00633078953, -0.00483541377, 0.000790666498, -0.0136985192, 0.00617252, 0.0154012833, 0.000400449731, -0.00231537712, -0.00737318723, 0.0116137248, -0.00699661439, -0.018424781, -0.00606336864, -0.0228126738, -0.00563222, -0.011417252, -0.000552920799, -0.0286195353, 0.00277927122, -0.00603062287, -0.0162854102, -0.014244277, 0.0154121984, 0.000495275133, 0.00439607864, -0.00862843, 0.00881398749, 0.00167820498, -0.00202612556, -0.0124978526, -0.00619435031, -0.0203785934, -0.00695295352, 0.0177262109, -0.00888493564, 0.0100310268, 0.00344100245, 0.0149865076, -0.000930516922, 0.00885219, 0.00667461706, -0.0195053816, 0.00850290526, -0.0155322654, 0.00274789031, -0.016612865, 0.0193416551, -0.0183047149, 0.0110133914, 0.00688746246, 0.0043387739, -0.00973631814, -0.00376299955, 0.00112835411, -0.00323361461, 0.0202039517, -0.00573045621, 0.0121703977, 0.00787528418, 0.011128, -0.00941432081, -0.0204222538, 0.0274188686, 0.0226816908, 0.00491727702, -0.0414994173, -0.00045127343, -0.00461438159, 0.0119520947, 0.0114718275, -0.00888493564, 0.00296346447, -0.00527201965, 0.0144189196, -0.014015059, 0.00166183233, 0.00343827368, -0.00239451206, 0.00865026, -0.00649451697, 0.017398756, 0.00788619928, -0.0157178231, -0.017060386, 0.00662004156, -0.0299075246, -0.000678445096, 0.00610157149, 0.0053184093, -0.00621072296, 0.00244090147, -0.00688200491, 0.0138295013, 0.00171504368, -0.0109642725, 0.00651634717, 0.0112316944, 0.00225397944, -0.00807175692, -0.0123122949, -0.00555581367, 0.00861205719, 0.00412047096, 0.00164409517, -0.0174533315, 0.00318995398, 0.00942523591, 0.000462870783, -0.000131493507, -0.012541513, -0.00383121939, 0.00423508, -0.0395565219, 0.00365657685, 0.00764060812, -0.000273219979, -0.0247337408, -0.0102766184, 0.0115918946, 0.015706908, 0.00183511036, 0.00105672341, -0.00026452195, -0.00761877792, -0.0121049061, -0.0112426095, -0.00429784227, 0.00295527815, 0.00144489366, -0.00690929312, -0.0173769258, 0.00323361461, -0.00898863, 0.00696932618, -0.0147136282, 0.00971994549, 0.0124760214, -0.00942523591, -0.0105549544, 0.00588326855, -0.00133915304, -0.00226625893, -0.00441245129, -0.000740866119, 0.0200948, -0.0317412689, 0.0306934156, 0.000720400189, 0.00676193833, 0.00833917782, 0.0206296425, 0.0118101975, -0.0402769223, -0.0199201573, -0.0202803575, 0.000993279, -0.0161980893, -0.0152812162, -0.0116901305, -0.00276835612, -0.00766789634, 0.0189705398, 0.0299075246, -0.0160780232, 0.0248865522, -0.00979089364, 0.0392508954, 0.011417252, -0.0144189196, -0.000947571883, 0.0253668204, -0.0111498302, -0.00798443612, 0.00185284752, 0.00166319672, -0.0126943253, -0.00910869706, -0.00244499464, -0.0176934656, 0.00810996, -0.012432361, -0.00928879622, 0.00157178228, 0.00899954513, 0.00206159987, 0.0133274039, -0.0334003717, -0.0154121984, -0.007515084, 0.0101510938, -0.0316321179, 0.00780979311, 0.0143970894, 0.00327727525, -0.0233802609, 0.00645631412, -0.0183265451, 0.0179445148, 0.0263491832, -0.00180372933, -0.000830916164, -0.0338369794, -0.00909232348, 0.00394582842, 0.00768426899, 0.00896134228, 0.00104512612, 0.0144298347, -0.00802263897, -0.015259386, -0.00656000804, -0.00838283915, -0.0064290259, -0.0154558588, 0.000871847966, -5.08663252e-05, -0.0221577641, -0.0397966541, -0.00122795487, 0.0130763557, 0.00809358712, -0.0118756881, 0.0105385818, -0.0169948954, -0.00144216476, 0.00861205719, -0.00450250134, -0.000385100313, 0.0111771189, 0.00567042269, 0.021022588, 0.00123273034, 0.0299075246, -0.00717671402, 0.0244281162, 0.0155650107, 0.00422689365, -0.0133164888, 0.00031636894, 0.0178135317, -0.00925605092, -0.00416413136, -0.0326144807, 0.00552579714, -0.0195162967, 0.0146372225, 0.0108278338, 0.00136371213, 0.0131855067, -0.0143970894, 0.0048981756, 0.00156768912, 0.00713851117, 0.0179772601, -0.00328546157, -0.0106095308, -0.0326581411, 0.00447521359, -0.00414230116, -0.0140914647, 0.0136876041, 0.000987139298, -0.0236640554, 0.00199474441, 8.72786e-05, 0.0214482788, 0.0175843146, -0.0162090044, 0.0054575773, 0.00265238271, 0.0101510938, -0.00681105675, 0.0034137147, -0.0196691081, -0.0178462788, 0.00181055127, 0.00286795688, -0.00612885924, -0.0138076711, -0.011128, 0.0178462788, -0.00774430204, 0.024406286, 0.0107459696, 0.00417231768, -0.0160452779, 0.0313264951, -0.00616160501, -0.0056867958, 0.0316976085, -0.0181191564, -0.0192434173, 0.0118975183, 0.00837192405, -0.000195790592, -0.00399767561, -0.00302076899, -0.001878771, 0.0337496586, 0.0192761626, 0.00815907773, -0.00512739411, -0.0203131028, -0.0115045728, 0.00908140838, 0.0124541912, 0.0244717766, 0.00175051799, 0.0116683, -0.00418050447, 2.88068418e-06, 0.00390216778, -0.00171640806, 0.00987275783, -0.00879761484, -0.00209980295, 0.0104076, 0.0135675371, 0.0160016175, -0.00764606567, 0.00761877792, -0.0103639392, 0.0168639142, 0.00179963617, -0.00791894458, 0.0304314513, -0.00185011874, 0.00929425377, 0.00531295175, 0.0236858856, -0.00543301832, -0.0263055228, -0.0169184897, 0.005255647, 0.0100474, -0.0173114352, -0.00220759, 0.00202203239, 0.0083882967, 0.0150410831, 0.015368538, 0.00998736639, -0.0146481376, -0.0207387935, 0.00940340571, 0.013556622, 0.0317412689, 0.00450250134, -0.0298856944, -0.00228672498, -0.0118866032, 0.00252412958, 0.00600333512, 0.00477810903, -0.012203143, 0.00699661439, -0.0083664665, 0.0255196318, 0.0222669151, 0.00363201764, 0.0168857444, -0.00314629334, 0.022037698, 0.0175734, 0.000714260445, 0.0214373637, 0.0115482341, -0.0192979928, -0.00713851117, 0.0243626256, -0.0232711099, 0.0018201021, -0.00792986, -0.00368659361, 0.00203567627, -0.0251048561, -0.00898863, 0.00687109, 0.0106695639, 0.00199338, 0.00294436305, -0.0174642485, -0.00492273457, 0.00834463537, -0.00518742716, 0.0175079089, -0.00968174264, -0.00205341354, -0.00576320151, -0.0224415585, 0.00095234724, -0.00597059, 0.00219394616, -0.0103966845, -0.0324180089, -0.00838283915, 0.00549578061, 0.0103148213, 0.0116137248, -0.00579594728, -0.0103748543, -0.000772929401]
30 Jan, 2023
Node.js date-and-time Date.transform() Method 30 Jan, 2023 The date-and-time.Date.transform() method is used to transform date and time from the existing string format to new string format. Required Module: Install the module by npm or used it locally. By using npm: npm install date-and-time --save By using CDN link: <script src="/path/to/date-and-time.min.js"></script> Syntax: const transform(dateString, arg1, arg2[, utc]) Parameters: This API takes the following arguments as parameters. dateString: String object of the date. arg1: Existing string format. arg2: New string format. Return Value: This method returns a formatter string. Example 1: index.js // Node.js program to demonstrate the // Date.transform() method // Importing http module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now  =  new Date(07-03-2021); // Changing the format of date and time // by using date.transform() api const value = date.transform( now.toLocaleDateString(), 'D/M/YYYY', 'YYYY/M/D'); // Display the result console.log("transformed date and time :- " + value) Output: transformed date and time :- 1970/1/1 Example 2: index.js // Node.js program to demonstrate the // Date.transform() method // Importing http module const date = require('date-and-time') // Changing the format of date and time // by using date.transform() api const value = date.transform( '23:14:05 GMT+0900', 'HH:mm:ss [GMT]Z', 'YYYY/M/D'); // Display the result console.log("transformed date and time :- " + value) Output: transformed date and time :- 1970/1/1 Reference: https://github.com/knowledgecode/date-and-time#transformdatestring-arg1-arg2-utc 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
https://www.geeksforgeeks.org/node-js-date-and-time-date-transform-method?ref=asr10
PHP
Node.js date-and-time Date.transform() Method
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, PHP Tutorial, PHP
GeeksforGeeks
[0.00309496676, -0.00222855899, -0.00289056776, 0.0191952, 0.0315567628, -0.0235028323, -0.0354128852, 0.0291893948, -0.0593550242, -0.0149607854, 0.026016634, 0.0386832692, -0.019475868, 0.00838340912, 0.0241495874, 0.00244821166, -0.038756486, 0.00793190114, -0.0125690121, 0.0224899892, -0.0277982615, 0.0243692398, -0.0222703367, 0.0132645788, -0.00651636161, 0.0241373852, 0.00183654006, -0.0134232165, -0.0209280159, -0.024027558, 0.00473778555, 0.0231855568, 0.0333627947, -0.0374873839, -0.0321913138, -0.0216723941, 0.0259678233, 0.0356081314, -0.0569144376, 0.00948777329, -0.0105921384, -0.00531437341, -0.0227950625, 0.0145336827, -0.0118490392, 0.0139479423, -0.0287989, -0.0314347334, 0.0353884809, -0.0287500899, 0.00859696, 0.00158180401, 0.015839396, 0.030482905, 0.0264559407, 0.0369016416, 0.0214893501, 0.00977454241, 0.0339241289, -0.0195978973, 0.0645778775, -0.0519356467, 0.0123554608, 0.0125934184, 0.0185728502, 0.0282375664, -0.0273589566, 0.0357545689, -0.00252753077, -0.00144528388, -0.0153268734, -0.00266176276, 0.0273833629, 0.000883949338, -0.00377070368, -0.0264071282, 0.00131944125, 0.0160346422, -0.0289697424, 0.00294090481, -0.00244516088, -0.0128008677, -0.00195856928, 0.00472863298, 0.00602214318, -0.034949176, 0.0291405842, -0.0448335446, 0.0103602828, 0.00860916357, 0.0145946974, -0.00613502041, -0.0310686454, -0.025479706, -0.0599407628, 0.0402940549, 0.011470749, 0.00419780612, -0.0654564872, 0.0255041122, 0.0272369273, 0.00282955309, 0.0113182124, -0.0432227589, 0.0245156754, -0.0131425494, 0.0416119732, -0.00327648525, 0.0244912691, 0.00324597792, 0.0465907641, -0.021208683, 0.0249183718, 0.0255285185, -0.0461270548, 0.0148387561, -0.00237651961, -0.0372189209, 0.0385124274, 0.0302876588, -0.0142896241, 0.0363159031, 0.0344610587, 0.0505689196, -0.00743768224, 0.0103846882, -0.0216968, 0.0128374761, 0.0204398986, -0.00133774558, -0.0393910408, 0.0361938737, -0.0175111964, -0.0064614485, 0.0305317175, 0.0123188524, -0.0165715721, 0.014741133, -0.0202202462, -0.0272369273, 0.0243448336, 0.0129717086, 0.00116309128, 0.00129351, -0.00984776, 0.0156929605, 0.0134476228, 0.0531071275, 0.0181091391, 0.0132157672, -0.0148387561, -0.0464931428, 0.00435034232, -0.0132157672, 0.0152536556, -0.0210500453, -0.0119954748, 0.0220384821, -0.0437352806, -0.0639433265, 0.0155709311, -0.0351688266, 0.014106581, -0.0011264825, 0.011745315, 0.0279202908, 0.0139479423, 0.0173403546, 0.0598919541, 0.0398303457, -0.0244058482, 0.0171085, -0.00909117889, -0.00787088647, -0.0179505013, -0.00795630645, 0.00274565793, 0.00500319898, 0.0216723941, -0.0356325395, -0.0395374745, 0.00937184598, 0.000741709, 0.0462978967, 0.0134110134, 0.0227340478, 0.012739853, 0.00393239222, -0.0128984908, -0.00523810508, -0.0184630249, 0.0298727583, 0.0461758673, -0.0250159949, 0.00120961491, 0.0301412232, -0.00207144651, -0.021562567, 0.0218798425, 0.00825527869, -0.00987826753, -0.0366819911, -0.000295539561, -0.0185118355, 0.00584825128, -0.0268708393, 0.00573232351, -0.0461758673, 0.0566703789, -0.0423197411, 0.0214039292, -0.0193538386, -0.0012904593, 0.0211232621, 0.017645428, -0.0105311237, 0.0163397156, -0.0174013693, 0.0173281524, -0.039122574, -0.0287989, 0.00871899, -0.00306445942, -0.0231001358, -0.0263583157, -0.0325574, -0.028213162, 0.00627230294, 0.013557449, 0.0168156289, -0.049592685, 0.0295066703, 0.00787088647, -0.0230635274, 0.0151316263, 0.0210622475, 0.0286768731, 0.00450287899, -0.0401476212, 0.0274077673, 0.00245583849, -0.00915829465, 0.0409042, -0.0479819, 0.0171085, -0.0240519643, 0.01727934, 0.0328014605, 0.00985386129, 0.00791969802, 0.00815155357, -0.00592451962, 0.00844442379, 0.0205253195, -0.0269196518, -0.0216601901, -0.0249915887, 0.0682875663, 0.0131303463, -0.00200585579, 0.00584215, 0.0283107851, -0.0119283581, 0.032020472, 0.00606485317, 0.0233319905, -0.0414899439, -0.01510722, -0.00981725287, -0.00971352775, -0.00458524888, -0.0396839082, 0.0256505478, 0.00970742665, -0.0336556658, -0.0183531977, -0.0424417704, 0.0197687373, 0.0457853712, -0.0172671378, 0.0101101231, 0.0206961595, 0.00461575622, -0.00363037, -0.00951828063, -0.0079074949, 0.0308978036, -0.034949176, 0.0118124308, -0.00688855071, -0.0145092774, -0.00497269165, 0.00642483961, 0.00319106481, -0.00346868113, -0.0440037437, 0.00266176276, 0.011373125, 0.0208792035, 0.0272613335, -0.0511058457, -0.036657583, -0.0107202688, 0.035681352, 0.00113029592, 0.0241251811, 0.0429054834, -0.00716921827, -0.00861526467, -0.0169742685, 0.0296287, 0.0158515982, -0.0250892118, 0.000610908901, -0.0313859209, 0.00192196062, 0.00722413138, -0.00969522353, -0.0126666352, 0.00798681378, -0.0517404, 0.0092986282, -0.0154855112, 0.0343634337, 0.0566703789, -0.00240550144, 0.00607400574, -0.00641873805, -0.00535403285, 0.00472863298, -0.0426126122, 0.0133866081, 0.0106409499, 0.0421000905, 0.00317581114, 0.0149485823, -0.0255529229, -0.0691173598, -0.012190721, 0.0229781065, 0.025479706, 0.0356081314, 0.0146557121, -0.0313127041, 0.0284084082, -0.0381463431, -0.0150462054, 0.008828816, 0.00276091159, 0.040953014, 0.000721497927, -0.000191910047, 0.0264315344, 0.0134354196, 0.0333139822, -0.0557917692, -0.0028844662, -0.0416119732, -0.00589096174, 0.00727294292, -0.000678787648, 0.0103053693, 0.0181701537, 0.0172305293, -0.0271881148, -0.108947709, -0.0196467079, -0.0168278329, -0.034314625, -0.00217517116, -0.00902406219, 0.0140821747, 0.00545165641, -0.016388528, -0.0370480791, -0.034583088, 0.0300680064, 0.0392690115, 0.0365843661, 0.0210744496, -0.0101223253, 0.0173525587, -0.0107080657, -0.0211598706, 0.00265871221, 0.0274077673, -0.00843832176, -0.0411970727, 0.0217212047, 0.012282243, 0.0106226457, 0.00590011384, 0.00909117889, -0.0553036518, -0.0179749075, 0.00338936225, 0.0270660855, 0.00917049777, 0.0519844592, -0.0199761875, -0.0334360115, -0.0383904, -0.0314835459, -0.0232465714, 0.00807223469, 0.00397815323, -0.0368772373, -0.0340705663, 0.047054477, 0.0322645307, -0.0129839117, 0.0141187832, -0.0219042487, -0.029579889, 0.0117514161, -0.024662111, 0.0125812152, 0.0227950625, -0.0596478954, -0.0245278776, 0.0354372934, 0.0217212047, -0.0378778763, 0.0129595054, 0.0157051645, 0.0300680064, 0.0281887557, -0.0280911326, -0.0506177284, 0.03238656, -0.0095731942, -0.0151560316, 0.0155221196, 0.0477622449, -0.00503980787, -0.00643094117, 0.0120381853, 0.00792579912, -0.00397815323, 0.0051679383, -0.0233686, -0.0313615166, 0.0257969815, -0.0308001805, -0.0376826301, 0.0432959758, -0.0666767806, 0.0193294324, -0.013191361, 0.0298483521, 0.0156685542, 0.008737294, -0.0180725306, 0.0163641218, 0.00726684136, 0.000160258714, -0.0214527417, -0.000472863321, 0.0227218457, 0.0153268734, 0.019475868, -0.0157051645, -0.00344122457, 0.0119832717, 0.00073903962, -0.0351444222, 0.058769282, -0.0204521, -0.0143994503, 0.00223313505, 0.0101772388, 0.0310198329, 0.0112571977, 0.0277738553, -0.00611671573, -0.00306903548, -0.0195978973, -0.0362182781, -0.00131639047, -0.00588180963, 0.0320936926, 0.00309344125, 0.0303852819, 0.00248176977, -0.00198450056, -0.0165105574, 0.0146191036, 0.00149180752, -0.0238811225, 0.0261142589, 0.0222703367, -0.000645229651, -3.06503134e-05, 0.0249915887, 0.00287989015, 0.0147655383, -0.0329478942, 0.00780987134, -0.019927375, -0.050227236, -0.0269684624, 0.0433691926, 0.00535708386, 0.0274321735, -0.0171329062, -0.0166691951, -0.0298239477, 0.0373653546, 0.00145519874, -0.0280423202, -0.00587570807, -0.0136306668, 0.00662618782, 0.0320692845, -0.018560648, -0.0173769649, -0.0124591859, -0.00278836815, -0.0132401725, 0.0173769649, 0.0236492679, 0.0138137108, 0.00124851172, -0.00859085843, 0.0104701091, -0.0150218, -0.00375239924, 0.00471948087, 0.00109216175, 0.00136825291, 0.0150462054, -0.00334970281, 0.010738573, 0.0546202883, 0.00116461655, 0.000971657864, -0.04202687, -0.0105128195, -0.0270660855, 0.0108972117, -0.00795630645, 0.0188169088, -0.0549619719, 0.0373165421, -0.0215137564, 0.00549436687, 0.0284084082, 0.00190518156, -0.00252295472, 0.0374873839, -0.0348759592, 0.0213429146, -0.0104212975, 0.00884712, -0.00191128301, -0.00131867849, -0.0331675485, -0.00624179561, -0.0318252258, 0.0540833622, 0.00636382494, 0.00951217953, 0.0382439643, -0.00493913377, -0.00665669516, 0.0175233986, -0.0167912245, 0.0451264158, -0.0111839799, 0.0210378412, 0.00598248374, -0.0121358084, -0.0141675947, 0.0100491084, 0.0107568782, -0.00745598692, 0.0102992682, 0.0164007302, 0.0109399213, -0.000935811782, 0.00216754433, 0.00787698757, -0.00165807235, 0.0314347334, 0.00199670345, 0.00514658354, -0.0197565351, -0.0384148061, -0.000572774734, 0.016010236, 0.038854111, -0.0225143954, -0.00538454, 0.0243692398, -0.00340461591, 0.00601604162, -0.00935964286, -0.0291893948, 0.049592685, -0.0407821722, -0.00510692364, 0.0178040657, 0.00620518718, 0.0250892118, -0.000672304886, 0.0118185319, 0.00460660411, -0.0264803451, 0.00658347784, -0.0107629793, -0.010189442, 0.0164861511, 0.0109643275, 0.0204398986, -0.00785868336, 0.0320448801, 0.0148021476, 0.0450776033, -0.0129717086, -0.0515451506, -0.00742547959, 0.00142697943, 0.0420512781, 0.025113618, -0.028847713, 0.0256749522, 0.023478426, -0.00241312827, -0.00721803, -0.039122574, -0.00169620651, -0.0376338176, -0.0204032902, 0.0114280386, 0.0157051645, -0.0138015077, -0.0175478049, -0.0167790204, 0.00208059861, 0.00381646468, -0.0361206569, 0.0248695593, 0.00725463871, 0.0410994478, 0.00403916789, -0.00157570257, 0.00298819109, 0.029384641, -0.000522056362, -0.0119771706, -0.0341437832, 0.0109887337, 0.00867017731, 0.0202568546, -0.00145519874, -0.00251532788, 0.00302632526, -0.00155205943, -0.0252356473, -0.00137893041, 0.00645534694, -0.0194880702, 0.00566825829, -0.0145336827, 0.0274565797, -0.0367063954, -0.00257481704, 0.0200982168, -0.00615332462, 0.0111107631, -0.0207449719, -0.0545714758, -0.0131547526, 0.0236248616, 0.00732785603, -0.0235516448, -0.00292717642, 0.0361694694, -0.013191361, -0.0207937825, 0.00897525065, -0.00807833578, -0.011196183, 0.0483235791, 0.0220384821, 0.000491930405, -0.0159614254, -0.0261630695, 0.0252600536, -0.0191341862, 0.0376338176, -0.000411467365, -0.00486896699, 0.0323621556, 0.00234448677, 0.00834069867, 0.000929710281, 0.00521064876, 0.00201500789, -0.0156929605, -0.00506421365, -0.00932913553, -0.0107080657, -0.0133133903, -0.0168644413, 0.0518380217, 0.0154489018, 0.00140028552, -0.0130693316, -0.0299703814, 0.00498489477, 0.0341193751, -0.00803562533, -0.011196183, -0.0153024672, 0.0279935077, -0.000172175642, 0.0402940549, -0.0248451531, 0.0134354196, -0.0146801183, -0.0134720281, -0.00327953603, -0.00541504752, -0.00686414493, -0.02274625, 0.0239543412, -0.00364257302, -0.0289697424, -0.00959149841, -0.00979894865, -0.0046950751, 0.00712650781, -0.00851764157, -0.000792427396, -0.00200433028, -0.0415143482, 0.0133866081, -0.00415814668, 0.0228194688, -0.0260410402, 0.00893864222, -0.00430763233, -0.00756581314, 0.0161566716, -0.0135452459, -0.00795020536, -0.00340156513, -0.028213162, 0.00116385391, -0.0328990854, 0.00161383674, 0.00336800702, -0.016205484, 0.0150950179, 0.0439305268, 0.00142164063, -0.00801732112, 0.0282863788, -0.0125079975, 0.00649195584, -0.0104396017, -0.0132157672, 0.0288233068, -0.0195368826, -0.0179993138, -0.0115927784, -0.00934744, -0.00333139836, 0.0285792481, 0.00716921827, 0.000386680156, 0.0344854631, 0.0338997245, 0.0239909496, 0.0340949707, -0.00626010029, -0.0242350083, 0.000778317743, -0.00867017731, 0.0202446505, 0.0015268909, 0.00968302, -0.0223557577, -0.0167058036, 0.00223618583, 0.0329234898, -0.00822477136, -0.0188169088, 0.0225388017, -0.0180847347, -0.0216113795, 0.0155831343, -0.00931693241, 0.008371206, -0.0044052559, -0.00691905804, 0.0305561218, -0.008737294, -0.05696325, 0.00460050255, -0.0029988687, 0.0250404011, -0.0179871097, 0.0366331786, -0.00996368751, -0.0389029235, -0.0232831798, 0.00532962708, -0.00437474856, -0.000146721097, 0.0231855568, -0.00581164286, 0.021025639, 0.019658912, -0.0147899445, 0.0312394854, 0.0203666799, 0.0149729885, 0.00381646468, 0.0280911326, -0.0289209299, 0.0161322653, 0.0174501818, -0.0300924107, 0.0168034267, 0.0225754101, -0.00912168622, -0.00669330405, -0.00683973916, -0.0429787, -0.0209524203, -0.0395618789, 0.0192684177, 0.0110375453, 0.00723633403, -0.00607095473, -0.00930473, -0.00213551172, 0.0264315344, -0.00429237867, 0.0385368355, 0.0298971646, 0.010647051, 0.00834069867, -0.00156655046, 0.00977454241, -0.00553402631, -0.00139265868, -0.00884101912, 0.0240519643, 0.0125079975, 0.00854204688, 0.00236889278, 0.013740493, 0.0228072647, -0.020659551, 0.00628450606, -0.00608315784, -0.00868238, 0.00352969579, -0.00036951981, 0.00748649426, -0.0107629793, 0.0369504541, -0.0277250446, 0.000974708586, -0.0114158355, -0.0195856933, -0.021013435, -0.0193172283, 0.00821866933, 0.0168034267, 0.000101150799, 0.000723023259, -0.0102565577, -0.0128496792, -0.0169010498, 0.0161444694, -0.024479067, 0.0329234898, -0.0123127503, 0.0179505013, 0.012922897, -0.00521064876, 0.0165959764, 0.00762072625, -0.0377314426, 0.0048781191, -0.0170718916, 0.0120808948, 0.0099392822, -0.00438390067, -0.0335580409, 0.0223191492, 0.0180847347, 0.0110009359, -0.0272369273, 0.021379523, 0.0189511422, 0.0214893501, -0.024564486, 0.0291893948, -0.0232831798, 0.03238656, -0.0537904911, -0.0220872927, -0.00770004513, 0.01335, -0.00545775797, 0.00555538153, 0.0177186467, -0.00522895297, 0.0165715721, 0.000393925642, -0.0264071282, -0.0271881148, 0.0283107851, 0.00189908012, -0.00698007271, -0.0688733086, 0.000959454919, -0.00740717491, 0.0170108769, -0.011379227, -0.0177308489, -0.0323133431, -0.0104579059, 0.0190975759, 0.0233441945, 0.0130693316, 0.0184386186, -0.010738573, -0.0252600536, 0.024564486, 0.015473308, -0.00770004513, 0.026016634, -0.0271881148, 0.00926202, 0.0179993138, -0.0084688291, -0.0158882067, -0.00374934846, -0.0168644413, -0.0410750434, -0.0175722111, -0.00996368751, 0.00639433227, -0.0122212283, 0.0114097344, 0.0131791579, 0.0138137108, 0.00860916357, 0.0177796613, -0.0290917717, -0.006675, 0.0100369053, -0.0148021476, 0.00264650933, 0.0189145319, 0.0475181863, -0.00180908351, 0.0053509823, -0.021745611, -0.0166081805, -0.00660178205, -0.0136916814, 0.011379227, -0.0279446971, -0.0016748514, -0.0457121544, 0.0203910861, -0.0207449719, -0.00335275335, 0.0224655829, -0.0205741301, -0.0270172749, -0.0201226231, -0.00624484662, -0.0166203827, -0.0279446971, -0.0204032902, -0.0228804834, 0.0395618789, -0.0191585906, 0.00524420664, -0.0203544777, -0.00233838544, -0.00784037914, -0.00153909379, 0.00546691, -0.0182799809, -0.00785258226, -0.0167546142, 0.0282863788, 0.039122574, 0.00102962169, 0.0168156289, 0.000548368902, -0.0428566709, 0.0195978973, -0.0139601454, -0.0139601454, 0.0170108769, 0.0254553, 0.0501784235, -0.0167546142, 0.00328868814, 0.000474007335, -0.0160956569, -0.0122334315, -0.00047972746, -0.0210378412, -0.017657632, 0.0573537461, 0.0305073112, 0.0294822659, -0.00139037066, 0.0136550721, -0.0277738553, 0.00587570807, -0.00013060942, -0.0162664987, 0.00836510491, -0.0054333522, -0.0106531531, -0.00470117666, 0.0244546607, 0.00138198119, -0.0164373387, -0.00862746779, 0.0126666352, 0.00662008626, 0.0149363792, -0.0295554828, 0.00244211033, -0.0126056205, -0.00116080313, 0.00676042028, -0.0232343674, -0.0137893045, 0.0225021932, -0.0200860128, -0.00404526945, 0.0271881148, 0.00677872449, 0.00445406744, -0.00267396588, 0.000716921815, 0.00967081729, 0.0128252739, -0.0132035641, -0.0284572188, 0.0245278776, -0.00549436687, -0.0144970743, -0.0156685542, 0.0185362417, 0.0173403546, -0.00497879321, 0.00820036512, -0.0163153093, 0.00572927296, -0.00347783347, 0.000618535734, -0.0215259586, 0.012196823, 0.000883949338, -0.00141401391, -0.000237385015, -0.0208792035, -0.00612891885, -0.00741327647, 0.0157661773, 0.0112571977, 0.0185728502, 0.0140577685, -0.022660831, -0.0094816722, -0.00200280501, 0.00657737628, -0.00613502041, -0.0242594127, 0.0126910415, 0.00245431322, -0.0172183271, -0.00594587484, -0.0186704751, -0.014924176, -0.00666889828, 0.00779766869, -0.0115073575, 0.0188901275, 0.00745598692, 0.0175233986, 0.00979284663, 0.0561334528, 0.0018106089, 0.00366392802, -0.00967081729, -0.00978674553, -0.0271393042, -0.0335092284, 0.0295310766, -0.0260654464, 0.0112510966, -0.00742547959, 0.00955489, -0.00732785603, -0.000331576332, -0.0295066703, 0.00789529178, 0.0107568782, -0.0146313058, -0.000284671347, -0.0323621556, -0.00979284663, -0.0018792504, 0.00132706808, 0.0205863342, -0.0152048441, 0.00725463871, 0.0117209088, -0.00211110595, -0.0348271467, -0.00311479648, 0.000687939872, 0.000520149653, 0.000332911033, 0.00453033578, 0.0137771014, 0.0514475293, -0.00188230106, 0.0130327232, 0.000777936424, 0.0279446971, 0.00693736225, 0.00823697355, 0.00652856473, 0.00859696, 0.0200982168, -0.0189999528, -0.018926736, -0.0178894866, -0.0154000903, -0.00319106481, 0.00171146018, -0.00307666231, -0.0248085447, 0.0052136993, -0.00412763935, 0.0169132538, -0.0157051645, -0.0095670931, -0.0273589566, -0.00230482733, 0.00887762755, -0.0100308042, 0.0248451531, 0.00033672445, -0.00380426156, 0.0125079975, -0.00763903046, 0.023478426, -0.0176332258, -0.00410933467, -0.00727294292, 0.0172549356, -0.00068832119, 0.00472558243, -0.00356935547, 0.00233991072, 0.00522285141, -0.00114936288, 0.0134964343, -0.0073888707, -0.0172183271, -0.00259159598, -0.00290582143, 0.0337288827, -0.00578723708, 0.00687024649, -0.00909728, -0.0173647609, -0.0187192857, 0.00169620651, -0.0202812608, -0.0040422189, 0.00223618583, 0.0027121, 0.0342658125, 0.0236126594, 0.00577198341, 0.00301259686, 0.00355715235, 0.00859085843, 0.0108056897, 0.0102016451, 0.0280423202, 0.00056819868, -0.0070166816, 0.0229048897, 0.0087433951, -0.00271972665, 0.0106287468, 0.00540894642, 0.0267, 0.0051679383, 0.00675431872, -0.0360230319, 0.0144360596, -0.0142286094, 0.00384087046, -0.0064980574, -0.0125202006, -0.0172671378, -0.0255529229, -0.00123173266, 0.000994538306, -0.000228232821, 0.0194148533, 0.00403611735, -0.00946336798, 0.0136306668, 0.00244821166, -0.0104579059, -0.0277006384, 0.0246010963, 0.00732175447, -0.0220628865, 0.00294548087, 0.0101589346, 0.000960217614, -0.00102046959, -0.00847493112, -0.0016519709, 0.0229781065, 0.00490862643, -0.0214771461, -0.00297141215, -0.0191585906, 0.0168156289, -0.0187925026, 0.0323377512, 0.0253576767, 0.0187192857, 0.0146435089, -0.0219408572, 0.00140562432, 0.0180481244, 0.0364623368, -0.0229659043, 0.0292870179, 0.00501235109, -0.00010181815, -0.0186460689, -0.0121663157, -0.00438390067, -0.00669940561, -0.0265047513, 0.0155709311, 0.011745315, -0.00836510491, -0.0144970743, 0.000360558275, 0.00237651961, 0.00875559822, 0.0176210236, 0.00377985579, 0.00269684638, 9.38457333e-07, -0.0210866537, 0.0142164072, -0.0193416346, 0.0272369273, 0.00868238, -0.0261142589, -0.00545775797, -0.0277250446, -0.0318496339, -0.00239024777, 0.0274321735, 0.00477744499, -0.0111656757, 0.0208914056, -0.0210500453, 0.00500930054, 0.0317031965, -0.00174501818, 0.00630891183, -0.000925134227, -0.0182189662, -0.008005118, -0.0152292494, 0.00896915, -0.00881661288, -0.00351749291, 0.0188169088, 0.00978674553, 0.0075719147, -0.0195856933, -0.000682219747, -0.0186216626, -0.0136794783, 0.0192074031, 0.0200494044, 0.00351139158, 0.00704108737, 0.0121724168, -0.000672304886, -0.0203666799, -0.0332651734, 0.0241739936, -0.0210500453, 0.00417034933, -0.0271393042, -0.021745611, -0.00205924339, -0.0135452459, -0.025845794, -0.0320692845, -0.00775495823, -0.00526861241, -0.00644924538, -0.00802342314, 0.0229903087, -0.0250892118, 0.0112449946, 0.0375606, -0.00904846843, 0.0104762102, 0.00424661767, -0.0139357392, -0.0178528782, -0.00632721605, 0.0122395335, 0.00136825291, 0.0225876123, -0.0066505936, -0.0218188278, -0.000449982821, -9.17126e-05, 0.0276762322, -0.015839396, -0.00170078257, -0.0236858763, -0.0112022841, 0.0253332704, 0.00973793399, -0.0224411786, -0.00197077217, -0.00283412915, 0.00628450606, 0.0128130708, 0.00219347561, 0.00857255422, 0.0410994478, 0.0120625906, 0.0186704751, 0.00125613855, -0.0179993138, 0.00220567849, -0.0185728502, 0.00405137101, -0.0447115153, -0.00643704273, -0.0138869276, 0.0221727137, 0.0293602366, -0.0207815804, 0.0202690568, -0.00557673629, 0.022660831, 0.00281735021, 0.0104518048, -0.0142774219, 0.00107843347, -0.0162909031, -0.0102870651, 0.027114898, 0.00198602583, 0.0234296154, -0.00548216375, 0.0253332704, -0.0230879337, -0.0171451084, 0.0186094604, 3.16990045e-05, -0.00342292036, -0.0205497239, -0.0129106939, 0.0200616084, 0.0179505013, 0.0126056205, -0.00196467084, 0.0189755466, 0.00613196939, 0.0375606, -0.015827192, -0.024393646, -0.00274565793, 0.0249915887, 0.0127520561, 0.0261386633, 0.0211842768, -0.0159614254, 0.00350223924, -0.00415814668, 0.00588180963, 0.0132035641, -0.00537843909, -0.0131181441, -0.0239543412, -0.032020472, 0.000251685327, -0.0302144401, -0.00881051179, -0.011470749, 0.00301259686, -0.00665669516, -0.0150340032, -0.0407333598, -0.0497635268, 0.0095670931, -0.00128206972, 0.0248207487, 0.0165837742, -0.00334970281, -0.00197229767, 0.013557449, -0.0270172749, 0.0327770561, 0.00411238568, -0.0197077226, 0.0167546142, -0.0174989942, 0.0146923205, 0.0157051645, -0.0191219822, 0.012373765, -0.0103907902, 0.000883186643, 0.0379999056, -0.00584825128, -0.0301900357, 0.0166691951, -0.0022972005, -0.0222825389, 0.00957929529, -0.00662008626, 7.32652115e-05, 0.031654384, -0.00729124714, 0.00907897577, 0.023026919, -0.00555843208, 0.0282375664, 0.00764513202, -0.0137526961, -0.0103175724, 0.00133850821, -0.00982945599, -0.00452118367, -0.00615942618, 0.00805393048, -0.002161443, -0.0263339113, 0.0172061231, 0.0114036324, -0.0132157672, 0.0277006384, 0.0036669788, 0.0234296154, -0.0142164072, -0.014741133, -0.0362915, -0.0191463884, -0.0139113339, 0.0054242, -0.0109460233, -0.0205619279, -0.0375117883, -0.0224899892, -0.0137038836, 0.000195246786, 0.0495194681, 0.011104661, 0.00498794531, 0.00652856473, 0.0175844133, 0.0188169088, -0.000575062819, 0.00334970281, -0.00386527623, -0.00268769404, 0.0213429146, 0.0167790204, 0.0106653562, 0.010464008, 0.00549131585, -0.00371884112, 0.0286768731, -0.0160590485, -0.0175233986, 0.00498184375, -0.0189999528, -0.021208683, -0.00191738445, -0.0244668629, -0.0252112411, 0.00712650781, -0.00249092188, 0.00281124865, 0.0538881123, 0.021208683, 0.0308245867, 0.00921320822, -0.00356935547, -0.00541199697, -0.00457914732, -0.0079990169, -0.00338021014, 0.0194880702, 0.029213801, 0.0331431441, 0.000735226204, 0.00218127272, 0.0276518259, -0.0102931671, -0.0189755466, 0.00917659886, -0.0269684624, -0.00993318, 0.0186826773, -0.0269928686, 0.0314835459, 0.00203636289, 0.00868238, 0.0180725306, -0.00256566494, -0.000317276019, 0.0119710686, 0.00618383195, 0.0275542028, 0.0322645307, -0.00440830644, 0.00171603623, 0.0189633444, 0.0108361971, 0.00770004513, -0.000762301439, -0.00500624953, -0.00789529178, -0.0186948795, -0.00364562357, -0.0261630695, 0.00971962884, -0.00900575798, 0.00841391645, -0.0185362417, 0.0214039292, -0.00542114908, 0.00768174091, 0.00527776498, -0.0104151955, 0.0290429592, -0.00807223469, -0.0160834547, 0.0112694008, 0.0104396017, -0.00708379736, 0.000376765296, 0.00751700159, 0.00819426402, 0.0121846199, -0.0249793865, 0.017657632, 0.00939015, 0.0025107516, -0.0219042487, -0.00549436687, 0.0193660408, -0.0339729413, -0.0143384365, -0.00402696524, 0.0282619726, 0.0230879337, 0.00967081729, 0.000989962253, 0.00726684136, -0.00116232852, -0.00608010683, -0.00887762755, 0.00893254, 0.00185484451, -0.00639433227, 0.00737056648, -0.0101528326, 0.0099453833, 0.0180725306, -0.00632721605, 0.02366147, -0.00870068464, 0.000604426081, 0.00866407622, 0.0230635274, 0.0026480346, -0.0312883, 0.000778699119, 0.0408065803, 0.00199975423, -0.0116781984, 0.000511378807, -0.00510997465, -0.00821866933, 0.00898745377, -0.00795630645, -0.0124591859, 0.0089264391, -0.0219652634, -0.0146313058, -0.0121602137, 0.00585435284, -0.00114631222, -0.0185850542, 0.00696786959, 0.00467066932, -0.00373104401, 0.000661245955, -0.00717531936, 0.0232709758, 0.0317520089, 0.012379867, -0.00224686344, 0.00369443535, 0.00429542921, -0.000310602569, -0.00153680576, 0.00770004513, -0.00694956537, 0.014558089, 0.00820036512, -0.00632111495, -0.00647365116, -0.0313859209, 0.0168278329, 0.0112999082, -0.0109826317, -0.013557449, 0.0259678233, 0.0271637104, 0.00863967, -0.0342902169, 0.013825913, 0.012379867, -0.00269532087, -0.00461575622, 0.00655907206, 0.0108606024, -0.00358765968, 0.00868238, -0.0065529705, -0.000974708586, -0.0151560316, 0.0177552551, -0.0219164528, 0.00137740513, 0.0103114713, 0.0193904471, 0.0145336827, 0.0264803451, 0.00428322656, -0.0188291129, 0.0170718916, 0.0108239939, 0.00937184598, -0.0152292494, -0.00475608977, -0.00252753077, 0.00263888249, -0.0256993584, -0.0118978508, -0.0020470405, 0.0340217538, -0.00497269165, 0.0272613335, -0.0155953374, -0.00399950845, -0.0170962978, 0.0143506387, -0.0157661773, -0.00645534694, -0.0127276499, -0.0112571977, 0.00521980086, -0.0239055287, -0.0144238565, 0.00746208802, 0.0138503192, 0.000148532476, -0.011196183, -0.0171695147, -0.0182189662, 0.00721192826, -0.00367002958, 0.0338997245, 0.00621128827, -0.0189755466, -0.0030888652, -0.0059062154, 0.00339241303, -0.000820646645, 0.00401476212, -0.00805393048, -0.00288751698, 0.029579889, 0.00288141542, -0.008462728, -0.00687024649, -0.00951217953, -0.0218432341, 0.0209646244, 0.0176942404, 0.00132935611, -0.00020783105, 0.0123554608, -0.0110497484, 0.0150462054, 0.00394459534, 0.00905456953, -0.00653466582, -0.00519844564, -0.0140943779, 0.00906067155, -0.00485981442, -0.00152231485, -0.00214161328, -0.000924371532, 0.00311632175, -0.00524115609, 0.0189023297, 0.00154824601, 0.00917049777, 0.0129106939, 0.0200738106, 0.0173159502, 0.00575672975, -0.00262210332, -0.0157783814, -0.00427407445, -0.0058055413, -0.00774275558, -0.0376582257, 0.000547606207, -0.00999419484, 0.0146679152, 0.0271637104, 0.00921320822, 0.00381951523, -0.00460965466, 0.0123859681, 0.00158485479, 0.00821866933, 0.00763903046, 0.00170383335, 0.0170718916, -0.0062784045, -0.00724243559, -0.00153680576, -0.00416424777, -0.0250404011, 0.00296836137, 0.041416727, 0.00585435284, 0.00712040626, 0.00402086368, -0.00707769627, 0.0132401725, 0.00942675862, -0.00374629768, 0.0105128195, -0.0174135733, 0.0111168642, -0.0153634818, -0.0178528782, -0.000788614, -0.00160773529, -0.0125690121, -0.00713871093, -0.000761157426, -0.00942675862, -0.00184416689, 0.00797461066, 0.00889593177, -0.00107156928, -0.00541199697, 0.00815765467, -0.0180969369, -0.0236126594, 0.016742412, 0.0059885853, -0.0053875912, 0.00545775797, -0.006675, -0.00512827886, 0.00128664589, 0.00618078141, -0.0152780609, -0.00517404, 0.00591536751, -0.00995148439, -0.00690685539, -0.00134537241, 0.0027121, -0.017462384, -0.00349918846, -0.00842001755, 0.00812714733, -0.00750479847, -0.00494828587, 0.00166722457, 0.011373125, 0.00211873278, -0.00172213768, 0.0154367, -0.00228957366, 0.0135818552, 0.0355105102, 0.0232221652, -0.0133377966, -2.20701331e-05, 0.0179871097, -0.0255041122, 0.00466456776, 0.0423197411, 0.00385612412, 0.017291544, 0.0169498622, 0.0107019646, 0.00413069, 0.00186399673, 0.00074247166, 0.010189442, -0.0148143498, -0.0106531531, -0.00926812086, -0.00230787811, -0.0169986729, -0.0149729885, -0.0304584987, 0.00307818758, -0.00658957893, 0.0105921384, -0.00600994, -0.0001831392, -0.0207083635, 0.00214161328, 0.0109094139, -0.019658912, -0.0181701537, -0.0143140303, 0.00161993818, 0.00605265051, -0.00207754783, -0.0214283355, -8.13210499e-05, -0.0226852372, 0.0144848712, -0.000327000249, 0.0232831798, 0.00522285141, 0.00940845441, 0.0131669557, 0.0142408125, -0.00763903046, -0.0150218, 0.0161200631, -0.00693736225, 0.00723633403, 0.0419780612, -0.0105128195, -0.021745611, 0.00890203286, -0.00798681378, -0.0158149898, 0.0129106939, -0.0133988112, -0.00344122457, 0.0157539751, -0.00017007826, 0.00811494514, 0.0137648983, 0.0157539751, -0.0196833163, 0.0234174114, 0.000484303571, -0.00532047497, 0.0144848712, -0.0212330893, -0.00212025805, -0.00380121102, -0.00646755, 0.00421000877, 0.00242990721, 0.00197534845, -0.0232343674, -0.00915219355, 0.00787088647, -0.023478426, -0.00878000446, 0.0128862876, 0.0123371566, 0.0133377966, 0.00663228938, -0.00480490131, -0.0286036544, -0.00589401228, -0.0134110134, -0.0141553925, 0.0097562382, 0.0103053693, 0.00391103746, -0.0220750906, -0.0148753645, -0.0382439643, -0.0168400351, 0.0048781191, -0.00777936447, -0.0269684624, 0.00901186, -0.0270904917, -0.00654686894, -0.000929710281, -0.0106897615, 0.000903779059, 0.0202202462, -0.00357545679, 0.0067055067, -0.010372486, 0.00148875674, -0.00403306633, 0.00654686894, 0.0150462054, -0.00153680576, 0.0011196183, -0.0141797978, -0.011647691, -0.00527166342, -0.00877390243, -0.00164129329, -0.00544555485, -0.00976233929, 0.00124241028, -0.000429771753, 0.00172671385, -0.0109033128, 0.0154855112, -0.00326428236, 0.00752310269, -0.00425882079, -0.0072973487, 0.0126300268, -0.0118795466, 0.00465846621, 0.024759734, -0.03985475, -0.00326123158, -0.00414289301, 0.00791969802, 0.0211720746, 0.031654384, -0.000615485, -0.00943286065, 0.00105631561, -0.0456389375, 0.00494218431, -0.0195490848, 0.0105067175, -0.00951828063, 0.00434119, 0.0197687373, 0.00431678444, -0.00633331761, -0.00282040099, 0.0265047513, -0.00092132081, 0.0097562382, 0.0186460689, 0.0151194232, -0.00928642508, -0.00174501818, -0.00138808263, 0.0138503192, -0.00268616877, -0.0197809394, 0.0225754101, 0.000510616112, 0.0118246339, 0.0148875676, 0.0250648074, 0.00300497, 0.00382256601, -0.0163153093, 0.0114036324, -0.00804782845, 0.0107751824, -0.00960370153, 0.00192348589, 0.00225906633, -0.0141675947, 0.0142408125, 0.00105173956, 4.89547019e-05, 0.00150553579, -0.00841391645, -0.00861526467, 0.0166081805, 0.00687024649, -0.0104029933, -0.0199639834, 0.000580020249, -0.0136062605, -0.0163153093, 0.00582079496, 0.0267976224, 0.0120015759, 0.00404832, 0.0114036324, -0.0107568782, -0.00205619284, 0.00533267809, -0.00349918846, 0.00612891885, 0.000848865951, 0.0222459305, 0.000994538306, -0.0112938061, -0.0095976, 0.00834680069, 0.00531132286, 0.00466761878, 0.0133011872, 0.00857865624, -0.000836663, -0.00500930054, -0.0130937379, 0.00254278444, -0.00244973716, -0.00610146206, -0.00565605564, -9.09975861e-05, -0.0158638023, 0.00038763351, 0.00521064876, 0.00595807796, 0.0128374761, 0.00293785403, -0.0133255934, -0.0180359222, 0.0222703367, 0.00170383335, -0.0193294324, -0.0304340925, 0.00272887899, -0.0204521, -0.0177308489, 0.00527471397, 0.024564486, -0.0109399213, 0.0109460233, 0.0538393036, 0.00727904448, -0.00901186, -0.0131547526, -0.0404648967, -0.000273612444, -0.0137526961, -0.0237468909, 0.001978399, -0.0220628865, 0.0326550268, 0.0110497484, 0.0172305293, -0.00352359447, 0.0278714783, -0.0044052559, 0.00868848246, 0.00826138, -0.0029744627, 0.00106089178, -0.00568961352, -0.00468287244, 0.0292626116, 0.000325665547, -0.0149119738, 0.00244211033, -0.00291649881, -0.0152536556, 0.00782207493, -0.0104151955, 0.0116781984, 0.0179505013, 0.00981725287, 0.0116965026, 0.00164281868, -0.00629060762, -0.00152384012, 0.0025107516, 0.00018723862, 0.0104335006, 0.000463329779, -0.0192562137, 0.00793800224, 0.00411543623, 0.00418865355, -0.00592146907, -0.021196479, 0.037023671, -0.0127642592, 0.00219195033, -0.0355593227, -0.0141187832, -0.00269532087, -0.0109094139, -0.00379510946, 0.00310106808, 0.0036761309, 0.0126666352, 0.0212330893, 0.013740493, 0.00567130931, 0.00269532087, 0.00978064351, 0.0035541018, 0.00264193304, 0.0282619726, -0.00088700006, 0.0158149898, -0.0143140303, 0.00287836487, -0.0184142124, 0.00370053691, 0.0070166816, -0.0102565577, 0.0112205893, -0.0146923205, 0.000799291534, 0.018560648, -0.00217059511, 0.00324292714, 0.0154122934, 0.014741133, 0.0179138929, 0.0150828147, 0.00387442857, -0.00925591774, -0.0187314898, -0.0158882067, -0.0104090944, 0.0140211601, -0.00987826753, -0.00668720249, -0.00529301865, -0.0337776951, -0.00441745855, -0.0103236744, -0.0072973487, 8.24174058e-05, -0.0159004107, -0.000433203822, -0.0254308935, 0.00596417906, -0.0121175041, 0.0147533352, -0.00088700006, 0.0169132538, 0.00392018957, 0.00498489477, 0.0181823578, -0.00390188512, 0.0176942404, -0.00559809152, 0.0115927784, -0.0114280386, -0.000639128149, -0.00770004513, 0.006675, -0.00533877918, 0.000872509088, 0.00564385252, -0.013105941, -0.0138381161, -0.00507336576, 0.0225143954, 0.0294822659, -0.0309710223, 0.00296073454, 0.0176088195, -0.00527471397, 0.0143262334, 0.00171603623, 0.0133377966, -0.0240031518, 0.00816375669, -0.0237590931, -0.0204398986, -0.017645428, -0.0119344601, 0.00478354655, -0.0046493141, 0.0121663157, -0.0072058267, 0.0165105574, -0.0190243591, -0.012105301, -0.00210805517, 0.0104884133, -0.00565910619, 0.0116354879, 0.0285792481, 0.0157661773, -0.0236248616, 0.00605875207, -0.00715701515, -0.00305378181, -0.0192562137, 0.00173891673, 0.00714481203, -0.00544555485, -0.0106287468, 0.0240641665, -0.00343817403, -0.0109643275, 0.00941455644, 0.01727934, 0.00212330883, 0.00305378181, -0.00215839222, -0.0282863788, -0.0332895778, -0.00679702871, -0.00352054369, 0.00293937931, -0.0109460233, -0.0059062154, 0.0060343463, -0.0106409499, 0.0175111964, -0.027847074, -0.0158638023, -0.00928642508, -0.00337410858, -0.00148951949, 0.00485981442, 0.0251380242, 0.0162909031, 0.0006505684, 0.00714481203, -0.0195124764, -0.00540589541, -0.0215991754, -0.00677262293, -0.00898135267, -0.00056324125, 0.000235478306, -1.32992809e-05, -0.0281887557, -0.00120198808, 0.0100796157, 0.0093840491, -0.00015024851, -0.0154855112, -0.00144299585, 0.00388053, 0.0213551167, 0.00113639736, 0.00950607844, 0.00809664, -0.0141797978, 0.0232465714, -0.00476829289, -0.022477787, -0.00845052488, -0.0151682347, -0.00561639573, -0.0015497714, -0.00824307557, -0.00909728, 0.00420695823, -0.0140455663, 0.00273803109, -0.00829798821, -0.0104457028, 0.0138747245, 0.0188291129, 7.05958228e-05, 0.00513438042, 0.0304096881, -0.00174044212, -0.000465236488, 0.00776106, 0.0181701537, -0.00734616024, 0.00415204512, 0.0188169088, -0.0194514617, -0.0280667264, -0.0121480115, 0.01055553, 0.0123127503, 0.0169986729, -0.0204643048, 0.00949997641, 0.00887152646, -0.00937794708, 0.000702049467, -0.0087433951, 0.0115012564, -0.010280964, -0.00942065753, 0.00323987636, -0.00539979385, -0.0223435536, 0.0120198801, 0.0287744962, 0.00106241705, -0.0363403074, 0.0142530156, -0.00351139158, 0.00229109894, 0.00839561224, -0.00312699936, 0.013740493, 0.00672381138, -0.0113975313, -0.0334116071, -0.0094816722, 0.0120015759, 0.0166325867, -0.00960370153, -0.00383171835, -0.0157173667, 0.0178040657, -0.0091094831, 0.0120686926, 0.0038591749, 0.00928642508, -0.0286524668, -0.0222581346, 0.0142286094, 0.0219042487, 0.000337677804, 0.0113304155, 0.0234418176, 0.00712040626, 0.0161322653, -0.00997589063, 0.00787088647, -0.000287150062, -0.0134720281, 0.0176820382, 0.00615637517, 0.0272613335, -0.00546996063, 0.0220994968, 0.00776106, 0.00276853843, 0.00826748088, 0.00770614669, -0.00647975272, 0.000975471281, 0.0133133903, -0.00774275558, 0.00222855899, -0.000262553542, 0.00370663824, -0.018206764, -0.00810884312, -0.0188901275, -0.00727904448, -0.0117148077, -0.0032124198, 0.00848713424, 0.0214527417, -0.000416424795, -0.00941455644, -0.0120930979, 0.0141797978, 0.00764513202, -0.0133866081, 0.0408309847, 0.00103343511, -0.00325513, 0.00608315784, 0.0144726681, 0.00660178205, -0.0113487197, -0.0137160867, -0.00802342314, 0.00289819459, 0.00620823773, -0.0175966173, 0.033484824, 0.0068336376, -0.00323377503, -0.00685194181, 0.0123920692, -0.0109887337, -0.0072058267, 0.00270599849, -0.0272857379, -0.0209890306, 0.0168888476, 0.0146435089, 0.0105738342, -0.0112938061, 0.0134110134, -0.0103663839, -0.0007325568, 0.0262606926, -0.00309496676, -0.0223801639, 0.00474998821, 0.0128252739, -0.00189755473, 0.0154367, 0.00827358291, -0.0187314898, 0.00868848246, -0.00114097341, -0.00411848677, -0.00814545155, 0.0198175497, -0.00751700159, -0.0063699265, -0.0159614254, -0.00143308088, -0.020476507, -0.00108224689, -0.0301412232, 0.00048621028, -6.25399844e-05, 0.0252600536, 0.00783427712, 0.00368528324, 0.016388528, -0.00581774395, -0.0216723941, 0.0168278329, -0.00776106, 0.000434347836, 0.00801732112, -0.0135940574, -0.0144238565, 0.00147502846, -0.00125079975, -0.00767563935, -0.000691753288, -0.00908507686, 0.00146740163, 0.0120198801, -0.0167790204, 0.0179627053, 0.018560648, 0.0072973487, -0.0145214796, 0.0150950179, -0.000512904138, -0.0127032446, -0.00803562533, -0.00156655046, -0.0115500679, -0.00746818958, -0.0275053922, 0.0110070379, -0.0018106089, -0.014192001, -0.016388528, -0.0102443546, 0.0144360596, -0.0059428243, -0.00695566693, -0.0212574936, 0.0181213431, -0.0193416346, -0.0314835459, 0.014741133, -0.0431739464, -0.00717531936, -0.013105941, 0.000560953165, -0.012013779, 0.0110680526, -0.00872509088, 0.00932303444, -0.00226821867, 0.033118736, -0.00857865624, -0.0157417729, 0.000638746831, 0.0138869276, -0.0232343674, 0.0128130708, 0.00522895297, 3.96595024e-05, -0.00812104624, 0.00568351196, 0.00809664, 0.00697397115, 0.0311174579, 0.000279904576, -0.00109368714, -0.0112449946, 0.0189511422, -0.00066696608, -0.0179993138, 0.00673601404, 0.00557368575, 0.00973183196, -0.00421000877, -0.00808443781, -0.0199883897, 0.00981725287, 0.00303090131, -0.0099453833, -0.00548521429, 0.00726684136, -0.010372486, -0.00979284663, 0.00066544069, -0.0112022841, 0.0159614254, -0.0155831343, -0.00179230457, 0.0323133431, -0.0118063297, 0.00133850821, -0.0238567162, 0.00474998821, 0.00425271923, 0.0276274215, -0.0237346888, 0.0252844598, 0.0153390756, 0.00135605, 0.0276518259, 0.00306293392, -0.0099453833, -0.024479067, -0.0102016451, -0.0117514161, 0.019658912, -0.00592757063, 0.00204093917, -0.00998809375, -0.013825913, 0.01819456, -0.00917049777, 0.0203544777, -0.0086518731, -0.0219042487, 0.0104518048, 0.008828816, -0.014924176, -0.00632721605, 6.96901407e-05, 0.0159004107, 0.00459135044, -0.00132249191, 0.0133377966, -0.00400866056, -0.00677872449, -0.00968912151, -0.00183501479, 0.00132020388, -0.00870678667, 0.0118490392, 0.0160590485, 0.0196345057, -0.0111473715, -0.00189755473, 0.0112510966, 0.00834069867, -0.000602138054, -0.000196581488, -0.00435034232, -0.00832239445, 0.0100186011, -0.000116404459, 0.00106089178, -0.015839396, 0.0237957016, 0.0105616311, -0.01055553, 0.00430763233, -0.00973793399, -0.00521675032, 0.0164007302, -0.00233838544, 0.0103602828, -0.00559809152, 0.0164007302, -0.00545775797, 0.00810274202, -0.0114158355, 0.00344732613, -0.0157539751, 0.00568351196, -0.0236492679, -0.00736446492, 0.0138137108, -0.0343878418, 0.00508861942, -0.0266511869, -0.00723023247, 0.0134232165, 0.0202080421, 0.00413069, -0.0169620644, -0.0117819235, 0.0135086374, 0.00588486, 0.00851154, -0.0046950751, 0.0151926409, -0.00295463298, -0.0185240395, 0.00107919611, -0.00386222545, 0.00140181091, 0.00554622896, -0.00913999, -0.0294334535, 0.0161566716, -0.0033710578, -0.00496048853, 0.00156960113, -0.0239177309, 0.00288294093, -0.0154244965, 0.0323133431, 0.00716921827, -0.00808443781, 0.00693126116, -0.0119344601, -0.0263095051, 0.0057689324, 0.00107690808, 0.00934744, 0.0175111964, -5.87742397e-05, 0.00840171333, -0.00523810508, 0.00503675686, 0.000432441127, -0.00223160977, -0.00603739684, 0.00164281868, -0.000156540642, 0.00412763935, -0.00694346381, 0.00276548765, 0.00486286543, -0.00274413265, -0.0134720281, 0.0221849158, 0.0119527644, 0.0186826773, -0.0128252739, -0.00855425, -0.00629060762, -0.0073888707, 0.0141797978, 0.0182433724, 0.00916439574, -0.000103057508, -0.0109582264, -0.00841391645, 0.014741133, -0.00656517316, -0.0225510038, 0.000713108398, -0.0205741301, -0.00203178683, 0.00617162883, -0.00887762755, -0.00454558944, 0.0124164755, -0.0190487653, 0.00946946908, -0.0180969369, -0.00698007271, 0.00385612412, -0.00535403285, 0.00368833379, -0.010189442, 0.0188535172, -0.0185728502, 0.0048323581, 0.00195856928, 0.0117514161, -0.000200013557, 0.00563775096, 0.0132279703, 0.0388785154, -0.00385002256, -0.000792427396, -0.0011196183, -0.00165044551, 0.00978064351, 0.0120747937, -0.014741133, -0.0156197427, 0.0110192411, -0.00940845441, 0.0127520561, 0.0055858884, 0.00239024777, 0.0169864707, 0.00638823071, -0.000421382225, -0.000219461974, -0.0237835, -0.00206534495, 0.0119466633, -0.00103877392, 0.0173769649, 0.00636382494, 0.0100002969, -0.0175233986, -0.0184752271, -0.00227737078, 0.00762682781, 0.00303547736, -0.0288965255, 0.00559199, -0.0195002723, -0.00400866056, 0.00762682781, 0.00139952288, -0.00981115084, -0.0128496792, 0.00535708386, 0.00286463648, -0.0066505936, -0.00283718, 0.0125812152, -0.0133866081, -0.00200433028, 0.00202110945, 0.00132783072, -0.00224686344, -0.008920338, 0.00971962884, -0.024479067, 0.000747047772, 0.00965251308, 4.71194944e-05, 0.00903626531, -0.0190853737, -0.0322645307, 0.00939625129, 0.00611061417, -0.00184721767, 0.00633941917, 0.00016588351, 0.00622349139, 0.00103648589, -0.031654384, 0.010921617, 0.0219530612, -0.00327038369, -0.0109582264, -0.0336068533, 0.0146557121, -0.00284023071, -0.0192318093, 0.00442661066, -0.014741133, -0.0146557121, 0.0172427315, -0.038756486, -0.00362426857, 0.00460965466, 0.0109582264, -0.0342902169, -0.0208547972, -0.00708989892, -0.0154611049, -0.0023521136, -0.0133377966, -0.00054379279, -0.000692516, -0.0124957943, -0.0386832692, 0.0138747245, 0.00913999, -0.0256017353, 0.00794410333, -0.0225021932, 0.00812104624, -0.0072058267, -0.0148509592, -0.014008957, 0.0135940574, -7.09295e-05, -0.00109444978, 0.000812257174, 0.0124286786, 0.0144482628, 0.000616629, -0.0110924579, 0.00162146357, 0.0272125211, -0.0332651734, 0.0386344567, -0.0109521244, -0.0158638023, 0.0213185083, 0.0202202462, 0.00315445592, -0.0255773291, 0.0191463884, -0.00932913553, 0.00528081553, -0.00163671724, -0.00519539509, -0.0389029235, -0.0142286094, -0.00661398517, -0.00196619611, 0.0308734, -0.0104273986, 0.0176942404, 0.00737666758, 0.029945977, 0.0125446059, -0.000381150719, -0.0071143047, 0.00738276914, -0.00979894865, -0.00851154, 0.00135605, -0.0102565577, -0.00546080852, -0.00288294093, -0.00257786782, -0.0127276499, 0.014008957, -0.0102321524, -0.027847074, -0.0238689203, 0.0102443546, 0.00611671573, 0.0117331119, -0.00893254, -0.0290185548, -0.0068336376, 0.0266755931, -0.01802372, 0.0106714573, -0.00416119723, 0.00278531737, -0.0268464331, 0.00391408801, -0.0138625223, 0.00421916088, 0.0266267806, -0.00254125893, -0.0218310319, -0.0203422755, -0.00671771, -0.00973793399, 0.00982945599, -0.0150462054, -0.008371206, -0.00257329177, -0.00760852313, -0.00862746779, -0.024759734, 0.00346868113, -0.0295554828, 0.00199670345, -0.0116904015, 0.00313005014, -0.0130815348, -0.0152658587, -0.0202812608, 0.00597333163, 0.0102382535, 0.0113182124, 0.0150950179, -0.00559199, 0.00168247824, -0.00408187835, -0.000449982821, -0.00413374044, 0.0105799353, 0.0143628418, -0.00209737755, 0.0033252968, 0.00397205167, -0.0300436, -0.00784037914, -0.000134327507, 0.00443881378, -0.0106836604, -0.00102046959, -0.00884712, 0.00148189266, 0.000494981126, -0.0418316238, 0.00216449378, 0.00103953667, 0.0111229653, 0.0164495427, 0.0273101442, 0.00252905604, 0.0121480115, 0.00805393048, -0.00518624298, -0.00117224338, 0.0167058036, -0.0221239012, -0.00676042028, -0.0259434171, 0.0355593227, 0.0146557121, -0.0187314898, -0.00615942618, 0.01727934, -0.00791969802, 0.000775267, -0.00425882079, 0.0183898062, 0.0128740855, -0.0306293406, 0.00336800702, -0.0117270099, 8.56111437e-05, 0.00789529178, -0.00752920425, -0.0106409499, -0.004231364, 0.00510387309, 0.00448762532, -0.0116659952, -0.00569571508, 0.00904846843, 0.00576588186, 0.00103419786, 0.0364623368, -0.00163671724, 0.0081820609, -0.0260654464, 0.0230147149, -0.0109155159, -0.0194880702, 0.0190243591, -0.003956798, -0.00688855071, 0.002115682, 0.00246194, -0.0112449946, 0.0107324719, 0.00560724363, -0.0146191036, 0.0133377966, -0.0244058482, -0.0283595957, 0.0131181441, 0.00714481203, -0.00809664, -0.00359681202, 0.0114341397, -0.00702278316, 0.0225388017, 0.00433508866, -0.00797461066, -0.00787698757, -0.0236004554, -0.025113618, 0.00588180963, 0.0128984908, 0.00486591598, 0.00827358291, 0.00327038369, 0.0029973432, 0.0111534726, 0.00208517467, -0.0223069452, 0.0225998163, 0.00662008626, -0.0075719147, 0.027114898, 0.00824307557, 0.00317276036, -0.0117575172, -0.000960217614, 0.00935964286, -0.00259159598, -0.0127642592, 0.008005118, -0.000319754763, -0.0156807583, -0.000666584761, -0.000299162319, -0.000546462194, 0.0392446034, 0.00961590465, -0.00859085843, -0.0156685542, -0.0171573125, 0.00293785403, 0.0174867902, 0.0115012564, -0.0110009359, -0.0297019184, -0.00992707908, -0.0134964343, 0.00478049554, -0.0198053457, 0.0138625223, -0.000721879245, -0.000542648777, 0.00338631147, 0.0173403546, 0.016559368, 0.021574771, 0.00348698557, 0.00719972514, 0.0216479879, -0.0210622475, -0.00470422721, 0.0195490848, 0.0101223253, -0.017657632, -0.0168278329, 0.0203544777, -0.0294090472, -2.81477605e-05, 0.0206717532, -0.0107873855, 0.0154489018, -0.0156197427, 0.0116110826, 0.0208914056, 0.00863967, 0.00327953603, 0.0176332258, -0.00613196939, -0.00443576323, 0.00713260937, 0.000615866331, 0.0176942404, -0.0100857168, 0.00394764589, -0.0109033128, -0.00801122, -0.0175111964, 0.0125202006, -0.00823087245, -0.0139601454, -0.012739853, 0.00407882733, 0.0190609675, -3.52502429e-05, -0.0196223017, 0.00860916357, -0.00143308088, -0.00871899]
03 Apr, 2023
Node.js Stream transform.destroy() Method 03 Apr, 2023 The transform.destroy() method in a Readable Stream is used to destroy the transform stream and also emits an ‘error’ event optionally. Moreover, the transform stream releases any internal resources after this call is made. Syntax: transform.destroy( error ) Parameters: This method accepts single parameters error which emits an error event optionally. Return Value: It emits an error event if any error is made in creating a stream else it only destroys the transform streams. The below examples illustrate the use of transform.destroy() method in Node.js: Example 1: javascript // Node.js program to demonstrate the // transform.destroy() method // Accessing zlib module const zlib = require("zlib"); // Create a transform stream const transform = zlib.createGzip(); // Calling destroy method transform.destroy(); transform.destroyed; Output: true Example 2: javascript // Node.js program to demonstrate the // transform.destroy() method // Accessing fs module const fs = require("fs"); // Accessing zlib module const zlib = require("zlib"); // Create a readable stream const readable = fs.createReadStream('input.text'); // Create a writable stream const writable = fs.createWriteStream('output.text'); // Create a transform stream const transform = zlib.createGzip(); // Calling pipe method readable.pipe(transform).pipe(writable); // Calling destroy method transform.destroy(); console.log("done..."); Output: done... Here, the transform stream is destroyed so the piping made is also removed. Reference: https://nodejs.org/api/stream.html#stream_transform_destroy_error 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
https://www.geeksforgeeks.org/node-js-stream-transform-destroy-method?ref=asr10
PHP
Node.js Stream transform.destroy() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, PHP Tutorial, PHP
GeeksforGeeks
[-0.00667116838, 0.00754776644, -0.00316638802, 0.0338779353, 0.00727705238, -0.0221985541, -0.013922439, 0.0179186948, -0.00819877, 0.0233329758, -0.011602032, 0.0275870543, -0.0365077294, -0.0147345811, 0.0422056131, -0.0361725576, -0.0369202457, -0.0125559773, -0.00635211263, 0.00721259648, -0.0128460275, 0.0162299536, -0.0227142014, -0.0116084777, -0.0314544, 0.0132263163, -9.08926595e-05, -0.0104869483, -0.0298043322, -0.0223274659, 0.00243964954, 0.0200586244, 0.0127686812, -0.0226497445, -0.00352895143, -0.00705145719, 0.00484707113, 0.0561022721, -0.0380546637, -0.00137210148, -0.00375776924, -0.0180218238, -0.0358631723, 0.0232556295, -0.00352572859, -0.0129040377, -0.046279218, -0.020213319, -0.0234361049, -0.0100099752, 0.0061522997, -0.00646491, 0.0222759023, -0.00819877, 0.0136775067, 0.0097457068, 0.00874664355, -0.00132859382, 0.0170807689, -0.0357342586, 0.0313512683, -0.0546069, 0.0164619945, 0.000728752639, -0.00246704323, 0.00686453562, -0.0185245778, 0.00605883915, -0.00332913874, 0.039318, -0.0295465086, 0.0388539173, -0.00236713677, 0.013419684, -0.0142704993, -0.0152760092, 0.00297140935, 0.0194914136, -0.0160494782, 0.00608462142, -0.021927841, -0.0115826959, 0.012207916, 0.00602983404, -0.00543361856, -0.0190531146, -0.0450158864, -0.0154564846, 0.0440361574, -0.0084759295, 0.0204066858, 0.0366624221, -0.00935897231, -0.0188726392, -0.0358116068, 0.00693543721, -0.0171581171, -0.0051629045, -0.0571335629, 0.0193882845, 0.00324212341, 0.00701922923, -0.027174538, -0.0110477125, -0.02270131, -0.0273034498, 0.0151084242, -0.0209352225, 0.046949558, 0.0761608928, 0.0509973764, 0.00628443388, 0.0189113133, 0.0343162343, -0.0263366122, -0.0160752609, -0.00669695064, -0.0336201116, 0.0108414544, -0.0109381378, -0.014631452, -0.017183898, -0.0118405186, 0.0783781707, -0.025692055, 0.0140642412, -0.0142704993, -0.0219149496, 0.0260530077, 0.0318927, -0.0200586244, 0.0010812449, -0.0120532224, 0.00216087839, 0.0133423368, -0.00608462142, -0.016951859, 0.0262979399, -0.012207916, -0.00739951851, -0.000358736434, 0.0203293394, 0.0227915477, -0.0107125426, 0.000713847228, 0.044293981, -0.0335427634, 0.0184987951, -0.00191594672, 0.00315188547, -0.0271229725, -0.0382609256, 0.0178671293, -0.00475683296, -0.0149021661, -0.00689031789, -0.0080505209, 0.0332849398, -0.0349350087, -0.0274065789, 0.00998419337, -0.0289277341, 0.0221856646, 0.00643590512, -0.0116084777, 0.0237326, 0.0327950791, 0.0267878026, 0.037899971, 0.0351928324, -0.048934795, 0.0295465086, -0.00734795351, 0.0236294717, -0.0405555479, -0.0197234545, 0.0118856374, -0.0022462823, 0.0280253533, 0.00152518379, -0.0336201116, 0.0104676113, 0.00625865161, -0.0139997853, -0.00774113368, 0.00843081, 0.0164491031, -0.00243803812, -0.0142833907, -0.0262850486, -0.0347029679, 0.020213319, 0.0178800207, -0.0340584107, 0.0156885255, 0.0304231066, -0.0499145202, -0.0232685208, 0.029726984, -0.00981660839, 0.00288439402, -0.0157272, 0.0157272, -0.00906247646, 0.00865640491, -0.0261690281, 0.00631988468, -0.0410711952, 0.0629603639, -0.0377452783, 0.0350897, -0.0264784154, -0.0215153247, 0.00263623963, 0.0146185607, -0.0152244447, -0.0305778012, 0.00293112453, 0.00161783898, -0.00972637068, 0.014863492, -0.0189242028, 0.014528323, -0.0110734953, -0.0125495316, -0.0458151363, -0.0342131034, -0.0185503606, 0.0153275738, -0.00521769188, -0.0323825628, 0.073788926, 0.0204066858, -0.0405813307, -0.0332333781, 0.0229333509, -0.0124979671, -0.0179315861, -0.0187437274, -0.00948788412, -0.00900446624, 0.00736729056, 0.0219407324, -0.0194527414, 0.012020994, 0.0304231066, -0.00089351763, 0.0400399, 0.00479228375, -0.0023800279, -0.0219794046, -0.0263881776, 0.026027225, 0.0195429791, -0.0553803667, 0.00405426556, -0.0290308632, 0.0263495035, -0.0231138263, -0.0115311304, -0.000728752639, 0.0171452258, -0.0208320934, 0.00535949413, 0.00300686, -0.000463275588, -0.0319442637, -0.00531759812, -0.0153662469, 0.00237841648, 0.00102887466, -0.0205355976, 0.00294240424, -0.0262463745, -0.063733831, 0.0174932871, -0.0395758227, 0.00676140655, 0.0299848076, -0.00330980192, -0.0122659262, -0.0202648826, -0.0220051873, 0.020277774, -0.0164362118, -0.0157529823, 0.0550709777, -0.0108350087, -0.041329015, 0.010222679, -0.0267620217, -0.0285667814, 0.00509522576, -0.0193496123, 0.039318, -0.0415610559, -0.0249572601, 0.0189628769, 0.00243320386, 0.000414128095, -0.0294433795, -0.0244416147, -0.00726416148, 0.0272261016, -0.0136001604, 0.0302684121, 0.0322536491, 0.0140513498, 0.0345224924, -0.00263301679, 0.0501207784, 0.0180347152, -0.0282058287, -0.0196718909, -0.00783137139, 0.00153807492, 0.0258338582, -0.0286699105, -0.0552256741, 0.0311965756, -0.0371265039, 0.00727705238, -0.0324599072, 0.0318153501, 0.0459182635, -0.0194914136, -0.0107576624, 0.00286022318, -0.0227915477, -0.019001551, 0.0132778808, 0.0117309438, 0.00570110977, 0.0245318525, 0.00863062311, -0.000570433273, -0.0473105088, -0.0490637049, 0.000804085284, -0.0240935534, -0.0157014169, -0.00594926439, -0.00332913874, 0.00131731411, 0.0180604961, 0.00583968963, -0.0685809, 0.0081858784, -0.000123372301, 0.0310934465, 0.000784345728, 0.00928807165, 0.0225595068, 0.0031470512, 0.0253826678, -0.0236681458, 0.0203551203, -0.0227399822, -0.00463759, 0.0155982878, 0.0318411328, 0.0114151109, 0.014695907, -0.021089917, 0.0143220639, -0.0437267683, -0.0296496376, -0.025124846, -0.0163588654, -0.0104418285, -0.00752198417, -0.0157272, -0.00469560036, 0.00739307282, 0.00155580032, -0.0614649877, 0.0436494239, 0.0221598819, 0.00460858503, 0.0386218764, 0.00876598, 0.0351670496, 0.00040667539, -0.0137032894, 0.0210512429, 0.0192207, -0.0160236955, -0.0120918956, -0.0111121684, -0.00631343899, -0.0021238164, 0.0315317437, -0.012375501, -0.0456088781, 0.033362288, 0.0402203798, 0.0136646153, 0.00603627972, 0.0241709, -0.0512294173, -0.0276644, -0.0355022177, -0.00905603077, -0.0119436476, 0.00724482443, 0.019659, -0.0196203254, -0.0172354635, 0.0413805805, 0.0152373351, 0.0172999185, 0.0105127301, -0.00246382039, -0.00436365325, 0.00482128887, 0.00844370108, 0.0166295785, -0.00216571265, -0.0220309701, -0.00230912678, 0.0272518843, 0.0246994365, -0.0588351935, 0.0295207258, -0.00948143844, 0.0106094135, -0.0232427381, -0.0387765691, -0.0672917888, 0.0105836317, -0.007734688, 0.00716747763, -0.00663249521, 0.0104805026, -0.017622197, -0.0282831769, 0.0423860922, -0.0106480876, 0.00774757937, 0.0292371213, -0.0194914136, -0.0024751, 0.0420251377, 0.0119823208, 0.0233587585, 0.0304746702, -0.0540396869, -0.00414772658, -0.00544650946, -0.0116084777, 0.0171065517, 0.0173128098, -0.0145798875, -0.0256791636, 0.00443133153, -0.0230880436, 0.00653903419, 0.00229140138, 0.00699989265, 0.00581390737, 0.0047471649, -0.00111025, -0.0247123279, 0.0087917624, -0.00295207254, -0.0446033664, 0.0122659262, -0.00292467885, -0.00812142249, -0.0111701787, 0.0256662741, 0.00638434058, -0.0310676638, 0.0460987426, -0.00377066038, 0.0132778808, -0.0136388335, -0.00860484, 0.0120145492, -0.0253697764, 0.0338005871, -0.028721476, -0.00249927118, -0.0127300071, -0.00812786818, 0.00505655212, 0.0514356755, 0.0115698045, -0.0164233204, -0.0122465892, -0.0113957739, -0.0436494239, -0.0537303, 0.0186921638, 0.00964902341, -0.00478906091, -0.0472589433, -0.0274839252, -0.0305520184, -0.046846427, 0.00665827747, 0.00991973747, 0.0375905856, -0.0326403826, -0.0333107226, -0.0241966825, -0.0300363731, 0.0627541, 0.0222501196, -0.0410196297, -0.0348576605, -0.00843081, -0.0129298205, 0.013754854, -0.0172483549, -0.00386412116, 0.0118791917, 0.0136775067, -0.015804546, 0.029726984, 0.030938752, 0.00712880399, 0.00181604037, -0.00719326, -0.012897592, 0.0127042253, -0.0213606302, 0.0301137194, -0.0298816785, 0.0196203254, 0.0301395021, 0.0114666754, 0.0174932871, 0.039318, 0.020277774, 0.000680410827, -0.00731572602, 0.00626832, -0.00294240424, 0.0240935534, -0.0058977, -0.0117116068, -0.0257307291, 0.0222372282, -0.0286699105, 0.0356053486, 0.0184343401, -0.0204066858, -0.000449981599, 0.00716747763, -0.00126736087, 0.0167584904, 0.00984239, 0.0123497183, -0.00140674645, 0.0121047869, -0.0151599888, 0.0200715158, 0.00646813307, 0.0107318796, -0.00748331053, 0.0261948109, 0.019659, 0.0162686277, 0.000202028445, 0.00140030088, 0.0368428975, 0.0152373351, -0.0315317437, 0.0059009227, -0.0122208074, -0.0353733078, -0.0106094135, -0.0141802616, 0.00906247646, 0.00013626345, 0.0258467495, 0.0104998387, -0.000715055794, 0.0346771851, 0.0132907722, -0.0104289381, -0.0133165549, 0.0337232389, -0.0388023518, -0.0204066858, -0.00494697783, -0.00348705519, -0.0104482742, 0.0131167416, 0.0201617535, 0.00977793522, 0.00128508615, 0.015134206, 0.00964902341, -0.00225917343, -0.00486963056, -0.0228946768, 0.0250861719, -0.0221598819, -0.00221244316, 0.0397305153, -0.00941053685, 0.0325114727, -0.0291339923, 0.0183312111, -0.0139482208, -0.0205742698, 0.028953515, -0.00149537309, 0.0156756341, 0.0189113133, 0.0485738404, 0.000125688675, -0.0147861456, 0.0137032894, -0.036894463, 0.0414837115, -0.00166618067, -0.0268651508, 0.0270971898, 0.00406715693, 0.0217344742, 0.000285216636, -0.0146056693, -0.0158303287, 0.0170420967, -0.0198523663, 0.000926551176, -0.0284378696, -0.000785151438, -0.0255760346, -0.049373094, -0.0204969235, 0.00898512919, 0.021218827, 0.0149666211, -0.00403492898, 0.0196976718, -0.0257436205, -0.0292113386, 0.00799251068, 0.0087530883, 0.0187050533, 0.00765734119, 0.00411227578, -0.0374358892, 0.0168100558, -0.0108543457, -0.0412001051, -0.0312739238, 0.01617839, 0.030938752, 0.0413805805, -0.0299590249, 0.019607434, 0.0119178649, 0.0243771579, -0.0106158592, -0.0099004, -0.0107383253, -0.000115516763, 0.0186405983, 0.00524347415, 0.0151986619, -0.0180604961, -0.00614907686, -0.01314897, -0.0183312111, 0.00904313941, -0.00312932581, -0.0237841662, 0.00438943552, 0.0405297652, 0.0191820264, -0.0175448507, 0.0165006686, 0.028953515, -0.00910759531, 0.0142704993, 0.00376743777, -0.0321247391, -0.0265557617, 0.0412001051, 0.0353217423, -0.0100422036, -0.00995196495, -0.0218891669, 0.012897592, -0.00085564988, 0.00548840594, 0.00678718882, 0.0204711407, 0.0351412669, 0.00745752826, 0.0119758751, 0.0164362118, 0.0133423368, -0.0084372554, -0.0297012031, -0.0268909317, 0.0163330827, -0.0401172489, 0.00948143844, -0.0120661138, 0.0716747791, 0.00977793522, 0.00076218904, 0.00961679593, -0.00011158899, -0.0168874022, 0.0305520184, 0.0062167556, -0.0241966825, -0.00759933097, 0.000452398672, -0.0168487281, 0.0108736828, -0.00510167144, -0.0057526743, -0.0109574748, -0.0191562437, 0.011163733, -0.0183441024, -0.00435398472, -0.0382093601, -0.0050211018, -0.00905603077, -0.00228979, -0.000833896047, 0.00347094121, -0.0138322, -0.00417995453, -0.0132907722, -0.00102806895, 0.00779269822, -0.00719326, -0.00201424165, 0.014695907, 0.00365786301, -0.027509708, -0.00707723945, -0.0308098402, 0.00534015754, -0.0138579831, -0.0201488622, -0.0133294454, 0.0228431113, 0.00256211543, -0.00109494175, -0.0136001604, -0.0233587585, 0.0172870271, -0.0096554691, -0.00530148437, 0.0400656834, -0.00354506541, -0.0326661654, 0.0126848882, 0.0255373623, 0.00389957195, 0.015031077, -0.0265299808, 0.0180991702, -0.0197363459, -0.0192464814, -0.0300105903, 0.00754132075, -0.00575912, 0.0125301946, 0.0203164481, 0.00471171411, 0.0426954776, -0.00499209668, 0.00855972152, 0.0164619945, 0.0203422289, -0.0242224652, -0.00469882321, -0.0146056693, -0.0157529823, 0.0435462929, -0.0157143082, -0.0145541048, -0.0160236955, 0.00279899035, 0.0187566187, -0.0189370941, -0.00155257748, 0.0378741883, -0.0269424971, -0.0230751522, 0.0398078598, -0.0193625018, -0.0322794318, 0.00623609219, -0.0265299808, 0.0306293648, -0.00820521452, -0.0414063632, 0.0245189611, -0.0400141217, 0.00487929909, -0.0108672371, -0.00979082566, -0.00650036102, 0.000139083393, -0.0364046, -0.00436043041, -0.0193109382, 0.00265718764, -0.0155725051, -0.0331302471, -0.0176479798, 0.0223919228, 0.00711591309, -0.00283766375, -0.0198910404, 0.0189499855, -0.0119887665, 0.0322536491, 0.00551096536, 0.00501465611, -0.00652292045, -0.081884563, 0.0381835774, 0.017016314, -0.0135357045, -0.00378355151, 0.00987461861, -0.041432146, 0.00712880399, -0.0374874547, 0.0241580084, -0.0210254602, -0.000335975521, 0.0131940888, 0.00298430049, -0.0369718075, 0.0221341, -0.0264784154, 0.0290824268, 0.0326661654, -0.0114924572, -0.0107125426, 0.0141544789, 0.0222887937, 0.00543039571, -0.00224144827, -0.039318, -0.0134583572, -0.00290373084, 0.0249959342, -0.00752198417, -0.00423796475, -0.00131086854, -0.0273034498, -0.0122723719, -0.00594281871, 0.00216410123, -0.0367139876, 0.0240033157, -0.0166037977, -0.0284378696, 0.0179702584, 0.0286441278, 0.00278126495, -0.03248569, -0.00631666183, -0.00648424681, -0.03900861, -0.0217989292, -0.00772824232, -0.0137677444, 0.00550129684, -0.00835346337, 0.00119484821, -0.0377452783, -0.0138450917, -0.0265299808, 0.0235263426, 0.0145798875, -0.00564309955, 0.00472138263, 0.00100873224, 0.00946854707, 0.0115633588, -0.0117051611, 0.00124641275, 0.0169389676, -0.0267878026, 0.0092687346, -0.0230235886, -0.0237583835, 0.00310354354, 0.0451190136, 0.0215153247, -0.0151857706, 0.000233249186, -0.00105626835, 0.0139095476, -0.0213735215, 0.0234876703, 0.00300847134, 0.0192207, -0.0381577946, -0.00407038, 0.00194172899, 0.0119178649, -0.0258209668, -0.0205742698, 0.00884977262, 0.0293402504, -0.00548196025, -0.00441521779, -0.0107318796, 0.00458924845, 0.0123626096, 0.0150826415, -0.0084759295, -0.0707466155, -0.00445066858, 0.0160623696, 0.023204064, -0.00373198697, -0.010828563, -0.0378226265, 0.0133681195, -0.00621353276, 0.0175964162, 0.0118663, 0.0115891406, -0.0452479273, -0.0246994365, 0.00377388322, -0.00408971636, 0.0059911604, 0.00536916265, -0.028721476, -0.00186438207, 0.0251635183, -0.00496309157, -0.0161912814, 0.00192078087, -0.0449385382, -0.0187695101, -0.040993847, 0.0213090666, -0.0186534896, 0.0170549881, -0.0200586244, -0.00995196495, -0.00598149234, -0.0204324685, -0.0229075681, -0.0202519912, 0.00355151086, -0.00508555723, -0.033929497, -0.0209352225, 0.0328208581, 0.0201875363, 0.0248025674, -0.00311965751, 0.041303236, -0.0393695608, -0.00470526842, 0.00390924048, -0.00508878, -0.00553352479, -0.0101453327, -0.0380546637, -0.010158224, -0.0145798875, -0.00599760609, 0.0233329758, -0.031918481, -0.0256018173, -0.0197234545, 0.012981385, -0.0147603629, -0.0247767847, -0.00482128887, -0.0117373895, -0.0143478466, -0.000290252239, 0.0199039299, -0.0202906653, -0.00385767571, -0.00324695767, -0.0322020836, 7.65411824e-05, 0.00184665679, 0.00411872147, 0.0179186948, 0.0147087984, 0.0270971898, 0.0091784969, -0.000495100627, 0.00144944829, -0.0170807689, -0.00256050401, -0.00800540205, -0.0233845413, 0.0253955591, -0.00493730931, 0.0111443968, -0.0218633842, 0.0212446097, 0.0292113386, -0.00939764641, -0.00609428948, -0.0221856646, -0.0610009059, -0.0150568597, 0.0376421474, -0.00164362125, -0.00975859817, -0.00461503072, 0.0382867046, -0.0162299536, -0.00143575144, -0.00817298703, -0.0517708473, 0.0210125688, 0.0205355976, -0.0111379512, 0.0160494782, 0.00597504666, 0.00373520982, -0.024686547, -0.0282831769, 0.00742530078, 0.0171710085, -0.00532082096, -0.0197234545, 0.00499854237, -0.0363788158, 0.0033259159, -0.00991973747, -0.00421218202, 0.00615874538, -0.000818185, -0.00811497681, -0.0131167416, 0.00477294717, 0.0286956932, -0.020780528, 0.00910115, 0.0263108313, 0.000108064065, -0.00445389142, -0.000629651942, -0.0387250036, 0.0169389676, 0.0384414, -0.00374165527, -0.036456164, 0.00350961462, 0.027948007, -0.0151857706, 0.01118307, -0.000386935833, -0.020883657, 0.00238808501, -0.00345160463, -0.0158432201, 0.0207676385, -0.00157916546, 0.00266041048, -0.00548196025, -0.00853393879, 0.00383189344, -0.024415832, 0.0063424441, 0.0185503606, 0.0115826959, -0.00868218765, -0.00995841064, -0.0226497445, 0.0192851555, 0.00717392331, 0.0215926711, -0.00611684937, -0.0153404651, 0.0299848076, 0.0287988223, -0.0295722913, -0.0313512683, -0.00272486615, -0.0134325754, -0.00239614188, -0.00919783302, 0.0226626359, -0.017016314, 0.00292951311, 0.00190466689, 0.0710044354, -0.00656481646, 0.0290050805, -0.0279995706, -0.00415094942, -0.0289019514, -0.0297785494, 0.015134206, 0.00723837875, -0.0153662469, 0.00995196495, 0.000377670309, 0.010912356, 0.0289792977, -0.036894463, 0.00275064842, -0.00062280352, -0.00970703363, -0.00525636505, -0.0201488622, -0.0224563777, -0.00242514699, -0.008882, -0.00213187351, -0.0152502265, -0.00678718882, 0.0155209405, -0.0294691622, -0.0553803667, -0.00246704323, 0.00118356838, 0.00145186542, 0.00530148437, 0.00658093067, 0.0357084759, 0.0530599616, 0.00139063247, 0.0184601229, -0.0150826415, 0.0406844579, 0.0179960411, -0.0220051873, 0.0115633588, 0.0133681195, 0.015031077, -0.00839858223, 0.00511456234, -0.0560507067, -0.0081858784, 0.0310676638, -0.0195945427, -0.0206000526, -0.014695907, -0.0207547471, -0.0173128098, 0.0353990905, -0.00140594074, -0.0247896761, -0.00343871349, 0.00371265039, 0.00573333772, 0.00750264758, 0.0120983412, -0.01118307, 0.00825678, -0.0181894079, -0.0281027, 0.0181507356, -0.0305262357, -0.00743819168, -0.00115053484, -0.0135228131, -0.00432175677, 0.00854683, -0.00975859817, 0.00794094615, -0.00392213138, 0.00939764641, -0.0114731211, 0.00926228892, -0.00423151907, 0.0169131849, -0.0424892195, 0.0145669961, -0.00162509026, -0.00766378688, -0.0142962821, 0.00278609921, 0.00552707911, -0.00163073011, 0.0103000263, -0.0167713817, -0.00183215423, 0.00292467885, 0.016745599, 0.00955234, 0.0025314989, 0.0081858784, 0.0163459741, -0.021489542, 0.0344193615, 0.000293072168, 0.0145412134, -0.0021592672, -0.0070321206, 0.00906247646, -0.00943632, 0.00286344602, -0.000913660042, 0.0169389676, 0.0160108041, 0.014360738, 0.0125559773, -0.0131683061, -0.00319217029, -0.0244029406, 0.0229720231, -0.00656481646, -0.0223016832, -0.00297624362, -0.042308744, -0.00721259648, -0.01943985, 0.0123174908, 0.016616689, 0.00518868677, 0.0119629847, -0.00231879507, -0.00652614329, 0.00379644264, -0.00690320926, -0.00857905857, 0.00967480615, -0.00112958672, 0.0173257012, -0.0111701787, 0.00145589386, 0.0162815191, -0.00248960266, -0.0140771326, 0.0130716227, 0.0230106972, -0.0221469905, -0.00282799546, 0.00461503072, 0.0135485949, -0.00481162034, 0.00430242, 0.011015485, 0.00894001, -0.00112797529, -0.0382609256, 0.00529503869, 0.0118211815, 0.0430564322, -0.0187952928, 0.0319442637, -0.00574622862, 0.00507588917, 0.0134970304, -0.0256404914, 0.00235424563, -0.0143091734, -0.0276386198, 0.000485029392, 0.0124141742, -0.0153920297, -0.0106867608, 0.0101968972, 0.000355715078, -0.00493408646, 0.000273332611, 0.00060870382, 0.00198845938, 0.0141673703, 0.00228656712, 0.0137032894, -0.00863706879, 0.0198394749, 0.0173643753, -0.0142704993, 0.00542072719, -0.00872086082, -0.0119629847, -0.00122063048, 0.0112475259, 0.00555930706, -0.0102935806, 0.00823744293, -0.0230106972, -0.00378999719, 0.0179058034, -0.0165264495, 0.00440232642, 0.0102549074, -0.0152760092, 0.0222759023, -0.0103580365, 0.00734795351, -0.0126655521, -0.0244673975, 0.0199297126, -0.00101517781, -0.00443455437, -0.00713524967, -0.0333365053, -0.00894001, -0.0157658719, 0.0143349553, 0.0356569104, 0.0173514839, 0.0190531146, 0.0134970304, 0.015301791, -0.0151470974, -0.026736239, 0.00946854707, 0.0172870271, -0.00124238431, -0.01118307, -0.0176995452, -0.0168745108, -0.00615552254, -0.00764445029, -0.0292371213, -0.00968769658, 0.0069161, 0.0184987951, -0.0274839252, 0.0180604961, -0.0204066858, -0.0169131849, 0.0322020836, 0.00143172301, -0.00921072438, -0.0169647485, -0.00758644, -0.0170420967, -0.00239614188, -0.00125366403, 0.0111895157, 0.0439072475, -0.0129233748, -0.0228431113, -0.00798606593, -0.000175742593, -0.00800540205, 0.0114666754, -0.0189499855, -0.0169389676, -0.00504366122, 0.0100293122, 0.000641334569, -0.0291339923, 0.00473749638, -0.0135485949, -0.00138902105, -0.00837279949, -0.0175964162, -0.0246994365, 0.0330529, 0.00567210466, -0.0122723719, -0.0059782695, -0.0191949178, 0.0246736556, -0.0370233729, 0.0189499855, -0.00466014957, -0.0141673703, 0.00624253787, 0.0174030475, 0.0433916, -0.0218891669, -0.00193850626, -0.0283089578, 0.0283347405, 0.014425193, -0.00859839469, -0.00451834686, -0.0070321206, -0.027174538, -0.00935252663, 0.0143478466, 0.00787004549, -0.01910468, -0.00526925642, 0.0233200844, -0.0155209405, 0.00499209668, 0.0146056693, -0.00912048668, -0.00794739183, -0.0195429791, -0.00456346618, 0.0195171963, 0.00536916265, 0.0173257012, 0.00265879906, -0.00355151086, 0.0265557617, 0.0304746702, -0.0259369873, -0.0238357298, 0.01910468, 0.0153146824, -0.00342904497, 0.0193367209, 0.00801184773, -0.00774757937, -0.00841791928, -0.0151599888, -0.00359663, 0.016951859, -0.00407682499, 0.00785715412, -0.0305262357, -0.0124786301, 0.00904958509, -0.0268909317, -0.0184343401, -0.00816654135, 0.00550451968, 0.000389755762, -0.0182023, -0.0321247391, -0.018395666, -0.00483095739, 0.00472138263, 0.010222679, 0.00563665386, -0.0158818923, -0.00250571663, 0.0103386994, -0.0221212078, 0.0356311314, 0.0141544789, -0.000401236932, 0.0163975395, -0.00324212341, -0.00845659245, 0.0115698045, -0.00226561911, 0.0139353294, 0.0102355704, -0.00202391017, 0.0192722641, 0.000485432247, -0.012981385, 0.00765089551, -0.00683875335, 0.0058977, -0.000622400665, 0.0202648826, -0.0199554954, 0.0380288847, 0.00624898355, 0.0232298467, 0.00494375499, 0.00583646679, 0.0120854499, -0.00558508933, -0.00964902341, -0.021992296, 0.00186921633, 0.00836635474, 0.00877887104, 0.0073350626, 0.0177124366, 0.0109059103, -0.0345998369, 0.0293144677, -0.0176995452, -0.012459293, 0.0216184538, 0.0100486493, 0.0400399, -0.0108865732, -0.0192207, -0.00114408927, -0.0125108585, -0.0107769985, 0.0116664879, -0.00611040369, -0.0156240696, -0.0241837911, -0.0186405983, 0.00909470394, 0.00918494258, 0.0180733874, 0.00478906091, 0.025021717, -0.0141286971, 0.0284120869, 0.00772824232, -0.00309709809, -0.00327274, 0.0264526326, -0.0258209668, -0.000368404813, 0.0157529823, -0.0261045732, -0.00906247646, 0.00843081, 0.0105514033, 0.0143994112, 0.0165651236, -0.0277417488, 0.0110799409, -0.0324083418, 0.00453123823, 0.00528537, -0.0186792724, -0.0125366403, 0.00343226781, 0.0118405186, -0.0155338319, 0.0394726917, 0.0080247391, 0.0180604961, -0.00261851423, -0.00294723851, -0.0190144423, -0.00189016445, -0.0064906925, -0.00869507901, 0.035914734, 0.0156627428, 0.0369202457, 0.00236391416, -0.0178413466, 0.00915271416, -0.00855327584, -0.0154951587, 0.0210383516, -0.0111443968, -0.0195558704, 0.0179831497, -0.0224048141, 0.0218504947, 0.0163588654, 0.015301791, 0.0127880173, -0.00304714474, -8.2130704e-05, -0.0133552281, 0.0337490216, 0.0351412669, 0.00344515895, -0.0178284552, 0.00057083607, 0.0147603629, 0.020986788, 0.036456164, -0.0179186948, 0.00311482325, 0.013587269, -0.0132263163, 0.000513228762, -0.010325809, 0.00816654135, -0.0339552797, 0.00217699236, 0.0168745108, 0.0110412668, -0.0128911473, -0.00865640491, 0.00843081, 0.0127557898, 0.0104418285, -0.00676785223, 0.000766217534, 0.0108801275, 0.0193496123, 0.0227915477, 0.00405104272, 0.0109252473, -0.00674851518, -0.0068065254, -0.0206000526, 0.000531759812, 0.008882, 0.00899802055, -0.0235908, -0.0127364527, 0.0384929627, -0.0192593727, 0.00522091426, 0.00486640772, 0.0250861719, -0.00374810095, 0.00388023513, 0.020651618, 0.00556897558, 0.00184826821, -0.0156240696, 0.0114473384, 0.00269424962, -0.0237841662, 0.00566565897, -0.00317927916, -0.00666472269, 0.00122546463, 0.0383124873, 0.00689676357, -0.00223016832, -0.00689676357, 0.018228082, 0.000786359946, 0.0252021924, 0.0073350626, -0.0391375236, -0.00382222515, 0.0168745108, -0.00401559239, -0.0216829088, -0.0143091734, -0.00472782832, -0.00300847134, 0.00308904098, 0.0118856374, -0.00898512919, 0.0161268245, -0.011163733, -0.00584935769, -0.00806985795, -0.00606850721, 0.0138966562, -0.0106416419, -0.00976504385, -0.000574058911, -0.00135840464, -0.00281188148, -0.0129298205, 0.0256791636, 0.00816009566, 0.0142704993, -0.0037062047, 0.00151068124, 0.00539816776, 0.00721904216, -0.000605481036, 0.00114972913, -0.00790227298, 0.00436687609, -0.0191820264, 0.010557849, -0.0259756614, -0.020883657, 0.00408971636, 0.00130442297, -0.0144509757, 0.00102081767, 0.0113699911, 0.00173869345, -0.00499854237, 0.00513712224, 0.0100873224, 0.0146443425, -0.0040445975, -0.00568499556, -0.00337103498, 0.0338521525, 0.0263495035, 0.00379322, -0.00630377093, 0.0130200582, -0.00695477379, 0.012188579, -0.0297785494, -0.0112797534, -0.0026442965, 0.00119001395, 0.0087917624, 0.0153791383, 0.0130200582, -0.0130587313, 0.00406715693, 0.00801184773, 0.0105836317, -0.00315510831, 0.00231879507, -0.0138450917, -0.00539494492, -0.00291501055, -0.0126977796, 0.0050984486, 0.0112281889, -0.00477294717, 0.0338263698, -0.0223532487, 0.00255566975, 0.000353298, 0.0194656309, 0.0163073, -0.0203164481, -0.0120467767, 0.01651356, 0.0107060978, -0.0234618876, -0.00427986076, 0.00152840663, 0.011769617, -0.0175964162, 0.00908825826, -0.00900446624, 0.00348383235, -0.0150052952, -0.000199309216, 0.0159592405, -0.00631988468, -0.0119307563, 0.00201907591, -0.00586224906, 0.0043958812, -0.0260530077, 0.0132005345, -0.00294240424, -0.0177382175, 0.0167198181, 0.0155467233, -0.00652936567, -0.00848882, -0.0236939285, -0.0101002138, 0.0281284824, 0.027509708, 0.00212542783, -0.0105836317, -0.00731572602, -0.000970864494, 0.00248960266, 0.00215121, -0.0115375761, -0.000220358037, 0.00725127, -0.00160253071, -0.00345160463, -0.0108672371, -0.0150568597, 0.00173547061, -0.0096554691, -0.0185503606, -0.00648424681, 0.00979082566, 0.00180314912, 0.00164845539, 0.011602032, 0.00526281074, 0.00425085565, -0.00918494258, 0.0246349815, -0.00783137139, -0.0149666211, -0.00327112852, -0.0303457603, -0.00226884196, -0.00276515097, -0.00174191617, -0.00311160064, 0.0155596146, 0.00823744293, 5.1917079e-05, -0.0246994365, 0.0058977, -0.00317122205, 0.00794094615, 0.00328563107, 0.0045699114, 0.0149795124, 0.0123819467, 0.000847592892, -0.0163846482, 0.00307937269, -0.00402526045, 0.00534015754, 0.0133810109, 0.0170034226, 0.0153146824, -0.00585580338, -0.013252099, 0.0130522866, 0.0217344742, 0.0115633588, 0.0197492372, -0.00486640772, -0.00511456234, 0.00549162878, -0.0070965765, -0.00809564069, -0.00894001, -0.0056882184, 0.0388023518, -0.00333558419, 0.00769601483, 0.00216732407, 0.0131554157, 0.0143091734, 0.00209158869, 0.0033645893, 0.00908181258, -0.0218118206, -0.00969414227, 0.0100422036, -0.000619177881, 0.0029955802, 0.0113313179, -0.00984239, 0.0101968972, -0.00661960384, 0.0087530883, 0.00298591191, -0.00312932581, -0.00626187446, 0.00186277076, 0.008882, -0.00448611891, 0.00445066858, 0.0161268245, -0.024415832, -0.0141673703, 0.00546584604, 0.00480195228, -0.0180862788, -0.00199329364, 0.0157787632, -0.0110477125, -0.0249701515, 0.00677429745, 0.00150906993, -0.00204324676, 0.0437525511, 0.0183183197, -0.000880626496, -1.82037093e-05, 0.0078120348, -0.015869, -0.00710302172, 0.0237970576, 0.0209223311, 0.0229591317, -0.00688387221, 0.0146830166, 0.025189301, -0.00505655212, -0.00176608714, 0.0106545333, -0.00483418, -0.00464081299, -0.00959745888, -0.0124528483, -0.0179831497, -0.00417673169, -0.0215668883, 0.00226561911, 0.00513067655, -0.00465048105, 0.0335169807, 0.00705145719, -0.0247767847, 0.0118469642, 0.00763800461, -0.0102355704, -0.00695477379, -0.00941698253, 0.0231525, 0.00957167614, 0.008882, -0.00384156173, 0.00894645602, -0.00693543721, 0.0255115796, 0.0200844072, 0.00959101319, 0.0110412668, 0.00515001314, 0.00700633833, 0.0207418557, 0.00388023513, -0.00178058969, 0.015804546, 0.0104547199, 0.0090173576, 0.0262979399, -0.0102484617, -0.0170678776, 0.0145927779, -0.000715055794, -0.00243159267, 0.00701922923, -0.012543086, -0.030165283, 0.00195784285, 0.00694188243, -0.00193528342, 0.0181249529, 0.00882399, -0.0439588092, 0.00500176521, 0.018395666, 0.00360952108, -6.15854369e-05, -0.0180476047, 0.0014027179, 0.00344515895, 0.0256147087, 0.0145154316, -0.00983594544, -0.0155338319, -0.0100164209, -0.00770246, 0.00321472972, -0.024918586, 0.00361274392, -0.0139611121, 0.021657126, 0.00500498759, -0.00769601483, -0.0033259159, -0.0133681195, -0.00552385626, -0.0189242028, -0.00683875335, 0.0163588654, 0.00617485913, 0.00333558419, -0.00399625534, -0.00553030195, -0.0254857969, -0.00714814104, 0.023204064, -0.00166618067, -0.0130458409, 0.010493394, -0.0163588654, -0.0175706334, -0.00285377773, -0.0212059375, -0.00463759, 0.0156369619, -0.00245092926, -0.0204969235, 0.00637467206, -0.00227045314, 0.0111315055, 0.0169131849, -0.0130071668, -0.0223274659, 0.00423796475, -0.00512100803, 0.00910759531, 0.00043306197, -0.00081415649, -0.00825678, 0.00237519387, -0.0069161, -0.0134583572, 0.00909470394, 0.015301791, -0.00134390208, 0.0187824015, 0.0118018454, 0.0122401435, 0.0104224924, -0.00995841064, -0.0015823883, -0.0220051873, 0.00719970558, 0.00855327584, -0.0149279479, 0.0196332168, -0.0140513498, 0.0236165803, 0.0079602832, 0.0263752863, 0.00781848095, -0.0231653918, -0.000553513644, -0.0258854236, 0.00267007877, -0.0194914136, -0.00969414227, 0.000339198305, 0.0281800479, 0.0292629041, -0.0077217971, -0.000155902308, -0.0100937681, 0.0275354888, -0.00636500353, -0.00926228892, 0.00273292302, 0.00445066858, -0.0122272531, -0.00889489148, 0.0130136125, 0.021154372, -0.00241064443, -0.0144123025, 0.00349350087, 0.00132134254, -0.0096812509, 0.0136130508, 0.00865640491, -0.0173514839, 0.00323728914, -0.0446033664, 0.0149666211, -0.0081858784, 0.0133939013, -0.0236165803, 0.0276901834, -0.00080005679, 0.0107060978, -0.00239614188, -0.0117373895, -0.00687742699, -0.00228979, -0.010912356, -0.00864351355, -0.00329368794, 0.0121627972, -0.00267491303, -0.00228012167, -0.00595571, -0.0111250598, -0.0200457331, 0.0227399822, 0.0168100558, 0.0172612462, 0.0108607914, -0.00402848329, 0.0153920297, -0.0166682526, -0.00448934175, -0.0135485949, 0.0112346346, -0.00584613532, 0.0194527414, -0.00197395682, -0.00823744293, -0.00142124889, -0.0151084242, -0.00461825356, 0.00555930706, -0.00134309637, 0.00598471472, -0.00366430846, -0.0148377102, -0.0193367209, 0.0235005599, 0.0220180787, -0.0181507356, -0.0134067927, -0.0356569104, -0.0138837649, 0.00324695767, 0.00454412913, 0.0014784534, 0.0107254339, 0.0110477125, -0.0138064185, -0.0202519912, 0.0270714089, -0.00879820809, -0.0279737879, -0.00792805571, 0.00285055488, -0.0292113386, 0.0184085574, -0.0109703662, 0.0118405186, -0.025124846, 0.00918494258, 0.0504559502, 0.0085017113, -0.00863706879, -0.00936541799, -0.0250474978, -0.0314286165, -0.0161912814, -0.0080505209, 0.00563020818, -0.00645846454, 0.0318153501, 0.000504366122, 0.0162170622, 0.017119443, 0.0122659262, -0.00238808501, 0.00984239, 0.00801829342, 0.0168100558, -0.00140432932, 0.0123368278, -0.00989395566, 0.0175448507, -0.0159463491, -0.000108466913, -0.0078120348, 0.0114795659, 0.00132859382, -0.012207916, -0.0133294454, 0.015134206, 0.0145412134, 0.0406328961, -0.0164748859, -0.0136646153, -0.00344838179, 0.0073350626, 0.00630377093, -0.0212575011, -0.00447322801, -0.00283121807, -0.0201101899, 0.0134325754, -0.0117180524, 0.00752198417, 0.00194334041, -0.0131811975, 0.00739951851, -0.00155660603, -0.0180218238, -0.00221566577, -0.00745108305, 0.00794094615, -0.0246478729, -0.0125237489, 1.96514447e-05, 0.00606206199, 0.0235521253, 0.00898512919, 0.0157272, 0.00453123823, 0.0225208327, 0.0173643753, -0.00148006482, -0.00373843266, 0.0297785494, -0.00889489148, 0.0132649904, -0.0176737625, 0.0358116068, 0.00803118479, -0.013252099, -0.0133294454, -0.0115311304, -0.0102291247, -0.00101920625, -0.00166779209, 0.00705790287, 0.0139353294, -0.0143478466, 0.00345805, 0.0132649904, -0.014025568, -0.00702567492, 0.0122208074, -0.0226497445, -0.0223790314, -0.0193753932, -0.00255083572, 0.0159334578, -0.00351283746, -0.00648746965, 0.00388345798, -0.0122014703, -0.0120596681, -0.00320667285, 0.0070321206, -0.00500821043, 0.0106416419, 0.0183441024, -0.00052128575, 0.00144461414, -0.00154049206, 0.00981660839, 0.0225852896, 0.00186277076, -0.017454613, -0.0107834442, -0.00525314221, 0.00511456234, 0.00748975622, -0.00595571, 0.0112604164, -0.0144123025, -0.000919299899, 0.0126139876, -0.011937202, 0.00915271416, 0.0141158057, -0.00602016551, -0.0266331099, -0.00623609219, -0.00734150829, 0.0165651236, 0.0275612716, -0.00865640491, 0.0151728801, 0.0206129439, 0.00178381242, 0.00886266306, 0.0351670496, -0.00873375218, -0.0195429791, 0.00200618478, -0.000313214579, -0.0102162343, -0.00683230767, 0.0152889006, -0.00730928034, 0.020651618, -0.000294482132, -0.00388023513, -0.00401559239, -0.0155725051, -0.00870152377, 0.0135614863, 0.0172999185, -0.01910468, 0.0100035304, -0.00136001594, 0.00203035562, -0.00650680624, -0.000784748583, -0.0042186277, 0.00057083607, 0.0101840058, 0.032923989, 0.0323825628, -0.010055095, -0.011602032, 0.00991329178, -0.0327692963, 0.000311603188, 0.00696121948, 0.0377968438, 0.000112193266, -0.00462147593, -0.00745752826, -0.0209996775, -0.0177253261, -0.0085017113, -0.00544328662, -0.0163975395, -0.0158432201, 0.0191562437, -0.0058977, -0.0165651236, 0.00728349807, -0.0250088256, -0.00830834452, 0.0101131042, 0.00916560553, 0.0028618346, 0.0014220546, 0.0155338319, 0.0101775602, -0.0225466155, 0.00650036102, 0.0160365868, 0.00436043041, 0.00333558419, -0.0103322538, 0.00843081, -0.003715873, 0.0238099489, -1.46284301e-05, -0.0242353566, 0.0128589189, 0.00835346337, 0.0417157523, -0.00677429745, 0.0206773989, -0.0143091734, 0.0108865732, 0.0120145492, 0.00448611891, 0.025253756, 0.0162170622, 0.00816009566, -0.0112539716, -0.0220309701, 0.00102726324, -0.00277159666, -0.0154435942, 0.001753196, -0.00494697783, 0.00377066038, 0.000730766915, -0.0189370941, 0.00699989265, -0.00792805571, -0.0210383516, -0.0132134259, 0.00864995923, 0.031377051, -0.0056753275, 0.00513712224, 0.0229204595, -0.000491877843, -0.0155209405, 0.0212832838, 0.0335427634, -0.00584291248, -0.020445358, 0.0246736556, 0.0178413466, -0.0075735487, -0.01977502, 0.0213864129, 0.00536594, 0.0152502265, -0.0100422036, 0.00397047307, 0.0137290712, 0.00821810588, -0.00320506142, -6.84842162e-05, -0.0152115533, 0.00582679827, -0.0233071931, -0.0141673703, -0.000630457653, -0.00453446107, 0.0129878307, 0.0116278147, -0.00102162338, -0.0356826931, -0.0210125688, -0.0163201913, -0.00177575543, 0.00421218202, 0.0183441024, 0.0125688678, 0.0147216897, -0.013252099, -0.0142318262, -0.0200586244, -0.00147684198, 0.00290534226, 0.0013640445, -0.00840502791, -0.000779108668, 0.00136807293, -0.0231267177, 0.0243642684, 0.00438943552, -0.00348060974, -0.0255373623, -0.020445358, 0.0159850214, 0.00544006377, 0.000476569578, 0.00040929392, -0.0084372554, 0.0230622608, 0.0213477388, 0.00878531672, 0.00852749404, 9.68850291e-05, -0.00896579307, -0.00370942755, 0.00402203761, 0.0180604961, 0.00855327584, 0.0129169291, 0.00953944866, 0.00721904216, 0.00797317456, -0.0085017113, -0.0161139332, 0.00523702847, 0.00670984201, 0.00947499275, -0.00197073398, -0.000884654932, -0.00776047027, -0.0132134259, -0.0113828825, -0.0253826678, -0.0363014713, -0.00363208074, -0.00647780113, -0.0188468564, 0.00196428853, 0.00334202987, -0.0179058034, 0.000462872733, -0.00182732008, 0.00838569086, -0.0127300071, 0.0210512429, 0.00282316119, 0.00378355151, 0.0129104834, 0.012897592, 0.0232685208, -0.00787004549, -0.013252099, 0.00288439402, -0.00810853112, -0.00104418292, 0.00777336163, -0.00333558419, 0.0290050805, -0.0146185607, 0.0116407052, 0.0147732543, -0.024686547, -0.0238228403, -0.0231267177, -0.0270971898, -0.00859839469, 0.0355022177, 0.0155467233, 0.00911404099, -0.00358696165, 0.00630699378, 0.00351283746, 0.0128782559, 0.025253756, 0.00237841648, -0.0198394749, -0.00758644, 0.0109574748, -0.00841791928, -0.0165393408, 0.0043958812, -0.0180089325, 0.0111250598, 0.00833412632, -0.0252408665, -0.00563020818, 0.00135357038, -0.0214508679, -0.00147442496, 0.00855327584, -0.00116826023, -0.020883657, 0.00816009566, -0.0278706588, 0.0292886849, 0.0044442229, 0.00654870272, -0.00617163675, 0.00504366122, 0.015301791, -0.019607434, -0.00361274392, 0.00433787098, 0.00202713278, 0.0160236955, 0.000427019229, -0.000374447525, 0.00315833092, 0.0047826157, 0.0176866539, -0.000309790368, -0.0112410802, -0.00753487553, -0.00402848329, 0.0147345811, 0.00830189884, 0.00673562428, 0.0184730142, 0.0176995452, -0.00430242, 0.0193753932, -0.0178413466, 0.0123110451, -0.0210125688, -0.0100035304, -0.0055141882, -0.000370217633, -0.0206773989, -0.00010544555, -0.00409616204, -0.0121112326, 0.0159205664, 0.0104353838, 0.0239388589, -0.0163459741, -0.0185245778, -0.0114860116, 0.0117116068, -0.033491198, -0.0235263426, 0.00308581837, -0.0265299808, 0.00410905294, -0.0106223049, 0.0137290712, -0.0155080501, 0.00933963619, -0.00939764641, 0.0119694294, 0.0166037977, 0.0261819195, 0.000658657053, 0.00246704323, 0.00694832811, 0.0170034226, -0.0311707929, 0.0268135853, 0.00265718764, 0.0131554157, 0.00478906091, -0.0122852633, 0.0113957739, -0.00472782832, -0.00967480615, -0.00828256179, 0.0243900493, 0.00336136646, 0.0160236955, -0.0105062844, -0.0167069267, 0.0157272, 0.00600082893, 0.00883043557, -0.0175835248, -0.0142833907, -0.00675496086, -0.00199812767, 0.0154435942, -0.0133165549, -0.016745599, -0.00805696659, 0.01977502, -0.0145154316, 0.011015485, -0.000313013152, 0.0195300877, -0.00235585705, 0.00725127, 0.0163588654, -0.0271229725, 0.00800540205, -0.0279995706, 0.0125946505, -0.0133939013, 0.00129394885, -0.0183698852, 0.0208192021, -0.0115375761, 0.00207869732, 0.0188597478, -0.00647457829, 1.8090408e-05, -0.00780558959, -0.0154822674, -0.0135743776, 0.00672273291, 0.0159850214, 0.00525314221, 0.0027570941, 0.00743174599, 0.0187824015, 0.00145186542, -0.00732217124, 0.0108607914, -0.00680008, 0.0135357045, 0.0229978058, -0.0184730142, 0.0053240438, 0.016616689, 0.0169905312, 0.00404137466, 0.00378355151, 0.00864351355, 0.00482128887, 0.000642945932, 0.0105127301, 0.0143865198, -0.00808274932, 0.00421218202, 0.0081858784, 0.0105127301, 0.0210383516, -0.00966191478, 0.00247832295, 0.0163717568, 0.00913337711, 0.00401236955, 0.00651969761, -0.00255728117, -0.00608784426, 0.00147361925, -0.0185890347, 0.0200328417, 0.000862901157, 0.0138708744, -0.000704178878, -0.0274581425, 0.000924134103, 0.00512423087, 0.00929451734, -0.000158218681, 0.0039060174, 0.0290050805, 0.000745672267, 0.0225852896, 0.011350655, -0.000159930787, -0.00333558419, 0.00460536219, -0.0150439683, 0.00109091331, -0.017183898, -0.0155853964, -0.0136259422, -0.0245963074, 0.0208063107, -0.0220438614, -0.0141544789, 0.00735439919, 0.00846303813, -0.00586869475, -0.0126913339, 0.00529181585, -0.00247993437, -0.011621369, -0.00409938488, -0.0288503859, 0.00807630364, -0.0257307291, -0.0118405186, 0.00993262883, 0.0209610052, 0.0168874022, 0.000980532845, -0.0107189883, -0.0315833092, -0.00158319401, 0.00991973747, -0.0167327095, 0.0152502265, -0.0234103221, 0.00982305408, 0.0061522997, 0.0153920297, 5.22695736e-05, -0.0123883924, 0.00977793522, 0.0085017113, -0.0208707675, 0.0132649904, -0.000912048621, -0.00315833092, 0.0415868387, 0.0219407324, 0.00398981, -0.0151213156, -0.00458602561, 0.011266862, -0.00944276527, -0.00179670355, -0.00283766375, 0.0130200582, 0.0103773735, -0.00265718764, 0.000199007074, -0.0179831497, -0.00743819168, -0.0337490216, 0.0265041981, 0.0237454921, 0.00394791365, -0.00209158869, 0.00987461861, 0.0211672634, -0.00227689883, 0.00488574477, 0.0125495316, 0.0100615397, 0.00962324068, -0.0152502265, -0.0100035304, 0.0197492372, -0.00756710302, -0.0257436205, -0.00794739183, -0.011163733, 0.00292145624, 0.0113184266, -0.00302136247, 0.0167713817, 0.00170485419, -0.0181120615, -0.0123497183, -0.0304488894, -0.0037062047, 0.00506299781, 0.00128347485, -0.00225756201, -0.0147216897, 0.00713524967, -0.00610073516, 0.00797962, -0.0112861991, 0.00849526562, -0.0126075419, 0.0156756341, -0.0152244447, 0.0213606302, -0.00685809, 0.0249314774, 0.000399021286, 0.00307292724, 0.00627476582, 0.00349027803, -0.0229333509, -0.0121627972, -0.00314382836, -0.00677429745, -0.00273131183, 0.0126526607, 0.0089529017, -0.00899157487, 0.0369202457, -0.00336136646, -0.0309129693, -0.0427212603, -0.00359663, 0.0240290985, 0.00395435933, -0.00201746449, 0.00330013363, 0.0150568597, -0.0297012031, 0.00199812767, -0.029159775, 0.0171065517, 0.00032368864, -0.00700633833, 0.0170292053, -0.0124657387, 0.00253311032, -0.000255204417, -0.00387378968, -0.00361596677, 0.00491152704, 0.00678074313, 0.020380903, 0.0234361049, -0.0108930189, -0.0106480876, -0.0117631713, -0.00401881523, 0.00209964556, -0.00171935675, -0.0106674237, 0.00304069929, -0.00528859301, 0.00518224109, 0.00970703363, 0.0177253261, 0.000222976552, 0.0131231872, -0.00672273291, -0.0351670496, 0.00464403583, 0.0301910657, 0.00367397675, -0.0108221173, 0.0153533556, -0.0057526743, -0.00719326, -0.0268651508, -0.000130220724, 0.00102242909, -0.00219310634, -0.00294723851, -0.0250346065, -0.000321674393, 0.0135357045, -0.00107560505, -0.0070321206, -0.0331044644, -0.0139868939, 0.0190531146, -0.0330013372, -0.00351283746, -0.000454010093, 0.0150181865, -0.00713524967, -0.0078120348, 0.00208836584, -0.00743819168, -0.00223822542, -0.00994552, 0.0159334578, 0.0155467233, -0.0211028066, -0.0260530077, 0.00647135591, 0.00220116321, -0.00523380563, 0.00200618478, -0.000539011089, -0.00111105572, -0.00995841064, 0.00364819448, -0.00527247926, -0.00348060974, -0.00353217428, 0.00524991937, -0.00972637068, -0.00653903419, 0.0135357045, -0.000361354963, -0.00140110648, 0.0170807689, 0.0141802616, -0.0156498514, 0.0226884186, -0.0116535965, 0.00283282949, -0.0122465892, 0.0175577421, 0.0140900239, -0.024248248, -0.00224950514, -0.00330980192, -0.00741240941, -0.0173128098, -0.00403492898, -0.034470927, -0.0120790042, 0.00828900747, -0.0132263163, 0.0240290985, -0.0110734953, 0.00975215249, -0.0190531146, 0.0237712748, -0.00792805571, -0.0104676113, -0.00586224906, 0.00511456234, -0.0274323598, -0.0208965484, 0.00272325473, 0.0151084242, -0.00369331357, -0.0162557364, -0.0210125688, 0.00940409116, 0.00577201089, -0.0140771326, -0.0122852633, -0.0246349815, -0.00397369592, -0.003715873, -0.0119952122, -0.0171452258, -0.0374874547, 0.00873375218, -0.00779269822, -0.02596277, 0.00950722117, 0.0167713817, -0.0082503343, -0.0331044644, 0.00176608714, -0.00541428151, -0.00229784683, 0.024751002, -0.00195623143, -0.00172096805, -0.0179058034, 0.00199651648, 0.00820521452, 0.0209352225, -0.0270714089, -0.000626026304, 0.000292467885, -0.0225079432, -0.000546262367, -0.00554963853, -0.00594604155, -0.045840919, -0.0161268245, -0.00109816459, -0.000999063835, -0.00085564988, -0.00791516434, -0.0134325754, -0.0183441024, 0.0199683867, -0.00489219045, 0.00361274392, -0.00350639201, -0.000882237859, -0.0231653918, 0.00460536219, -0.0250990633, -0.0099068461, 0.0134583572, 0.0049211951, 0.009971302, 0.023977533, -0.0155467233, -0.0128073543, 0.0130329495, -0.00292629027, 0.0179831497, -0.030938752, -0.00337103498, -0.0159850214, 5.35032939e-07, -0.034367796, -0.0136903981, -0.0162557364, 0.00861128606, -0.00486640772, 0.0146056693, 0.000919299899, 0.00753487553, -0.0125946505, 0.0104224924, 0.00859194901, 0.0243127029, -0.0153146824, 0.00304553355, -0.025189301, 0.00671628769, 0.00175641873, -0.00334847532, 0.0098295, 0.0129040377, 0.00115456339, -0.00168068323, 0.0228560027, 0.0250603892, 0.0132134259, -0.0238228403, 0.00683875335, -0.0127622355, -0.00814720523, -0.00878531672, 0.00922361575, -0.00921072438, 0.00118679123, 0.00768312346, -0.0110283764, -0.0258338582, -0.00251377374, 0.00293757, 0.000265678478, 0.00664538611, 0.0170034226, 0.00610718084, 0.0159334578, -0.0138064185, 0.0256533828, -0.00451834686, -0.0110090394, -0.00204485818, -0.0194527414, 0.011163733, -0.00934608188, 0.00192239229, 0.00655192556, 0.00221244316, 0.00739307282, 0.00560764875, 0.0267878026, 0.0134841399, -0.0322278664, 0.0158947837, 0.00488574477, 0.0115955863, 0.00774757937, -0.0195558704, -0.0119694294, 0.0104224924, 0.00870796945, 0.000166577782, -0.00724482443, -0.00959101319, -0.00696121948, -0.00123271591, 0.00448611891, 0.0210254602, 0.0307582766, -0.0108221173, 0.00259595481, 0.000140795499, -0.0214379765, -0.0201875363, 0.0145798875, 0.0201101899, -0.00712235877, 0.0192980468, 0.0293402504, 0.00800540205, 0.00993262883, -0.0227528736, 0.00713524967, 0.0130329495, -0.0142704993, 0.00782492571, -0.0118920831, -0.00840502791, -0.00150826422, -0.0340068452, -0.0153662469, 0.00738018146, -0.0127428984, -0.016745599, -0.00158399972, -0.00324051199, -0.00325662596, 0.0112797534, 0.00896579307, -0.0162299536, -0.00789582729, -0.0125173032, -0.0243384857, 0.000311603188, -0.00558186648, 0.00597182382, 0.00107721647, -0.00728994375, 0.00133745652, 0.0248928051, -0.00524347415, 0.00225917343, -0.0156369619, 0.0146443425, 0.0286441278, 0.00406715693, 0.000847592892, -0.001782201, 0.0120145492, -0.00223177974, 0.000541428162, 0.0134454658, -0.041432146, -0.00365786301, 0.0251764096, -0.00767667778, 0.0121756885, -0.0055754208, 0.00962324068, 0.0245318525, 0.00646491, 0.01151824, 0.0118534099, -0.000124681566, -0.00295368396, -0.00255728117, -0.0128073543, 0.00903024804, -0.00979727134, 0.0341615379, -0.0220696442, -0.0189628769, -0.00311643467, 0.00436687609, -0.00619419618, -0.00141480332, -0.00435720757, 0.0192464814, -0.00913337711, -0.00513389939, -0.0125108585, -0.000261247158, -0.0150181865, -0.0134583572]
05 Aug, 2021
jQWidgets jqxComboBox destroy() Method 05 Aug, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxComboBox is used to represent a jQuery combobox widget that contains an input field with auto-complete functionality and a list of selectable items displayed in a drop-down. The destroy() method is used to destroy the jqxComboBox widget. It does not accept any parameter and does not return any value. Syntax: $('selector').jqxComboBox('destroy'); Linked Files: Download jQWidgets from https://www.jqwidgets.com/download/ link. In the HTML file, locate the script files in the downloaded folder: <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcolorpicker.js”></script> <script type=”text/javascript” src=”.jqwidgets/jqxbuttons.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcombobox.js”></script> The below example illustrates the  jqxComboBox destroy() method in jQWidgets: Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcolorpicker.js"> </script> <script type="text/javascript" src=".jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxlistbox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcombobox.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxComboBox destroy() Method </h3> <div id='jqxCB'></div> <br> <input type="button" id='jqxBtn' style="padding: 5px 20px;" value="Destroy" /> </center> <script type="text/javascript"> $(document).ready(function () { var data = [ "Computer Science", "C Programming", "C++ Programming", "Java Programming", "Python Programming", "HTML", "CSS", "JavaScript", "jQuery", "PHP", "Bootstrap" ]; $("#jqxCB").jqxComboBox({ source: data, width: '250px', animationType: 'slide', checkboxes: true }); $('#jqxBtn').on('click', function () { $("#jqxCB").jqxComboBox('destroy'); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxcombobox/jquery-combobox-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxcombobox-destroy-method?ref=asr10
PHP
jQWidgets jqxComboBox destroy() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, Node.js date-and-time Date.transform() Method, PHP Tutorial, PHP
GeeksforGeeks
[-0.022772301, -0.0234826542, -0.0148491245, 0.035217151, 0.0441785343, -0.00633854093, 0.0206685606, 0.0118847638, -0.00474707503, 0.0174173266, -0.045845136, -0.00952830166, -0.0236192606, -0.0346160829, 0.0203407053, 0.0151359979, -0.0212559681, 0.0121989585, -0.00950098, 0.00224888418, -0.020463651, -0.00589798484, -0.0306544937, 0.0146988574, -0.0140841287, 0.0499160066, -0.0178817883, 0.0143846627, -0.029507, 0.0170348287, -0.00486660609, -0.00438848324, 0.00935754366, -0.00485636061, -0.0188243724, -0.000899895211, -0.00894772448, 0.0444790721, -0.020504633, -0.0237831883, 0.0028311694, -0.00850375369, -0.0130254282, -0.00638976833, 0.0198762435, 0.0273622777, 0.00241281209, -0.0456538871, -0.00460022315, 0.0421294384, 0.022581052, 0.0209007915, -0.00478464179, 0.00521836756, 0.0469926298, -0.0251765754, -0.00477098115, 0.00579553, 0.00626340695, 0.0130732404, 0.0357908979, -0.0405448042, 0.00683032395, -0.0235236362, -0.00454216544, 0.0355450064, 0.0284414701, 0.00635903189, -0.0307364576, 0.00360982632, -0.0506263636, 0.0585768595, -0.0249443427, -0.013599175, -0.00978102442, -0.00480513321, -0.0246984512, 0.0230864957, 0.0032341585, 0.0371023193, -0.0033109996, -0.0174173266, 0.00428602844, -0.00571015105, -0.0138450665, 0.00065186905, -0.0447249636, -0.0390421338, 0.0219526608, -0.00573405717, -0.0397798084, -0.0153135862, 0.00245550158, -0.0212832894, -0.0357362553, -0.0187424086, -0.0230318531, 0.0120418612, -0.0667186081, 0.019070264, -0.0180047341, 0.0216248054, -0.0275945086, -0.00373618724, -0.0206002574, 0.0170075074, 0.0413917638, 0.0171577744, 0.033741802, 0.0207915064, 0.0468833447, -0.0021447218, -0.015095016, 0.00292850146, -0.0135581931, -0.00312658073, -0.0024452561, -0.0133669442, 0.00519104628, -0.0214335565, 0.0190839246, -0.0106006628, 0.0248897, 0.0730025, -0.0357362553, -0.0164064392, -0.0171304531, 0.0190429427, 0.0490144044, 0.0232231021, 0.0146851968, -0.00299680466, -0.00187321636, 0.0201357957, 0.0120486915, 0.0380585641, 0.0102386558, 0.00515006436, -0.057156153, -0.00620193407, -0.0327582359, -0.0192205328, -0.0078617027, -0.010477717, 0.00502370344, 0.031364847, 0.0291518234, 0.0395612381, -0.0314741321, 0.00644782605, -0.029507, -0.0218433756, 0.0036371476, 0.0241383649, 0.0110719558, 0.0126839122, -0.018045716, 0.0274442416, 0.00825786218, 0.0257913042, -0.0044089742, -0.0140841287, 0.0165430456, -0.0150676947, -0.0394792743, -0.0175266117, 0.0191249065, -0.0168845616, -0.0491236895, 0.0297528915, -0.00606191251, -0.0209007915, -0.0338237658, 0.0107372692, -0.0369657129, 0.00111334282, 0.00770460535, -0.0467467383, -0.0341516212, 0.00439531356, -0.0291791447, -0.00914580375, 0.00589456968, 0.0119257458, -0.00389328483, 0.00723331328, -0.00298655918, -0.014944749, -0.0293703936, -0.0407087319, -0.0324303769, 0.00346638937, 0.0166523308, 0.00229498884, -0.0151223373, 0.00410502497, -0.0496427938, 0.0378673151, -0.0229498893, 0.00609606411, 0.0272803139, -0.0557627641, -0.0101498617, 0.00497247605, 0.0217614118, -0.000537888031, 0.0259415712, -0.0745871365, 0.0485499427, 0.00315219467, 0.00885893, -0.0166250095, 0.0128615005, 0.0237285458, -0.0025306351, 0.00205934281, -0.0362007171, -0.0500799343, -0.0486319065, -0.0294796787, 0.0178681277, 0.0124585107, -0.00721282233, 0.0202724021, -0.0625111237, -0.017854467, 0.000491356419, -0.0026587036, 0.0123492256, 0.0211193617, -0.0236056, 0.011481775, -0.000709499931, -0.0174992904, 0.0227313191, 0.00443971064, 0.00666981144, 0.0246028267, -0.0411731936, 0.0150540341, 0.0257093403, -0.0191249065, -0.0171167925, -0.00971272122, 0.054287415, 0.0277584363, 0.000257417851, -0.013448908, -0.0148901064, -0.016338136, 0.00622242503, 0.0155594787, -0.0168299191, 0.0483586937, -0.0009178248, 0.0264470149, 0.00104930857, -0.018728748, -0.0246438086, -0.0116388723, 0.00721282233, 0.0184282139, -0.0258049648, 0.0498613641, 0.00100832654, 0.0104708867, 0.0139065394, -0.0103752622, -0.0222941786, -0.0350805447, 0.00749969576, -0.00598336384, 0.0325396657, 0.0249853246, -0.0101293707, -0.00539595587, -0.0157917086, 0.0118847638, 0.0217614118, 0.00346297421, 0.0166659914, 0.0112222228, 0.0322391279, 0.0363373235, 0.000238207547, -0.00852424465, -0.0116798542, 0.00417332817, -0.00369520532, 0.0333319828, -0.0258186255, -0.0269934405, -0.0205592755, 0.0321298428, 0.0496974364, 0.00717867073, -0.00467194151, 0.000957952929, 0.00899553671, -0.0305998512, -0.00817589834, -0.00357909, -0.00448752288, 0.0174992904, -0.0289059319, 0.0412824787, 0.0791771188, 0.0188380331, 0.0244115777, -0.0106894569, 0.0579757914, -0.00838080794, -0.0271573681, -0.0157917086, -0.0153135862, 0.015436532, 0.0221302509, -0.00704889465, -0.0173353627, 0.0172260776, -0.0277037937, 0.00234792382, -0.0523749255, 0.0265426394, 0.0602161363, -0.0111129377, -0.0152043011, -0.0155731393, 0.00285336794, 0.0171441138, -0.0322391279, 0.014070468, 0.0295343213, 0.0131483739, -0.0199582074, -0.0197942797, 0.0141387712, -0.0187697299, -0.00505785504, 0.00302071078, -0.0200265106, 0.00356542924, -0.0147808213, 0.00158890418, -0.0102318255, -0.0260235351, -0.0341243, -0.0110514639, 0.0331407338, -0.0129502947, 0.0013635034, -0.0314468108, 0.00353469281, -0.00731527712, 0.0190566033, -0.00326318736, 0.00472658407, 0.00505785504, -0.059997566, -0.00119957572, 0.0156414416, 0.0140021639, 0.0448888913, -0.00601751544, 0.0242476501, -0.033741802, -0.0135650234, -0.0369383916, -0.0147808213, 0.0244798809, 0.0211876649, -0.0378946364, -0.0236602426, 0.0573747233, -0.0530306362, -0.0499433279, -0.00876330584, -0.0100883888, -0.0357908979, 0.0200538319, -0.0225400701, 0.0539049171, 0.0262830872, 0.0101020494, 0.00715134945, -0.00615412183, -0.0203270447, -0.00971272122, -0.0460637063, -0.0153682288, -0.0373208895, 0.00988347922, -0.0295889638, -0.0126975728, 0.0218706969, 0.000807258941, 0.0170758106, 0.0297802128, 0.0156687628, -0.00893406384, 0.0197259765, -0.0184828565, 0.00543010747, -0.0124106985, -0.0251492541, -0.0138655575, -0.0516099297, -0.00309755187, 0.00638976833, -0.00474707503, 0.0125131533, -0.0124038681, -0.0292064659, 0.0383044556, 0.0259005893, 0.0202040989, 0.0786853358, 0.0410639085, -0.00351420185, -0.0425119363, 0.0333866253, -0.0168982223, -0.0322118066, 0.0489870831, -0.013619666, -0.0125882877, -0.0300534256, -0.0123014133, -0.0100952191, -0.00483245449, 0.0186331235, 0.0140977893, 0.016078582, -0.0119052548, 0.0127180638, 0.00333319814, 0.0305178873, -0.00153938425, -0.0108602149, 0.000398933626, 0.0195893701, -0.0359275043, 0.0418562256, 0.0100883888, -0.0237831883, -0.00159317313, -0.0221165903, -0.0135923447, 0.040134985, 0.0310643148, -0.0108465543, -0.0321844853, -0.00590823032, -0.0124380197, -0.003688375, -0.030873064, 0.00958294515, 0.0133191319, 0.024438899, 0.00913214311, 0.00554280821, 0.0124243591, -0.0166113488, 0.0403808765, -0.0296436064, -0.0190019608, 0.0180320553, -0.00654003536, -0.032348413, -0.00703523401, -0.040818017, 3.39648541e-05, 0.047402449, 0.0445063934, 0.0252585392, 0.029507, 0.00249477592, 0.000483245414, -0.00238036783, -0.00149754854, 0.0372389257, 0.00996544305, 0.0336051956, -0.0289605744, 0.0140568074, -0.0212423075, 0.0337691233, -0.00220277952, -0.0135581931, 0.0148218032, 0.0228542648, -0.0393426679, -0.0702703744, 0.0366378576, 0.0129229734, 0.0172807202, -0.0264606755, -0.0198352616, 0.0197396372, -0.0289059319, 0.0298348553, 0.0238651522, -0.00488026673, 0.06371326, 0.013790424, -0.0286327191, -0.0217340905, 0.0178681277, 0.0457358509, -0.0443424657, 0.00082518853, -0.030873064, -0.0189199969, 0.00259552314, -0.00680983299, -0.0380585641, -0.0151086766, 0.0286600403, 0.0181003585, 0.0147535, 0.0451894253, -0.0257503223, -0.0030190032, 0.00758165959, 0.0292884298, 0.03775803, -0.029507, -0.0308457427, -0.017854467, -0.00402306067, -0.00641367445, 0.00137972541, 0.0282502212, -0.00422797073, 0.0003688375, 0.00228645094, -0.0242613107, -0.00448410772, -0.0255180914, 0.0229498893, -0.00425529201, 0.0145076085, -0.0116798542, -0.0157234054, 0.0332226977, 0.00496906089, -0.0114476234, -0.0292064659, -0.00455582608, 0.039943736, 0.0367198214, 0.000287940842, 0.00628389837, 0.00525251916, -0.0274579022, 0.0210920405, 0.0225400701, -0.023755867, -0.0150540341, -0.0287420042, -0.0109285181, -0.00907067, 0.0160922427, 0.0197259765, 0.0280316509, -0.0167479552, 0.03305877, 0.0200265106, -0.0127931973, 0.00967857, 0.0167479552, 0.000865316659, -0.00939169526, -0.0120623522, 0.0406540893, -0.00477098115, 0.0370476767, 0.0151086766, -0.0123697165, 0.0382771343, 0.0145349298, -0.0256683584, -0.00554280821, 0.0160239395, 0.00287898164, 0.00597994868, 0.0190429427, 0.0125199836, -0.0275671873, 0.0184691958, 0.000130203058, 0.0125814574, 0.0213515926, -0.0112700351, -0.00614729151, 0.00209178682, -0.00392743619, -0.00228645094, 0.0145349298, -0.0287146829, -0.00207300344, 0.00574771781, 0.0380312428, -0.00411527045, -0.0118779335, -0.013428417, -0.00698742131, -0.00144461356, 0.0244525596, 0.0174446478, -0.00937803462, -0.0181140192, 0.0690682381, -0.0198079403, -0.0276901331, -0.0158736724, -0.0116798542, 0.0415283702, 0.00356201408, 0.00831250474, 0.0168845616, -0.0117344968, 0.0153682288, -0.0118028, 0.0313102044, 0.00147278863, -0.0191522278, -0.0194527637, -0.0197942797, -0.0174309872, -0.00931656174, -0.0012439728, -0.00445678644, 0.00842862, -0.000879404251, 0.0224444456, 0.00753384735, 0.00275432807, -0.00981517602, 0.0177588426, 0.0262421053, 0.0338510871, -0.0197669584, 0.0410365872, -0.0098083457, 0.0142753776, -0.0153409075, -0.00329221622, 0.0140294861, -6.58485951e-05, -0.0191658903, 0.0343428701, 0.0272529926, 0.0136947995, -0.0149310883, -0.0118028, 0.0158053692, 0.0338784084, -0.00560428109, 0.044643, -0.0152999256, -0.00481537869, 0.0421294384, 0.0209690947, -0.00551890163, -0.00688838167, 0.0270207617, 0.0331134126, -0.0172943808, -0.0259279106, 0.00115261716, 0.00862669945, -0.010156692, -0.0100952191, -0.0129502947, -0.0244252384, -0.00582626648, 0.0246164873, 0.0130390888, 0.00120213709, -0.0128956521, 0.037949279, 0.0139065394, 0.0169255435, 0.0194391031, -0.0145212691, -0.00531057687, 0.0184282139, 0.0103411106, 0.0104230745, 0.000779510709, 0.016720634, 0.0106553053, 0.0115295872, -0.0144256447, -0.00814857706, -0.00407428853, 0.000568197574, -0.00781389, -0.0292884298, 0.0219936427, 0.00593896676, -0.0206958819, 0.0223488212, -0.0136674782, 0.00971272122, 0.00944633782, 0.0127044031, -0.00797781814, -0.0095419623, 0.0113588292, 0.0240154192, 0.00799147878, 0.0274715628, 0.0216521267, -0.000876842882, -0.00580577552, 0.0143300202, -0.0147944819, -0.00197567116, 0.00199274695, 0.0382771343, 0.0128205186, -0.0336598381, 0.00235816929, -0.0259825531, 0.0258869287, -0.00962392706, -0.00596287288, -0.000856351864, -0.00961026642, 0.0284414701, 0.0018185738, -0.010819233, -0.0435501449, 0.00655711116, 0.0110514639, -0.0162971541, -0.0160239395, 0.0252858605, -0.00656394148, -0.0407906957, -0.0218706969, 0.025381485, -0.000783779717, -0.0308457427, 0.00330416928, 0.00736991968, 0.0187833905, 0.021829715, 0.00981517602, -0.0113998111, 0.0222122148, -0.0214335565, -0.00443288032, -0.000983566628, -0.0224581063, -0.0141114499, 0.022430785, 0.0130595798, 0.0102864681, 0.0277994182, -0.0113929808, 0.0144939478, -0.020463651, -0.0191112459, -0.00554963853, -0.0143710021, 0.0142207351, 0.00476073567, 0.0154092107, 0.00369179016, 0.0115022659, 0.0170348287, 0.00371569628, -0.00418698881, 0.00354835344, 0.0026928552, -0.0143300202, -0.0044089742, -0.0353537574, -0.0121648069, 0.00324952672, -0.0141660925, 0.0109695, -0.0238241702, 0.00469243247, 0.0313921683, 0.0143163595, 0.0425392576, -0.0161332246, 0.0057989452, 0.032047879, -0.0139748426, -0.0235099755, -0.0134215867, 0.0080188, -0.00324611156, 0.0173763447, -0.0304359235, -0.016679652, -0.0136947995, -0.0170894712, 0.0389874913, 0.0147261787, -0.0328128785, 0.000626255351, 0.00971955154, -0.00644441089, -0.00593896676, -0.0183462501, -0.0124106985, -0.0407633744, 0.0295889638, 0.0206822213, -0.0107167782, -0.0312282424, 0.00692253327, -0.00438165292, 0.00300021982, 0.0095419623, 0.0299168192, 0.0149720702, -0.035217151, -0.0479761958, 0.0373208895, 0.0625111237, 0.021488199, -0.00945316814, 0.00105187, -0.0174173266, -0.00814174674, -0.0397524871, 0.00557354465, -0.00199445453, 0.0184965171, 0.0386323147, 0.0240564011, -0.0074450532, -0.00956928357, -0.027239332, 0.0148218032, -0.019329818, -0.014944749, -0.00383181171, 0.0369657129, -0.000985274208, 0.00920727663, 0.00100832654, -0.0286053978, 0.00676885108, 0.006639075, 0.00582285132, 0.0272120107, 0.0140158255, 0.0218160544, -0.0381132066, 0.00396158779, 0.00042412043, 0.0153272469, -0.000399147073, -0.00346126663, -0.019070264, -0.00607898831, 0.00764313247, 0.0246711299, -0.00676202076, -0.0356816128, -0.00901602767, 0.0121374857, -0.0156824235, -0.0115569085, 0.0120282006, 0.0346434042, -0.00467194151, -0.0162561722, -0.0133806048, -0.0155048361, -0.00767045375, -0.0243705958, 0.0154092107, 0.0103889229, -0.0352717936, 0.00392743619, 0.0108328937, 0.06611754, -0.0145349298, -0.0297802128, 0.0164884031, 0.0284141488, -0.0361187533, -0.00859254785, -0.010819233, -0.0315560959, -0.0111949015, -0.00249306834, -0.00217375066, -0.0164610818, 0.0109626697, 0.00653662, 0.00773875695, -0.0341789424, 0.00678592687, 0.0161742065, 0.0017758843, 0.00317780836, -0.000499040529, 0.0139202, 0.0250536278, -0.0037908298, 0.0384137444, 0.0292884298, 0.0302993171, 0.00633171061, 0.00295411516, -0.00971955154, -0.0346980467, 0.0074792048, 0.0107440995, -0.0448888913, 0.0155594787, -0.00950098, 0.035599649, 0.0191385671, -0.0262694266, -0.0179910734, -0.0421021171, 0.00926191919, -0.0081963893, 0.0101976739, 0.00114493305, 0.00175539334, 0.0154638533, -0.0137835937, 0.00278506475, 0.00935754366, 0.00460363831, 0.0183462501, -0.0131552042, -0.00300021982, 0.046227634, 0.00986981858, -0.0427851491, -0.0151769798, -0.0121033341, 0.00376009336, -0.0500799343, 0.0120965037, -0.0245072022, 0.00116798538, -0.025723001, 0.00543693779, 0.0194664244, -0.0136811389, 0.00583992712, -0.0290971808, -0.0145485904, -0.00634537125, -0.0209144522, -0.0105665112, 0.0116457026, -0.0339330509, 0.0293977149, 0.00635903189, 0.038249813, -0.0210373979, -0.0190566033, 0.0249170214, -0.0135103809, 0.000362647523, 0.0116388723, 0.00654686568, 0.0249853246, -0.00063650083, -0.00120555225, 0.0254361276, 0.00405379711, -0.0265699606, -0.00513640372, 0.0281955786, 0.0341516212, -0.0365285724, -0.00760215055, 0.0346707255, -0.00714451913, 0.0131825255, 0.0113519989, -0.0203680266, 0.0139543517, 0.0321025215, 0.00424846169, -0.0402169488, 0.00747237448, -0.0022898661, 0.00613363087, -0.0158326905, 0.0200811531, -0.0182369649, 0.00795732718, -0.0224717669, 0.00781389, -0.00317268563, -0.0141251106, 0.0370476767, 0.0115842298, 0.0165020637, -0.00515689468, 0.0112427138, 0.0165840276, 0.0269934405, -0.0318019874, 0.011010482, -0.0094053559, 0.00926191919, 0.0147944819, 0.0252585392, 0.0110787861, 0.0175812542, 0.0331134126, 0.0206822213, 0.013769933, 0.000520385336, -0.0161878671, -0.00907750055, 0.0080666123, 0.0307911, -0.00351078669, -0.0130459191, -0.00112700346, 0.017021168, -0.00532082235, -0.00973321218, -0.0319385938, 0.0207915064, -0.00810759421, 0.00205251249, 0.0105733415, -0.0334685892, -0.000341302744, -0.0238924734, 0.00620876439, 0.0127453851, 0.00990397, 0.00902968831, 0.00200982275, -0.0210237373, 0.00601068512, 0.000869585609, 0.0249443427, 0.00624633115, 0.012294583, -0.00717867073, 0.00883160904, 0.00661858404, 0.0219253395, 0.00380107528, -0.0125336451, -0.0327855572, 0.0021959492, 0.0147125181, -0.00140790059, -0.00244184094, -0.00710353721, -0.00669713272, 0.0148764458, 0.0169801861, -0.00621217955, -0.0348073319, -0.00253234268, 3.69798e-05, 0.0179364309, 0.0223488212, 0.00758165959, 0.00192615134, 0.0254907701, 0.00827835314, 0.0225947127, -0.00808027294, -0.00750652608, -0.00846277177, 0.0372389257, -0.0149720702, 0.00032294626, -0.00639318349, -0.0228269435, -0.0067073782, -0.00035944581, -0.0153272469, -0.0043577468, -0.0199172255, 0.000252508529, 0.00990397, -0.000985274208, 0.00976053346, -0.0109011969, -0.0266792458, 0.00623608567, 0.0773192719, -0.00688496651, 0.0256273765, 0.00749286544, -0.0165567063, -0.0341243, 0.0112017319, 0.00422114041, 0.0096034361, -0.00557354465, 0.000390182249, -0.00366105372, 0.0164337605, -0.0100883888, -0.0195757095, -0.0301080681, 0.000572466524, 0.00219253404, 0.0284141488, -0.0224171244, -0.0235919394, 0.00869500265, 0.0111061074, -0.00510908244, 0.0131756952, -0.0117276665, 0.00518421596, -0.0250672903, -0.0432222895, 0.00131483737, 0.0340696573, 0.0231821202, 0.0162425116, 0.00501345797, 0.00790951494, 0.00732210744, -0.00803929102, 0.00492124865, -0.00852424465, -0.0128068579, -0.00130117673, -0.020805167, 0.00108516775, 0.0185101777, -0.00579211488, 0.00685081491, -0.0219663214, -0.0336325169, -0.00178100704, 0.0254497882, -0.0245618448, 0.00649222312, -0.0190429427, -0.0113929808, 0.0260371957, 0.0327035934, 0.00805978198, -0.0276081692, 0.0231684595, -0.00533448299, -0.013448908, -0.0146305542, -0.00590823032, -0.0405721255, 0.0292337872, -0.0221165903, -0.0242203288, 0.0204363298, -0.0393699892, 0.0102249952, 0.028140936, -0.00622925535, -0.0116661936, -0.00310950493, -0.0162834935, 0.00829201378, -0.0142480563, 0.0125473058, -0.00622584, 0.00508176116, -0.0157643873, 0.0138109149, -0.0096717393, -0.0149857309, -0.0281136148, 0.00105784647, -0.00550865615, 0.0105870022, -0.00028303155, 0.0148764458, 0.0238924734, -0.017512951, -0.0247121118, 0.0187833905, -0.00256137154, -0.0187833905, 0.0202587415, 0.0154775139, 0.0122057889, -0.0135650234, 0.0484679788, 0.00351761701, -0.00309072156, -0.0112700351, -0.0121989585, -0.0137767633, 0.0178408064, -0.0048427, -0.0022727903, 0.0236329213, 0.0284414701, 0.00033575311, -0.0220346246, 0.0140021639, -0.00632488029, -0.00353810797, 0.00844228081, -0.0164201, -0.0238378309, -0.00143692945, -0.0246164873, -0.0190156214, -0.0121374857, 0.0161332246, 0.0223215, -0.00712402817, 0.0103684319, 0.0227449797, -0.00954879262, -0.00569649041, -0.0190019608, -0.0152999256, -0.00438506808, 0.0119667277, -0.000677055854, 0.0132235074, -0.0238788128, 0.0247257724, -0.00697376067, 0.00589456968, -0.0117003452, 0.00752018671, -0.0194527637, 0.00242818031, -0.000211099701, 0.0117959697, -0.0125268139, -0.00238036783, -6.27002373e-05, -0.0044602016, -0.0200538319, -0.0173217021, -0.00894772448, -0.00885893, 0.0239197947, -0.015436532, -0.0080666123, 0.00549499551, -0.00783438142, -0.0234006904, 0.00529008592, 0.0184282139, 0.0298894979, -0.00297802128, -0.0175812542, 0.0166386701, -0.0197806191, -0.025381485, -0.00239915145, -0.00561452657, -0.0181276798, 0.00539937103, 0.0372389257, -0.012957125, 0.0174446478, -0.00374643272, -0.00716501, 0.0108943665, -0.00501004281, -0.00697034551, -0.0125268139, 0.005249104, -0.0179364309, -0.00855839625, -0.0107099479, 0.00103906309, -0.0136333266, -0.0214608777, 0.00393768167, 0.0181276798, -0.014903767, 0.00877013616, 0.0125473058, 0.0442605, 0.0234826542, -0.000741517055, -0.00915946439, 0.00290118018, -0.00235987687, 0.0181003585, -0.0115090962, 0.00169733551, 0.0152726043, 0.00781389, -0.0080188, -0.0265836213, -0.0300534256, -0.00373618724, 0.0135445325, 0.00297972886, 0.00299509708, 0.00108431396, 0.0127727063, -0.0241383649, 0.0272529926, -0.0179910734, 0.0252448786, -0.021679448, -0.00758165959, 0.00511591276, 0.00388645451, 0.0162971541, -0.0131893558, -0.0029080105, 0.00129946915, 0.0151769798, 0.000514408806, -0.00798464846, -0.0149310883, 0.00442263484, -0.00505444, 0.00462754443, 0.0487685129, 0.00784804206, 0.0170348287, 0.0058501726, 0.020504633, -0.00499979733, -0.0222258754, -0.00194493483, 0.00182881928, 0.0253678244, 0.000117823089, 0.0120691825, 0.0129981069, -8.62862e-05, 0.00791634526, -0.00809393357, -0.017553933, 0.00396158779, 0.0042894436, 0.0026672415, 0.0095078107, -0.021979982, 0.019329818, 0.00187150878, 0.00032977658, -0.0197532978, -0.0295889638, -0.0191658903, -0.0182369649, -0.0153682288, -0.0127522154, 0.00542669231, -0.0260371957, 0.016679652, -0.00866085105, 0.0155321574, -0.00234792382, -0.0118096303, 0.0116183814, 0.0097400425, 0.0398617722, -0.0247257724, 0.0199035648, -0.0356269702, 0.0111265983, 0.0101430314, 0.0095078107, -0.00713085849, -0.0174173266, -0.0109490091, -0.00585358776, 0.0169801861, -0.0212696288, -0.00764996279, -0.00846277177, 0.0187833905, 0.0158873331, 0.0280043278, 0.0145895723, 0.00143351429, -0.033550553, 0.00634878641, -0.0021532597, 0.0353537574, 0.00693619391, -0.0191112459, -0.00787536334, 0.00546084391, -0.00804612134, -0.0043235952, 0.00702840369, -0.00739041064, 0.00741773192, 0.0238924734, -0.00879745744, 0.00470950827, 0.0346434042, -0.00428602844, -0.00381815108, -0.0361460745, -0.0132166771, -0.00654345052, -0.0125131533, -0.00630438933, 0.00480171805, 0.0145485904, -0.00946682878, -0.0152316224, -0.00479830289, -0.0205729362, -0.0372935683, 0.0187150873, 0.0234006904, -0.00665956596, -0.0117549878, 0.00263138232, -0.003362227, -0.0129024824, 0.0206412394, 0.00664932048, -0.00842179, 0.027731115, 0.00403672131, 0.00902285799, -0.00574771781, -0.00736991968, 0.00498613669, 0.00426553749, -0.0208188277, -0.0152726043, -0.00497247605, 0.00852424465, 0.0188243724, 0.0145349298, -0.0143300202, -0.00316073257, -0.019671334, -0.0297802128, -0.00449776836, -0.0102249952, 0.00229498884, 0.028823968, -0.0152726043, 0.0368291065, 0.0191795509, 0.0254497882, 0.00344931358, -0.0123697165, 0.00814857706, 0.00577845424, 0.0184008926, -0.00989714, 0.0149174277, -0.0318019874, -0.0111880712, 0.00552914757, 0.0266929064, -0.0140158255, -0.0183735713, 0.00488368189, 0.00846960209, -0.0205456149, 0.0350259021, 0.027881382, -0.00609264895, -0.00276115839, -0.0392607041, 0.0150676947, -0.00535838911, -0.00550182583, -0.0239061341, 0.0102591468, 0.0161878671, -0.0106826266, -0.0138928788, 0.0321571641, -0.00156499795, -0.0147808213, 0.0235919394, 0.0059014, 0.0136879692, -0.0114681143, -0.00539254071, -0.000782072078, -0.0263240691, 0.0135855144, -0.0167479552, -0.00258698524, 0.0144666266, -0.0077934, -0.0177042, 0.00635561673, 0.0310369935, -0.000805978256, 0.0119189154, -0.0223488212, 0.0230728351, -0.0345067978, -0.0209827553, 0.0158736724, -0.0108260633, -0.0148081426, 0.0239880979, 0.03305877, -0.00887259096, 0.0455719233, 0.0304086022, 0.00152913877, -0.0128000276, -0.0118301213, -0.0174856298, -0.000757312169, -0.0207641851, -0.0383317806, 0.000766276964, -0.00771826599, -0.00402647583, 0.0167616159, 0.0136128357, -0.010518699, 0.00238378299, 0.00199786969, 0.0136060053, 0.00116286264, 0.00681666331, 0.0142480563, -0.0111607499, 0.0334139466, -0.0149174277, 0.0102113346, -0.000499894319, 0.00815540738, -0.00155560626, -0.00648539281, 0.0259415712, -0.000577589264, 0.00705572497, -0.00814174674, -0.0105391899, 0.0017588085, -0.0134557383, 0.0143710021, -0.0112085622, 0.0032939238, -0.00771143567, -0.0160922427, 0.00988347922, -0.00664590532, 0.0217614118, -0.0360641107, -0.00248282286, 0.0201084744, 0.0159829576, 0.00991763081, 0.0162971541, 0.00582968164, 0.0023154798, -0.0106348144, -0.0107714208, -0.0163108148, 0.0112153925, 0.00536521943, 0.0189199969, 0.00258015492, -0.0253541637, 0.00993812177, -0.029507, -0.0236739032, 0.0271300469, 0.0230318531, 0.00342369988, 0.00961026642, 0.0244252384, 0.0139202, -0.013599175, 0.00868134201, 0.00752018671, -0.00697376067, 0.00591506064, 0.00421089493, 0.0156687628, 0.005986779, 0.0123287346, -0.0106143234, 0.0178408064, 0.0166386701, -0.0445610359, -0.0156824235, 0.0183052681, 0.0138860485, 0.0121784676, -0.00518421596, 0.0183189288, -0.00502028828, -0.00344589842, -0.0088862516, -0.00589456968, 0.00729478616, -0.0113998111, -0.0219936427, -0.0400257, 0.0227313191, 0.00406745821, -0.0171441138, -0.0135923447, -0.00544035295, -0.000613448501, -0.0130390888, 0.0142207351, 0.00715818, 0.024097383, -0.0245481841, -0.00230523432, -0.00944633782, -0.0163927786, -0.00648539281, 0.0357635766, 0.00739041064, -0.0025989383, 0.0126292696, -0.00267407182, 0.0191522278, 0.00294899242, -0.0292337872, 0.00580236036, -0.00527984044, -0.00407428853, 0.00221644016, -0.00825103186, 0.0132849803, -0.0203270447, 0.00870866328, -0.00486660609, 0.00421772525, 0.015545818, -0.0307364576, -0.00481879385, 0.00125592586, 0.00374301756, 0.00958977547, -0.00983566698, 0.0108943665, 0.00179979042, -0.0161332246, 0.00644441089, 0.00776607869, -0.00700791273, 0.00655028084, 0.0139133697, -0.0104913777, 0.0145076085, 0.0074109016, -0.0024879456, 0.00554280821, 0.00875647552, 0.0160649214, 0.00271676132, -0.0184828565, -0.00344248326, -0.00725380424, 0.0147125181, 0.0102591468, 0.0128819915, 0.0231957808, -0.0078275511, -0.0021617976, -0.00965807866, -0.0166659914, 0.021488199, -0.0102523165, -0.00805978198, 0.0208188277, 0.0131005617, 0.00646148669, 0.00456948671, 0.0351898298, -0.0182233043, 0.00290971808, 0.000296478742, 0.00446703192, -0.0125541361, -0.0025220972, 0.00229669642, -0.0036712992, -0.00249989866, 0.0302719958, 0.0074109016, -0.0142890383, -0.00128580851, 0.000431164197, -0.00421431, 4.64248569e-06, 0.00625316147, -0.0028311694, -0.00769777503, -0.00622242503, -0.0231274776, 0.0185784809, -0.0094053559, -0.0276491512, 0.013298641, 0.0163654573, 0.0229362287, -0.000689008913, -0.0113383383, -0.0130390888, -0.00708987657, -0.00509883696, 0.0164201, 0.0182916075, -0.00132252148, -0.0181686617, 0.0284141488, 0.00228815852, 0.0197532978, 0.00200299243, -0.0270754043, -0.0182779469, 0.00396500295, -0.0065707718, -0.0029933895, 0.000629670511, 0.0106348144, 0.00686106039, -0.00232743286, -0.0298075341, -0.0180183947, -0.004511429, 0.00680983299, 0.0235236362, -0.0215018597, -0.0154638533, -0.00972638186, 0.00959660579, -0.020163117, 1.06390298e-05, 0.0111334287, -0.00478122663, -0.00187150878, 0.0150813553, -0.0189199969, 0.00459680799, 0.0283868276, -0.0148764458, 0.00427919813, 0.0272529926, -0.0292064659, 0.014411984, 0.0104435654, -0.00371911144, 0.0125814574, 0.0108055724, 0.010518699, -0.0010723609, 0.0159829576, 0.0044772774, -0.00460363831, -0.0181550011, 0.0230728351, 0.00218570372, -0.0181823224, 0.0180866979, 0.022020964, 0.00822371058, 0.0258186255, 0.0151633192, 0.00928924, 0.00686789071, 0.00754750799, 0.0121101644, -0.0191112459, -0.0114271324, 0.0307091363, -0.0226083733, -0.00153426151, 0.00340320892, -0.0115295872, 0.0154092107, 0.00269627036, 0.0178134851, 0.004340671, -0.0248760395, 0.0295616426, 0.00245720916, 0.00444995612, 0.0130254282, 0.0164337605, 0.00328026316, 0.0159829576, -0.00590481516, -0.0166250095, 0.00458997767, 0.0101088798, 0.0083329957, 0.0111607499, -0.000780791393, -0.0104230745, -0.00832616538, -0.0185238384, -0.010518699, -0.00757482927, 0.00767728407, -0.0217204299, 0.00767045375, 0.0183189288, 0.0136264963, 0.00853107497, -0.00308559882, -0.0221985541, -0.0113178473, 0.0060038548, -0.0164337605, -0.0134557383, 0.00991080049, 0.000691143447, -0.0421567596, 0.00644782605, -0.0148491245, -0.00641025929, 0.0257503223, -0.00699083647, 0.0243705958, -2.85486203e-06, -0.0098083457, -0.00529008592, 0.0107919117, 0.014944749, -0.00476415083, 0.0286327191, 0.0088521, 0.0067586056, 0.00396500295, 0.0134147564, 0.0029250863, 0.028140936, 0.00409136433, -0.0182369649, 0.00917995535, -0.0188107118, 0.00506810052, 0.0143300202, -0.0317200236, 0.00689521199, -0.00299509708, -0.00306681544, 0.0199991893, -0.00273895985, 0.00279018749, 0.0167616159, 0.00266211876, -0.00765679311, -0.022581052, 0.00671079336, 0.0146578755, 0.00520129176, -0.00123799627, -0.023755867, -0.00159914966, -0.00982883666, -0.00971955154, 0.00671079336, 0.00175027049, 0.0166250095, 0.0103206197, -0.0153545681, 8.11101e-05, 0.0257503223, -0.00165720738, 0.0163517967, -0.00691570295, -0.00592530612, 0.00682690879, -5.22946684e-05, -0.0174309872, -0.00338442554, 0.0251082722, 0.0112973563, 0.000940023339, -0.0177451819, -0.0218706969, 0.00485636061, 0.000365208893, 0.00743139256, -0.00519104628, 0.00537204975, -0.00824420154, 0.000425828, 0.0179774128, -0.00538571039, -0.0170348287, -0.005816021, -0.00638635317, -0.00835348666, 0.0210373979, -0.00395817263, 0.00426895265, -0.000689435808, -0.00457631703, -0.00309072156, -0.00856522657, -0.00973321218, 0.0223898031, 0.0108533846, -0.0131893558, 0.0224717669, -0.0143163595, -0.0118301213, -0.0121852979, 0.0253131818, -0.00382839656, -0.00597653352, 0.0317200236, -0.0184691958, -0.000218356916, 0.00433042552, 0.00608923379, -0.00259210798, -0.000451655185, -0.00974687282, -0.0176495574, -0.0210647192, 0.0127112335, 0.0177588426, 0.0134079261, 0.00619510375, -0.00862669945, 0.0215838235, -0.00713085849, -0.00484611513, 0.00995861273, 0.0181276798, -0.00383181171, -0.0307637788, 0.0168982223, 0.00908433087, -0.0380312428, -0.0125882877, -0.00576820876, 0.0121648069, -0.0107304389, 0.00619168859, -0.0172260776, -0.00221644016, -0.0101976739, 0.0239744373, -0.00911165215, -0.0138723878, -0.0153272469, -0.00200128485, 0.0151359979, 0.0153545681, -0.00197737874, 0.0262557659, 0.00559062045, -0.0165157244, 0.00359616568, 0.00275945081, -0.0199035648, 0.0141934138, -0.0165157244, 0.00956928357, 0.0246847905, 0.0207915064, -0.0249170214, -0.0400530212, -0.00503736408, -0.0171304531, 0.00654345052, 0.000424760772, -0.0100952191, -0.0187833905, 0.0140841287, 0.00184589508, -0.0109763304, -0.0222258754, 0.021337932, 0.0451347828, 0.0115500782, 0.00306340028, 0.0138928788, -0.0177588426, 0.00540278619, 0.00602434576, 0.0146168936, 0.000810674101, 0.0178817883, -0.0193708, 0.0131005617, 0.00223693112, -0.0184418745, -0.0143163595, -0.0152999256, -0.00720599201, -0.00401281519, 0.0108670453, -0.00493149413, 0.00423480105, 0.00675519044, -0.0243159533, 0.0301080681, 0.0137016298, -0.0223078392, -0.0196576733, -0.00699425163, 0.0228542648, -0.0133942654, -0.00345443632, -0.0028055557, -0.0107919117, 0.0180320553, -0.0313375257, -0.0274032596, 0.0190156214, -0.00901602767, -0.00399915455, 0.00190736796, 0.0136469873, 0.0169118829, 0.020504633, -0.00102711, -0.0080324607, -0.0035517686, 0.00229669642, 0.00609606411, -0.00813491642, 0.0088179484, 0.0172397383, -0.00615753699, -0.0234963149, -0.0143710021, -0.0136333266, -0.0216248054, 0.011994049, 0.00536863459, 0.00743139256, 0.0221165903, 0.000571612734, -0.00907750055, 0.00349712581, 0.00383864203, 0.00735625904, 0.00568966, -0.0130800707, -0.0138450665, 0.00653320504, -0.00399232423, 0.00167172181, 0.000993812107, -0.0109421788, 0.0215428416, -0.023264084, 0.0235919394, 0.037074998, -0.0100883888, 0.00682690879, -0.000916971, -0.0107509298, 0.0245481841, -0.0224990882, 0.00397866359, -0.00979468506, -0.00140875438, 0.0102864681, 0.00208837166, 0.00397524843, 0.022581052, 0.00459680799, -0.0258869287, 0.00549158035, 0.0097058909, -0.00590823032, -0.0113041867, 0.0128478399, -0.00619851891, 0.00866768137, -0.0129434643, 0.0164337605, 0.000295838399, 0.00736991968, -0.00471292343, 0.0134830596, -0.00482903933, -0.00905017927, -0.00121921289, 0.0287146829, -0.0233323872, 0.00961026642, 0.00969223, 0.00753384735, -0.00124482659, 0.00936437398, 0.00234621624, -0.00611997, 0.0139133697, 0.00164354674, -0.0109558394, -0.00139765511, -0.00574771781, -0.00366788404, 0.018045716, -0.00659809308, 0.0120077096, -0.0177725032, -0.0291245021, 0.00472658407, 0.00381473592, 0.024971664, 0.00430310424, 0.00470267795, -0.0138587272, 0.0184555352, 0.0143026989, 0.0129776159, -0.0080324607, -0.00113810273, -0.00562818721, -0.0128136883, -0.0132644894, -0.00527301, 0.000266169198, -0.00345443632, 0.0170621499, 0.00763630215, 0.00648197765, 0.0178134851, -0.00509883696, 0.027389599, 0.0274988841, -0.0010467472, 0.00203543669, -0.0103137894, -0.000570332049, -0.00460022315, 0.0123219043, 0.00899553671, -0.0124106985, -0.00545059843, 0.0210920405, 0.0124790017, 0.0117891394, -0.0087837968, -0.0106006628, 0.00614729151, -0.0020047, -0.0185101777, 0.00883160904, 0.0186467841, -0.0176905394, 0.0018356496, -0.000619425031, -0.0112222228, 0.0261328202, -0.00703523401, -0.0113178473, 0.0102796378, -0.0335778743, -0.0170758106, -0.0119598974, -0.00524568884, 0.00238890573, -0.0093029011, 0.0166250095, -0.0186467841, 0.0147535, 0.0214198958, 0.0106279841, 0.0241110437, 0.0181413405, 0.0130664101, -0.00562818721, 0.0135718537, -0.00811442547, 0.0089204032, -0.00885893, -0.000253148872, -0.0103411106, 0.0155048361, 0.00391719071, -0.00486660609, 0.0150676947, -0.0113246776, -0.00296094548, -0.0140158255, -0.00273895985, -0.00380107528, -0.000243970644, 0.0212696288, -0.0212559681, 0.0150403734, 0.00691911811, 0.000359018915, -0.00329563138, 0.00617119763, -0.0144666266, -0.0214198958, -0.00904334895, 0.0102454862, -0.00945999846, -0.0181823224, 0.0107440995, -0.0155868, 0.0234416723, -0.00608240347, 0.00645465637, -0.0107782511, -0.00971955154, -0.0380039215, 0.020805167, 0.0252858605, -0.0164064392, -0.024971664, -0.0353264362, 0.00794366654, -0.0104230745, -0.00605166703, -0.00104503962, 0.0112700351, 0.0109968213, 0.00851741433, -0.00749286544, -0.0107987421, 0.0169392042, 0.00114664063, -0.0210237373, -0.00347321969, -0.0066561508, 0.0186331235, -0.00711719785, 0.00759532, 0.00010752424, -0.000363074418, -0.0110787861, 0.0146988574, -0.00641708961, -0.00443629548, 0.00971272122, 0.0211057011, -0.0329494849, 0.0037908298, -0.0137835937, 0.0384957083, -0.0271983501, 0.0135103809, -0.00774558773, -0.0185238384, 0.0155048361, 0.0023240177, 0.0100474069, 0.00208837166, -0.00467194151, 0.00426212233, -0.00527301, 0.00218228856, 0.0191112459, 0.0171031319, 0.0128956521, -0.00019124907, -2.50667563e-05, -0.0215428416, -0.00355518376, 0.005986779, 0.0350259021, -0.018537499, 0.00793683622, -0.0081280861, 0.0144666266, 0.00720599201, 0.000706511666, 0.0177588426, 0.0140294861, 0.028523434, 0.00649905344, 0.00253746542, 0.00726063456, 0.0199582074, -0.00978785474, 0.00818272866, 0.00364397792, 0.0279770065, 0.0066561508, 0.0131142223, 0.0178408064, -0.0074109016, 0.00795732718, -0.0103957532, -0.0227586403, 0.00979468506, -0.0268704947, 0.00145229767, 0.00244867126, 0.00411185529, 0.0100952191, 0.00661175372, 0.0173900053, -0.0111265983, -0.0065024686, 0.0217340905, 0.0145349298, 0.00224546902, 0.00356542924, -0.00350395637, 0.00514323404, 0.00441580452, -0.00998593401, 0.0141797531, -0.0199445467, -0.0017758843, 0.0163517967, -0.0241656862, 0.000768411439, -0.00151035539, -0.00231035706, -0.0124585107, 0.000145464553, 0.00965807866, 0.00331441476, 0.00769777503, -0.0153272469, 0.00810759421, -0.00290971808, -0.0130800707, 0.00586041808, -0.00765679311, 0.00612680055, -0.006553696, 0.00388986967, -0.00913214311, -0.027048083, 0.000773961074, -0.00650929892, -0.0184965171, 0.00870183297, -0.000995519687, 0.00222497806, 0.00318463868, -0.0205592755, -0.0100678978, -0.00621559471, -0.00475732051, -0.0127317244, 0.0108670453, 0.0208734702, 0.0214745384, 0.0010032038, 0.00559403561, -0.00756116863, -0.0198079403, -0.0114954356, -0.00477781147, 0.00909799151, -0.00113554136, -0.0231684595, 0.0147261787, -0.010347941, 0.00590823032, -0.00400598487, -0.00258015492, -0.0116388723, -0.00256990944, -0.00673811464, -0.00702157337, -0.00203372911, 0.0135855144, 0.0110719558, -0.0148627851, 0.00431676488, -0.0081280861, -0.0124243591, 0.00662882952, -0.0110241426, 0.000933193, -0.0340696573, 0.0366651788, -0.035217151, -0.00536180427, 0.00376692368, 0.00508176116, -0.00242305757, 0.0111470893, -0.00803929102, 0.0170758106, -0.0207778458, 0.0226630159, -0.00584334228, 0.0121852979, -0.000500748109, -0.00397524843, 0.00864719, 0.000815369945, -0.0236192606, 0.00799147878, -0.0141251106, -0.013107392, -0.0167342946, -0.00330587686, 0.00546084391, -0.016119564, 0.0030104653, 0.018045716, 0.0124311894, -0.0184828565, -0.0097058909, -4.80523959e-05, -0.00997910369, 0.0190975852, -0.0174583085, 0.026747549, -0.00283799972, -0.00180491316, 0.019821601, 0.000585273374, 0.0283595063, 0.00983566698, -0.00906384, -0.0128068579, -0.00707621593, -0.0259688925, -0.00638293801, 0.00828518346, -0.00441580452, 0.0201084744, -0.00810076389, -0.0147671606, 0.00976053346, 0.00781389, -0.0227039978, -0.0016811135, 0.00883160904, -0.0131005617, -0.0291245021, 0.00649222312, -0.0136674782, 0.00467194151, 0.00995178241, -0.00405038195, -0.00999276433, 0.0214198958, 0.0231684595, -0.0170484893, 0.00728795584, 0.020504633, 0.0253405031, -0.00914580375, -0.000184632197, 0.00704206433, -0.00951464102, 0.0237422064, -0.00820322, -0.000760727329, 0.0169938467, -0.0080666123, -0.0149720702, 0.0160376, -0.0105801718, 0.0180183947, 0.000235859625, 0.000877696672, 0.0184965171, -0.00637269253, -0.0180866979, 0.00238549057, -0.010648475, -0.00425870717, 0.0277584363, 0.00716501, 0.00466169603, -0.00449093804, 0.00698400615, 0.0119462367, 0.00283629214, 0.0250946116, 0.0125541361, -0.0107987421, 0.000291996344, -0.00609606411, 0.00917312503, -0.0074450532, -0.032867521, 0.0142343957, -0.0751882046, -0.00732893776, -0.00412551593, 0.00128922367, 0.00959660579, 0.00227791304, 0.00639318349, 0.00615412183, 0.0496427938, 0.00139509374, -0.00817589834, 0.0122740921, 0.0199445467, 0.00743139256, -0.00942584686, 0.0155048361, 0.0105596809, 0.0105255293, -0.00221644016, -0.00202006823, 0.0142890383, 0.00428261328, 0.00124055764, -0.00874281488, 0.026706567, 0.0140021639, 0.00872232392, -0.00460022315, -0.00708987657, -0.0145895723, -0.000343650667, -0.0200948138, 4.04750062e-05, -0.00935071334, -0.00770460535, -0.00668005692, 0.0080188, -0.0113178473, -0.0298621766, -0.0138382362, -0.00310608977, -0.00472999923, 0.0169255435, -0.0082646925, -0.00483928481, 0.0162561722, 0.00295753032, 0.0122126192, -0.00306510786, 0.0125677967, -0.0192068722, -0.00809393357, -0.0035688444, -0.00326489494, 0.0220756065, 0.0150676947, -0.0199991893, 7.48133898e-05, 0.00256990944, 0.0209144522, 0.00897504576, -0.0143710021, -0.0143026989, 0.0293703936, 0.0420474745, 0.00460022315, -0.0167752765, -0.00842862, -0.0110992771, 0.00629072869, -0.0185101777, -0.0186331235, -0.00214301422, -0.0080188, 0.00348858791, 0.0174446478, -0.0226356946, 0.00747237448, 0.0146442149, 0.0304632448, 0.00702840369, 0.00834665634, 0.0204226691, -0.024097383, 0.0171304531, 0.0130937314, -0.00383181171, -0.0172807202, 0.0218160544, 0.00423480105, 0.0184145533, -0.00548816519, -0.0182096437, 2.96692197e-05, -0.006639075, -0.0149720702, -0.0107987421, 0.00678934203, 0.0138792181, 0.00287556648, -0.00256649428, -0.0146715362, -0.00567941461, -0.00483928481, 0.0167069733, -0.00198933179, 0.0116047207, -0.0345341191, 0.00315048709, 0.0043235952, 0.0126907425, 0.00821688, 0.0171987563, 0.000385059509, 0.0164884031, -0.000434365909, 0.0110309729, -0.00748603512, 0.00294386968, 0.00539937103, 0.0117891394, 0.00615070667, -0.0193434786, -0.019630352, 0.0228815861, 0.0130459191, -0.022581052, 0.00842862, 0.0107099479, -0.017854467, -0.00713085849, -0.00480171805, 0.00126275618, -0.00674153, 0.00769777503, -0.00195005757, -0.00129349262, 0.0325396657, -0.0135308718, -0.00115944748, -0.00235646171, 0.0113315079, 0.0450254977, 0.00247599254, -0.025531752, -0.0195347276, 0.0107850814, -0.0246847905, 0.00664249, -0.00502028828, 0.00486319093, -0.0113656595, 0.0163244754, -0.00127470924, -0.00971955154, -0.0276081692, 0.00717867073, -0.00489392737, -0.004511429, 0.000236499967, -0.0126087787, -0.00540278619, 0.00241281209, 0.0152862649, 0.0122467708, -0.00754067767, 0.0198762435, 0.00468560215, 0.00444654096, -0.0124311894, -0.00218570372, 0.00758165959, 0.0217340905, -0.0192205328, -0.0096034361, -0.0166250095, -0.00398207875, -0.0290971808, 0.0162425116, 0.00764996279, 0.00672786916, -0.00691228779, 0.00741773192, 0.0106211537, 0.00408453401, -0.016720634, -0.00549158035, 0.0096375877, 0.0227039978, 0.00952147134, 0.011611551, 0.0243159533, -0.0208871309, -0.00557012949, -0.00510225212, -0.0107031176, -0.00367471436, -0.0119872186, 0.000737675, 0.00260576862, -0.00711719785, -0.00907067, -0.0105391899, 0.0149857309, -0.0125268139, -0.00282433908, -0.0175949149, 0.0126702515, -0.0177178606, 0.0239197947, -0.00416991301, -0.0179227702, -0.00488026673, 0.00190224522, 0.0175266117, 0.0135581931, -0.00941901654, -0.00706938561, -0.0169665255, 0.0216248054, 0.0148081426, 0.0135581931, 0.0166113488, 0.0023069419, 0.0108738756, 0.00305486238, -0.0095419623, 0.0165020637, -0.00672786916, 0.0143710021, -0.00615070667, 0.00683373911, 0.0202177595, -0.0108328937, -0.00915946439, -0.018728748, -0.00258357, -0.000633512565, 0.0083671473, 0.00369179016, 0.0253678244, -0.00162049441, 0.0095419623, 0.00274749775, 0.00326489494, 0.00423138589, -0.0143710021, 0.0138177453, 0.00561452657, -0.000365635788, -0.0150813553, -0.00269456278, 0.0120760128, 0.019971868, 0.0128205186, 0.00771826599, -0.0103616016, 0.0317200236, -0.024438899, -0.000950268819, -0.0257503223, 0.000950268819, 0.0146442149, -0.0191522278, 0.0179637522, -0.0117071755, 0.0100815585, -7.18251249e-05, -0.00706938561, 0.00666298112, 0.00578869972, -0.00813491642, -0.00766362343, 0.00971272122, -0.00479830289, 0.0334685892, 0.00420406461, 0.0265289787, -0.0280862935, -0.0111129377, -0.00996544305, -0.0088521, -0.00564867817, 0.00174600154, -0.00756116863, 0.0115432478, -0.0138860485, -0.0148901064, 0.0165567063, -0.0294796787, 0.000612594711, -0.0212286469, 0.00852424465, 0.00726746488, -0.0317200236, -0.00812125579, 0.0024452561, 0.017021168, -0.000487087498, -0.0115022659, 0.0116457026, -0.0259825531, -0.0177042, -0.00545401359, 0.0106416447, -0.0107167782, -0.0112768654, -0.00771826599, -0.00165208464, -0.0139475213, -0.00419040397, -0.00646148669, -0.0177861638, -0.00845594145, -0.0111265983, -0.00352444733, -0.00662882952, -0.00754750799, -0.00327001768, -0.0033793028, -0.0189199969, 0.00280726328, -0.00311121251, -0.0176768787, 0.0432769321, 0.0306544937, 0.0197942797, 0.00684398459, 0.00241110451, 0.00320342206, 0.0286327191, -0.0134625686, -0.000287087052, -0.00955562294, -0.0103684319, -0.00520470692, -0.0154092107, -0.0217204299, -0.0181550011, -0.0387962423, -0.0163244754, -0.00540961651, 0.00627706805, -0.0290971808, 0.00593896676, -0.00758165959, -0.00175710092, -0.0151223373, 0.0300534256, -0.0103616016, -0.00326318736, -0.0126770819, -0.0144256447, 0.0250672903, 0.0124038681, -0.000525508076, -0.0105665112, -0.015245283, -0.00297119096, -0.00113724894, -0.00980151538, 0.0161468852, 0.000739809475, -0.0057989452, 0.00899553671, -0.0111470893, 0.00407087337, -0.00493832445, -0.019288836, -0.0205729362, 0.0217204299, -0.00852424465, -0.0053003314, 0.0607079193, 0.0135581931, 0.00498955185, -0.0358455405, 0.0277994182, -0.0164610818, -0.00151291676, 0.0288512893, -0.0105118686, 0.0135240415, 0.0178134851, 0.0179227702, 0.00321025238, 0.0080324607, 0.00163415505, 0.000601495442, 0.0249580033, -0.00572722685, -0.0127931973, 0.00192273618, -0.00465828087, -0.025190236, 0.0146305542, -0.0193844605, 0.0257639829, 0.00614046119, -0.00795732718, -0.0155321574, -0.00752701703, 0.0320205577, -0.00673469948, 0.0133464532, -0.0100815585, 0.0246574692, -0.013769933, -0.00642392, -0.0132303378, -0.0266109426, 0.00412210077, -0.00031526215, 0.0181823224, 0.0165157244, 0.0188380331, -0.00993812177, 0.0156414416, -0.00608240347, 0.00258869282, -0.0264879968, -0.00385571783, -0.0408453383, -0.00122262805, -0.0153818894, -0.000203202144, -0.0247667544, 0.00838080794, -0.0113383383, 0.0101430314, 0.0209827553, 0.00976736378, 0.00606874283, 0.019070264, 0.0164474212, -0.0157917086, 0.00242647273, 0.000891357311, -0.0204499904, -0.00312316557, 0.016338136, -0.0120213702, 0.00906384, 0.0182779469, -0.0105801718, 0.0251765754, -0.0124448501, -0.0059526274, 0.0200401712, -0.0109011969, 0.00142839155, 0.00814174674, -0.0118711032, -0.0279087033, 0.00695326971, 0.00279189507, -0.0187697299, -0.0118437819, -0.0096375877, -0.0217887331, -0.00416308269, -0.0117208362, 0.0123902075, -0.0101157101, 0.0102796378, 0.000108164582, -0.00194835, -0.00129605399, 0.00839446858, -0.0203270447, 0.0030275411, -0.00550865615, -0.0130595798, 0.0192751754, -0.0038079056, -0.00584334228, -0.0185101777, -0.0135855144, 0.0233050659, -0.00115688611, 0.0158873331, 0.00850375369, 0.000250160607, 0.00794366654, -0.00713768881, -0.00063223188, 0.034424834, 0.00700791273, 0.00702157337, 0.0074792048, 0.014944749, 0.0175402723, 0.00699425163, -0.00328880106, -0.00915263407, -0.0123082437, 0.00849692337, -0.00545059843, 0.00028644671, 0.0226356946, -0.00484611513, 0.00998593401, -0.00347321969, -0.00774558773, 0.0011833536, 0.0023154798, -0.0170348287, 0.0235372968, 0.015545818, 0.00558720529, 0.0100269159, 0.000441409706, 0.00759532, -0.00261942926, 0.017854467, 0.00125336449, -0.0136879692, -0.00475049, -0.00722648297, -0.0215974841, 0.00356542924, 0.0171304531, -0.00198250148, 4.07418156e-05, -0.0125404755, -0.00832616538, -0.000659980054, 0.00209690956, 0.0164884031, 0.0141114499, -0.0218160544, -0.00874281488, -0.0215291809, 0.017512951, -0.0126634212, 0.010306959, 0.00952147134, 0.0105665112, -0.0162425116, -0.003036079, -0.0152043011, -0.00184247992, -0.00718550105, 0.0116798542, 0.0210100766, -0.000429883512, 0.0152316224, -0.0277174544, -0.00383181171, -0.0121921282, -0.0120077096, -0.0136333266, -0.00606191251, -0.0164474212, 0.0137357814, -0.00809393357, 0.0476756617, 0.0160512608, -0.00523885852, 0.00592530612, 0.003191469, 0.0129298037, -0.0166113488, 0.00844228081, -0.0108807059, -0.0118164606, 0.011481775, -0.00711719785, -0.00688155135, 0.00136094203, -0.0164884031, 0.00166318391, 0.0200128499, 0.030190032, -0.0174173266, -0.00187150878, -0.0201494563, -0.00499638217, -0.00805295166, -0.00926191919, -0.00219424162, -0.0184145533, -0.00230523432, -0.00300363498]
13 Aug, 2021
jQWidgets jqxComboBox enableItem() Method 13 Aug, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxComboBox is used to represent a jQuery combobox widget that contains an input field with auto-complete functionality and a list of selectable items displayed in a drop-down. The enableItem() method is used to enable an item. It accepts a single parameter item of object/string type and it does not return any value. The following fields can also be used for the enabled item: label value disabled checked hasThreeStates html group Syntax: $('selector').jqxComboBox('enableItem', 'Item' ); Linked Files: Download jQWidgets from https://www.jqwidgets.com/download/ link. In the HTML file, locate the script files in the downloaded folder: <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcolorpicker.js”></script> <script type=”text/javascript” src=”.jqwidgets/jqxbuttons.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcombobox.js”></script> The below example illustrates the  jqxComboBox enableItem() method in jQWidgets: Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcolorpicker.js"> </script> <script type="text/javascript" src=".jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxlistbox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcombobox.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxComboBox enableItem() Method </h3> <div id='jqxCB'></div> <br> <input type="button" id='jqxBtn' style="padding: 5px 20px;" value="Enable Item" /> </center> <script type="text/javascript"> $(document).ready(function () { var data = [ "Computer Science", "C Programming", "C++ Programming", "Java Programming", "Python Programming", "HTML", "CSS", "JavaScript", "jQuery", "PHP", "Bootstrap" ]; $("#jqxCB").jqxComboBox({ source: data, width: '250px', animationType: 'slide' }); $("#jqxCB").jqxComboBox('disableItem', "Python Programming"); $('#jqxBtn').on('click', function () { $("#jqxCB").jqxComboBox( 'enableItem', "Python Programming"); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxcombobox/jquery-combobox-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxcombobox-enableitem-method?ref=asr10
PHP
jQWidgets jqxComboBox enableItem() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox enableItem() Method, Node.js date-and-time Date.transform() Method, PHP Tutorial, PHP
GeeksforGeeks
[-0.0358928517, 0.0170476548, -0.0139237018, 0.041720368, 0.0213820506, 0.00757432, 0.0150036765, 0.0259193946, 0.0292535443, -0.00252598128, -0.0379223339, 0.000448479463, -0.0065305857, -0.0035334744, 0.0292680413, 0.00586375548, -0.0186132565, 0.0364727043, -0.0475188904, 0.000583929301, -0.00789323822, 0.0132206306, -0.0357768834, 0.0275719725, -0.0113071185, 0.0223533027, -0.0138439713, 0.0295724627, -0.0017866696, -0.00363676064, -0.0168302115, -0.0278763957, 0.0105025731, -0.0169606768, -0.00783525314, -0.0124885673, 0.0163953211, 0.0274270102, -0.0325007178, -0.0413144715, -0.00530927209, -0.0150036765, 0.00881375372, -0.0160329137, 0.00700171571, 0.0314279906, -0.00999520253, -0.032761652, -0.0202948283, 0.0180189069, 0.0136700161, 0.0385021865, -0.0100821806, 0.0207007248, 0.0267601795, -0.00284671201, -0.000489250291, 0.0192365982, -0.00383064873, 0.00666467659, -0.00755257532, -0.0278184097, -0.00859630946, -0.0330515765, -0.0165257882, 0.0114810737, 0.015424069, 0.00964729115, -0.0168012176, -0.00249698851, -0.040821597, 0.0654653162, 0.000998433097, -0.0122928666, 0.0260353647, -0.0225127619, -0.0342112817, -0.00395749137, -0.00831363164, 0.020845687, 0.000179278533, -0.0144528169, 0.00584925944, -0.00890797935, -0.0232520737, 0.00224692724, -0.0180768929, -0.0334574729, 0.0256874524, 0.0274415072, -0.0392849892, -0.0286157075, -0.0293115303, -0.0218314361, -0.0192800872, 0.0071756714, -0.0111983959, 0.000771022227, -0.0474029183, 0.0225272588, 0.00367300143, -0.00515343668, -0.0123943416, -0.036356736, 0.00869778357, 0.0423872, 0.0391400233, -0.0057659056, 0.0230201334, -0.0057514091, 0.0192945823, -0.0509110242, -0.00334864645, 0.000532286242, -0.0206862278, 0.0305872038, 0.00723728072, -0.022744704, 0.0182943381, 0.00786424614, 0.00632401323, -0.014510802, 0.00595798157, 0.0712638348, -0.0134670679, 0.00806719437, -0.00417856, 0.0014632208, 0.0538972653, -0.0091326721, -0.00585650746, 0.00161452603, -0.00923414622, -0.00455908803, 0.0285577215, 0.029949367, 0.0120464303, 0.00966178719, -0.0238754153, -0.0263542831, -0.0496353507, -0.0435758941, -0.0145397941, 0.0309641082, 0.00241725892, 0.0391980112, 0.0207587089, 0.0350810587, -0.0156415142, 0.00741123641, -0.0111114178, -0.056245666, 0.00866154209, 0.00945883896, 0.0414014496, 0.0150326686, 0.00119956932, -0.0212370884, -0.0295869596, 0.027209565, -0.00213276898, -3.03233264e-05, -0.00161180797, -0.00449747872, -0.0249046534, 0.018120382, 0.0264267642, -0.0160619058, -0.0410245433, 0.0399518162, -0.0173230842, -0.0260788538, -0.0249626376, -0.0256729573, 0.00928488374, 0.0172940921, 0.0399518162, -0.033660423, -0.00535276067, 0.00183287659, -0.0193090793, -0.00801645685, -0.00439238036, 0.00534188841, 0.0140251759, 0.00168700761, -0.0132133821, 0.00890797935, -0.0235709921, -0.00144510041, -0.0167577285, -0.0240493715, 0.0423582047, 0.00657407474, 0.00822665356, 0.0286881886, -0.0423872, 0.0219329093, 0.00979225431, 0.00179663592, 0.0386761427, -0.0195555165, 0.011814489, -0.00292100548, -0.00416768761, 0.0228896663, 0.0097632613, -0.0576083176, 0.0257454384, 0.0123363556, 0.0115173142, 0.0110389367, 0.00737499539, 0.0178594477, 0.0355159491, 0.0119956927, -0.0151341427, -0.0174825452, -0.0652333722, 0.00787874218, -0.0210196432, 0.0158154685, 0.000142584759, 0.0399518162, -0.0837886482, -0.0157139953, 0.00507733086, -0.0274994913, 0.0339793414, 0.0222373325, -0.0203818064, -0.0048200218, -0.00524041429, -0.0233100597, 0.0338343754, 0.0167867225, -0.00849483535, -0.000546329538, -0.0386761427, 0.0463301912, 0.0275864694, -0.0216719769, -0.0207877029, -0.00975601375, 0.00662481179, 0.0346171781, -0.00348092546, -0.000573963101, 0.00905294251, -0.00745834922, -0.00857456494, -0.006121065, -0.0136047825, 0.00263832766, 0.0192655902, 0.0116187893, 0.019106131, -0.0410245433, -0.0238319263, -0.0110244406, 0.00891522784, 0.0401837602, 0.00977775827, 0.0372555032, 0.00111893355, -0.00114973821, 0.0491134822, -0.0209471621, -0.0110461852, -0.0395749137, 0.0351100527, -0.000534551276, 0.0365017, 0.0137135051, 0.037110541, -0.00241182279, -0.0200483911, 0.00292825373, 0.0335734449, -0.00818316452, -0.00263470341, 0.0384731963, 0.0592319034, 0.0331385545, 0.00969078, -0.0258904025, -0.0276589505, 0.0159024466, -0.0366756544, 0.0435179099, -0.0133583453, -0.00947333593, -0.0128509747, 0.0112346364, 0.0649434477, 0.0128872152, -0.0040408452, 0.0105460621, 0.0216429848, 0.0139599424, -0.00972702075, 0.00468230667, 0.00144600647, 0.0214980207, -0.0213675536, 0.0387341268, 0.0579852201, -0.0197294708, 0.00524403853, -0.0265717283, 0.0373714752, 0.015453062, -0.0551149547, -0.0492294542, -0.0416623801, 0.0101909032, 0.0240638666, 0.0150471646, -0.0219763983, -0.00288476469, -0.00643998384, 0.0232085846, -0.0342692658, 0.0178014636, 0.0626820251, 0.00991547294, -0.0103431139, -0.00648709666, 0.0172940921, -0.0207152199, -0.0616962761, 0.00205666339, 0.0307031758, 0.0402127504, -0.022657726, -0.0473739281, -0.0192365982, -0.0140179275, 0.00771203451, 0.0119304592, -0.00932837278, -0.00750183826, -0.0165112913, 0.0139889345, 0.0163518321, -0.0233390518, -0.00487075886, -0.00107363262, 0.0232085846, -0.0188886859, 0.00133728422, -0.0305582117, 0.0131771415, -0.0404157, 0.00214726524, -0.0395169295, -0.0120899184, -0.0014831532, -0.0680166632, 0.00444311742, 0.0141701382, -0.0134090828, 0.0347331464, -0.00824839808, 0.0414014496, -0.0449095555, 0.00411695056, -0.01271326, -0.0209761541, 0.0229766443, -0.0454314202, -0.039024055, -0.00263107941, 0.00825564563, -0.064305611, 0.00312576583, -0.0137280012, -0.0103213694, -0.00791498274, 0.0120174373, -0.0576083176, 0.0406476408, 0.0242958087, 0.00277423044, -0.0108649805, -0.00415681582, 0.0360958, 0.0118289851, -0.0340373255, 0.0178304557, -0.0403577127, 0.0132931117, -0.0298044048, -0.0243682899, 0.0197004788, -0.0268471576, 0.000609750859, 0.0130756674, 0.0286591966, 0.0113071185, 0.0155545361, -0.00380165619, -0.00127748691, -0.0211646054, -0.0320948213, -0.0249481425, -0.0543031618, 0.0280068628, 0.0205412656, -0.020802198, 0.0206862278, -0.00320549565, 0.0064508561, 0.0204107985, 0.00342656416, 0.0190336499, 0.00840060879, 0.057028465, 0.00384152099, -0.0186132565, 0.0382122621, -0.039806854, -0.0135105569, 0.0246292222, -0.0126045374, -0.0177289825, -0.0302392934, 0.0143875834, 0.0208746791, -0.0136700161, 0.0223678, 0.0142571162, 0.0501282252, -0.0354289711, 0.0254990011, 0.0333415, 0.0512299426, 0.0342692658, 0.00161180797, -0.0296884328, -0.0112418849, -0.00644723186, -0.00416768761, -0.0265137423, -0.0154675581, -0.00161633804, -0.0146122761, 0.0177434776, 0.0206572358, 0.0436918661, -0.0345881842, -0.0532884188, -0.00013386432, -0.00803820137, 0.00363857276, -0.00969078, 0.018163871, 0.0178304557, 0.00316563062, 0.00542524224, -0.0362697579, 0.0204977766, 0.0087630162, 0.0270066168, -0.00279778684, -0.0284562483, 0.00119956932, -0.00339938374, -0.0164678022, 0.000156288297, -0.0497223288, -0.0213965476, 0.0553758852, 0.0282677952, -0.00244081533, 0.017178122, 0.0108939735, -0.0016072779, -0.0172506031, 0.0385601744, 0.0433149599, -0.00403359719, 0.0458953045, -0.0194685385, 0.0387341268, -0.026223816, 0.0618122481, 0.0139237018, -0.0166707505, 0.0146340206, 0.0289346259, 0.015424069, -0.0586520508, 0.0302972794, -0.00113071187, 0.0138222277, -0.0273255352, -0.0291520711, 0.0213240646, -0.000838973676, -0.00842960179, 0.0353999771, -0.0313700065, 0.0539842434, 0.0374294594, -0.0187727157, -0.0175550263, -0.00863255, 0.0152211208, -0.0280358549, -0.0281373281, -0.0139237018, 0.000992997, 0.0137280012, 0.0173230842, -0.0319498591, -0.00937186182, 0.00766854547, 0.00968353171, 0.00488887914, 0.0360378139, -0.0231071115, -0.0099009769, -0.00483451784, 0.0125103118, 0.0334574729, 0.00414956734, -0.0305002276, 0.00705970079, 0.00676252646, -0.0221068654, 0.0224692728, 0.0122783706, -0.017279597, -0.0154385651, 0.0368206166, -0.00742935669, -0.0460112728, -0.00804545, -0.011742007, -0.0220923703, 0.0330515765, -0.024542246, -0.00513894, 0.0220923703, 0.0213820506, -0.0132786157, -0.0256149713, 0.0120899184, 0.0358058736, -0.000299212814, 0.00270718499, 0.00800920837, 0.019961413, -0.0204252936, -0.0182363521, -0.00779901212, -0.0339503475, -0.0160619058, -0.0442137308, -0.00699084345, -0.0188596938, 0.0401257724, 0.0140686641, 0.0289926101, -0.0197584648, 0.0291955601, 0.0336314291, -0.00834987219, -0.00399735617, 0.0254700091, 0.000869778334, 0.0371975191, 0.014554291, -0.000911455194, -0.0108359884, 0.0575213395, -0.00433439529, -0.0172940921, 0.0227157101, 0.00658857077, -0.0330805704, -0.00500484928, 0.0195845086, 0.0191931091, 0.0164678022, -0.0186132565, -0.00748009374, -0.0251220968, 0.0231361035, 0.0224112887, 0.0091326721, 0.00665742811, -0.000513712817, 0.00642911159, 0.0266587064, 0.00216719764, 0.00464969, 0.023599986, -0.0127784936, 0.00554483663, 0.0112491334, 0.0268181656, 0.0010301437, 0.0264702532, -0.00207297178, -0.0227736961, 0.00728076929, 0.0230636224, 0.0107345143, 0.000245531177, -0.0315149687, 0.0630879179, -0.0128944637, -0.016308343, -0.0397198759, -0.0188162047, 0.0277314316, -0.00445761392, -0.00149855553, 0.00882100221, -0.029949367, 0.03076116, -0.0102923773, 0.0289201289, -0.0116260368, -0.0337473974, -0.0252380669, 0.00421842467, -0.0202223454, 0.00231940881, -0.00960380211, -0.0100314431, 0.00775552355, 0.0210486352, 0.0198454428, -0.00587462774, 0.0440107845, -0.00361682824, 0.0300363451, 0.0222373325, 0.0313700065, -0.0359218456, 0.0708579421, -0.00862530153, 0.0162358619, 0.00607032795, -0.0185697675, 0.0115463072, -0.0153515879, -0.00417131186, 0.00815417152, 0.0179899149, 0.0124668228, -0.0075163343, 0.00835712, 0.00592898903, -0.00485263811, -0.020903673, 0.0469680279, -0.0089804614, 0.00493961619, 0.0527955443, 0.00996621, -0.009502328, 0.00274342578, 0.0468810536, 0.0293260254, 0.00848033838, -0.0125972899, 0.00660306728, -0.0377773717, -0.00857456494, -0.0141483946, 0.00995171349, -0.017207114, -0.0309351161, -0.0036911217, 0.0200193971, 0.0105823027, -0.0107852509, 0.0318918712, 0.0105170701, -0.0166127663, 0.0128727192, -0.0218749251, -0.0268906467, 0.00908918399, -0.008132427, 0.0363857262, -0.000968534383, 0.0164388102, 0.0320658274, 0.0212805755, -0.00706694881, 0.00289744907, -0.0166997444, -0.0256439652, -0.0197149757, 0.0102706328, 0.0170186628, -0.00429815473, -0.0207587089, 0.00910368, -0.0100459401, -0.0182218552, -0.000889257761, 0.0179754179, -0.0341243036, -0.0241943337, 0.00503384229, -0.01224213, -0.00114067807, 0.0188307017, 0.0124450782, -0.0146122761, -0.0220198873, 0.0338633694, -0.0226142369, -0.00896596536, 0.0116187893, 0.0277459286, -0.000908284157, -0.0101981508, 0.004544592, -0.0253540389, 0.00947333593, 0.00932112429, -0.0028285915, -0.00039162676, -0.00690748962, 0.0312540345, 0.0259338897, -0.0158734545, -0.0436918661, 0.0200918801, 0.0159314405, 0.00441412488, -0.00406983774, 0.00945159141, 0.00364219677, -0.0168736987, -0.0146340206, 0.0211356133, -0.00615730556, 0.00293368986, 0.0233970378, -0.000876573496, 0.0302682854, -0.0194540415, -0.00637112604, 0.00492874393, 0.0264702532, -0.0323267616, -0.0183523223, -0.0178304557, 0.00373279862, 0.0198164489, 0.0157864764, 0.0205702577, 0.00495773647, 0.0133728422, -0.016221365, 0.0164823, -0.00936461333, 0.00538900169, -0.0231216066, -0.000653239782, 0.0157284923, -0.0139526939, 0.000328884926, 0.0119811967, -0.0132496236, 0.0275574774, -0.0040263487, -0.0236869641, -0.00738586765, 0.0054759793, -0.00505921058, -0.0114303371, -0.0319788493, -0.0127422521, 0.0169751737, -0.0240348745, 0.00367843756, -0.0255859792, 0.00715392688, 0.0143078538, 0.0559557378, -0.00212733285, -0.00839336123, -0.0230201334, 0.0430540256, 0.00753807882, -0.0160764027, -0.0124523267, 0.0222808216, -0.00146956299, 0.0314859748, -0.025383031, 0.00687849708, -0.0144528169, 0.0276154615, 0.0229041632, 0.00144691253, -0.00412419904, -0.0274560023, -0.00830638316, -0.0112346364, 0.00586375548, -0.010401099, -0.0175115373, -0.0185407754, 0.0217154659, 0.0233825408, -0.0193090793, -0.0132786157, -0.00268725259, 0.0231361035, 0.021787947, 0.0202513393, 0.0047257957, 0.023643475, -0.0171056408, -0.0189321749, 0.0460982509, 0.0138657158, 0.0187727157, 0.0206282418, -0.00847309083, -0.00892247632, -0.0103648584, -0.0365306884, 0.000558560772, -0.0161343887, 0.0150616616, 0.0222228356, 0.0360668078, 0.00112436968, -0.00176945527, -0.00554483663, 0.00900945347, -0.0291520711, 0.0113651035, 0.0120536778, 0.0346751623, -0.00189176784, 0.00187364744, 0.0302682854, 0.00345193269, 0.0116405329, -0.00140161149, -0.0188741889, 0.0174825452, -0.00557020539, 0.0288041588, -0.0239768885, -0.0158154685, -0.00166435703, -0.0205412656, 0.00135721662, -0.00551222032, -0.0109881992, 0.021787947, 0.00626965193, 0.00548685156, -0.00719016744, -0.0456343703, 0.017178122, 0.0207007248, -0.0186132565, -0.022686718, 0.00228135614, 0.028963618, -0.0136482716, -0.00861805398, -0.0216864739, -0.0118072405, -0.0207877029, -0.0262383129, 0.0238029342, -0.0112853739, -0.0139671899, -0.012256626, 0.0150616616, 0.0450545177, -0.0116912704, -0.0322977677, 0.035313, -0.0204107985, -0.000303742912, -7.03297337e-05, 0.0155545361, -0.0411985, 0.0213385615, 0.0270935949, -0.0232810657, -0.0296304487, 0.0125827929, 0.00288838893, 0.0023121608, -0.0288766399, -0.00705970079, 0.00665742811, 0.00944434293, -0.0242813118, 0.0287751667, 0.00340119563, 0.0168736987, 0.000652786752, 0.0285867136, 0.0116187893, 0.0191641152, 0.0183523223, -0.00995171349, -0.03264568, -0.030790152, 0.0115318112, -0.00578765, -0.0121261599, 0.0115318112, -0.00305509637, 0.0493164323, 0.0302972794, -0.00804545, -0.0322107896, -0.0324137397, 0.00384152099, -0.0195700116, 0.0164967962, -0.0144455684, -0.00698721921, 0.0437788442, 0.00567530375, -0.0303262714, -0.0139526939, 0.0120319333, 0.00716842292, -0.0237014592, -0.0187582187, 0.0473739281, 0.013568542, -0.0506211, -0.0376324095, -0.00599784637, -0.0184103083, -0.0611164235, 0.00830638316, -0.0230056364, 0.0410825312, -0.0144238239, 0.0165257882, 0.0112708779, -0.0127929896, -0.00298986305, -0.0232230816, -0.0144890575, 0.0110026961, -0.00635300577, -0.00704882853, 0.00085709407, -0.054332152, 0.0188596938, 0.0152211208, 0.0181928631, -0.0197584648, -0.0180189069, -0.0143803349, -0.00590362027, -0.0146267721, 0.0123725971, 0.00779901212, 0.0377483778, 0.0236724671, 0.0252235718, 0.021758955, 0.0228461772, -0.0125393039, 0.00719379168, 0.0394299515, 0.0156415142, -0.0282388031, -0.0132133821, 0.0610004552, 0.0240493715, -0.0131988861, 0.00742935669, -0.00671541365, -0.020004902, 0.0309641082, 0.0243972819, -0.0249336455, -0.0115245627, 0.0187872127, 0.0377193876, 0.000109968067, 0.0246437192, -0.0182943381, 0.00868328661, 0.00704158051, -0.0328486264, -0.0316889249, 0.0119087147, 0.0259338897, 0.0250496157, 0.0089007318, -0.0043960046, 0.0322107896, 0.00745110121, -0.0034156919, -0.0479827709, 0.0306451898, -0.0257454384, 0.0266297124, 0.0140324235, 0.011328863, 0.0111331623, 0.0267166905, 0.018163871, -0.00344106043, 0.0111983959, 0.0292245522, -0.006791519, -0.0350810587, 0.00355884293, 0.0195845086, -0.00600509439, -0.0237449482, 0.00443949364, 0.00227410789, 0.0104083475, 7.79176407e-05, -0.0170911439, 0.0225707479, -0.00941535085, 0.0145977801, -0.0055303406, -0.0612323955, 0.00323992432, -0.0214255396, 0.0522736758, 0.0146920057, -0.00213820511, 0.0183088332, 0.00154295051, -0.00705970079, -0.0057514091, 0.00536725717, -0.0145470425, -0.010415595, 0.0057912739, -0.0124958158, 0.000650068687, 0.00665018, 0.0124305822, 0.0057912739, -0.0243248, -0.0479247868, 0.00659581879, 0.0196859837, 0.0110389367, -0.0291375741, -0.00715755066, -0.0148732094, 0.0213385615, 0.0349650905, -0.000892881828, -0.0179464258, -0.00221612281, 0.013126405, 0.0228171851, 0.0222518295, 0.00496136071, 0.00291194534, 0.0260643568, 0.0133655937, 0.012640778, -0.000935011718, 0.0160619058, -0.0177579746, 0.0194250494, 0.0108359884, -0.00248792837, 0.0141338976, -0.00543249026, -0.00805994589, -0.0187147297, 0.0178014636, -0.00537812943, -0.0156270172, -0.00679876748, 0.0201208722, 0.0258324165, 0.0186857376, -0.00359327183, -0.0329356045, -0.0204397906, 0.0610584393, -0.00635663, -0.00766854547, 0.00745834922, -0.0241653416, -0.0176854935, -0.000246890209, 0.0106185442, 0.0213095695, -0.0063819983, 0.012198641, -0.00625153165, 0.0199904051, 0.00504833832, -0.00495048845, -0.00133184809, -0.00292644161, 0.00402997294, 0.0222228356, -0.0242523197, -0.0150326686, 0.0139526939, -0.00698721921, 0.00562456669, 0.0186567456, -0.009531321, 0.000285622518, -0.0225127619, -0.0242813118, -0.000802732888, 0.0186132565, 0.0182218552, 0.0268036686, 0.00582389068, 0.00906019099, 0.0234695189, -0.0266152173, 0.00950957648, -0.00420030439, -0.00663568405, -0.00785699766, -0.010915718, 0.00534188841, 0.0279923659, -0.0267166905, -0.0137207536, -0.028079344, -0.00583476294, -0.0271515809, -0.00661031529, 0.00394661911, -0.00350085786, -0.0233680438, -0.00691836188, 0.00420392863, 0.0173085891, -0.00468593091, 0.00491062365, 0.0215705018, -0.0345302, -0.0158734545, -0.0116042923, -0.00834987219, -0.0254990011, 0.0130611714, 0.0028086591, -0.0139526939, 0.0369075947, -0.0407346189, -0.0125755453, 0.0270935949, -0.0148442164, 0.003848769, 0.00428003399, -0.00195156515, -0.00681326352, -0.00219256617, 0.0178449526, 0.00110081316, -0.00601959089, -0.0128582232, 0.0171201359, 0.00472941948, -0.00275067403, -0.0232520737, 0.0095820576, -0.00984299183, -0.00728439353, 0.0085310759, 0.00376903941, 0.000278827385, -0.0154675581, -0.0144745614, 0.0147789838, 0.00769029, -0.0215705018, 0.0147209978, 0.015395076, 0.00730976183, -0.0126915155, 0.0123001151, 0.0186132565, 0.0126770195, -0.00154476252, -0.00133909623, -0.0309931, 0.0292100552, -0.00191170024, 0.00858906098, 0.0414594337, 0.0456053764, 0.0116042923, -0.0258759055, 0.0195555165, -0.038009312, 0.0192365982, 0.00684225606, -0.0139454454, -0.0205992498, -5.85514827e-05, -0.0176420044, -0.00295905839, 0.00726264901, 0.0118869701, 0.0234405268, -0.0147572393, -0.0108069954, 0.023643475, -0.00104282796, -0.00507733086, -0.0261803269, 0.0118289851, -0.0207732059, 0.0129524488, -0.0381832682, 0.028064847, -0.015409573, 0.0375454314, 0.0129524488, 0.0244117789, 0.00624428364, 0.00523679052, -0.0137352496, 0.0114593292, 0.00744385272, -0.00131100963, -0.0112708779, 0.00158643944, 0.00277060643, -0.0116187893, -0.0174100623, -0.0148877054, 0.00367300143, -0.0136047825, 0.010857733, -0.00244625146, -0.0130031863, -0.00950957648, 0.00142607407, -0.0116332853, -0.00674440619, 0.0175550263, 0.0156850033, -0.0170766488, -0.00602683891, -0.0154385651, 0.000925045519, -0.0150326686, 0.00291013322, -0.0212515835, -0.0126770195, -0.000661393919, 0.0206572358, -0.00973426923, 0.0219039172, 0.0150471646, 0.00374367088, -0.0110316882, -0.00137896102, 0.000559466775, -0.00786424614, 0.00436701206, -0.0158589575, 0.00621166686, 0.0157719795, -0.0114230886, -0.0198019538, -0.019903427, 0.00542886648, 0.0247741863, -0.00518605346, -0.00996621, 0.0253105499, 0.0325587019, 0.0309351161, 0.014467313, 0.00305328425, 0.00890797935, -0.01443832, 0.0152501138, -0.0104518365, 0.014010679, 0.0287751667, 0.0147209978, -0.0044105011, -0.00789323822, -0.00514618866, 0.0097632613, 0.0158154685, -0.00618629856, -0.0110969217, -0.00836436823, 0.00329428539, -0.0092413947, 0.00905294251, -0.00115517434, 0.0164388102, -0.0273690242, -0.021729961, 0.0154675581, 0.0239913855, 0.0133438492, -0.0130394269, -0.0034356243, 0.00919065811, -0.00421480089, 0.0178884417, -0.0128292302, -0.0241363477, -0.00478378078, -0.0208746791, 0.0222373325, 0.0174535513, 0.0218894221, 0.00914716907, 0.0115825478, 0.00979225431, 0.0103721069, -0.0241363477, -0.0138512198, -0.0236579701, -3.65522064e-05, -0.0010201775, -0.000900129962, -0.00112346362, -0.000116989715, 0.0388211049, -0.00467143441, -0.00988648, 0.0309931, 0.0133293532, -0.00440687686, 0.0165547803, -0.00896596536, 0.0202223454, 0.00348454947, -0.0110679297, -0.0161488838, -0.0182653442, -0.0423582047, -0.0159024466, -0.00275611016, 0.00327254087, -0.0178159587, -0.0376614034, -0.0025531617, -0.00386688951, 0.00498672901, -0.0092124017, -0.000708506908, -0.00483089359, 0.0101619102, 0.0159169436, -0.0301233232, 0.0115463072, -0.0373714752, 0.00659581879, -0.00954581704, -0.00289382506, -0.0103286179, -0.0310510863, 0.0170186628, 0.0109737031, 0.000359463069, -0.00827739, 0.0139671899, 0.0166562553, 0.0047112992, 0.0191351231, -0.0126480265, 0.0216429848, 0.0125610484, -0.027180573, -0.0111911474, -0.00507370709, 0.044503659, -0.00112165161, -0.0101546617, -0.00800920837, 0.000424922968, -0.0141918827, 0.00187183544, 0.00594348507, 0.0054759793, -0.00831363164, 0.0134743163, 0.0215705018, -0.00979225431, 0.000938635785, -0.0232665706, -0.0102053992, -0.0157429874, -0.00524403853, 0.00119956932, 0.00424379343, -0.0151631357, 0.0154965501, 0.00665380433, -0.00317106675, -0.0136337755, -0.00283583975, 0.000227410797, -0.0143658388, 0.00299167493, 0.0230781175, -0.000281545421, -0.0114665776, 0.00942259841, -0.0079004867, 0.000370108814, 0.024527749, 0.0033758271, -0.0267021954, 0.0203093234, -0.00624428364, 0.0117347594, -0.00632763747, 0.00462069735, -0.00342112803, 0.0310510863, -0.0181493741, -0.00346824108, -0.0167287365, -0.00475841248, 0.0120246857, 0.0238609184, -0.000847127871, -0.00199324195, -0.0267891716, -0.0178449526, 0.0157864764, 0.00835712, 0.00487075886, 0.017236108, 0.00192982063, 0.0284707434, 0.000602049695, 0.0112418849, 0.0103938514, -0.00891522784, -0.0114520816, 0.0193670634, 0.0106185442, 0.00017871226, -0.00627690041, -0.0226722211, 0.00508820312, 0.0144455684, 0.00609207246, -0.0015891575, 0.00818316452, -0.00487075886, 0.0140904086, -0.00627690041, 0.0211066213, 0.00644360762, 0.0075163343, -0.00127929891, -0.0207877029, 0.00139526941, -0.0247741863, -0.0160909, 0.000665018, -0.00674803043, 0.0165257882, -0.00942259841, -0.00659219502, 0.00392849883, -0.00536725717, -0.00427278597, 0.0276009664, 0.00847309083, 0.0121406559, -0.0164967962, -0.00164623663, 0.0166272633, -0.0160764027, 0.00151939399, -0.00271805725, -0.0158009734, 0.00447935844, 0.0154675581, -0.0151341427, 0.00942984689, 0.0150761576, 0.000573510071, -0.0175985154, -0.0322977677, 0.00457358453, 0.00650159316, -0.00454096776, 0.0210196432, -0.0252525639, -0.00517880498, 0.0148297204, 0.0305002276, 0.00514981244, 0.0155400392, 0.0143513428, -0.00257309433, 0.0178739447, -0.00769029, -0.0155255431, 0.00192982063, -0.00819041301, -0.020845687, 0.0126190335, -0.00220343843, -0.0102778804, 0.015409573, 0.0175985154, 0.00375454314, -0.00214001699, -0.00623341138, 0.00394661911, -0.00687849708, 0.00587100349, 0.0125827929, 0.00659581879, 0.0274125133, -0.0128147341, 0.00399010815, 0.00590724451, 0.00324173621, -0.00562456669, 0.000844409806, 0.0279778689, 0.00571879232, 0.00180479, 0.00435976405, -0.0146122761, -0.0177434776, -0.0262383129, 0.000433530135, -0.000206459095, -0.00224873936, -0.0115463072, -0.00755257532, 0.0148877054, -0.00201679859, 0.0247017052, -0.0284852404, 0.0019225725, 0.00248249224, 0.0289491229, 0.0132641196, -0.00447211042, 0.0213820506, 0.0109881992, -0.0180334039, 0.00941535085, -0.0289201289, 0.00667192461, 0.00952407252, -0.00154113851, 0.0111839, -0.0131771415, 0.0111621553, -0.0173230842, -0.00866879057, 0.00940085389, 0.035457965, 0.00132731802, -0.00240819878, 0.0111549068, 0.0216574799, 0.00331421779, 0.0163518321, 0.00500847353, -0.0120536778, 0.0249481425, 0.0186712407, 0.0130394269, -0.00500847353, 0.00182834652, -0.0261078458, -0.00204760325, 0.0178884417, -0.030790152, -0.00877026469, 0.0148732094, 0.0046569379, 0.0223822948, 0.0058456352, 0.0199759081, -0.0180044118, 0.00238826638, 0.0120971669, -0.0182943381, 0.0151196467, -0.000362407649, -0.0137642417, -0.0247451942, 0.0125900414, 0.0178449526, -0.0102488883, -0.0136410231, -0.00282315561, 0.0210631322, -0.00647260062, 0.00872677565, 0.00144781847, 0.0289926101, -0.0320948213, -0.00494686421, 0.00395386713, -0.0135467974, -0.0138729643, 0.0352840088, 0.0142498687, -0.00975601375, 0.0112056443, -0.00437426, 0.00411332678, -0.00848033838, -0.0291665662, 0.0147499908, -0.00756707136, 0.00470767543, 0.0151921278, -0.0116260368, 0.0124450782, -0.0207297169, 0.00535638491, -0.00169244362, 0.000451650529, 0.00690748962, -0.0200193971, 0.00659944303, -0.0177869666, 0.00809618644, -0.00310402131, -0.0165692773, 0.0159894247, 0.00281590736, 0.00448660646, -0.00763955293, 0.0107127698, 0.0028630204, 0.00439238036, 0.0137932347, -0.0146340206, 0.00271624513, 0.0116695259, 0.00483814208, -0.00265463605, 0.000524132047, 0.00966178719, 0.000764680095, -0.00578402588, 0.003277977, -0.0165547803, 0.0279923659, -0.0056898, 0.017163625, 0.0108359884, -0.0168012176, 0.000818135217, -0.00433077104, -0.014083161, 0.0230926145, -0.00589274801, -0.026223816, 0.0127567491, -0.00740398793, 0.0229911413, 0.00640374282, 0.0217154659, -0.011814489, 0.0193670634, 0.00633488549, 0.0111694038, -0.0109592071, 0.00494686421, -0.0120536778, -0.0207732059, -0.00662481179, 0.0354289711, 0.00889348332, 0.00682413578, 0.00101202331, 0.0030804649, -0.000661393919, -0.00466418639, -0.00187002344, -0.00616093, 0.00348454947, 0.015395076, -0.0257019494, 0.0243537929, 0.0176854935, -0.0288476478, 0.00218713, -0.00214726524, 0.00536725717, 0.0127929896, 0.003277977, -0.0236289781, -0.00102289557, 0.0196714867, 0.00175586506, 0.0239334, -0.0166997444, 0.017279597, 0.00998795405, -0.00313120196, -0.000262066023, 0.00991547294, -0.0223388076, -0.0123725971, -0.012227634, -0.000578493171, -0.00895871688, -0.0018827077, 0.0113071185, 0.00900220592, -0.0112853739, -0.00309496117, -0.0159749296, -0.0274415072, -0.000393665308, 0.0119449561, -0.0304712337, -0.0203238204, -0.00878476072, 0.0113651035, -0.00603046315, -0.000327978923, 0.0177434776, 0.00940810237, 0.0165402852, 0.0277604256, -0.000777817389, -0.0109592071, 0.0157574844, -0.0288186558, 0.00680239126, 0.00892247632, -0.0164533071, 0.00281228335, 0.0123508526, -0.00299529918, 0.00659944303, 0.0249191485, 0.0170186628, -0.000317559694, 0.0169606768, 0.0222373325, -0.0170766488, -0.0316599309, 0.0238754153, 0.00622978713, -0.0223678, 0.00969802868, 0.0168736987, 0.0174100623, 0.0311670564, 0.0109809516, 0.00707782106, 0.0105895512, 0.00275067403, -0.0115390588, -0.000849845936, -0.00840060879, 0.0120391818, -0.0118797226, 0.0128509747, -0.0233245548, 0.00738224341, -0.00277966657, 0.0092703877, 0.0172651, -0.00155110471, -0.0166997444, 0.0107127698, -0.0129741933, 0.00633126125, 0.00203854288, -0.000482908188, 0.0204687826, 0.0123073636, -0.00256584608, -0.0240928605, 0.037139535, 0.00216357363, 0.0186132565, 0.00244806358, 8.23911105e-05, -0.000823118316, -0.00931387581, -0.0114520816, -0.00375454314, 0.00014552931, 0.0297464188, -0.0198744349, -0.0201063752, 0.000708959938, 0.0270356089, -0.0166272633, 0.0111549068, 0.00697997119, -0.00707782106, -0.00492149591, -0.0138222277, -0.00645810412, -0.0198744349, 0.0142643647, -0.00872677565, 0.0101474142, -0.0169606768, 0.00370924221, 0.0217734501, 0.0105460621, 0.00362951239, -1.10137944e-05, 0.00258577848, 0.0061754263, 0.0135323014, 0.000814058178, -0.00170059782, 0.0134815639, 0.0229186583, 0.0067516542, -0.0191351231, 0.0218604282, -0.0103431139, 0.0230201334, -0.00712493435, -0.0177579746, 0.00179844792, -0.00570429629, 0.00157375517, 0.0198889319, -0.00453371974, 0.0182073601, -0.0140976571, -0.00645448, 0.012640778, -0.00413869508, 0.00977775827, 0.0134308273, -0.00616817782, -0.00123671605, -0.0306741819, 0.0137569942, 0.0097197732, 0.00838611275, 0.0034301884, -0.0206862278, -0.00949508, 0.0155255431, -0.0153660839, -0.00443224562, 0.0117927445, 0.0247451942, 0.00992996898, 0.000944071915, -0.00466056215, 0.0121624, 0.0116695259, 0.024498757, -0.0178304557, -0.0109954476, -0.00334683456, 0.0211356133, -0.0193380713, 0.0157719795, 0.0085310759, 0.0169316847, -0.0137207536, -0.0211501103, -0.00143513421, 0.0192365982, 0.0140179275, 0.00679876748, 0.000877932529, 0.00697272271, -0.00170603395, -0.0172940921, -0.00365306903, 0.00697997119, -0.0171056408, 0.00104464, -0.000396383344, -0.00781350862, -0.0157719795, -0.00297174254, 0.017207114, 0.0152356168, -0.00209834031, -0.00323992432, -0.0132641196, 0.000337718608, 0.0227592, 0.018062396, -0.0218894221, 0.0153225949, -0.0113506075, 0.00560644595, -0.00792223122, 0.0291810632, -0.0142861092, 0.0128147341, 0.0128509747, -0.0105460621, 0.00400098041, -0.0123943416, -0.00268362858, -0.0124305822, -0.00763955293, 0.0115970448, -0.0182798412, -0.0268616546, 0.011799993, -0.00641461508, -0.00200955034, 0.00871228, 0.00480190106, 0.0129452012, 0.00817591604, 0.000482908188, 0.0178884417, 0.0007307044, 0.00796572, -0.0335154571, 0.00769753801, 0.00661756331, -0.0212225914, -0.00334139843, -0.00179482379, -0.00205847528, -0.0198309459, 0.0325007178, -0.0044757342, 0.00114702014, -0.00387051352, 0.00542161847, -0.0141991312, -0.00945883896, -0.000867966271, 0.0119884443, -0.00636387803, 0.00929938, 0.00337763922, 0.0127422521, 0.0159749296, -0.00354434666, -0.00236833398, -0.00803095289, -0.00555208512, 0.0115245627, -0.00481277332, 0.0138367238, 6.09085509e-06, 0.0140976571, -0.031862881, -0.0124088377, 0.00646172836, -0.0116695259, -0.0184537973, 0.004751164, -0.00458808057, -0.0278184097, -0.00882825, 0.0101619102, -0.00184103078, -0.00425829, 0.0103068734, 0.022628732, -0.00112255767, 0.0120101888, 0.0391400233, -0.00425466569, -0.000248475728, 0.00941535085, 0.0139671899, 0.00448298268, 0.0212080944, -0.0217154659, 0.012213137, 0.00381615246, -0.00807444192, -0.00575503334, -0.0176565, -0.00821215659, 0.00377628766, 0.0107852509, 0.00980675, 0.0102851288, 0.00765404943, -0.0218749251, 0.0169461817, 0.0145325465, -0.0223533027, -0.0103431139, 0.000954944117, 0.0229766443, -0.0291955601, 0.0215415098, 0.00292644161, 0.00265644793, 0.0261078458, -0.0357188955, -0.0133510977, 0.00424741767, -0.000997527, -0.0155690322, 0.0111766513, 0.0237594452, 0.011372352, 0.0139599424, 0.0101619102, -0.00869778357, 0.00122221978, 0.00211464847, 0.0109374626, -0.00999520253, -0.00567167951, 0.022701215, -0.00532014389, -0.019106131, 0.00272892951, -0.00269812485, -0.00191170024, 0.00145869073, -0.00872677565, 0.0113506075, 0.0193380713, -0.0124595743, 0.00271805725, 0.011742007, 0.00341388, 0.00322905206, -0.00258396636, -0.0145180495, -0.00601959089, 0.00765404943, 0.000834896578, 0.0067516542, -0.018163871, -0.0186567456, 0.0264557581, 0.00262383139, 0.021802444, 0.00822665356, -0.0118072405, 0.00605945569, 0.0164967962, -0.0089804614, 0.0210631322, -0.00697997119, -0.00140523561, -0.0142063797, -0.00369655783, 0.000790048623, 0.00824115, 0.0106475363, 0.0120319333, 0.0114303371, -0.0195265226, -0.00795122329, 0.0132351266, -0.0146050276, -0.0146267721, 0.0111766513, 0.00813967548, 0.0157284923, -0.0134960609, -0.0010283317, -0.00283040362, -0.00682776, -0.0050265938, 0.00802370533, 0.00103557983, 0.00738224341, -0.0078062606, 0.0205122717, -0.0139309494, 0.0162503589, 0.0165982693, 0.0150471646, -0.0207442138, 0.028021358, -0.00442137336, -0.00155744678, 0.0146702612, 0.000156514798, 0.0121334074, -0.000723909237, 0.00168066542, -0.00527303107, -0.000865248207, -0.00165167276, 0.0106547847, -0.0153225949, -0.0133076087, 0.0196859837, 0.0106547847, 0.0189466719, 0.00607395219, -0.00641461508, -0.0125682969, 0.0291955601, 0.0096110506, 0.0123870932, -0.00733875483, 0.000703976839, -0.0170621518, -0.0223243106, -0.0216284879, -0.00861805398, -0.0195120275, -0.00239007827, -0.0191641152, 0.00341025577, 0.00418943213, 0.00885724276, -0.0047257957, 0.0242378227, 0.0142063797, -0.00186821132, -0.00302429171, -0.0141918827, 0.00505196257, -0.0232230816, 0.00625515589, -0.00374367088, -0.0184393, -0.0194105525, 0.00555570889, -0.00506283483, 0.0147137502, -0.0243537929, -0.0110679297, 0.0301233232, 0.00201861048, -0.0333125107, 0.0012956073, 0.030848138, -0.00945883896, 0.00535638491, 0.0147499908, -0.0267021954, 0.014481809, -0.0113651035, -0.00689299311, 0.0137424972, -0.0155835282, -0.0225417558, 0.00730976183, 0.0173375811, 0.0134888124, -0.0169171877, 0.00494324, -0.0195990056, 0.0197729599, -0.000566714967, 0.00777726807, 0.00484176585, 0.0295289736, 0.0127205085, 0.00948058348, 0.0134815639, -0.00658857077, 0.0357188955, -0.0111549068, 0.013583038, -0.00149221346, 0.0367336385, -0.00660669105, -0.0018845197, 0.0231650956, -0.0256149713, 0.00367481355, -0.0104808286, 0.000499216549, -0.00927763525, -0.00878476072, 0.00641099131, -0.00418943213, 0.00759606389, 0.0116550298, 0.0028630204, 0.00422567315, -0.00708869332, -0.00601596665, -0.0295579676, 0.00235202559, 0.0153515879, 0.0022378671, -0.00292825373, 0.00779901212, 0.00658494653, 0.0184248034, -0.0139092049, 0.00193888089, 0.0116477814, 0.00171871821, -0.021700969, 0.0289346259, 0.00111983961, -0.0179609228, -0.0127929896, -0.0290940851, 0.017178122, -0.00632038899, -0.0260208678, -0.000578946201, 0.0161053948, 0.0192221012, -0.0099807065, -0.00273617776, -0.00602321513, 0.0101546617, -0.0160909, -0.0109737031, -0.00113161781, -0.010901222, 0.0141121531, -0.0026854407, 0.0114810737, 0.0252960529, -0.013597535, -0.00571516855, 0.0134235788, -0.00703433203, 0.0078062606, 0.0125972899, 0.0356029272, -0.02259974, -0.00709594134, -0.0156560093, 0.0151486397, -0.0211356133, 0.000741123629, -0.00399735617, 0.00885724276, 0.0131336525, 0.00281771948, -0.0127205085, 0.0223822948, -0.00419668062, -0.00338307535, 0.00128654717, -0.00811068248, -0.00442499714, 0.00608482445, 0.0247741863, 0.00623703562, -2.18293972e-05, -0.0100314431, -0.0152066248, -0.00511357188, 0.0167432334, -0.000287661067, -0.000867966271, 0.00619354658, 0.00586375548, 0.00497223297, -0.00759606389, 0.0192365982, -0.0119522037, 0.00689661736, 0.0156705063, 0.010473581, -0.0118362335, 0.00332871405, 0.00626240391, -0.00750183826, 0.00394661911, 0.00319099915, -0.000327072892, 0.009531321, 0.00937910937, -0.00829913467, -0.00295181014, -0.00468955468, -0.0271515809, 0.0131481495, -0.0324137397, -0.00267819245, 0.0068603768, 0.00235746172, 0.022643229, -0.0121189114, 0.00622616336, -0.0091326721, 0.00136084063, 0.0185987595, 0.00361682824, 0.000311670563, -0.0102778804, -0.0167142395, -0.00851658, 0.0092703877, -0.0252235718, 0.0130901635, 0.010386603, -0.00021144221, 0.0211936, -0.0107780034, 0.0089007318, 0.0129596973, -0.00333777443, -0.0210196432, 0.00667192461, 0.0124595743, 0.00488887914, 0.0194250494, -0.0129741933, 0.00728076929, 0.00843684934, 0.00105460617, -0.000777817389, -0.00174408674, 0.0138874603, -0.00875576865, 0.0148007283, 0.00731338607, -0.0385891646, 0.00325623271, 0.0109302141, 0.00833537523, 0.0176999886, 0.00690386537, -0.00983574335, -0.00757432, -0.0126117859, -0.0147065017, -0.00623341138, -0.0233825408, -0.0133655937, 0.019903427, 0.0240058824, 0.0107417628, 0.00802370533, 0.019946916, 0.0228316803, -0.020845687, -0.0114955707, 0.0152791059, 0.0200628862, 0.00943709444, -0.00316019449, 0.0160039216, -0.00915441662, 0.00797296781, -0.0054361145, 0.00827739, -0.0225127619, -0.0122058894, 0.00192619662, 0.00633126125, 0.00175948907, 0.0178014636, -0.00777726807, -0.022744704, 0.0058311387, 0.00707419729, -0.00560644595, -0.0089007318, 0.0175405294, -0.0211936, -0.0278763957, 0.0213820506, -0.0269196387, 0.00150580378, 0.00116695254, 0.0118652256, 0.000122878846, 0.0143223498, 0.0133148562, 0.00456633605, -0.010857733, -0.00340300775, -0.0116332853, 0.0165112913, -0.00782800466, -0.00464606611, -0.00209471607, 0.0301233232, -0.00947333593, 0.00242450717, -0.00111893355, -0.00629502069, -0.00701258797, -0.00149221346, -0.000534098246, -0.00456996029, -0.00364400889, 0.00408433424, 0.0360958, -0.00325260847, 0.00221249857, -0.00274161366, -0.0107780034, 0.0128944637, -0.00694735441, 0.00593261281, -0.0115897963, -0.00516793272, 0.0161923729, 0.00167069922, 0.0138947088, 0.00909643155, -0.00300617144, -0.0225707479, -0.00282677962, -0.0314859748, 0.000381434045, 0.00715755066, -0.0112563809, 0.0161053948, 0.0103503624, -0.00245531183, 0.00232122093, 0.0148297204, -0.0215270128, 0.00416406384, 0.00584201096, -0.0213095695, -0.0160039216, -0.0165112913, -0.00392849883, -0.0142933568, 0.00532376813, 0.00467505865, -0.00139798748, 0.0279633738, 0.00795122329, -0.00979225431, -0.00155835284, 0.0156270172, 0.0295289736, -0.00536363292, -0.00146956299, -0.00434526755, 0.00103286176, 0.0015203, -0.00959655456, 0.0055847019, 0.0050265938, -0.00242450717, -0.0189321749, 0.00945883896, -0.00421480089, 0.00188089558, -0.0204542875, 0.0231795926, 0.0177579746, 0.00620441884, -0.00638562255, -0.0268181656, -0.0102633843, -0.00874852, 0.0206282418, 0.0234695189, 0.00567530375, 0.0165257882, 0.0151921278, -0.00422929693, 0.00948783197, 0.0322687775, 0.00100296317, -0.00533826463, 0.00356609118, 0.00707057305, 0.013612031, -0.0205847546, -0.0293405224, 0.023599986, -0.0706839859, -0.00234477734, -0.0030804649, -0.00358239957, 0.00895146839, -0.00126752071, 0.0192800872, 0.00917616114, 0.0302103013, -0.00840785727, 0.00845859386, 0.0134308273, -0.00264195167, -0.00310764555, -0.0223967917, -0.000137375144, 0.0102198953, -0.00140614167, 0.0160329137, 0.0127060115, 0.00590724451, -0.0278039146, -0.00649796892, -0.0106910253, 0.0102198953, 0.00317650288, 0.000451650529, -0.00274704979, -0.0096110506, -0.0204687826, 0.0199324209, 0.00285577215, 0.0261658318, -0.00237195799, -0.00331059378, -0.00286664441, -0.00245893584, -0.0193380713, -0.0168736987, -0.00171871821, 0.0045300955, 0.00138258515, -0.00901670195, -0.0167867225, -0.00874127261, 0.00990822446, -0.00556658115, 0.00671178941, -0.0178449526, -0.00992996898, -0.0211066213, -0.00575865712, 0.00111530954, 0.004751164, 0.0269631278, 0.0133583453, -0.00291738147, -0.00342475227, 0.0124813188, 0.00392487459, 0.0018528091, -0.0294130035, -0.00561007, 0.0111259148, 0.0267601795, 0.00881375372, -0.0173230842, -0.0285577215, -0.00536363292, 0.040821597, -0.0200628862, -0.0067516542, -0.0187292267, -0.0148732094, 0.0072409045, -0.00734600285, -0.00979225431, -0.00152120611, 0.0135612935, 0.0345302, 0.000943165855, -0.00375816715, -0.0012838291, -0.0111331623, 0.0212080944, -0.00250967289, -0.0175260324, -0.0014496306, 0.0150906537, 0.00138802128, 0.0268761497, -0.0263832752, -0.0164967962, -0.00858906098, 0.00349723361, -0.00306415651, -0.000375771429, 0.00837886427, 0.000259574474, 0.00676615071, -0.00362045225, -0.00742935669, -0.000776005327, -0.0100749321, 0.0210341401, -0.0201353692, 0.0139309494, -0.0175405294, -0.000724362268, 0.00993721746, 0.00770478649, 0.0163953211, 0.00311308168, -0.000359010068, 0.0100676846, -0.00112618168, 0.00430902699, 0.012698764, -0.001185979, -0.0074221082, 0.0157719795, 0.00237739412, -0.0123363556, -0.00792947877, 0.00135449856, 0.0133873383, 0.00632038899, 0.0127712451, 0.0064907209, -0.0206717309, 8.37501429e-05, 0.0130901635, 0.00475841248, -0.0135178044, 0.00952407252, -0.0146412682, -5.46088859e-06, 0.0112418849, -0.0135467974, 0.00179029373, -0.000686762447, -0.000864795235, 0.0158154685, -0.00308227702, -0.0276009664, -0.0238899123, 0.00518967723, -0.0152066248, 0.00704158051, -0.00334864645, 0.0229186583, 0.0134815639, 0.0157139953, 0.00798746478, -0.0191496201, -0.0141556421, -0.00598335, -0.0074366047, 0.00808169, 0.00734962709, 0.00773377903, 0.00306415651, 0.0195990056, 0.0011660466, 0.000317106693, -0.00459532905, 0.00566443149, 0.0128944637, 0.00969802868, 0.0155110471, 0.0130539229, 0.0125610484, 0.0153515879, -0.00478378078, -0.000732063432, -0.014039672, 0.00166798115, 0.000143490775, 0.0045300955, -0.00578765, -0.00494324, 0.0120609263, -0.00221068668, 0.00722278422, 0.000975782576, -0.0319498591, -0.00551222032, 0.00971252471, 0.00051008875, 0.00767579395, 0.0210486352, 0.0340663195, -0.00490699941, -0.00123127992, -0.00121587759, 0.0029626824, 0.00412419904, -0.0155545361, 0.0197294708, -0.00267819245, -0.00687487284, -0.0125610484, -0.00528390333, 0.0182508491, 0.00391400233, -0.00333777443, -0.0336024351, 0.0247741863, 0.00484176585, -0.00374367088, 0.00821215659, -0.0369075947, -0.000864342204, -0.0232665706, 0.005450611, 0.00020996992, -0.0237594452, -0.019019153, -0.0295579676, 0.0123436041, 0.0240348745, 0.0233390518, 0.0248756595, 0.0170041658, 0.0254990011, -0.0030804649, 0.000341116189, 0.0205557607, -0.0136917606, 0.0155980242, 0.00660669105, 0.0108432369, 0.0129017122, -0.0177434776, 0.00394661911, 0.00755982334, -0.00934286881, 0.00446848618, 0.0033957595, 0.00488525489, 0.0189031828, 0.00313482597, -0.00722278422, -0.000106060863, 0.0189901609, 0.0210921243, -0.0171201359, 0.00690386537, -0.00689299311, 0.00719379168, -0.00140342361, 0.0166272633, -0.00241182279, 0.0287461746, 0.0246582162, -0.00208746805, -0.0160039216, 0.0360378139, 0.0114810737, 0.0110316882, -0.00962554663, 0.00900220592, 0.00281953136, -0.00990822446, 0.0102198953, -0.0140179275, 0.00742935669, -0.00239189039, 0.00694373, -0.00734600285, -0.00365306903, -0.0224547777, 0.0122348815, 0.00132278784, 0.0152211208, 0.0185842644, 0.00413869508, 0.0269051436, -0.0280358549, -0.000213480744, -0.00616093, -0.00827739, -0.0151631357, 0.00420030439, 0.00179029373, 0.0101329172, -0.0147354947, -0.0128944637, 0.00475841248, -0.014083161, -0.00533826463, -0.00270174886, 0.00590724451, -0.00405896548, -0.0164823, -0.0045300955, 0.00283040362, -0.0104808286, -0.000344740256, -0.00810343493, 0.00166526309, -0.0410245433, -0.0234260298, -0.0131481495, -0.00501934579, -0.00652696146, -0.0104880771, -0.010444588, 0.00782075711, -0.0103286179, 0.00203854288, -0.00787874218, -0.00185190304, 0.00094679, 0.00422204891, -0.00877026469, -0.0304712337, -0.00899495743, 0.0130394269, -0.000903301057, -0.0231361035, 0.00145597267, -0.0166562553, -0.00798746478, 0.0220198873, 0.0124595743, 0.0165257882, -0.00288476469, -0.000415636256, -0.000308272982, 0.0192076042, -0.00524403853, -0.00336676696, 0.00723728072, 0.0097197732, -0.0106982738, 0.000303969398, -0.0123073636, -0.0047656605, -0.0151196467, -0.00304603623, -0.0114230886, -0.00534551265, -0.01129987, 0.0100459401, -0.00306234462, -0.011756504, 0.0129234567, 0.0447935835, 0.00771203451, 0.00482727, -0.0158734545, -0.0273545291, 0.0117637515, 0.0179464258, -0.00655233, -0.0214255396, -0.025339542, 0.00908193551, -0.0164098181, -0.0142861092, -0.00258034235, -0.000771928288, -0.0133800898, 0.00646535214, -0.00172596634, 0.0100531876, 0.00953856856, -0.0248901565, -0.0149746835, 0.0216864739, 0.00295905839, -0.0118217375, 0.0621601567, 0.0130466754, 0.000771928288, -0.0311670564, 0.0360958, -0.00899495743, -0.0186857376, 0.0357188955, -0.0182943381, 0.0191351231, 0.0341243036, 0.0157139953, 0.00399010815, 0.0147717353, 0.0168736987, 0.00843684934, 0.0156270172, -0.000903754029, -0.0257744305, 0.0105460621, -0.0170331597, -0.0085020829, 0.00319281127, 0.00367300143, 0.0218604282, -0.00496860873, 0.00529115135, 0.0159169436, -0.0137932347, 0.00375454314, 0.00157194317, 0.018961167, 0.00679514324, 0.0129669448, -0.0008575471, -0.0114883222, -0.00966178719, -0.015453062, 0.0191351231, 0.00902395, 0.00754532684, 0.0187872127, -0.00721191196, -0.00726264901, 0.016366329, -0.0264992472, -0.00241182279, -0.012256626, 0.00478015654, -0.03264568, -0.00304241222, -0.00323267607, -0.0022179347, -0.00333958631, -0.0123798447, -0.037110541, 0.00942984689, 0.0146702612, 0.00461344933, -0.0112781255, 0.0130321784, 0.0027651703, -0.0180479, 0.000255497376, 0.0136627676, -0.0107055213, -0.0123653486, 0.00271805725, -0.0105170701, 0.0135757904, -0.000456180627, -0.00860355701, 0.0206137467, -0.0125465523, 0.000973064511, 0.012285619, 0.00842960179, -0.00252235704, 0.00444674166, -0.0178449526, -0.0214545317, -0.000726627302, -0.0041350713, -0.0302103013, 0.000456860114, -0.00526578305, -0.0179029368, -0.0101111727, 0.0128654707, 0.0366176665, 0.00293550175, 0.0120391818, 0.00396473939, 0.00820490904, 0.0156850033, 0.00723728072, -0.00819766056, -0.00153298432, -0.00362951239, 0.0159314405, 0.0240058824, -0.0092124017, 0.0115680518, -0.000356518518, 0.000519602, 0.0176565, 0.0014115778, 0.00489250291, 0.00845859386, 0.00674078194, 0.00156831904, -0.0198454428, 0.0169751737, 0.0193670634, 0.000491515384, 0.00266913231, -0.017178122, 0.0150471646, 0.0180768929, 0.00228135614, 0.0015991237, -0.000119028256, -0.022657726, 0.00727714552, -0.00395749137, -0.0025477258, 0.0220343843, -5.88346156e-05, 0.0224982668, -0.0122928666, 0.00534188841, -0.000490156352, 0.0221213624, -0.00805994589, 0.0196569897, 0.0158444624, 0.0202658344, 0.00346461707, 0.0201643612, 0.00799471233, 0.00362226437, -0.00209290418, -0.0100241955, 0.0026908766, -0.00932112429, -0.0035679033, -0.0120536778, -0.0138294753, 0.00528027909, -0.00136808888, 0.00586737972, 0.00956756156, -0.0115825478, -0.00209834031, -0.00273617776, 0.00623341138, 0.0216139909, -0.0223243106, -0.00317287887, -0.018062396, 0.0157429874, -0.00466056215, 0.0341532975, -0.00579489814, -1.94935674e-05, -0.0178594477, -0.000189584491, -0.0017250604, -0.00308227702, 0.00358602358, 0.00511357188, 0.0180768929, 0.00549409958, 0.0138004832, -0.00566443149, -0.010872229, 0.0075163343, -5.38515087e-05, -0.00758156786, -0.000836255611, -0.00136627676, -0.00384514499, 0.0136990091, 0.0546800643, -0.0162358619, -0.013140901, 0.0077917641, 0.0146195237, 0.00690386537, -0.0215415098, -0.019106131, -0.00226685987, -0.013612031, 0.00126570871, -0.00510269962, 0.00771203451, 0.00142788608, -0.0178739447, -0.00242631906, 0.0207732059, 0.0240638666, -0.00880650524, -0.00238101813, -0.0137280012, 0.010473581, 0.0318338871, -0.0142208757, 0.0107852509, -0.00248068036, 0.00437426, -0.00244625146]
05 Aug, 2021
jQWidgets jqxComboBox checkAll() Method 05 Aug, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxComboBox is used to represent a jQuery combobox widget that contains an input field with auto-complete functionality and a list of selectable items displayed in a drop-down. The checkAll() method is used to check all list item of jqxComboBox widget if ‘checkboxes’ property value is true. It does not accept any parameter and does not return any value. Syntax: $('selector').jqxComboBox('checkAll'); Linked Files: Download jQWidgets from https://www.jqwidgets.com/download/ link. In the HTML file, locate the script files in the downloaded folder: <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcolorpicker.js”></script> <script type=”text/javascript” src=”.jqwidgets/jqxbuttons.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcombobox.js”></script> The below example illustrates the  jqxComboBox checkAll() method in jQWidgets: Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcolorpicker.js"> </script> <script type="text/javascript" src=".jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxlistbox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcombobox.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxComboBox checkAll() Method </h3> <div id='jqxCB'></div> <br> <input type="button" id='jqxBtn' style="padding: 5px 20px;" value="Check All Items" /> </center> <script type="text/javascript"> $(document).ready(function () { var data = [ "Computer Science", "C Programming", "C++ Programming", "Java Programming", "Python Programming", "HTML", "CSS", "JavaScript", "jQuery", "PHP", "Bootstrap" ]; $("#jqxCB").jqxComboBox({ source: data, width: '250px', animationType: 'slide', checkboxes: true }); $('#jqxBtn').on('click', function () { $("#jqxCB").jqxComboBox('checkAll'); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxcombobox/jquery-combobox-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxcombobox-checkall-method?ref=asr10
PHP
jQWidgets jqxComboBox checkAll() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox enableItem() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxComboBox checkAll() Method, PHP Tutorial, PHP
GeeksforGeeks
[-0.0187614392, 0.0452794731, -0.0194054879, 0.050039839, 0.0540161431, 0.00650699902, 0.0219396818, 0.0176133513, 0.0101437783, 0.00708104298, -0.0409391411, -0.00354752201, 0.012110929, -0.000343463849, 0.00151124084, 0.0165212676, -0.0190134589, 0.0105498089, -0.0117258988, 0.0230037645, -0.0114318766, 0.0168852955, -0.0268820617, 0.0387549736, -0.0223597139, 0.0416671969, -0.01120786, 0.0164652634, -0.00568443583, 0.00173350796, 0.00469036, -0.00391680049, -0.0121599324, -0.0199935324, 0.00336725824, -0.0238858312, -0.00396930426, 0.00525040273, -0.0313344039, -0.029374253, -0.00611846941, 0.00965374056, 0.00121896854, -0.00140360766, -0.0180333834, 0.0375228785, 0.000803749135, -0.0239838399, -0.0123629477, 0.0228777546, 0.0168152899, 0.02060958, -0.0152611705, 0.0136300456, 0.0433193222, 0.0079176072, -0.00371378474, 0.0160312299, 0.0281001553, 0.0122649409, 0.0236618146, -0.044075381, -0.00517689716, -0.0149811488, -0.0112988669, 0.0129929967, 0.00297872839, 0.0167312827, -0.0201195423, -0.0108928354, -0.0252859388, 0.0474356376, -0.0259439889, -0.0141760875, -0.013042, -0.0134550314, -0.0180613846, 0.010934839, -0.00290347263, 0.051215928, 0.0108578326, -0.0268120561, -0.00680102175, -0.0133360224, -0.0296262726, -0.00734356325, -0.0248659067, -0.039147, 0.0129929967, 0.00456785038, -0.0126639716, -0.0284081791, 0.0183834098, 0.0115368851, 0.0251179263, -0.0015689953, -0.00998276565, 0.00937371887, -0.0372148529, 0.0313904062, 0.0116348919, -0.0237738229, -0.0079666106, -0.0145331146, -0.0165072661, 0.0187334362, 0.0305503421, 0.00536941178, 0.0246418901, -0.00638098922, 0.0182714015, -0.0279741455, 0.000915320183, -0.0135600399, -0.0188734476, 0.022807749, -0.0196155049, -0.00917770341, 0.0277501289, -0.012684973, 0.00404281, 0.0106478166, 0.00870166719, 0.0606526509, -0.0453634784, 0.0137280524, -0.000157074552, 0.0184534155, 0.0442993976, 0.0070285392, -0.00397630502, 0.0110468473, -0.0255379584, 0.0129509931, 0.0285201874, 0.00898168888, 0.0344986469, 0.011718899, -0.0303823296, -0.0315584205, -0.0529240593, -0.0186634306, 0.0130209988, 0.0298222862, 0.00469036, 0.0351426937, 0.0150231523, 0.0291222334, -0.0107038207, -0.000333181815, -0.00124084519, -0.0233677924, 0.00660850666, 0.0187894404, 0.025607964, 0.0303543285, 0.0202735551, 0.0100387698, 0.018467417, 0.0299622975, -0.00127322262, -0.0171933193, 0.0145891188, 0.0196855105, -0.0270500742, 0.0101017747, -0.00186739315, -0.0169693, -0.0572923943, 0.0357307419, -0.0158492159, 0.0125169596, -0.0191114657, -0.00297347805, -0.0292062405, 0.0286321957, 0.0259859934, -0.030158313, -0.0102277845, 0.00620597601, -0.00972374529, -0.0150931571, -0.00462735491, 0.0123629477, 0.0315864235, 0.0141200824, 0.0117959045, -0.0161992423, -0.0325665, -0.0342466272, -0.0358707495, 0.00235043024, 0.0480516851, -0.00116383925, -0.00429482944, -0.00677651959, -0.0564243272, 0.0417792052, -0.0147711327, -0.0100877732, 0.0188314449, -0.0220936947, -0.0111518549, -0.00834464, 0.0165492687, 0.0334345624, 0.00883467775, -0.0532600842, 0.0330145322, -0.00656650355, -0.0126219681, -0.0154011808, 0.0202315524, 0.00890468247, 0.0102487858, 0.0196995102, -0.0173193291, -0.0425632633, -0.039707046, 0.0205395743, -0.00132222637, 0.0298222862, -0.0222757086, 0.0386989675, -0.0704534054, -0.0033095039, 0.0306623522, -0.0317824371, -0.000842689595, 0.0151071586, -0.039707046, -0.0112708639, -0.0439073667, -5.51839184e-05, 0.0276801232, 0.0199655313, 0.0150091508, -0.00221917, -0.0149111431, 0.0465395674, 0.0260279961, -0.00781959947, -0.025607964, -0.0221216958, 0.0463155508, 0.0444954112, -0.0167592857, -0.0150511544, 0.00217016647, 0.0100457706, -0.0181873944, 0.0116558941, -0.00903769303, 0.00824663229, 0.030158313, 0.0137840575, 0.00519439857, -0.0204835702, -0.0171513148, -0.00615347177, -0.000378466531, 0.0416111909, -0.0116558941, 0.017865371, -0.00409531407, 0.0055619264, 0.04121916, -0.0302143171, -0.0302703213, -0.0256639682, 0.039707046, 0.00484787161, 0.0236338116, 0.0378869064, 0.0260980017, -0.0244318731, -0.0403230935, -0.0268960632, 0.00246593915, -0.00308548659, 0.00201790477, 0.0214496441, 0.0611566901, 0.0117889037, -0.0137210526, -0.0399590656, -0.015247169, -0.0187334362, -0.0230737701, 0.0338265933, -0.0328745209, -0.0275121089, 0.00155061891, 0.0146871265, 0.0202175509, 0.01120786, 0.0162272453, 0.0341066159, -0.0159332212, -0.00516989641, -0.0220796932, -0.0165352672, -0.0175993498, 0.0402110852, -0.0179493763, 0.0505998805, 0.0349186771, 0.000823875656, 0.0200775396, -0.0237038173, 0.0169693, -0.0226817392, -0.0423112437, -0.0216176584, -0.0306623522, 0.0274001, 0.0340786129, 0.0200495385, 0.0101577789, -0.0132170133, -0.0197555143, -0.00714754825, -0.0348906741, 0.0297382809, 0.0341906212, 0.0101507781, -0.0296262726, -0.0195174962, 0.0112848654, -0.0051033916, -0.0297102779, 0.0262940172, 0.0155551927, 0.00837964285, 0.00845664833, -0.0415551886, 0.00768658938, -0.0208055954, 0.00478836708, 0.00457835104, -0.0297942851, 0.0115928892, -0.0344426408, -0.0266160406, 0.00930371322, -0.0206515845, 0.00623747846, -0.0255519599, 0.0331545435, -0.00828863587, 0.00134060276, -0.0115438849, 0.00256569684, -0.00448034378, 0.0173333287, 0.00948572718, -0.0228777546, -0.00598895922, -0.061492715, 0.00311698904, 0.00335150701, -0.00439983746, 0.0308303647, 0.0180893876, 0.0481356904, -0.0292622447, -0.013028, -0.0106408158, -0.0142390924, 0.000916195277, -0.0237878244, 0.000679927121, -0.0247538984, 0.0430673026, -0.0616047233, -0.0151771642, -0.0177813638, -0.0151211591, -0.0338545963, 0.00106320658, -0.0300183017, 0.0476316512, 0.0182574, 0.0043893368, -0.0330705345, -0.00454684859, 0.00957673416, -0.0127479779, -0.0476036519, 0.00383979455, -0.0448594391, 0.039707046, 0.00550942263, 0.00632498506, 0.000542541617, -0.0252439361, 0.0228777546, 0.0525320284, 0.00193739857, -0.00975174829, 0.0519439839, -0.0449994504, -0.0297102779, -0.0234517977, -0.0434033275, -0.0236618146, -0.0404911041, 0.0113688717, 0.0205255747, 0.0218696781, 0.0063389861, 0.00586995, -0.0232557841, 0.0243478678, 0.0303543285, 0.0302143171, 0.0103537943, 0.0641809255, -0.00129072403, -0.0437113531, 0.0187894404, -0.0312223937, -0.0129019897, -0.006598006, -0.0151071586, -0.0349746831, -0.0032797514, 0.0183274057, 0.0168572925, -0.0143090971, 0.0250199195, 0.0143160978, 0.0254959557, -0.0115718879, 0.0302143171, 0.00639849063, 0.052812051, -0.00484787161, -0.019223474, -0.0441593863, 0.0409111381, 0.00717555033, -0.00200915406, -0.03965104, -0.0598685928, -0.0373828672, -0.0365988053, -0.0204695705, 0.00942272227, 0.0323144794, -0.0151491622, -0.0390349925, -0.0282681677, -0.00672401581, -0.0401550792, -0.0132380156, 0.0245998874, -0.000537291227, 0.00991976075, 0.016241245, -0.000479536771, 0.0339666046, -0.0182433985, 0.0214496441, -0.00569843687, -0.0371868536, 0.00153486768, 0.0165352672, -0.0185094196, 0.00795261, -0.0483317077, -0.0163112506, 0.0787420422, 0.0103467936, 0.014463109, 0.0083096372, 0.0177113581, -0.00171775674, -0.0201195423, 0.0199375283, 0.0308023617, 0.0154851871, 0.00868766662, -0.01069682, 0.0371028446, -0.00910769869, 0.0333225541, 0.00903069228, -0.0195314977, 0.0126639716, 0.0260419976, 0.00994776282, -0.0564523302, 0.00881367549, 0.00808562, 0.0245718844, -0.0220936947, -0.0325945, 0.0166192744, -0.0181173887, 0.00252019335, 0.0441873893, -0.0239558369, 0.0691093, 0.0116348919, -0.0327065066, -0.0106478166, -0.0126079665, 0.0251179263, -0.0504878722, -0.0202035494, -0.0108928354, -0.0126639716, 0.00560393, 0.0182714015, -0.0172493234, -0.0251039248, -0.0181733929, 0.0170813091, -0.0067695193, 0.0172633231, -0.0288702138, 0.015667202, -0.00621647667, 0.0179493763, 0.0173193291, -0.0329305269, 0.00307673588, -0.0138260601, -0.0122789415, -0.0270500742, 0.00948572718, 0.0196295045, -0.00336025772, 0.00613597035, 0.0236478131, -0.0181173887, -0.040855132, -0.0173053276, -0.00808562, -0.0326785073, 0.020637583, -0.0182013959, -0.0135600399, 0.00933171529, 0.0201755464, -0.00674851751, -0.013013998, 0.0207075886, 0.0439073667, 0.0168292914, -0.000629173242, 0.0268960632, 0.00983575452, -0.0134900343, -0.0157652088, -0.00377678964, -0.0371308476, -0.00821162947, -0.0318104401, -0.00852665398, -0.035310708, 0.0306063462, 0.0123629477, 0.0336585827, -0.0193914864, 0.0158912186, 0.0325945, -0.00991276, -0.00293147471, 0.0064719962, 0.011718899, 0.0315304175, -0.00812062249, 0.0136370454, 0.01668928, 0.0541281514, -0.011718899, -0.00351076922, -0.00401480775, 0.00865266379, -0.0294302572, 0.0155971963, -0.0146451229, 0.00887668, 0.00607646583, -0.00792460795, 0.00463435519, -0.0148971425, 0.00709854439, -0.0124889575, 0.0211836249, 0.0219396818, -0.0100247692, -0.00428432878, -0.00216316595, -0.0131260063, -0.00809962116, 0.0112638641, -0.0159752257, 0.0068185227, 0.0138120595, 0.0535401069, -0.00538341282, 0.0167032816, -0.00134760339, 0.00472536217, 0.0151491622, 0.00921970699, 0.032538496, -0.032510493, -0.0163812563, 0.0423112437, -0.013196012, -0.0299622975, -0.0348906741, -0.00272145867, 0.0312503949, -0.012411952, 0.0141200824, 0.0187194347, -0.060316626, 0.00944372453, 0.00148498884, 0.0361787751, -0.014855139, -0.0402670875, -0.0256359652, -0.0118169058, -0.0305503421, -0.0046728584, -0.0209036022, 0.0210716166, 0.0101997824, 0.0150091508, 0.019069463, -0.00742056919, 0.0394270234, -0.0138680637, 0.0593085475, 0.0303823296, 0.0301863141, -0.0141060818, 0.0885427892, -0.00921970699, 0.00896768738, -0.00876467209, 0.0156812035, 0.0225277282, -0.00836564135, 0.000403405924, 0.0259859934, 0.0296262726, 0.0146171208, -0.00667851232, 0.00913570076, 0.00556542678, 0.016269248, -0.0180893876, 0.035366714, -0.0158492159, -0.00622347742, 0.0467075817, -0.00265495363, 0.00234167953, -0.00268120551, 0.0342746302, 0.0490317605, 0.0104378005, -0.00879267417, 0.00710904505, -0.00481636915, -0.0173753332, -0.00737856561, -0.0116978968, -0.015667202, -0.0233817939, -0.0102767879, -0.00712304609, -0.00386429625, -0.0039133, 0.0306903534, 0.0281421579, -0.0142460922, -0.00795261, -0.00713704713, -0.0147851342, 0.0131680099, 0.00795961078, 0.019069463, -0.0130349994, -0.00235218043, 0.019853523, 0.0115718879, -0.0218836777, -0.00162937492, -0.00466585765, -0.0169973038, -0.0156111969, -0.0183274057, 0.0212536305, -0.00283871777, -0.01159989, 0.0229477603, -0.0598125868, 0.0164512619, 0.00544641772, 0.0254819542, -0.0120339226, -0.00229092571, 0.00522590056, 0.00845664833, 0.0213376358, 0.0465955734, 0.0245578829, -0.00732956221, 0.00106583175, -0.0102557866, -0.0299342964, 0.00159874756, 0.00970974471, 0.0245158803, -0.00502638565, -0.0366828144, -0.0299903, -0.0249219108, 0.00645449478, -0.013770056, 0.0154991886, 0.0065735043, 0.00344776432, 0.020455569, 0.00943672378, -0.0207355898, -0.0254259501, 0.00640549138, -0.0143931033, -0.0133990273, -0.00984975509, 0.011025846, -0.00102907897, -0.0221917015, -0.0122369388, 0.0272600912, -0.00797361135, -0.0209876094, 0.0191394687, 0.0121669332, 0.0131890113, -0.00331125385, 0.0270360727, -0.00282646669, 0.0171653163, -0.0146311224, -0.0110678487, -0.00138085592, -0.0158772171, 0.0299903, 0.00645449478, 0.0349466801, -0.0196995102, 0.016059231, -0.0114948815, 0.024375869, -0.0103747956, 0.00186389289, -0.0347226635, -0.00928271189, 0.013196012, -0.0137490546, 0.0119149135, -0.00232767849, 0.00861066, 0.0370188393, -0.00244493759, -0.0045013451, -0.00905169453, 0.00360877672, -0.00736456458, 0.0112778647, -0.0210996177, -0.00984975509, 0.0171933193, -0.0235078037, 0.0188874491, -0.035254702, -0.0083096372, 0.0301023088, 0.0551922321, 0.0269520674, -0.00687102694, 0.000735056354, 0.0298222862, -2.39276164e-06, -0.022625735, -0.0311663896, 0.0381669253, 0.00598545885, 0.0363747887, -0.02699407, -0.00295947702, -0.00175275945, 0.010395797, 0.0184114128, 0.0198675245, 9.79528268e-05, -0.0227377433, 0.0173473302, -0.00884867832, 0.0134340301, -0.048471719, -0.0287022013, -0.003102988, 0.0088906819, -0.00322024687, -0.0197275132, -0.0179633778, -0.00381529261, 0.00627948157, 0.00173438306, -0.0133010196, 2.0482039e-05, 0.0238858312, -0.0439633727, -0.00558992848, 0.0392870121, 0.0447474308, 0.00741356844, -0.00602046167, -0.0142320916, -0.0214916486, 0.000802436552, -0.0556962714, 0.0263360199, 0.00300848065, 0.00907269586, 0.0239558369, 0.0229617618, 0.0241378509, 0.0177253596, -0.00392730115, -0.00766558805, -0.0303263254, -0.00980775245, -0.0132940197, 0.0453074761, 0.0132310148, 0.00124084519, 0.0287582055, -0.00784760155, 0.0030592347, 0.00955573283, 0.0123979505, 0.00619897526, 0.0298502892, 0.0357867442, -0.0183834098, -0.000259019871, 0.008827677, 0.0165492687, -0.000198312089, -0.0102977902, 0.00651749969, 0.00187614386, 0.0114878807, 0.0245718844, -0.00271095801, -0.0545481816, -0.00168187893, 0.00945072435, -0.0165072661, -0.00668201223, 0.00787560362, 0.0224717241, -0.0210576151, -0.00011791529, -0.0457555093, -0.0038607961, 0.00117871538, -0.0235498063, 0.00465885736, -0.0265880395, -0.0544361733, -0.0177113581, 0.0139240678, 0.0379149094, -0.0287582055, -0.0444114059, 0.0263080169, 0.00681502279, -0.00540791452, -0.0223177113, 0.00116908969, -0.0472956263, -0.000985325547, 0.00724555552, -0.012684973, -0.0177673623, -0.0159472227, 0.0107388236, 0.00520139886, -0.0234658, -0.019223474, 0.0119709177, 0.0184254125, -0.00664701, 0.00915670209, 0.0216596611, 0.0166332759, 0.00298222876, 0.0269520674, 0.0146171208, 0.0242778622, 0.0147851342, 0.0230877697, -0.0111098522, -0.0312223937, 0.0237458218, -0.0157092046, -0.0106898202, 0.0140780797, -0.0221356973, 0.0406591184, 0.0284641832, -0.0138330609, -0.0255099572, -0.0262240116, -0.00075912074, -0.0202175509, 0.00637748931, -0.0133150211, -0.00327625126, 0.0349186771, -0.016269248, -0.013105005, 0.0026077, 0.0254399516, 0.00872266851, -0.0241378509, -0.0164792631, 0.0419472158, 0.00224017189, -0.0242918637, -0.0188034419, -0.00678352034, 0.00435083359, -0.0320064537, -0.00900269, -0.000318961975, 0.0451674648, 0.00250794226, 0.00760258315, 0.0275961161, -0.00409181369, 0.00490387622, -0.00507538905, -0.0199095272, 0.00729455939, 0.0173473302, 0.00233992934, -0.00532740867, -0.0420032218, 0.0112848654, -0.00192164734, 0.00959773641, -0.0323144794, -0.0218836777, -0.00760958344, -0.00179913791, -0.00497038104, 0.0328745209, 0.0160452314, 0.0415831879, 0.0151911648, -0.00340926135, 0.00967474189, 0.0178233664, -0.0421432331, 0.00330425333, 0.0248939097, 0.026392024, -0.0217016637, -0.0171793178, 0.0320624597, 0.032202471, 0.00427032728, 0.0348346718, -0.00331650442, 0.0150231523, 0.0304663368, 0.015667202, -0.0329865292, 0.01982552, 0.0182293989, -0.00917070359, 0.00860365946, 0.0217436682, -0.0237458218, 0.0011953417, 0.0112918662, -0.00814162474, -0.0259719919, 0.015247169, 0.0399310626, 0.0259299893, 0.00359827583, -0.0187474377, 0.0276381187, 0.014491111, 0.0117399, -0.0497038104, 0.00065323757, -0.00779859815, 0.0317824371, 0.0344986469, 0.0471276157, 0.00388529804, 0.0200775396, 0.0538201258, 0.00371728512, 0.00191989727, 0.0112498626, -0.0166052729, 0.00346351555, 0.00183239055, 0.0204695705, -0.023591809, -0.0111728571, 0.0162132438, 0.00822563097, 0.00343376328, 0.00356677361, -0.0360947698, 0.0350866914, -0.0130910035, -0.00450834585, 0.00526440376, -0.0427032746, 0.000936321798, -0.00638799, 0.0288982168, -0.0234658, -0.0112218605, 0.0136090433, 0.0109138368, 0.00424932595, -0.0240678452, 0.00429482944, -0.0148691405, 0.00312573975, 0.0139870727, -0.0138120595, -0.00133447733, 0.011508883, 0.00739256712, -0.0017650103, -0.00742756948, -0.018285403, 0.0116698947, 0.0121389311, 0.00135897927, -0.0280721523, -0.00630398327, 0.0193634853, 0.00965374056, 0.0123489471, 0.00614297111, -0.033714585, -0.000943322317, 0.00713004684, 0.0234798, 0.000285709422, 0.0244738776, 0.00159699749, 0.0270920768, -0.00732956221, 0.0207215883, 0.000376278855, 0.00231017708, -0.0212956332, 0.0134410309, -0.0278761368, -0.0232837852, 0.0191814713, -0.0131890113, -0.0132100126, 8.50455835e-05, 0.00476736575, -0.00424582558, 0.00581744593, -0.00355627271, -0.00701103779, 0.0129369926, 0.00452584727, -0.0103117907, -0.0405751131, -0.0266860463, 0.063060835, -0.0104448013, 0.0138120595, -0.00277046254, -0.0425912663, -0.0283661745, -2.37088498e-05, 0.00602746243, -0.00366478111, -0.0166472774, 0.010787827, -0.000819062814, 0.0122089367, 0.00728055835, 0.00521189952, -0.00713704713, 0.00172738242, 0.00599946, 0.0399590656, -0.0345546491, -0.018467417, 0.0187334362, -0.0122789415, 0.00801561493, 0.0109138368, 0.00223492132, 0.00260594976, -0.0120969275, -0.0226957407, 0.00900269, 0.0453074761, 0.0239838399, 0.0148131363, -0.00716154929, 0.00571243791, 0.0254259501, -0.0129929967, 0.0036367788, -0.0101507781, -0.0171093121, -0.00142810948, -0.0209456068, -0.0070775426, 0.0141130826, -0.00125397113, 0.0178513695, -0.0169553012, -0.00814162474, -0.0158072114, 0.0139310686, -0.0139590707, -0.0127689792, -0.0273020938, 0.0147711327, 0.0106408158, 0.0147851342, -0.0298502892, -0.0290102251, 0.0300183017, -0.042451255, -0.00863166153, 0.0116068898, -0.00513839396, -0.0269240644, 0.0208195969, 0.00152349181, -0.0272740908, 0.0257199723, -0.028590193, 0.00123121939, 0.0192094725, 0.00207390916, 0.00349676819, 0.00225592311, -0.0230317656, 0.0140010733, -0.00256919698, -0.0103327921, 0.00102820387, -0.00647899695, -0.00903069228, 0.0212676302, -0.00933871605, -0.010787827, -0.0304943379, 0.000649737311, -0.00867366511, -0.00597145781, -0.0206235815, 0.00555142574, 0.00252544368, -0.00563193206, -0.00888368115, -0.00112271111, -0.0135670407, -0.0122789415, 0.022205703, 0.0374388695, 0.00771459145, 2.34080453e-05, 0.0105498089, 0.0230037645, 0.0111518549, -0.0113828732, -0.00544641772, -0.00045284722, 0.0135740405, -0.0111868577, 0.00732256146, 0.0252159331, 0.0374388695, -0.0115718879, -0.0213656388, 0.00138610625, -0.0116418926, 0.0149671482, 0.002674205, -0.0100107677, -0.00760958344, 0.00737856561, -0.0116138905, -0.0165632702, -0.0161572397, 0.00605896488, -0.00831663795, -0.0041933218, 0.00327275088, 0.0200915411, -0.0148131363, -0.00507538905, -0.00266895466, -0.00767958909, -0.0133850267, -0.00359827583, -0.014491111, 0.0202595536, -0.0177113581, 0.0275961161, 0.00485137198, 0.0190974642, -0.00746957259, -0.0180053804, -0.00966774113, 0.0315024145, -0.0100737726, -0.00437183538, -0.00383279403, -0.0107318228, 0.00878567342, -0.00579294423, -0.0273440965, -0.0245718844, 0.000396624178, -0.00974474754, 0.0302703213, 0.00210191123, -0.017053308, 0.0102207838, -0.000145042373, -0.0318664424, 0.00386779662, 0.00777759636, 0.00967474189, 0.0124819577, -0.0245858859, -0.00047647403, -0.0214636456, -0.0125729647, 0.00185339211, -0.00788960513, -0.0183274057, 0.00682552345, 0.0223177113, -0.0297662821, 0.0057579414, 0.0115508856, 0.0169833023, 0.00659100525, 0.000469473511, -0.00641599204, 0.00278621376, 0.00179913791, -0.0127899805, -0.0171373151, -0.00698303571, -0.0224297196, -0.0213656388, -0.0215196498, 0.000425938924, 0.0157792103, -0.00725955656, 0.00324649899, 0.0109768417, 0.0147151286, 0.0288982168, 0.00406031124, -0.0134830335, 0.0115788877, -0.014855139, 0.0223317128, -0.0209736079, 0.0043893368, 0.012201936, 0.00144561089, -0.00159437233, -0.00917070359, -0.0089536868, 0.0214636456, 0.0101157762, 0.00182188966, 0.00137123012, -0.00683252374, 0.0113828732, -0.0263360199, 0.0036367788, 0.00628998224, 0.00776359532, -0.0354507193, 0.00830263644, 0.00282121636, 0.00935271755, 0.0155831948, -0.00903069228, 0.00415131822, 0.0108088292, -0.0146451229, 0.0148971425, -0.011900913, -0.0179633778, 0.000704866543, -0.00658750534, 0.0176973566, 0.0161012355, 0.0195875019, 0.0215056501, 0.00701803807, 0.00243093632, -0.013077003, -0.0112218605, -0.00041915715, -0.00451884652, 0.0104027977, -0.0182433985, 0.0181033891, 0.0346106552, -1.99077767e-05, 0.0188454445, -0.013497035, -0.0128109828, 0.0106408158, 0.0203715619, -0.0192094725, -0.000478661706, -0.0221777, 0.0216316581, -0.000734618865, -0.00868766662, -0.0262240116, -0.00236793165, -0.0237458218, -0.00523290131, -0.00180613855, -0.0130349994, -0.00557592744, -0.0345546491, 0.0106268153, -0.00392030086, 0.00466585765, 0.0116068898, -0.0264480282, -0.0117539018, 0.0336585827, 0.0074835741, -0.00536591141, 0.0137350531, -0.0431233086, 0.0109908432, -0.0101857809, 0.0174033344, -0.0135040358, -0.016087234, 0.000174466506, -0.00777759636, -0.0177953653, -0.0147291292, -0.00749057438, 0.0138610629, 0.0232977867, 0.0142320916, 0.003257, 0.0227097422, 0.0246138871, -0.0446074195, 0.00218941784, 0.00779859815, 0.0344146378, 0.0186214279, -0.0132730175, -0.0120549249, 0.0102557866, -0.0147571312, -0.00313974079, 0.0104798041, -0.0267140493, 0.000370590918, 0.0150091508, 0.0279741455, -0.000726305705, 0.0399590656, -0.0188174434, -0.0115788877, -0.0184534155, -0.00700403703, -0.00100107677, -0.0212256275, -0.00663650874, 0.0181313902, 0.0263360199, -0.023017766, 0.00187789404, -0.00066330086, -0.020035537, -0.0526720397, -0.00511389226, 0.0297942851, -0.00542891631, -0.00468335906, -0.000348057947, -0.00751857646, -0.0288982168, 0.0213796403, 0.00150949077, -0.0290942304, 0.0116838962, 0.0163112506, -0.00615347177, -0.00292797456, 0.00623047771, -0.00261995103, 0.0133150211, -0.0190974642, 0.0189294517, -0.0126359686, 0.0133010196, 0.00847065, 0.0163112506, -0.00374528719, -0.0123559479, -0.0122859422, -0.0182433985, -0.0169272982, -0.00959073566, -0.00557592744, -0.00116733951, -0.00544291735, 0.0407431237, 0.0235638078, 0.0232557841, 0.00728055835, 0.0195174962, -0.00432633189, 0.0274841078, 0.017025305, 0.000767871388, 0.0111938585, -0.0318944454, -0.0127409771, -0.00327100093, 0.0139730712, -0.0182994027, 0.00389929907, 0.0155971963, 0.026966067, -0.0155411921, 0.00264445273, 0.025607964, -0.00585244875, -0.00672401581, -0.0168992952, 0.0224577226, -0.0222757086, -0.00427732803, -0.00206340826, -0.0072245542, 0.0358147472, -0.00310123782, 0.00712654646, 0.0253839474, -0.00594345573, -0.0275541134, 0.0076585873, 0.00202665548, 0.0119709177, -0.0262520127, -0.0207775943, 0.0245998874, -0.0201615468, 0.0196575075, -0.0175713468, 0.00210191123, 0.00103520439, -0.00184639159, 0.00907269586, 0.0108508319, 0.0275681149, -0.00498438207, -0.0138260601, -0.0231997799, -0.000921445666, -0.030942373, -0.0234237965, 0.0108648334, 0.00710204476, -0.0179213751, 0.0294582583, 0.0232697837, -4.07453117e-05, 0.0405471101, 0.00470436085, -0.00795961078, -0.00353177078, -0.0354227163, -0.0161572397, 0.00583144743, 0.00370328408, -0.0119989198, 0.00027608368, -0.00793860853, -0.00122684403, 0.0112708639, 0.0151911648, -0.000117696523, 0.00648949761, -0.00172475725, -0.000266457937, -0.0103887971, 0.00577194244, 0.017053308, 0.00840764493, 0.0306903534, -0.0252019335, 0.0139030665, 0.0167312827, 0.00870866794, 0.00780559843, -0.0128249833, 0.0205255747, -0.0169693, -0.00594345573, 0.0016495015, -0.00285096862, -0.0222757086, -0.0185234211, 0.0244318731, -0.00354927219, -0.00178163662, -0.0154991886, -0.0188174434, 0.00688852835, -0.00812762324, 0.00468685944, -0.0180053804, -0.017655354, 0.0177253596, 0.0156391989, 0.0133640245, 0.00407781266, 0.0118799107, 0.00443834, -0.0164372604, 0.00459585246, -0.0213376358, 0.0106828194, 0.0157792103, 0.0084216455, 0.0077915974, -0.0107948277, 0.0197415147, -0.0199515298, -0.0142670944, 0.0225277282, 0.0231997799, -0.000136401082, 0.014673125, 0.0272600912, 0.00647549657, 0.010934839, 0.00346526573, 0.00178688706, -0.00712304609, 0.0149951503, 0.0154711865, -0.00290522282, 0.0110958507, 0.0116348919, -0.0124749569, 0.0126919737, 0.0224017184, -0.0341906212, -0.0252439361, 0.0156952031, 0.00604496337, 0.0150091508, 0.00481986953, 0.016241245, 0.000102765691, 0.00887668, 0.00920570642, 0.0121529317, -0.00457485067, 0.00119184144, -0.0142670944, -0.0365708061, 0.023619812, 0.0140570784, -0.00708804373, -0.0179353748, -0.00469036, 0.0121529317, -0.00619897526, 0.012110929, -0.00434383331, 0.0245858859, -0.0254959557, -0.014463109, 0.00214391435, -0.00351952, -0.0109208375, 0.0379709117, 0.0122089367, 0.000654987758, 0.0128319841, -0.00737856561, 0.00261820084, -0.00086544134, -0.0285201874, -0.00572293904, -0.00443134, 0.00364727969, 0.00540441461, -0.0158912186, 0.0124399541, -0.00941572245, -0.00127147255, 0.00519439857, -0.00373128615, 0.0135670407, -0.027148081, -0.0219536833, 0.00668551261, 0.00941572245, 0.0225697309, -0.0102417851, 0.00989875942, -0.000434470829, -0.00850565266, 0.00144911115, 0.00335675734, -0.00638098922, 0.0155411921, 0.0236898176, -0.0216736626, 0.0056459331, -0.00149986497, -0.000906569534, -0.000844439783, 0.00256219646, 0.00908669643, 0.0054989215, -0.0195174962, 0.00801561493, -0.00209316052, 0.0196995102, 0.00801561493, 0.0248659067, 0.020455569, -0.0225557294, 0.0054499181, -0.00820463, -0.0420872271, 0.0237598214, 0.012502959, -0.0208616, 0.0153171746, -0.0151491622, 0.0291222334, 0.0109628411, 0.0219256822, -0.0117889037, 0.00105445588, -0.00457835104, -0.00365428021, -0.0177253596, 0.00159874756, -0.00482337, -0.0177953653, -0.0288142096, 0.020455569, 0.0275121089, -0.00491437688, -0.0060799662, -0.00500888424, -0.00198115199, 0.00154799374, 0.00182539, 0.0110958507, -0.00306798518, 9.1663278e-05, -0.0173053276, 0.000378904049, -0.0075955824, -0.0211556219, 0.00780559843, 0.00544291735, -0.000164403231, 0.00502988556, -0.0015786211, -0.000634861179, -0.00716154929, -0.014162086, 0.0113198683, 0.019671509, -0.0214636456, 0.00736456458, 0.0145611167, -0.000762183452, 0.0151631627, -0.00417232, -0.0304663368, 0.00125922158, -0.0157512072, 0.00231892779, -0.00615697214, -0.00260945014, 0.00663650874, -0.00424932595, 0.00417582039, -0.0105358083, -0.00914970133, -0.00716504967, -0.00212466298, 0.0107528251, -0.0149951503, -0.00253419438, -0.0192794781, 0.0077915974, 0.00131347578, 0.00715104816, 0.000450222025, -0.00537291216, 0.0114248758, 0.00472186226, -0.0230457671, 0.0110398466, 0.03808292, -0.0267000478, 0.0106828194, 0.00957673416, -0.0218556765, -0.00104483007, 0.0204975717, -0.00516639603, 0.00414431794, 0.0193074811, 0.0105708111, -0.00411631586, 0.014673125, 0.00774259353, -0.0191394687, -0.036486797, 0.0304383337, 0.00721755344, -0.0249919165, 0.00646849629, 0.013028, 0.0189434532, 0.0302423183, 0.0121599324, -0.00234167953, -0.0108718341, 0.0119709177, 0.0108858347, -0.0151071586, -0.00959773641, 0.0198115185, -0.0195735, -0.0100177685, 0.00258669839, -0.00420382246, 0.00348101696, 0.0177393612, 0.0274281036, -0.017627351, -0.0218556765, 0.0130349994, -0.00730856042, 0.00618497422, 0.00517339678, -0.00145873684, -0.00113146182, 0.0264060255, 0.0110468473, -0.00730156, -0.00179913791, 0.00455034897, 0.00449434482, 0.011417876, 0.00422132388, 0.00287022023, -0.0131820105, -0.0016232495, -0.00814862456, -0.00639499025, 0.0157792103, -0.0285201874, -0.0111868577, 0.0173613317, 0.00872966927, 0.00949272793, 0.00488287443, -0.00803661626, -0.0161572397, 0.00555142574, -0.0104798041, -0.0338545963, -0.0118449088, -0.00171338138, -0.0265040323, 0.0037347863, -0.0200635381, -0.00870166719, 0.0317264348, -0.0167872868, -0.00567743555, -9.94705169e-06, -0.0073365625, 0.00531340763, 0.00583844772, 0.001265347, 0.00298747909, 0.0237738229, 0.0219116807, -0.00752557721, -0.0248939097, 0.00273370976, 0.00815562531, 0.0263500214, -0.00109908427, -0.00343376328, 0.0148131363, -0.0189574547, 0.000872879464, 0.00436833501, -0.0182433985, 0.0240258425, -0.00916370284, 0.0132310148, -0.00255694613, 0.00720355241, 0.00897468813, 0.00501238462, -0.0122999437, -0.00281771598, -0.0225417279, -0.00985675585, -0.00849165116, 0.00813462399, 0.00956273358, -0.0108508319, 0.00915670209, -0.0103887971, -0.0263500214, -0.00207390916, 0.00551992329, 0.00245193811, 0.0149531467, -0.0191254672, -0.0127829807, 0.014099081, -0.00891868398, 0.024823904, -0.00330250314, -0.0106828194, 0.000522415037, 0.0139730712, -0.0239418354, 0.00819062814, 0.0173613317, 0.01747334, -0.0193494838, -0.01747334, 0.0117399, 0.0231857784, 0.00763758551, 0.0188734476, -0.0100317691, 0.0057579414, -0.00475336472, 0.0031817439, 0.0102487858, 0.0122859422, -0.00646149553, -0.00407081237, -0.00823263172, 0.000960823672, 0.0070145377, 0.00360877672, 0.0121319303, 0.00535891112, 0.0017203819, -0.00648249732, -0.0104097985, 0.00587695092, 0.00403230917, 0.0191534683, -0.0209596083, 0.0128249833, -0.0164232589, -0.000253769453, -0.0357307419, 0.0262800157, -0.00743457, 0.0113198683, 0.0262380112, 0.00183589081, -0.00329200248, 0.00196540076, -0.0138610629, 0.0171653163, -0.0101367775, 0.00792460795, -0.0117889037, -0.026056, -0.00671701506, 0.00746957259, 0.00772159221, 0.014673125, -0.00245718844, 0.0181173887, -0.000750370033, -0.000756057969, 0.0331265405, -0.00289297197, -0.0108578326, -0.0169693, 0.00211416208, 0.00186039263, -0.0267140493, -0.00977975, -0.00436133426, 0.0266300421, -0.0132240141, -0.00287372037, -0.00908669643, -0.0122299381, -0.0018008881, 0.00880667567, -0.0268260576, -0.0227657463, 0.00823963154, 0.000937196892, 0.00303473277, 0.0180193819, -0.000635736273, 0.0094717266, 0.00792460795, -0.00896768738, 0.00272845919, -0.00248169038, -0.0119639179, 0.00647549657, -0.0147991348, 0.0203995649, 0.0154431844, 0.017627351, -0.0185234211, -0.0159332212, -0.00351952, 0.000434908347, -0.00334800663, 0.0151071586, -0.00760958344, -0.0169272982, 0.00300673069, -0.0111308536, -0.0202035494, -0.00884867832, 0.0140920803, 0.0256779697, 0.00167225325, 0.00812762324, 0.0101927817, -0.00800161343, 0.00255344575, 0.00713354722, -0.00358777517, -0.00767258834, 0.0179633778, -0.0194894951, 0.0153031731, -0.00356852356, -0.0209596083, -0.000178404312, -0.00704954052, -0.00680452166, 0.00278271339, 0.00928971265, -0.00433333218, 0.0163252521, 0.00460285321, -0.0222757086, 0.0277361274, 0.0202875566, -0.0259859934, -0.0159472227, -0.00511039188, 0.0112008592, -0.0245158803, 0.00487937406, 0.00673801685, -0.00310648815, 0.0113198683, -0.0323424786, -0.0190554615, 0.0125519624, 0.00319574517, 0.0042178235, 0.0079036057, 0.0185094196, 0.0140850805, 0.0123279458, 0.00164775131, -0.00279671443, -0.00496338075, 0.00644049374, 0.00394130219, -0.00673801685, -0.0143511007, 0.0216176584, -0.00623397809, -0.0148971425, 0.0047358633, -0.00750457542, -0.00220166892, -0.00636698818, 0.00189714553, 0.00131785101, 0.0150791565, -0.00206515845, -0.00695153326, -0.000759558228, -0.00173875829, 0.00824663229, 0.000465535704, 0.00123384467, -0.0188174434, -0.00692003081, -0.000375622563, -0.00609746762, -0.00522590056, -0.012593966, 0.0254539512, -0.0032447488, 0.00614647148, 0.0140430769, -0.0134620322, -0.00404631, 0.0049318783, -0.0168152899, 0.0154711865, -0.00312749, 0.000485662255, 0.00991976075, 0.000362496561, 0.0139030665, -0.00819062814, -0.00554092508, 0.0100807734, 0.00589095196, -0.0267420504, 0.00762358448, 0.00540791452, -0.0104938047, -0.00958373491, 0.0133150211, -0.0149251446, 0.0165072661, 0.00329725281, 0.00909369718, 3.61785569e-05, 0.0203715619, -0.00466935802, 0.0185374208, -0.0079666106, -0.0191534683, -0.0185094196, 0.0198675245, -0.0111868577, 0.0178933721, 0.00996876415, 0.00429833, -0.0121669332, 0.00612546969, 0.0107178222, -0.00702153845, 0.00632498506, -0.0103537943, 0.0139730712, -0.00677301921, 0.00664350949, 0.0126569709, 0.0119079128, 0.00749757513, 0.00457135076, -0.0207915939, -0.00141410844, 0.0103117907, 0.0145191131, 0.0347506665, 0.0119849192, -0.00976574887, -0.0211416222, 0.0161432382, 0.0116068898, 0.00359477568, -0.00878567342, 0.019223474, -0.00522240065, 0.00307848607, -0.0158632174, -0.00531340763, -0.00970974471, -0.00428782869, -0.00611146865, 0.00745557155, 0.00792460795, 0.00933171529, -0.0208475981, 0.0373548642, 0.00718255062, 0.00262520136, -0.000476036512, -0.0264900308, -0.00927571114, -0.0148271369, 0.0349746831, 0.00490387622, -0.022625735, 0.00124522054, 0.0221777, -0.00675551826, 0.00343901361, -0.00301373121, -0.00577194244, 0.0106548173, 0.00744157052, -0.027204087, 0.00422132388, 0.0213656388, 0.000295553909, -0.000952948059, 0.00305748452, -0.0201615468, 0.0171233136, -0.00872966927, 0.000539478846, 0.000230142643, -0.0307743605, -0.0202035494, 0.00389929907, 0.00693753222, 0.00555842649, 0.0093457168, 0.0194474906, -0.0147851342, 0.00388879818, 0.0112638641, -0.00435783435, 0.0171093121, 0.0378028974, 0.0187194347, 0.000844002236, 0.00902369246, -0.0218276735, 0.00643349346, -0.00251319283, 0.00423882529, -0.00435783435, 0.0171793178, -0.00654900214, -0.00571593828, 0.0132660177, -0.0339106023, 0.010514806, 0.0108298305, 0.00945072435, 0.00331125385, -0.00135722908, -0.00653150072, -0.0215056501, 0.0188314449, -0.000763933582, -0.00742056919, 0.00882067624, 0.00164512615, -0.000377810211, -0.0298222862, -0.000713179703, 0.0100107677, -0.00313099, -0.00652450044, 0.0088416785, -0.00504038669, 0.020427566, -0.0152611705, 0.00865966454, 0.00800161343, -0.0134480316, -0.0351146944, 0.0161152352, 0.0210716166, -0.0130560016, 0.000780122355, -0.0287302025, 0.00931771472, 0.00766558805, -0.0173333287, 0.00331650442, 0.0199795328, 0.00750457542, 0.00369628356, -0.00554442499, -0.00504738698, 0.0201895479, -0.0186354294, -0.0141130826, 0.013798058, 0.00135635398, 0.016241245, 0.00263220188, -0.000945072446, -0.00715104816, -0.022625735, 0.000603796332, 0.0182153974, 0.00319749513, 0.00110433472, 0.0120059205, 0.0234517977, -0.0259439889, 0.00750457542, -0.0117118983, 0.0332385488, -0.0132660177, 0.00400430709, 0.0128669869, -0.011900913, 0.0369908363, 0.0127689792, 0.00385729573, 0.017865371, -0.0213236362, -0.000925821, 0.000657175377, 0.00984975509, 0.00208966015, 0.016087234, 0.0108998362, -0.0163532533, -1.85268109e-05, -0.00461685425, 0.000351995754, -0.00612546969, 0.0267980546, -0.00347751658, 0.000662425824, 0.00680452166, -0.00612196932, 0.0136650475, 0.000508414, 0.0075325775, 0.0078266, 0.0122719407, 0.0138260601, 0.00593995536, 0.00448384369, 0.0144211063, 0.01159989, 0.0053869132, -0.0225277282, 0.00553392433, 0.00919170491, 0.00359827583, 0.0198395215, -0.0164372604, 0.000962573802, -0.0039343019, -0.0161572397, 0.00676251855, -0.0387829728, -0.0140290754, -0.00861766096, -0.00193214812, 0.00996876415, -0.016087234, 0.00820463, -0.0102977902, -0.0125169596, 0.0125169596, 0.0119709177, 0.0123769492, 0.000334713171, -0.025607964, 0.0158072114, 0.0010439551, -0.00430182973, 0.01982552, -0.0168852955, -0.00421432313, 0.0269380659, -0.0162552465, -0.00472186226, 0.013013998, -0.00121021783, -0.0112988669, -0.00716504967, 0.0159332212, 0.00221391977, 0.0190974642, -0.00402530888, -0.000362277788, -0.00297522824, -0.000723680481, -0.00762358448, -0.00716504967, -0.0034512647, -0.00177726126, 0.0125379618, -0.0128319841, -0.0374108702, 0.0209876094, 0.00910069793, -0.0169553012, 0.0132030128, -0.00129159901, -0.014673125, 0.00323249795, -0.0176133513, -0.0221637, -0.0184534155, 0.00680802204, -0.00554792536, 0.0075955824, 0.0221637, 0.0172493234, -0.00337600894, 0.0198115185, 0.0185934268, -0.0175993498, -0.0249219108, 0.0116558941, 0.00750457542, 0.0203155577, -0.000602483691, 0.0212256275, -0.0167592857, 0.0108508319, 0.0148271369, 0.00891168322, -0.0197555143, -0.00518389745, -0.00637398893, 0.0202035494, -0.0215756539, 0.00618147384, 0.00357377413, -0.00301898154, 0.0188034419, -0.00789660588, -0.0281421579, -0.0179773793, 0.00494937971, -0.00886968058, -0.0232977867, 0.0316424258, -0.0328745209, -0.000347839174, -0.00637048855, 0.00477786642, 0.00463085528, 0.00597845856, -0.0110118445, 0.0059679579, -0.00991276, 0.00814162474, -0.0145471152, 0.0140220756, -0.0108088292, -0.017655354, -0.00254469505, -0.00969574321, -0.00931771472, 0.000704429, -0.0153451767, -0.0344986469, -0.011179857, -0.0134480316, -0.000472536223, -0.0173333287, -0.00896768738, 0.0138260601, 0.0328185186, -0.00875767134, 0.0159192216, -0.00947872736, -0.0059294547, 0.00924070831, -2.12067043e-05, 0.00465885736, -0.0104448013, -0.00515589537, 0.0165912732, 0.0107388236, 0.00739256712, 0.00931071397, -0.00235568057, -0.0035142696, -0.0176693555, -0.0316704288, 0.00692703109, -0.00811362267, -0.0124679562, 0.03013031, -0.000554355036, -0.00136860495, -0.00124609552, 0.0192794781, -0.00814862456, 0.00747657334, 0.0207635928, -0.0192934796, -0.0241098497, -0.00662600808, -0.00631098403, -0.011508883, 0.00287022023, -0.00486187264, -0.0144351069, 0.0237738229, 0.0130069973, -0.0167172812, -0.00393780181, 0.0102487858, 0.0297382809, 0.000495288, -0.00963273831, -0.000566168397, 0.00427032728, 0.00886268, -0.0181873944, 0.00107633253, 0.0156532, -0.0142390924, -0.0115928892, 0.00819062814, -0.0172073189, 0.00484087132, -0.00872966927, 0.00779859815, 0.00861766096, 0.00210541137, -0.0137280524, -0.0102907894, 0.00043687725, -2.56914227e-05, 0.0443834029, 0.0330705345, 0.0163112506, 0.0049318783, 0.00586995, -0.00763058523, -0.00422482379, 0.00529590622, 0.0137210526, -0.0228917561, 0.015457185, 0.0065735043, 0.00294547598, -0.00792460795, -0.0231717769, 0.0269520674, -0.0640689135, 0.0078686038, 0.0174033344, -0.00142373424, 0.0113758724, -0.00194089883, 0.0177533608, -0.00570543762, 0.0343866386, 0.00754657853, -0.00536241103, 0.0156952031, 0.0122859422, 0.00373128615, -0.0259439889, 0.00605896488, 0.0130700022, 0.0083096372, 0.00363327865, -0.0104167992, 0.00688852835, 0.0104658026, -0.0073995674, 0.00313624041, -0.00253419438, 0.0101997824, 0.000700928736, 0.00159787259, -0.014855139, -0.0209736079, -0.00518389745, -0.000295116391, 0.00274246023, -0.0123699484, -0.00223492132, 0.00975174829, -9.65855288e-05, -0.00425282633, -0.0151071586, 0.00362277776, 0.00574044045, 0.0083586406, 3.19946412e-05, -0.0141270831, -0.0150371529, 0.0325665, -0.0161852408, 0.0123559479, -0.0165212676, 0.00124172028, -0.016871294, 0.00310998852, 0.00225417293, 0.00746957259, 0.00319924532, -0.00801561493, -0.00291222334, -0.00367528177, -0.00495287962, 0.00709504401, 0.0014176087, -0.00828863587, 0.00212816312, 0.0147291292, 0.0385589562, 0.00699353637, -0.0248659067, -0.0223737154, -0.0302423183, 0.0166052729, -0.0265320353, -0.00537641253, -0.00930371322, -0.0171093121, -0.00265670381, 0.0151911648, -0.00533090904, -7.65136792e-05, -0.0112918662, 0.0182293989, 0.00219116802, 0.0163672548, 0.0252019335, -0.00564243272, 0.0174313374, 0.0105778109, -0.0161852408, -0.0186354294, 0.00891168322, 0.012985996, 0.00669251336, 0.00444534095, -0.0186634306, -0.0106198145, -3.8940485e-05, 0.000638361438, -0.0224997252, 0.0051278933, 0.0157932118, -0.00854765531, -0.00548492046, -0.0115788877, 0.00709854439, 0.00573694, 0.00723155448, -0.0288142096, 0.006598006, -0.0194754936, -0.00948572718, 0.0184954181, 0.0175153427, 0.00886268, 0.00781959947, 0.00421082275, 0.0139030665, -0.00125309615, 0.00746257231, 0.0109838424, -0.00207040878, 0.00728055835, 0.00858965889, 0.00372078526, -0.00777759636, -0.0251319278, 0.00888368115, 0.00789660588, 0.00402880879, 0.0107738264, -0.00104920543, -0.0144491084, -0.0172213204, 0.00296822772, -0.00920570642, -0.0160452314, 0.0107458243, 0.00228567538, 0.0033532572, 0.0144491084, -0.0149391452, -0.00457485067, 0.00521189952, -0.00134497811, 0.0261260029, -0.00279671443, -0.00691303, -0.0281561594, 0.00639849063, -0.0289262179, -0.0160452314, -0.000704429, 0.0110748494, -0.00791060645, 0.00921270624, 0.00286671985, -0.0175573472, -0.0320344567, -0.00279321428, 0.00599596, 0.00378729054, 0.00926171057, 0.00919170491, 0.00230317656, 0.00760958344, 0.0161152352, 0.00577194244, -0.011116853, -0.00242568599, 0.00233292882, -0.00598895922, -0.00323774829, 0.00348801748, 0.0132730175, -0.00269870693, -0.0209596083, -0.00576844253, -0.0245018788, 0.00457135076, -0.0247398969, 0.0138540622, 0.000528103, 0.0163952578, -0.00364727969, -0.00903069228, 0.00821162947, 0.0209456068, -0.0277221259, -0.00242743618, 0.00182013959, 0.0133010196, 0.00392730115, 0.0289262179, 0.0165912732, -0.00632498506, -0.00433683256, 0.00345301488, -0.00562143093, 0.00715454854, -0.0127619784, 0.0116348919, 0.00182013959, 0.00665401, 0.00171338138, -0.0051033916, 0.00808562, -0.0125169596, -0.0136720482, -0.0239138342, 0.0235078037, 0.0191114657, 0.00950672943, 0.0179773793, -0.0154011808, 0.00118134054, -0.00428082841, 0.0140430769, 0.00728055835, -0.00918470416, -0.0074835741, -0.0180753861, 0.00896768738, 0.0149811488, 0.0150931571, 0.0213376358, 0.000418282085, 0.0261960085, -0.0131890113, 0.00116033899, 0.0160172284, -0.00454684859, 0.0185234211, 0.0111658564, 0.0109558403, 0.0078546023, -0.0143651012, -0.00223317137, 0.00303473277, 6.6395718e-05, 0.00353352097, -0.00335150701, 0.0174313374, 0.0375508815, 0.00300848065, -0.0042178235, -0.00388529804, 0.0149391452, -0.00774259353, -0.0112288613, -0.000321149622, 0.0184114128, -0.00847065, -0.00244668755, 0.0106338151, 0.00606246479, 0.0243618675, 0.0128389848, -0.0168012884, -0.0125379618, 0.0204415675, -0.0232697837, 0.00394130219, -0.0260139946, 0.00303123239, -0.00190939638, -0.0219536833, 0.012593966, -0.0127829807, 0.00774959428, -0.0306063462, -0.00980775245, 0.0137910573, 0.00446984265, -0.000142089018, -0.0136230448, 0.0174873415, 0.00408481341, 0.0172353219, -0.0131680099, 0.028590193, -0.0209456068, -0.00456084963, -0.00499838311, -0.0024344367, -0.0147571312, -0.00233117887, -0.00320449565, 0.0102907894, -0.026574038, -0.0159612242, 0.010213783, -0.0157792103, 0.0105428081, -0.015457185, 0.0114388773, -0.00369278318, -0.0216596611, -0.0247258954, 0.00110083446, -0.0170953106, 0.00208265963, -0.0104518011, 0.0121669332, -0.022835752, -0.0185514223, 0.00626548054, 0.0180893876, -0.0213096347, -0.000987075735, 0.00333925616, -0.00635998789, -0.0140780797, 0.00948572718, -0.0114038745, -0.0173333287, -0.0173753332, -0.0125169596, -0.0157372076, -0.00432633189, -0.0146591244, 0.00669251336, -0.00192339753, -0.00563893234, 0.00192339753, -0.00746257231, -0.00841464568, 0.0188034419, 0.0113058668, 0.0324824899, 0.00806461833, -0.00262695155, -0.0172633231, 0.0176973566, 0.0013020999, -0.0060554645, 0.00290172244, -0.00192864786, 0.00649999827, -0.00654200185, -0.0134130288, -0.00634598685, -0.0182994027, 0.0032797514, -0.021029612, -0.00262170099, -0.0283101704, 0.00431933114, -0.00141585863, -0.00358252483, 0.00428082841, 0.0291782375, -0.00880667567, 0.000405156083, -0.000581044587, -0.00881367549, 0.0329025239, -0.000419813441, -0.00279671443, -0.0197555143, -0.0168992952, 0.0190974642, -0.0109488396, 0.00179563765, 0.00262520136, -0.00110258453, -0.0142530929, 0.0280161481, -0.00620247563, -0.00380829209, -0.0069655343, -0.0159892254, -0.013980072, 0.00492837792, 0.00487237377, -0.00114458776, 0.0616047233, 0.0183414072, 0.00484787161, -0.0403230935, 0.0298502892, -0.0186774321, 0.00201265444, 0.0314184092, -0.0274701063, 0.0262100101, 0.0211976264, 0.0102277845, -0.00847765058, 0.0128879882, 0.00805061776, -0.00740656815, 0.0139870727, -0.00319749513, -0.00922670774, 0.0119149135, 0.00249919156, -0.0287862066, 0.0269800685, -0.00412681652, 0.00558642857, 0.00214566453, -0.00685002515, -0.0119079128, 0.00462035416, 0.0140920803, -0.00547792, 0.01982552, 0.00335150701, 0.00979375094, -0.0211416222, 0.00077268423, -0.00552692404, 0.0110468473, 0.00408831332, -0.00751857646, 0.0121319303, 0.0180053804, -0.00143861037, -0.0115158828, 0.0173193291, -0.0128529854, -0.00369628356, -0.0133080203, -0.00300848065, -0.0314184092, -0.00291747367, -0.0121039283, 0.00569843687, -0.00538341282, 0.00295072631, -0.00744157052, 0.0118309073, -0.00615347177, 0.017501343, 0.013980072, 0.0165212676, 0.001265347, -0.010843832, 0.000794998487, 0.0214076415, -0.0258179791, -0.01108885, 0.0037102846, -0.0013738554, 0.00142285915, 0.00777759636, -0.0147851342, 0.0188734476, -0.00869466644, -0.0208896026, 0.0104868039, 0.000885130372, 0.010843832, 0.0213376358, -0.0254959557, -2.03726563e-06, -0.00530640688, -0.00629348261, -0.0201475453, -0.00606596516, -0.000362715306, -0.0274701063, 0.00774259353, 0.00150861568, 0.0202035494, -0.00403230917, 0.026084, -0.0125169596, 0.00974474754, 0.00650349865, 0.024375869, -0.00610446837, -0.000218329238, 0.00357377413, 0.00116646441, 0.0162972491, -0.00207390916, -0.0075955824, -0.00397630502, -0.0125169596, 0.0260980017, 0.000196124412, 0.00802261569, 0.00927571114, 0.0171793178, 0.0162832495, -0.00293147471, 0.00795261, 0.0325945, -0.0119499164, 0.00572643895, -0.00342676276, 0.0194614921, 0.00799461268, 0.0100737726, -0.00659450563, -0.010122776, -0.00781959947, 0.01120786, 0.00110695988, -0.00195489987, 0.0308023617, 0.00154974381, 0.00699703675, 0.00852665398, 0.00100107677, -0.0119149135, 0.0142600937, -0.00120671757, 0.00257094717, 0.0223737154, 0.0104167992, -0.00270570745, 0.0213096347, 0.00679752138, 0.00165300176, -0.00049485045, 0.0119079128, -0.00823963154, -0.00592245441, 0.00420382246, -0.00653850148, 0.00794560928, 0.00151736639, 0.00664701, 0.0131400079, 0.00744857127, -0.0041548186, -0.0078266, 0.00404631, -0.00181488914, 0.015065155, -0.0290662292, 0.00358252483, -0.0117329, 0.016269248, -0.00710554468, 0.0257759765, -0.0100177685, 0.00368578266, -0.0338265933, -0.000911819923, -0.00839364342, 0.00951372925, -0.00332700508, 0.0149531467, 0.00844264776, 0.00763058523, 0.00612897, -0.0143651012, -0.00695853354, -0.00424932595, 0.00125397113, 0.000889068178, 0.00193739857, -0.0136300456, 0.00589795224, 0.00928271189, 0.0623887852, 0.0127479779, -0.0201895479, -0.0159752257, 0.00411281548, -0.0120619247, -0.00621997705, 0.00232417835, 0.00231367745, 0.00166525273, 0.0183134042, -0.0150091508, 0.0018183894, -0.00891168322, -0.0183834098, -0.00220691925, 0.0157372076, 0.0187614392, -0.0213096347, -0.000139573211, 0.00667151157, 0.0083096372, 0.0155271906, 0.000848377531, -0.00185164204, 0.0117749032, 0.00831663795, -0.0211276207]
08 Oct, 2021
jQWidgets jqxTree checkAll() Method 08 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for pc and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTree represents a jQuery widget that is used to display a hierarchical collection of items. To display the collection of items, we can populate from ‘UL’ or by using its ‘source’ property. The checkAll() method is used to check all items of the tree widget. It does not accept any parameter and does not return any value. Syntax: $('Selector').jqxTree('checkAll'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtree.js”></script> The below example illustrates the jQWidgets jqxTree checkAll() method. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"></script> <script type="text/javascript" src="jqwidgets/jqxtree.js"></script> <style> h1, h3 { text-align: center; } #jqxTree { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTree checkAll() Method </h3> <div id='jqxTree'> <ul> <li item-selected='true'> GeeksforGeeks </li> <li>Programming <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> </li> <li>Web Technology <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>jQuery</li> <li>PHP</li> </ul> </li> </ul> </div> <center> <input type="button" id="jqxBtn" value="Check All Items" style="padding: 5px 15px; margin-top: 20px;"> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTree').jqxTree({ width: '350px', height: '250px', checkboxes: true }); }); $("#jqxBtn").on('click', function() { $('#jqxTree').jqxTree('checkAll'); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtree/jquery-tree-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtree-checkall-method?ref=asr3
PHP
jQWidgets jqxTree checkAll() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree checkAll() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxComboBox checkAll() Method, PHP Tutorial, PHP
GeeksforGeeks
[-0.024598388, 0.053982228, -0.0138967754, 0.0290920436, 0.0493718535, -0.00308574084, 0.0409389548, 0.0235625114, 0.0234020241, 0.00322799128, -0.0080025, 0.00439152727, 0.0212427359, -0.00705781113, -0.00426386623, 0.0121387057, -0.01670531, -0.00542010739, -0.0212427359, -0.00413255813, 0.00556600513, 0.0161071289, -0.0238980781, 0.0224828683, -0.0130286831, 0.0185290352, 0.00908944, 0.0123867327, -0.0112487292, 0.00423468696, -0.0147940479, 0.00670400914, -0.00566813396, -0.0190250874, -0.0106797274, -0.0196086783, 0.000102755439, -0.00476356689, -0.0387504846, -0.0129265543, -0.00884870812, 0.036766272, 0.0270202924, -0.00200427254, -0.0231248178, 0.0454034284, 0.0203673486, -0.0333230831, -0.00487299031, 0.0320391804, 0.0131672863, 0.0392173566, 0.00287783635, 0.0193752423, 0.0232123565, 0.0012802541, -0.000547573087, 0.0183977261, 0.01253263, 0.0254737753, 0.0328853875, -0.0213302746, 0.00319698802, 0.0130213881, 0.0149837155, 0.0103295716, 0.0145095475, 0.0212135557, -0.0133788381, -0.0134007232, -0.00599275669, 0.0352489352, -0.0276768338, -0.0223223809, -0.00531068398, -0.0240439754, -0.0214324035, -0.0209801197, 0.0045702518, 0.0466581509, 0.014443893, -0.0221618917, -0.027457986, -0.0162967965, -0.00324075739, 0.00171977165, -0.0209947098, -0.0413182862, 0.0292963, 0.0223953295, -0.00147083332, -0.0116718328, 0.0132183507, 0.000320975407, 0.0230518691, -0.00251491531, -0.00335200457, -0.000202889278, -0.0369413495, 0.0323309749, 0.0417268, -0.0270786528, -0.0126347588, -0.0325060524, -0.0197108071, 0.00559153734, 0.0191126261, 0.0167199, 0.0178287253, -0.00672954088, 0.016355155, -0.0147940479, 0.011934449, -0.00320063531, -0.030434303, 0.0185290352, -0.0154505884, -0.0332939029, 0.0210968368, -0.00109605805, -0.0156840254, -0.00299273082, 0.00413255813, 0.0466873311, -0.0329729281, 0.0224099196, -0.00241643423, 0.0185873937, 0.0342276506, 0.00391735882, -0.0365328379, 0.0157132056, -0.0184560847, 0.0109204585, 0.03414011, 0.0112049598, 0.0313680507, 0.0124596814, -0.0279540401, -0.0338191353, -0.0552077703, -0.0228913818, 0.00707604876, 0.0446447618, 0.00215928908, 0.0264367014, 0.000375231175, 0.0231977683, -0.0108912792, 0.0179892126, 0.011701012, -6.13797092e-05, 0.00822864193, 0.0344319083, 0.0273704473, 0.0253570564, 0.00053936633, 0.0131162219, -0.0056353067, 0.0105484184, 0.000466645346, -0.0112122539, -0.00423103943, 0.0209947098, -0.0354240127, 0.0125253359, -0.00323710986, -0.0318932831, -0.0560539775, 0.0363577604, -0.0211843755, 0.0209071711, -0.00235260371, 0.0170116965, -0.0403845422, 0.00396112818, 0.020046372, -0.0413182862, 0.00868822075, -0.00811192393, -0.0137654673, -0.00941771, -0.0133788381, 0.0125545152, 0.0373206846, 0.0277351923, 0.0239564367, 0.00289972103, -0.0396550521, -0.0204548873, -0.0247588754, 0.0237375908, 0.064253442, 0.00919156801, 0.00523044, -0.0248901825, -0.0389547423, 0.0362702198, 0.00976057, -0.0244379, 0.021257326, -0.00898001622, -0.0109131634, 0.00230883434, 0.0250944402, 0.0448490158, 0.00850584824, -0.0491675958, 0.0253862366, -0.00933017116, -0.011693717, -0.00839642435, 0.00288695493, 0.00567907607, -0.00639397604, 0.0309887156, -0.0172597226, -0.0311637931, -0.0068535544, 0.0290045049, 0.00529609388, 0.033206366, -0.0233144853, 0.0290774535, -0.0868384391, 0.00256962702, 0.0279686283, -0.0381668918, -0.00833077077, 0.0332939029, -0.0353656523, -0.0164864641, -0.0372039676, 0.0075429217, 0.0168658, 0.0299090706, 0.00186931691, -0.0123283733, 0.00284500932, 0.035686627, 0.0269327536, -0.00086170953, -0.046570614, -0.0120073976, 0.0428356268, 0.0346361622, -0.0136706345, 0.00594169227, 0.0050371252, 0.0163259767, -0.0286981184, -0.00208451645, -0.00952713378, -0.0189959072, 0.0372915044, -0.00615689158, -0.00467967521, -0.00104864128, -0.00919156801, 0.00921345316, -0.00257145055, 0.0469499454, -0.0125034507, 0.00195503188, -0.00527056213, 0.0133277737, 0.0346069857, -0.0337316, -0.0135320313, -0.0308719985, 0.0389255621, 0.00223223795, 0.0223515593, 0.031047076, 0.00475262431, -0.026144905, -0.0505390354, -0.0101399049, 0.013254825, -0.00369851198, -0.00601464137, 0.020177681, 0.0446739383, 0.03988849, 0.0247442853, -0.0222348422, 0.00712346565, -0.0252403375, -0.0403261818, 0.0292671211, -0.0372331478, -0.00668577151, 0.0167344902, -0.0127441827, 0.0164864641, 0.000324166904, 0.0249193627, 0.0264658816, -0.0245108493, 0.00047827157, -0.0271661915, -0.0272391401, -0.0108839842, 0.0528442226, -0.000847119722, 0.0500721633, 0.0212281458, 0.00690461835, -0.00438423222, -0.0108037405, 0.00174986303, -0.0363869369, -0.0468040481, -0.0356574506, -0.0406179763, 0.025546724, 0.0309011769, 0.0260719564, 0.0154943578, -0.00219758716, -0.0141156223, -0.0209947098, -0.0154214092, 0.0398593098, 0.0385754071, 0.0171867739, -0.0348696, -0.00353255309, -0.00454472, -0.0362702198, -0.0178287253, 0.0222932, 0.0332647227, 0.00289242598, 0.0201630909, -0.0475335382, 0.010738086, -0.0346361622, 0.0222202521, 0.00536174839, -0.0305218417, 0.00569731323, -0.00536904298, -0.0398009494, 0.0186749324, -0.0252111591, 0.00617148168, -0.0131599912, 0.0281291176, 0.0222494304, 0.00136870472, 0.00796602573, 0.0220159944, 0.00493499683, 0.0209801197, 0.00707240123, -0.0269181635, -0.00838183518, -0.045607686, -0.0023872545, 0.0304051246, -0.00343407202, 0.0220743529, 0.00988458376, 0.023883488, -0.0326227732, -0.00632467447, -0.00218117377, -0.0176536478, 0.00906026, -0.0169095676, -0.00486569526, -0.028304195, 0.0413182862, -0.05228981, -0.0103587518, -0.0159612317, -0.00449730316, -0.0209509395, -0.00711252308, -0.0122773089, 0.0271807797, 0.00478180405, 0.0133642489, -0.0461912788, -0.00223588548, 0.0163843352, -0.0252257492, -0.0275601149, 0.0128390156, -0.0357158072, 0.0606935285, 0.00206627906, -0.00388817932, 0.00901649054, -0.0294276085, 0.0196816288, 0.0164426938, 0.00188573042, -0.0300549697, 0.0440903492, -0.0284646824, -0.0317473859, -0.0159758218, -0.0407638773, -0.0115332296, -0.0178724937, 0.00771799963, 0.00336112315, 0.0387504846, 0.0156694353, 0.0202944, -0.0218992755, 0.0281291176, 0.0112560233, 0.0330021083, -0.0064122132, 0.0561706945, -0.00287965988, -0.0292087607, -0.0123064891, -0.0226141755, -0.00577026233, -0.00228877342, -0.0270202924, -0.0276330635, -0.00604746817, 0.00528150424, 0.027457986, -0.00889977254, 0.0135101462, -0.00336477044, 0.0191563964, 0.0192585234, 0.00500065088, -3.61325292e-05, 0.0543907396, -0.0117593715, -0.0214615818, -0.0346069857, 0.0149399461, 0.0206591431, -0.00712711271, -0.0495469309, -0.0608102493, -0.025546724, -0.0422228537, -0.0171867739, -0.00635020668, 0.0262616239, -0.0139478398, -0.0387213044, -0.0376416594, 8.25235038e-05, -0.0253716465, -0.0125545152, 0.00622254563, -0.000506539305, 0.00144621299, 0.013488262, 0.00889247749, 0.031047076, -0.0208342206, 0.00332282484, -0.0107089067, -0.0568710044, 0.021490762, 0.0180038027, -0.00133223028, 0.00450824527, -0.0293546598, -0.0213302746, 0.0685136616, 0.0297923535, 0.0159758218, -0.00635750126, 0.0266847275, -0.0097095063, -0.015042074, 0.0194336, 0.025196569, 0.0282750148, 0.0130797476, 0.00814839825, 0.0272099599, -0.00110791228, 0.0279686283, 0.00582862133, -0.0108402148, 0.0102201486, 0.0139624299, 0.0216658395, -0.0487007238, -0.0188646, 0.0054784664, 0.0212865043, -0.0234749727, -0.03414011, 0.00846937392, 0.00636479631, -0.00206627906, 0.0199880134, -0.0409389548, 0.0564041324, 0.0191855747, -0.0324185155, 0.00513560651, -0.00860068202, 0.0110590616, -0.0509475507, -0.0173472613, -0.0203819387, -0.019229345, -0.00834536087, 0.00183101872, -0.0105775986, -0.0307261, -0.0170846451, 0.017201364, -0.00978245493, 0.0123356683, -0.0276768338, 0.0164864641, -0.0223661494, 0.0105119441, 0.0203089882, -0.0223223809, 0.00822134688, -0.0287856571, -0.021972226, -0.0305802021, 0.00859338697, 0.0203965269, 0.0288148373, 0.00265898951, 0.00900919549, -0.0230081, -0.0289169662, -0.0166761316, -0.00962196756, -0.012051167, 0.00215928908, -0.0424854718, -0.00917697884, 0.00250032544, 0.027457986, 0.000284956855, -0.00102949212, 0.0269619338, 0.0419310592, 0.0107964454, -0.000240959518, 0.0438277312, 0.000100190831, -0.00951983873, -0.0209217593, -0.019229345, -0.0284063239, 0.00176171726, -0.0163259767, -0.000230701073, -0.0332355425, 0.0331480056, 0.00329182157, 0.0222494304, -0.0364452973, 0.00355079048, 0.0409097746, -0.00903108064, 0.00483286846, 0.0171284154, -0.00571190333, 0.0211114269, -0.00117265445, 0.00643409789, 0.0223223809, 0.0731240287, -0.0189521387, -0.0101034306, -0.0303175859, 0.00212646206, -0.0185728036, 0.028887786, -0.00365839014, -0.00887059327, -0.012780657, -0.00833806582, 0.00050425966, -0.0170992352, 0.0162238479, -0.0095636081, 0.021724198, 0.0178433135, 0.00297996472, 0.016355155, -0.00605111569, -0.0191418063, -0.00254044728, 0.0143636493, -0.00546387676, 0.014808638, 0.0117228972, 0.0618023537, 0.00320245908, 0.0255759042, 0.0188208297, 0.0209071711, -0.00171703601, 0.0141885718, 0.0214615818, -0.0277643725, -0.0170992352, 0.00451554032, -0.00766693521, -0.016238438, -0.0175223388, -0.007761769, 0.020411117, -0.025546724, -0.00358361751, 0.0131162219, -0.0431274213, 0.00750644738, 0.0307261, 0.0274288077, -0.00589792291, -0.0405304395, -0.0144147137, -0.0103076873, -0.0436818339, 0.0132402349, -0.0200901423, 0.0295151472, -0.00712346565, 0.0203381684, 0.0191855747, -0.0152025623, 0.0510350876, -0.0106359581, 0.0724820793, 0.0320683606, 0.0258093402, -0.015888283, 0.0861964822, -0.0118031409, -0.00895083696, -0.00611312222, 0.0209509395, 0.0230664592, -0.0236646403, -0.0043477579, 0.0186895225, 0.0309011769, 0.0233144853, -0.00433681533, 0.0215783, -0.00109423429, -0.00708334334, -0.010380636, 0.0123867327, -0.0201922711, -0.0141666867, 0.0443821438, 0.00709793344, 0.00505901, -0.00630643731, 0.0323309749, 0.0537487902, 0.0025057965, 0.0168803874, 0.0101107247, -0.00758669106, -0.0106359581, 0.0134007232, -0.00607300038, -0.0123064891, -0.0283771437, -0.0287564788, -0.00270093512, 0.00376051851, -0.00540916482, 0.0143636493, 0.0456952266, -0.015042074, -0.000990282, -0.00457754685, -0.0306969192, 0.00884870812, 0.0177557748, 0.00825052708, -0.00188208302, -0.00780553836, 0.0320683606, 0.021622071, -0.0207175035, 0.000969309243, -0.00221400079, -0.00617148168, -0.0111393053, -0.01397702, -0.00430763559, -0.00135958614, -0.0125107458, 0.0290774535, -0.0580673665, 0.0311346147, -0.0014206809, 0.0325644128, -0.0137508782, -0.00768882, 0.0138457119, -0.00234530889, 0.00496417657, 0.0527275056, 0.0248901825, 0.000990282, 0.00631373189, -0.0327394903, -0.0191563964, -0.000993017689, 0.00502253557, 0.0136925187, -0.0085350275, -0.0216366593, -0.0383711495, -0.0288731959, -0.00619701389, -0.0170554649, 0.0135758007, 0.00441705901, 0.00857879687, 0.0115551148, 0.00985540356, -0.0151004335, -0.0271661915, 0.00140700291, -0.0134226074, -0.0177120063, -0.0156986155, -0.00914050359, -0.00233254279, -0.00568637112, -0.0143490592, 0.025546724, -0.00127934234, -0.00714899739, -0.00469791284, -0.00417268043, 0.00337206549, -0.015523538, 0.0143782394, -0.00463590585, 0.0188937783, -0.00658364315, -0.0144074187, 0.0214178134, -0.00796602573, 0.023883488, 0.014451188, 0.035219755, -0.0311346147, 0.0270348825, -0.0199004747, 0.0234603845, 0.00262616226, 0.011934449, -0.0563165918, -0.00923533738, 0.0108037405, -0.0197253972, 0.0191855747, 0.00159211096, 0.0291358121, 0.00973868556, 0.00756480638, -0.00247114594, -0.0113946265, -0.0112706134, -0.0056097745, 0.000502435898, -0.0200901423, -0.00720735686, 0.0386921242, -0.0177265964, 0.0279248599, -0.0189083684, 0.0181497, 0.0275017563, 0.0377000198, 0.024467079, 0.00422009686, -0.00847666897, 0.010862099, 0.0011918036, -0.0118323201, -0.023650052, 0.010030481, 0.0263637528, 0.0244524889, -0.0129484395, 0.00312768645, 0.00175259868, 0.020775862, 0.0228476133, 0.0269181635, 0.00510277925, -0.0235333331, 0.0132183507, -0.00236172229, 0.0082870014, -0.0380793549, -0.00924263243, -0.00870281, 0.0126347588, -0.0136998137, -0.0112633184, 0.00744808838, -0.0154651785, 0.00520855514, 0.0114238067, -0.0218700971, 0.00213375688, 0.00397207076, -0.0227163043, -0.0193606522, 0.0586801395, 0.0284209121, 0.0130432732, -0.00825052708, -0.0158445127, -0.0139113655, 0.0162092578, -0.044528041, 0.0197253972, 0.00252585765, 0.0051684333, 0.00474532973, 0.0127004134, 0.0205278359, 0.0367370918, -0.000568545889, -0.0106359581, -0.0151442029, 0.00325717079, -0.0123064891, 0.0448198393, -0.00328817405, -0.00131764053, 0.0404429, -0.00155472464, 0.00985540356, -0.0122043602, 0.0124523863, 0.020542426, 0.0268889852, 0.0365911946, -0.0170262866, 0.0137873525, 0.0309595373, 0.00491311215, 0.00255686091, -0.0111757796, 0.00434411038, -0.00717817713, 0.0226433557, 0.0230810493, 8.73677709e-05, -0.0507141128, -0.0119271539, 0.00204621814, -0.00406690408, -0.0130651575, 0.00575931976, 0.0219284557, -0.0227454845, -0.0116572427, -0.0545366369, -0.00701768929, 0.0273850374, -0.0312513337, 0.0246567465, -0.0276914239, -0.0548284352, -0.0296026859, -0.00936664548, 0.0316306651, -0.0266701374, -0.0363577604, 0.0182810072, -0.00546387676, -0.00602923101, -0.0135028511, -0.00389547413, -0.0503347777, 0.00071581162, 0.00731678028, -0.0131672863, -0.0251382105, -0.0260427762, 0.0159174614, 0.00992105808, -0.0243065916, -0.0153484596, 0.00887788739, 0.0118615, -0.00306385616, 0.0107089067, 0.0318057425, -0.000360185455, -0.00273558591, 0.0212865043, 0.000201293515, 0.0183977261, -0.0146919191, 0.0176828261, -0.0161363091, -0.03414011, 0.0179016739, -0.017201364, -0.00357632246, 0.00987728871, -0.0141010331, 0.0334398, 0.0338191353, -0.0118469102, -0.0223077908, -0.0242628232, 0.000100646757, -0.0289607346, 8.67978597e-05, -0.00784201268, -0.0108402148, 0.0263053924, -0.0132985944, -0.00425292412, -0.00592710264, 0.0404137224, 0.021855507, -0.0468915887, -0.0135903899, 0.0323893353, 0.0151004335, -0.01253263, -0.000174735542, -0.00373133901, -0.00347784138, -0.0160487704, -0.016005, 0.00276841293, 0.036036782, 0.00768152485, -0.00779824331, 0.0257218014, 0.00325717079, 0.00140153174, 0.00277388399, -0.0197983459, 0.0100085968, 0.0185144451, -8.58432543e-07, -0.0262470338, -0.0342568308, -0.00283041946, -0.00401948718, 0.0113654472, -0.0168949775, -0.0152171515, -0.0224536881, -0.00160031766, 0.0112779085, 0.0241315141, 0.0202068612, 0.0440028086, -0.00300367316, -0.00785660278, 0.0164864641, 0.0019039677, -0.0416392647, 0.0097095063, 0.0219576359, 0.00459213648, 0.00266263681, -0.0110225873, 0.000812924933, 0.0498387255, -0.01360498, 0.0348404199, -0.00532892114, 0.0168074388, 0.0231831782, 0.0176828261, -0.0120876422, 0.015158793, 0.0215491205, -0.0105192391, 0.0126493489, 0.0116864229, -0.0250798501, -0.00873928517, 0.0213010944, -0.0258239303, -0.0393048972, 0.0119125647, 0.0266847275, 0.0263637528, -0.00100031251, -0.0083015915, 0.0215783, 0.021009298, 0.00149545353, -0.0461329184, -0.0168803874, -0.0223807395, 0.02865435, 0.0432733186, 0.0399760269, 0.0128609007, 0.0272974987, 0.0348696, -0.00247479323, -0.00620066095, 0.00477815652, 0.00127843046, -0.000208474434, 0.00651069405, 0.0200609621, -0.0260135978, -0.00729489559, 0.0206007846, 0.0115040503, -0.00822134688, 0.0121168215, -0.018733291, 0.0326811299, -0.0241752844, -0.0199296549, -0.0106432522, -0.0384878702, 0.000932378811, 0.00011107618, 0.0333814435, -0.0323309749, -0.0202798098, 0.00975327566, 0.000962014368, 0.0165885929, -0.0139113655, -0.00549670355, -0.00950524863, -0.0020644553, 0.0118687954, -0.0197837558, 0.00579579454, -0.0173326712, 0.00103769894, 0.000493317319, -0.00852773245, -0.0226871241, 0.0287418887, 0.00911132433, 0.0111393053, -0.0279248599, -0.0171721838, 0.0141739817, -0.00768882, 0.00229242095, -0.00160943635, -0.00697756745, -0.0098408144, 0.0124669764, 0.0264367014, -0.00772529421, 0.0243941303, -0.00591251301, 0.0252841078, -0.0155673074, 0.0183101874, 0.0100596612, -0.0149107659, -0.0236646403, 0.00504077272, -0.0264658816, -0.0259698275, 0.0277060121, -0.0177703649, -0.0165885929, -0.0043331678, -0.00494593894, 0.001089675, 0.00505536236, -0.00671130372, -0.0168074388, -0.000788760546, 0.0217096098, -0.010745381, -0.0368246324, -0.0181934685, 0.0714899749, -0.0173180811, 0.00700674718, -0.00976057, -0.0303175859, -0.033060465, -0.0154214092, 0.0204402972, 0.00880493876, -0.018383136, 0.032126721, 0.00666388683, 0.00294166664, 0.00678425282, 0.0019933302, -0.00111064781, -0.0134299025, 0.00694474066, 0.0313972309, -0.0208342206, -0.000661099912, 0.0203089882, -0.0077471789, 0.00725477375, 0.0168658, 0.00667847693, 0.0039976025, -0.0124013219, -0.0362702198, 0.00803897437, 0.0328853875, 0.0138530061, 0.0172743127, -0.00628455263, 0.00671859877, 0.0385462269, -0.0064122132, 0.0024000206, -0.00862256624, -0.0218700971, 0.000862165471, -0.0183247775, -0.0021246383, 0.0128317215, -0.000837545202, 0.02506526, -0.0144949574, -0.000810189347, -0.0277206022, 0.0139186606, -0.00515749119, -0.00732772239, -0.0196524486, 0.0117520764, 0.0101763792, 0.0114165116, -0.0327394903, -0.0345486253, 0.0161654875, -0.0493426733, -0.00626996253, 0.00463225879, 0.00599640422, -0.0231394079, 0.0230081, 0.00503347768, -0.0275309347, 0.0217096098, -0.0328562073, 0.00325352349, 0.0103514567, 0.00335565186, -0.00151186704, 0.00378240319, -0.0171138253, 0.0111174211, 0.0100815454, -0.00145715533, -0.00206263177, -0.00144986052, -0.0104827648, 0.0350154974, -0.0214615818, -0.017668236, -0.0181788802, 0.0111466, -0.00574837765, -0.0133861331, -0.0217096098, 0.00859338697, -0.015523538, -0.00637938594, -0.00474168221, -0.00311856787, -0.00478545157, -0.00811192393, 0.00941041484, 0.0284063239, 0.00483286846, -0.000817940163, 0.00849125814, 0.0223515593, 0.0214178134, 0.00520490808, -0.00574473, -0.00406325655, 0.0191418063, -0.00657999562, 0.0145387268, 0.0174056198, 0.0295880958, -0.0124523863, -0.0111830747, -0.00714170281, -0.00394289102, 0.00923533738, -0.0021374044, -0.00669306656, -0.0111684846, 0.00586874317, -0.000611403433, -0.00293619535, -0.0125034507, 0.00825052708, -0.0150712542, -0.000334881304, 0.0127295926, 0.00467967521, -0.00835995, 0.00412526354, -0.00426021917, 0.00416173786, -0.0343443677, -0.0113727422, -0.0144001236, 0.0171721838, -0.0106651373, 0.0276476536, 0.00488758, 0.0232269466, -0.0155818965, -0.0228476133, 0.0107599711, 0.0289169662, -0.013254825, 0.0145022525, -0.00224865158, -0.00235989876, 0.00206810283, 0.00870281, -0.0130505683, -0.0280415788, 0.00468697026, -0.00117083068, 0.0257947501, -0.00960008241, -0.0110736517, 0.0157423839, 0.0158007443, -0.00657270104, -0.000755021698, 0.00903108064, 0.00704686902, -0.0064705722, -0.0253862366, 0.00533256866, 0.00160122954, 0.000119339929, 0.015756974, -0.0148378173, -0.00461766869, 0.00506630493, 0.0209071711, -0.0230081, -0.00416538538, 0.00946147926, 0.0303467643, 0.00227600732, 0.0133423638, -9.5004616e-05, -0.00875387434, 0.00555871055, -0.0133788381, -0.0114821652, -0.0126931183, -0.0219284557, -0.00386629463, -0.023387434, 0.00280124, 0.00998671167, -0.0113946265, 0.00770340953, 0.0113946265, -0.0189521387, 0.0356282704, 0.000769155566, -0.0116061782, -6.24625391e-05, -0.0128390156, 0.0228622016, -0.0238105394, 0.0118760895, -0.000650613511, 0.00946147926, 0.00229242095, -0.0028833074, 0.00190943887, 0.00680613751, 0.0129849138, -0.00930828694, 0.0215928908, -0.0081265131, 0.00521220267, -0.0361243226, -0.000446128455, 0.00747726765, 0.00219029235, -0.0224974584, 0.0249923114, 0.0173034929, 0.00807545, -0.00133770145, -0.010738086, 0.0115040503, 0.0126639381, -0.0184123162, 0.0138530061, -0.0154214092, -0.00648880936, 0.00876846444, -0.0101399049, 0.0177265964, 0.0146992141, -0.000554867962, 0.0129484395, 0.000461402145, -0.00113891554, -0.0276768338, -0.0174639802, 0.00177995453, 0.00643774541, -0.00276841293, -0.0050371252, 0.0316014886, 0.0191272162, -8.77097191e-05, 0.0146554448, -0.0084329, -0.00890706759, 0.0117885508, 0.0147210993, -0.00140335551, 0.00462496374, -0.0306385607, 0.0288002472, -0.001148946, -0.0127150025, -0.0257218014, -0.00452648243, -0.0280999374, 0.017551519, 0.0035580853, -0.0149545353, -0.00333923846, -0.0477086157, 0.0158153325, -0.0109131634, -0.0141593916, 0.00365109509, -0.0257655699, 0.0003275864, 0.0250214916, 0.021490762, 0.0081265131, 0.00631008437, -0.0228913818, 0.017201364, -0.00473438716, 0.00558789, -0.0139551349, -0.0157277938, 0.00585050602, 0.00945418421, -0.0288586058, -0.0155818965, 0.0128171314, 0.00707240123, 0.0218117367, 0.0116499476, -0.00293254806, 0.023387434, 0.0414933637, -0.0341984704, 0.00729854312, 0.00249667792, 0.0425438322, 0.0219576359, -0.0107234968, -0.00725112623, 0.0067076562, -0.00269911136, -0.0082724113, 0.00110244111, -0.0242628232, 0.0135247363, 0.0224974584, 0.0395675115, -0.0146700349, 0.0312513337, -0.022088943, -0.00412526354, -0.0243795402, -0.00416903291, 0.0138092367, -0.0187187, 0.00645598257, 0.00128116598, 0.023650052, -0.0278373212, -0.00680978503, -0.0116864229, -0.0179892126, -0.0446739383, -0.0171721838, 0.0314555876, -0.00890706759, -0.00664200215, -0.016121719, -0.00595263485, -0.0325644128, 0.0186749324, 0.00724383118, -0.031047076, 0.0168658, 0.0112560233, 0.00180913403, 0.00419821218, -0.0116645377, -0.00257327431, 0.00707240123, -0.0123721426, 0.02865435, -0.0195357297, 0.0164135154, 0.0154943578, 0.0161800776, -0.00438787974, -0.00218299753, -0.000874931517, -0.0207466818, -0.0182372387, -0.0121897701, -0.0100888405, -0.000495596963, 0.00692285597, 0.0437693745, 0.016603183, 0.0252695177, 0.0117593715, 0.0295297373, -0.0196816288, 0.0343151875, 0.0216512494, 0.00635020668, 0.00614594948, -0.0280707572, -0.00768152485, 0.00864445139, 0.016603183, 0.00648151478, 0.0166323613, 0.0211406071, 0.0173326712, -0.017070055, -0.00187661184, 0.0237084106, -0.000331461808, 0.0104754698, -0.0106140729, 0.00889977254, -0.031047076, 0.00312768645, 0.00737513928, -0.0072474787, 0.0236354619, -0.00160031766, 0.00876846444, 0.00637938594, -0.0169387478, -0.0168220289, 0.00715264492, -0.00844748877, 0.000885417918, -0.000477359717, -0.0148524074, 0.0329145677, -0.0314264111, 0.0157132056, -0.0311637931, 0.000692103233, -0.00285959896, 0.0137508782, -0.00610218, 0.0118396152, 0.0243503619, -0.00106961408, -0.0294276085, -0.0283771437, -0.00326811313, -0.0127587719, -0.0100961355, 0.00391735882, 0.00337024173, -0.0307261, 0.0290045049, 0.0262324437, 0.00123192545, 0.0409973115, -0.00309303566, -0.01324753, 0.00826511625, -0.0360076055, -0.0137435831, -0.0200901423, 0.00725842081, -0.0214761719, -0.00224135653, -0.00493864436, -0.000851223129, 0.00673683593, 0.00200427254, -0.00241096294, -0.000243923074, 0.00173253764, -0.00591980759, -0.000186703735, -0.0106870215, 0.0247296952, 0.0107964454, 0.022570407, -0.0248172339, 0.00622254563, 0.033206366, 0.00434046285, 0.017201364, -0.00821405184, 0.0106432522, -0.0110371765, -0.0157715641, -0.00408878876, 0.00206263177, -0.0262908041, -0.0196232684, 0.0273558572, 0.00726571586, 0.0032061066, -0.010504649, -0.0191709846, 0.00291066337, -0.00520490808, 0.00035790581, -0.0113946265, -0.0126347588, 0.01599041, 0.026144905, 0.00256233197, -0.00158390414, 0.0108402148, -0.0064122132, -0.0129338494, 0.0206591431, -0.0235041529, 0.0177120063, 0.0163989253, -0.00462496374, 0.0136341592, -0.00718547218, 0.0161363091, -0.0172159541, -0.00671130372, 0.00578120444, 0.030084148, 0.0102128536, 0.0136852236, 0.0193752423, 0.00530703645, 0.00895813201, 0.00146809767, -0.000713076035, 0.00294896145, 0.0213010944, 0.0176098775, -0.0149837155, 0.0109350486, 0.0107234968, 0.00549670355, -0.0010176379, 0.0121022314, -0.0245254394, -0.038196072, 0.0118031409, -0.00394289102, 0.000440201344, 0.00946877431, 0.00862986129, -0.000928275462, -0.00118450867, 0.0130651575, 0.0111830747, -0.00317692687, 0.00211734348, -0.0110371765, -0.0262032654, 0.0168512091, 0.0197253972, -0.00245837984, -0.0104462905, -0.0204402972, 0.0095636081, -0.00379699306, 0.0163113866, -0.00489852251, 0.0162238479, -0.0235625114, -0.0101909693, 0.0140134944, 0.0178579036, -0.0110809458, 0.021009298, -0.00442435406, 0.0043331678, 0.014801343, -0.00876116939, -0.00362009183, 0.000521129114, -0.0277643725, -0.00589792291, -0.00562071707, -0.00411067344, 0.0150858434, -0.00698851, 0.00785660278, -0.0159758218, -0.00257145055, 0.010621368, -0.0118031409, -0.00148359942, -0.00349060749, -0.0225266367, -0.00276294164, 0.0137144038, 0.00430763559, -0.00110791228, 0.00866633561, 0.00208269269, -0.00043336238, -0.00270640617, 0.00296355132, 0.00247114594, 0.00769611495, 0.0155381272, -0.0231685881, 0.00898731127, -0.00360185467, 0.00412161602, -0.0124815665, -0.00425292412, 0.0108183296, 0.00752103701, -0.0248610042, 0.0141958669, 0.00855691265, 0.0195940901, 0.00477086147, 0.0370580703, 0.0313096903, -0.0132767102, 0.0044644759, -0.00137326412, -0.0417559817, 0.0188500099, 0.0112924986, -0.0100815454, 0.0118615, -0.0327394903, 0.022570407, 0.00868822075, 0.0123940278, -0.010380636, 0.00558059523, -0.00850584824, 0.00106140727, -0.0364161171, -0.00265898951, -0.0127368877, -0.0221764818, -0.0425730087, 0.00686449651, 0.0261011366, 0.00793684646, -0.0186895225, -0.00767423, 0.00337936031, -0.00261157262, -0.0123137832, 0.00186475762, 0.00404866692, -0.000491949497, -0.0219138656, -0.00904567074, -0.0080243852, -0.0146627398, 0.00941771, 0.0180913415, -0.00140426739, -0.00884141307, -0.00148542307, 0.00778365368, -0.00407784665, 0.0053726905, 0.0170408767, 0.00507724704, -0.0179454423, 0.0127514768, 0.0114019215, 0.0110225873, 0.00678790035, -0.00667847693, -0.0305218417, 0.0103368666, -0.00832347572, 0.0085350275, -0.015756974, -0.00438058469, -0.00255321339, -0.00586144859, 0.00426386623, -0.00186749327, -0.00361462077, -0.00554776797, -0.00633196905, 0.0100742504, -0.00581038417, 0.00155381276, -0.0124961557, 0.00648880936, 0.00702498434, 0.0233582556, -0.00268634525, -0.00766693521, 0.00508089457, 0.00568637112, -0.0271224212, 0.00791496132, 0.0448198393, -0.0328270309, 0.0205570161, 0.00709428592, -0.0108912792, -0.002239533, 0.0251527987, 0.00126475247, -0.00238907826, 0.0208342206, -0.00351431593, -0.007761769, 0.0108402148, 0.00849855319, -0.022439098, -0.0274288077, 0.0255175438, -0.000967485539, -0.0288731959, 0.00612406479, -0.000388909102, 0.0163113866, 0.0286835283, -0.00266446057, 0.00146353838, -0.00918427296, 0.00163040916, 0.00811921898, -0.0154651785, -0.0051684333, 0.0254008267, -0.0173326712, -0.0100888405, 0.000497876608, -0.00163679221, -0.0028541279, 0.0179600324, 0.0136560444, -0.0139843142, -0.0168220289, 0.0207466818, -0.00209910609, 0.00378969824, 0.00871010497, -0.00551129365, -0.00315139489, 0.0222786106, 0.00784201268, -0.0107818553, 0.00950524863, -0.000541646, 0.00193314732, 0.0179600324, 0.00506630493, -0.00657270104, -0.00135685061, -0.00478545157, -0.0182664189, -0.0164135154, 0.0141885718, -0.0283187833, -0.0140718529, 0.00976057, 0.0153046902, 0.00727665843, 0.0161363091, -0.00323346234, -0.0182226487, 0.00919886306, -0.0133423638, -0.037379045, -0.0130286831, -0.0055514155, -0.032593593, 0.0188500099, -0.0290920436, -0.00469061779, 0.03556991, -0.0067806053, -0.0241606943, -1.01373398e-05, -0.00637938594, 0.00273558591, 0.00201703864, 0.00289789727, 0.00292890053, 0.0292963, 0.0166761316, -0.00857879687, -0.0185582135, -0.0011699188, 0.00513925403, 0.0124377972, -0.00771799963, 0.00143709441, 0.0180475712, -0.0276038852, -0.00603652606, -0.00394289102, -0.018383136, 0.0136779286, -0.00200062501, 0.017784955, -0.011343562, 0.00846207887, 0.00329182157, -0.00662376499, -0.0240585655, -0.00120730523, -0.0201339107, -0.0074845627, -0.00880493876, 0.00697756745, 0.0225995854, 0.00314774737, 0.0197983459, -0.0098408144, -0.0184123162, 0.00707969582, -0.00445353379, -0.00679154787, 0.0271661915, -0.00725112623, -0.0188646, 0.0010687022, -0.0137800574, 0.0173472613, 0.00353984791, -0.00511736935, 0.00356720388, 0.00618607132, -0.0208342206, 0.00631373189, 0.00847666897, 0.0139551349, -0.0137873525, -0.0311637931, 0.0161071289, 0.0222348422, 0.017916264, 0.0104754698, -0.0156256668, 0.000550764613, -0.000683440536, 0.00854232255, 0.00448636059, 0.0123794377, 0.00113253249, -0.0054310495, -0.00592345512, -0.00274288072, 0.00251673884, 0.00719276676, 0.0179016739, -0.00862256624, 0.00567178102, -0.00367115624, -0.0136852236, 0.00300002587, 0.00811192393, 0.0223807395, -0.0151442029, 0.00516478578, -0.0180038027, 0.00110152923, -0.0433608592, 0.0245837979, -0.0184706748, 0.0108839842, 0.0212865043, 0.00014361825, 0.00258421665, 0.00820675772, -0.0141229173, 0.00882682391, -0.0116061782, 0.0175077487, -0.0127879521, -0.0202944, -0.0109788179, -0.00186384574, 0.0127222976, 0.0184560847, -0.00230153953, 0.0261303149, 0.0117520764, 0.00161946681, 0.0237667691, -0.0110517666, -0.0134444926, -0.00302008679, -0.00436599506, 0.00721829897, -0.0267430861, -0.00293437159, 0.000646054163, 0.021009298, -0.00438787974, -0.0152901011, 0.00252038636, -0.0078930771, -0.00726936338, -0.00423468696, -0.0289315563, -0.0248026438, 0.0174639802, 0.00310215424, 0.0096803261, 0.0223369692, 0.00877575949, 0.00118177303, 0.00194591342, 0.00292707677, 0.00491311215, 0.00255138963, -0.0105921878, 0.00252950494, -0.00599275669, 0.0199880134, 0.0036766273, 0.0228622016, -0.0215491205, -0.0139040705, -0.00321157766, 0.0100596612, -0.00622619316, 0.0122189503, -0.00292160572, 0.00548211392, -0.004774509, -0.0105703035, -0.0152609209, -0.000942865212, 0.00960737746, 0.0181788802, 0.0118833845, -0.000629184709, 0.00931558106, -0.00620430848, -0.00442070654, 0.0139186606, 0.00623713573, -0.00532162609, 0.0108329197, -0.0121387057, 0.0246567465, 0.00133314217, -0.0199588332, -0.00687908661, -0.00114256295, -0.011102831, -0.000789672427, 0.00791496132, -0.00205533672, 0.0234895628, 0.00608759047, -0.0238688979, 0.0260573663, 0.031047076, -0.0126639381, -0.0120001035, -0.0117593715, 0.0114092166, -0.0239856169, -0.00101581414, 0.00647421973, -0.000771891151, 0.00181642896, -0.0374374, -0.0228184331, -0.0082578212, 0.0140207894, 0.00849125814, 0.0141593916, 0.0145168416, 0.0147648687, 0.00485110562, -0.000661099912, -0.000728121726, -0.00275382306, 0.00506995246, -0.00623713573, -0.0208050422, -0.0214324035, 0.0172889028, -0.00975327566, -0.019098036, 0.01360498, -0.013969725, 0.00173618516, -0.000356993958, -0.00225959392, -0.000471432606, 0.00296719884, -0.000170860134, -0.00644504, 0.00695203524, -0.0106359581, -0.00409973133, 0.00340124499, -0.00337571278, -0.0199004747, -0.0110007022, -0.00310033048, -0.0081411032, -0.0107599711, -0.0123283733, 0.0127514768, -0.0031933405, 0.00621160353, 0.00759398611, -0.0188646, -0.000955631316, 0.00964385178, -0.0181934685, 0.00987728871, -0.00265351823, 0.00797332078, 0.00908944, -0.00772529421, 0.0208050422, -0.00821405184, 0.00181642896, -0.00235442747, 0.00015627034, -0.0269765239, 0.00250944402, 0.00423833448, -0.0154068191, -0.00347784138, 0.0198712945, -0.021126017, 0.0166323613, -0.00502618309, 0.0105338292, 0.00408149417, 0.0231102295, 0.00635750126, 0.016836619, -0.00232160045, -0.0185582135, -0.0256488528, 0.0284063239, -0.0105630085, 0.0215637106, 0.00180822227, 0.00636479631, -0.0160633605, 0.000582223816, 0.0181059297, -0.00952713378, 0.004479066, -0.00920615811, 0.00567542855, -0.014086443, -0.00121004076, 0.0147575736, 0.0127077075, 0.00516478578, -0.00993564725, -0.0106140729, 0.011701012, 0.0217533782, 0.00765964, 0.0247442853, 0.00350702088, -0.0204548873, -0.0176974162, 0.0128754908, 0.0100158919, -0.00254774233, -0.00846207887, 0.031047076, -0.00539092766, 0.00204621814, -0.00521220267, -0.00277935527, -0.0054784664, 0.00341218733, -0.00281947711, 0.00941771, 0.00188025925, 0.00709063839, -0.015275511, 0.0222348422, 0.0193752423, -0.00216840766, -0.00563165918, -0.0305510219, 0.00286507024, -0.0200609621, 0.0335565209, -0.00119453913, -0.0227454845, 0.00741890864, 0.0171575937, -0.013721698, 0.0123283733, 0.0127514768, 0.00154560595, 0.00482922094, 0.0178724937, -0.0235625114, 0.00730219, 0.0259260591, 0.00300002587, -0.010738086, -0.00548211392, -0.0117739616, 0.0101909693, -0.00679519493, -0.00493134931, 0.00740431901, -0.0258093402, -0.0215345323, 0.0140353786, 0.0135466205, 0.0122773089, 0.00171794789, 0.00974598061, -0.00697756745, -0.00878305454, -0.000199127855, -0.00741161359, 0.0126493489, 0.0176098775, 0.0134153124, 0.00250944402, 0.0138675962, -0.016238438, 0.0107818553, -0.00436234754, 0.0107891504, 0.00499335583, 0.0294713769, 0.00212646206, -0.00773258926, 0.0141448025, -0.0186749324, 0.00211004843, 0.0157715641, 0.0073058377, 0.00332100107, 0.0168220289, -0.000908214482, -0.0133423638, 0.0122116553, -0.00249667792, -0.00685720192, 0.00763775548, -0.0100742504, 0.0149545353, -0.0227163043, -0.00362738688, 0.0109496377, -0.000854414655, -0.00359273609, 0.0138384169, -0.0119782183, 0.0172451325, -0.0119271539, 0.01324753, 0.0200901423, -0.020542426, -0.0227600746, 0.0116353584, 0.0160925388, -0.00981892925, 0.00175259868, -0.012291899, 0.0115551148, 0.0119490391, -0.0108110355, -0.000832074031, 0.0182080586, 0.00941771, 0.00745903049, 0.000548029, 0.00153831113, 0.01599041, -0.017916264, -0.000376143056, 0.0165594127, 0.000729489548, 0.0153484596, -0.00743349828, -0.000847575662, -0.00434046285, -0.0147794578, 0.00724018365, 0.0219430458, 0.00912591442, 0.00237266487, 0.0055039986, 0.0123356683, -0.020177681, 0.00178633758, -0.00822864193, 0.0152609209, -0.0143636493, -0.00866633561, 0.0103587518, 0.00356173282, 0.0302300472, 0.0106943166, -0.0055039986, 0.00402313471, -0.0301425084, -0.00539457519, 0.00608759047, -0.00375687121, 0.00648151478, 0.0152317416, -0.00465414347, -0.01433447, -2.00752111e-05, -0.00809733383, -0.00251126778, 0.00867363065, 0.0350446776, -0.00320245908, -0.0069848625, -0.00167235476, -0.00308574084, 0.0119198589, 0.00459943153, 0.00967303105, 0.0191563964, 0.00203162828, 0.0118323201, 0.00927910674, 0.00270823, 0.00364380027, 0.0139478398, 0.0112341391, -0.0200026035, -0.00448636059, 0.0139624299, -0.00873199, 0.0129703237, -0.011226844, 0.000828882505, 0.00423833448, -0.0111757796, -0.00113435625, -0.0362118594, -0.0146189705, -8.61139633e-05, -0.00929369684, 0.00389547413, -0.0130286831, 0.0254008267, -0.0174348, -0.00616783416, 0.00234530889, 0.016121719, 0.0115405247, -0.00141338597, -0.0114311008, 0.0274433959, -0.000465505524, -0.00694109313, 0.0115332296, -0.0236062817, -0.00528879929, 0.0217679683, -0.0120876422, -0.0102128536, 0.0130286831, 0.00244743749, -0.0163697451, 0.00119089172, 0.0144365979, -0.00437693717, 0.028887786, 0.0010386107, -0.0201339107, -0.00419821218, -0.00412526354, 0.00196050317, -0.00105137681, 0.00430398853, -0.00169332756, 0.0134371975, -0.00976057, -0.0360076055, 0.0204694774, 0.0255175438, -0.00947606936, 0.0258239303, 0.00276476541, -0.0179600324, 0.00343771954, -0.0147429835, -0.0130432732, -0.0336148776, 0.00523773488, -0.00495323399, -0.0045848419, 0.0226725359, 0.000165730904, 0.00916238874, 0.0176828261, 0.0230956394, -0.00303650019, -0.0210530683, 0.0141010331, 0.00711981812, 0.026626369, 0.0139551349, 0.0344027281, -0.0167782605, 0.00920615811, 0.00903108064, 0.00218299753, -0.0134007232, -0.00160487695, -0.00640127063, 0.0182664189, -0.012291899, 0.0124596814, 0.000925539876, 0.000434502203, 0.0144365979, 0.0080025, -0.0166469514, -0.0183101874, 0.0121460008, -0.00372951524, -0.0165156424, 0.0241023339, -0.0251673888, 0.00312039163, 1.00803491e-05, 0.0164572839, 0.00817028247, -0.0225558169, -0.00192402874, 0.00474168221, -0.0066748294, 0.0168512091, -0.0201485, 0.00338300783, -0.0142907007, -0.0134153124, -0.0101472, -0.0205132458, -0.00412161602, 0.00694838772, -0.0144803673, -0.029967431, -0.00624807784, -0.0138019426, -0.00512466393, -0.0141156223, -0.00400489755, 0.0129922088, 0.0210676584, -0.0202652197, 0.0231831782, -0.0186165739, 0.00109970546, -0.000561706955, 0.00811921898, -0.013254825, -0.0323309749, -0.00149180612, 0.0135393264, 0.0140061993, 0.00486204773, 0.0152317416, -0.00387358945, -0.00213922816, -0.0080243852, -0.0165594127, 0.0127150025, -0.00975327566, -0.0174639802, 0.0322726183, 0.00532527361, -0.0101399049, -0.0104244053, 0.0259552374, 0.00209728256, 0.0025787456, 0.0241606943, -0.00320245908, -0.0191126261, -0.00215199427, -0.00591980759, -0.00705051655, -0.00752103701, 0.00161399564, -0.0124669764, 0.0134007232, 0.0154359993, -0.017916264, -0.0117593715, 0.0117447814, 0.0218409169, -0.00667118188, -0.00992835313, 0.00297084614, 0.0086809257, 0.00829429645, -0.014443893, 0.00296355132, 0.00807545, -0.0282312445, -0.00546752429, -0.00227236, -0.00193132355, 0.0123575525, 0.00319698802, -0.0034267772, 0.0141593916, 0.00625537289, -0.00887788739, -0.014567906, 0.000215427382, -0.000678881188, 0.046424713, 0.0419310592, 0.00682802219, 0.010263918, 0.00108238007, -0.00382982, -0.00978245493, 0.0124232071, 0.0160779487, -0.0256780311, 0.0175806973, 0.0167199, 0.00643774541, -0.0173472613, -0.0298069436, 0.0230664592, -0.0521147326, 0.00714170281, 0.0221910719, 0.00361826806, 0.0126931183, 0.00502618309, 0.0236646403, -0.0119198589, 0.0393924341, 0.00721829897, -0.00307115098, 0.0137435831, 0.000230815058, 0.00519761303, -0.0356574506, 0.00194773707, 0.0159320515, 0.0123210782, 0.00163405656, -0.00925722253, 0.0143490592, 0.011825026, -0.0102858022, 0.00413620565, -0.0125034507, 0.00180001545, 0.00501524052, -0.00147265696, -0.0151004335, -0.0187187, -0.00916238874, 0.00396477571, -0.00705416407, -0.0114019215, 0.00134590827, 4.67329228e-05, 0.00571555039, 0.00420915475, 0.00363832922, 0.0013103456, -0.00422739191, -0.000141908517, -0.000453879271, -0.0131964656, -0.0327103101, 0.0187916514, -0.0209363494, -0.00359638338, -0.0165885929, -0.00236354605, -0.0200026035, 0.0116499476, 0.00651069405, 0.0192439351, -0.00996482745, -0.00883411802, -0.00740796654, 0.000252585742, 0.00533256866, 0.00133223028, -0.00448636059, -0.0169241577, 0.00102858024, 0.00532527361, 0.0274725761, 0.00842560455, -0.0168220289, -0.0133861331, -0.0447031185, 0.00990646798, -0.030434303, -0.0148305222, -0.00498606125, -0.0167928487, 0.00876116939, -1.09280954e-05, -0.00422739191, 0.0035708514, -0.0172889028, 0.00949795358, -5.04088675e-05, 0.0279540401, 0.0193168838, 0.0128025413, 0.0127004134, 0.0077471789, -0.0111320103, -0.0243941303, -0.000681616773, 0.0123210782, 0.000981163466, 0.011934449, -0.0241606943, -0.0159320515, 0.00284318556, 0.000140654709, -0.0221764818, -0.00308026955, 0.00743349828, -0.00494593894, -0.00176080537, -0.0156840254, 0.0175952874, 0.00480733626, 0.0156986155, -0.0225120466, 0.00360550219, -0.0126128746, -0.00117721374, 0.0156110767, 0.0241898727, 0.013130812, 0.0112852035, -0.00160122954, 0.024831824, 0.00450824527, 0.00334835704, 0.00651434157, -0.0172159541, 0.00218846858, 0.00850584824, 0.000352206669, 0.000738608185, -0.0307261, 0.000408286171, 0.0147940479, 0.023387434, 0.0101909693, -0.0185582135, -0.0108256247, -0.0261157267, 0.00728395302, -0.0085642077, -0.00411432097, -0.00170244626, -0.00348696, 0.00184104929, 0.00946147926, -0.00422739191, 0.00266993186, 0.0161363091, 0.00294531393, 0.0208634, 0.00894354191, -0.0114019215, -0.0318057425, -0.0018027511, -0.0186165739, -0.0182372387, -0.00571919791, 0.00646692468, -0.00391006377, 0.0107891504, -0.00164773455, -0.00927181169, -0.0365036577, -0.0131454021, 0.00395748066, 0.00925722253, 0.00608394295, 0.0156840254, 0.0141375074, 0.0183247775, 0.00147812825, 0.0106870215, -0.0168658, -0.00353072933, -0.00214287546, -0.00953442883, 0.00614594948, -0.00174530374, 0.00544928713, 0.000450459804, -0.0151004335, -1.66129848e-05, -0.0224099196, 0.00684625935, -0.0310178958, 0.00533256866, 0.000899095845, 0.0206299648, -0.000258284883, -0.0055514155, 0.00244561373, 0.0190396775, -0.0184852649, 0.00188755419, 0.0033665942, 0.00233071903, -0.0049204072, 0.0160633605, 0.0226871241, -0.00953442883, 0.00351249217, -0.00175898161, 0.00308938813, 0.00220305845, -0.00347784138, 0.0133350687, 0.00570460828, 0.0246275663, 0.00508818962, 0.00916238874, -0.000163679215, -0.0152901011, -0.0224245079, -0.0184560847, 0.0243211817, 0.0182518288, 0.00291066337, 0.0254154149, 0.00116809516, -0.00349607854, -0.000742711534, 0.00570825581, -0.00246202713, -0.0116718328, -0.013612275, -0.0136560444, 0.00224135653, 0.0188208297, 0.0105994828, 0.0212719161, 0.00294166664, 0.0406471565, -0.0171138253, 0.0153484596, 0.017070055, -0.0139186606, 0.019696217, 0.0224682782, 0.00872469507, 0.000182828313, -0.00772529421, -0.0121605908, 0.00220670598, 0.00395018607, 0.0068535544, -0.0201193225, 0.0242190529, 0.0443237834, 0.00920615811, -0.0041435007, -0.0141010331, 0.00344136683, -0.00581767922, -0.0183393676, 0.00110608852, 0.0238980781, -0.0193168838, 0.0133496588, -0.0015647551, -0.00540187024, 0.0240585655, 0.00894354191, -0.019944245, -0.0126055796, 0.0123210782, -0.0225412268, -0.00368392211, -0.013371543, 0.00665659225, 0.00315139489, -0.023518743, 0.000265807757, -0.00643774541, -0.0067222463, -0.0277351923, 0.00309303566, 0.00661282288, 0.000885417918, 0.00410702592, -0.0229497403, 0.0135393264, 0.00846207887, 0.0109423436, -0.0296756346, 0.0227892529, -0.0234020241, -0.0125253359, -0.00239819684, 0.0121095264, -0.0260135978, -0.0016832971, 0.0112997927, -0.00129028468, -0.034490265, -0.012656644, 0.00258786418, -0.0103952261, 0.00872469507, -0.0290045049, 0.0141666867, 0.00429669349, -0.015523538, -0.0322142579, -0.00256415573, -0.0189667288, 0.00500065088, -0.00217570248, 0.0106505472, -0.0239856169, -0.0177411865, 0.00605841074, 0.0277060121, -0.0202798098, -0.0136852236, 0.00817028247, -0.00532162609, -0.0166177712, 0.00514290109, -0.0137144038, -0.00723653613, -0.0176536478, -0.00902378559, -0.0164426938, -0.0027811788, -0.0140207894, 0.0121314116, -0.0124377972, -0.00671859877, 0.0137946475, 0.00206263177, 0.00497511867, 0.00692285597, 0.00015364874, 0.0334689803, 0.0125836944, -0.00347784138, -0.03201, 0.0112122539, -0.000296811049, -0.0110444715, 0.00531068398, -0.017784955, 0.00168603275, -0.00143618253, 0.00403772481, -0.000243923074, -0.0169825163, -0.000359045633, -0.0160925388, -0.00895813201, -0.0200901423, 8.56010374e-05, 0.00117994938, -0.00158025674, 0.0112706134, 0.0377292, -0.000578120467, -0.0133642489, 0.000461402145, -0.00316598453, 0.0259698275, -0.0127514768, 0.000185107972, -0.0174202099, -0.0259844176, 0.028771067, -0.0137727624, 0.012773362, -0.00578485196, -0.000175305453, -0.0216950197, 0.0221473034, -0.00489852251, -0.000706693, 0.00461766869, -0.00987728871, -0.0195649099, -0.00695568277, 0.00653987378, 0.00622984068, 0.0646619499, 0.0297194049, 0.00189667277, -0.0241315141, 0.0113508571, -0.0263199825, -0.000436553906, 0.0358617045, -0.0307261, 0.022920562, 0.00251491531, 0.00943959504, -0.00867363065, 0.015523538, -0.00637573842, -0.00567907607, 0.0133058894, -0.00967303105, -0.00347237033, 0.00168147346, 0.00672589382, -0.0271224212, 0.0131526962, -0.00978245493, -0.00385535229, -0.0113727422, -0.00273740944, -0.0137144038, -0.00202615722, 0.0109642278, -0.00575931976, 0.0188354198, 0.0119782183, 0.00898001622, -0.0273558572, -0.00310215424, 0.00488028489, 0.0209217593, 0.0117812557, -0.0211989656, 0.0181788802, 0.0149837155, -0.0168949775, -0.00898731127, 0.0132985944, -0.0137144038, 0.0122189503, -0.00823593698, -0.00597816706, -0.0312221535, 0.00231612939, -0.0217387881, 0.00884141307, -0.010504649, 0.0155089479, -0.00911132433, 0.0135393264, -0.0156402551, 0.0112049598, 0.00343042449, 0.0226579458, 0.00147812825, -0.00438423222, 0.010263918, 0.02649506, -0.0369997099, -0.0130651575, -0.00194408966, -2.02176889e-05, -0.00135776238, -0.00702133682, -0.0081265131, 0.00267175538, -0.00318786921, -0.0239856169, 0.0156840254, 0.00974598061, 0.0136633394, 0.0151733821, -0.0317182057, -0.00122645427, -0.0123283733, -0.00682802219, -0.0133496588, -0.00897272117, -0.00467967521, -0.0228476133, 0.00321887271, 0.0068389643, 0.0109642278, 0.0022559464, 0.0267430861, -0.0141010331, 0.00936664548, 0.00056945777, 0.0236792304, 0.00340671628, -0.00532527361, 0.00810462888, 0.0120730521, 0.0180038027, -0.00756480638, 0.00366750872, 0.00145441981, -0.00245290855, 0.0289899148, -0.00289060222, 0.00917697884, 0.00369668822, 0.012780657, 0.0118469102, 0.00505901, 0.00900190137, 0.0264658816, -0.0160633605, 0.00471979752, 0.0075429217, 0.0234749727, -0.00411796849, -0.00227418356, -0.00489852251, -0.00881952886, -0.000869916286, 0.0141666867, -0.00256415573, -0.00228877342, 0.0214032233, -0.00669306656, 0.023153998, 0.0035580853, -0.00166870735, -0.0142688155, 0.021972226, 0.0148305222, 0.00270093512, 0.0350738578, -0.00282494817, 0.000379790494, 0.0153922299, 0.0149545353, 0.00370763056, 0.00845478382, 0.00147630449, -0.00133223028, 0.00376781356, 0.0134663768, -0.00565354386, 0.00876846444, 0.000146581806, -0.000712620094, 0.00275564683, -0.00300367316, 0.000112386981, -0.000646966044, 2.0630876e-05, -0.00306568, 0.0160925388, -0.0244233105, -0.011343562, -0.0121532958, 0.0132621201, 0.0013404371, 0.0395383351, -0.018733291, 0.000695750641, -0.0165594127, 0.00946877431, -0.00415079575, 0.0150712542, -0.00305291382, 0.0144001236, 0.0130797476, 0.0096803261, 0.00370033574, -0.0193314739, -0.0163697451, -0.00562801166, -0.00547481887, 0.0105630085, -0.00817757752, -0.0207320936, 0.00719276676, 0.0149691254, 0.0656540617, 0.00675507309, -0.0118396152, -0.0147429835, 0.000497876608, -0.00881223381, 0.00244926126, -0.0109277535, 0.00906755496, -0.0020644553, 0.00939582568, -0.004595784, 0.00425292412, 0.0022851259, -0.00501159299, -0.0132694151, 0.00547117181, 0.0232998952, -0.0229497403, 0.00699215708, 0.0144803673, 0.0191126261, 0.0181934685, 0.0178724937, 0.00398301287, 0.015523538, 0.00199515396, -0.020411117]
08 Oct, 2021
jQWidgets jqxTree collapseItem() Method 08 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for pc and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTree represents a jQuery widget that is used to display a hierarchical collection of items. To display the collection of items, we can populate from ‘UL’ or by using its ‘source’ property. The collapseItem() method is used to collapse a tree item by passing an element as parameter. It accepts a single parameter item of object type and does not return any value. Syntax: $('Selector').jqxTree('collapseItem', element); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtree.js”></script> The below example illustrates the jQWidgets jqxTree collapseItem() method. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"></script> <script type="text/javascript" src="jqwidgets/jqxtree.js"></script> <style> h1, h3 { text-align: center; } #jqxTree { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTree collapseItem() Method </h3> <div id='jqxTree'> <ul> <li item-selected='true'> GeeksforGeeks </li> <li id="prog">Programming <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> </li> <li>Web Technology <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>jQuery</li> <li>PHP</li> </ul> </li> </ul> </div> <center> <input type="button" id="jqxBtn" value="Collapse Item" style="padding: 5px 15px; margin-top: 20px;"> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTree').jqxTree({ width: '350px', height: '250px' }); }); $("#jqxBtn").on('click', function() { $("#jqxTree").jqxTree( 'collapseItem', $("#prog")[0]); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtree/jquery-tree-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtree-collapseitem-method?ref=asr10
PHP
jQWidgets jqxTree collapseItem() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree checkAll() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree collapseItem() Method, PHP Tutorial, PHP
GeeksforGeeks
[-0.0195284765, 0.00406478392, -0.0107713128, 0.0175581146, 0.0432603918, 0.00643651607, 0.0173245911, 0.0268115178, 0.00865499768, 0.0153250378, -0.0186089743, -0.0323139355, -0.000148233259, -0.0170910656, 0.00900528394, -0.0142668802, -0.00531268, 0.0110924086, -0.041392196, -0.0320804119, -0.00618839636, 0.0013163113, -0.0277602114, 0.0324598886, -0.00507185794, 0.0184484273, 0.0186965466, 0.00930448715, -0.0334815606, 0.0308836009, -0.049244456, -0.0109902415, 0.0244908705, -0.0310003627, -0.0221848171, -0.0110121341, 0.0167115889, 0.00407573, -0.0302414075, -0.0173537806, -0.00698019, 0.028198069, 0.0121432682, -0.0234983917, 0.0123840906, 0.0335107483, 0.0215426255, -0.0334523693, -0.0309419818, 0.0471427366, 0.0099685723, 0.0347951353, 0.0122965183, 0.0279499497, -0.00290081068, -0.00984451268, -0.0137122599, 0.0123184118, -0.0195138808, 0.0350578502, 0.0232648663, -0.0271909963, -0.00276580453, -0.00198495737, 0.0129241152, 0.0359627567, 0.0255125389, 0.000714256254, -0.0183608551, -0.00953801163, -0.0201998595, 0.024782775, -0.00622853311, -0.0181273296, 0.0221848171, -0.0172078274, -0.0413338169, -0.000998864067, 0.0133692715, 0.0071808747, -0.000997039722, -0.0113989087, -0.0318468884, -0.013500629, 0.00708600553, -0.00298108486, -0.0164196827, -0.0482227877, 0.0392029062, 0.0238632727, -0.0575637631, 0.0228999853, 0.00186089741, -0.0230605323, 0.000960551493, -0.00660071289, -0.00234983908, 0.00587459793, -0.0500617921, 0.0112091703, 0.011639731, 0.0109902415, -0.0107640149, -0.0350578502, -0.00499523245, 0.0261401366, 0.0209296234, 0.0221994128, 0.0137195578, 0.0149747515, 0.0422387235, -0.0145441908, 0.00696924329, -0.00320548704, -0.00217834464, -0.00384585466, 0.00862580724, -0.029949503, -0.0202728361, -0.0200101212, 0.010705634, -0.0446323492, -0.0131503418, 0.061241772, -0.0132160205, 0.0311755054, -0.00866229553, -0.00649124803, 0.047171928, -0.0102823703, -0.0550241843, -0.0022586186, -0.00298838248, -0.00473251753, 0.0430560596, 0.0345908, 0.0283440221, -0.0076552215, -0.0219366979, -0.00634164643, -0.0545863248, -0.0249287281, 0.00841417536, 0.0367800891, 0.00147594709, 0.0381812379, -0.0169305187, 0.0338610373, -0.037918523, 0.035904374, -0.0210901704, -0.020331217, 0.0296721924, 0.0362546593, 0.0350578502, 0.0172662102, -0.0141355228, 0.0131722353, -0.0280959029, 0.00314710592, 0.0107275266, -0.00374003896, -0.0143982377, 0.00798361469, -0.0320512205, 0.00697654113, 0.0258774217, -0.0395240039, -0.04790169, 0.0380936675, -0.0189446658, 0.0128365438, -0.0171786379, 0.00852364, -0.0234254152, -0.0235421769, 0.0112164682, -0.0587605722, -0.00999776274, 0.00553525751, -0.0276434496, -0.0219221022, 0.00557904365, 0.0112310639, 0.0244470835, 0.0233086534, -0.00866229553, 0.0189738572, -0.0325182714, -0.0288986433, -0.0269282814, 0.00661895704, 0.0624677725, 0.0151207037, 0.0164780654, -0.0259941835, -0.0131503418, 0.0368384719, 0.0102750733, -0.0043092547, 0.0167991612, -0.0322555564, -0.0269282814, 0.0204187892, 0.038298, 0.0504704565, 0.0108369915, -0.100707389, 0.056075044, -0.00682693953, 0.000414140901, -0.0130846631, -0.0047179223, 0.0337442756, 0.00529808458, 0.0141063323, -0.00181346282, -0.0227978174, -0.04480749, -0.00591108622, 0.0134641407, 0.0443404429, -0.000319043582, 0.00347732403, -0.0740856081, -0.00997587, 0.0100926319, -0.0148506919, -0.00446615368, 0.0150769185, -0.0170034952, 0.00422533182, -0.0107494192, -0.00443696324, 0.0522802733, 0.0290591903, -0.0142668802, 0.0103261564, 0.000381985679, 0.0197328106, 0.0218637213, 0.0112529565, -0.0487190261, -0.00654962938, 0.0400494337, 0.0286505241, -0.00465954142, -0.000537744607, -0.0148360962, 0.0043092547, -0.0136684747, -0.00966936909, -0.00474346429, -0.00115485105, 0.0259066112, -0.0114791831, 0.0121432682, 0.00829011574, -0.0371303782, 0.0249579195, 0.0138874035, 0.0406040512, -0.00587824685, 0.0306792669, 0.0132598067, 0.00620664051, 0.0263152793, -0.00706776138, -0.000937746372, -0.0316717438, 0.0267385431, -0.0167991612, 0.0468800217, 0.0036396964, -0.0156169431, -0.00260343193, -0.0197182149, 0.00972775, 0.039991051, -0.00527984044, 0.0239946302, 0.0485438816, 0.0550241843, 0.06497816, 0.0401078127, -0.0042107366, 0.020739885, 0.0132671045, -0.038327191, 0.00953801163, -0.0399034806, -0.0241843686, -0.00656787353, -0.00933367759, 0.0463837832, 0.0081003774, 0.0126614, 0.0120483991, 0.00558634102, -0.0400786214, -0.0119024459, -0.00854553282, 0.000357812271, 0.0228707939, 0.000955078227, 0.060833104, 0.025454158, -0.000652682444, -0.00901988, -0.00815146, 0.0259503983, -0.0287234988, -0.062234249, -0.0339778, -0.0548782311, -0.00595852081, 0.0495071709, -0.00333137135, 0.00910015311, 0.00842877105, -0.00719911885, 0.00146408845, -0.0218637213, 0.0233086534, 0.050587222, 0.00344995805, -0.0275850687, 0.00815146, -0.00442236802, -0.00891041476, -0.0291467626, -0.0221410301, 0.0781139061, 0.00834849663, 0.00363604771, -0.0228416044, 0.00709695229, -0.0363422334, 0.00726114912, 0.0118075768, -0.0180981401, -0.00334961549, 0.0193971191, -0.0157191101, 0.0190030467, -0.0450702049, -0.0398159064, -0.011639731, 0.0401370041, 0.00109099678, 0.00138655107, 0.00845796149, 0.0248119663, -0.0231043193, 0.0266217794, -0.0175727103, 0.00293182582, 0.00179613091, -0.0184922125, 0.0161861591, 0.0275412817, 0.00888122432, 0.023483796, -0.0382104293, -0.00830471143, -0.0287234988, 0.0125446385, 0.00075849815, -0.0249287281, 0.0212799106, -0.0172224231, -0.0422971062, -0.0138071291, 0.0302414075, -0.0477265455, -0.00653503416, -0.0132816993, -0.0104064308, -0.0120775895, 0.0124351736, -0.00883743819, 0.00361233042, 0.00614825916, 0.0449826345, 0.00703492202, 0.0109610511, -0.00574324047, -0.0097496435, -0.0191052146, 0.00898339134, 0.0123403044, 0.0433771536, -0.0141136302, -0.0154418005, 0.039319668, -0.0360795185, 0.000660892285, -0.00243376195, 0.0287234988, -0.0117200054, 0.00667004, 0.00373639027, -0.00602419954, 0.0161569677, -0.0263006836, -0.0158212781, -0.00881554559, 0.0050755064, 0.0163758975, 0.0168283507, 0.0334523693, 0.00563742453, -0.00297743594, 0.0431144387, 0.0100488467, 0.00770630455, 0.0215426255, 0.0385023318, -0.027161805, 0.00678680232, 0.0180105679, -0.0328101777, -0.0268407091, 0.0165802315, -0.0132014258, -0.0175143294, -0.0471135452, -0.0221556257, 0.0137414504, -0.0048930659, 0.0163758975, -0.00215827627, 0.00457926746, 0.0134057589, 0.00199772813, 0.0134641407, 0.0474346429, 0.0154709909, -0.00467778556, -0.0228853896, -0.0159818251, 0.0324598886, 0.00364699424, -0.0286651179, -0.0131211514, 0.00518862, -0.0354665145, 0.00688532041, 0.0242865365, 0.0477557369, -0.0315841734, -0.0257898495, -0.0169013273, -0.0028296588, 0.00920961797, -0.0171056613, -0.0237902962, -0.00092543161, -0.00769170932, 0.00664449856, -0.0103918351, 0.00972045306, -0.0313798413, 0.0218929108, -0.0473178774, -0.0228416044, 0.0183024742, 0.0127489716, -0.0164050888, -0.000685977866, -0.0269720666, -0.00487482175, 0.035232991, 0.0325474627, 0.0407500044, 0.0114426948, 0.0286213327, -0.0120119108, -0.00314710592, 0.0300954562, 0.0185797848, 0.0137852365, -0.00424357597, 0.00877175946, 0.0178792104, -0.0045464281, 0.0234108195, -0.0146171674, 0.00869878381, -0.00102531805, 0.0243595131, 0.00378017593, -0.0337734632, -0.0134130567, 0.0138290226, 0.0122892205, -0.0262568984, -0.035174612, 0.013245211, 0.0332480334, 0.000868874893, 0.00368895545, -0.0217323638, 0.0654452071, 0.011792982, -0.0228124131, 0.00580162136, -0.00163831958, 0.0253957771, -0.0500326, -0.00333502, -0.0339778, -0.0238778684, 0.00787415076, 0.0038130153, -0.0457707793, 0.00504266704, 0.0219366979, -0.00845796149, 0.0147047387, 0.0180981401, -0.0212215278, 0.000392932154, 0.00280229258, 0.00559363887, 0.0340653695, 0.00785955507, -0.0253082048, 0.0117637906, -0.0131211514, -0.00660801027, 0.00322190672, 0.0267385431, 0.0338026546, -0.0139019983, 0.0076771141, -0.00759684, 0.0111288968, -0.0142595833, 2.95326245e-05, -0.0045573744, 0.00622123573, -0.0397575274, 0.00932638, 0.0110486224, 0.0375682339, -0.00829011574, 0.00775009068, 0.0141866067, 0.0427641533, 0.00634529535, -0.00511929253, 0.0344156548, -0.00342259184, -0.0230313428, -0.00327663915, -0.0027110721, -0.0421219617, 0.00869148597, -0.030620886, 0.00684518367, -0.0125446385, 0.026329875, 0.00142212701, -0.00184082892, -0.0254395623, 0.0160256103, 0.0431144387, -0.0266509708, 0.0204041936, 0.0419760086, -0.0148215005, 0.0147120366, 0.000976971118, 0.0207982659, 0.0110121341, 0.0392029062, 0.000369670917, 0.014332559, 0.00302122184, 0.00610812241, -0.0148215005, 0.0183170699, 0.0206815042, -0.00189556123, -0.00904907, 0.00780117419, 0.00380936661, -0.0164342783, 0.0279645454, 0.00248484546, 0.00954530947, -0.00254869973, 0.0255855154, 0.0222869832, 0.0140771419, -0.0152958473, 0.00320548704, 0.0289424285, -0.006673689, 0.00818065088, 0.00254322658, 0.0439901575, 0.0105888713, 0.00201049913, 0.0152374664, 0.0297013838, -0.00613366393, 0.0305041224, 0.02903, 0.000524973788, -0.0388526209, 0.0189592615, -0.00540754898, -0.0267677326, 0.00318906736, -0.0215426255, 0.00552431121, -0.00906366482, -0.0100415489, 0.0142376898, -0.00148233259, 0.0301538371, 0.0361087099, 0.00176602823, 0.0197328106, -0.038998574, 0.00499523245, -0.000892592245, 0.00370902405, 0.0148506919, -0.00537470961, -0.00101619598, -0.0282856412, 0.00695099914, 0.00502807181, -0.0190030467, 0.0334231779, -0.00405383762, 0.020535551, 0.0111361938, 0.0134276524, -0.0221556257, 0.0554912314, -0.0219075065, 0.00359043735, 0.00460116, 0.0182732828, 0.0235129874, -0.015106109, -0.014741227, 0.0131868301, 0.0209588129, 0.0232940577, -0.0262568984, 0.0139238918, -0.00752386404, -0.0137560461, -0.0131941279, 0.0244908705, -0.000372635608, -0.0171494465, 0.0255271345, 0.0225934852, 0.0107275266, -0.00635259319, 0.00873527117, 0.0331896544, -0.000939570775, 0.0187695231, -0.00514848297, -0.0218929108, 0.000565110764, 0.00637813471, -0.0131065566, -0.0141720111, -0.0173683763, -0.002884391, 0.00878635515, 0.0203895979, -0.0332188457, 0.0173975676, 0.0388818122, 0.0148360962, -0.00419614138, -0.0236443449, -0.028606737, 0.00217469595, 0.0208420511, 0.0200976934, -0.0137852365, 0.0185651891, 0.0451285876, 0.000614369812, -0.00215827627, 0.00407937914, -0.00174139871, 0.0123767927, -0.0109902415, -0.0189592615, 0.00907826051, 0.00836309232, -0.00138381438, 0.0434939153, -0.00332407374, 0.0280959029, -0.0129824961, 0.0144128334, -0.0211047661, -0.0100926319, 0.0264612325, 0.000872067641, -0.00535646547, 0.0300078839, 0.0152228707, 0.00842877105, -0.0147777153, -0.00256511942, -0.0198495723, 3.83981132e-05, -0.00945773814, 0.0327809863, -0.000332726631, -0.0103334542, -0.0277602114, -0.0225496981, 0.0175581146, -0.00430560578, -0.00968396477, 0.00387504534, -0.0247097984, -0.00278039975, 0.0106764426, 0.000230331672, -0.0208712425, 0.00262897369, 0.0204917658, -0.00190285884, -0.0063051586, -0.00629421184, 0.0237027258, -0.0298473351, -0.0218199342, 0.01065455, 0.0154126091, 0.00698019, -0.0159672294, -0.00149692781, 0.0141136302, 0.0107932054, -0.00213820767, -0.00221848162, 0.0296721924, -0.00475805951, -0.00831200834, 0.0201706681, -0.0252498239, -0.00262167607, 0.0313798413, 0.0251330622, 0.0123694949, 0.00858931895, -0.0350286588, 0.00788874552, -0.00935557112, 0.012931413, -0.0221410301, -0.024155179, 0.00168301759, -0.0287964754, 0.0261547305, 0.0180981401, 0.0289716199, -0.0115667544, 0.000508098, -0.0258774217, -0.0295700263, 0.000450401043, 0.00341894291, -0.0121943513, -0.0346199907, 0.011537564, 0.0392612889, -0.0107275266, 0.0279207602, -0.0257168729, 0.0538273714, 0.00432749884, 0.0356416591, 0.0247535855, -0.00212726113, -0.019149, 0.0229583662, 0.0303873606, -0.0109829437, -0.0182878785, -0.0120775895, 0.0315549821, 0.02338163, -0.0117127076, 0.038911, 0.0149309654, -0.00280594151, 0.041800864, 0.0130189843, -0.00267275958, -0.0211777426, 0.00317994528, -0.00604974106, 0.00259431, -0.00655692676, -0.00374003896, -0.0296284072, 0.0142157972, 0.0156169431, -0.0115521597, 0.0106180618, -0.0197765958, -0.00199955259, 0.0149893463, -0.00238267845, 0.00314893038, 0.0249287281, -0.0125008523, -0.0314090289, 0.0550241843, 0.0131138535, 0.0336567, -0.0139092961, -0.0105961692, -0.00643286714, 0.00964017864, -0.0560458526, -0.00625772402, 0.00800550822, -0.00785955507, -0.00231152656, 0.0242719408, 0.00234619039, 0.019499287, -0.0145587856, -0.00947963074, -0.00441871909, 0.0122235417, 0.0143106664, 0.0320220329, -0.0219512917, 0.0140333558, 0.0309711713, 0.018784117, -0.00157172862, -0.0281834751, -0.0101802042, 0.0367800891, -0.000321324071, 0.0225496981, -0.0150623228, -0.0106399553, 0.038911, 0.0105158947, 0.0148506919, 0.0147266313, -0.024155179, 0.00413776, 0.0408959575, 0.0110997064, -0.0233962238, -0.0350870378, -0.00939205848, 0.00699478528, 0.00853093807, -0.0258044451, 0.0146536557, 0.0268115178, -0.00297561148, -0.0286797136, -0.00623218203, 0.00346272881, 0.0175143294, -0.0287964754, 0.0393780507, -0.019149, -0.0314382203, -0.0197620019, 0.0116762193, 0.0467340685, -0.0164196827, -0.025293611, 0.00598406233, -0.0180397592, -0.0131357471, 0.00674301665, -0.0113113374, -0.0423262939, 0.00159270933, 0.00670287944, -0.0273369495, -0.0466173068, -0.00180434075, -0.00926070102, 0.0096328808, -0.0409251489, -0.00880095, -0.00967666693, 0.00594757404, 0.0130262822, 0.0246952046, 0.0186673552, 0.00161460217, -0.00147594709, 0.0284461901, 0.0122454353, 0.026490422, -0.0396115743, -0.0266655665, -0.0158942528, -0.0334523693, 0.0148725845, 0.00867689, 0.00736331567, -0.00166842225, -0.0140114632, 0.049915839, 0.0344448462, -0.00592568144, -0.0121943513, -0.0103334542, -0.0178792104, -0.00613731286, -0.00719547039, -0.000186887919, -0.0102677755, 0.0227832235, -0.013551712, 0.0222869832, -0.00521051278, 0.0199955255, 0.0215426255, -0.0436982512, 0.0120994821, 0.0143544525, 0.0304749329, -0.0315841734, -0.00832660403, 0.00593662774, -0.014332559, -0.0369552337, -0.00966207124, -0.0105158947, 0.00904177222, -0.030620886, -0.0103334542, -0.0154709909, -0.0195138808, 0.0215280298, -0.0368092805, -0.015310443, 0.0208712425, 0.00484198239, -0.0173245911, -0.0281542838, -0.0348243229, 0.0219512917, 0.0179813784, 0.00668463577, -0.00587094901, -0.0248119663, -0.0181711167, 0.014741227, 0.0131722353, 0.0138509152, -0.00659341505, 0.0242719408, -0.00350651471, 0.00138655107, 0.0255709197, -0.00173045218, -0.0285191666, -0.00253957766, 0.0573594272, 0.0210171957, 0.0106691457, 0.00785955507, 0.00426546903, 0.035232991, -0.0141647132, 0.00663720071, -0.00466683879, 0.0123257088, 0.0285337605, -0.00467413664, 0.00369442883, 0.0250308961, -0.0117273033, 0.0178208295, -0.0172370188, 0.0434647277, -0.0258190408, -0.00110924081, -0.008640402, -0.011792982, -0.0256147068, 0.00746183377, 0.0140333558, -0.0061665033, -0.00716263102, 0.0130189843, 0.00803469867, -0.00836309232, 0.00770630455, -0.039669957, -0.00403924193, -0.00729398848, 0.00888122432, 0.0118513629, 0.000970585737, 0.0219221022, 0.0351162292, 0.00663720071, 0.0082609253, 0.0110413246, -0.00220935955, 0.00956720207, -0.0371887572, 0.000906731409, 0.0158066824, -0.0157045145, -0.0192073807, 0.0147923101, 0.0170618761, 0.0107786097, 0.00783766247, -0.00626502139, 0.00301392423, -0.00149054243, 0.0056483713, -0.00584540749, -0.0301538371, 0.0143398568, -0.00967666693, 0.0294678584, -0.00321278465, 0.00347002642, 0.020331217, -0.00248119654, -0.00276215561, -0.00724290498, -0.0110486224, -0.0112383608, -0.0120921843, -0.00834849663, -0.0189738572, 0.00742534595, -0.0221410301, 0.016448874, -0.00426911749, -0.0172078274, -0.0309127904, 0.0147047387, 0.0114937788, 0.0131284492, -0.0106910383, -0.00967666693, -0.00425452227, -0.0131868301, 0.018988451, -0.0329853185, -0.0130481748, -0.0126614, 0.0018572486, 0.0142741781, 0.00735966722, -0.000769444625, 0.00202327, 0.0225059129, 0.0161569677, 0.00661530811, 0.00151882076, -0.018521402, -0.0259503983, 0.0359919444, 0.000575145, -0.0109318607, 0.0175581146, -0.0209296234, -0.0189300701, 0.00151061092, -0.00645840866, -0.00152429391, -0.0247389898, 0.00123056408, -0.00829741359, -0.00336421072, 0.0284315944, -0.00975694, -0.0254687537, 0.00739980396, 0.0733850375, 0.00275120907, -0.00497334, -0.0118951481, 0.000216192493, -0.0494779795, 0.000897609338, 0.0277456157, 0.023950845, -0.022914581, 0.028198069, 0.00444791, 0.00538565638, -0.00699478528, 0.000288712763, -0.0149747515, -0.0186673552, 0.00612271763, 0.0241259877, -0.0190176424, -0.00575783569, 0.0162153505, 0.016040206, 0.00910015311, 0.0300078839, -0.0144055355, -0.0014896302, -0.00802010298, -0.0621174872, -0.00373091688, 0.0267531369, -0.00262714946, 0.0235129874, -0.00834119879, 0.00910015311, 0.043815013, -0.00781576894, -0.00872067641, -0.0159380399, -0.0132525088, 0.00460480899, -0.0209296234, -0.00334596657, 0.00753845926, -0.018988451, 0.00850174762, -0.00251768483, 0.000800459587, -0.0403121486, 0.00967666693, -0.0145733813, -0.015777491, -0.0301538371, -0.014018761, 0.00492590526, -0.00978613179, 0.0109756459, -0.0129022226, 0.0105013, -0.0356124677, -0.0095745, -0.00952341687, -0.0147850132, -0.0262131132, 0.00892501, 0.0100196553, -0.0357292295, 0.0201998595, -0.0607747212, -0.00955260731, 0.0234983917, -0.0167407803, -0.0154272048, -0.0142522855, -0.00584540749, -0.00499888137, 0.00608987827, 0.0286797136, -0.0293510966, -0.00472157123, -0.0259795878, 0.0265633985, -0.00301392423, -0.00634529535, -0.0231481045, -0.00338427909, -0.00634894427, -0.00444426108, -0.0092971893, 0.00847985409, 0.00595487189, -0.0169743039, -0.00982261915, 0.00216374942, -0.0004225788, -0.0175435189, 0.0133619737, 0.00833390187, 0.0153834186, -0.0142595833, 0.0189008806, 0.0135809025, 0.0164196827, 0.0160110164, -0.00305223675, -0.0206815042, 0.0392320976, -0.00141574163, 0.0199955255, 0.0121505661, 0.0394072421, -0.00685613, -0.0139457844, 0.0113770161, -0.0100415489, -0.000345725566, 0.00315622799, -0.00183444354, -0.0266071856, -0.0045683207, -0.0133838663, -0.00327846338, -0.00964747649, 0.00822443701, 0.0238778684, -0.0146536557, -0.0129679013, 5.50458499e-05, 0.00344448467, -0.00569215696, -0.0153396334, 0.00162189989, -0.0307668373, -1.55644921e-05, -0.016915923, 0.0112164682, -0.00151243526, 0.0275412817, -0.00894690305, 0.0272639729, -0.019499287, -0.00657882, -0.0216593873, 0.0152520612, 0.000694643822, 0.0239216536, -0.0336275101, 0.0169889, 0.0041997903, 0.000534095801, 0.00503901858, -0.0202290509, -0.00293547451, -0.00092543161, 0.0180251636, -0.0141574163, -0.00583446072, 0.0118878512, 0.00613731286, 0.000484380667, 0.00340069877, 0.0376266167, 0.00850174762, -0.0231918916, -0.0204333831, 0.00884473603, 0.0018535998, -0.0278623793, 0.00524335215, -0.0232356768, 0.0103407521, 0.00764792366, 0.0152520612, -0.0217469577, 0.0248411559, 0.00910015311, -0.0155001814, 0.0172224231, -0.00160639232, 0.00395896798, -0.0295992158, 0.00982991699, -0.0212799106, -0.00841417536, 0.0140041653, 0.00456102332, -0.00993938185, -0.0351162292, 0.00600230647, 0.0184192359, -0.0178938061, -0.0124278758, 0.0179959722, -0.00144949323, 0.0345908, 0.0125300428, -0.0311171245, -0.00409397436, 0.0119316364, 0.023950845, -0.0042216829, 0.0104283234, 0.0129751991, 0.0208566468, 0.00172862783, -0.00720276777, -0.000949605, 0.00838498492, 0.026534209, -0.0190468337, 0.0212799106, 0.00449534459, 0.00511929253, -0.0394364297, 0.0339778, 0.00608987827, 0.000909011927, -0.0136100929, 0.020535551, 0.0152520612, 0.00465954142, 0.0167553741, -0.0122819236, 0.00405748608, 0.000434665504, 0.00745088747, -0.0142595833, -0.0272785667, 0.00660801027, -0.00286249816, -0.0234546065, 0.0394948125, 0.0457707793, -0.0110048363, 0.0111143012, 0.0165364463, 0.00795442425, -0.0165218506, -0.0349410847, 0.00709695229, -0.00697289221, 0.00618109852, 0.0104867043, 0.021206934, -0.00647665281, -0.000100513549, 0.00494050048, 0.00444061216, -0.0145806791, 0.00596216973, -0.00452818396, 0.0258190408, 0.0202290509, -0.0317009352, 0.0178208295, -0.00356672, -0.0157191101, -0.0270450432, -0.0170326848, -0.0384147614, 0.0139457844, 0.00460480899, -0.0262423027, 0.00609717565, -0.0510250777, 0.00440412387, -0.0107202288, 0.00568121066, -0.0065021948, -0.0141939046, 0.0146025717, 0.0130116865, 0.0335983224, 0.0118367672, 0.00223855022, -0.00426182, 0.0103115616, -0.00184539, -0.00867689, -0.00419249246, -0.0289862137, 0.00320548704, 0.0195868574, 0.000222805989, -0.0163758975, 0.014515, 0.0013874633, 0.000430560583, 0.0105742766, 0.0266363751, 0.0250746813, 0.0200976934, -0.0363714248, 0.0162007548, 0.00103626447, 0.0522218905, 0.0202728361, 0.0102166915, -0.00277127768, -0.00551701384, 0.00674301665, -0.00784496, -0.0277602114, 0.0070093805, 0.0095890956, 0.0239654407, 0.0242865365, 0.00170308608, 0.0225934852, -0.00934827328, -0.00502442336, -0.0203458127, -0.0102312872, 0.027833188, -0.014120928, 0.0195868574, -0.0063051586, 0.00563742453, -0.0333939865, -0.0562793761, -0.00829741359, -0.00257789041, -0.0264320411, -0.00707141031, 0.033890225, -0.0111507894, -0.0232502725, -0.0165802315, 0.0024520061, -0.0111507894, 0.0186673552, 0.0125738289, -0.013967677, 0.0143033685, -0.00896879565, 0.0096109882, 0.0119754225, -0.0145004047, 0.00675396295, 0.00962558296, -0.0117783863, -0.000626228459, -0.0230897237, 0.00500617921, -0.00076990074, 0.0361378975, -0.00517037604, 0.00962558296, -0.0285191666, -0.0197765958, 0.00290263514, -0.00542579312, 0.00199590367, -0.000298290921, -0.000318359409, 0.0225934852, 0.00387504534, 0.0239362493, 0.00580162136, 0.00367436022, -0.0313506499, 0.00653503416, 0.0216885768, -0.00148142036, 0.00305223675, -0.023483796, 0.00966207124, 0.0126759959, 0.00261985161, 0.000596125727, 0.02338163, 0.0226372704, 0.0082390327, -0.0228270087, 0.00592933036, 0.00699113635, 0.0239216536, 9.26457869e-05, -0.0150185367, -0.00615920592, -0.0233378429, 0.0020615824, -0.0127489716, -0.0156607293, 0.0145806791, -0.0168283507, -0.000353023206, 0.00388234295, -0.00704951724, -0.0155439666, 0.0267385431, -0.0186819509, 0.0102093946, 0.0181419253, 0.00788144767, 0.0268699, -0.042413868, 0.00813686568, -0.0476389751, -0.0108296936, -0.00471062493, 0.00973504782, -0.0267385431, 0.0105815735, 0.00227321405, 0.00840687752, -0.0234400108, -0.0345908, 0.0104283234, -0.00442601694, 0.0164780654, 0.0258482303, -0.0191781912, -0.0472595, 0.00200137706, 0.0203166213, 0.00596946711, 0.0313506499, 0.0256293, 0.0171932336, 0.00631975383, -0.0205647405, -0.00663720071, -0.0182440933, -0.00277675083, -0.018827904, 0.010552383, -0.00119407591, -0.0232210811, 0.0106618479, -0.0325766504, -0.0248849429, -0.00923880842, 0.00818065088, -0.00854553282, -0.00476900581, -0.0214404576, 0.0159672294, 0.0102385851, 0.0211777426, -0.0193241425, -0.00221118401, 0.0303289797, -0.0151644899, 0.0022786872, 0.010917265, 0.01303358, -0.00185542426, -0.00827552, -0.002353488, 0.00431655254, -0.00841417536, -0.0108734788, 0.0311171245, 0.0084433658, -0.00633799797, -0.015106109, -0.0242427513, 0.0104940021, 0.00347367534, 0.00698019, -0.0171640422, -0.0119681247, 0.00265451544, 0.0311755054, 0.000869787124, 0.00920232, -0.00931908283, -0.0161423739, -0.0181711167, 0.0224621277, -0.0337150842, 0.0099685723, 0.0145295952, -0.000405246916, -0.00197218638, -0.011019432, -0.00383855705, -0.0241843686, -0.0111143012, -0.00415600417, 0.0382396169, 0.00510834577, 0.00832660403, 0.00546957878, 0.00687802304, -0.00467048772, 0.0222723875, 0.0133181876, 0.00108005025, 0.039728336, 0.0152228707, -0.00848715194, -0.00959639251, 0.0114572905, 0.00425087381, -0.0180981401, -0.00845066365, -0.0222140066, -0.0143617494, 0.0146901431, -0.0101218224, 0.00883743819, 0.0054111979, 0.00738885766, -0.0164780654, 0.0105085978, 0.0042107366, 0.00905636791, 0.0144274281, -0.0112091703, -0.00793982949, -0.00638543256, 0.00817335397, 0.0221994128, -0.00618109852, -0.00635624211, -0.027570473, 0.00318906736, -0.0195430722, 0.0259212069, 0.0106399553, 0.0101656085, -0.0174559485, 0.00300662639, 0.0056702639, 0.0148944771, 0.00495144678, 0.0215134341, -0.00897609349, -0.000459295028, 0.00789604336, -0.00629786076, 0.00394072384, -0.00917313, -0.0357584208, 0.00920961797, -0.0067941, -0.00147503486, 0.00704222, -0.0123767927, -0.00116397312, -0.00891771261, 0.00778657896, 0.00502807181, -0.00219476433, 0.00964017864, 0.00965477433, 0.000274801656, -0.00144949323, 0.00368165784, -0.00198860606, -0.00154983567, 0.0219075065, 0.0123767927, -0.00228233589, -0.0087571647, 0.00791063905, 0.0150185367, 0.00571769848, 0.000907187525, -0.0216010064, 0.0228270087, 0.0183170699, 0.0159380399, -0.00519956648, -0.00779387634, 0.0101291202, 0.000101938866, -0.00834119879, 0.00443331432, 0.0166969933, 0.0298035499, 0.016448874, 0.0323723182, 0.0408959575, 0.00154709909, 0.017280804, 0.0112894448, -0.0229875576, 0.0173391849, -0.0119900182, 0.00206888, 0.0227540322, -0.0227686279, 0.0186673552, 0.00287162024, 0.017280804, -0.00882284343, 0.0156169431, -0.00313433516, -0.00172497903, -0.0308252182, 0.0107348245, -0.00610812241, 0.00174778409, -0.0136757717, 0.0158504676, 0.0130481748, 0.00547322771, -0.0129095204, 0.00382031291, -0.0139092961, -0.0053236261, 0.00181072624, -0.0152228707, 0.00734507153, 0.00137286796, -0.0202582404, 0.0105013, -0.00187184394, -0.0167261846, 0.0146025717, 0.0155877527, 0.019192785, -0.00768441195, 0.00575053785, -0.00121323217, -0.0130919609, 0.0180251636, 0.0158650633, 0.00242281542, 2.80502918e-05, -0.00673207035, 0.0120119108, 0.00133820425, 0.0193241425, 0.00775738806, -0.0214988384, 0.00638543256, 0.0200247169, 0.00856012851, -0.00935557112, -0.0110778129, -0.00839958061, 0.00244288403, -0.00230240449, 0.00094321958, -0.0100707393, -0.0200830977, 0.00741075026, 0.00320001389, -0.0120629938, -0.0134057589, 0.0014421955, 0.0118586607, -0.0173829719, 0.0300662648, 0.00398451, -0.000955990457, 0.00796172209, 0.0133327832, -0.0193971191, -0.00178336, 0.0289570242, -0.0206523128, 0.0211047661, 0.00509739947, -0.00947233289, 0.00678315386, 0.0114281, -0.0134933311, -0.00395531952, 0.0243303217, -0.0124424715, -0.0269428752, 0.00603149692, 0.00655692676, 0.00321278465, -0.0180251636, 0.0129022226, -0.00646205759, -0.0389693826, 0.0194409061, 0.0234108195, 0.0212215278, 0.0295700263, 0.00661165919, 0.0015169963, -0.000682785176, -0.0124497693, -0.000314482546, -0.00320913596, 0.000668189896, 0.0227540322, -0.0111434916, 0.00746183377, 0.00862580724, 0.00907096267, -0.00312156416, 0.00811497215, 0.00332407374, -0.0191781912, -0.0276142582, 0.0243887026, 0.00400275411, -0.000413228699, 0.0205501467, 0.0122965183, 0.00392977754, 0.00562647823, -8.9168e-05, -0.0203166213, 0.0159088485, 0.00429101055, 0.0143836429, 0.0125373406, 0.00841417536, -0.00562282931, 0.00536011439, -0.00161186559, -0.0182878785, -0.00478725, 0.00614461023, -0.0216593873, 0.00748007791, -0.0062540751, 0.0326934159, -0.00579067506, 0.0115594575, -0.0130481748, -0.0190176424, -0.00191745418, 0.00487482175, -0.017952187, -0.00687437411, -0.00548052555, -0.0327226035, 0.00741439918, -0.0371011868, -0.0109829437, 0.0354081355, 0.00857472327, -0.014843394, -9.94873153e-06, -0.00822443701, 0.00306500751, 0.0092534041, 0.012624912, 0.00132178457, 0.0262714941, -0.0108369915, 0.00274573592, -0.00211266591, -0.00100889837, -0.0200393107, 0.00572864525, 0.00483468454, -0.00949422549, 0.00573229371, -0.0208274554, 0.00649854587, -0.00174960855, -0.00890311692, 0.0020615824, -0.00302487053, -0.0128219482, 0.001306277, 0.0157191101, 0.00450629089, -0.00428736163, -0.00966936909, -0.00117583177, -0.0240967982, -0.00388234295, 0.0151352994, 0.00160274352, 0.0233086534, -0.000843789312, 0.0233962238, -0.00860391371, -0.00683788583, 0.0136757717, 0.00358313974, 0.0138436174, 0.0276726391, -0.00180890178, -0.00903447438, 0.0120848874, -0.00301757292, 0.0199809298, 0.00191015645, 5.57870153e-05, 0.00254505104, 0.00126157899, -0.0076771141, -0.00040068588, 0.0163904931, 0.00185998529, 0.00344630913, -0.0239654407, 0.0101875011, 0.0130481748, -0.00123330066, 0.0067612608, -0.0231918916, 0.00908555835, -0.000959639263, -0.00274391146, 0.00286614685, 0.0004225788, -0.0227978174, -0.0161277782, -0.0109391576, -0.00919502228, 0.00341894291, 0.00481279148, 0.011070515, -0.01303358, -0.00133546756, -0.000596581842, -0.0117491959, 0.00858931895, 0.0258044451, 0.00950882118, -0.00930448715, 0.0141355228, -0.0311171245, -0.000486661185, -0.0209734086, 0.0321096033, 0.00678680232, -0.0106910383, 0.0123038162, -0.000377880759, 0.0188570935, 0.00196488877, -0.00734142307, -0.000345269451, -0.0157628953, -0.0064036767, -0.01303358, -0.0233086534, 0.00903447438, 0.00502077444, 0.0154418005, 0.00641097408, 0.0101437159, 0.0270742327, 0.00519956648, 0.00160183129, 0.00805659126, 0.0085966168, 0.00565201975, -0.0111507894, 0.00320913596, 0.0109391576, -0.0318760797, 0.00379112246, -0.0022586186, -0.0128219482, 0.0015169963, 0.00671747513, 0.00389693817, 0.00535281701, 0.0031525793, 0.0071589821, -0.0240822025, -0.0114645874, 0.000279362663, -0.0109829437, 0.0209588129, 0.0236151535, 0.00723560713, 0.0120994821, -0.00134276517, -0.00260708085, -0.0065131411, 0.000440366799, 0.000248803815, -0.00075849815, -0.0149893463, 0.00115211448, 0.00635624211, 0.0173391849, -0.00939935632, -0.0171786379, -0.00918772537, -0.0319636501, -0.0153834186, 0.00384585466, 0.00653503416, -0.00846525934, -0.0137779387, 0.00967666693, -0.00842877105, 0.000789513113, 0.0190614276, 0.0177624486, 0.00372909266, 0.0137487482, 0.00985181052, -0.015208276, -0.00714803534, 0.0168721378, 0.00383855705, 0.00361962803, 0.0170618761, -0.0107494192, 0.00800550822, -0.00231517525, -0.000752568827, -0.0215280298, -0.00146226399, -0.0166094229, 0.0138363196, 0.0037144972, 0.00931908283, 0.0136392834, 0.00755305449, -0.0300662648, 0.0355540887, 0.0258336347, -0.0155001814, -0.0116178384, -0.00549147185, 0.0318760797, -0.0184192359, 0.0148725845, 0.00426911749, 0.00104812311, 0.00761873322, -0.0298911221, -0.0337734632, -0.00445155846, 0.00791793596, -0.000784495962, 0.0182149019, -0.00411586743, 0.000413228699, 0.00634529535, -0.00292817689, 0.0146244643, -0.00943584461, 0.013814427, -0.0116178384, -0.0224767216, -0.00339887454, 0.0140114632, -0.00420343876, -0.0310879331, 0.0127635673, -0.0134568429, -0.00575418677, 0.00467413664, -0.0133181876, -0.0011293093, 0.00560458517, -0.0163613018, -0.0162007548, 0.0193825234, -0.00153615256, -0.0127489716, -0.00310149579, -0.0125446385, -0.00211996352, -3.19556675e-05, -0.0136173908, 0.00380571769, -0.0271326154, -0.0111288968, 0.0116105406, 0.00958179776, 0.0167115889, 0.0262568984, -0.00924610626, 0.0172954, 0.00572134741, -0.0253957771, 0.0161277782, -0.0122016491, 0.00250308961, -0.0100853341, -0.0067722071, 0.00245565479, 0.00334961549, 0.0135152237, -0.00544403726, 0.0175289251, -0.0244324896, -0.0117491959, 0.00557904365, -0.0166094229, 0.000345497509, 0.0247097984, 0.0102458829, 0.0109683489, -0.0204917658, -0.000819615845, 0.0116835171, 0.00368165784, 0.0131284492, -0.000311974, -0.00508280424, -0.00341894291, -0.0122965183, 0.0381520465, -0.0202290509, 0.0204041936, 0.00528348936, 0.0102823703, -0.00425817119, 0.0144420238, 0.00508280424, 0.00269282819, 0.00486752391, 0.0025377532, -0.0203166213, -0.0256730877, -0.0250017047, 0.00966936909, 0.00251038722, -0.017485138, -0.000249944074, -0.0115740523, 0.00528713828, 0.0127051864, -0.00743994117, 0.0233232491, 0.00888852216, -0.0190030467, -0.00570675218, 0.0210901704, 0.0192219764, 0.0101437159, -0.0194846913, 0.00900528394, -0.00592203252, -0.0199225489, -0.0034992171, 0.00168849074, -0.00710789859, 0.0206231233, 0.0069218087, -0.0075165662, -0.00518132234, 0.0190906189, 0.00662625441, 0.0189300701, 0.0310003627, -0.00465954142, 0.00650584325, -0.0216447916, 0.0100780372, -0.0226664599, 0.0152374664, -0.00872797426, -0.00687802304, -0.00521416171, 0.0128146503, -0.00888852216, 0.0169743039, -0.00879365299, -0.0148579888, 0.00931178499, 0.0196890254, -0.0208712425, 0.00318176975, 0.0270888284, -0.0109902415, -0.00873527117, 0.00346455327, -0.0142084993, 0.0187111422, -0.00180525298, -0.0158650633, 0.0188425, -0.00928259455, -0.0184630211, 0.00545133511, 0.00870608073, 0.00930448715, -0.00920232, -0.0109245628, -0.00795442425, -0.00241551781, -0.00544038834, 0.0007261149, -0.00342624052, 0.0141720111, -0.00624677725, -0.000136260569, 0.00391518231, -0.0113989087, 0.0294240732, -0.0194409061, 0.0104940021, 0.00991748925, 0.037976902, 0.0120265055, -0.00347549957, 0.013143044, 0.00223672576, 0.00134458963, 0.0070093805, 0.0106691457, -0.00427276641, 0.00513388775, 0.0220680553, -0.0136465812, -0.0106910383, -0.00344813359, 0.01210678, 0.00551336491, -0.0189008806, 0.00166112464, -0.0122016491, -0.018827904, 0.0151644899, 0.00453548133, 0.000819159788, -0.00554620428, -0.0231335089, 0.0134130567, -0.0121359704, 0.0145004047, 0.00747278053, -0.0250163, -0.0290008094, 0.017485138, 0.0203166213, -0.0149236675, -0.0214842428, -0.011019432, 0.0219075065, -0.00315805245, -0.00395531952, -0.00153524044, 0.0281250942, 0.0160548016, -0.0223891512, 0.00220571086, -0.00188279036, -0.000892592245, -0.00644016452, -0.0118951481, 0.00215827627, -0.0171056613, 0.0251038708, -0.00961828604, 0.0193679295, 0.00958179776, 0.00374003896, -0.0305333138, 0.002754858, -0.0158650633, 0.00378017593, 0.00143945892, 0.0128949247, -0.0134349503, -0.00726479758, -0.0203166213, 0.00105359638, -0.0180397592, 0.00596946711, -0.00938476156, 0.00649489695, 0.0315257907, 0.0188716892, 0.00241369358, -0.0159526356, -0.0180251636, -0.0196452383, -0.0032510974, -0.00292817689, 0.0106691457, 0.011741898, 0.0124570662, -0.00853823498, -2.25058e-05, -0.00525429891, -0.021411268, 0.0182149019, 0.026227707, -0.0158212781, -0.000542761758, -0.0040501887, 0.00134823844, 0.00479819626, 0.00443696324, 0.0203020256, 0.0230313428, 0.0118221724, 0.01303358, 0.0026016077, 0.00440412387, -0.00112201169, -0.00961828604, 0.00599500909, -0.0115448618, 0.0127124842, 0.00915853493, 0.0100634415, -0.00174960855, -0.0102312872, 0.00203604065, -0.0104210256, -0.0117200054, -0.00460116, -0.0291613583, -0.0102969659, 0.0045683207, -0.002884391, 0.00802740082, 0.00948692858, 0.0166823976, -0.0107202288, -0.0121286726, 0.00788874552, 0.000725658785, 0.0026362713, 0.00345908, 0.0155293718, 0.00996127445, 0.00198313291, -0.0129022226, 0.0200539064, -0.0095890956, 0.00346455327, 0.00143033685, -0.00918042753, -0.00100433733, -0.00397721212, 0.0017614672, -0.0328393653, 0.031496603, 0.0129897939, 0.00179339433, 0.0197328106, 0.00977883395, -0.0219804831, -0.00764062582, -0.0186381657, 0.0105596809, 0.00175234512, 0.0147558218, 0.0045464281, -0.000230217644, 0.00673207035, -0.0270450432, 0.0151936803, 0.027833188, -0.00238085422, 0.0267531369, -0.0106180618, -0.0151498942, 0.008640402, -0.00554255536, -0.00568121066, -0.0106983362, -0.0137268556, -0.00105268415, 0.00274208724, 0.0160548016, 0.00545863248, 0.00462305313, 0.0115010757, 0.00730128586, 0.00526524521, -0.00788874552, 0.00858202111, -0.00193387386, 0.0121140778, 0.00327663915, 0.0291321669, -0.0127489716, 0.00308325165, -0.0211047661, 0.0138801057, -0.0185797848, -0.00856742635, 0.00146226399, -0.013398462, -0.00413411157, 0.0260671601, -0.00334961549, -0.0185505934, 0.0191635955, 0.0251038708, 0.00115393882, -0.0155147761, 0.0203604084, -0.0109026702, -0.0309711713, 0.0192511659, -0.00786685292, -0.0195722636, 0.00445155846, 0.00701302942, -0.0158942528, -0.0127562694, 0.0148287984, 0.0135663077, -0.00676855817, 0.0136611769, -0.00418519508, 0.00780117419, -0.00992478617, -0.0102531798, 0.00152976718, 0.0129897939, 0.00764792366, 0.00473251753, -0.0119681247, -0.0126905907, -0.00784496, -0.0121432682, 0.0171786379, -0.00316535, -0.0125008523, 0.0248411559, 0.0112091703, -0.0239800364, 0.0112894448, -0.0287526902, -0.00266546197, 0.0141355228, -0.012624912, 0.0145660834, -0.0432603918, -0.00943584461, 0.0107640149, 0.00572134741, 0.0219950788, 0.0199225489, -0.0114208022, -0.00714073796, 0.000422122685, -0.00802010298, 0.00988829788, -0.00332224928, 0.00185451203, 0.0214404576, -0.00208347547, -0.00267275958, -0.00754575664, 0.0241989642, -0.0188425, 0.00582351442, -0.00155166013, -0.000838772161, 0.002483021, 0.0166240167, 0.00176967704, 0.00229328242, -0.000381073478, 0.0203166213, -0.0137998322, 0.0131795323, 0.00886662863, -0.00644016452, -0.027935354, 0.0278477836, 0.0206669085, -0.00734142307, -0.0118659576, 0.00304493913, -0.0195868574, 0.00944314245, -0.00741075026, -0.00107092829, 0.00172224233, -0.0189008806, 0.02452006, -0.0031872429, 0.000685977866, 0.0247097984, 0.0164196827, 0.00244835718, 0.0276142582, 0.00584905595, -0.0195430722, -0.0118878512, -0.00243376195, -0.00775009068, 0.013500629, 0.00346637773, 0.00247207447, 0.0129606035, -0.00314710592, 0.0261839218, 0.00686707674, 0.034561608, 0.0090928562, -0.0174705423, 0.00199955259, -0.00167936878, 0.00989559572, -0.00365429185, -0.0433771536, 0.020331217, -0.0602492914, -0.00269100373, 0.0113040395, 0.0110778129, -0.000933185336, 0.00176329154, 0.00933367759, -0.0159380399, 0.024155179, -0.00360320834, -0.00235896115, 0.0141501185, 0.00273478939, 0.00574688939, -0.0236151535, 0.00436763559, 0.0184046403, 0.00641097408, -0.00153980148, -0.000562374131, 0.0201560743, -0.0102604777, 0.00968396477, 0.0202436447, 0.014587977, 0.000573776721, -0.00400275411, -0.00196671323, -0.0188716892, -0.00774279283, 0.021673983, -0.0117564937, 0.0131795323, -0.000363513536, 0.00516672712, -0.0293802861, -0.000550059369, -0.0119316364, -0.00549512077, -0.0104210256, -0.0113040395, -0.00942125, -0.0149236675, 0.000185405588, -0.0227540322, 0.00529808458, -0.0126103172, 0.00922421366, -0.0137268556, -0.0047945478, -0.0227248427, 0.0251184665, -0.0045464281, 0.00259248563, -0.00416695094, 0.00702397572, -0.0237611067, -0.00429465948, 0.0219512917, 0.00202691881, -0.0035539493, -0.00630150968, -0.00764062582, 0.0114208022, 0.0185651891, 0.00486022653, -0.0162737314, -0.0180981401, -0.0285337605, 0.00450994, -0.0107494192, -0.0261985175, -0.0050536138, 0.00194117147, 0.00331130275, -0.00132999441, -0.00970585737, 0.0116762193, 0.0114791831, 0.0261547305, 0.0161715634, 0.0140990345, 0.00759684, 0.0169451125, 0.0187695231, -0.00893230736, 0.0026362713, -0.00991019141, 0.0200539064, 0.0117856842, -0.00137469242, -0.00429101055, -0.00661165919, -0.0170618761, 0.00618109852, -0.0231772959, -0.00833390187, -0.015879659, 0.0205647405, -0.00323650194, -0.0045683207, -0.00785955507, 0.0169451125, -0.004966042, 0.0325766504, -0.000462715805, 0.0156023484, -0.00634529535, 0.00324927294, 0.0125811268, 0.0124935545, 0.00977883395, 0.00363604771, -0.0156315379, 0.0279207602, 0.00104173773, 0.00577972876, 0.00788874552, -0.0122162448, -0.00847255625, 0.0196744297, -0.00183444354, -0.0128219482, -0.0332772247, -0.00620664051, 0.0128657343, 0.00508645317, 0.00719547039, -0.0193533339, -0.00104629877, 0.00204698718, -0.00846525934, -0.0015507479, -0.0049149585, -0.0096328808, -0.0220096726, 0.0173683763, 0.0158504676, -0.0114645874, 0.00872797426, 0.0152520612, 0.00812956784, 0.0272201858, 0.0127416747, -0.0293073114, -0.00666639162, -0.00340069877, -0.0120483991, 0.00466319, -0.0183170699, 0.00159909471, 0.00427276641, 0.0238924641, -0.00695829699, -0.0220096726, 0.000708783, -0.00682693953, -0.00799821, 0.00829011574, -0.00550971599, 0.0099685723, 0.0121359704, 0.0282564517, -0.00812956784, -0.00575783569, -0.0116543267, 0.0112675512, 0.00941395201, 0.00555715058, 0.00495874463, 0.0155585622, 0.0102823703, 0.0176456869, -0.000726571, 0.0166094229, -0.0141355228, -0.0119535299, -0.0199371446, 0.00560823409, -0.00158541161, -5.81530439e-05, -0.00040593106, 0.00686707674, -0.00413411157, -0.00468508294, -0.0238486789, -0.00658611767, -0.000280502922, 0.0157337058, 0.0044588563, 0.00272931624, 0.0361670889, -0.0244762748, 0.014223095, -0.0259212069, -0.000839228276, -0.0029044596, 0.0133838663, 0.0159672294, 0.00380936661, 0.0124643641, -0.0145077026, 0.0145295952, -0.00426182, -0.0150185367, -0.0132598067, -0.0111799799, 0.00648030173, -0.00452088611, -0.00953801163, 0.0188133083, -0.0170618761, -0.0137049621, 0.000177765876, 0.0110851107, -0.00391518231, -0.0143836429, -0.0109975394, -0.00536011439, 0.000673663104, 0.0189008806, -0.000380617392, 0.0219512917, -0.00383125944, 0.0291905478, -0.00658976613, 0.0116689214, 0.0172224231, -0.0141501185, 0.0258920155, 0.00598041341, -0.0148506919, -0.00153615256, 0.0079033412, -0.0091147488, -0.00482738717, 0.00890311692, 0.0108807767, -0.0047179223, 0.0112091703, 0.0359335653, -0.00737791089, 0.00135279947, -0.0081003774, 0.00900528394, 0.0134276524, -0.0257168729, -0.00176967704, 0.00500617921, -0.00631975383, 0.000311061769, -0.018827904, -0.00384220597, 0.0130919609, 0.0172662102, 0.000585635367, -0.013449545, 0.016813755, -0.0192073807, -0.00673936773, -0.00350651471, 0.0055607995, 0.0209588129, -0.0155585622, 0.00169305177, 0.00614096178, -0.00246660132, -0.00227138959, 0.00672112359, -0.0165948272, 0.00255599734, -0.0264174454, -0.0180251636, -0.0100707393, 0.0197474062, 0.00788874552, -0.0173537806, 0.0179084018, -0.0253665857, -0.0111434916, -0.0164196827, -0.000179134178, -0.0134422472, 0.00799821, 0.0153834186, -0.00931178499, -0.0275412817, 0.00110285543, 0.00391153339, -0.00780117419, -0.0111070033, -0.023118915, 0.0193971191, 0.00184721441, -0.0201414786, -0.0198349785, -0.00529078674, 0.00118130504, 0.00265086675, 0.00252498244, 0.00912204664, -0.0306792669, -0.026125541, -0.00262714946, 0.00924610626, -0.00816605613, -0.0231918916, 0.0133911641, 0.0100269532, -0.0192803573, 0.0059074373, -0.00299385563, -0.00471062493, 0.00278222421, 0.012778163, -0.00204333849, -0.0183316637, -0.00868418813, 0.0139822727, -0.00887392648, -0.00994668, 0.0352913737, 0.00324015087, -0.00519591756, 0.0118294694, 0.00487482175, 0.0165364463, 0.00112657272, -0.00402099825, -0.014120928, 0.00635259319, -0.0101802042, -0.0130408779, -0.00947233289, -0.0162883252, -0.0143106664, -0.0192657616, -0.00755305449, 0.00576878199, -0.0175581146, -0.00305041228, -0.0178792104, -0.011639731, -0.0181711167, 0.00684518367, -0.00802740082, -0.0133765684, -0.00133546756, 0.027001258, 0.0139968684, 0.00106089399, -0.0201122873, 0.0104575139, 0.011121599, -0.00244288403, -0.00809308, -0.0261401366, -0.0377141871, 0.0167261846, -0.00633799797, 0.00665909378, 0.00297196279, -0.00595487189, -0.0240384173, 0.00819524657, -0.0182440933, -0.00258883671, -0.00197948399, -0.00528713828, -0.0183170699, -0.00958179776, -0.0117710885, 0.0112675512, 0.0676053092, 0.0276580453, 0.00648395065, -0.0244908705, -0.00591108622, -0.0126759959, -0.0106618479, 0.0363422334, -0.0191344041, 0.000708326872, 0.00698019, 0.0144639164, 0.002483021, 0.022710247, -0.019864168, -0.0018572486, 0.00939205848, 0.0131357471, -0.00525065, -0.00275850692, -0.00704222, -0.0108588841, -0.00340252323, -0.0102385851, 0.00206340686, -0.0204479787, 0.000541849528, -0.0042107366, -0.0115083735, 0.0181419253, 0.00731588108, 0.0131138535, 0.00709695229, 0.00986640528, -0.0378893316, -0.00293182582, 0.0128730321, -0.0139311897, 0.00672112359, -0.025658492, 0.03248908, 0.0173975676, -0.0140479514, -0.0102896681, 0.0178354252, -0.0230897237, 0.0263152793, -0.00885933172, -0.00804929342, -0.0396991447, 0.0252790153, -0.0240384173, 0.00277675083, -0.0126541024, 0.0210901704, -0.0152520612, 0.017280804, -0.00121961755, 0.003802069, -0.00558999, 0.0244908705, 0.0107932054, -0.0107640149, 0.00523240585, 0.0193095487, -0.0275558773, -0.0124278758, 0.0121943513, -0.00281688781, 0.0027311407, 0.00136557035, -0.00820984133, 0.0156607293, -0.00915123709, -0.00982261915, 0.0288256668, 0.0116324332, -0.000555532635, 0.0100488467, -0.0342697054, -0.0220680553, 0.0113405278, 0.000357812271, -0.0196306445, -0.00125519361, -0.0193241425, -0.0113405278, -0.0148798823, 0.00351928547, 0.0110048363, -0.000474802509, 0.0243449174, 0.00649489695, -9.2189679e-05, 0.00727574434, 0.00759684, -0.00630880706, 0.00392248, 0.0150769185, 0.0179229975, 0.0217907447, -0.0307376478, 0.0184046403, -0.0161131825, 0.00145405415, 0.0186673552, -0.00191198091, 0.0116835171, 0.00655692676, -0.00440047495, -0.00247754785, 8.19558863e-06, 0.0248995386, 0.0326350331, -0.00367436022, -0.00186089741, 0.0205063596, 0.0149747515, -0.0146901431, -0.00531268, 0.00145679084, 0.0027749266, -0.000653594616, 0.0301830266, -0.00314163277, -0.00425087381, 0.0220534597, -0.00378382485, 0.0332480334, -0.010705634, 0.00337515725, -0.00102623017, 0.0226664599, 0.00599136, 0.0246806089, 0.0296867881, 0.000374916097, 0.0129387109, -0.00254687527, 0.0113843139, 0.00766981672, 0.00577972876, -0.0126541024, -0.00212361244, -0.00309419818, 0.0120046129, 0.00716627948, 0.00774279283, 0.0207252894, -0.0190614276, -0.0063161049, 0.00214003213, -0.00617380114, -0.00802010298, -0.00315075484, 0.0219366979, 0.00236443453, -0.0265633985, -0.0091147488, -0.0169743039, 0.00403194455, 0.00265451544, 0.0288256668, -0.0153396334, 0.0079033412, -0.00317447213, 0.0106326574, -0.00228416035, 0.0179229975, -0.000262486894, 0.0087790573, 0.0143836429, -0.000706958584, 0.0127197811, -0.00588189531, -0.0130773652, -0.0122308396, -0.01448581, 0.00243376195, -0.0220096726, -0.000596581842, -0.00420343876, 0.0106180618, 0.0601909123, 0.00214732974, -0.0105231926, 0.0185797848, 0.0134057589, 0.0294094775, -0.00456102332, -0.00457561854, 0.00727209542, -0.00783036463, -0.00845796149, 0.00258883671, 0.0084433658, 0.023746511, -0.000797266839, -0.0264174454, 0.0044588563, 0.0266071856, 0.0059074373, 0.0170618761, -0.00184265338, 0.0125446385, 0.00885933172, 0.010603467, 0.00846525934, -0.00332407374, -0.0148287984, -0.00511564361]
13 Oct, 2021
jQWidgets jqxTree ensureVisible() Method 13 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for pc and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTree represents a jQuery widget that is used to display a hierarchical collection of items. To display the collection of items, we can populate from ‘UL’ or by using its ‘source’ property. The ensureVisible() method is used to ensure the visibility of an element. It accepts single parameter item of object type and it does not return any value. Syntax: $('Selector').jqxTree('ensureVisible', item ); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtree.js”></script> The below example illustrates the jQWidgets jqxTree ensureVisible() method. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"></script> <script type="text/javascript" src="jqwidgets/jqxtree.js"></script> <style> h1, h3 { text-align: center; } #jqxTree { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTree ensureVisible() Method </h3> <div id='jqxTree'> <ul> <li item-selected='true'> GeeksforGeeks </li> <li id="prog">Programming <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> </li> <li>Web Technology <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>jQuery</li> <li>PHP</li> </ul> </li> </ul> </div> <center> <input type="button" id="jqxBtn" value="Ensure Visible" style="padding: 5px 15px; margin-top: 20px;"> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTree').jqxTree({ width: '350px', height: '250px' }); }); $("#jqxBtn").on('click', function() { var element = $("#prog")[0]; $('#jqxTree').jqxTree('ensureVisible', element); $('#jqxTree').jqxTree('selectItem', element); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtree/jquery-tree-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtree-ensurevisible-method?ref=asr10
PHP
jQWidgets jqxTree ensureVisible() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTree ensureVisible() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree collapseItem() Method, PHP Tutorial, PHP
GeeksforGeeks
[-0.026747603, 0.0432333574, -0.00560910301, 0.0266261604, 0.0551650338, 0.00109677319, 0.0362808, 0.0410777591, -0.00343073672, 0.00638709078, -0.00632637, 0.00250663888, 0.014823515, -0.0235142093, 0.0202808157, -0.0116660232, -0.000324240682, 0.00290891575, -0.0495787, -0.0164402127, -0.0228614584, 0.0174572896, -0.0322428532, 0.0212219916, -0.0256849844, 0.0124781663, 0.0192637388, 0.0270815678, -0.0153016932, 0.0177153535, -0.0431726351, 0.0039582504, 0.0108918305, -0.0164250322, -0.0430208333, 0.0111271245, 0.00697532529, 0.000778936665, -0.0415938869, -0.00658822898, -0.00623908313, 0.0279316623, 0.0346413329, -0.0036015145, -0.00566982385, 0.0407741554, 0.032941144, -0.046542652, 0.0109221907, 0.0486678854, 0.00925236288, 0.0255028214, 0.00228083273, 0.0141783543, -0.00434914185, -0.0255635437, 0.0280834641, 0.0229221787, 1.85676413e-06, 0.0329107866, 0.0424743444, -0.00847058, 0.0162580498, 0.00146204792, 0.0365236849, 0.00300189457, 0.0148994168, 0.0141935349, -0.0190208554, -0.00240227487, -0.00163472327, 0.0530094355, -0.0117419241, -0.0108614694, 0.029464867, 0.00718784891, -0.0698291585, -0.0128273126, 0.00959391892, 0.00461479649, -0.0100113759, -0.0333661921, -0.0468766168, -0.00547627546, 0.0324857384, -0.00981403235, 0.00957114808, -0.0449031815, 0.00813661423, 0.022223888, -0.0315445624, 0.00785578, 0.0112637468, -0.0230588019, 0.0235597491, -0.00889562722, -0.00550663611, 0.00365464552, -0.0601441562, 0.0271878298, 0.0279164817, 0.000806925236, -0.00805312302, -0.0468766168, 0.0106793065, 0.0337912403, 0.0328804255, 0.0111043537, 0.0494269, -0.00587475719, 0.0195218027, -0.0237419121, -0.00412143813, 0.0182314813, -0.0269601271, 0.0147400238, 0.0109373713, -0.0249715131, -0.000568310672, -0.000650378875, 0.00477039395, -0.027218191, 0.0289639197, 0.0565919764, -0.0176849924, 0.0479999557, -0.00678936718, -0.0017191635, 0.0366147645, 0.00790132117, -0.0307096485, 0.00725616, -0.016652735, 0.000399193174, 0.0233624075, 0.0475141853, 0.0304515846, -0.0149449576, -0.0224667713, -0.0242884029, -0.053889893, -0.0492447354, -0.000489563099, 0.0468158945, -0.000112725225, 0.0350056589, -0.00475141872, 0.0305274855, -0.0545274615, 0.0176546313, -0.00181309122, -0.0500341095, 0.0274155345, 0.0278709419, 0.0442048907, 0.0343377292, -0.0323642939, 0.0127817718, -0.0238178149, 0.0175483711, 0.0192485582, -0.0270815678, -0.028812116, -0.00583680673, -0.0330018662, 0.0138064381, 0.0195521638, -0.0181555804, -0.0400455035, 0.0346109718, -0.0303908624, 0.0138519788, -0.0184288248, 0.00452751, -0.0419278555, -0.0255635437, 0.042565424, -0.0276735984, -0.0169259794, -0.00982162263, -0.0239240751, -0.0207514036, -0.010223899, -0.00438709278, 0.00308348844, 0.0167286377, 0.00266413414, 0.0166375563, -0.0375863, -0.00227893516, -0.01694116, 0.0190208554, 0.0619657859, 0.00982921291, 0.00728652067, -0.0337305181, -0.0217836611, 0.00946488697, 0.0214496944, -0.000637570571, 0.014406058, -0.00235293899, -0.0118026454, 0.0299354549, -0.00522580137, 0.0468462557, -0.0103225708, -0.0545881838, 0.00788614061, 0.00153605163, 0.00457305089, -0.00550284097, -0.00108633668, -0.00554838171, 0.00483111478, 0.0301327985, -0.0261707529, -0.00822010636, -0.00786337, 0.00161479926, -0.0134041617, 0.0257305261, 0.0231195223, 0.0292978846, -0.0880454555, -0.0123339538, 0.0121442014, -0.0113320574, 0.00522959651, 0.0366754867, -0.0277798604, 0.000592504162, -0.0103301611, 0.0187172499, 0.0360075571, 0.0114459097, -0.00883490592, 0.011400369, -0.0101100476, 0.0245616473, 0.0212978926, -0.020812124, -0.0362200812, 0.0306944679, 0.0397722572, 0.0430208333, -0.0052789324, -0.00403415179, 0.0122049218, -4.69342522e-05, -0.00749524916, -0.00892598741, -0.0311802365, -0.0279316623, 0.0312713161, 0.00265274895, 0.0109146, 0.0103984717, -0.0191574767, 0.0156508386, -0.00831877813, 0.0243187621, 0.0208424851, 0.0244705658, 0.00168690539, 0.000407020474, 0.0588082932, -0.015400365, -0.0024800736, -0.0472409427, 0.0191726573, -0.00388234924, 0.0240455177, 0.030906992, -0.0174117479, -0.00543073472, -0.0166375563, 0.030147979, 0.0469676964, 0.00101233297, 0.0136774061, 0.0143832881, 0.0392561294, 0.0489411317, 0.040288385, 0.0343984477, 0.0202352758, -0.00374572701, -0.0399240591, 0.0293586068, -0.0267172419, -0.0308918115, 0.000583016546, -0.00831877813, 0.0425957851, 0.0119164968, -0.00514990045, 0.00634914031, -0.0156812, -0.0266565215, -0.00383870606, -0.0285844132, 0.00826564711, 0.0319696106, 0.0136394557, 0.0486071631, 0.0140872728, 0.00502466317, -0.00854648184, -0.0112485662, 0.0168348979, -0.0290246401, -0.0435976833, -0.0428386703, -0.0393168516, 0.00639847573, 0.0103225708, 0.0224667713, -0.00564325834, 0.00200379314, -0.00277419086, -0.0140645029, -0.0240455177, 0.014982908, 0.0530701578, 0.00697912043, -0.0238178149, -0.00543453, -0.00869069342, -0.0157267395, -0.0273092724, -0.00640227087, 0.0298899151, 0.00133681088, 0.0263073761, -0.0404705517, -0.00159392634, -0.0402580276, 0.00787096, 0.0247893501, -0.0219051018, -0.0145882219, 0.00893357769, -0.0309373513, 0.0074990443, -0.0313624, 0.00183586159, -0.0154686756, 0.061996147, 0.0107248472, 0.00142314855, 0.0192637388, 0.0401669443, -0.0165009331, 0.0245920066, 0.0157267395, -0.0270815678, -0.0101479981, -0.0348842181, 0.00247438089, 0.0184136443, 0.0183377434, 0.0149904983, 0.01087665, 0.0275369752, -0.0409866795, -0.0151802516, 0.015400365, -0.0314534791, 0.0182466619, -0.0210094675, -0.0217836611, -0.0227551963, 0.0283567086, -0.0270967484, 0.0134572927, -0.00777987856, 0.0153624145, -0.0078406, 0.00373434182, -0.0476659872, 0.0296773911, 0.0136546362, 0.0194003619, -0.0150436293, 0.0300265364, 0.0149753178, -0.0233624075, -0.00777228875, 0.0136849964, -0.0368272886, 0.0163187701, -0.0134269325, -0.0220872648, 0.0257760659, -0.0217533, -0.00796963181, -0.0291157216, 0.0224819519, -0.0381024294, 0.0138747497, 0.00196774, 0.0195521638, -0.0194762629, -0.0239696167, -0.0030436404, -0.0246982686, 0.0162732285, 0.0130322454, 0.0213586129, 0.0192789193, 0.00273813773, -0.00774572324, 0.0354914293, 0.00289183785, 0.0158026423, 0.00807589386, 0.0470284186, -0.000468927436, -0.00711574266, 0.00546868565, -0.0382238738, -0.0242125, 0.0327893421, -0.0320303291, -0.0311195143, 0.00161385047, -0.00877418555, 0.0276584178, -0.0274458937, 0.0296166707, -0.0138519788, 0.00354838371, -0.00794686191, 0.00215749326, 0.008759005, 0.0501251891, -0.0013624276, -0.0137608973, -0.0514610521, -0.0306641068, 0.0118026454, 0.0117874648, -0.0238937158, -0.0498823039, 0.0142542562, -0.00524857175, 0.00227134512, 0.000258301472, 0.0264288168, -0.0334876329, -0.0417760499, -0.00597342895, -0.0174572896, 0.0094800666, -0.0225730333, -0.0294800475, -0.000749999308, 0.00573054468, 0.012576838, -0.0162276886, 0.0072220047, -0.0332143903, -0.0102087194, -0.0294193272, -0.0225578528, 0.0250322334, 0.0235749297, 0.00445540389, -0.00899429899, -0.0145654511, -0.0156963803, 0.0420796573, 0.0378291868, 0.0373434164, 0.00238709454, 0.00059392734, -5.81415479e-05, -0.0111347139, 0.00294686621, 0.036554046, 0.0182466619, 0.0223605093, 0.0114231389, 0.0155597571, -0.0306641068, 0.0310436133, -0.00180265482, -0.0186413489, 0.0137077672, 0.0274610743, 0.00403035665, -0.0475445464, -0.0251081362, 0.00736621674, -0.0126906903, -0.0398937, -0.0258823279, 0.009282724, 0.0194155406, -6.69472793e-05, 0.0338216, -0.0380113497, 0.0607817248, 0.0258216076, -0.01270587, -0.0150815798, -0.00223718956, 0.0242276806, -0.0539202541, -0.0178975165, -0.0332751125, -0.0129335737, -0.0143377474, 0.026094852, -0.0352789052, -0.010352931, 0.00596963381, 0.0121442014, -0.0119316773, 0.0289791, -0.00626564864, -0.00915369112, -0.0118633667, 0.0198102277, 0.0430511944, 0.00405312702, -0.0277798604, -0.0258671474, -0.00103889848, -0.0300872587, 0.0311498754, 0.00872105453, 0.0103984717, -0.0114079593, 0.000174572895, -0.0122732334, -0.0177608933, -0.0222087074, -0.0260189511, 0.00338899111, -0.00272295764, -0.0514914133, -0.0168045387, -0.00286717, 0.0189297739, -0.000949714449, -0.00888044666, 0.0156052979, 0.0430511944, 0.0255483631, 0.016288409, 0.03445917, 0.00423908513, -0.0109373713, -0.00530170277, -0.0195673443, -0.0173206665, -0.0155749377, -0.0171992239, -0.00493737683, -0.0164250322, 0.041229561, 0.0130246552, 0.000782731688, -0.0107627986, 0.00404174207, 0.0392257683, -0.0418671332, 0.0206451416, 0.0270663872, -0.00582162617, 0.0327893421, 0.0149221867, -0.00290322304, -0.00210625981, 0.0885919482, -0.0266868826, -0.0147627946, 0.0158026423, -0.00518026063, -0.0136470459, 0.0233624075, 0.0287969373, -0.0184288248, -0.0231802445, -0.017335847, -0.030041717, -0.033700157, 0.00757874036, -0.00657304889, 0.0192941, -0.0125692477, 0.001372864, 0.00158633629, -0.0062201079, -0.00752560934, 0.0295863096, 0.0223149695, -0.022618575, 0.00525236689, 0.0194003619, 0.0376470238, -0.0141631747, 0.0114838602, 0.032182131, -0.00491081132, 0.0013624276, 0.0284477901, 0.00147817691, -0.0273396317, -0.024576826, 0.00417456916, -0.00321631576, -0.00934344437, 0.00390511961, -0.015817821, 0.0177305341, -0.0099202944, -0.0405919924, 0.0323642939, -0.0128880329, 0.0163187701, 0.0109449616, 0.0330322273, 0.0211916305, -0.0417760499, -0.0173965674, -0.00944211613, -0.026459178, 0.00843262952, -0.0153016932, 0.0268386845, -0.0147779742, 0.0312409569, 0.0255028214, -0.00594686344, 0.0384971164, 0.013518014, 0.0104743736, 0.0324857384, 0.0400758646, -0.0206906833, 0.0729866475, -0.00699430099, -0.0246375483, 0.0201441925, 0.0127893621, 0.0085009411, -0.0193092804, -0.0281897262, 0.00131119415, 0.0245009251, 0.0204629786, 0.0111802546, 0.0224667713, -0.0075825355, -0.00519164605, 0.0110132722, 0.0276128761, -0.00303035765, -0.0075825355, 0.0291460827, 0.0337305181, -0.0100417361, 0.00910056103, 0.00467931246, 0.0349752977, 0.00484629534, 0.0293737855, -0.00916887168, -0.0291157216, -0.00120588124, -0.00916887168, 0.00378178013, -0.0175483711, -0.0237722732, -0.0197798666, 0.010641356, 0.0292523447, 0.0117343338, 0.0236052908, 0.033700157, -0.00510815438, 0.016182147, -0.0244857445, -0.0503073521, -0.0151726613, 0.00644401647, 0.0183073822, -0.00879695546, 0.0201441925, 0.0627855211, 0.0310284328, -0.00638329564, -0.0176698118, -0.000909391907, 0.00348766265, -0.012288413, -0.0161973275, 0.00119354727, 0.00641745143, -0.0231195223, 0.0374952219, -0.0273699928, 0.0060189697, -0.0150056779, 0.0410170406, -0.0105806347, -0.0127741816, 0.0312713161, 0.00298291934, -0.0194459017, 0.0605692, 0.00724098, -0.0138519788, -0.00818215497, -0.00700568594, -0.0248804316, -0.00202466594, 0.00906261, 0.0199620295, 0.00475141872, -0.0099430643, -0.0370701738, -0.0267172419, 0.0184440054, -0.0148842363, -0.00551043125, 0.00725236489, -0.0209335666, 0.0207817648, 0.0285085123, 0.00109677319, -0.0461479649, 0.0108159287, 0.000806450844, 0.00305692316, -0.0168500785, -0.0226641148, -0.0132903103, -0.00372295664, -0.000324715074, 0.0167286377, -0.00692219473, -0.00026233372, -0.00242125, -0.02233015, 0.00619733753, -0.00718405377, -0.00592409307, 0.00827323738, 0.014876646, -0.0230588019, 0.00173339492, 0.0113624176, -0.00888803694, 0.00655407365, 0.0475749075, -0.0033586307, 0.00749145402, 0.00827323738, -0.0268690456, 0.0124933468, -0.0120834801, 0.0064402218, -0.0165920146, -0.0285844132, 0.0145047298, -0.0139582409, 0.0218899231, 0.00157305354, 0.0572902672, -0.0217988417, -0.0246223677, 0.010641356, 0.00075189682, -0.00165939122, 0.000754268724, -0.029859554, -0.0312713161, -0.0313016772, 0.034853857, 0.00120872748, 0.0288728382, -0.0188386925, 0.0287665762, 0.0169867016, 0.0378899053, 0.00637191068, 0.00382921845, -0.0172903053, 0.00537380902, -0.0045388951, 0.00836431887, -0.03445917, -0.0305882059, 0.00371726393, 0.0152865127, -0.0338519588, 0.0078406, -0.00466792705, 0.0183529239, 0.0144743696, 0.0211916305, -0.00778746884, -0.0246679075, -0.0135939149, 0.0147248441, 0.000877608254, -0.0251992177, 0.0183225628, -0.026094852, 0.00543453, -0.00408728281, -0.00264705624, 0.00744591327, -0.0172903053, 0.0244553853, -0.0143301571, 0.00538898911, 0.0166830961, -0.00105597626, -0.036371883, -0.0346109718, 0.0292219836, 0.0132751297, 0.0219506435, 0.0239088964, -0.0130853765, -0.0220113639, 0.0203263573, -0.0100569166, -0.000730549567, -0.00188140234, 0.000194378372, 0.0194003619, 0.0304971244, -0.000753794331, 0.0115977116, -0.013700177, -0.00151423, -0.00935103465, 0.00549145602, 0.00371157145, 0.0377988257, -0.0076242811, -0.00390511961, 0.0335787162, 0.000143975194, 0.0274610743, -0.0240303371, -0.0057988558, 0.0385578386, 0.00735862693, 0.02598859, -0.00964705, 0.00678936718, 0.0216622185, -0.025229577, 0.0157419201, 0.000849619682, 0.00019544574, -0.0114838602, 0.0183377434, 0.0503377132, -0.0120834801, -0.029100541, -0.0207665842, 0.00689562922, -0.0188842323, -0.0158481821, -0.0233472269, 0.0178367961, 0.00214421051, -0.0167893581, -0.032576818, -0.00199620309, 0.0147324335, -0.00885008648, 0.033335831, -0.0112030255, -0.0243794844, -0.02656544, -0.0215407759, 0.0261707529, -0.0388007239, -0.0380417109, 0.00614800164, -0.00484629534, 0.00725616, -0.0190815758, 0.00189089007, -0.0338216, 0.00675141672, 0.02598859, -0.0248045307, -0.0293282457, 0.0113396477, 0.000254269195, 0.00107400282, -0.0262162946, -0.00661858963, -0.016652735, -0.0158481821, -0.0106793065, 0.0282504484, 0.010982912, 0.0011707769, -0.00328462687, 0.026671702, -0.00349715049, 0.0140189622, -0.015999984, -0.0116812037, -0.0201290138, -0.0311498754, 0.0109221907, -0.0272030104, -0.00929790363, 0.0120151686, -0.0238329936, 0.045024626, 0.0211309101, 0.00158159249, -0.0168500785, -0.0170777831, 0.0017191635, -0.0254269205, 0.00469069742, -0.0162276886, 0.00162997947, 0.0180341378, -0.022223888, -0.0184440054, -0.0267931428, -0.0117191542, 0.0262162946, -0.0404705517, 0.0118481861, 0.0382542349, 0.0228462778, -0.01210625, -0.0122049218, -0.00726754544, -0.020341536, -0.0344895311, -0.00645540189, 0.000843452697, 0.0279013012, 0.00546489051, -0.00428462587, -0.00851612072, -0.00423149485, 0.00385009125, -0.021100549, -0.0228462778, 0.00330170454, -0.00486906571, 0.00150569121, -0.0299809966, -0.0469373353, 0.00605692, 0.00192314805, 0.0152789233, -0.0069601452, -0.0271574687, -0.0155445775, -0.00299809966, 0.0283567086, 0.0110132722, 0.0118937269, 0.0243946631, 0.00600378914, 0.0103073902, 0.0338216, -0.00595445372, -0.029100541, 0.0269601271, 0.0209335666, 0.00894875824, -0.0116887931, 0.0153396437, 0.0215255972, 0.0377077423, -0.0100113759, 0.0273548122, -0.0189145934, 0.000472248124, 0.0238026343, 0.0141631747, -0.00664515514, -0.000645160675, -0.00173244614, 0.0191119369, 0.0243643038, 0.025047414, -0.0157571, 0.00617456716, 0.00433775689, -0.0269601271, -0.0181555804, 0.0136394557, 0.020341536, 0.0173965674, -0.0119772181, -0.00620492781, 0.0281290058, 0.0191119369, -0.0087817749, -0.0487893261, -0.0143301571, -0.0243491232, 0.0259734094, 0.0403491072, 0.00677798223, -0.0130094755, 0.0453282297, 0.0198405888, -0.0156052979, 0.0107172569, -0.000213828069, 0.0199620295, -0.0261707529, 0.00342314667, 0.0113244671, -0.0130398357, -0.0295559485, 0.00930549391, 0.00589373242, 0.00944970641, 0.00911574066, -0.0096242791, 0.0268083233, -0.0150360391, 0.00372485421, 0.000449003361, -0.0346413329, -0.0111574847, 0.00409487262, 0.0613889359, -0.0120758899, -0.0212219916, 0.00348576531, 0.00639088592, -0.0108842403, 0.00183301535, 0.00848576054, -0.0229221787, 0.0210853685, 0.00656925375, -0.00564705348, -0.00412902841, -0.0128349029, -0.00240796735, -0.0122580528, -0.019218199, -0.0141252242, 0.00985198282, 0.00793927163, 0.00544971041, -0.0114155486, -0.0294952281, -0.0166223757, 0.00108633668, 0.00867551379, -0.0027400353, 0.0035180233, 0.00102276937, 0.018565448, 0.0121973315, 0.0137381274, 0.0219810046, 0.0111347139, 0.0289183781, 0.0135863246, 0.00910056103, 0.00287096505, -0.00975331105, -0.0274155345, 0.00281214155, -0.0195521638, -5.98908337e-05, 0.0343680903, -0.0143225668, 0.000730075233, 0.0102087194, -0.00938898511, -0.00917646196, -0.017912697, -0.0110056819, -0.00280834641, -0.00901706889, 0.0235901102, -0.00540796435, -0.0176698118, -0.028812116, 0.0604174, -0.0116887931, -0.00825046655, -0.0119392676, -0.0213130731, -0.0250018742, -0.0118026454, 0.0172599461, 0.0279164817, -0.015453496, 0.0160455257, 0.0033832984, 0.00817456562, 0.0115142204, -0.0138292089, -0.0243491232, -0.0157571, -3.83064144e-05, 0.0260037705, -0.0113775982, 0.0116508426, 0.0242125, -0.0146185821, 0.0104440125, 0.0262011141, -0.011817826, -0.0125996089, -0.0148842363, -0.0598709099, -0.00870587397, 0.026094852, 0.0046223863, 0.0226641148, 0.0194003619, -0.00905502, 0.0268083233, -0.00966982, 0.00143927755, -0.00189183885, -0.00465274695, -0.0016015165, -0.00370018627, -0.00488424581, 0.0165920146, -0.0151195303, -0.013335851, -0.0166982766, -0.0144743696, -0.031817805, 0.0209032055, -0.0084554, -0.00735862693, -0.0212978926, -0.0294041466, 0.0184743665, 0.00333396276, 0.000633301097, -0.0211460907, 0.0234231278, -0.0523415059, -0.00992788468, -0.00544212, -0.0112106157, -0.00941175595, 0.0135939149, 0.00211005495, -0.0299961772, 0.0171688646, -0.031089155, 0.00638709078, 0.00355787133, -0.0166071951, -0.00263567106, -0.000827323704, -0.0119620375, 0.0040189717, -0.00891839806, 0.0159240831, -0.0104136523, 0.00273434282, -0.0169715211, 0.0394382924, -0.0243187621, 0.00523718679, -0.0144971395, 0.0108311092, -0.0156660192, -0.0222542491, -0.00630739424, -0.00349145778, -0.010170768, 0.0153927747, -0.0102998009, 0.0224060509, 0.00641365629, -0.00691080932, 0.00570397964, 0.00159297767, -0.0145958113, -0.0152637428, 0.0075825355, 0.0177912544, 0.00292978855, 0.0163946711, -0.002660339, -0.0150284488, 0.0288424771, 0.00232827105, 0.0140645029, 0.0204477981, 0.0195521638, -0.00290512061, -0.00423908513, 0.0101783583, -0.0104136523, 0.0173965674, -0.00744591327, -0.0272333715, -0.0265502594, 0.0175787304, -0.00180170604, -0.00546109537, 0.00597342895, 0.0088197263, -0.001388993, -0.012523707, -0.00387286162, -0.00692219473, 0.00699809566, 0.00330360211, -0.00959391892, 0.0151043497, -0.0239088964, -0.00565084862, -0.0164857525, 0.0238481741, -0.00401138142, 0.0103908824, 0.0212068111, 0.0138216186, -0.00601137942, -0.000792219362, 0.00574193, 0.000570208183, -0.00341745396, 0.0194762629, -0.0166223757, -0.0148462858, 0.0133813918, 0.00337001588, -0.00215369812, -0.00628082873, 0.0182466619, 0.00773054315, 0.0216318574, -0.0110967634, -0.0123946751, 0.000729126448, 0.0101176379, -0.021100549, -0.00224288204, 0.0265198983, 0.00960909948, -0.0190208554, -0.0236052908, -0.00583680673, -0.00495255692, -0.0151423, -0.00215180055, -0.0255939029, 0.00576849561, -0.016576834, 0.021464875, 0.0120834801, 0.0153396437, 0.0192333777, 0.0217988417, 0.0153624145, 0.00354648614, -0.0128804436, -0.0312713161, 0.020994287, -0.0151423, -0.00725616, 0.0163035896, -0.0034800726, 0.00614041183, -0.0229221787, 0.000483396114, 0.0214952361, -0.0195066221, 0.00538519397, 0.0202808157, 1.43426687e-05, 0.0415938869, 0.0120910704, 0.000137808223, -0.00769259222, -0.00614800164, 0.0137912584, -0.0186413489, 0.0150739895, 0.0176090915, 0.0180341378, 0.00292789098, -0.00741934776, -0.00184534932, 0.00361479726, 0.0237570927, -0.0236052908, 0.00903224945, -0.0088197263, -0.0210094675, -0.0400455035, 0.018277023, 0.00752181467, 0.00527513726, 0.0121442014, 0.0159544442, 0.0224667713, 0.00148576708, 0.0222694278, -0.0118937269, 0.00711574266, -0.00841744896, 0.00125901203, -0.00127514114, -0.00472105807, 0.00570777431, 0.01270587, -0.00793927163, 0.0402580276, 0.0353699848, -0.00596583867, 0.00768500241, 0.0103832921, 0.00162049185, -0.0149753178, -0.030041717, 0.00752181467, 0.0155369872, -0.00932067446, 0.016758997, 0.0316052847, -0.0190208554, -0.000134487535, 0.0245009251, -0.0102087194, -0.00611384632, 0.0034629947, -0.0172144044, 0.00995065458, 0.0081442045, -0.0186261684, 0.0178216156, 0.00602276484, -0.033335831, -0.0294496883, -0.0153092835, -0.0203718971, 0.0096242791, -0.0120834801, -0.000865748676, -0.015271333, -0.0612978563, 0.0167438164, -0.0148083353, -0.00455407519, -0.0104743736, -0.00563187338, 0.0154459057, -0.00376470224, 0.012865263, -0.0262921955, 0.0200986527, -0.0272333715, -0.00249145878, -0.00686147343, -0.0055825375, -0.00380075537, -0.0310739744, -0.00334345037, 0.0217988417, -0.0152485622, -0.00675521186, 0.00932067446, 0.000259250228, 0.00976849161, -0.0011603405, 0.0113168769, 0.016106246, 0.0186109878, -0.0182163, 0.00448576408, -0.00394686544, 0.0350967422, 0.0126906903, -0.00711194752, -0.00497912243, 0.0097988518, -0.00175616529, -0.00874382444, -0.0303605031, 0.000539847708, -0.00912333094, 0.021859562, 0.0455407538, -0.0397418961, -0.00490322104, -0.0110436324, 0.00521441642, -0.0192789193, -0.00208728458, 0.0145350909, 0.00854648184, 0.00419733953, -0.017988598, 0.0145426812, -0.0251233149, -0.0154990368, -0.0265198983, -0.00197722763, -0.0277039576, -0.0145806316, 0.0233168658, -0.00422011, -0.00161290169, -0.0161669683, -0.0126603292, -0.0129487542, 0.00471726293, 0.00888044666, -0.016865259, 0.0273548122, -0.0166223757, 0.0125692477, 0.00735483179, -0.00788614061, -0.00414041337, 0.0198405888, -0.0276584178, 0.00633395975, -0.0250322334, 0.00661479449, -0.000217504537, 0.00935103465, -0.0183681045, 0.0126071982, -0.00562428311, -0.0229525398, 0.0035388961, -0.0108083393, 0.0146717131, 0.00500948308, 0.000412001507, 0.022982901, 0.0160303451, 0.00378178013, 0.0337608792, 0.018383285, -0.0180493183, 0.0175635498, 0.0148918265, -0.00440606801, 0.0124326255, -0.0322124921, 0.00671346625, 0.00684629334, 0.0334269144, 0.0253813807, -0.015347234, 0.00613661669, 0.00226755, -0.0066831056, 0.0100872768, 0.0131992288, 0.0188386925, 0.0111043537, -0.016865259, 0.003660338, -0.0253510196, -0.0163946711, -0.0129183941, -0.0280075632, 0.0100265555, -0.0148083353, 0.000773718406, -0.00291840336, -0.0168348979, -0.00251043402, 0.00646299217, -0.0204629786, 0.0110056819, -0.00311954156, -0.00193832838, 0.00293168612, -0.0250929557, -0.00188994128, -0.0218140204, -0.0112789264, 0.00711194752, 0.0200075712, -0.0132903103, 0.0113320574, 0.0142163057, 0.0106717162, -0.0294345077, -0.0288880188, 0.00527513726, 0.0117798746, 0.0117343338, -0.0063225748, -0.020341536, -0.0342466459, 0.0199468508, 0.0198557694, -0.00494876178, 0.030512305, 0.0104971435, 0.00895634852, 0.010170768, -0.0191878378, -0.0160151646, -0.0297988337, 0.00193832838, -0.0165009331, 0.00029174544, 0.00396963581, -0.0155597571, 0.0206147805, 0.00588614261, -0.00193263579, 0.00854648184, 0.0126527399, 0.00560151273, 0.00607210072, -0.0144515987, 0.00925236288, 0.0112257954, 0.00753319962, -0.0241821408, 0.00322390581, 0.0337608792, -0.022800738, 0.0162732285, -0.00136337627, 0.00612902641, 0.00795445126, -0.0116053019, 0.00237570936, 0.00522200624, -0.0183529239, -0.0116584329, 0.00932826474, 0.00754837971, -0.0089639388, -0.00449714949, -0.00404174207, 0.0242884029, 0.00650853291, 0.01270587, -0.0106337657, -0.00101707678, 0.00191935303, 0.0237267334, -0.00170967577, -0.00439088745, 0.00263187615, -0.00376280467, -0.0129487542, 0.0147096636, -0.0216014981, -0.00704743154, 0.00223339442, 0.00262808101, 0.00296773901, -0.015817821, 0.0152106117, -0.0143149765, -0.00160341407, 0.00200758828, 0.029859554, 0.00462618144, 0.01694116, 0.0226489343, 0.0146641228, -0.00401138142, 0.0112561565, 0.0078406, 0.000302656263, 0.0168956202, 0.0130929668, 0.00133681088, 0.00513092475, 0.00765843689, -0.00597722409, -0.014747614, 0.0188235119, -0.0168500785, -0.01270587, 0.0225882139, -0.00456925575, 0.00765084662, 0.0173813868, 0.0158330016, -0.0170018822, -0.00840986, 0.0178975165, 0.0100265555, 0.0178975165, -0.00231878343, -0.0236508306, -0.0238785353, 0.015294103, 0.0252143964, 0.00377039495, -0.00121821521, -0.0130018853, 0.00463377172, -0.00938139483, 0.0110739935, 0.00840986, 0.0043036011, -0.0507627614, 0.0118102357, 0.0116963834, 0.00413282355, -0.002203034, 0.0145882219, -0.00755217485, -0.00156736095, 0.00716507854, -0.0136774061, 0.00972295087, -0.00709676743, -0.0233775862, 0.000339658116, 0.00523339165, 0.00111290219, 0.0201897342, 0.000533680723, -0.0125540681, -0.0240910593, -0.00830359757, 0.00728652067, -0.00188614626, 0.00128462876, -0.00695635, -0.0118254153, -0.0230588019, 0.00533206342, -0.00824287627, -0.0129487542, 0.028994279, 0.000641365594, -0.000435009075, -0.0190967564, 0.00467931246, 0.0173206665, 0.0123263644, -7.69686158e-05, 0.00419733953, 0.00991270412, 0.00135293987, 0.0163339507, -0.00140701956, 0.00266223657, 0.018747611, 0.0162732285, -0.0271574687, 0.011058813, 0.0071195378, 0.0279923826, 0.0112409759, 0.0184895452, 0.043719124, -0.00244971295, 0.00181783515, 0.00548766088, -0.0151498904, 0.00757874036, 0.00314231194, 0.0034629947, 0.0089032175, -0.010459193, 0.0339430422, 0.0137229469, 0.00692219473, -0.0128349029, 0.00116508431, 0.0045806407, -0.00555597199, -0.0252447575, -0.0115294009, -0.0185199063, -0.013700177, -0.0237722732, 0.00608348567, -0.00607210072, 0.0171233229, -0.00324667618, -0.00483491, 0.0081214346, 0.00919923186, -0.0142087154, -0.0163491312, 0.0338519588, 0.00191745546, -0.0224060509, -0.00170113693, 0.0199923906, -0.029464867, 0.004759009, 0.0176849924, 0.0143073872, -0.00156071957, -0.00303225522, -0.00581403635, 0.00202846108, 0.00633395975, 0.0128424922, 0.00620113267, 0.00298861205, -0.00459202612, 0.0122276926, 0.0295407698, -0.000203510237, -0.00695635, -0.0200834721, -0.00187096593, -0.0060607153, 0.0166679155, -0.00549904583, -0.00713471789, -0.00343453186, -0.00212523527, 0.00148861343, 0.00987475365, -0.00587855233, -0.00825046655, -0.00880454574, 0.0119772181, -0.00943452585, -0.0016223893, -0.0149980886, 0.0126147885, 0.0037191615, 0.00642883638, 0.00405312702, 0.00292978855, 0.0015322566, 0.0170626026, -0.00477418909, -0.00526754698, 0.0264136363, 0.00203605113, 0.0210853685, 0.0134724732, 0.00195066223, 0.00383491092, 0.0130322454, -0.00834154803, -0.00123149785, 0.0337912403, 0.0015379492, -0.0130322454, 0.00903224945, 0.00755976513, -0.0169108, -0.0221328065, 0.00171821471, -0.0172903053, -0.0243187621, 0.0225274935, 0.0088197263, 0.0218140204, 0.0336090773, -0.000919828366, 0.0143453376, 0.00196584244, -0.0208273046, 0.000897058, -0.0125009371, -0.00499430252, 0.0183073822, -0.0166071951, 0.0104819639, -0.00795445126, 0.00330170454, -0.00510056457, -0.0059582484, -0.00409866776, -0.0102618495, -0.0203263573, 0.0299809966, -0.0088424962, 0.00695635, 0.00779505912, -0.00356735894, -0.010823519, 0.0293282457, -0.00273244525, -0.0182466619, 0.0110208625, 0.00975331105, 0.00913851149, 0.00836431887, -0.0113851884, -0.00980644207, -0.00956355873, -0.0048994259, -0.00238140184, -0.0146641228, 0.0352485441, -0.0400455035, -0.0182922035, -0.0109146, 0.0323642939, -0.00212713261, 0.0354003459, 0.00486527057, -0.00158348994, 0.0146793034, -0.0207362231, -0.0173813868, -0.00641745143, 0.00357494922, -0.0250322334, 0.0194914434, -0.0240910593, -0.0152485622, 0.0245312862, 0.011635663, -0.00411384832, -1.30010549e-05, -0.00177988445, 0.00650094263, 0.0201290138, -0.00262428587, -0.0206451416, 0.0195825249, 0.0237267334, -0.00321062305, -0.0242428612, -0.0102087194, -0.000588709139, 0.0177760739, -0.00120018865, -0.00322390581, 0.0169715211, -0.0249259733, 0.000629506, 0.0102770301, -0.0207969435, -0.0036185924, -0.00492219627, 0.00768120727, 0.00359392446, -0.0193092804, -0.00954837818, 0.0108994208, -0.00371726393, -0.00861479249, -0.0176698118, 0.0141631747, 0.00877418555, 0.00931308419, 0.0165616535, -0.0268083233, 0.00894116797, -0.00557874236, -0.0159544442, 0.0138443895, -0.00521062128, 0.016652735, 0.0326375403, -0.00123244664, -0.00257874513, 0.0116508426, -0.0144364191, -0.00795445126, 0.00462997658, -0.00501707289, 0.000860530476, 0.00963186938, -0.0201897342, 0.00681593269, -0.00651232759, 0.00208348944, -0.0150967594, -0.0274307132, 0.00746488851, 0.0217229389, 0.00292789098, 0.000223315728, -0.0113700079, 0.00375900976, 0.00621631276, 0.00404174207, -0.00581024121, -0.00206071907, -0.0186413489, -0.00559771759, -0.0207817648, -0.012941164, -0.00379126775, 0.00833395775, 0.0355521478, 0.00278557604, 0.00917646196, 0.00716507854, -0.0195066221, -0.00328083173, 0.027506616, 0.00300758728, -0.0097988518, 0.00788614061, -0.0182466619, -0.000346062297, -0.0220569056, 0.00634155, -0.0169259794, -0.0102922106, 0.00206641178, -0.00559012732, 0.0104288328, 0.000529885641, -0.00339658116, -0.00971536059, -0.00208728458, 0.00780264894, -0.026853865, -0.0213130731, 0.00108538801, -0.000540322042, -0.0043795025, 0.00821251608, 0.0180644989, 0.0190512147, -0.00650473777, -0.00856925175, 0.0331840292, -0.0125844283, -0.017153684, -0.0205692407, -0.00999619532, 0.00705881696, -0.0106261754, -0.00671346625, -0.00420493, 0.000448291801, -0.00913092121, 0.0113168769, -0.0117495144, 0.00988993328, -0.00277229329, 0.0025218192, -0.00726754544, -0.0030379477, 0.0138140284, 0.00439847773, 0.00971536059, 0.0211460907, 0.0158633627, -0.000309772, 0.004641362, 0.00447058398, -0.00420872448, -0.00101517932, -0.00470208284, 0.0026223883, -0.0195977036, -0.00871346425, -0.0189449526, 0.0230132602, -0.0233472269, -0.0241821408, -0.0185958073, -0.005320678, -0.0140265524, 0.0125844283, 0.0126071982, -0.00754837971, -0.0104136523, 0.00456546061, 0.00116318674, -0.00615559192, 0.0010322571, 0.031089155, 0.00224477961, -0.000393974944, 0.00789373089, -0.00510056457, -0.00777228875, 0.0173206665, -0.00423149485, 0.00115464791, 0.0158481821, -0.00744591327, 0.0128804436, 0.00248956122, -0.00141745596, -0.00781023921, -0.0157571, -0.0103605213, 0.00298481691, 0.00859961193, -0.00802276284, 0.015999984, 0.0124174459, -0.0239696167, 0.0244553853, 0.030436404, -0.0157874618, -0.00115654536, -0.0231195223, 0.016865259, -0.0031821602, -0.0033415528, -0.00094639376, -0.00687285885, 0.0176090915, -0.0299354549, -0.0419582129, -0.00586716691, 0.0204933397, 0.0106793065, 0.0154762659, 0.0170626026, 0.0105199143, 0.0239240751, 0.00594686344, 0.00466792705, -0.00237381179, -0.00420872448, -0.00152656401, -0.0230588019, 0.00145445787, 0.00778746884, -0.00989752356, -0.0291157216, 0.0166679155, -0.0126603292, -0.00657684403, 0.0103377514, -0.0194459017, 0.00600758428, 0.00511194952, -0.0096242791, -0.000662712846, 0.0244250242, 0.0120379394, 0.00730549591, 0.0149070071, -0.0179582369, -0.0073813973, 0.00494496664, -0.00425806036, 0.000109226654, -0.00840986, -0.0169259794, 0.0284477901, -0.0208273046, 0.00421251962, 0.0124933468, -0.00811384432, 0.00347248255, 0.0141631747, -0.000171489402, 0.011400369, -0.00697912043, 0.00763187138, 0.0157267395, -0.0148007451, 0.0205996018, -0.0112637468, 0.0115142204, -0.0156356581, 0.0125540681, -0.0156963803, -0.0220569056, 0.0149677275, -0.0152333826, -0.00407210225, 0.0237570927, -0.000414610608, 0.0159848053, -0.0205085203, 0.0201441925, 0.00992788468, 0.00228652544, 0.0102011291, 0.00168405916, 0.00381973083, 0.00515369512, -0.00891080778, 0.040865235, -0.0113851884, 0.0196887851, 0.010982912, 0.00934344437, -0.0173206665, 0.003660338, 0.00274383044, -8.5611282e-06, -0.000609581941, -0.00974572171, -0.00741934776, -0.0192637388, -0.0123719051, -0.0120151686, 0.00334914285, 0.0064819674, -0.00995065458, -0.00739657739, 0.0122276926, 0.018383285, 0.0140037816, 0.0170018822, 0.00225237, -0.0209791064, -0.0238481741, 0.0174572896, 0.0112713361, -0.0120151686, 0.00221252162, 0.0192333777, -0.00466033723, -0.0034421219, 0.00242884015, -0.0122201024, -0.00831118785, 0.00258254027, -0.00930549391, -0.00737001188, 0.0132447695, 0.00554838171, 0.0188994128, 0.0030379477, 0.0055218162, -0.00492978655, -0.000176114627, -0.0268994048, 0.00123908801, -0.0244705658, 0.00721441442, 0.0018519907, -0.0197343268, -0.0232257843, -0.00214231294, -0.00291271065, 0.0149904983, -0.00211385, -0.00260341307, 0.00556356227, 0.0157722812, -0.0103377514, 0.0140720932, 0.0261555724, 0.000282257795, 0.00367931346, -0.00275711319, -0.00527513726, 0.00986716338, 0.000459439791, -0.0083794985, 0.0176394526, -0.0195521638, -0.0133662112, 0.00114610896, 0.0203870777, 0.0152106117, -0.00169354677, 0.00305692316, -0.0156963803, 0.0174269285, 0.00132447691, 0.00311574666, -0.00101517932, 0.0195673443, 0.0124326255, 0.00420493, 0.0163946711, -0.00612902641, 0.0340341218, -0.00432257634, 0.0118861366, 0.0196432453, 0.03445917, -0.00869828369, -0.00781782903, 0.0223605093, -0.0247741695, -0.00910815, -0.0105730454, -0.00706640678, -0.0140493223, 0.00450094463, -0.00201328075, 0.0150436293, -0.0119392676, 0.00170493196, 0.022618575, 0.0181100406, 0.00598860905, -0.00775331352, -0.0219051018, -0.00686147343, 0.0176090915, 0.00691460446, -0.00804553274, 0.0130777862, -0.0254421011, 0.0183529239, -0.0122428723, 0.00620113267, 0.0118102357, -0.0184136443, -0.0144743696, 0.0125085274, 0.0149070071, -0.0147779742, -0.00422390504, -0.0120834801, 0.0261100326, 0.00284819468, -0.0132599492, -0.0146337627, 0.0121214306, 0.00880454574, -0.00255217985, -0.00327324169, -0.0123567246, 0.0251840372, -0.00810625404, -0.00086290238, 0.00501707289, -0.00328652444, 0.0192789193, -0.0207817648, 0.0126982806, 0.0197495073, -0.0128956232, -0.0097988518, 0.00118311087, 0.00216128817, 0.00920682214, -0.00046987622, 0.00264895381, -0.0246527288, -0.0226944759, -0.010170768, 0.0205844212, -0.0165464748, 0.0085844323, -0.0103377514, 0.0157874618, -0.00116413552, 0.00159297767, 0.00268500694, 0.0334269144, -0.0363415219, -0.0052789324, 0.0117571047, -0.0100569166, -0.000510910351, 0.013753308, 0.000189160157, 0.00528272754, -2.33930041e-05, 0.000730549567, -0.0170929637, 0.00277039595, 0.00653509796, -0.00170872698, 0.000758538197, -0.00286906748, 0.00656925375, -0.00252751191, 0.00789373089, 0.0123794945, 0.0224515907, 0.00518405577, 0.00571915973, -0.0103832921, 0.0060607153, -0.00591270765, 0.000828746823, -0.00656166347, 1.12888292e-05, -0.000694970891, 0.00666033523, 0.00356925651, 0.000219164882, -0.00716507854, -0.00199430552, 0.00208918215, -0.0164402127, 0.00398102077, -0.0296014901, 0.00615938706, 0.00356356404, 0.00809107348, 0.0285388716, -0.00513472, 0.026671702, -0.00441365782, 0.00354648614, 0.00255597476, 0.00844022, -0.0120758899, -0.0138443895, 0.00135483744, 0.0186261684, 0.00612143613, -0.0110360431, 0.00111954357, -0.0294800475, -0.00274572801, 0.0253965613, -0.0112409759, -0.00866033323, -0.00659581926, -0.0110056819, -0.0234079473, 0.00299999723, 0.00144876528, -0.00318975025, 0.017988598, 0.000192955224, -0.0348234959, 0.0102542602, -0.0156812, 0.0138367992, 0.00441365782, 0.0154231349, 0.00346109737, 0.00422011, 0.00351043302, -0.0406830721, 0.00461859163, 0.0228766389, 0.00408728281, 0.0320606902, 0.0112561565, -0.0169259794, 0.00604174, 0.00762807624, -0.00100758916, -0.0223605093, -0.0114079593, -0.000770397775, -0.000590606651, 0.0207210425, 0.00872864481, 0.00189183885, -0.00697532529, 0.0287362151, -0.0156204784, -0.0218443815, 0.0249107927, 0.0194307212, 0.000780359784, 0.00728272554, 0.0171840452, -0.00392409507, 0.00281403912, -0.00541555462, 0.0201745536, -0.0116887931, -0.020523699, -0.00791650079, -0.0182163, -0.00534724351, 0.0224971324, 0.00554838171, -0.0171081424, 0.0044629937, 0.0156508386, -0.0106034055, -0.0116053019, 0.000624762208, 0.00800758228, -0.0157571, 0.0269904863, -0.00598101877, -0.0163187701, 0.00831877813, 0.0259734094, 0.0126831, -0.0183984637, 0.00419354439, 0.0119240871, -0.0063035991, 0.0195218027, -0.0239696167, -0.00233586109, -0.0195066221, 0.00474382844, -0.00202846108, 0.00269069965, 0.00323339342, 0.0190056749, -0.00475141872, -0.0156204784, -0.00451992, -0.012812132, -0.00547627546, -0.00730170077, 0.0138064381, 0.0238329936, 0.010223899, -0.0109146, -0.00253510196, -0.0143301571, -0.00831877813, 0.00271347, 0.00887285732, -0.00319544296, -0.0409866795, -0.0031233367, 0.00375331705, 0.00355217885, 0.007999992, 0.013753308, -0.00373054668, -0.00724856975, 0.016865259, -0.00491081132, 0.00697912043, -0.000540796435, -0.0142466659, 0.0266109798, 0.0114762699, -0.022907, -0.00785578, 0.0145806316, -0.00672864635, -0.00367741589, 0.00978367217, -0.0115977116, -0.0134497024, -0.00537760416, -0.00384439854, -0.000345587905, -0.00233586109, 0.0125616575, -0.0137457177, 0.00970777, 0.00756356027, -0.0311498754, -0.0132599492, 0.013100557, -0.00200379314, -0.0117267445, -0.000985767576, 0.00108254165, -0.00422011, 0.00669449102, 0.00109013182, 0.00522580137, 0.00628082873, -0.0149373673, -0.00230170554, 0.00139183924, 0.00117836695, 0.0166982766, 0.00653130328, -0.00475521386, 0.0350663811, 0.0151195303, -0.00566602871, 0.00234345137, 0.0101404078, -0.00166982762, 0.0280986447, 0.035430707, -0.00982921291, 0.00448955921, -0.00116223795, 0.00107210525, 0.00724098, 0.0351271, 0.00361100235, -0.0100796865, 0.011218206, 0.00250663888, 0.0378899053, -0.000824477407, -0.0376166627, 0.0216622185, -0.0601441562, -0.0119013172, 0.000228652541, 0.010170768, -0.00214231294, 0.0115977116, 0.0372826979, -0.00935103465, 0.0246982686, 0.000597248, -0.0121366112, -0.00375521462, 0.00561669283, 0.00370777631, -0.0298747346, 0.00731308619, 0.0109070102, 0.00240227487, 0.00527513726, -0.00793168135, 0.00628082873, -0.018277023, -0.00581783149, -0.00586716691, 0.0039582504, 0.00501327775, 0.00741934776, -0.00231119315, -0.00916887168, -0.00976090133, -0.0106489463, 0.0215559565, 0.0109449616, 0.00172865111, -0.00818215497, -0.00531308772, -0.000722959463, 0.000170896426, -0.00385009125, -0.012759001, -0.00415179878, -0.0027400353, 0.00662238477, -0.00451612473, -0.00766982185, -0.00887285732, 0.00472485321, -0.0187627897, -0.0151195303, -0.0102163088, -0.0216773991, 0.00393548, -0.0196128841, -0.000848670898, -0.00330360211, 0.0146109918, -0.012576838, 0.00209487462, 0.0201593731, 0.00751801953, -0.00846299, -0.0287817568, -0.00741555262, 0.00516887568, 0.0179430563, 0.00658822898, -0.0173965674, -0.0216622185, -0.0342162848, 0.0265806206, -0.034853857, -0.0148690557, -0.0125085274, -0.0152637428, 0.0178975165, -0.0122504625, -0.0127665913, 0.00221062405, 0.00308348844, 0.015400365, 0.00897911843, 0.00662617944, 0.00878936518, 0.0163187701, 0.0127362311, 0.000708253589, -0.00530929305, -0.0109677315, 0.0147400238, 0.0163794905, -0.00400379114, 0.0148159256, -0.0173965674, -0.0165616535, 0.0032998072, -0.0143149765, -0.0191271175, 0.00525236689, 0.00387096405, 0.00868310407, 0.00287665753, -0.0264136363, 0.00879695546, -0.00631877966, 0.0384060368, 0.00652750814, 0.0124629866, -0.00832636748, -0.00120398367, 0.0245616473, 0.0255787242, 0.0179278776, 0.0132219987, -0.0230284408, 0.0243794844, 0.00444401847, -0.0018519907, -0.00620113267, -0.00537760416, -0.00694496511, 0.00202087103, 0.00943452585, -0.017335847, -0.0289183781, 0.00028913634, 0.0217229389, 0.0237570927, -0.00692598941, -0.019036036, -0.0207210425, -0.00132637448, 0.00878936518, 0.00372295664, -0.000350806105, 0.00436811708, -0.00650094263, -0.00768879708, 0.0114079593, -0.00685767829, 0.00624667341, 0.00987475365, 0.0210094675, 0.015817821, 0.0118481861, -0.0240303371, -0.0241973214, 0.00271157245, -0.018277023, -0.00354269124, -0.0223453306, 0.0068007526, 0.00662617944, 0.00671346625, -0.010929781, -0.00318785268, -0.0214496944, -0.0145199103, -0.00802276284, 0.0142087154, 0.0103984717, 0.034853857, 0.0180341378, 0.0168348979, -0.00838708878, 0.0258823279, -0.0116584329, 0.0120607093, -0.00286717, -0.00207400182, 0.0149449576, 0.00551422639, -0.00470208284, 0.00815179478, -0.00699809566, 0.00445919903, -0.030147979, -0.00332637248, -0.0272637308, -0.00834154803, 2.81516568e-05, -0.00114041637, 0.00316697988, 0.002777986, 0.00122106145, 0.0114079593, -0.0132599492, -0.0019791252, 0.0224819519, 0.0178975165, -0.00436811708, 0.00982162263, 0.026853865, -0.00349335535, -0.000153107059, -0.00577988056, -0.0103832921, -0.000111954352, -0.00398481591, 0.0172599461, -0.00283301435, 0.0209487472, 0.00286906748, 0.00222390681, 0.00721061928, 0.00429980597, -0.0204781592, -0.0114535, 0.00229791063, 0.00570397964, -0.00148576708, 0.00216698088, -0.0134269325, -0.00197533029, 0.00505502382, 0.00589373242, -0.0100948671, -0.029100541, -0.0108994208, -0.0100645069, 0.00976849161, 0.0229221787, 0.00866033323, 0.020629961, 0.0178367961, 0.0398633406, -0.00244781561, 0.0188235119, 0.0180493183, -0.0229980815, 0.0201290138, 0.0128045417, -0.00404174207, -0.0116963834, -0.00793927163, 0.000239563335, 0.0251081362, 0.00775331352, 0.00767361699, -0.00823528599, 0.015999984, 0.0347020552, -0.00867551379, -0.0123263644, -0.00391650479, 0.00118975225, 0.016182147, -0.0179278776, 0.0108538801, 0.00253130682, 0.000229719895, -0.00406830711, -0.00126849976, -0.00075332, 0.0241669603, 0.0174421091, -0.013700177, -0.0121290209, 0.00988993328, -0.00682352297, -0.000227229393, -0.0073396517, 0.00396204554, 0.00424288027, -0.0304667652, 0.0140417321, -0.00243073772, -0.0105123241, -0.00815938506, 0.0113396477, -0.0124250352, -0.00650094263, -0.0141935349, -0.0161517877, -0.00021833471, 0.00512333494, 0.0132068181, -0.0052637523, 0.0218747426, -0.0246679075, -0.0166982766, -0.0244705658, 0.0097988518, -0.00422011, 0.00279316632, 0.00590511784, 0.00927513372, -0.0162580498, -0.0120379394, 0.0040189717, -0.000777039095, 0.0115977116, -0.0201593731, 0.0109677315, 0.0142466659, -0.0166679155, -0.00903224945, -0.00531308772, -0.00659202412, -0.0106034055, 0.00744970841, 0.00843262952, -0.0231347028, -0.0181100406, -0.0214193352, 0.0102542602, -0.0208576657, -0.00909297075, -0.0106337657, 0.00281214155, -0.00276280567, -0.00869069342, -0.00620872295, -0.00401138142, 0.00561289769, 0.00959391892, -0.00357874413, -0.0319392495, -0.00384060363, 0.00996583514, 0.00570777431, -0.00912333094, 0.0181555804, -0.00689183408, 0.0140720932, 0.0117798746, 0.00718784891, 0.0262011141, 0.00680454774, -0.0140569126, -0.0167741776, 0.0101252273, 0.00352561334, -0.016652735, -0.0107552083, -0.0121290209, -0.0104212426, -0.0119848084, -0.0127362311, 0.00192504562, -0.0136090955, -0.0116508426, -0.0054800706, -0.0096242791, -0.00544212, 0.0121593811, -0.00146774051, -0.00842503924, 0.010170768, 0.0214952361, 0.00919164252, -0.0106868967, -0.00611764146, -0.00547248079, -0.00122106145, -0.01210625, -0.0032618565, -0.0252903, -0.0430815518, 0.0246527288, -0.0138747497, 0.00221252162, -0.00428083073, -0.0088424962, -0.0296470299, 0.0242884029, -0.0105806347, -0.000594401732, 0.00920682214, -0.00780264894, -0.0269449465, 0.00604174, 0.00294876378, 0.00312713184, 0.0666109398, 0.0205540601, 0.00566602871, -0.0188538712, 0.00799240265, -0.019036036, -0.009685, 0.0405312702, -0.0212675314, 0.00305692316, -0.00497532729, 0.0224515907, -0.00490701618, 0.0125085274, -0.0238785353, -0.00219354639, 0.0189145934, -0.00503225345, -0.0239999779, -0.00874382444, -0.0119544482, -0.0139734214, -0.00447437912, -0.00937380549, -0.00637570536, -0.00558633264, 0.00149715226, -0.00264515867, -0.0084554, 0.0104364231, -0.00521062128, 0.0138140284, 0.00942693558, 0.0102390796, -0.0314838402, -0.0174117479, -0.00120113743, 0.0165161137, 0.00356925651, -0.0129639348, 0.00449335435, 0.0199468508, -0.0141783543, -0.012812132, 0.0102922106, -0.0234231278, 0.0169715211, -0.00916887168, -0.00029696367, -0.0177457146, 0.00403415179, -0.0200986527, 0.00478936918, -0.00263567106, -0.0125692477, -0.0170777831, 0.0164553933, 0.000342267216, 0.00459202612, 0.0107703879, 0.0268386845, -0.0085844323, -0.0128500825, 0.013229589, 0.0157115608, -0.0293282457, -0.0267627835, -0.00712333294, 0.000656545861, -0.00273244525, 0.0130322454, -0.00424288027, 0.00300758728, -0.00647817226, -0.0198102277, 0.0210853685, 0.00252751191, -0.011218206, -0.00609487109, -0.0226641148, -0.0195521638, -0.00263377349, 0.000925520959, -0.0155142164, -0.0109601412, -0.0148918265, -0.0219658241, -0.00122011267, 0.0100948671, 0.022512313, 0.00660340907, -0.00032305473, 0.000787949888, -0.00302846, 0.00379506289, 0.00703604659, 0.00669449102, -0.00237001665, -0.00439847773, 0.00678557251, 0.0150436293, -0.0194155406, 0.015999984, -0.000448054605, -0.00359771959, 0.0177760739, 0.000342267216, 0.00554838171, 0.00997342542, -0.0122276926, -0.00340986392, -0.00503984326, 0.00670587597, 0.0147324335, -0.00115464791, -0.000513282255, -0.00361289969, 0.00708538247, -0.0108462898, -0.00475141872, -0.00723718479, -0.014406058, -0.00478936918, 0.00383111602, -0.00177134562, -0.0066831056, 0.0223908704, -0.0194762629, 0.0349449366, -0.0007101511, -0.00596963381, -0.00902465917, 0.0165312942, 0.00832636748, 0.0257912464, 0.0311498754, -0.0199923906, -0.00138709543, 0.0117115639, 0.0254117399, 0.0120531199, 0.00511194952, -0.0127741816, 0.0237722732, 0.00119544484, 0.0150132682, 0.00350284297, -0.00913092121, 0.00757494522, -0.00725616, 0.0062201079, 0.0107172569, -0.00467551732, -0.00153035903, -0.00775710819, 0.00915369112, 0.00691839959, -0.0214952361, -0.0199468508, -0.0116812037, 0.0131992288, -0.00110246579, 0.0215104166, -0.0185502674, 0.00240227487, -0.0096242791, 0.000842978305, -0.0133662112, 0.0160151646, -0.00524857175, 0.000879980216, 0.0295863096, 0.00185009313, -0.00348576531, -0.0264288168, -0.0244553853, -0.00566602871, -0.00106451509, 0.0225882139, -0.0126223788, -0.0119772181, -0.00685008848, 0.0163187701, 0.065517962, 0.00089610921, -0.00824287627, -0.0101252273, -0.00189848023, 0.0255483631, 0.00359582203, -0.0323642939, -0.0103453416, -0.0101404078, -0.00532447314, 0.0109980917, -0.00236432417, 0.00782541931, -0.0151423, 0.00373054668, -0.00156736095, 0.0275217947, -0.000367646717, 0.0125920186, 0.0012020861, 0.020994287, 0.0141859446, -0.00410625804, -0.00278367847, 0.00123434421, -0.00881213602, -0.00580265094]
08 Oct, 2021
jQWidgets jqxTree clear() Method 08 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for pc and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTree represents a jQuery widget that is used to display a hierarchical collection of items. To display the collection of items, we can populate from ‘UL’ or by using its ‘source’ property. The clear() method is used to remove all elements from the widget. It does not accept any parameter and does not return any value. Syntax: $('Selector').jqxTree('clear'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtree.js”></script> The below example illustrates the jQWidgets jqxTree clear() method. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"></script> <script type="text/javascript" src="jqwidgets/jqxtree.js"></script> <style> h1, h3 { text-align: center; } #jqxTree { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTree clear() Method </h3> <div id='jqxTree'> <ul> <li item-selected='true'> GeeksforGeeks </li> <li>Programming <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> </li> <li>Web Technology <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>jQuery</li> <li>PHP</li> </ul> </li> </ul> </div> <center> <input type="button" id="jqxBtn" value="Clear Items" style="padding: 5px 15px; margin-top: 20px;"> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTree').jqxTree({ width: '350px', height: '250px' }); }); $("#jqxBtn").on('click', function() { $('#jqxTree').jqxTree('clear'); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtree/jquery-tree-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtree-clear-method?ref=asr9
PHP
jQWidgets jqxTree clear() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTree ensureVisible() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, PHP
GeeksforGeeks
[-0.0283164401, 0.0122521669, -0.0103100147, 0.0412400588, 0.0362438895, -0.00110464438, 0.0418176502, 0.0163602885, 0.0204034317, -0.0181508232, -0.0137394657, -0.02191961, -0.000375885953, -0.01703896, 0.00651956815, 0.0181075037, -0.021139862, -0.00573259918, -0.0281720422, -0.0217896532, -0.00288254442, 0.0112630408, -0.0047976221, -0.0123171462, -0.00758089311, 0.0145192156, 0.00668201549, 0.0080935061, -0.0241144598, 0.0337313637, -0.0275944509, -0.0112052821, 0.0208943859, 0.00603583502, -0.0412111767, -0.00782636926, 0.00468571391, 0.0113063604, -0.0296015833, -0.0162303317, 0.00517666712, 0.0223961249, 0.0174721535, 0.00579035841, -4.49269428e-05, 0.0288940314, 0.0306123681, -0.0586833321, -0.00505392859, 0.0323162638, 0.0124398842, 0.0408646241, 0.0210532229, 0.00120482047, 0.0017905347, -0.0173855145, 0.000608276401, 0.019002771, -0.0159848537, 0.0339046419, 0.0392184854, -0.0152051058, 0.0157538168, -0.00259194337, 0.0111836223, 0.0221217684, 0.0147502515, 0.0205622707, -0.0193782058, -0.012302706, -0.0141293406, 0.0439547412, -0.00771807088, -0.0219629295, -0.00432832912, -0.0177609492, -0.0386120155, -0.0393051244, 0.0225405227, 0.0410956591, 0.00563513068, -0.015854897, -0.0236379467, -0.0082956627, 0.00238437136, 0.019955799, -0.0132773928, -0.0414999761, 0.0445034504, 0.0298326183, -0.0155661, 0.0163169689, 0.0316231549, -0.0250386074, -0.00455936557, -0.0351464637, -0.00501421932, 0.00142592983, -0.0501060933, 0.0241000205, 0.00275078113, -0.000741844531, -0.0382943414, -0.0225694012, -0.0203312337, 0.0118478527, 0.0247064922, 0.0302946921, 0.0216452554, -0.00033685338, 0.033211533, -0.0113352397, -0.0193060078, 0.00379405636, -0.0141726602, 0.00131943636, 0.00963856373, -0.0300058965, 0.011753994, 0.00724516762, 0.0137827853, -0.0276810899, 0.0113496799, 0.049759537, -0.028951792, 0.0390163288, -0.0167068448, 0.00400343351, 0.0428284369, 0.0101367366, -0.0631307885, 0.00320924469, -0.00123189506, 0.0180353057, 0.0178909078, 0.018771736, 0.0085628, 0.0280709639, -0.0293272268, -0.0282009225, -0.0393340066, -0.0255151205, -0.000723343517, -0.000906097237, 0.00455575576, 0.0333270505, -0.00655205734, 0.0291106291, -0.0360128507, 0.0191616099, -0.00391318463, -0.0103894332, 0.0176021121, 0.0358973332, 0.0357529372, -0.0084545007, -0.0362150073, 0.00526691554, -0.0280998442, -0.00183836662, 0.0180208664, -0.0213420186, 0.00239520124, -0.0186273362, -0.0577880628, 0.0117828734, 0.00207752571, -0.0208077468, -0.0545824282, 0.0370525159, -0.0135084298, 0.00957358535, -0.0202301554, 0.0318253115, -0.0387564115, -0.021847412, 0.017428834, -0.0518388674, -0.0167790428, -0.00634990027, -0.0279987641, -0.0214864165, 0.000555932173, 0.0192049295, 0.00337891234, 0.0112486016, -0.00312080095, 0.00346013624, -0.0314787552, -0.0284319595, -0.0223961249, 0.0294716246, 0.0333270505, 0.019248249, 0.00895989314, -0.048344437, -0.0293561053, 0.0233347099, 0.0069924714, -0.00794910826, 0.0220351294, -0.0373124331, -0.00937142782, 0.031074442, 0.0308145247, 0.0470737368, 0.00823790394, -0.075491257, 0.0398249589, 0.0224394426, 0.00506836828, 0.00638239, 0.00251974445, 0.00812960509, 0.0101367366, 0.0177320689, -0.0370813981, -0.0316520333, -0.0060466649, -0.00501782913, 0.019248249, 0.0108587267, -0.0166490842, 0.0087793963, -0.0917793438, -0.0212987, -0.00518388674, 0.0107576484, -0.0061441334, 0.0242588576, -0.0277821682, 0.00624882197, -0.0190460905, 0.00402509328, 0.0389008112, 0.0246920511, -0.023031475, 0.0128514189, 0.00158386515, 0.00398538355, 0.0308434051, -0.018540699, -0.0500772148, -0.00763143227, 0.0321429856, 0.0318253115, -0.000294436468, -0.00583006768, -0.0150751472, 0.00898155291, -0.00229412271, 0.0137755657, -0.0162880905, -0.0110103451, 0.0129308375, 0.00729570724, -0.00603583502, -0.0190172121, -0.0172844362, -0.000269166834, -0.00500699924, 0.0216596946, 0.00225621811, 0.0113713397, 0.00372907729, 0.00753035396, 0.0256450772, 0.000967466331, 0.00662064645, -0.044416815, 0.0144975558, -0.00352511532, 0.0412978157, 0.0184107404, -0.027045738, -0.00732458662, -0.0337313637, 0.00808628555, 0.0146058537, -0.0115734963, 0.019002771, 0.0138983037, 0.0368214808, 0.0683868751, 0.0419042893, -0.00177248497, 0.00900321268, -0.0174721535, -0.0107720876, 0.0403736718, -0.0220928881, -0.0110247843, 0.00861333869, 0.0216019358, 0.035724055, 0.00556654157, 0.0255295597, 0.00267858221, -0.0249375273, 0.000437931943, -0.0202734731, -0.0301214159, 0.0109886853, 0.0263526291, -0.00834620185, 0.0495573804, 0.044330176, 0.0119056124, 0.0108298473, -0.0136022884, 0.0131546548, -0.0319697075, -0.0186850969, -0.0385831371, -0.027450053, 0.00858445931, 0.0414999761, 0.0247786902, -0.015927095, 0.00157484028, -0.0174577143, -0.0175154731, -0.0196236838, 0.0469293371, 0.0427417979, 0.00389152509, -0.031940829, 0.0142592993, 0.017428834, -0.0195803642, -0.034713272, 0.00731014693, 0.0565751232, 0.00750869419, 0.0251541249, -0.0329804942, 0.0284463987, -0.0427129157, 0.0171833578, 0.00241144607, -0.0205622707, -0.0146852732, 0.00894545391, -0.0267136227, 0.00575064868, -0.0449655242, -0.0382943414, 0.0072704372, 0.0478823632, 0.0125409635, 0.00140697765, -0.00124994491, 0.0561996885, 0.00686612306, 0.0305546094, 0.00924869, -0.0250674859, 0.0149596287, -0.0291972682, 0.00568206, 0.0232191924, 0.026338188, 0.0315653943, 0.00568927964, 0.00865665823, -0.032720577, -0.0172411166, -0.0223816838, -0.0106926691, 0.0419331677, 0.00814404525, -0.0236379467, -0.0518099889, 0.031709794, -0.0464961454, -0.0333270505, -0.00709716, 0.00238256645, -0.00971076265, 0.00120391801, -0.00505031878, 0.03043909, 0.0259338748, 0.0108731668, -0.0229015164, 0.0274067335, -0.0224250033, -0.00795632787, -0.0171689186, -0.00380127644, -0.0286629964, 0.0645170063, -0.0118839527, -0.0149307493, 0.0185695775, 0.0069274921, 0.00334642269, 0.00415505143, 0.0177176297, -0.0283597596, 0.0197680816, 0.00410812208, 0.00837508217, -0.0211976208, -0.0362727679, -0.0159992948, -0.0242588576, 0.00137358566, 0.00107215485, 0.0318541899, 0.0260493923, 0.0134578897, -0.0146275135, 0.0572682321, 0.0203312337, 0.0187861752, 0.0284175184, 0.0544091538, 0.000974686234, -0.0406913459, -0.00309733627, -0.0442146547, -0.0169378817, 0.0216308143, -0.0274067335, -0.0114651984, -0.0133207124, -0.00480845198, 0.0183096621, -0.00932088867, 0.0201579556, 0.0133929113, 0.0271756966, 0.0314498767, 0.0114796376, 0.00594558613, 0.0435215458, -0.00662064645, -0.0320852287, -0.00544741331, 0.00398538355, -0.0119561516, 0.0379189067, -0.00305943191, -0.0394495241, -0.000333920296, -0.0426551588, -0.0112413811, -0.00548712257, 0.0373413116, -0.00027909418, -0.0253707226, -0.0265547857, 0.00547268288, -0.0012580672, -0.0134506701, 0.0131113352, 0.00105049519, 0.0179775469, 0.00940752681, 0.016244771, 0.00923425, -0.0405758284, 0.00640044, -0.024446575, -0.0510013588, 0.0236812662, 0.0109814648, -0.00968910288, 0.00644375896, -0.0264970269, -0.0231614336, 0.0449366458, 0.0458896719, 0.0393340066, 0.0278543662, 0.010764868, -0.00372907729, -0.0114290984, -0.0224105641, 0.0260060728, 0.0269879792, 0.0232625119, 0.00861333869, 0.00937864743, 0.0102378158, 0.0187284164, -0.00462795468, -0.0145264352, -0.00333920284, 0.0352331027, -0.00135553582, -0.0494418629, -0.0174432732, -0.00133929111, 0.0147430319, -0.0343667157, -0.0417310111, 0.0144181363, -0.00310997106, 0.0188150536, 0.0130535755, -0.0345399939, 0.0637661368, 0.01845406, -0.0331248939, -0.0089382343, 0.0102594756, 0.00173277559, -0.0332404114, 0.00906819198, -0.0229303967, -0.037225794, -0.0278688073, -0.00745093497, -0.0343955941, -0.0268580206, 0.0199269187, 0.0154939014, 0.0045377058, 0.027132377, -0.0127503397, -0.00489870086, -0.00958802458, 0.0168945622, 0.0230025947, 0.00144668703, -0.0106421299, -0.024533214, -0.0320274681, -0.0165913254, 0.00368756289, 0.0280709639, 0.0145047754, -0.010374994, -0.00455936557, -0.0198402796, -0.0179486666, -0.0191616099, 0.0229159575, 0.00190424814, 0.0104327528, -0.0173999537, -0.0151040265, 0.0118334126, 0.031074442, -0.00773251103, 0.00340959686, 0.025312962, 0.0408935025, 0.0257605966, 0.0145625342, 0.0417310111, -0.016013734, -0.0114579787, 0.00872885715, 0.00259735831, -0.0364460461, -0.000160529919, -0.0119994711, -0.00390957482, -0.0190749709, 0.0288073942, -0.000563603302, 0.0227571186, -0.0347999074, 0.0035937042, 0.0386120155, -0.0341356769, 0.0302946921, 0.0285763573, -0.00468932372, 0.00119128323, 0.0103822136, 0.00607554428, 0.0121727483, 0.054178115, -0.00455214595, -0.0129091777, 0.010728769, 0.0152773047, -0.0089382343, 0.018064186, 0.0184107404, -0.0150751472, -0.0184396207, 0.00820180401, 0.0214864165, -0.0252263248, 0.0187139753, -0.00319841481, 0.027450053, 0.0274356138, 0.00784802902, 0.0182374623, 0.00492036063, -0.0272623356, 0.00548712257, 0.0251685642, -0.00828122348, 0.0226127207, 0.0136239482, 0.0306990072, 0.0119922506, 0.0103027942, 0.00655927742, 0.00865665823, -0.0210821033, 0.0214864165, 0.00938586798, -0.0311899595, -0.0159992948, 0.0134362308, -0.00105410512, -0.0172266774, -0.00171111582, -0.0160570536, 0.0208366252, -0.0153639428, -0.0201001968, 0.0143098384, -0.0219629295, 0.015696058, 0.0306701269, 0.0278832465, 0.00900321268, -0.0326917, -0.01131358, -0.0107432082, -0.036128372, 0.0148729905, -0.00823790394, 0.0147213722, -0.0163025297, -0.00424891, 0.0179919861, -0.0112341614, 0.0423086025, -0.0123460256, 0.0440991372, 0.0425396413, 0.0310166832, -0.0159559753, 0.059318684, -0.0186417773, -0.0151906656, -0.0121871885, 0.0146275135, 0.0256595183, -0.018295221, -0.0130391363, 0.00506475847, 0.0175154731, 0.0223672446, -0.00469654379, 0.0104544125, 0.00188619841, -0.0145264352, 0.00276161102, 0.0344244726, -0.0176743101, -0.0160281733, 0.0542936325, 0.0167501643, 0.00726321759, 0.000610081421, 0.0148441102, 0.0352042243, -0.00799964741, 0.0128514189, 0.00559181115, -0.00432471884, 0.00790578872, 0.016013734, -0.0121366484, -0.0121655287, -0.00950860605, -0.00941474736, 0.00121384533, 0.0201290753, -0.0179197863, 0.0164324883, 0.0379189067, 0.00110283948, 0.0111330831, -0.0172411166, -0.031940829, 0.0167357232, 0.0225982815, -0.00163350196, 0.00841840077, 0.00848338, 0.0240855794, 0.000307748152, -0.0246487316, 0.00624882197, 0.0039384542, 0.00996345934, -0.00545463292, -0.0192193687, -9.27305664e-05, 0.0124976439, -0.0262804292, 0.0630730316, -0.0205478296, 0.0331248939, -0.00646180892, 0.0297459811, -0.0150318276, -0.00122648024, 0.0318541899, 0.0113641201, -0.0125554027, 0.042915076, 0.0140932407, 0.00272551156, -0.00864943769, -0.016013734, -0.00935698766, -0.0178042687, 0.00354858, 0.0251396857, -0.0074292752, -0.00545102311, -0.0286485553, -0.0155227808, 0.0140138222, -0.0222517252, 0.0192771275, 0.000752674357, 0.00100717577, 0.0263526291, 0.0166635253, -0.00532106496, -0.0381499417, 0.0139416233, 0.00115789112, -0.0162014514, -0.0191038512, -0.0113857789, -0.00685890345, -0.017356636, -0.0031550955, 0.0128514189, 0.00252876943, -0.0104399724, -0.00540048396, -0.00418393081, 0.0243599359, 0.00494563, 0.00288073928, -0.024923088, 0.0270168595, -0.011559057, -0.0148585504, 0.0176887512, -0.0224394426, -0.00973242242, 0.0325473025, 0.031709794, -0.00352331018, 0.0151473461, -0.0288073942, 0.00157935277, -0.00254681916, 0.0152339851, -0.0256739575, -0.0132412929, 0.0070755, -0.0116023766, 0.0378322676, 0.0121294288, 0.0534850061, -0.0164613687, 0.0144181363, 0.000301656371, -0.00958802458, -0.00495285029, -0.00573259918, -0.028937351, -0.0245043337, 0.0116168158, 0.0364171676, -0.0115157375, 0.0307856463, 0.00908985175, 0.0342800766, 0.0161003731, 0.00921981, 0.034222316, 0.0272334553, -0.005541272, 0.00055141974, -0.00414783135, -0.0114651984, -0.0287351944, -0.019320447, 0.0114435386, 0.010374994, -0.0252263248, -0.0116095962, -0.000656559481, 0.0197536405, 0.0514056757, 0.0105482712, -0.0300058965, -0.00426335, 0.0101728365, 0.0118839527, -0.00412256178, -0.0150318276, 0.0252696443, -0.0198258404, 0.0179919861, 0.01060603, -0.00180407206, 0.00711520948, -0.00898155291, -0.00796354748, 0.0066675758, -0.00292225368, 0.0179775469, 0.00836786162, -0.0294427443, -0.0507703237, 0.0596074797, 0.0220351294, 0.0268435813, -0.0139199635, -0.00766753173, -0.0103244539, 0.0101944963, -0.0389874503, -0.00578674814, 0.0135517484, -0.00123189506, 0.0040142634, 0.00833898224, 0.00222192355, 0.00177068007, -0.0143964766, 0.00243671564, -0.0171977971, 0.0109381452, 0.0150462678, 0.0465827845, -0.0234357901, 0.00269663194, 0.0118045332, 0.00442940742, 0.023739025, -0.00032557227, 0.0112052821, 0.0411534198, -0.00458463514, 0.0310455617, -0.0201001968, 0.0101511767, 0.0335003287, -0.000814494735, 0.0151906656, 0.000774785294, -0.0281720422, 0.0049709, 0.0113785593, 0.0092992289, -0.0106710093, -0.0330960117, -0.00189702818, 0.00933532789, 0.00862055831, -0.0182807818, -0.00353955501, 0.0145408744, 0.000393033202, -0.0261793509, -0.041413337, 0.000712964917, 0.0512035191, -0.0290673096, 0.0272767749, -0.0176454317, -0.0291250683, -0.0173421949, -0.00480123237, 0.05111688, -0.0226849206, -0.0204467513, 0.01774651, 0.00553044211, -0.0219051708, 0.00759533281, -0.0130463559, -0.0473625325, -0.0158260167, 0.00170570088, -0.00412256178, -0.0396516807, -0.00976852234, 0.0170245189, 0.00882271584, -0.0275078118, -0.00710799, 0.0144686755, 0.00123731, 0.00399621343, 0.00365326856, 0.0190894101, -0.00955192558, 0.00413339166, 0.0213997774, 0.00716213882, 0.0321429856, -0.0341068, -0.00496729, -0.0128080994, -0.0215008575, 0.0143603776, -0.00268580206, -0.016403608, 0.0160281733, -0.00415505143, 0.018223023, 0.0302658137, -0.0166490842, -0.0052849655, -0.0310455617, -0.0129885972, -0.0234791096, -0.011753994, 0.00558820134, -0.0146202939, 0.0200568773, 0.00240242109, 0.000888047449, -0.00218943413, 0.0301214159, 0.0232047532, -0.0436370634, -0.0012562623, 0.0288218334, 0.0171977971, -0.0370525159, -0.00310275122, -0.0124326646, -0.0115229571, -0.0393340066, -0.0144109167, -0.0169667602, 0.013169094, -0.0179919861, -0.0102305952, 0.0122088473, -0.0106132505, 0.00838230178, -0.0198691599, -0.0175010338, 0.0241000205, -0.0151906656, -0.00377961667, -0.032720577, -0.0427417979, 0.0228870772, 0.00500699924, 0.0374279507, 0.0023915912, -0.019320447, 0.00685529318, 0.00551239215, 0.0226993598, 0.00737151597, 0.0118045332, 0.0401715115, -0.00279951561, -0.00335183763, 0.0443590544, -0.00169306609, -0.0410090201, 0.00280312542, 0.0233202707, -0.000479220733, 0.0103461137, -0.00492397044, -0.00550156226, 0.0300347768, -0.0147646917, 0.0177031904, -0.0242732968, 0.00872885715, 0.0243454967, 0.00730653713, -0.000498624227, 0.00862777792, -0.00175082532, -0.000794188818, 0.00634268066, 0.0278976858, -0.0148585504, -0.0150607079, -0.00538604381, -0.0200568773, -0.0150462678, 0.00942196697, 0.0200135577, -0.000590226671, -0.0104471929, 0.00753757358, 0.0135517484, 0.018612897, 0.0269157793, -0.0395939201, -0.012425445, -0.0199991185, 0.0205911491, 0.0248797685, 0.02555844, -0.00325978408, 0.0156094199, 0.0423086025, 0.00842562132, -0.00482289214, -0.0172555558, 0.0102739148, -0.0310166832, 0.0138910841, 0.0242444184, 0.00466766395, 0.000751320622, 0.0223528054, 0.01774651, -0.00446550688, 0.00806462578, -0.00633546058, 0.0240422599, -0.0153350635, -0.0126492614, 0.000351067545, -0.0220495686, 0.00227607298, -0.0209232643, 0.0257172771, 0.0128802983, 0.00502143893, 0.0281142835, -0.00261360314, -0.00512973778, 0.00163440441, -0.0023103673, 0.00602861494, -0.000336627738, -0.00169216364, -0.0160714928, 0.0236379467, -0.0181075037, 0.00740039581, 0.00903209299, -0.00583367748, -0.0214286577, 0.0348287895, 0.00610081386, 0.00925590936, -0.0146636134, -0.0207644273, 0.00636434043, -0.00250169472, 0.0167934839, -0.0192915685, -0.00401065359, -0.00589143671, 0.0100500984, 0.0243021771, 0.00159469503, 0.0140138222, -0.0104832919, 0.0234069098, -0.00349984551, 0.0209088251, -0.00520554651, -0.0115807168, -0.0166779645, 0.0322296247, -0.0175587926, 0.00482650194, 0.0180930644, -0.0116168158, -0.0320274681, -0.000998150907, -0.00824512355, 0.00676504476, -0.0171833578, -0.00127972697, -0.00828122348, -0.0150751472, 0.0456586368, -0.00786246918, -0.0359262116, 0.00593114644, 0.0834620222, -0.00703940075, 0.00806462578, 0.00181038945, -0.00542214327, -0.0354352593, -0.0101728365, 0.0114940777, 0.027767729, -0.0145697547, 0.027839927, 0.000627679867, 0.0077541708, -0.008555579, -0.00397455413, -0.0303813312, -0.0210965425, -0.00304679712, 0.01415822, 0.000366861088, -0.0165046863, 0.00934254844, 0.0152339851, 0.0102883549, 0.0264825858, 0.00748703443, -0.00624882197, -0.0183674209, -0.0517811105, -0.00101800566, 0.0258183554, 0.0213708989, 0.0356374159, 0.000532016216, 0.00313343573, 0.0230459142, -0.0126276016, 0.000685890322, 0.0072704372, -0.0204034317, -0.00232480722, -0.00766031211, -0.00611164374, 0.00851948, -0.00858445931, 0.0133495918, -0.0127142407, -0.0057253791, -0.0126781408, 0.0202734731, -0.0147646917, 0.0140499221, -0.0141798798, -0.0282731205, 0.0202734731, 0.0155227808, -0.00526330573, -0.0234646685, 0.003331983, -0.027045738, -0.0296015833, -0.013327932, -0.00452326611, -0.0455719978, 0.0203023534, 0.00073913706, -0.0144397961, 0.0287929531, -0.04383922, 0.00329046859, 0.0315653943, 0.0133712515, -0.0175443534, -0.00820902456, -0.0165480059, 0.0221506469, -0.0109814648, 0.0159415342, -0.0150895873, -0.00231758738, -0.0238256641, 0.0363016464, -0.0260060728, -0.0150173884, -0.00553044211, 0.00132846122, -0.00346916099, -0.0156094199, -0.0133712515, 0.0136095081, -0.00895267352, -0.0200857557, -0.0259194337, 0.00298001291, -0.00270024198, -0.0158115774, 0.022323925, 0.0220640078, 0.0187284164, 0.00683363341, 0.0305546094, 0.00283200503, 0.000892108656, -0.00226343796, -0.0147141526, -0.0200135577, 0.0234791096, -0.0069924714, 0.011631256, 0.0236090664, 0.0378322676, 0.0176165514, -0.0141149005, 0.000165042366, 0.00657732738, -0.00055051723, 0.00161184231, 0.00199630181, -0.00481206225, -0.0110897636, -0.018930573, 0.0104327528, 0.00245837541, 0.0133062722, -0.00289698411, -0.00828122348, 0.00538604381, 0.00564957038, -0.00644375896, -0.015696058, -0.0259771943, 0.0218762904, -0.0299481377, 0.00629575131, -0.0146419536, 0.0142953983, -0.0152339851, 0.00677948445, 0.00805018656, 0.0239700619, -0.0275944509, -0.00908985175, 0.0107359886, 0.00921981, 0.005382434, 0.0362150073, -0.0180208664, -0.00371102756, 0.00440413784, -0.00124904234, -0.0179631058, -0.0166057665, 0.00179775467, -0.00916205067, 0.0159415342, -0.00734263659, -0.014122121, 0.0324895419, 0.00898155291, -0.00178511976, -0.0077541708, 0.015854897, -0.00169306609, -0.027060179, -0.0232336316, 0.00794188771, -0.00930644851, -0.0318830684, 0.0138477646, -0.0149307493, 0.00485177152, 0.00298903789, 0.0259771943, -0.0206055883, 0.0154072624, 0.0201001968, 0.0214719772, -0.00524525577, 0.0151184667, -0.00422364054, -0.0242010988, 0.00236993167, -0.0167790428, -0.0203023534, -0.00182031677, -0.0196236838, -0.00132936379, -0.0290528703, 0.020345673, 0.0173999537, -0.0109525854, -0.00518388674, 0.00934976805, -0.0141798798, 0.0333848074, -0.00515861716, -0.0121149886, -0.00984794088, -0.00235368684, 0.0128875179, -0.0102378158, 0.00574342906, -0.0019259078, 0.00898155291, -0.00898155291, -0.018136384, -0.0149740689, 0.00418393081, 0.0130896755, -0.00487704109, 0.0214142185, 0.00120121054, 0.0148874298, -0.037139155, 0.0130319158, 0.00410812208, 0.020822186, -0.0154217025, 0.0241433401, 0.0108587267, 0.0265692249, -0.00766031211, -0.0254718009, -0.000213663865, 0.0106998887, 0.000503587886, -0.00689861272, -0.00882271584, 0.00441857753, 0.017356636, -0.0182807818, 0.0106349103, 0.0426840372, -0.0186417773, -0.000907451, 0.0134939896, -0.000601507782, -0.0156671796, -0.0340490378, -0.00177429, 0.0115157375, 0.00511890789, 0.00312802079, 0.0364460461, -0.00138802547, -8.87257775e-05, 0.00346555118, -0.00712242955, -0.0120644495, 0.014317058, 0.00959524419, 0.0220351294, 0.00729209697, -0.0172988754, 0.030756766, -0.00586255733, -0.00449799653, -0.0215152968, -0.03407792, -0.0279843248, 0.00107756979, -0.00279229553, -0.0116095962, -0.00426695962, -0.0495862588, 0.0225838423, -0.0306412484, -0.0193060078, -0.0210676622, -0.0167357232, 0.0206777882, -0.00160191488, 0.0360128507, 0.0114435386, 0.0129597168, -0.00339335203, 0.015378383, 0.00567844976, -0.00111818174, -0.00894545391, -0.0267858226, 0.00675782468, 0.0198691599, -0.0170534, -0.0268435813, 0.0150029482, -0.0117684342, 0.0208943859, 0.00566762, -0.00135643838, 0.0220495686, 0.0315653943, -0.0339046419, 0.0117106745, 0.0108659463, 0.0367926024, 0.0174865928, -0.0284463987, -0.00600334536, -0.0105627114, 0.0179197863, -0.0193348881, -0.0014954214, -0.0194504056, 0.010569931, 0.0258183554, 0.0159126557, -0.0135734081, 0.0191327296, -0.0126709212, 0.00197283714, -0.0275944509, -0.0118550723, 0.0100717582, -0.00601056498, -0.00278327079, -0.00668562576, 0.00909707136, -0.024923088, -0.0280132052, 0.0142665189, -0.008714417, -0.0324029028, 0.00649068831, 0.015378383, -0.0167646036, -0.00876495615, -0.0223961249, 0.00118677074, -0.0242732968, 0.00713325944, 0.0156094199, -0.0261215921, 0.0217318926, -0.0109886853, 0.00848338, 0.0114002191, -0.0181219447, -0.00517666712, 0.00028947278, -0.00833176263, 9.5156e-05, -0.0130319158, 0.0210676622, 0.00949416589, 0.0199413579, -0.00997789949, 0.0393628851, -0.00626687147, -0.0268869, -0.00508641824, -0.0148441102, -0.0108515071, 0.00425612973, 0.00538965408, 0.0462651066, 0.0191471707, 0.0319985896, 0.00766753173, 0.013804445, -0.0117034549, 0.0281720422, 0.0219340511, -0.000936781755, 0.000990931061, -0.0170245189, -0.022641601, 0.00948694628, 0.0302369334, 0.0212987, 0.0013456085, 0.00910429191, -0.00442940742, -0.0186995361, 0.0377456285, 0.0311899595, 0.00639322, 0.0171544775, -0.0207066685, -0.00282478519, -0.0267569423, 0.00232119719, -0.00609359425, -0.0011957956, 0.00841840077, -0.00211182027, 0.00268219225, 0.0113857789, -0.0183385406, -0.0105988104, 0.0264681466, -0.00880105607, -0.00221831375, 0.0161581319, -0.0167501643, 0.00943640713, -0.0391896069, 0.0174143948, -0.0259627532, -0.013010256, 0.00934976805, 0.0116962353, -0.00286449469, 0.0103461137, 0.0273489747, 0.00728487736, -0.0118117537, -0.0426551588, 0.0196814425, -0.0204178728, -0.000887145, 0.0139488429, -0.0196236838, -0.0313632376, 0.0253996011, 0.0478246063, -0.00491314055, 0.0472758934, 0.0210387837, 0.000459140399, 0.00505031878, -0.0223961249, -0.0070718904, -0.0239123031, -0.00396011397, -0.0301791746, 0.00200532679, -0.00242047082, -0.0102739148, 0.0225116424, -0.00946528651, -0.00384459575, -0.000454627967, 0.0156383, 0.00940752681, -0.000858716608, -0.0102955746, 0.0335580856, 0.0169234406, 0.0195659231, -0.0161436927, 0.020345673, 0.028951792, 0.00456658565, 0.00517305685, 0.000557285908, 0.0106710093, -0.00542214327, -0.0229015164, -0.00295474334, -0.00729570724, -0.0113713397, -0.0198402796, 0.0238401033, 0.0092414692, 0.0103172343, -0.0159559753, -0.00911151152, 0.00152610592, -0.00116240361, 0.00810072571, -0.0161292516, 0.00129958161, 0.0285041574, 0.0199846774, 0.00849060062, 0.00964578427, 0.000781554, -0.0104183126, -0.00914761052, 0.00509363832, -0.013010256, 0.0152773047, 0.0118767321, -0.00576147856, -0.0040972922, -0.00831010286, 0.0110753234, -0.0147719113, -0.0104905115, -0.00621994212, 0.0186850969, 0.0167790428, 0.0128441984, 0.0189883318, 0.00825234316, -0.00719462847, 0.00460268511, 0.00428861938, 0.00931366812, 0.0257750358, 0.00745093497, -0.00403231289, -0.0034944308, 0.0216163751, 0.00999233872, 6.22152147e-05, 0.00563513068, -0.0265981052, -0.0361572504, 0.0144686755, -0.00831732247, 0.000238707886, 0.00734624639, 0.0185695775, -0.0146924928, -0.0125770625, 0.00499977963, -0.00925590936, -0.00231578224, -0.00149993389, -0.0265403464, -0.0274356138, 0.0170822795, 0.00879383553, -0.00116330606, -0.00884437561, -0.0191760492, 0.00929200929, -0.00340237701, 0.0113280201, 0.00910429191, 0.0181219447, -0.0138188852, -5.14135718e-05, 0.00914761052, 0.011277481, 0.000174405664, 0.0199413579, -0.00465322426, 0.00709716, 0.0130319158, -0.00948694628, 0.0135950679, 0.00132304628, -0.0273778532, 0.00549073238, 0.000766211713, -0.0204611905, 0.0092414692, -0.00529218512, 0.0112052821, -0.0199413579, 0.00440052804, 0.00919093, -0.00312080095, -0.00492758024, -0.0111042038, -0.00107937481, -0.00894545391, 0.0034168167, -0.0069094426, -0.00242588576, 0.0064870785, 0.0107720876, -0.0100284386, -0.00753757358, -0.00462434487, 0.00864221808, -0.00297640311, 0.00784802902, -0.0209088251, 0.0158693362, -9.88787579e-05, 0.00158115767, -0.0122738266, -0.00193132274, 0.0147358123, 0.00959524419, -0.0175732318, 0.0119922506, 0.0107143288, 0.0121944081, 0.00404675305, 0.0334714465, 0.0383521, -0.00623077201, 0.0112269418, -0.00727404747, -0.0206344686, 0.0199124794, -0.00493841, 0.005382434, 0.0245765336, -0.0139344037, -0.0101439571, 0.00351789547, 0.0235946272, -0.02121206, 0.00260096835, -0.000205654287, 0.0145336548, -0.0251108054, 0.00197283714, -0.000980101177, -0.00943640713, -0.00866387784, 0.0116529157, -0.000578043109, 0.0260638315, -0.0230459142, -0.00886603445, 0.000859619118, -0.0102450354, -0.0074292752, -0.0247064922, 0.00909707136, -0.00864221808, -0.0310455617, -0.00349262566, -0.00921981, -0.0294427443, 0.0117034549, 0.0191760492, 0.0199846774, -0.0113424603, -0.0165768862, -0.00340418192, -0.00124633487, 0.00515500735, 0.0160714928, 0.00560986064, -0.0158260167, -0.00618384266, 0.0183818601, 0.0149018699, -0.00696359156, 0.00375073706, -0.0360417329, -6.87582506e-05, 0.013169094, -0.00711881975, -0.0156816188, -0.00237534638, -0.00414783135, 0.00784802902, 0.00393123459, 0.00385181559, -0.00347096613, -0.0151762255, -0.0106998887, 0.018295221, -0.0085628, -0.0142953983, -0.00466044433, 0.00472903345, -0.0112847006, 0.02191961, 1.2176527e-05, -0.0104399724, -0.00616218289, 0.0146563929, -0.0169378817, -0.00022742679, 0.0236235075, -0.024446575, 0.025312962, 0.0133423721, -0.0146202939, 0.00571093941, 0.00841118116, 0.00781192956, -0.012815319, 0.0195226055, -0.00621272251, -0.0155949797, 0.0102883549, 0.00569288945, -0.0134434504, -0.0128297592, 0.0349443071, 0.00207933062, -0.0256595183, 0.012620382, 0.013522869, 0.0124759842, 0.0279843248, -0.0118839527, 0.00219665398, 0.0106421299, 0.00209196541, 0.00726682739, -0.0177753884, 0.003252564, 0.0359262116, -0.028157603, -0.000267813099, -0.00218401919, 0.00555210188, -0.00224177842, -0.0020901605, 0.00119850307, -0.00969632342, -0.0151473461, 0.0251974445, -0.00357384956, -0.000208361744, 0.0108659463, 0.00384098571, -0.0083534224, 0.021529736, -0.00407924224, -0.0334136896, 0.00706106052, 0.000982808648, 0.00934976805, 0.0201001968, 0.00993458, -0.00942196697, 0.00472181337, -0.0147719113, -0.0130752353, -0.0080357464, 0.0104399724, -0.0172844362, -0.0158982165, 0.00420198077, 0.0261071511, 0.00542214327, 0.010764868, -0.0132412929, -0.000291277771, 0.0122954864, -0.010764868, -0.0365326852, -0.0100789778, -0.00392040471, -0.0498461761, 0.0211687405, -0.0215152968, -0.0134001309, 0.0296015833, -0.00967466366, -0.0132629527, -7.44552e-06, -0.00144939451, -0.00849782, -0.00360453408, 0.00446911715, -0.00027390488, 0.0224394426, 0.00839674193, -0.00146473688, 0.000369794143, 0.00439691776, -0.001809487, 0.0145264352, 0.00234466186, -0.000680024154, 0.0307856463, -0.0250674859, -0.0117395548, 0.00135914586, -0.0257605966, -0.000467939652, -0.0022110939, 0.00751591381, 0.0112125017, -0.00369658787, -0.00754479365, -0.000276386738, -0.00275619607, -0.00055909087, -0.0339624025, -0.00161093974, 0.00212626, -0.000973783783, 0.0113857789, -0.0167068448, 0.0161436927, -0.0172555558, -0.00579396822, 0.0101150777, -0.010923706, 0.00566762, 0.0193493273, -0.0102811353, -0.0145625342, 0.0115446169, 0.00527774543, 0.0125048636, 0.0136167277, 0.00278688059, 0.0067469948, -0.0102811353, -0.0222084075, -0.0069094426, 0.0102378158, 0.0134434504, -0.00826678332, -0.0362727679, 0.00433193892, 0.0145986341, 0.0113785593, 0.0114435386, -0.0188583732, 0.00459546503, 0.00564596057, 0.00318217021, 0.000876766397, 0.00253959908, -0.0189738926, -0.0152917439, -0.0155516602, -0.0125626223, 0.0143675972, 0.00154054572, 0.0109309256, -0.0122377276, 0.00450521661, 0.00450160634, -0.00886603445, 0.00184287899, 0.0233924706, 0.0134651102, -0.0176887512, 0.0112919211, -0.0323740244, -0.00751591381, -0.0175154731, 0.0160714928, -0.0124110049, -0.00577591872, 0.0245187748, -0.0110175647, 0.00362258381, 0.00124813989, 0.000710257504, 0.00608637417, -0.0071874084, -0.00580118829, -0.019638123, -0.00937142782, 0.0139488429, -0.00499616936, 0.0263237488, 0.0216163751, 0.0125337429, 0.0279843248, -0.0122016277, 0.000922793231, 0.0184107404, -0.00148098159, -0.00684085349, -0.00858445931, 0.00927756913, 0.00628131116, -0.0349154286, 0.000736429589, -0.000496368, 0.0122810472, -0.00589143671, 0.00129145931, -0.00139434286, 0.0150607079, -0.0135445287, -0.00115789112, -0.0120788896, -0.0135878483, 0.00112991408, -0.00304679712, 0.022237286, 0.0147863515, 0.0205189511, 0.00713325944, -0.00539326388, -0.00169667602, -0.00249808468, -0.00141780754, -0.0254718009, 0.00679031434, -0.0106204702, 0.0140932407, 0.0130030364, 0.0159415342, -0.0118839527, -0.0244898945, 0.00151708105, -0.0104471929, -0.00763865234, 0.00687334314, -0.00340598705, 0.00280312542, -0.00932088867, -0.00358287455, -0.0171256, 0.00254862406, 0.0121944081, 0.0266847443, 0.00784080941, -0.0103100147, 0.0147863515, -0.00657371711, 0.00527413562, 0.0123243658, 0.0210532229, 0.00777583, 0.0115229571, -0.0161581319, 0.0195948035, 0.0102450354, -0.0131474342, -0.0313343592, -0.00569288945, -0.0168223623, -0.00484455144, 0.0214286577, -0.00347999088, 0.0228148773, 0.0117612137, -0.0349154286, 0.0301214159, 0.036994759, -0.00764587196, -0.0185695775, -0.011790094, 0.0222228467, -0.00882993545, -0.0145769743, 0.0132846124, -0.0133351516, 0.00937142782, -0.038496498, -0.0301791746, 0.00429944927, 0.00383015606, -0.00435359869, 0.0183241013, 0.00598168559, 0.00413339166, 0.0196525622, 0.00319661, -0.00484455144, -0.00704301056, 0.0043572085, -0.00505392859, -0.0309878029, -0.00143224734, 0.0140066026, -0.0195226055, -0.034857668, 0.00313163083, -0.0209232643, -0.00582284806, 0.0122016277, -0.00495285029, -8.08290133e-05, -0.0107359886, -0.00310094631, -0.012815319, 0.018612897, -0.0107359886, 0.00023690291, 0.00362258381, -0.00880827568, -0.0284175184, -0.0126492614, 0.00447994657, -0.0010667399, -0.0126059419, -0.0265981052, 0.0162303317, -0.0141870994, 0.0094580669, 0.0224538837, -0.0154217025, 0.0059022666, 0.00157303526, -0.0197969601, 0.0248653293, -0.0136383874, 0.0106926691, -0.0154650221, -0.0118334126, 0.00695998175, -0.0168512426, 0.00944362674, 0.0079707671, -0.001453907, -0.026742503, -0.00210821023, 0.00766753173, -0.0107143288, 0.00294932839, 0.0282442421, -0.00377961667, 0.00650873827, -0.00986238103, 0.00424169, 0.0065664975, 0.00810794532, 0.0235079881, 0.00755201327, -0.00429222966, -0.00385181559, -0.00996345934, 0.0345977508, -0.0106132505, 0.0211831816, 0.00634629047, 0.0188583732, -0.0101944963, -0.00501782913, 0.0215008575, -0.00801408663, 0.0222517252, -0.0049420204, -0.00636073, -0.00627409155, -0.0193493273, -0.000150489752, 0.01131358, 0.00197825208, -0.0120427897, -0.00872163661, -0.0100717582, 0.018295221, -0.00558459107, 0.0195226055, -0.000210843587, -0.000906999689, -0.0080935061, 0.0166057665, 0.0279410053, 0.00854114, -0.00745815458, 0.0116745755, -0.0118767321, -0.016562447, 0.00488426117, 0.000418979704, -0.0045990753, 0.01348677, 0.0255873185, 0.000652498275, -0.0111619625, 0.0121222092, 0.000726051, 0.0190316513, 0.0230892338, -0.00765309203, -0.0103244539, -0.0109814648, 0.00930644851, -0.0160714928, 0.0129669374, -0.0068300236, -0.0117684342, 0.00128153188, 0.00833176263, -0.00747259473, 0.0150462678, 0.00338793709, -0.00490592094, 2.08982201e-05, 0.00879383553, -0.0260493923, 0.00709354971, 0.0291972682, -0.0169090014, -0.0179631058, -0.0168656819, -0.00274175638, 0.0180064254, -0.00872885715, -0.00592031656, 0.00306123681, -0.0264537074, -0.0240422599, 0.00739317574, 0.00335725257, 0.00561708072, -0.00934976805, 0.0102305952, -0.0225260817, 0.00539687369, 0.0126998005, 9.38586745e-05, 0.0145914145, -0.00116601354, 0.0119272713, 0.00234105205, 0.0109164864, -0.0306701269, 0.0111836223, -0.0141654406, 0.00818014424, 0.00936420821, 0.0184829384, -0.000284057867, -0.00971076265, 0.00500699924, -0.00545824319, -0.00291322893, 0.0032363194, 0.00607915409, -0.00942918658, 0.0154505819, 0.0181075037, -0.00424530031, -0.00178511976, -0.0145264352, -0.00813682564, -0.00105591014, 0.000901584805, 0.00693832198, -0.000622716208, -0.00343847647, 0.0216308143, 0.000781102746, -0.00454131607, 0.0115518374, -0.0217030142, 0.0251396857, -0.0165480059, 0.0151040265, 0.0152051058, -0.0288940314, -0.0251830053, 0.0250386074, 0.0188872535, -0.0120861093, -0.0106276898, -0.0148729905, 0.0183963012, 0.00513334759, -0.00795632787, -0.00784080941, 0.0127503397, 0.0195081644, 0.0103822136, -0.00442940742, -0.00657371711, 0.00904653221, -0.0074292752, -0.00103244546, -0.00527052581, -0.0126420418, 0.0073498562, -0.0161436927, 0.00806462578, 0.00222372869, 0.0165480059, -0.020027997, 0.0269302204, 0.00662786653, 0.00065475452, 0.013522869, 0.0141149005, -0.0223383643, 0.0131113352, -0.0163169689, 0.0175732318, -0.0150318276, -0.00590587687, -0.0164180491, -0.0058047981, 0.022641601, -0.00231397734, 0.00459546503, -0.000866387796, -0.0165913254, -0.0142665189, 0.00526691554, 0.00484094163, 0.0123965647, 0.0124687636, 0.0108515071, -0.013327932, -2.26608918e-05, -0.0140427016, -0.00699608121, 0.01703896, 0.0318830684, -0.0169812012, 0.00294571836, -0.00284463982, 0.000311132491, 0.00663508661, 0.00529940519, 0.0310455617, 0.0291683879, 0.0133134918, 0.0125337429, 0.00862055831, 0.00723072793, 0.00191327301, 0.00584089756, 0.0164469276, -0.0113352397, 0.0151906656, 0.00724516762, 0.00783359, 0.00163169694, -0.00932810828, 0.00598168559, -0.00554849161, -0.0179775469, -0.00267316727, -0.0285041574, -0.000662425649, 0.00964578427, -0.00502504921, 0.000425297127, 0.00394206448, 0.0344244726, -0.0131618744, -0.00699969102, 0.00627770135, 0.0296304617, 0.00363882864, -0.00146654178, 0.0149885081, 0.0212842599, 0.0103605539, -0.0111836223, 0.0074292752, -0.0272767749, 0.00282478519, 0.0240133815, -0.00911151152, -0.00787690841, 0.0126781408, 0.0111330831, -0.0152773047, 0.0053643845, 0.0126420418, -0.0128586385, 0.0216163751, 0.00179594965, -0.0177609492, 0.000794640044, -0.0160714928, 0.0197680816, -0.00137358566, 0.0147358123, 0.00390235498, -0.00715130894, -0.00872163661, -0.0322007462, 0.00925590936, 0.0239989422, -0.0150607079, 0.0164613687, 0.00156310794, -0.0148585504, 0.0101078572, -0.00563513068, -0.00169035862, -0.0188006144, -0.00386625552, -0.00527774543, -0.00934254844, 0.0237245858, 0.0103027942, 0.00948694628, 0.00814404525, 0.00243852055, -0.0123243658, -0.0212987, 0.00540048396, 0.00960246474, 0.0172555558, 0.0160281733, 0.0227282401, -0.0199846774, 0.00971076265, -0.0165913254, 0.0032363194, -0.00237895641, -0.0139705027, -0.0092414692, -0.001557693, -0.00319119496, 0.0198980384, 0.0167646036, -0.00509363832, 0.00717657851, 0.00459546503, -0.00437886827, -0.00637517, -0.000269166834, 0.022554962, -0.0206344686, 0.0144036971, -0.0181797035, 0.00164072181, 0.00481206225, 0.0246198531, 0.00579757802, -0.0232769512, 0.0102305952, 0.0109670255, 0.00271829171, 0.0300636552, -0.0228004381, -0.00573259918, -0.0123315863, 0.00759533281, -0.00496368, -0.00168494368, -0.00134019356, 0.0113929994, -0.00976852234, -0.0140860211, -0.00254140422, -0.0063282405, 0.0159992948, -0.0111691821, 0.00475069275, 0.0215586163, 0.023031475, -0.0250963662, 0.00984072126, -0.0223528054, -0.00318939, 0.00655205734, -0.0085628, 0.00949416589, -0.0268869, -0.0113568995, 0.00688417302, 0.00157574273, 0.0254718009, 0.0186417773, -0.00385181559, -0.00870719738, 0.00708994, -0.011912832, 0.014230419, -0.00541853346, -0.00994901918, 0.0185840186, -0.00535716442, -0.0188150536, -0.0180064254, 0.0150029482, 0.00431749923, -0.00797798764, 0.0108009679, -0.0166057665, -0.0261215921, 0.0044402373, -0.0118911723, -0.00766753173, 0.0036352186, 0.00464961445, -0.0135373091, 0.0179197863, 0.0203167927, -0.0276810899, -0.0138622047, 0.0137250265, 0.0202157144, -0.0198691599, 0.00136997562, 0.00431027915, -0.000794640044, 0.0138838645, -0.0164469276, -0.00449077645, 0.00177338743, -0.0334136896, -0.00225441321, 0.00173999544, -0.00288434932, 0.0143242776, 0.00452687591, -0.00229412271, 0.0140138222, 0.0156094199, -0.00340057211, -0.0100067789, -0.00808628555, -0.0136961471, 0.037225794, 0.0118911723, -0.000291277771, 0.0180208664, 0.00755923335, 0.0246776119, -0.0136167277, 0.0220784489, 0.0164902471, -0.0183385406, 0.0162880905, 0.0220928881, 0.0164902471, -0.00575425895, -0.0316231549, 0.0280276444, -0.0670006573, 0.00369117293, 0.00653761765, -0.00525247585, 0.00533189485, 0.0135950679, 0.0168223623, -0.00676865457, 0.0406047069, -0.00411173189, 0.00766031211, 0.0322007462, -0.0012770195, 0.0145336548, -0.0228148773, 0.0137322461, 0.0121005494, 0.00289156917, -0.00287171453, -0.00554849161, 0.0159126557, -0.00433193892, -0.00921259, 0.000126348212, 0.0070718904, -0.00165064924, 0.0112341614, -0.00566762, -0.0104327528, -0.0118767321, 0.00607554428, -0.0147863515, -0.00254501402, -0.0107720876, -0.00243852055, -0.00678309426, -0.00309192133, 0.0100789778, -2.11520455e-05, -0.0187572949, 0.00189161336, -0.0063282405, 0.00542936334, -0.00166147901, -0.0251974445, -0.00392762478, -0.0099851191, -0.00449799653, -0.00927034952, 0.000411759829, -0.00825234316, 0.0190894101, -0.0135012092, -0.000425297127, 0.00300167268, 0.000399124983, -0.0167357232, -0.00295654824, 0.00725960778, 0.0157249384, -0.00963134412, -0.0291683879, 0.00506836828, 0.00728126708, 0.0155083416, 0.00671089534, -0.0130391363, -0.00990570057, -0.024764251, 0.00647624861, -0.0209377054, -0.0297171, 0.0039384542, -0.00308831153, 0.0304679703, 0.00731736654, -0.00908263214, 0.0100284386, 0.00858445931, 0.0163025297, -0.000182753676, 0.013999382, 0.0125120832, -0.00183836662, 0.0154072624, 0.000541943591, 0.00768197142, -0.0162014514, 0.0144831156, 0.0134723298, -0.00129326421, 0.0096602235, -0.0180353057, -0.0194215253, -0.00314426562, -0.0139921624, -0.00671811542, -0.0103244539, -0.00188980834, 0.00596363563, -0.00644375896, -0.0173710752, 0.00209557544, 0.00594558613, 0.0111547429, -0.00275439117, 0.0103966529, -0.013804445, 0.00816570502, 0.00895267352, 0.031074442, 0.0138694244, 0.00679753395, -0.00716213882, 0.0217030142, 0.00613330351, 0.0151906656, 0.00107937481, -0.0300925355, 0.00402870309, 0.00234285695, 0.00637156, -0.00794188771, -0.0295727029, 0.00135102344, 0.0258905552, 0.0106132505, 0.011826193, -0.0139199635, -0.0142737385, -0.0112341614, -0.00737151597, 0.00146654178, 0.00971798319, -0.00386625552, -0.016403608, -0.00507558836, 0.0174577143, -0.0124037853, 0.00256667379, 0.01703896, 0.0103461137, 0.0309300441, 0.0147141526, -0.0233058315, -0.0270168595, 0.00199810672, -0.0139271831, 0.000647985842, -0.0178620275, -0.00197283714, -0.0160570536, 0.0184829384, -0.00568927964, -0.00629214104, -0.0180786252, -0.0185695775, -0.00594197633, 0.00631741108, 0.00268219225, 0.00768197142, 0.00339154713, 0.0209810231, -0.0134939896, 0.00921981, -0.010057318, 0.0122521669, -0.00693471218, 0.000304589455, -8.68644e-05, -0.0045196563, 0.00736429589, 0.00789856818, -0.0210676622, 0.00447272696, -0.0178764686, 0.00812960509, -0.032720577, -0.00660620676, 0.008555579, 0.0164469276, -0.00303957704, 0.00529940519, 0.00549434265, 0.00655927742, -0.0157682579, -0.00224538823, 0.0107720876, 0.00650873827, 0.00786968879, -0.00105681259, 0.0119272713, -0.0129236178, -0.00559181115, -0.0132196331, -0.00405397266, -0.00329407863, -0.00313163083, 0.0193926468, -0.00151256868, 0.0211831816, -0.00747259473, 0.00525608566, 0.00465322426, -0.0120572299, -0.0144831156, -0.014317058, 0.00777583, 0.00149181148, 0.00886603445, -0.00130860659, 0.00667479588, -0.0200568773, 0.00669645565, 0.00706106052, 0.0126348222, -0.0123243658, -0.0123243658, -0.0132051939, 0.0146780526, 0.0199413579, 0.00786968879, 0.00563152041, 0.00184378144, 0.0419620462, -0.00450882642, 0.00249447487, 0.0166346449, -0.0198980384, 0.0191327296, 0.0096241245, 0.00482289214, 0.00928478874, -8.04905794e-05, -0.0115301777, 0.000912414631, 0.0083534224, 0.00603222474, -0.0220495686, 0.0293705463, 0.0398249589, 0.0113929994, -0.00150805619, 0.00160191488, -0.000576689374, 0.00821624417, -0.0198547207, 0.00513334759, 0.0125698429, -0.0122738266, -0.000122851081, -0.00828844309, -0.00865665823, 0.0179775469, 0.0136672668, 0.00206669583, -0.0137755657, 0.021457538, -0.0113208005, -0.00870719738, -0.0143748168, -0.00420198077, 0.00586977741, -0.0127431201, 0.00107486232, -0.0151473461, -0.000730563421, -0.0122593874, 0.0122954864, -0.000173277556, 0.00623077201, -0.0150029482, -0.00973242242, 0.0112486016, 0.00494563, 0.00927034952, -0.011559057, 0.0185984578, -0.0210965425, -0.0152628645, 0.0037579569, 0.0101222973, -0.0196236838, 0.000856009196, 0.0143603776, 0.00317675527, -0.0214864165, -0.0159848537, 0.0120500103, -0.024923088, 0.00347096613, -0.0306412484, 0.0205478296, 0.00813682564, -0.0196092427, -0.0260927118, -0.0011524763, -0.000220883754, 0.00701413117, -0.00414061174, 0.0127286809, -0.0300636552, -0.0212987, -0.00850504, 0.0123388059, -0.0147430319, -0.0150173884, -0.00653039804, -0.00136365823, -0.0185695775, -0.0219773706, -0.0076747518, 0.00272551156, -0.00663869642, -0.0113424603, -0.0100645376, -0.00368214794, -0.00950860605, 0.0081945844, -0.0241433401, 0.0018573188, 0.0273634139, 0.00202518143, -0.00156310794, 0.0183096621, 0.00498172967, 0.0229303967, 0.0136528276, -0.00914761052, -0.0201435164, 0.0224538837, 0.00122648024, -0.0131257745, -0.00138802547, -0.0133207124, -0.0217174534, -0.00625965185, -0.00177789992, -0.00673977472, -0.0222950447, -0.014829671, -0.00280673546, -0.00294030341, -0.0251974445, 0.00571093941, -0.004339159, -2.54952647e-05, -0.0141076809, 0.0376301073, -0.000385813299, -0.00828844309, -0.00400343351, 0.00346194115, 0.0178475883, -0.000335048389, -0.000593836594, -0.00909707136, -0.0282586813, 0.0124832038, -0.00406119274, 0.0159415342, 0.00895989314, -0.0115012974, -0.0180930644, 0.00663508661, -0.00242408086, 0.00285546971, 0.00811516587, -0.0150751472, -0.0235368684, 0.00789856818, -0.00649429858, 0.000646180881, 0.0673472062, 0.0324895419, -0.00575786876, -0.0318541899, 0.0123171462, -0.0216452554, -0.00958802458, 0.0337602422, -0.0232913923, 0.0103244539, -0.00408285251, 0.00976852234, -0.00849782, 0.00879383553, -0.0163747296, -0.00612969371, 0.00760255288, -0.0176743101, -0.0148729905, -0.00425252, 0.00109291205, -0.019955799, 0.0064076595, -0.0283886399, 0.0106926691, -0.0168512426, 0.0010920096, 0.000782907708, -0.0281287227, 0.00406841282, 0.000355354365, 0.0169667602, 0.0123171462, 0.019638123, -0.0165335666, -0.0185551383, -0.00503226882, 0.00653039804, 0.0126925809, -0.0217174534, 0.0188150536, 0.00926312897, -0.00477596279, 0.00975408219, 0.0109164864, -0.0209232643, 0.0117323343, -0.0113496799, -0.0130030364, -0.0417598896, 0.00994901918, -0.0268724617, 0.0105338311, -0.0229737163, 0.0172411166, -0.00336086261, 0.0212409403, -1.02657923e-05, 0.0040142634, -0.00446911715, 0.0249375273, 0.0179919861, -0.0100139985, 0.00567123, -0.00529218512, -0.0394784026, -0.00449438673, 0.00193673768, 0.00376156694, -0.00377600663, 0.0050394889, -0.011436319, 0.00804296695, -0.00357204466, -0.0197969601, 0.0232047532, -0.00439330796, 0.0112413811, 0.00698525133, -0.00686973287, -0.0275511313, 0.00578313833, 0.00383376586, -0.0149018699, -0.00203601131, -0.0198691599, -0.00812238548, -0.00491675083, -0.00660620676, 0.0096241245, -0.00551600195, 0.014829671, -0.00423086, 0.00534994435, -0.00386986532, 0.00722350786, -0.00774695072, -0.000848338, 0.0085628, 0.00464239437, 0.0163602885, -0.00766753173, 0.0167934839, -0.0101295169, 5.1187948e-05, 0.0274933726, -0.00142592983, 0.0169090014, -0.000579848071, 0.00121565035, -0.000123753562, 0.000554127153, 0.00690222252, 0.0371969156, -0.0110897636, -0.00117052603, 0.010569931, 0.0211543012, 0.000328279741, 0.00124453, -0.000924146967, -0.0101006376, 0.00647263881, 0.0149018699, 0.00376156694, -0.000542394875, 0.0235513076, -0.00306845666, 0.0211831816, -0.000594739104, 0.000698976393, -0.00328505365, 0.00821624417, 0.00157754775, 0.0159415342, 0.0189161338, -0.00658093719, 0.000136839633, 0.00112179166, 0.0149885081, 0.0142448591, 0.0179197863, -0.00708994, -0.0105266115, 0.00211723521, 0.0117828734, -0.015696058, 0.0124471048, 0.0228004381, -0.0107432082, -0.00052028388, -0.00990570057, -0.0105627114, -0.00594197633, -0.00898877345, 0.0104544125, 0.00206669583, -0.0206777882, -0.0295582637, -0.00705745025, 0.00727404747, 0.0023482719, 0.03407792, -0.0222517252, 0.00768197142, 0.00477235252, 0.00308109145, -0.00619828235, 0.016562447, -0.000136049959, 0.0196814425, 0.0237245858, 0.0082956627, 0.0133423721, -0.0148441102, -0.0149451895, -0.0131907538, -0.0239267424, 0.00026104445, -0.0102450354, -0.00763143227, 0.0164613687, 0.013169094, 0.0598962754, 0.00641487958, -0.0101367366, -0.0142881786, 0.00577952852, 0.0132340733, 0.000707098749, -0.0138983037, -0.00970354304, -0.000183881784, 0.00300528249, 0.00980462134, -6.43586245e-05, 0.0209521446, -0.00382293598, -0.0131402146, 0.0130174765, 0.0418465286, -0.02262716, 0.00376878679, -0.00780471, 0.0137972254, -0.00912595168, 0.0197969601, 0.00836064201, -0.0071874084, -0.000187717349, -0.00792022794]
08 Oct, 2021
jQWidgets jqxTree collapseAll() Method 08 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for pc and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTree represents a jQuery widget that is used to display a hierarchical collection of items. To display the collection of items, we can populate from ‘UL’ or by using its ‘source’ property. The collapseAll() method is used to collapse all items of the widget. It does not accept any parameter and does not return any value. Syntax: $('Selector').jqxTree('collapseAll'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtree.js”></script> The below example illustrates the jQWidgets jqxTree collapseAll() method. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"></script> <script type="text/javascript" src="jqwidgets/jqxtree.js"></script> <style> h1, h3 { text-align: center; } #jqxTree { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTree collapseAll() Method </h3> <div id='jqxTree'> <ul> <li item-selected='true'> GeeksforGeeks </li> <li>Programming <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> </li> <li>Web Technology <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>jQuery</li> <li>PHP</li> </ul> </li> </ul> </div> <center> <input type="button" id="jqxBtn" value="Collapse All Item" style="padding: 5px 15px; margin-top: 20px;"> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTree').jqxTree({ width: '350px', height: '250px' }); }); $("#jqxBtn").on('click', function() { $("#jqxTree").jqxTree('collapseAll'); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtree/jquery-tree-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtree-collapseall-method?ref=asr6
PHP
jQWidgets jqxTree collapseAll() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTree ensureVisible() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTree collapseAll() Method, PHP
GeeksforGeeks
[-0.0145080471, 0.0239628926, -0.0119524887, 0.0239484143, 0.0498949401, -0.00703683728, 0.02099468, 0.0256424677, 0.00963583402, 0.00719248783, -0.0333308652, -0.0314775407, 0.0149279414, -0.0112285335, -0.0100846859, -0.00541879935, -0.00618257094, 0.00830375776, -0.0194164589, -0.0269455854, -0.0132700857, 0.0117063439, -0.0302033797, 0.0302612968, -0.012068321, 0.0263374634, 0.0217475928, 0.00300984061, -0.0302612968, 0.0168247018, -0.0410626978, -0.0292188022, 0.0180119872, -0.0263229851, -0.0237457063, -0.00370664685, -0.00017024242, 0.00337181799, -0.0431766436, -0.00506044179, -0.00806485303, 0.0370954275, 0.00608483749, -0.011713583, -0.0088394843, 0.0157098118, 0.0172156375, -0.0221819654, -0.0231665429, 0.0511401445, 0.011510876, 0.0297979657, 0.00224606879, 0.00644319458, -0.000136533286, -0.00878156722, -0.0135669066, 0.0078983428, 0.00251212204, 0.0404256172, 0.0308115017, -0.0310721248, 0.00941864774, 0.0126692029, 0.0103091113, 0.0239049774, 0.0280315168, 0.00238362, -0.0227466486, -0.0228335243, -0.0126692029, 0.0301454645, -0.0241945591, -0.0194309372, 0.00139270735, -0.0109823896, -0.0431766436, 0.00292658596, 0.0117859785, 0.0304350462, 0.0148265874, -0.029913798, -0.0356764756, -0.01623106, 0.00684498949, 0.0117714992, -0.0266994406, -0.0451168418, 0.0423947722, 0.0188952107, -0.0399333276, 0.0292911977, 0.0221819654, -0.0127343591, 0.0130167017, -0.000665133179, -0.00923041906, -0.00055427762, -0.0490551554, 0.0112140551, 0.00706217578, 0.000582783367, -0.0149279414, -0.0335335694, -0.0228914395, 0.0245565362, 0.0180554241, 0.0246289317, 0.0239628926, 0.0146166403, 0.0359081402, -0.00172572641, 0.00477447966, 0.00245782547, -0.0111778574, 0.00126511045, -0.00814448763, -0.0219792575, -0.0050749206, -0.0241221637, -0.00160536903, -0.0385722928, -0.0181857366, 0.0447403863, -0.031390667, 0.0359081402, 0.00562512642, 0.00512921717, 0.0450010113, 0.000552015263, -0.0445376784, 5.55126026e-05, -0.00788386445, -0.0106783286, 0.0466516241, 0.0266125668, 0.0423658155, -0.00439440366, -0.0173025113, -0.0193875, -0.0536595061, -0.0147107551, 0.0115036368, 0.0137623744, 0.00198001554, 0.0275537074, -0.0109172333, 0.0206182227, -0.028190786, 0.0283210985, -0.00717438897, -0.00958515704, 0.0300585888, 0.035444811, 0.0204010364, 0.015565021, 0.000310395466, 0.0304060876, -0.00609207666, -0.00185060862, 0.000608121743, -0.00675811479, -0.0125895683, 0.0163468923, -0.0221240483, 0.00324150617, 0.0184029229, -0.0390645824, -0.0478678681, 0.0429739356, -0.00516903494, 0.0174762607, -0.00739881443, 0.0124882143, -0.0206471812, -0.0150872115, -0.00196372648, -0.0582928136, -0.00756532419, 0.0131397732, -0.0317092054, -0.0354158543, -0.0185477138, 0.000842954498, 0.0361398086, 0.0145804426, -0.00178273791, 0.0099036973, -0.0424526893, -0.0350973122, -0.0260189231, 0.0152320024, 0.0529645085, 0.0226308163, 0.0123506635, -0.0338231511, -0.0226597749, 0.0614492558, 0.00988921802, -0.017852718, 0.0127922753, -0.0301454645, -0.026163714, 0.00937521, 0.0396147892, 0.0480416194, 0.015869081, -0.0853107944, 0.0587561429, 0.000492289, -0.00604864, -0.0149279414, -0.0076521989, 0.0283210985, 0.0111271804, 0.0236733109, -0.0185187552, -0.0332729481, -0.0156084578, -0.00707665505, 0.0182291735, 0.0345471054, -0.0163468923, -0.000262207264, -0.06440299, 0.00236733118, 0.0113009289, -0.0269600637, -0.00847750716, 0.0191558357, -0.0388908349, -0.00604501972, -0.0233982075, 0.00119995454, 0.0562078245, 0.0250633042, -0.0135017512, 0.0183015689, 0.0110403057, 0.0144139333, 0.0312169157, 0.00269311061, -0.0500976481, -0.0138637284, 0.0480995364, 0.0293201562, -0.013487272, 0.0134655535, -0.00827479921, 0.00172663142, -0.012473735, 0.00359443389, -0.0087453695, -0.0013438405, 0.0174617823, -0.00819516461, 0.0120031647, 0.00483601587, -0.0420183167, 0.0271917302, 0.00611741515, 0.0402518697, -0.0257727783, 0.016983971, 0.00938245, 0.0177224055, 0.010395986, 0.00904943049, 0.00580973458, -0.0272062086, 0.0308404602, -0.00768115697, 0.0329833664, 0.0221240483, -0.0140229976, -0.027437875, -0.0429160222, -0.00532106543, 0.0328385755, -0.0211973861, 0.0275102705, 0.022514984, 0.057858441, 0.0358212665, 0.0391804166, -0.0172590744, 0.0238760188, -0.00915802363, -0.0335625298, 0.0098168226, -0.054817833, -0.0183305275, -0.00306956703, -0.00886120275, 0.0296242163, -0.00715267, 0.0267863143, 0.0209222846, -0.00167414465, -0.0247013271, -0.00810105074, -0.0118800923, -0.0122275911, 0.0221240483, -0.00208136905, 0.0594800971, 0.019735, -0.00656988658, 0.000717619841, 0.000466498168, 0.007326419, -0.0410916544, -0.0526170097, -0.0384275019, -0.0631867424, 0.0130890971, 0.0460145473, -0.000590475334, 0.0199232269, 0.0123289442, -0.00960687548, 0.000955619907, -0.0330412835, 0.0249909088, 0.0452905931, 0.0111850966, -0.0236733109, -0.00189676066, 0.00622600829, -0.0149134621, -0.0307246279, -0.00661332393, 0.0605805106, -0.00770287542, 0.0200969763, -0.0166943893, 0.0129081085, -0.033417739, 0.00105787849, 0.00601968123, -0.0304060876, -0.00548033509, 0.00755084492, -0.0256859045, 0.0233692508, -0.041526027, -0.0565263629, -0.0160283521, 0.06440299, 0.013537949, 0.00139632716, 0.00199268456, 0.0271482933, 0.00544051779, 0.0177948, -0.0176644884, -0.0106783286, 0.0101136435, -0.0180699043, -0.0041627381, 0.0302612968, 0.0205458272, 0.0203576, -0.0218489449, -0.0225584209, -0.0356764756, 0.0166364741, 0.00239447947, -0.0314196236, 0.0103670275, -0.00159541471, -0.0298848394, -0.028393494, 0.0371533446, -0.0508216023, -0.0204444733, -0.0266270451, -0.0103742676, -0.0165351201, 0.00510387914, -0.00642871577, 0.0308115017, 0.00691376533, 0.0389197916, -0.00916526373, 0.0153043978, -0.00501700444, -0.00670381822, -0.013588625, 0.0114240013, -0.00933177304, 0.0494605675, -0.00744949142, -0.00356909563, 0.0304929614, -0.0215159263, 0.00843406934, 0.0113733243, 0.013689979, -0.0139071653, 0.00754360575, -0.00944036618, -0.0169260558, 0.0206037443, -0.0306377523, -0.00337905739, -0.0067544952, 0.00141533103, 0.00524143036, 0.0401939526, 0.000967384141, 0.00252479129, -0.0236588325, 0.0395279154, 0.00687394757, 0.0129370661, 0.0250198655, 0.0445376784, -0.0243827868, -0.00789110363, 0.00292839576, -0.0266125668, -0.0276405811, 0.0228335243, -0.00828927848, -0.0303771291, -0.0331860743, -0.0211394709, 0.0274089165, -0.012118998, 0.0248750746, 0.0146817965, 0.0161297061, 0.0254976768, 0.00896255672, 0.00423875358, 0.0326648243, 0.000316956313, -0.0277419351, -0.0341416933, -0.0141243516, 0.0312169157, 0.00143162, -0.0284369309, -0.0283645354, -0.00983130187, -0.0390645824, -0.00252479129, 0.0150727322, 0.0364004299, -0.0449430943, -0.028552765, -0.0269166268, -0.00623324793, -0.01287915, -0.0173169915, -0.0167523064, 0.00808657147, -0.0123868613, 0.014095393, 0.000797707355, 0.0182436518, -0.0265836082, 0.00307499664, -0.0237746648, -0.02829214, 0.0216462389, 0.0013474602, -0.0196915623, 0.010395986, -0.0368348025, -0.00853542332, 0.0537753366, 0.0247158054, 0.0441901796, 0.0171722, 0.0201693717, -0.0131976902, -0.00936073158, 0.0159559567, 0.0182146952, 0.0161731429, -0.00768115697, -0.00310757454, 0.00819516461, 0.00507854065, 0.0161731429, -0.00792730134, 0.00555273052, 0.00414463924, 0.0291608851, -0.00336638838, -0.0341416933, -0.0214869678, 0.0102873929, 0.0132194087, -0.0292188022, -0.0321146213, 0.00635632034, 0.0219358206, -0.00555635057, 0.00840511173, -0.015565021, 0.062318, 0.0101860389, -0.0524722189, 0.00516903494, -0.0139868, 0.033417739, -0.0350973122, 0.0068811872, -0.0286251605, -0.0166654326, -0.00712371198, -0.00219901162, -0.0356185585, -0.0230507106, 0.0106059331, -0.0059219473, -0.00843406934, 0.00819516461, -0.0310142096, 0.00102892029, -0.00300260121, 0.011662906, 0.0213276986, -0.00309490529, 0.000767391757, 0.00253565051, -0.0242235158, -0.00491203088, 0.0021573843, 0.0198218729, 0.0251212195, -0.0140085192, 0.0185911506, -0.0157822073, 0.00245601544, -0.0105190584, 0.00038980422, -0.0117353015, 0.00229674554, -0.0306377523, 0.00687394757, 0.00974442717, 0.0421631075, 0.00458625145, 0.00718886778, 0.0244262237, 0.0453485064, 0.0196046866, -0.00757256383, 0.0303771291, -0.00561064715, -0.0208354089, -0.0165206417, 0.00230217515, -0.0370664671, 0.0108593171, -0.0275537074, -0.00552377244, -0.0298848394, 0.0146311196, -0.0031564415, 0.01176426, -0.012828473, -0.0017800231, 0.0509084798, -0.0287409928, 0.0101715606, 0.0315933712, -0.00221349089, 0.00938245, 0.0119090509, 0.0110258264, 0.0113226483, 0.0308694188, -0.0179251134, 0.0115036368, -0.0156663749, 0.00551653281, -0.0153767932, 0.0231665429, 0.0195757281, -0.0119235301, -0.0208643675, 0.0109244725, -0.000443648343, -0.0155795, 0.0121551957, -0.00784042664, 0.00947656389, 0.000182685384, 0.00991093647, 0.0143487779, 0.0118004577, -0.018200215, 0.00401794724, 0.0300875474, 0.00191304972, 0.00433286745, -0.0012207682, 0.0608700924, 0.0182436518, 0.00469846465, 0.0188517738, 0.043002896, 0.00747844949, 0.0279156845, 0.0179251134, -0.0194454174, -0.0173314698, 0.0204589535, -0.0136031043, -0.0202996824, 0.0103887469, -0.00902771205, 0.0190544818, -0.0205603074, 0.0041627381, 0.00763771962, -0.0104177045, 0.0240208097, 0.0443349704, 0.0120104048, 0.0144790895, -0.0363425128, 0.00852094404, -0.0100557273, -0.00810105074, 0.0139578423, -0.0187793784, 0.00592918694, -0.0206182227, 0.00878156722, 0.0050351033, -0.0181712564, 0.0298848394, -0.00217367336, 0.0315933712, 0.0140519561, 0.0187214632, -0.00673639635, 0.0682254657, -0.0193440635, 0.00639975769, -0.0128501914, 0.0255411137, 0.0191413555, -0.00560340751, -0.00259718671, 0.0137985721, 0.0266125668, 0.0269166268, -0.0205313489, 0.0102584343, -0.00923041906, -0.000646129367, -0.0199956223, 0.0403387435, -0.0204299949, -0.0283355769, 0.0270903762, 0.0196481235, 0.013740656, -0.0090059936, 0.0143415378, 0.0359081402, 0.00448489795, 0.0105190584, -0.00488669286, -0.0174617823, 0.0114674391, 0.0253818445, -0.0222543608, -0.0139723215, -0.00816620607, -0.00671467744, 0.0037826621, 0.00968651101, -0.0217765495, 0.0126330052, 0.0398464538, 0.0148989828, 0.00596538465, -0.0146021619, -0.0355896, 0.0177658424, 0.0283790156, 0.00851370487, -0.0112864505, 0.0132556064, 0.0212553032, 0.0058423127, -0.0102005182, 0.0135813858, 0.0137623744, 0.0164916832, 0.00126420544, -0.0184463598, -0.000799517205, 0.00327046425, -0.00794902, 0.0454064235, -0.0289147422, 0.0393252075, -0.00348403095, 0.0250198655, -0.01414607, 0.00119452481, 0.0162165798, 0.00931729376, -0.00133569597, 0.0437847674, 0.0330991969, 0.0140519561, -0.00428943, -0.0111344196, -0.019778436, 0.00236552116, -0.0117208231, 0.0200245809, -0.00561788678, -0.0226597749, -0.0386302099, -0.0296386965, 0.011358846, -0.0150872115, -0.00217186334, 0.00193657819, -0.0217475928, -0.0081589669, 0.0180264656, -0.00991817657, -0.0135162296, 0.00235104212, 0.00816620607, -0.0109823896, -0.0209657215, 0.00647939229, 0.0107652033, -0.0230362304, -0.0244551823, 0.00836167391, 0.0161876213, -0.00173658575, -0.00609569671, -0.00655178772, 0.0146600781, 0.00393831218, -0.00417359732, -0.0133714387, 0.0264967326, -0.0026569129, -0.00417359732, 0.0189386494, -0.0282487031, 0.0106204124, 0.00662056357, 0.035705436, 0.000399532379, 0.0185477138, -0.030927334, 0.0137261767, -0.00381162018, 0.00442698179, -0.0346050225, -0.0212553032, -0.00390573428, -0.0290016159, 0.0224281102, -0.000199313712, 0.0498370267, -0.013740656, 0.00902047288, -0.00809381064, -0.0218344666, -0.00285600033, 0.00114022824, -6.99634111e-05, -0.0369506367, 0.0251936149, 0.047259748, -0.00758704264, 0.02940703, -0.0227032118, 0.0379062556, 0.00575905759, 0.030927334, 0.0395568721, 0.00785490591, -0.00201440323, 0.0164627247, 0.0189965647, -0.00683413027, -0.0160428304, -0.0122637888, 0.0254542399, 0.018605629, -0.0116846254, 0.0307535864, 0.00710199308, 0.00523419073, 0.0293201562, 0.020227287, -0.000738886, -0.0229638349, 0.00548395514, 0.00473466236, 0.00367044914, -0.0266415235, -0.00564684486, -0.0183450058, 0.00705855619, 0.016477203, -0.0256135091, 0.00787662435, -0.0102511952, -0.0154491886, 0.00875261, -0.0171577204, 0.00698616076, 0.0158111658, -0.0229493566, -0.0240932051, 0.0415839441, 0.0271048546, 0.0420183167, -0.0208788477, -0.00260804594, 0.00378628192, 0.0100774458, -0.0711792, -0.00369216781, 0.0122348303, -0.0102873929, 0.00760152191, 0.0190110449, 0.00398536911, 0.0216896757, -0.0109679103, -0.0135741467, -0.0108810356, 0.0155795, 0.00663866242, 0.0413522795, -0.0118945716, 0.00321435789, 0.0315354578, 0.00469846465, 0.00145695836, -0.0165930372, 0.00604864, 0.0301454645, 0.0255845506, 0.0390645824, -0.0256135091, -0.00169133861, 0.0506188944, 0.0187793784, 0.0262361094, 0.00880328659, -0.00728298211, -0.00216281391, 0.0286830757, 0.0207485352, -0.0190255232, -0.0447983034, -0.0136972181, 0.00907838903, 0.00598710356, -0.0257872585, 0.0234126877, 0.0195902083, -0.0155795, -0.0166509524, -0.0222543608, -0.00256641861, 0.0200245809, -0.0350104384, 0.0325489938, -0.0304350462, -0.0454643406, -0.0146021619, -0.00415911851, 0.049547445, -0.0205313489, -0.0231810212, 0.00303879892, -0.00435458589, -0.0110982219, -0.0133280018, -0.0206906181, -0.0479547456, -0.00733365864, 0.00383695867, -0.014298101, -0.0485049486, -0.00860057864, -0.00642509572, 0.00575905759, -0.0440743491, 0.00306956703, -0.015970435, 0.0185911506, 0.00910734758, 0.0221819654, 0.0232534166, 0.00466588652, 0.00910734758, 0.0255266353, 0.0127415983, 0.0293780714, -0.0353000201, -0.00699702, -0.0167523064, -0.0210381169, 0.0162600167, 0.00494460901, 0.0020614604, 0.0115687922, -0.0174473021, 0.0416708179, 0.0297110919, -0.00955619849, -0.000238000037, -0.016578557, -0.0262795463, -0.0135017512, -0.00247592432, 0.0136755, -0.0138275307, 0.0314485803, -0.0233692508, 0.0290305745, 0.00187323219, 0.0265546497, 0.0289436989, -0.0411785282, 0.0166943893, 0.01176426, 0.0195178129, -0.015463667, 0.0016569508, 0.000736623653, -0.00709113386, -0.032954406, -0.0221819654, -0.00420255587, 0.025555592, -0.0187938586, -0.00852818321, 0.00211394695, -0.0183015689, 0.0209802, -0.0203286409, -0.0223412346, 0.0103525491, 0.0105407769, -0.0212697815, -0.028393494, -0.0407441556, 0.0142546631, 0.0146817965, 0.0137768537, -0.00444508065, -0.0248461179, -0.014399454, 0.0174183436, 0.0215738434, 0.0252804905, -0.000611289055, 0.031187959, -0.00938968919, -0.00910734758, 0.0171722, -0.00653368887, -0.0368348025, -0.00533554424, 0.0402808264, 0.0299427565, 0.0204589535, -0.00170853257, -0.0105335377, 0.0280315168, -0.0130601386, 0.0107652033, -0.0110620242, 0.0221530069, 0.0253528859, 0.0176500101, -0.0014361447, 0.0361398086, -0.00776079204, -0.00560340751, 0.000329399278, 0.0403097831, -0.033967942, 0.00343697378, -0.00200354401, -0.0103670275, -0.0245565362, 0.00888292119, 0.0232678968, -0.00210127793, 0.00211213715, 0.0125171728, 0.0075001684, 0.00067192025, 0.00191485952, -0.0337652378, -0.0179975089, -0.00614275364, 0.00933901221, 0.0283066202, 0.0257438216, 0.0226597749, 0.0320567042, 0.013842009, 0.0122855073, 0.0148193482, -0.0120828, 0.0130239408, -0.0307535864, 0.00779698975, 0.0133207617, -0.0239194557, -0.015565021, 0.0186490677, 0.00228950591, -0.00720334705, 0.00810105074, -0.0174473021, 0.00673639635, -0.0028469509, -0.00644319458, -0.00272568851, -0.019720519, 0.012828473, 0.00311843376, 0.0138130514, -0.00542965857, -0.0114022829, 0.0251357, 0.00360710314, 0.00805761293, 0.00353108789, -0.00742053334, -0.00670019863, -0.00438716402, 0.00904219132, -0.0116556669, 0.00595814502, -0.0241945591, 0.0113733243, -0.00642147614, -0.00499890558, -0.0284369309, 0.0170274097, 0.0175052192, 0.0148410667, -0.0105262976, -0.015565021, 0.00491927052, -0.0156518947, 0.00447765831, -0.0167088695, -0.0088322442, -0.0107290056, -0.00561426673, 0.0153478347, -9.36050492e-05, 0.0047817193, -0.000557444931, 0.0196191669, -0.00104973395, 0.00907838903, 0.00967927091, -0.0202562455, -0.0298269242, 0.0293201562, -0.0114529599, -0.0148193482, 0.00854990259, -0.0196336452, -0.0164916832, 0.00158093555, -0.0128212338, -0.00345688267, -0.0257003829, -0.00158274546, -0.0184463598, -0.00592918694, 0.0300006736, -0.0177079272, -0.0359081402, 0.00201983307, 0.0798666552, -0.00328675332, 0.0106059331, -0.00338810682, -0.00796349905, -0.0414391533, -0.00598348351, 0.0253963228, 0.0194888543, -0.0190834403, 0.0209222846, -0.00174473028, 0.00224244897, -0.00952724088, -0.00758704264, -0.0181857366, -0.0140157584, 0.000216055167, 0.0266125668, -0.0209512431, -0.0110765034, 0.0162744969, 0.0125533706, 0.0130528994, 0.0315064974, -0.00144609902, 0.0154057508, -0.017490739, -0.0687467158, -0.00444508065, 0.0364293903, 0.00065970351, 0.0215883218, -0.0127995154, 0.0110982219, 0.0414391533, -0.00887568202, -0.00746397069, -0.019271668, -0.0178961549, 0.00369035779, -0.0199521855, -0.00405052537, 0.00205784058, -0.00833995547, 0.0243248697, -0.00514731603, -0.00158455537, -0.0308983773, 0.023427166, -0.0235864371, -0.0154202301, -0.0151740853, -0.00829651859, -0.000174201545, -0.00919422135, 0.00291210692, -0.0188083369, 0.0179830287, -0.0355896, -0.000912635121, -0.00471294345, -0.017592093, -0.0408020727, 0.0123796212, 0.00474190153, -0.0390356258, 0.0128574315, -0.0493157767, -0.0138347698, 0.0223701932, -0.000325100817, 0.00483963545, -0.0139216445, -0.0263374634, -2.7190712e-05, 0.000149654967, 0.0114674391, -0.0211539492, -0.0165495984, -0.0204010364, 0.0258741323, -0.00738071557, -0.00792730134, -0.0228190441, -0.00592918694, -0.00282161264, -0.0114240013, -0.00985302, 0.00657350663, -0.00584593229, -0.0124520166, -0.0061210352, -0.00584955188, -0.0102367159, -0.0212842617, 0.0308115017, 0.0201259349, 0.0153767932, -0.00337362778, 0.0161152259, 0.000592737691, 0.01623106, 0.016578557, -0.0200535394, -0.0076666777, 0.0258451737, -0.00792006217, 0.00983854104, 0.00946208462, 0.0333598219, -0.00974442717, -0.011206815, 0.0131542524, 0.00477809925, -0.00558168907, -0.00761600118, 0.00376094342, -0.0229348782, 0.0066821, -0.0201114547, -0.0100050503, -0.0230072737, 0.00451385602, 0.00722868554, -0.00805761293, 0.000202594136, 0.00423513353, 0.00040021108, -0.0121624349, -0.0128139937, -0.00970822945, -0.0276116226, -0.00546947587, -0.0150872115, 0.00555273052, -0.0101498412, 0.0173749067, -0.00439078361, 0.029913798, -0.0197060406, -0.00409758231, -0.0103815068, 0.0108593171, -0.00406138459, 0.0223267563, -0.0154491886, 0.0218489449, 0.000824855641, 0.00102168077, -0.00501338486, -0.0161152259, 0.00251031201, -0.0140374769, 0.0160573106, -0.0134003973, -0.00656626699, 0.00774631277, 0.0120248841, 0.00638527842, 0.0118438946, 0.0277708936, 0.0084919855, -0.011510876, -0.0261202771, 0.00960687548, 0.00345145282, -0.0326358676, 0.0114674391, -0.0196191669, 0.00355823617, 0.0117570208, 0.0186345875, -0.0243683066, 0.00773907313, 0.00333381025, -0.00737709599, 0.0169405341, -0.00365778, -0.00471294345, -0.0152754392, 0.0102873929, -0.013233888, -0.0161586646, 0.0189241692, -0.00405414496, -0.0137696136, -0.0284514111, 0.00595452543, 0.0112357736, -0.0119452486, -0.0133642, 0.0188807324, -0.0146238804, 0.0402229093, 0.0123361843, -0.0283210985, -0.00235104212, 0.0012171485, 0.0181133412, -0.0154491886, 0.00983854104, 0.00961411558, 0.0187504198, 0.00371750607, -0.00193295837, 0.00235285191, 0.0132556064, 0.0264098588, -0.00983854104, 0.0183884427, -0.00115108758, 0.00123434234, -0.0368058458, 0.0249329917, 0.0162600167, -0.00181712571, -0.0227466486, 0.029913798, 0.00590022886, 0.00510749873, 0.00606311858, -0.0121913934, 0.000137098876, 0.00949104317, 0.00161803828, -0.00920870062, -0.0303481705, 0.00694996305, 0.0089191189, -0.0134076364, 0.0331860743, 0.0402229093, -0.0112719713, 0.0117787393, 0.011004108, 0.0131252948, -0.0142546631, -0.0326937847, 0.00993989501, 0.0020922285, 0.0153912716, -0.00612827437, 0.0233402923, 0.00956343859, -7.18864176e-05, -0.002941065, -0.00100086699, -0.02241363, 0.00929557532, -0.0105552562, 0.0149424197, 0.0206471812, -0.0324331596, 0.0174038652, -0.00870917179, -0.018706983, -0.0276405811, -0.00980958343, -0.0280170385, 0.0161586646, 0.010598693, -0.0183450058, 0.00258813729, -0.0401939526, 0.0139723215, -0.0213856157, 0.00113751343, 0.00547671551, -0.0260044448, 0.00788386445, 0.0117208231, 0.0233113337, 0.0119959256, 0.00278541469, -0.0146890357, 0.0249619503, -0.000982768135, -0.00915802363, -0.0134438341, -0.0177658424, -0.00228950591, -0.000859243446, -0.0106566101, -0.0120900394, 0.00185694324, -0.0039491714, 0.00238904962, 0.00183160475, 0.0281473491, 0.0243103914, 0.0169260558, -0.0324910767, 0.0188228153, 0.00707665505, 0.045232676, 0.0241656, 0.00469846465, -0.00673639635, -0.00248316373, 0.00389125524, -0.0190255232, -0.0149279414, -0.0061608525, 0.0122058727, 0.00813000835, 0.0361398086, -0.00642147614, 0.0408599898, 0.00171667698, -0.00550567359, -0.0161731429, -0.00760152191, 0.0254687183, -0.0111706173, 0.00697168149, -0.0222833175, 0.0042496128, -0.0297110919, -0.0505899377, -0.0026949204, -0.021096034, -0.0340548195, -0.0118800923, 0.0276116226, -0.012321705, -0.019735, -0.0176789686, -0.00392745296, -0.0261781942, 0.017852718, 0.00718524819, -0.0170998052, 0.0191992726, 0.00646129344, 0.00677621365, 0.00975890644, -0.000432562781, 0.00603778, -0.00371388649, -0.0166654326, 0.00300984061, -0.0203286409, 0.0117859785, 0.00139089755, 0.0303771291, -0.00502062403, 0.0185332336, -0.0185621921, -0.0186635461, -0.0151885645, -0.0124302981, -0.00644319458, -0.00275283679, 0.0118366554, 0.0352710597, 0.00563598564, 0.0138492491, 0.00143342989, 0.0172735527, -0.0176065732, 0.0162744969, 0.0212263446, 0.00423875358, 0.0230796691, -0.0241076834, -0.00207593944, 0.00781146856, 0.00706217578, -0.00211937679, 0.0214869678, 0.037211258, 0.00714181084, -0.0262795463, 0.00638527842, 0.0160283521, 0.00873089116, -0.000286640716, 0.000922137, -0.0106783286, -0.0293635931, 0.00595814502, -0.0136248227, -0.010395986, 0.02099468, -0.0113371266, -5.95000092e-05, 0.0118076969, -0.010548017, -0.0164337661, 0.0255266353, -0.0192427095, -0.00371750607, 0.00422427431, 0.00567218335, 0.01526096, -0.0379062556, 0.017085325, -0.0425106063, -0.0100267697, -0.00632374221, -0.0048830728, -0.0105407769, 0.0125895683, 0.0115253553, -0.00162075309, -0.0188228153, -0.029913798, 2.69503362e-05, -0.0160428304, 0.00525228959, 0.019981144, -0.0180699043, -0.0475782864, 0.0242090374, 0.0278143305, 0.00232932344, 0.036197722, 0.016071789, -0.00427857088, -0.00308585586, -0.0291608851, 0.00208317908, -0.0221385267, 0.00154564274, -0.0243248697, 0.0127560776, 0.00436906517, -0.0147614311, -0.0122782681, -0.0307825431, -0.0179685503, 0.00310938433, 0.0116701461, -0.00896979589, -0.00789110363, -0.0244407021, 0.0231086258, 0.0122637888, 0.0216896757, -0.0236733109, 0.0106638493, 0.0364293903, -0.00381524, 0.00864401646, 0.00278903451, 0.0161007475, -0.00558530865, -0.012980504, -0.00158817507, 0.00618981058, -0.00969375, -0.011460199, 0.0297979657, 0.00248316373, -0.00390573428, -0.0138130514, -0.0294359885, 0.00814448763, -0.000396817544, -0.00517627457, -0.0189386494, -0.0132483663, 0.0139795607, 0.0255990308, -0.000581878412, 0.00555273052, -0.0143270586, -0.0118728532, -0.0144573711, 0.0228045657, -0.0300296322, 0.00629116409, 0.0177658424, -0.00330123235, 0.00436544558, -0.0156084578, -0.00317997, -0.0132049294, -0.00826032087, -0.0014678177, 0.0341127329, 0.00537898159, 0.00953448, 0.0107652033, -0.000865578069, -0.00726126321, 0.00754360575, 0.0110258264, -0.000971908856, 0.039701663, 0.0174038652, -0.0158256441, 0.00253927032, 0.00875261, 0.00792006217, -0.0133062834, 0.00143162, -0.0113371266, -0.0227321703, 0.0191268772, -0.00644319458, -1.69818231e-05, 0.00794902, 0.00240171887, -0.00532830507, 0.00901323278, 0.00634184107, 0.00676173484, 0.00752188684, 0.00357452524, -0.0164916832, -0.00855714176, 0.0202707257, 0.0137985721, -0.0202417672, -0.0130094616, -0.0319987871, -0.00923041906, -0.0244262237, 0.0300875474, 0.0103235906, 0.0102222366, -0.0129008684, 0.00914354529, 0.00915078446, 0.0236153938, 0.00398174953, 0.0231086258, -0.0107072862, 0.00523419073, 0.0187793784, -0.00778251048, 0.00668571936, -0.000414690177, -0.0350683555, 0.00767391734, -0.00615723291, -0.00894807745, 0.00330666197, -0.0125026936, 0.00126873015, -0.00502786366, 0.00342973438, 0.0168391801, 0.00171124737, 0.00264424365, 0.00980958343, -0.0217765495, 0.00588574959, 0.0039962288, 0.00676897448, 0.00207412965, 0.0136175836, 0.00756532419, -0.0129225869, -0.0039093541, 0.00868021417, 0.00481429743, 0.00494098943, -0.00240533869, -0.0240497682, 0.0209512431, 0.00580973458, 0.006819651, -0.00155831198, -0.00386591675, 0.0078983428, -0.000129293738, -0.0134148765, 0.00722506549, 0.0190834403, 0.0206761397, 0.0189820863, 0.0402518697, 0.0391804166, 0.00321616768, 0.0175776146, 0.00812276918, -0.0358502269, 0.0304350462, -0.0117497807, -0.000779608439, 0.0269455854, -0.0251936149, 0.0186201092, -0.00214833487, 0.0239773728, -0.00142438046, 0.000352475327, -0.00889016129, 0.00311300415, -0.0326069109, -0.00760152191, -0.00317454035, -0.00155288237, -0.010953431, 0.00818068534, 0.0101860389, -0.00291934633, -0.0156953335, -0.00536088273, -0.0099833319, 0.00442698179, 0.00348584075, -0.0129949823, 0.00206508022, -0.0132628456, -0.0205313489, -0.00527038844, -0.0142039862, -0.0161441844, 0.0144356517, 0.0215883218, 0.0102077583, -0.0111344196, -0.00919422135, 0.00576629722, -0.0195612498, -0.000981863239, 0.0190834403, 0.00172482152, -0.00592918694, 0.00132031192, 0.0168826189, 0.00303879892, 0.0114963967, -0.00308404607, -0.0198653098, 0.00615723291, 0.0194019806, 0.00418807659, -0.0139795607, -0.01272712, -0.003194449, -0.00271301926, -0.00155107246, -0.00770287542, -0.0107362447, -0.0108231194, 0.00316549093, 0.00785490591, 0.0023148444, -0.0115760323, -0.0115905106, 0.0151596069, -0.00755808456, 0.019474376, 0.00283609168, -0.016071789, 0.00499890558, -0.00135650963, -0.0228914395, 0.00416997774, 0.0413812362, -0.0169984512, 0.022717692, 0.0108231194, -0.0112430127, 0.00252479129, 0.0137768537, -0.00633460144, 0.000270804216, 0.0231375843, -0.0158401243, -0.0239773728, 0.00399260875, -0.00538260164, 0.00353108789, -0.0220806114, 0.019735, -0.00439802324, -0.0340258591, 0.0194598958, 0.0157242902, 0.0206327029, 0.0413812362, 0.00567580294, 0.000626673107, -0.00251574186, -0.00892635901, 0.00695720222, -0.00353832752, -0.00420617545, 0.0265980866, -0.0175052192, -0.000898608472, 0.00984578114, 0.00166509522, 0.00272568851, 0.0134293549, 0.0106276516, -0.0161876213, -0.0138202906, 0.0222833175, 0.0113805644, -0.00568304257, 0.0200680178, 0.00113660854, -0.00922318, 0.0252080951, 0.00497718714, -0.0181857366, 0.0130746178, 0.00558530865, 0.00914354529, 0.0169405341, 0.0164192878, -0.0088322442, 0.00117733097, -0.0015972245, -0.0171577204, -0.0042496128, -0.0142619032, -0.0208788477, 0.00281256321, 0.00386953657, 0.0280025583, 0.0118438946, 0.0138275307, -0.0173893869, -0.0168102235, 0.00191666943, -0.00531382579, -0.0280749537, -0.00684498949, -0.00962859485, -0.039962288, 0.0117425416, -0.0363135561, -0.0156663749, 0.0393831246, 0.00163523213, -0.0250198655, -8.39900258e-06, -0.011156138, 0.00413739961, 0.00570114143, 0.00696806191, -0.00197639572, 0.027886726, -0.00691014528, 0.00170129305, -0.00202345266, 0.000121827965, -0.00734089827, 0.00150944502, -0.00451385602, -0.00999781117, 0.0118800923, -0.0200245809, -0.00885396358, -0.001844274, -0.0165351201, 0.00440888247, -0.00327408407, 0.0055418713, -0.00234380248, 0.0152464807, 0.00316549093, -0.0121913934, -0.012220351, 0.00431838818, -0.0248461179, -0.01191629, 0.00839787163, 0.001844274, 0.0221240483, -0.00135650963, 0.0205603074, -0.00904943049, -0.00919422135, 0.014551485, -0.00561788678, 0.0059472858, 0.0378773, -0.00377542246, -0.00731194, 0.00802865531, -0.0131470133, 0.0180119872, 0.0104032261, 0.00477809925, 0.00585317193, -0.00105606858, -0.011308169, 0.00451747607, 0.00993989501, 0.00417359732, -0.00941140763, -0.0166654326, 0.0108737964, 0.0050894, -0.00270577986, 0.00285600033, -0.0274668317, -0.00122348301, -0.0024668749, 0.00164790137, -0.00524505, -0.00124339177, -0.0169694927, -0.0136320628, -0.00746397069, -0.00528486772, 0.00558530865, 0.00242162775, 0.00691738492, -0.0243103914, 0.00967927091, -0.000785943063, -0.00457901182, 0.012220351, 0.0112792104, 0.0193440635, -0.00219901162, 0.00747844949, -0.0378483385, 0.00598348351, -0.0216751974, 0.0306377523, -0.0032813237, -0.00428581052, 0.00525590964, -0.00207955926, 0.00794178061, 0.00518713379, -0.0061210352, 0.00675811479, -0.0128501914, 0.00635632034, -0.00424237316, -0.018200215, -6.15361278e-05, 0.00716714934, 0.0119090509, 0.00287590921, 0.000356547564, 0.0357343927, 0.00506406138, 0.0035057494, 0.0185042769, 0.00873089116, -0.00881776493, 2.42213664e-05, -0.00236190134, 0.0161441844, -0.0382827111, -0.00319806882, -0.000240488618, -0.00673277676, 0.00320711825, 0.000968289096, 0.0035365175, 0.00855714176, 0.00667124055, 0.00187323219, -0.0281618293, -0.0183015689, 0.00450661639, -0.0104394238, 0.0174328238, 0.0280894339, 0.00571200065, 0.0110403057, -0.00748568913, 0.000881414569, -0.000511292834, 0.000268315634, 0.00025157418, 0.00366863934, -0.0152320024, 0.0127488384, 0.0104249446, 0.0108086402, -0.0119959256, -0.0228480026, -0.0069210045, -0.0247158054, -0.0109896287, 0.00176373404, 0.00776803121, -0.00563598564, -0.0088974, 0.00251936144, -0.00961411558, 0.00542603852, 0.0228624828, 0.018605629, 0.0071599097, 0.0141171124, 4.56147864e-05, -0.00512559758, -0.00434010709, 0.0141098723, 0.00343878381, -0.00267863157, 0.0161731429, -0.0121769141, 0.0106421309, 4.99132657e-05, -0.00226778747, -0.0166654326, 0.00295735407, -0.0170563664, 0.013385918, -0.00458263187, 0.00400346797, 0.0249474701, 0.0124954544, -0.029913798, 0.0442770533, 0.0255990308, -0.013436595, -0.0156953335, -0.00992541574, 0.0216751974, -0.011662906, 0.000857886043, 0.000945665524, -0.00144609902, -0.00151125493, -0.0218779035, -0.0335625298, 0.000815806212, 0.00347860111, 0.0171142835, 0.0154202301, -0.000382790924, 0.00598348351, 0.00227864669, -0.00453557493, 0.0107145263, -0.0104394238, 0.00357995485, -0.00458625145, -0.0377614647, -0.00902047288, 0.0120321233, -0.00713095162, -0.0246289317, 0.00348584075, -0.0148193482, 0.0057952553, 0.00464054802, -0.00549843395, -0.00523057114, 4.82730575e-05, 0.00147505722, -0.0122637888, 0.0228480026, -0.0061608525, -0.00702235848, 0.0022207303, -0.00244515622, -0.0147107551, -0.00591108808, -0.00813000835, -0.000509935431, -0.0131397732, -0.0129153477, 0.0197060406, -0.00420617545, 0.0183884427, 0.0222109221, -0.0175631344, 0.0125606097, -0.0005153651, -0.0249040332, 0.00907838903, -0.016578557, -0.00179812196, -0.00050676812, -0.00752912648, 0.0126619637, -0.00476362044, 0.00818068534, -0.00290486729, 0.0100629674, -0.0254976768, -0.0058423127, 0.00523419073, -0.014956899, 0.00246506487, 0.0293925516, -0.00274740718, 0.0117353015, -0.0106348908, 0.0102729136, 0.0151161691, 0.0118728532, 0.0156953335, 0.0101281228, -0.0121117579, -0.00820964389, -0.0160428304, 0.0327806585, -0.0272351671, 0.0177658424, 0.00618257094, 0.015463667, -0.00447041867, 0.00711285276, 0.01049734, 0.0059219473, 0.00447041867, 0.00189133105, -0.0187214632, -0.00924489833, -0.0238904972, 0.0173025113, 0.0109099941, -0.0129732639, -0.00701149879, -0.00789110363, 0.000514007697, 0.00983854104, -0.000763771939, 0.022920398, -0.00181622081, -0.0164482463, -0.0153623139, 0.00788386445, 0.0111271804, -0.000385053281, -0.0251067411, 0.0155071048, 0.00640337728, -0.00560340751, -0.00822412316, -0.00912906602, -0.00356366578, 0.0182146952, 0.00733365864, -0.0105335377, -0.00687032798, 0.0225729011, 0.000867840427, 0.0233692508, 0.0249764286, -0.00896979589, 0.00117552106, -0.0283210985, 0.00991817657, -0.0264677759, 0.0290884897, -0.00472380267, -0.00600158237, 0.00904943049, 0.0118438946, -0.00867297407, 0.0141533101, 0.00317454035, -0.0158256441, -0.00170762755, 0.0233258121, -0.016983971, 0.00273654796, 0.0243103914, -0.0116846254, -0.00987473875, 0.000787753, -0.00781146856, 0.0217475928, -0.00418083696, -0.00519437343, 0.0158835612, -0.012220351, -0.0167812649, 0.00848474633, 0.00314739207, 0.00941140763, 0.00361615256, -0.00685222913, -0.00685222913, -0.0121769141, 0.00137008377, 0.00411206158, 0.0121913934, 0.00688842684, -0.00127144507, -0.00295916386, 0.00563598564, -0.0166943893, 0.0177224055, -0.017085325, 0.0130528994, 0.0130601386, 0.0292622391, 0.00899875443, -0.000599072315, 0.00545137702, 0.000620790932, 0.00489393203, 0.0143198194, 0.0080793323, 0.0121986326, 0.0181133412, 0.0105914539, -0.0151161691, -0.00949104317, -0.0102729136, -0.00238000019, 0.00427495129, -0.0102149975, 0.00146600779, -0.0152030438, -0.0177803226, 0.00628392491, -0.0045681526, 0.00325417542, -0.000991817564, -0.027278604, 0.0170708466, -0.0181423, 0.0248461179, 0.00550567359, -0.0275681857, -0.0277998522, 0.0194454174, 0.0189241692, -0.0180409458, -0.017852718, -0.0175486561, 0.012929827, 0.0157387704, -0.000670110341, -0.00601606164, 0.029305676, 0.015970435, -0.0136610204, 0.00871641189, -0.00165333098, 0.00308042625, -0.0074132937, -0.0134727927, 0.00725402357, -0.00576991728, 0.0218489449, -0.0108231194, 0.00994713418, -0.0120393625, 0.00396003108, -0.022920398, 0.00520523265, -0.0124592567, -0.00605949899, -0.00533554424, 0.0104321837, -0.0185187552, -0.00429666974, -0.016983971, 0.0141026331, -0.0160862673, 0.00540793967, -0.0124013396, -0.00143252488, 0.0358791836, 0.0185187552, 0.00280170375, -0.014956899, -0.0253673643, -0.0152464807, 0.00147867703, -0.00512921717, 0.0184608381, 0.0147903897, -0.00175920932, -0.012017644, -2.08985293e-05, -0.0132194087, -0.0127415983, 0.0192861464, 0.037471883, -0.00774631277, -0.00514007686, -0.00429305, 0.00262071518, 0.0113226483, 0.00579163572, 0.012423059, 0.0286251605, 0.0131759709, 0.0177948, 0.00409758231, 0.005755438, 0.00929557532, -0.0125678498, 0.0176065732, -0.0151306484, 0.0219502989, 0.0132628456, 0.0082458416, 0.00476724, -0.0030605176, 0.00687394757, -0.01414607, -0.00376818306, -0.00588936964, -0.0288568251, -0.00982406177, -0.0037826621, -0.000875532452, -0.00734089827, -0.0014714374, 0.0191558357, -0.0157532487, -0.0289726574, 0.0099833319, 0.000954714953, 0.00691014528, 0.00773907313, 0.00729746092, 0.0225584209, 0.00358357467, -0.00916526373, 0.0208643675, -0.0280315168, 0.007199727, 0.0115253553, -0.00839063246, -0.00167957437, 0.000285283313, 0.0103235906, -0.0178671964, 0.0242959112, 0.0123144658, -0.00308223604, 0.0214290526, 7.72029598e-05, -0.015869081, -0.0103815068, -0.0139288837, 0.00155559718, 0.00206327019, 0.00270035025, 0.0082458416, -0.0047961981, 0.0026551031, -0.0319987871, 0.0205892641, 0.0306667108, -0.0187359415, 0.0248750746, -0.0146021619, -0.0156374164, 0.0115760323, -0.0118366554, -0.00578801613, -0.0191992726, -0.00923765916, -0.0066278032, -0.00831099693, 0.0296386965, 0.00844854861, 0.00509301946, 0.0214290526, 0.00390573428, 0.00496994751, -0.0188517738, -0.0017519698, -0.0082458416, 0.0201404132, 0.00667486, 0.0412074886, -0.00921594072, 0.00633822149, -0.0139216445, 0.00947656389, -0.0243538283, 0.00177730818, -0.00458263187, 0.00044161221, -0.0115905106, 0.0206471812, 0.00628030486, -0.011966967, 0.0239628926, 0.0267284, 0.00011085553, -0.0162021015, 0.00975890644, -0.00251393183, -0.02940703, 0.00974442717, -0.00527038844, -0.0084123509, -0.00145243364, 0.00594366621, -0.00663142279, -0.0174038652, 0.00404328573, 0.0118945716, -0.00209041848, 0.0155505417, -0.0118511347, 0.017085325, -0.0126402453, -0.0106059331, 0.00802141521, 0.00217729295, 0.00489393203, 0.0029030575, -0.0130384201, -0.0201693717, -0.0122637888, -0.00809381064, 0.0172011573, -0.00985302, -0.00821688306, 0.0207919721, 0.0189531278, -0.0216607172, 0.0145225264, -0.0304060876, -0.0045029968, 0.00999781117, -0.00839063246, 0.0115760323, -0.0392672904, -0.0123868613, 0.00861505792, 0.0117353015, 0.0212408248, 0.00622600829, -0.00888292119, -0.00476000039, -0.00413378, -0.0141677884, 0.0172301158, -0.000569661672, -0.00029546392, 0.024136642, -0.00450661639, 0.00368492818, -0.0146600781, 0.0224281102, -0.0163324121, -0.00378628192, 0.00596176507, 0.000348629314, -0.00950552244, 0.0177803226, 0.00412654039, 0.0010307302, -0.00776079204, 0.0130167017, -0.0233982075, 0.0114312414, 0.0077318335, -0.00861505792, -0.0163613707, 0.0298558827, 0.0215883218, -0.0119524887, -0.0187214632, 0.00498080673, -0.0121407164, 0.0200969763, -0.0150437737, -0.00646491349, 0.00875984877, -0.0215738434, 0.019720519, -0.00823136233, -0.00336638838, 0.021602802, 0.0204299949, -0.00722144591, 0.0254542399, 0.00282342243, -0.0184897967, -0.00510025909, -0.0060414, -0.0132049294, 0.0341706499, 0.00928109605, 0.00392021332, 0.0135307088, -0.00448851753, 0.0234561246, -0.00445594, 0.0242235158, 0.0131108155, -0.0238904972, 0.00352565828, 0.00250126258, 0.012575089, -0.00377180288, -0.0401360355, 0.0355896, -0.0512849353, 0.00855714176, 0.0202562455, 0.005755438, -0.00395279145, -0.00125877582, 0.0111706173, -0.0187938586, 0.0246144515, 0.00283790147, 0.000774631277, 0.0221964438, 0.00595814502, 0.010700047, -0.0298269242, 0.00954172, 0.0106059331, 0.0160573106, -0.00125606102, -0.00251755165, 0.0200390592, 0.00949104317, 0.00644319458, 0.0176065732, 0.00582421385, 0.00605225936, -0.00258632726, -0.00267139194, -0.0150003368, 0.00431114901, 0.0120755602, -0.00835443474, 0.00130402297, 0.000911730167, -0.00295373425, -0.0131687317, -0.002624335, -0.0104394238, 0.000183250973, -0.0113660851, -0.0122275911, 0.000781418348, -0.0113154082, 0.0037500842, -0.0288423467, 0.0110113472, -0.0216462389, 0.00393831218, -0.0144935688, 0.00558530865, -0.0243248697, 0.0369795933, -0.00369578763, 0.0107579632, -0.00877432805, 0.00414825929, -0.023427166, 0.00573009951, 0.0111633781, 0.00309490529, -0.0117787393, -0.00135017512, -0.00513645681, 0.0126909222, 0.0239628926, -0.000846574258, -0.0161586646, -0.0129225869, -0.0377035476, -0.00803589448, -0.01414607, -0.0344602317, -0.000934806187, 0.00396727026, 0.00406862423, 0.0061608525, -0.00820240378, 0.00925937761, 0.00123524736, 0.022920398, 0.00485411473, 0.0288278665, 0.0212697815, 0.0164482463, 0.0165351201, -0.0005153651, 0.0157966856, -0.0221530069, 0.0211249907, 0.00816620607, -0.00066694303, -0.000314241479, -0.0121551957, -0.0155071048, 0.00264786347, -0.026366422, -0.00923765916, -0.0168391801, 0.0167957433, -0.00444508065, -0.010142602, -0.00936073158, 0.0078187082, 0.00689566648, 0.0279446431, -0.00386953657, 0.0124085797, -0.0129732639, 0.00519437343, 0.0127560776, 0.0176355299, 0.0108158793, 0.00695720222, -0.0079055829, 0.027684018, -0.00461882958, 0.00534640392, 0.0107724424, -0.0146383597, -0.0106421309, 0.0120466026, -0.00360891293, -0.0151596069, -0.0260768402, 0.00286143, 0.00868021417, 0.0063744192, 0.00757980347, -0.0186201092, -0.00852094404, -0.0184463598, -0.00443422096, -0.000687304244, -0.00642509572, -0.00567580294, -0.0169260558, 0.00935349148, 0.0156953335, -0.01303118, 0.00894807745, 0.0110258264, 0.0113226483, 0.0294359885, 0.0228769612, -0.0249474701, -0.0172156375, -0.000899513427, -0.0138347698, -0.00810829, -0.0147976289, 0.00351298903, -0.00857162103, 0.018866254, -0.00319263921, -0.0185477138, -0.0074132937, -0.00770287542, -0.00601244206, 0.00857162103, 0.000708570413, 0.00626220601, 0.0104177045, 0.0157242902, 0.000658346107, 0.00161984807, -0.00772459432, 0.0164627247, 0.00620790944, -0.00273835775, -0.00828927848, 0.00643957499, 0.000518532412, 0.0105914539, -0.00721782586, 0.00915078446, -0.0226308163, -0.00202345266, -0.0233113337, -0.00343335397, -0.005502054, 0.017751364, -0.0137551352, 0.000182119795, 0.00969375, 0.00295011443, -0.033967942, -0.00175739941, -0.00447403872, 0.0159993935, -0.0045029968, 0.0108231194, 0.0268587098, -0.0236877892, 0.0167667847, -0.018258132, -0.000671467744, -0.00323969615, 0.0157098118, 0.0135813858, 0.00345507264, 0.0209078044, -0.00505682174, 0.00854266249, -0.00872365106, -0.0216317587, -0.00992541574, -0.0135741467, 0.00954895932, 0.0059943432, 0.00484687509, 0.0197060406, -0.00457177265, -0.00844130944, 0.00329037313, 0.00528124766, 0.00930281449, -0.00651559, -0.00780422892, -0.00915802363, -0.0024107683, 0.0222688392, -0.0025302209, 0.0200535394, -0.010345309, 0.031187959, -0.00138275302, 0.00996885262, 0.0191558357, -0.00764495926, 0.028798908, 0.0117208231, -0.00496270787, -0.000649296679, 0.0084919855, -0.0154202301, -0.00961411558, 0.00373922475, 0.0141315907, -0.014044717, 0.0163179338, 0.0370085537, 0.00139270735, -0.00157550594, -0.00185513333, 0.01287915, 0.00410844153, -0.0236443523, -1.71514985e-05, 0.0158546027, -0.0142112263, 0.00160265423, -0.00902047288, 0.0107217655, 0.013588625, 0.00479981815, -0.00649387157, -0.0145442449, 0.0125026936, -0.0302033797, -0.013436595, -0.0217331126, 0.00411206158, 0.0131542524, -0.0234850831, -0.00365235028, 0.0115036368, -0.00173387094, -0.0181133412, 0.00155740709, -0.00384419831, 0.00436182553, -0.0169260558, -0.0286830757, -0.000615361321, 0.0128139937, 0.00972270872, -0.0257293414, 0.0110837426, -0.0221240483, -0.0220371746, -0.00868745334, -0.004995286, -0.017592093, 0.00581335416, 0.0180409458, -0.00976614561, -0.0386012532, -0.00606673863, -0.0017212017, -0.00752912648, -0.00702597806, -0.0227611288, 0.0232099798, 0.0080793323, -0.0183739644, -0.029305676, -0.00138184812, 0.00151216, 0.00870917179, -0.0020306923, 0.0137840929, -0.0273944363, -0.0261347555, 0.00414825929, 0.021096034, -0.00778975, -0.0216317587, 0.0134076364, 0.00266777212, -0.0179251134, 0.00164337666, -0.00918698218, -0.00655540777, 0.00344783324, 0.00227321708, -0.0066821, 0.000152482913, -0.00940416846, 0.0115253553, -0.0130601386, -0.00115199259, 0.0371533446, 0.00583869265, -0.00771735469, 0.014044717, 0.00145786325, 0.0201259349, 0.0220516529, -0.0100412481, -0.0186925046, 0.010548017, -0.00853542332, -0.024237996, -0.0067544952, -0.0155939795, 0.000787753, -0.0112719713, -0.00102077576, -0.00776079204, -0.00453557493, -0.00836891402, -0.0238904972, -0.011713583, -0.0274668317, -0.00224244897, -0.00208679866, -0.00813724846, -0.000563779555, 0.0239773728, 0.00646853307, -0.0039093541, -0.00425323239, 0.0120104048, 0.0203720778, -0.0119452486, -0.00479981815, -0.0190689601, -0.0292911977, 0.0246578883, -0.0151596069, 0.00928109605, -0.000621243438, -0.00438716402, -0.0191847924, 0.0132990433, -0.00636356, -0.00678707333, -0.0127343591, -0.0101353629, -0.0178237595, -0.0149279414, -0.0113878036, 0.0156374164, 0.0660246462, 0.0397306196, 0.0125388913, -0.0275102705, -0.00393107254, -0.0169260558, 0.000532106555, 0.0354737677, -0.0246868469, 0.00709113386, -0.000552015263, 0.00591108808, -0.00944760535, 0.0210236385, -0.0129949823, -0.0112936897, 0.000127370746, 0.00933177304, -0.00356547581, -0.00245420565, 0.00373922475, -0.011713583, 0.00198906497, -0.0139650814, 0.0121986326, -0.018098861, 0.00130130816, -0.0185766723, -0.0136755, 0.0217186343, 0.00151939946, 0.0128719108, 0.00586403115, 0.0089191189, -0.0380510464, -0.0036867382, 0.0171432421, -0.0133497203, 0.00145424355, -0.0278143305, 0.0240497682, 0.016983971, -0.0117208231, -0.00891188, 0.0137840929, -0.0269166268, 0.028552765, -0.0179106332, -0.0123941, -0.0443060137, 0.0165206417, -0.0242235158, 0.0076521989, -0.0104828607, 0.0274668317, -0.00574819837, 0.0216317587, -0.0110113472, 0.00361796236, 0.00174744509, 0.0248461179, 0.0113226483, -0.00577353686, -0.00607759785, 0.0106204124, -0.0288857836, 0.00952724088, 0.00769563578, 0.00931729376, -0.000992722576, -0.00285238051, -0.00636356, 0.00935349148, -0.00214471505, -0.0117714992, 0.0316512883, 0.0082386015, 0.0048432555, 0.011156138, -0.0304640047, -0.010193279, 0.00444508065, -0.000137777577, -0.01623106, 0.000710380322, -0.0209222846, -0.00889016129, -0.00802865531, -0.000535726314, 0.00884672347, -0.00119633472, 0.0298269242, 0.000390256697, 0.00672915671, 0.00586765073, 0.0120755602, -0.0102873929, 0.00826032087, 0.00638889801, 0.0266849622, 0.0208498891, -0.0161731429, 0.0047165635, -0.010598693, 0.00257365801, 0.0198653098, 1.86078923e-05, 0.013132534, -0.00703683728, -0.000891821401, 0.000996342278, -0.000857886043, 0.0161007475, 0.032201495, -0.0120104048, 0.00976614561, 0.0198508315, 0.019271668, -0.00351660885, 3.78944933e-05, 0.00442698179, 0.00274740718, 0.00104701915, 0.0300296322, -0.00609569671, -0.00304060872, 0.0163034555, -0.00127235, 0.0198073946, 0.00137008377, -0.00651197042, -0.00946932472, 0.0199666638, 0.00129768834, 0.0188083369, 0.021501448, 0.00122619793, 0.0163613707, -0.00794178061, 0.0207050983, 0.00888292119, 0.00359081407, -0.0104104653, -0.0098675, 0.00742777297, 0.0179685503, 0.00553463167, 0.0201693717, 0.00243610679, -0.01161223, -0.00167685957, 0.000945665524, -9.93175054e-05, -0.00696444185, -0.00277998508, 0.0175631344, 0.00284333108, -0.0288278665, -0.0109172333, -0.00876708888, 0.00680879178, -0.00314377225, 0.0260189231, -0.0173169915, 0.00416997774, -0.0176934469, -0.000121714846, 0.00207774923, 0.0257583, 0.00183974928, 0.0207485352, 0.0142908609, -0.00211213715, 0.0084919855, -0.0090059936, -0.012220351, -0.0104756216, -0.0079924576, 0.00205241097, -0.0241800789, -0.0128212338, 0.00661694398, 0.00564684486, 0.0615650862, 0.0104756216, -0.00508216023, -0.000986388, 0.00433286745, 0.0107362447, 0.000368311827, -0.00755084492, 0.00663866242, -0.00647577271, 0.00471294345, 0.00655540777, 0.00534278387, 0.0118800923, -0.00568666216, -0.0197639577, -0.000183703451, 0.0262071509, -0.00905667059, 0.0129587846, 0.00452471524, 0.0187214632, 0.00440164329, 0.022514984, 0.00653730892, 0.000771011517, -0.00507854065, -0.0135089904]
08 Oct, 2021
jQWidgets jqxTree destroy() Method 08 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for pc and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTree represents a jQuery widget that is used to display a hierarchical collection of items. To display the collection of items, we can populate from ‘UL’ or by using its ‘source’ property. The destroy() method is used to destroy the jqxTree widget. It does not accept any parameter and does not return any value. Syntax: $('Selector').jqxTree('destroy'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtree.js”></script> The below example illustrates the jQWidgets jqxTree destroy() method. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"></script> <script type="text/javascript" src="jqwidgets/jqxtree.js"></script> <style> h1, h3 { text-align: center; } #jqxTree { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTree destroy() Method </h3> <div id='jqxTree'> <ul> <li item-selected='true'> GeeksforGeeks </li> <li>Programming <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> </li> <li>Web Technology <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>jQuery</li> <li>PHP</li> </ul> </li> </ul> </div> <center> <input type="button" id="jqxBtn" value="Destroy Widget" style="padding: 5px 15px; margin-top: 20px;"> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTree').jqxTree({ width: '350px', height: '250px' }); }); $("#jqxBtn").on('click', function() { $("#jqxTree").jqxTree('destroy'); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtree/jquery-tree-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtree-destroy-method?ref=asr10
PHP
jQWidgets jqxTree destroy() Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTree ensureVisible() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, PHP
GeeksforGeeks
[-0.0326852761, -0.00957791787, -0.0114920512, 0.0242601912, 0.0384856835, -0.0129058994, 0.0365715474, 0.0140804816, 0.0195473619, 0.00640582154, -0.014305247, -0.00702573964, -0.0129639031, -0.0347734243, 0.0198083799, 0.010426227, -0.0234771352, -0.00826557633, -0.0281609632, -0.0272183977, 0.00580765493, -0.00447356189, -0.0292485375, -0.00261018192, -0.00117730082, 0.0239846706, 0.00632606586, 0.00648557721, -0.0325692706, 0.0222735517, -0.0344254, 0.00393339898, 0.0219690315, -0.0023817909, -0.0316702053, 0.00513335783, 0.00285851164, 0.0340193696, -0.0286684986, -3.34203e-05, 0.00169389928, 0.0242021866, 0.0150665501, -0.00973742828, 0.0177927408, 0.0355854817, 0.0259713102, -0.0588160977, 0.00414366368, 0.0453301594, 0.0173142068, 0.0473313, 0.014718526, 0.0130581604, 0.0215775035, -0.0285379887, -0.00899787713, 0.0131669175, -0.0184597857, 0.031989228, 0.0461712182, -0.020634938, 0.0179377496, 0.00256667892, 0.0314381905, 0.0379346423, 0.0280884579, 0.00942565687, -0.02856699, 0.00185975456, -0.0231291112, 0.0440250672, -0.0152115598, -0.0255072769, 0.00468745176, -0.01621213, -0.0361945219, -0.0234336331, 0.00629343837, 0.0309161544, 0.00439380622, -0.020634938, -0.0198808853, -0.00282225921, 0.00790305063, 0.0107815014, -0.0325402692, -0.0441410765, 0.0447501205, 0.0212874841, -0.0377316289, 0.014501011, -0.000329671399, -0.0310321618, -0.0317572132, -0.0138629666, -0.0149360411, 0.00482521113, -0.0663566217, 0.0234916378, 0.0120140873, 0.0184742883, -0.0360785127, -0.0267978683, -0.0352954604, 0.00878761243, 0.026594853, 0.0392397344, 0.029002022, 0.0202579126, 0.0495064519, 0.0126013784, -0.00993319228, 0.0151535561, -0.0211569741, -0.00127971417, 0.00890362076, -0.0502605028, -0.00722512836, -0.00847584102, -0.0032301, -0.0279289465, 0.0166471601, 0.0598601699, -0.0202289093, 0.00777979242, -0.0219690315, 0.0185902957, 0.0425169617, 0.0155450832, -0.0291180294, 0.00436117873, 0.00344761531, 0.0216935109, 0.0168066714, 0.0349184349, 0.00236729, 0.0100056976, -0.0557418838, -0.0109700141, -0.0316702053, -0.0150375478, -0.0105784871, -0.00559376506, 0.000259205553, 0.0281609632, 0.0108032525, 0.0257247929, -0.0281174593, 0.0306841377, -0.0215485021, 0.00675747078, 0.0126013784, 0.0389497131, 0.011985085, 0.00814956799, -0.0460842103, 0.0311771724, -0.0244052, 0.00345124048, -0.000546053692, -0.00303433649, -0.000232922481, -0.0159511119, -0.0501444936, -0.0152115598, 0.0246807206, -0.0352374576, -0.0403998159, 0.0303361136, -0.00649282755, -0.00739914086, -0.0160091165, 0.0356724858, -0.0490424186, -0.0272474, 0.00146188308, -0.054900825, -0.0139137199, -0.0160381179, -0.0392397344, -0.00250323699, 0.00448806258, 0.0114630489, -0.00157879759, 0.0234336331, 0.010165208, 0.00873685908, -0.0417919122, -0.0186918024, -0.022172045, 0.0254927762, 0.0355274752, 0.00960691925, -0.00462944759, -0.0326562747, -0.0312061757, 0.0262323283, 0.0108032525, -0.0098244343, 0.0302201062, -0.0341933817, -0.00291107781, 0.024057176, 0.0330043, 0.022520069, 0.0174737182, -0.0690248087, 0.0440830737, 0.0129929055, 0.00336785964, -0.0145300124, -0.0036814441, 0.0218530223, -0.0176912323, 0.0120140873, -0.0310321618, -0.0263193343, -0.00594178913, -0.0140442289, 0.0332943201, 0.0109845158, -0.00863535143, 0.0122968573, -0.0893262252, -0.0176622309, -0.00174465287, -0.00547050638, 0.00078622665, 0.038601689, -0.0173867121, 0.00346030365, 0.001528044, -0.0090776328, 0.0250287447, 0.0168936774, -0.0079828063, 0.00801180862, -0.0212874841, 0.00478533329, 0.0183002762, -0.00936040189, -0.0427199788, 0.00870060641, 0.0526966713, 0.0178797469, -0.00241623097, 0.00341317547, -0.00712362165, 0.00412916299, -0.00245792139, -0.012115594, -0.00738101453, 0.00992594194, 0.00654720608, 0.00835258234, -0.0103682224, 0.00180900109, -0.0227230843, 0.0119705843, 0.001319592, 0.0239266679, -0.0237236526, 0.0356724858, 0.000669312256, 0.0160091165, 0.00413641334, -0.0058257808, 0.00348749314, -0.0368615687, 0.00439018104, -0.00692423247, 0.0382826664, 0.0176477302, -0.0337873548, -0.00186156726, -0.0240426753, 0.0304811243, 0.0323082507, 0.000414864859, 0.0086571034, 0.00463307276, 0.0168356728, 0.0773773938, 0.0498254709, 0.00965042226, 0.0194168538, 0.00023246932, -0.0211859774, 0.0263483357, -0.0282914713, -0.0183872823, 0.00518048601, 0.00290564, 0.0373836048, 0.00239266665, 0.00993319228, -0.00938215386, -0.00310865417, -0.0233611278, -0.00963592157, -0.0160961226, 0.0112020308, 0.0338453576, -0.00759852957, 0.042980995, 0.0595701523, 0.018836813, -0.00148997887, -0.00128152675, 0.0332653187, -0.0246082153, -0.0351504497, -0.0318732224, -0.0292340368, 0.00698586181, 0.0226215757, 0.00490134163, -0.0156610906, 0.0252172574, -0.0221430436, -0.0226360783, -0.0320182331, 0.0380796529, 0.0610202514, -0.00305790058, -0.0269718803, 0.00504635181, -0.00661246106, -0.01434875, -0.0186337978, 0.00725413067, 0.0496224575, 0.00573514961, -0.000173785549, -0.0347734243, 0.0150955524, -0.0355564766, 0.0123403603, 0.00448081223, -0.0261598229, -0.0025684915, 0.00962867122, -0.0115863075, 0.00063034083, -0.0378186367, -0.0388337076, 0.00988968927, 0.0315832, 0.0226795804, 0.00142563065, -0.0082510747, 0.0334393308, 0.00247604749, 0.0172127, 0.00485421345, 0.000565992552, 0.00388264563, -0.0337003469, -0.00922989286, 0.0442860872, 0.0245792121, 0.0297850762, -0.00960691925, -0.00190144498, -0.0345704108, -0.0112527842, -0.0196923725, -0.0231001098, 0.0355564766, 0.0228680931, -0.0461422168, -0.0290455241, 0.0497094654, -0.0444310978, -0.0413858853, -0.000739551557, -0.00221502944, -0.0212149788, 0.0114557985, -0.00179540634, 0.022172045, 0.00820757169, 0.0254637748, -0.00881661475, -0.000559648382, -0.0108395051, -0.0279579479, -0.0262033269, -0.00632606586, -0.0170386881, 0.0396457613, -0.0264643449, -0.0265803523, 0.0257827975, 0.0111512775, 0.0171111934, -0.0161106233, 0.0177492369, -0.0359045, 0.00905588083, 0.00200657733, 0.00826557633, 0.00250504958, -0.0255507808, -0.00669584144, -0.028218966, -0.00421616901, -0.00431405054, 0.0157335959, 0.0249127354, 0.00267181126, -0.0311771724, 0.0504925177, 0.00634056702, 0.02453571, 0.0583520681, 0.0374996141, -0.0047490811, -0.0317282118, -0.0018960071, -0.00719612651, -0.0270153824, 0.0502025, -0.0339613669, -0.0030778395, -0.0355274752, -0.0293065421, 0.00286576222, -0.00137306447, 0.00954891555, -0.00572064845, 0.00808431301, 0.0266963597, -0.0150810508, -0.000603151391, 0.0421399362, -0.00386814447, -0.0151535561, 0.00989694, -0.00506810332, -0.0211134721, 0.0372675955, -0.00317572127, -0.0232886225, 0.00416179, -0.0302491076, -0.010078202, 0.0139282206, 0.0279434472, -0.00871510711, -0.0321922451, -0.018358279, -0.0061013, 0.02093946, -0.0275954232, -0.00771453744, 0.0103754727, 0.0164151434, 0.00869335607, 0.0149360411, 0.0112092812, -0.028479984, 0.0143415, -0.0428649858, -0.032946296, 0.0360205099, -0.00192319648, -0.0134931905, -0.00828732736, -0.0194023531, -0.00314671919, 0.0388337076, 0.0624703541, 0.0306841377, 0.0174012128, 0.00867885444, -0.00970842689, 0.000465844962, -0.0117458189, 0.0386886969, 0.0344254, 0.0360495113, -0.014356, 0.00393339898, -0.0117240669, 0.0273924097, -0.00716712466, -0.00418354152, 0.0135076912, 0.0132901762, -0.0185322911, -0.0617163, 0.00424154568, 0.00536537403, 0.010295718, -0.0302201062, -0.0259858109, 0.0160671193, 0.000532912149, 0.0246952213, -0.00263374601, -0.0262178276, 0.0488974079, 0.0156320892, -0.0392977372, -0.0172707029, 0.0292340368, 0.0279579479, -0.048288364, 0.00905588083, -0.0378766395, -0.0275809225, -0.0124708693, -0.0161831286, -0.034048371, -0.0274649132, 0.0299590882, 0.0169951841, 0.00896162447, 0.040312808, -0.0198083799, -0.00345849106, -0.00920814183, 0.0209249575, 0.0415889, -0.0199388899, -0.0217950195, -0.0344254, -0.0200984012, -0.012594128, -0.000298177038, 0.0370065793, 0.0272764, -0.00674297, -0.00910663512, -0.0276099239, 0.0115355542, -0.0248547327, 0.0214179922, 0.0153565705, -0.0075187739, -0.0364555418, -0.0131234145, 0.0170821901, 0.0230131038, -0.00841783639, -0.0138919679, 0.00473458, 0.0390947238, 0.0286684986, 0.00228028395, 0.0213164855, -0.00638044486, -0.0212149788, 0.0167631675, 0.00178815587, -0.0170241855, -0.00194676069, -0.0167921707, 0.0034258638, -0.00635869335, 0.022433063, 0.0105494848, 0.0179377496, -0.029002022, 0.0149215395, 0.0331783108, -0.0135076912, 0.0237526558, 0.0305391289, -0.0156465899, -0.0319312252, -0.00268631219, 0.0286684986, 0.00347661739, 0.0536827408, -0.00196488691, -0.0183292776, 0.00863535143, 0.0129711544, -0.00806256197, 0.0102159623, 0.0282914713, -0.0191993378, -0.0207074434, 0.0132104205, 0.00899062678, -0.0319312252, 0.0314671919, 0.00564089324, 0.0211859774, 0.0212874841, 0.000335335877, 0.0133916829, -0.00448806258, -0.00732663553, 0.000957973, 0.0314091891, -0.0193153452, 0.00577502744, 0.00241441815, 0.0360495113, 0.00375938695, -0.00638407, 0.0128696468, 0.0135729462, -0.0263483357, 0.026420841, 0.00975918, -0.0107307481, -0.0243907, 0.0307711437, -0.014392253, -0.00693148328, 0.00604692148, -0.0183292776, 0.0305101257, -0.0143850027, -0.0123476107, 0.0160091165, 0.00138575281, 0.0169806834, 0.0123476107, 0.0194603559, 0.00577865262, -0.0200258959, -1.61578646e-05, -0.0152405621, -0.0331203081, 0.0165311527, 0.00108213793, 0.00568439625, -0.0148780365, 0.00190869556, 0.0232161172, 0.00511885667, 0.022259051, -0.00703661516, 0.0333233215, 0.0413568839, 0.0351214483, -0.0262033269, 0.044692114, -0.0154290749, -0.00891087111, -0.00901237782, -0.00231291121, 0.0235206392, -0.0157045946, -0.0270298831, 0.0295675602, 0.0253912695, 0.0248837341, -0.014131235, 0.00823657401, 0.016168626, 0.00805531163, 0.00436480436, 0.0257682949, -0.0196923725, -0.00585115794, 0.0414438881, 0.0331203081, 0.00139209698, -0.0119125806, 0.0299300849, 0.0374706127, -0.0218675248, 0.00114376727, 0.00977368094, -0.0024035424, 0.00671396777, 0.018836813, -0.0110425195, -0.0176477302, -0.0126883844, 0.000301349122, 0.0195763651, 0.0120865926, -0.0118183233, 0.0180247556, 0.0352084525, 0.0192283392, 0.0188078117, -0.018445285, -0.024231188, 0.0144067537, 0.024796728, -0.00355818542, 0.00581853045, 0.0107017457, 0.0280449539, 0.0196923725, -0.0187933091, -0.0103972247, -0.00490859197, 0.0180682596, -0.00280594546, -0.0285959933, -0.0121228453, 0.00930239819, -0.0234916378, 0.0314091891, -0.00643119821, 0.0330043, -0.000346891349, 0.0263628364, -0.0127681401, -0.014022477, 0.0255652815, 0.0135584446, -0.00890362076, 0.0349474363, 0.0213889908, 0.00943290722, -0.00951991323, -0.0119198309, -0.0115790572, -0.00799005665, -0.00167396036, 0.0273779072, 0.0134786889, -0.0135076912, -0.0113977939, -0.0316412039, 0.00818582065, -0.0160091165, -0.00499197282, 0.000508894853, -0.00319747278, 0.0175027195, 0.0132829258, -0.00608317414, -0.0456201807, 0.00771453744, 0.00842508674, -0.0255217794, -0.0195763651, 0.00517686084, -0.00727950735, -0.0203449186, -0.0261163209, 0.018097261, 0.00697498629, -0.0187933091, -0.0264788456, -0.0133699318, 0.0162846353, 0.0163426381, -0.00527474238, -0.0216790102, 0.0265223477, -0.0174882188, -0.00713812234, 0.026899375, -0.0239556693, -0.0192283392, 0.0390657224, 0.0210554674, -0.00744626904, 0.0334393308, -0.0258117989, 0.00833808072, -4.68167382e-05, -0.00655083172, -0.0324532613, -0.0194313545, 0.0052131135, -0.00564089324, 0.0263048336, 0.00577140227, 0.0446051098, -0.00938940421, 0.0219835322, 0.0044409344, -0.00440830737, -0.0112600345, -0.0104987314, -0.0214179922, -0.0335843414, -0.00916463882, 0.0331783108, -0.0112672849, 0.0219980329, -0.00909213349, 0.0389787182, 0.0274794158, -0.0103537217, 0.0415598974, -0.00147366524, -0.00764928292, 0.012398364, -0.0153130675, -0.0108105037, -0.00366694294, -0.0245067086, 0.022911597, 0.00108304422, -0.0207364447, -0.00591641245, -0.0124998707, -0.00357087376, 0.0541757755, 0.0179087482, -0.0297560729, -0.00702936482, 0.00667771557, 0.00116098719, -0.0168356728, -0.0142472433, 0.0196198672, -0.0433580205, 0.034483403, 0.00994044263, -0.000124957922, -0.0018742556, -0.0112020308, -0.00265368493, 0.00527836801, -0.00509348, 0.0297850762, 0.00343855214, -0.0121880993, -0.0614842847, 0.0662406161, 0.0430389978, 0.0315252, -0.0153130675, -0.00651820423, -0.00627168687, 0.00532187102, -0.0220415369, -0.00965767261, -0.00208452018, 0.0130291581, 0.0158931073, 0.014239992, -0.0091356365, 0.0183437783, -0.0219980329, 0.0130871618, -0.00475270627, 0.00123983645, -0.00362162734, 0.0375576168, -0.0241151806, 0.00520586269, 0.00854834542, -0.0148127824, 0.00896162447, -0.0183727797, 0.00286394963, 0.0452721566, 0.0108177541, 0.0208089501, -0.037325602, 0.0228970964, 0.0278419405, 0.00368506927, 0.000200861658, 0.000690157467, -0.0265658516, -0.00283857272, 0.01621213, 0.0236221459, -0.00383551721, -0.0283349752, -0.0261018183, 0.00297633233, 0.00185612938, -0.0168936774, 0.00721425284, 0.0266963597, -0.000722784724, -0.0277984366, -0.024796728, -0.0150375478, 0.0302781109, -0.0344544, 0.0313221812, 0.0086571034, -0.0329752974, -0.00909938384, -0.0164006427, 0.0576560199, -0.0163281374, -0.0137832109, 0.00830182899, 0.0108395051, -0.0315252, 0.00387539505, -0.0118690776, -0.0439670645, -0.00962867122, 0.000441827666, 0.0004048954, -0.0330043, -0.00542337773, 0.0186337978, 0.0152260615, -0.0385146849, 0.00239629205, 0.0187063031, 0.00394065, 0.00747527089, 0.00172018236, 0.028683, 0.00308690267, -0.00398415281, 0.0348604284, 0.0104189757, 0.0261018183, -0.0303361136, -0.00261199451, -0.0135221928, -0.031989228, -0.00490134163, 0.00992594194, -0.0366005525, 0.00155342079, -0.00252861367, 0.0246952213, 0.0215194989, -0.0175897256, -0.00759127922, -0.0399067812, 0.00568439625, -0.0242456906, 0.00382464146, 0.0018488788, -0.0136672026, -0.00188875664, -0.0100709517, 0.0103319697, -0.00252680108, 0.0212004781, 0.0312351771, -0.040312808, 0.00499922363, 0.0310321618, 0.0246517174, -0.0324532613, 0.00831633, -0.0140442289, -0.00659796, -0.0364265405, 0.00975918, -0.0245212093, -0.00555026159, -0.0211134721, -0.00759852957, 0.00884561613, -0.00990419, 0.00277513079, -0.0165456533, -0.0128043927, -0.00848309137, -0.0235931445, -0.0131451664, -0.0180102549, -0.0312641785, 0.0158496052, 0.00261018192, 0.0446341112, -0.000933502568, -0.0175607242, 0.0140152266, -0.0105639864, 0.0161976293, -0.00445181038, 0.0106799947, 0.034483403, -0.0281029586, -0.012115594, 0.0336423442, -0.00932415, -0.0355564766, 0.00265912293, 0.0225925744, 0.00726138102, -0.0119053293, 0.00132593617, -0.00323553802, 0.016168626, -0.00777979242, 0.0130871618, -0.0216645095, 0.0156030878, 0.0222010463, 0.0047490811, -0.0177202355, 0.00261199451, -0.00790305063, 0.00389714655, -0.0180682596, 0.0103102187, -0.0132031702, -0.00663783774, -0.00450618891, -0.0160961226, -0.0168936774, -0.0136382, 0.020634938, 0.00989694, 0.0088093644, 0.00807706267, 0.0105712367, 0.0249852408, 0.014501011, -0.030887153, -0.00873685908, -0.0197793785, 0.0100056976, 0.0286394954, 0.0129784048, 0.0187643077, 0.0293935481, 0.0163716413, 0.012311358, 0.00311046676, -0.00354549708, 0.00105313584, -0.0201999079, 0.0113397902, 0.0288860127, -0.00850484241, -0.0130726611, 0.00614480302, 0.0215630028, -0.0143850027, 0.00115011143, -0.00557563873, 0.02024341, -0.0185177904, -0.0132901762, -0.00725775585, -0.0278564412, 0.00410378585, -0.022259051, 0.0089253718, 0.00757677807, -0.000703752157, 0.0133336792, -0.00693148328, -0.0104987314, 0.0136744529, -0.00279869512, 0.0286975, 0.000295004924, 0.00780154392, -0.0134206852, 0.0245647114, -0.0237671565, 0.0165746547, 0.0129276514, -0.0105349841, -0.0377606302, 0.0244632047, 0.0149070388, 0.0129494024, -0.000444320031, -0.0253622681, -0.00750427321, -0.00195038598, 0.012463619, -0.0128043927, -0.000547413132, -0.0135801965, 0.007174375, 0.0290745255, 0.00340048689, 0.00556113757, -0.00849034172, 0.0192863438, 0.000672031194, 0.0217515156, 6.20824503e-05, -0.0234336331, -0.0121880993, 0.0343673937, -0.0113180391, -0.001779999, -0.00234191329, -0.0238106586, -0.0119923353, -0.00282044662, -0.0226795804, 0.00064393552, -0.0175462235, 0.00173287082, 0.000911751064, -0.00615205383, 0.0309451558, -0.0136889536, -0.0219835322, 0.0155450832, 0.0805676132, -0.0112890368, 0.0164441466, 0.00453519123, -0.00272256485, -0.0423139483, -0.00265912293, 0.0174882188, 0.0235206392, -0.010643742, 0.0232306197, 0.00584028196, 0.00738101453, -0.0072867577, -0.0159221105, -0.0222445503, -0.0225345697, 0.00440830737, 0.020678442, -0.0149070388, -0.00647107605, 0.00665233843, 0.0147620291, -0.00262830826, 0.0248837341, -0.00785954762, 0.00299627124, -0.0180247556, -0.0635144264, -0.00265368493, 0.0220270343, 0.0162411314, 0.0151825584, 0.000616746082, 0.0123041077, 0.0216355082, -0.00200476474, 0.010230463, -0.00397690199, -0.0153710712, -0.000658436504, -0.0262178276, 0.00659070909, 0.0150230471, -0.00477808295, 0.0136672026, -0.0228390917, -0.0297850762, -0.0194313545, 0.0335843414, -0.020460926, 0.0139717236, -0.0112237819, -0.0227520857, 0.0271458924, 0.0304811243, 0.00808431301, -0.0360205099, 0.00359262526, -0.00636231853, -0.0150665501, -0.022824591, -0.00186700514, -0.036716558, 0.0288425107, -0.0148925381, -0.02093946, 0.0193298478, -0.0443440899, 0.0174592175, 0.0167486668, -0.00132956146, -0.0178072415, -0.00110660843, -0.0144720087, 0.0102014607, -0.0016667099, 0.0249127354, -0.0139499726, 0.00783054531, -0.0219980329, 0.0371805914, -0.0200113952, -0.0213889908, -0.0138339642, 0.00528199319, -0.000184548015, -0.000245837437, -0.0078813, 0.016168626, 0.00295639364, -0.0140297273, -0.0163571406, 0.0122026, 0.00210627168, -0.00723962951, 0.0107960021, 0.00384639297, 0.00812781602, -0.0117965722, 0.0463162288, -6.19691637e-05, 0.00835258234, 0.00734113669, -0.0124708693, -0.0152405621, 0.0204174221, 0.0030107724, 0.007997307, 0.015994614, 0.0211714748, 0.000391300709, -0.0109482631, 0.00747527089, 0.00455331756, -0.00835983269, 0.000405575149, -0.010273966, -0.0260293148, -0.00266818586, -0.0133844325, -0.00473095477, -0.00483246194, 0.0138194636, 0.00600704364, -0.00512248185, 0.022520069, 0.00257755467, -0.000966129825, 0.00241804356, -0.0189383198, 0.000413958536, -0.0269138757, 0.00658345874, -0.00241985614, 0.00841783639, -0.0111730285, 0.0241006799, -0.00731576, 0.00686260313, -0.0220705383, 0.00738826487, 0.00759127922, -0.00195763633, 0.00202832883, 0.0333523229, -0.015907608, 0.00491946796, -0.00267724902, 0.00810606498, -0.00528561836, -0.0237091519, -0.00063034083, -0.00627168687, 0.0190253258, -0.0232161172, -0.00403853133, 0.00766378408, 0.00507535366, 0.00245429599, -0.00309415325, 0.0230711084, 0.0215340015, -0.022520069, -0.0167631675, 0.0200984012, 0.0036361285, -0.0203159153, 0.0111730285, -0.0132539235, 0.00109935785, -0.00191050814, 0.0346284136, -0.00272256485, 0.00631156471, -0.00522036385, 0.00791030098, 0.0002954581, 0.0185032897, -0.000829276571, -0.0256377868, 0.00805531163, -0.0222155489, -0.00564451842, -0.0119560836, -0.000927611545, 0.0094981622, -0.0203159153, 0.00772178825, 0.00983168557, -0.0208379515, 0.0113905435, 0.0131016634, 0.000501644332, 0.0332653187, -0.015820602, -0.00894712377, -0.0136744529, 0.00139662856, 0.0221575443, -0.0116805639, 0.0118835783, -0.00026396371, 0.0191848371, -0.00428867387, -0.0247822274, -0.0225345697, -0.0239846706, 0.0146460207, -0.00446631107, 0.0231581144, 0.000419169839, 0.00962867122, -0.0382826664, 0.0189963244, -0.0142109906, 0.0118038226, -0.00843233801, 0.0153420689, 0.0138194636, 0.00784504693, -0.00468382658, -0.0226650797, 0.0050173495, -0.00050436327, 0.00996944495, -0.00496297097, -0.01434875, 0.00151535566, 0.0196778718, -0.0100492006, 0.010078202, 0.0556548797, -0.0162846353, 0.00371950911, -0.00540162623, 0.0127463881, -0.0213889908, -0.036542546, 0.00342767639, 0.0144720087, 0.0173142068, 0.0154435765, 0.0276244245, -0.00519498717, -0.000132661589, 0.00172199495, -0.00804806128, -0.0200258959, 0.00999844726, -0.00778704276, 0.0221285429, 0.0153710712, -0.0277404338, 0.0316702053, -0.002086333, -0.00735201221, -0.0189818237, -0.035266459, -0.0271313917, 0.00881661475, -0.0101289563, -0.0120865926, 0.0116515616, -0.0362235233, 0.0251447521, -0.01608162, -0.0107524991, -0.0130654108, -0.0101507073, 0.0239121672, 0.00273525319, 0.0508695468, -0.00586928381, 0.0189818237, -0.0125651257, 0.0152405621, 0.0224040616, -0.00862810109, -0.00661246106, -0.0232741218, -0.000692876405, 0.014283495, 0.00171927607, -0.0266093537, 0.0127536384, -0.0192718431, 0.0267978683, 0.0103102187, 0.019895386, 0.0172562022, 0.0209104568, -0.0295385588, 0.00951991323, -0.00334973354, 0.04074784, 0.00932415, -0.018488789, -0.00122533541, -0.00245792139, 0.00698586181, -0.0123041077, -0.00532187102, -0.0113905435, 0.0232886225, 0.033874359, 0.000392207032, -0.0107815014, 0.024709722, -0.0037521366, 0.00264824717, -0.0404288173, -0.00711999601, 0.0104552284, -0.0134206852, -0.000302482018, -0.00848309137, 0.0157480966, -0.0172852054, -0.0273344051, -0.0106944954, -0.0177347362, -0.0326272734, 0.0106292404, 0.0216645095, -0.0110642714, -0.012159097, -0.0134351859, 0.00121083437, -0.0135366935, 0.0150375478, 0.0106219901, -0.0122533543, 0.0324822627, -0.00573152443, 0.0150375478, 0.0086136, -0.0256377868, -0.00350199407, -0.000191571948, -0.0139862243, 0.000571883633, -0.0101289563, 0.0150665501, 0.0262178276, 0.0138919679, -0.0173867121, 0.0129421521, -0.00574240042, -0.026507847, -0.0035201204, -0.0155305825, -0.000304974383, 0.0279289465, 0.000870513788, 0.0419949256, 0.00780879427, 0.0249417387, 0.00671759294, -0.00321741169, -0.00987518858, 0.015994614, 0.0215920042, -0.00413641334, 0.00532187102, -0.0258263, -0.0110860225, 0.0138339642, 0.0331203081, 0.015907608, -0.00600704364, 0.00815681834, -0.00013843934, -0.0180682596, 0.0287410021, 0.0221865457, 0.00273525319, 0.0199678913, -0.0263918396, -0.00198663841, -0.0220125336, 0.00173921499, -0.0179812536, 0.00693148328, 0.00230928604, -0.0064638257, -0.00516235968, 0.0153855719, -0.00959966891, -0.00313946884, 0.0246662199, -0.00635144254, -0.000582759385, 0.018358279, 0.00660883542, 0.00679734861, -0.0352954604, 0.0111585278, -0.030800147, -0.010339221, 0.0057677771, 0.012289606, -0.0303361136, 0.00839608535, 0.028305972, 0.000451570522, -0.00317028351, -0.0408058427, 0.022824591, -0.0187643077, -0.00296364399, 0.0113977939, -0.015994614, -0.0283494759, 0.0240281746, 0.0379056409, -0.00568439625, 0.0484333746, 0.0187788084, 0.000596354075, -0.00156792172, -0.0109192608, -0.010513233, -0.0295675602, -0.00989694, -0.0419079214, 0.00043638979, -0.000847402785, -0.00762028107, 0.0171111934, -0.00713812234, -0.0143777523, -0.00407840917, 0.00599254249, 0.00643119821, 0.00852659438, -0.0129566528, 0.0239266679, -0.0095416652, 0.0233901292, -0.0190253258, 0.00426329719, 0.0262613297, -0.00362162734, 0.00746802054, 0.000935315154, 0.0150665501, 0.00331529346, -0.00183981576, -0.0109990165, -0.00502097514, -0.00731213437, -0.0162411314, 0.0154290749, 0.00402765581, 0.0107089961, -0.00237454055, -0.0176187288, 0.00229841028, -0.00289657689, 0.0190398265, -0.0290745255, 0.00760578, 0.0217515156, 0.0302201062, 0.0014591642, 0.0093459012, 0.0101289563, -0.00961417, -0.00855559669, 0.00776529126, -0.0140079763, 0.022433063, 0.00476720743, 0.000408747233, 0.00476358179, -0.016473148, 0.00615930418, -0.0229260977, -0.0127101354, 0.00583665678, 0.0281464607, 0.0149505418, 0.00837433338, 0.0214034915, 0.00857009739, -0.0164441466, 0.00891812146, 0.00996944495, 0.00282769697, 0.0130944122, 0.00177546754, -0.00338961114, 0.00258843042, 0.0188513137, 0.010273966, 0.00184706622, 0.00610855082, -0.0315832, -0.0320182331, 0.0125868767, 0.00454969192, -0.00355274766, 0.00212258543, 0.00918639, -0.0119488323, -0.0106074894, -0.00514423335, -0.00570252258, 0.00811331533, -0.0035382465, -0.0230711084, -0.0300750956, 0.0179522503, 0.00989694, -0.0120430896, -0.00998394564, -0.0186192971, -0.00464032358, -0.0107960021, 0.0210119635, 0.00679734861, 0.0151825584, -0.0223750602, 0.00685535278, 0.0063876952, 0.00970117655, -0.00251411274, 0.0170386881, -0.0116080586, 0.00404578215, 0.0151390554, -0.00591641245, 0.0114195459, 0.0106292404, -0.0290165227, 0.00738101453, -0.00404578215, -0.014370501, 0.0147475274, 0.00343855214, 0.00640582154, -0.026594853, 0.00157064071, -0.000164835699, -0.00697861146, -0.00278600655, -0.0102667157, -0.00967942458, -0.00881661475, 0.00461132126, -0.0126666324, -0.00199932675, 0.0140152266, 0.00812781602, -0.0128043927, -0.00796830561, 0.00464757392, 0.00391889829, -0.00437568, -0.000824291841, -0.0127753904, 0.0194313545, 7.56205054e-06, 0.00146188308, -0.00857009739, 0.000561461, 0.0138122123, 0.0072505055, -0.0256377868, 0.00447718706, 0.00312859309, 0.0156900939, 0.0100709517, 0.0343383923, 0.0379056409, 0.000372494716, -0.00287120021, 0.00253042625, -0.016168626, 0.0219400283, -0.0141457357, 0.00218240218, 0.0214034915, -0.00426692236, -0.00597804179, 0.00178453058, 0.028479984, -0.0180537589, 0.00850484241, 0.00282225921, 0.0117095662, -0.0282914713, -0.00773628894, -0.00330260512, -0.0127028851, -0.0168066714, 0.0178217422, 0.00805531163, 0.00959966891, -0.0158061013, -0.00258661783, 0.00214071176, -0.00662696175, -0.0027298152, -0.0122026, 0.000398551201, -0.00957066659, -0.0295530595, 0.00591641245, -0.00927339587, -0.0215194989, 0.0145300124, 0.0319022238, 0.0241876859, -0.0153130675, -0.0132249221, -0.00126249425, -0.00245610857, 0.020156404, 0.0197358746, 0.00387539505, -0.00274612894, -0.0100492006, 0.0240281746, 0.0171401948, 0.0115863075, -0.000107398111, -0.0326272734, -0.00568802143, 0.0126521317, -0.00321197393, -0.0138629666, -0.00930239819, 0.00311771734, 0.00587290945, -0.00358537491, -0.0156900939, -0.00525299087, -0.0071526235, 0.00163317635, 0.0285379887, -0.0167341661, -0.0106582427, -0.00491221715, 0.00960691925, -0.00849759206, 0.0187643077, 0.00626081135, -0.007997307, 0.000706924242, 0.0126521317, -0.0220415369, 0.00157607859, 0.033381328, -0.0256812889, 0.0180392563, 0.0216355082, -0.0148345334, 0.00618830649, 0.0120140873, -6.95666176e-06, 0.000451343949, 0.0169661827, -0.00941840652, -0.00512248185, 0.0139644733, 0.00903413, -0.0103319697, -0.00573514961, 0.0216790102, -0.00618830649, -0.0256087855, 0.0150085464, 0.00475633144, 0.00899787713, 0.0199968945, -0.000621730811, 0.00811331533, 0.0109410128, -0.00770728709, 0.00872235745, -0.0174882188, -0.00313040568, 0.0384856835, -0.0217660163, 0.00173015182, 0.000203354022, -0.00640219636, 0.010426227, 0.00179087475, 0.00481071044, 0.00464757392, -0.0236656498, 0.038862709, 0.00601066882, -0.00465844944, 0.0176042262, 0.0124926204, 0.00200657733, 0.0116225602, -0.00804806128, -0.0228390917, 0.0177637376, 0.00728313252, 0.00672846893, 0.0157335959, -0.00136581389, -0.0192573424, 0.00359987584, -0.0182277709, -0.0169226788, -0.014566265, 0.0123693617, -0.0187643077, 0.00399140315, 0.00604329631, 0.0236946512, 0.0070402408, 0.0119343316, -0.018097261, -0.012246103, 0.00589828612, -0.0174302142, -0.0235496406, 0.00820757169, 0.0004456795, -0.0554228611, 0.0256957915, -0.0239556693, 0.00040920038, 0.0284074806, 0.00209177076, 0.00338598597, -5.54054714e-06, -0.00783054531, -0.01233311, 0.00556838792, 0.0147547787, -0.000522036396, 0.0288570113, 0.00627893768, 0.0073085092, 0.00741364155, 0.0113035375, -0.000315170415, 0.0165746547, 0.00136581389, -0.0108830081, 0.0145082613, -0.0283639766, -0.00433580205, 0.00416179, -0.0368325673, -0.0105059817, 0.00868610572, 0.00189056923, 0.0161831286, -0.00439743139, -0.00541975256, 0.00567714544, -0.010056451, -0.00420529302, -0.0270443857, 0.0088093644, 0.0151390554, 0.00281138346, 0.016473148, -0.00902687944, 0.0139282206, -0.0107379984, -0.00611217599, 0.0108250044, -0.00540887704, 0.00589466095, 0.0244632047, -0.000316983031, -0.00619193166, 0.010600239, -0.00700761331, 0.0110207684, 0.00559013942, 0.00522761419, 0.010600239, -0.00549588306, -0.0151535561, -0.00839608535, 0.0197358746, 0.00741001638, 0.00341498805, -0.0339033641, -0.0179957543, 0.00851934403, 0.0119125806, 0.00431767572, -0.0117675699, -5.90165655e-06, -0.00305246282, 0.00692785764, 0.00549225789, -0.00239085406, -0.0116660632, -0.00878036208, -0.00112564093, -0.0160961226, 0.0141819883, 0.00387902022, 0.00992594194, -0.0139572229, 0.000972474052, 0.00499197282, -0.0101072043, -0.0111150248, 0.0213164855, 0.00881661475, -0.0123403603, 0.0136309499, -0.0224910676, -0.0094981622, -0.0235641431, 0.026725363, -0.0180682596, -0.00411466183, 0.022824591, -0.0191993378, 0.00639494555, 0.012093843, 0.00489046564, -0.00831633, -0.0023817909, 0.00242348132, -0.0186773017, -0.0142979966, 0.00812056568, 0.00780879427, 0.0227955878, 0.00873685908, -0.00456419308, 0.0274794158, 0.00540887704, 0.0016213943, 0.00574965077, 0.00374488602, -0.00245610857, -0.00981718395, 0.0104987314, 0.0151390554, -0.043590039, -0.00249417382, -0.00154798292, 0.00628618803, 0.00229297229, -0.00367419352, -0.00183165888, 0.00669946708, -0.0113470405, 0.00662333658, -0.00849034172, -0.0149940448, -0.00342042581, -0.00119542703, 0.026246829, 0.0160236172, 0.00586203346, 0.0134786889, -0.00344217732, -0.00333885779, 0.00788855, 0.00891812146, -0.016516652, 0.0116370609, -0.00875861, 0.0126666324, 0.0116878143, 0.0220995396, -0.0204899274, -0.0358755, -0.00274069095, -0.0175462235, 0.00237816572, 0.00294733047, -0.00614842866, 0.005136983, 0.00311227934, -0.00301983557, -0.00352737075, -0.00783054531, 0.0154870795, 0.0328302868, 0.0189818237, -0.0054451297, 0.0152405621, -0.0146242687, 0.00100238237, 0.0116515616, 0.0257972982, 0.00691335695, 0.0044264337, -0.00724325469, 0.0230856091, 0.00511885667, -0.0107815014, -0.0218095202, -0.00939665455, -0.0170386881, -0.00806256197, 0.00661971141, -0.00581128, 0.0124128647, 0.0119778346, -0.024231188, 0.0302491076, 0.0273199044, -0.00547413155, -0.0181987677, -0.0167486668, 0.020547932, -0.0176332295, -0.0115500549, -0.001988451, -0.0121228453, 0.00900512747, -0.0411828719, -0.0268413704, -0.00876586, 0.0044046822, -0.000163249657, 0.00767828524, 0.00535449805, 0.0187788084, 0.0123041077, -0.00925889518, -0.00161776901, -0.00714899832, -0.001782718, -0.00125886896, -0.0241586845, 0.000617652433, 0.012072091, -0.0132974265, -0.0319312252, 0.00225671986, -0.0171111934, -0.014022477, 0.0180102549, -0.00209177076, 0.00354549708, 0.00262649544, 0.00664508808, -0.00812056568, 0.0154725779, -0.0114920512, -0.0103682224, 0.00838158373, -0.0147910304, -0.0186483, 0.00279869512, -0.008193071, -0.00070828374, -0.0108830081, -0.0149215395, 0.00848309137, -0.0244197026, 0.0242021866, 0.0255797822, -0.0206494387, 0.00854834542, 0.00471282844, -0.0158496052, 0.0242746919, -0.0211714748, 0.00649645273, -0.0109845158, -0.0120575903, 0.0278129391, 0.000201767965, 0.0148127824, 0.0114993015, -0.00174737175, -0.0289005134, -0.00281682122, 0.0103754727, -0.00827282667, -0.0078813, 0.0174737182, -0.0123693617, 0.00524211535, -0.0241296813, 0.0236366466, 0.00586203346, 0.00880211312, 0.0106074894, 0.007174375, 0.00359625067, -0.0112600345, -0.0131161641, 0.0389787182, -0.022433063, 0.0203449186, 0.00313403085, 0.0119270813, -0.00375576178, 0.00118545757, 0.0119778346, -0.00327904103, 0.0173867121, 0.00154345133, -0.020547932, -0.0120140873, -0.0201709066, -0.000221706854, 0.0167196654, -0.00760578, -0.00905588083, -0.005136983, -0.0143632507, 0.020721944, -0.00734476186, 0.0151390554, -0.00314128143, 0.00137397076, -0.00853384472, 0.0147040244, 0.0164296441, 0.00908488315, -0.00494847, 0.00927339587, -0.010012948, -0.0148272831, 0.000201428105, -6.19691637e-05, 0.00424879603, 0.00903413, 0.0192863438, 0.0100419503, -0.00674659526, 0.0179667529, -0.000551944715, 0.0131814182, 0.036716558, -0.011941582, -0.000536084233, -0.0133046769, 0.0178362429, -0.00676834676, 0.0133264288, -0.00200295215, -0.0106872451, 0.00439380622, 0.0129711544, 0.00248329807, 0.016386142, 0.00627893768, -0.00376301236, -0.00440830737, 0.00906313118, -0.0128696468, 0.0131741678, 0.0236076452, -0.0149070388, -0.014566265, -0.0114630489, -0.00236547738, 0.020678442, -0.00034983689, -0.0169081781, 0.016951682, -0.0154290749, -0.0201129019, -0.000933502568, 0.00335154613, 0.0118618263, -0.014356, 0.00681547495, -0.00828732736, 0.00297995773, 0.00902687944, 0.00718887616, 0.014435756, -0.00148454099, 0.00103138434, -0.00536537403, 0.014305247, -0.00303252391, 0.0138412146, -0.0164296441, 0.00450256374, 0.00742089236, 0.0292775407, 0.00711999601, -0.00983893592, 0.0161831286, 0.00149632304, -0.00869335607, -0.0111585278, -0.001782718, -0.00801905897, 0.0227955878, 0.0285814926, -0.012354861, 0.00677922228, 0.00693510845, -0.00487596495, -0.00485058827, -0.0115355542, 0.0021751516, -0.0136309499, -0.0138194636, 0.0138847176, -0.00146550837, -0.0148925381, 0.0105349841, -0.0232161172, 0.0220850389, 0.00121083437, 0.00860635, 0.0068082246, -0.0212874841, -0.0236946512, 0.0171691962, 0.0225345697, -0.0113252895, -0.020460926, -0.0132394228, 0.0119560836, -0.00656895759, -0.00236003939, -0.00385726872, 0.0119778346, 0.0117240669, 0.00388989621, -0.000928064692, -0.00951266289, 0.0121445963, 0.00322103687, -0.00185794197, 0.000651186, -0.00471282844, 0.016168626, -0.020591436, 0.00956341624, 0.00282950979, 0.00449531339, -0.00893987343, 0.022433063, 0.00117548823, -0.00222590519, 0.00483608712, 0.00773628894, -0.0295095574, -0.00145372632, -0.0107815014, 0.019982392, -0.0334393308, 0.00163045735, -0.0150230471, -0.00310140359, 0.010447978, 0.00179359375, 0.00201201532, -0.012311358, -0.015907608, -0.00287482538, 0.00460769609, -0.0116878143, 0.0278854426, 0.0138992183, -0.00613030232, -0.00631156471, -2.6056503e-05, -0.0195908658, -0.00742451753, 0.0224475637, 0.0406898372, -0.0220705383, -0.000960691948, -0.0176622309, 0.0193733498, 0.00364519143, 0.00306152576, 0.0235206392, 0.0293790475, 0.0133336792, 0.00633694185, 0.0124781197, 0.0137832109, 0.00729038287, -0.00212439802, 0.0179812536, -0.00226397021, 0.0118255746, 0.00981718395, 0.00200295215, 0.0112527842, 0.00012019978, 0.0168211721, -0.00435392838, -0.0174302142, -0.00411466183, -0.0261018183, 0.00126702583, 0.0099621946, -0.000277784973, 0.0023636648, 0.0109917661, 0.0339903682, -0.0212729834, -0.00403490616, 0.00975193, 0.0254202709, 0.000534271589, 0.00245792139, 0.0169951841, 0.0200258959, -0.000971567701, -0.0152695645, 0.00609042449, -0.0272619, -0.00901237782, 0.0131451664, -0.020286914, -0.00355456024, 0.0012507122, 1.16829433e-07, -0.0218095202, 0.00627893768, 0.00970117655, -0.00156882813, 0.0180392563, -0.00714174751, -0.0148200328, -0.00749702239, -0.0170531888, 0.0153855719, -0.00035776713, 0.0156610906, -0.00357087376, 0.0036760061, -0.00826557633, -0.0303651169, -0.00189781981, 0.0190978311, -0.0113760429, 0.0229551, 0.00570614776, -0.00709461933, 0.000262377667, -0.016864676, 0.00350199407, -0.0190253258, -0.00530011952, -0.00909938384, -0.00448081223, 0.0235496406, 0.00883111544, 0.0192138385, 0.00352555816, -0.00594903948, -0.0112165315, -0.00539800106, 0.00188694405, 0.00585478311, 0.0123186084, -0.00743176788, 0.0243761986, -0.00944740884, 0.00684810244, -0.00796105526, -0.00294914306, -0.00529649435, -0.00525299087, -0.00525661651, -0.0100492006, 0.00428142352, 0.016560154, 0.0114993015, -0.00933140051, -0.00115373661, 0.00533999735, -0.000297723862, 0.004074784, -0.00179268746, 0.00715624867, -0.0361075178, 0.0248547327, -0.0267108623, -0.00308690267, 0.00531099504, 0.0181987677, 0.00150629249, -0.020547932, 0.00383189204, 0.0136817032, -0.0119270813, 0.0330043, -0.0155450832, -0.000412145921, -0.00286938739, 0.00109482626, 0.00409291033, -0.00941115618, -0.0114122955, 0.0237091519, -0.0137759596, -0.00784504693, -0.00956341624, -0.00756227691, 0.00377751328, -0.0133626815, 0.00780879427, 0.0218820255, -0.0012262417, -0.0284509826, 0.00410741102, -0.00887461845, -0.000481252297, 0.0126303807, -0.00611580117, 0.00801180862, -0.0330623053, 0.00330260512, 0.0162846353, 0.00176912325, 0.0256377868, 0.0144430064, -0.00953441486, -0.00936040189, 0.00779429311, -0.00998394564, 0.00495209498, 0.00486508897, -0.00900512747, 0.0239266679, 0.00447356189, -0.0238686632, -0.0034494279, 0.0181987677, -0.00577502744, -0.00662696175, 0.0114702992, 2.10292983e-05, -0.0220705383, 0.010012948, -0.0123041077, 0.00392977381, -0.000640763377, 0.00504635181, -0.00682635093, 0.0138049619, 0.0251882561, -0.0241006799, -0.000643482374, 0.0185902957, 0.0195618626, -0.0158496052, -0.00387176988, 0.0104117254, -0.00676834676, 0.0163426381, -0.000838339678, 0.00485783862, 0.0054451297, -0.0304811243, -0.00933140051, 0.00493034348, 0.00939665455, 0.0277839359, 0.018097261, -0.00799005665, 0.0227230843, -0.00234553847, -0.0134859402, -0.000743629935, -0.00917188916, -0.00736651337, 0.0290745255, 0.0167921707, -0.00679734861, 0.00619918201, 0.00289113889, 0.0207944494, -0.00730488403, 0.035092447, 0.0202724133, -0.0163281374, 0.00361618958, 0.00830182899, 0.0168936774, -0.0150085464, -0.0406608321, 0.00933140051, -0.0653125495, -0.00963592157, 0.000738645205, 0.00120086491, 0.0102159623, 0.0127463881, 0.0160381179, -0.00343130156, 0.0600341856, -0.000214229774, -0.00246335915, 0.0143124973, 0.00122533541, 0.0100201983, -0.0173432082, 0.00790305063, 0.0128116431, 0.0122606046, -0.00450618891, -0.00220596627, 0.0236656498, 0.00512610702, -0.000570071, -0.00253948942, 0.0241006799, 0.00572789926, 0.0117095662, -0.0142109906, -0.00850484241, -0.00958516821, -0.0117675699, -0.0151680568, -0.0180827603, -0.0106582427, -0.00349111832, -0.0117458189, 0.0152695645, -0.00124527432, -0.00327722845, -0.013935471, -0.0109265111, -0.00696048513, 0.0146822734, -0.00985343661, -0.0263483357, 8.59298161e-05, -0.00344217732, -0.0077290386, -0.00749702239, 0.0111222751, -0.020852454, 0.00494121946, -0.00144738215, 0.010230463, 0.00605054665, 0.0195328612, -0.0214759968, 0.00464394875, 0.0109265111, 0.0123403603, 0.00117005024, -0.0276389271, -0.0141602373, 0.0174012128, 0.0199388899, 0.00653633056, -0.0100201983, -0.00285669905, -0.0268413704, 0.000984256, -0.0262903329, -0.028305972, 0.00631156471, -0.012180849, 0.0147692794, 0.00320834853, -0.0176912323, 0.0115645556, 0.0119995866, 0.0175462235, 0.00522398902, 0.0228535924, 0.0156610906, -0.0053472477, 0.00809156429, 0.00805531163, 0.00107579376, -0.0200839, 0.0117893219, 0.000960691948, 0.012246103, 0.0077290386, -0.0238831639, -0.0106292404, -0.003007147, -0.0164586473, -0.00468020095, -0.00681547495, 0.000945284613, 0.00684810244, -0.000509801146, -0.0197068732, 0.00472007878, -0.00436117873, 0.0292195361, 0.0038862708, 0.010012948, -0.0200548973, 0.0156755932, 0.00498472247, 0.0230131038, 0.0145082613, 0.0188658144, -0.00521673867, 0.0257682949, 0.0102594653, 0.00515510933, -0.0105857374, -0.0173432082, -0.00614117784, 0.0117603196, -0.00142653694, -0.00883111544, -0.0299590882, 0.0113542909, 0.0208089501, 0.000389714667, 0.00668134075, -0.0135004409, -0.0122098513, -0.0113905435, -0.00674659526, 0.00537262438, 0.00909938384, -0.00376301236, -0.00984618627, -0.00473458, 0.0249562394, -0.0103319697, 0.00384639297, 0.00862085074, 0.0180682596, 0.0406608321, 0.0170966908, -0.0325112641, -0.0279144458, 0.00201201532, -0.0182132702, 0.00453156559, -0.00990419, 0.00207545725, -0.00925164483, 0.0179232489, -0.0074063912, 0.00301983557, -0.0209684614, -0.00208995817, -0.00728313252, -0.00200476474, -0.00338961114, -0.00704749115, 0.00801905897, 0.0149215395, -0.00471645361, 0.0167341661, -0.0120068369, 0.0165311527, 0.000241985617, 0.00667046476, -0.0048070848, -0.00705474149, -0.00102413388, 0.0209829621, -0.0129711544, -0.000294778351, -0.0187933091, 0.00474183029, -0.0370065793, 0.0111440262, 0.00543425372, 0.00877311174, -0.00885286741, 0.0103682224, 0.00435392838, -0.00332435663, -0.00778704276, -0.00440105656, 0.00270262593, 0.00714537315, 0.00211170968, -0.00485783862, 0.0282044653, -0.026986381, -0.00258117984, -0.00698948698, -0.00133409293, -0.00868610572, 0.00155795238, 0.000819307112, 0.00348024257, 0.0138484649, -0.0122968573, 0.00220052828, 0.00297995773, -0.0112672849, -0.00750427321, -0.0110497698, 0.01621213, -0.0197793785, 0.0149940448, 0.000815228675, 0.0004685639, -0.0139934756, 0.00777979242, 0.0077725416, 0.0008555596, -0.0111222751, -0.0139282206, -0.0156610906, 0.0113977939, 0.0231871158, 0.0102812164, 0.0214179922, -2.36137066e-06, 0.0242166873, -0.00246879715, 0.00802630931, 0.0194168538, -0.0169081781, 0.0165021494, 0.00628256286, 0.00161505, 0.0118690776, -0.00193225965, -0.0181262624, -0.0186047964, 0.00611217599, 0.00387176988, -0.0101724593, 0.0135584446, 0.0377896354, 0.0136672026, 0.00896162447, -0.00709099416, -0.0153130675, 0.0148272831, -0.0220415369, 0.0178072415, 0.0135801965, -0.00556113757, 0.00160508056, -0.0110787721, -0.00146913365, 0.0223315563, 0.0088093644, 0.00682635093, -0.00772178825, 0.0228825938, -0.0216355082, -0.0122823557, -0.00868610572, 0.001015977, 0.0135004409, -0.0253042635, 0.00509710517, -0.00464032358, -0.00632606586, 0.00136218872, 0.012093843, -0.00308871525, 0.00482521113, -0.00855559669, -0.0178362429, 0.00901962817, 0.00102775916, 0.022433063, -0.018575795, 0.0186047964, -0.031989228, -0.0183002762, -0.00476720743, 0.00833808072, -0.0124056144, 0.00731576, 0.0103102187, 0.00117458182, -0.0231871158, -0.00977368094, 0.00708011864, -0.0229260977, 0.0026174325, -0.036368534, 0.0113252895, 0.0146387704, -0.0266963597, -0.0221285429, 0.00134678138, 0.0141457357, 0.00373038487, -0.00417991634, 0.0120068369, -0.0303361136, -0.014174738, -0.00682272529, 0.0225345697, -0.00748252124, -0.0236656498, -0.00535812322, 0.00174374657, -0.0207944494, -0.0046729506, -0.00405665766, -0.00785954762, -0.0136527019, -0.00708374381, -0.00311409193, -0.00610855082, -0.00560464058, 0.000779429334, -0.018358279, -0.014174738, 0.0195763651, 0.00889637, -0.00593091315, 0.0311191697, 0.0174882188, 0.0266238563, 0.00781604461, -0.002595681, -0.0174737182, 0.0198663846, -0.0137832109, -0.00331891887, -0.00609767484, -0.0274794158, -0.0163136367, -0.0146387704, -0.00256305351, -0.00981718395, -0.0394717492, -0.0145807657, -0.00212439802, -0.00211896026, -0.0212004781, 0.000702392717, -0.00413278816, 0.00474545592, -0.0133264288, 0.0424879603, 0.000887733768, -0.0136744529, -0.0107017457, -0.000938034151, 0.0170821901, -0.00361800217, 0.00334610813, -0.00900512747, -0.0306551363, 0.00970117655, -0.00311953, 0.00764203258, 0.00430317502, -0.00222953036, -0.014305247, 0.000266456074, -0.00706924265, 0.00708011864, 0.00272619, -0.0175317209, -0.0224910676, 0.00764203258, -0.0120430896, 0.00291832839, 0.0672266856, 0.0240281746, -0.000238360357, -0.0219980329, 0.00710549532, -0.0284219813, -0.000588197261, 0.0337003469, -0.0127536384, 0.0102377133, -0.00283676013, 0.0183872823, 0.00505360216, 0.012441867, -0.0146895237, 0.00375576178, 0.0227085818, -0.0155740855, -0.00903413, -0.00579677895, 6.46881e-05, -0.0233901292, 0.00465119909, -0.0241731852, 0.00369775761, -0.00847584102, 0.000357993704, -0.0154580772, -0.0177347362, 0.024144182, -0.00574602559, 0.0125433737, 0.00581490528, 0.0248837341, -0.0194748566, -0.00891812146, 0.00139753486, -0.0117458189, 0.00680097379, -0.0173722114, 0.0230131038, 0.00929514784, 0.00095072249, -0.00259930617, 0.00957066659, -0.0105059817, 0.0193008445, -0.0210554674, -0.00848309137, -0.0443730913, 0.00931689888, -0.0237816572, 0.00301439757, -0.0278709419, 0.0266528577, -0.0126231294, 0.016951682, 0.00883111544, 0.000982443453, -0.00614842866, 0.0304231197, 0.0143415, -0.0115210526, 0.0168501735, 0.00126611954, -0.0355854817, -0.00195582374, 0.00868610572, -0.00828732736, 0.00759127922, 4.27383311e-05, -0.00642394787, 0.00746076973, 0.000177297508, -0.0148272831, 0.0333233215, -0.000289793621, 0.00575690111, -0.000742270495, -0.019895386, -0.0322212465, 0.0051152315, -0.00103229075, -0.0147402771, -0.012289606, -0.0150230471, -0.0172707029, -0.00944740884, -0.00424879603, 0.00295276823, -0.00197938783, 0.0132901762, -0.00255942834, -0.00112382835, -0.00482521113, 0.00458231941, -0.0102884667, 0.000957066717, 0.00255399058, 0.00181172, 0.0183292776, -0.01205034, 0.00953441486, -0.0130944122, -0.0022911597, 0.0228100903, -0.00753327506, 0.016516652, 0.00643482339, -0.00156067125, 0.00190869556, 0.000304747809, -0.00536537403, 0.0321922451, -5.52284564e-06, 0.00224403129, 0.0204319246, 0.0176332295, -0.00241804356, -0.00645294972, -0.000564179965, -0.00736288819, 0.0021044591, 0.0146822734, -0.00801180862, 0.00259205559, 0.0112962872, -0.0130871618, 0.0291325301, -0.00651820423, -0.00400227914, -0.00311953, 0.0112745361, -0.003614377, 0.0272619, 0.0266093537, -0.00775804045, 0.0110715218, -0.00510073034, 0.0162846353, 0.00424879603, 0.0292340368, -0.0103464713, -0.0106509924, 0.00854834542, 0.00710187, -0.0210989695, 0.00554301124, 0.0328012854, -0.0118255746, -0.00814231765, -0.0201709066, -0.0068662283, 0.00643119821, -0.00407840917, 0.0168066714, 0.0139209703, -0.0161251239, -0.0198228806, -0.0152115598, 0.00574602559, -0.00212439802, 0.0311481711, -0.00483971229, 0.00518411119, 0.00524211535, 0.010165208, -0.00782329496, 0.00762028107, -0.00759852957, 0.00960691925, 0.0242746919, 0.00044998448, 0.0142327417, -0.0341933817, -0.0160091165, -0.0119633339, -0.0173577089, 0.00116914394, -0.0166616607, -0.020069398, 0.0135511942, 0.000588650408, 0.0544948, 0.0132394228, 0.00246517174, 0.00293645472, 0.00116914394, 0.0199678913, -0.00439018104, -0.00680097379, -0.00301439757, -0.0148635358, 0.00041849009, 0.00520586269, -0.00854834542, 0.0206929427, -0.00252680108, -0.0156320892, 0.00508260401, 0.0385146849, -0.0174737182, 0.00872235745, -0.0111005232, 0.00950541254, -0.00268268702, 0.0128841475, 0.00675022043, -0.0152695645, -0.00585478311, -0.00297089457]
11 Nov, 2021
jQWidgets jqxTreeMap destroy Method 11 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTreeMap is used for showing the hierarchical data set of nested rectangles. Here each and every branch of the tree is represented as a rectangle, which is then tiled with smaller rectangles that represent sub-branches. Here the rectangle of the leaf node has an area proportional to a specified dimension on the data. The destroy method is used for destroying the specified jqxTreeMap widget. This method removes the jqxTreeMap widget from the web page. Syntax: $('#jqxTreeMap').jqxTreeMap('destroy'); Parameters: This method does not accept any parameters. Return values: This method does not return any values. Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtreemap.js”></script><script type=”text/javascript” src=”scripts/gettheme.js”></script><script type=”text/javascript” src=”scripts/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxTreeMap destroy method. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href=" jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtooltip.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtreemap.js"> </script> <script type="text/javascript" src="scripts/gettheme.js"> </script> <script type="text/javascript" src="scripts/jqx-all.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTreeMap destroy Method </h3> <div id="Tree_Map"></div> <input type="button" style="margin: 28px;" id="button_for_destroy" value="Destroy the above jqxTreeMap"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { var Data_of_TreeMap = [{ label: 'GeeksforGeeks', value: 70, color: '#ff0300' }, { label: 'is a', value: 10, parent: 'GeeksforGeeks', color: '#ff5400' }, { label: 'Computer Science', value: 30, parent: 'GeeksforGeeks', color: '#008000' }, { label: 'Portal.', value: 15, parent: 'GeeksforGeeks', color: '#7fbf00' } ]; $('#Tree_Map').jqxTreeMap({ width: 390, height: 200, source: Data_of_TreeMap }); $("#button_for_destroy"). jqxButton({ width: 300 }); $("#button_for_destroy").click( function () { $('#Tree_Map'). jqxTreeMap('destroy'); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtreemap/jquery-treemap-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtreemap-destroy-method/?ref=next_article
PHP
jQWidgets jqxTreeMap destroy Method
PHP Date and Time, Node.js Stream transform.destroy() Method, 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, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTree ensureVisible() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, PHP
GeeksforGeeks
[-0.0382323451, -0.0198301151, -0.00897527672, 0.0196407028, 0.0461294241, -0.01946586, 0.0248422828, 0.01493451, 0.0118237613, 0.00706293061, -0.00332383905, 0.0094196694, -0.00199976726, -0.0384946093, 0.0273483656, 0.00484096678, -0.0236038119, -0.0102428887, -0.0329870544, -0.0238806456, -0.0101627521, -0.00249697734, -0.0396019481, -0.000181786687, 0.00772951962, 0.0150510725, 0.0040031774, 0.0017584475, -0.023968067, 0.0223070588, -0.0357554033, 0.015765015, 0.0145556834, -0.0227587372, -0.0339778326, 0.00724505866, 0.0123482905, 0.0518992431, -0.00273374375, 0.00520886574, 0.00339669036, 0.0238077939, 0.00476447307, 0.00721956091, -0.00407238584, 0.0267801266, 0.0194221474, -0.0594466366, -0.00817391276, 0.0355222784, 0.0181982461, 0.0176154375, 0.0019159884, 0.0138198854, 0.0278874654, -0.0383197665, -0.00615957472, 0.0277417637, -0.0182128176, 0.0385820307, 0.0579021871, -0.0280768797, 0.0111899553, 0.013601332, 0.00817391276, 0.0273629371, 0.0257164985, 0.00186863507, -0.0342400968, -0.00411245413, -0.00955808628, 0.0603791326, -0.0141768567, -0.00800635479, 0.00876400806, 0.007583817, -0.0315883085, -0.0164935272, 0.0131569393, 0.0312969051, 0.000209447404, -0.0243614651, -0.0214182734, 0.00470619183, 0.0179651231, 0.0120277442, -0.042807404, -0.048169259, 0.0611367859, 0.00931039173, -0.0390774198, 0.0108621242, -0.0227295961, -0.0151822045, -0.0397476517, -0.00765666831, -0.0244051758, -0.00130950159, -0.0699955, 0.0429239683, -0.00365349115, 0.0230938531, -0.0292862095, -0.0217971, -0.0207917523, -0.0200195294, 0.0253376719, 0.0342109576, 0.0171491895, 0.0166246593, 0.0571153946, -0.00487375, -0.017935982, 0.00254068803, -0.023399828, -0.00963093806, 0.0181108247, -0.0126688359, 0.0110151116, -0.0137688899, -0.0266198535, -0.0274066478, 0.005849957, 0.0623606853, -0.0254105218, 0.00163186842, -0.0308597982, 0.0303061288, 0.0456923172, 0.00211268687, -0.0193638671, -0.00830504484, -0.000501307775, 0.0120350299, 0.00713578193, 0.0308889374, -0.00500852475, 0.0218262393, -0.0599128827, -0.00966007821, -0.0332201794, -0.0188393388, -0.000898347236, -0.0274940692, -0.000302105094, 0.0149636511, 0.0132225053, 0.0275960602, -0.0416709259, 0.0377078168, -0.0245508775, 0.0248859935, 0.0237058029, 0.0277126227, 0.0171054788, 0.00655297143, -0.0543470457, 0.0493640192, -0.0241574813, -0.00577346329, 0.00560226245, -0.0245800186, 0.0266489945, -0.00764938304, -0.0480818376, -0.0110879634, 0.0121588772, -0.0276106317, -0.0249734148, 0.0330453366, -0.00898984633, -0.00477904314, -0.00994419865, 0.0125814145, -0.0318214335, -0.0352600142, -0.00674602762, -0.0335990041, -0.020937454, -0.0280040279, -0.0249005631, -0.0156921633, 0.0245945882, 0.029767029, 0.00265907124, 0.0323459618, -0.00176482194, -0.00925211143, -0.016100131, -0.0284411348, -0.0189704709, 0.0262555964, 0.0363090709, 0.0225401819, 0.00566054368, -0.0346189216, -0.00621057069, 0.0349394679, 0.00237313, -0.0259787627, 0.0260807537, -0.0368627422, -0.00478268601, 0.0315591693, 0.0215056948, 0.0263430197, 0.0129529554, -0.0649833307, 0.0558914952, 0.0171637591, -0.0117144836, -0.0136814686, -0.0158524364, 0.0248568524, -0.00243141106, 0.0161584113, -0.0294610523, -0.0314134657, 0.00251883268, -0.00992234237, 0.0540265, 0.00131132279, -0.00392668322, 0.0117217693, -0.0842743441, -0.00279931, 0.00654568663, 0.0027118884, 0.00195787777, 0.0277417637, 0.000405462837, -0.0013832635, 0.0023804151, -0.0224964712, 0.0155756017, 0.0171200484, -0.0126761207, 0.0305683929, -0.0173531715, -0.00403960282, 0.0246965811, -0.0142934192, -0.0251045469, 0.00904084276, 0.0491891764, 0.00934681762, -0.0152987661, 0.000438701245, -0.0077440897, 0.00813748688, 0.0184168015, -0.017600866, -0.00564233074, 0.0280185975, -0.00858916435, 0.0187956281, 0.00240773452, -0.0106508555, -0.00735433539, 0.00842889212, -0.00826133415, 0.0257602092, -0.0435067788, 0.0275523495, 0.019203594, 0.0266344231, 0.00692815566, -0.000991687877, 0.00211450807, -0.0164935272, 0.00988591742, -0.0168140735, 0.0248859935, 0.00825404841, -0.0173968822, -0.00877129287, -0.0500342511, 0.0329579152, 0.0232104138, -0.00703379, 0.00902627222, 0.00232031289, 0.00834147073, 0.0685384721, 0.0285431277, 0.0314134657, 0.0440021679, -0.00704836, -0.0349686109, 0.00548934331, -0.0385528915, -0.0266198535, 0.00621057069, 0.015735874, 0.0379409418, 0.00751825096, 0.000813657593, -0.0286596883, -0.00872758217, -0.00998062361, -0.0279457476, -0.00141604652, -0.0018440478, 0.0254833736, -0.00316538755, 0.0300438628, 0.0559789166, 0.0121443067, 0.00481911143, -0.0125814145, 0.0296213254, -0.0239826385, -0.025133688, -0.0346189216, -0.0239389278, 0.00989320222, 0.0305975322, 0.00616321713, -0.0268529784, 0.0200632401, -0.028965665, -0.0160709899, -0.0270569604, 0.0355805606, 0.0528608821, -0.0312386248, -0.0363382138, -0.00778780086, -0.00197426928, -0.019203594, -0.0177902803, 0.0141550014, 0.0307723768, 0.010133611, -0.00745268492, -0.0200049579, 0.0257893484, -0.0278291851, -0.0138126006, 0.00171382609, -0.0118601862, -0.00869115628, 0.0125595592, -0.0176882874, 0.0107819876, -0.0414086618, -0.0293444917, 0.000325098779, 0.019203594, 0.0308889374, 0.00139965501, -0.00918654539, 0.0256290771, 0.0108766947, 0.017469734, 0.00417073537, -0.00947795, -0.00736890594, -0.0326373689, -0.0139510185, 0.0267364159, 0.0293590613, 0.0325499475, -0.0259059109, 0.00264450116, -0.0192473046, -0.0162895434, -0.0308306571, -0.0344440788, 0.0229481496, 0.0394562483, -0.0487229303, -0.0372124277, 0.0579021871, -0.0293590613, -0.0411755368, -0.001541715, 0.00302150636, -0.0257310681, 0.0130476626, -0.0156775936, 0.0150073618, 0.00548570044, 0.0350851715, 0.0040541729, 0.0124211414, -0.0115250703, -0.0495971441, -0.00484096678, -0.0037882661, -0.0339778326, 0.0369793028, -0.0196407028, -0.025935052, 0.0310055, 0.0102137476, 0.0177465696, -0.00141149329, 0.0336281471, -0.0475281663, 0.0068771597, 0.00662218034, 0.00682616374, -0.00047808644, -0.0329870544, 0.00912097842, -0.0172511805, -0.010869409, 0.00177028589, 0.025133688, 0.0323459618, -0.00153169793, -0.0271006729, 0.0434484966, 0.0151384939, 0.0205294881, 0.0247548614, 0.037970081, -0.0242303312, -0.0236475226, 0.0159398578, -0.00307796616, -0.0334241614, 0.0440895893, -0.0443518534, 0.0116926283, -0.0178922713, -0.0372998491, 0.00619964302, 0.0137033239, 0.0160564203, -0.0108038429, 0.00241684075, 0.0253813826, -0.0100243343, 0.00156448095, 0.0248714238, 0.00717949262, -0.00436743349, -0.00208536768, -0.000536822772, -0.0266198535, 0.0492474586, 0.00602844264, -0.0221613552, 0.0239826385, -0.0336281471, -0.00980578084, 0.018300239, 0.0277854744, -0.0100534754, -0.0106435707, -0.0213599913, -0.011634348, 0.0202672221, -0.0290239453, -0.0197135527, 0.018766487, 0.0107601322, 0.0225401819, 0.00592645071, 0.0148398038, -0.0195824206, 0.00445849774, -0.0438273251, -0.0283100028, 0.0130258072, -0.00198883959, -0.0167703629, -0.0143881254, -0.02013609, 0.00972564425, 0.0387277342, 0.0659741089, 0.0183730908, 0.0203837845, 0.00634534564, -0.00413430948, 0.00903355703, -0.0244780257, 0.0512581542, 0.0433610752, 0.0350268893, -0.00252429652, 0.00183585193, -0.0161875524, 0.029300781, 0.00275742053, -0.0142569933, 0.0189121887, 0.0139437327, -0.0232686959, -0.0511124507, -0.000501307775, -0.00353875034, 0.0271735229, -0.0305683929, -0.0197718348, 0.0169160645, -0.00861830544, 0.0285868384, 0.0142278532, -0.0287179705, 0.0324042439, 0.00565325841, -0.02293358, -0.0167849325, 0.0454009101, 0.0177319981, -0.0563868806, 0.0138417408, -0.0240992, -0.0076930942, -0.0155173205, 0.00453134906, -0.0406510085, -0.0303644091, 0.0298981611, 0.0107309921, 0.00606851047, 0.027800044, -0.0164935272, -0.00666589104, 0.000821853406, 0.0140821505, 0.0387568735, -0.027333796, -0.0142861335, -0.0110369669, -0.028499417, -0.00444757, 0.00421080319, 0.0439438857, 0.0176300071, 0.00733976532, -0.0019159884, -0.0411172546, 0.0158087257, -0.0138053158, 0.0113502275, 0.0164935272, -0.0159689989, -0.0336572863, -0.00596651901, 0.0154736098, 0.0104832975, 0.0028084165, -0.0215056948, 0.000872393954, 0.0390774198, 0.0371832885, 0.000405918167, 0.0189996101, -0.011699914, -0.0144974021, 0.0257456377, 0.000791346887, -0.0280477386, -0.00952166, -0.00613407698, 0.00236948743, -0.00876400806, 0.0326665081, 0.0120131746, 0.0203255042, -0.0241866205, 0.0055804071, 0.0224236213, -0.0141258612, 0.00841432158, 0.019334726, -0.00761295762, -0.0279603172, -0.00303425523, 0.0228461586, 0.000935228192, 0.035230875, 0.0197864044, -0.0152113447, 0.0132807866, -0.000529993, -0.0105561493, 0.0244488865, 0.0348811857, -0.0107091367, -0.0255562253, 0.00735433539, -0.00772951962, -0.030801516, 0.0319088548, 0.00135321228, 0.017498875, 0.0214765538, -0.00456777448, 0.0114595043, -0.00383561919, -0.00873486698, -0.0132225053, 0.0315883085, -0.01946586, 0.00680430839, 0.00317085139, 0.0305683929, -0.000128400367, -0.00141695712, -0.00696093868, 0.0122390129, -0.0188976191, 0.0359302461, -0.00489924802, -0.0265178625, -0.0296796076, 0.035638839, -0.0159689989, -0.0107309921, 0.00679702358, -0.00309071504, 0.0337447077, -0.0217533894, -0.0265615731, 0.0194075778, -0.0103448806, 0.0198301151, 0.0120714549, 0.0224381909, -0.0093759587, -0.0280914493, -0.00742718671, -0.0171637591, -0.0443227105, 0.0169160645, -0.00140967208, -0.00925211143, -0.0194075778, 0.0307432357, 0.026503291, 0.000809559715, 0.0214911252, 0.000329879666, 0.0295921862, 0.0243614651, 0.0229190085, -0.0228461586, 0.0331618972, -0.00718313502, -0.0164352469, -0.0225110427, -0.00623242604, 0.0159252882, -0.00750368088, -0.0359302461, 0.0367461815, 0.024769431, 0.0155464606, -0.00327466452, 0.00798449945, 0.0138927372, 0.00537278131, -0.00824676361, 0.0286305491, -0.0301895663, -0.0109714009, 0.029533904, 0.0295630451, 0.0201943722, 0.00732155237, 0.0251773987, 0.0401264802, -0.010869409, -0.00053864409, 0.0163332541, -0.000850538549, -0.0184313711, 0.0337738469, 0.0123264343, -0.0264158696, -0.00952894613, 0.0128509635, 0.0170180555, 0.00488103507, -0.00201251637, 0.0160418488, 0.0305101108, 0.0249442738, 0.00928853638, -0.0169889163, -0.0187956281, 0.0146431047, 0.0300730038, -0.0117946202, 0.0144536914, 0.0102865994, 0.0233124066, 0.0190870333, -0.0135139106, -0.00218007411, -0.0112190954, 0.0101044709, -0.00572610972, -0.0267946962, -0.0220302232, 0.00266635651, -0.0107382769, 0.0342109576, -0.00256800721, 0.0409424119, 0.00499031181, 0.011933038, -0.00107819878, -0.00734705059, 0.0337155685, 0.00677152537, -0.0213308521, 0.0318214335, -0.0035150738, 0.00128673553, -0.0154153286, -0.0178631321, -0.0116416328, -0.00208901, -0.00569696911, 0.0427491255, 0.0273775067, -0.0216805376, -0.00870572682, -0.018868478, 0.0103157395, -0.0249442738, -0.0145848244, -0.00152714469, -0.00585724181, 0.000430505461, 0.00935410336, -0.00637448626, -0.0396310911, 0.023035571, 0.0188976191, -0.0220010839, -0.017032627, 0.013266216, 0.000214683576, -0.0150947832, -0.0301895663, 0.00274285022, 0.00478997082, -0.0206897613, -0.0315300301, -0.00767852366, -0.000699372205, 0.0063963416, -0.0128655341, -0.0285868384, 0.027698053, -0.0221904963, 0.00805735, 0.0318797156, -0.0245071668, -0.0170471966, 0.0276397709, 0.00168195367, 0.00251336885, 0.0262555964, -0.0303935502, 0.0209811646, -0.00203983556, -0.00976207, -0.0193638671, -0.00516151218, 0.0137543194, -0.00981306564, 0.00817391276, 0.0251191184, 0.052569475, 0.00110551796, 0.0269112587, -0.0110369669, -0.00178576668, -0.00354603562, -0.0102793137, -0.0204566363, -0.0150073618, -0.00923754089, 0.0301895663, 0.000350141403, 0.0130695179, -0.0148543734, 0.0267509855, 0.0289073829, -0.0179068428, 0.0375912562, -0.00323641766, -0.0130768027, 0.00536549604, -0.0214474127, -0.0137980301, -0.000603299588, -0.0276252013, 0.0200632401, 0.00294319121, -0.0167120807, -0.019334726, -0.00461148517, 0.00253340276, 0.0388734378, 0.00240044924, -0.0357262641, 0.00629434967, 0.00430186745, 0.00767123839, -0.00452042138, -0.00632349029, 0.0133244973, -0.0448181, 0.0151530644, 0.0112555213, -0.00354967802, -0.00595559133, -0.0217096787, -0.00115105009, -0.00543106208, -0.00109003705, 0.0279748868, 0.00472440477, -0.0121953022, -0.0579313301, 0.0637011528, 0.0486355089, 0.024434315, -0.00403231755, -0.0111681, -0.0178194195, 0.00613043411, -0.0360468067, -0.001599996, -0.00252793892, 0.0214619841, 0.00818848237, -0.000257711363, -0.0235455297, 0.0111098187, -0.0169743448, 0.0153279072, 3.31530173e-05, 0.0023348832, 0.00478632841, 0.0366587602, -0.0142497085, 0.0269112587, 0.014133146, 0.00492110336, 0.0245945882, -0.000841887493, 0.000663857209, 0.0369210243, -0.0040104622, 0.0104031609, -0.0331618972, 0.0324333832, 0.0335407257, 0.0153424768, -0.00445121247, 0.0079626441, -0.00631256262, -0.00777323032, 0.0134629142, 0.0228607282, -0.011335657, -0.0257893484, -0.0349394679, 0.0176591482, -0.0117509095, -0.0188830495, 0.0164498165, 0.0206751898, 0.00523072109, -0.0175280161, -0.0235163905, -0.00023813259, 0.031034641, -0.0215639751, 0.0361925103, -0.0104468716, -0.0189704709, 0.0014542935, -0.0197135527, 0.0617778748, -0.021403702, -0.00581717398, 0.0113283722, 0.0199029669, -0.0310929213, -0.00678245304, -0.01436627, -0.0381157845, 0.000959815457, 0.0136450427, 0.00367352529, -0.0272463746, 0.00960179698, 0.0315883085, 0.0121151656, -0.0382614881, 0.0108111287, 0.0291550774, 0.00857459474, 0.00185406476, 0.00591552304, 0.0291550774, 0.00925211143, -0.00975478534, 0.0325499475, 0.0135721918, 0.0159981381, -0.0188539084, -0.00983492099, -0.0185625032, -0.0335698649, 0.0175134446, 0.00513237203, -0.0343858, -0.0212434307, 0.0142642781, 0.0124794226, 0.0120714549, -0.0150947832, -0.0189559, -0.0521615073, 0.0094196694, -0.023866076, 0.019101603, -0.00877129287, 0.00292315707, 0.0184168015, -0.00952166, 0.010869409, -0.00235127471, 0.0252065398, 0.029431913, -0.0281205904, -0.00648012059, 0.0275086388, 0.0183293801, -0.0206460487, 0.0134119187, -0.0380575024, -0.0105488636, -0.0393688269, 7.75752196e-05, -0.0122171575, -0.0324916653, -0.0251628291, 0.00116470968, 0.00851631351, -0.00459327269, -0.000565963273, -0.0354057178, -0.0213454217, -0.000835968298, -0.0209520254, -0.00819576811, -0.0160127096, -0.0215494055, 0.0102064628, 0.00138690602, 0.042807404, -0.00536185317, -0.0459254384, 0.0233415458, -0.01233372, 0.00641455408, 0.00657482725, 0.0110223973, 0.0268966891, -0.0300147235, -0.0108256983, 0.0266635641, -0.01436627, -0.0283391438, -0.00313260453, 0.0190578923, 0.00395218143, -0.0301895663, 0.0186936352, 0.00534728309, -0.00187045638, 0.00203619292, 0.00986406207, -0.0276106317, 0.0187810566, 0.0363673531, -0.00454227673, -0.024201192, -0.00141058268, -0.00499395467, 0.000575525046, -0.0111535294, 0.0112190954, -0.00747454027, 0.00446942542, -0.00435650581, -0.00490653282, -0.0151384939, -0.0272900853, 0.0201798, 0.00536549604, 0.00281752273, 0.00775866024, 0.00789707713, 0.0372998491, 0.0124867074, -0.0272172336, -0.00805006549, -0.00888057, 0.00231849169, 0.0297378879, 0.0286451187, 0.00885871425, 0.0201069508, 0.0290385149, 0.00634898804, 0.00555126648, -0.00754739158, -0.00177210709, -0.0231958441, 0.0102865994, 0.0253231, -0.00184313708, -0.0111462446, -0.00317631522, 0.0133026419, -0.00405781576, -0.0020616909, -0.00419623312, 0.015867006, -0.0190724619, -0.0148325181, -0.00858916435, -0.0284411348, -0.00458234502, -0.0239243563, -0.00822490826, 0.00189595425, -0.000645189, 0.019101603, -0.00459327269, -0.0164352469, 0.0130476626, -0.00391211314, 0.0103521654, 0.0173386019, 0.00391211314, -0.000348775444, 0.0250171255, -0.0147232413, 0.0131642241, 0.0254105218, -0.010068045, -0.0415835045, 0.031967137, 0.0227587372, 0.00626156665, -0.00485189445, -0.0208500326, -0.020864604, -0.000164370678, 0.00334751583, -0.00477175834, -0.00854545366, -0.00416345, 0.00952894613, 0.0204566363, 0.00203983556, -0.012399286, -0.00841432158, 0.0224381909, 0.00262264558, 0.0367461815, -0.00160363852, -0.0191161726, -0.00372998486, 0.0339486897, -0.0114303641, -0.00209993776, -0.00616686, -0.0260807537, -0.0141987121, 0.0115979221, -0.0103084547, -0.00167011539, -0.0174843054, 0.00197791192, 0.00465155346, -0.00132953562, 0.035667982, -0.00912826415, -0.0297087468, 0.0103594502, 0.0871884, -0.0135867614, 0.00505223544, 0.00968921836, -0.00267546275, -0.0346189216, -0.0034149033, 0.0257456377, 0.0296796076, 0.00385747477, 0.0358719639, 0.013433774, 0.00326555804, -0.0029249785, -0.01946586, -0.0399516374, -0.0215494055, 0.00164279609, 0.0163041148, -0.0145046879, -0.00621057069, 0.00753282104, 0.00955808628, -0.0106799956, 0.0211122986, -0.00727784168, 0.00685894676, -0.0177902803, -0.053006582, -0.00173294952, 0.0133609232, 0.0130622322, 0.0249442738, 0.00946338, 0.0214474127, 0.0420206115, 0.00801364, 0.00764209824, -0.00487739267, -0.00606122566, -0.000866474758, -0.0148762288, -0.00572975213, -0.00475718779, -0.0127853975, 0.00517972512, -0.0262118857, -0.0379992202, -0.000678427459, 0.0307432357, -0.0219136626, 0.00791893248, -0.00143972319, -0.0350268893, 0.0299273022, 0.0282954331, 0.00940509886, -0.0382906273, -0.00112919463, -0.00549298571, -0.0164352469, -0.0232249852, 0.00175298366, -0.0322876833, 0.0237058029, -0.0227295961, -0.0203255042, 0.017498875, -0.0335407257, 0.0196115617, 0.0146212494, 0.00599201676, -0.0114813596, 0.00267546275, -0.0330453366, 0.0163332541, -0.00778051559, 0.0185333621, -0.0133026419, 0.00161638751, -0.0264304411, 0.0370375849, -0.0253959522, -0.0126906913, -0.00161183428, -0.00905541237, -0.000508137629, -0.00127034402, -0.0121370209, 0.0253959522, -0.00296504656, -0.00887328479, -0.0114522194, 0.0160709899, -0.00408331351, -0.0183730908, 0.00939052831, -0.00250426237, 0.00648376299, 0.000678427459, 0.0347937644, -0.0082394788, 0.00436379109, 0.0155318901, -0.00548934331, -0.0207771827, 0.00895342138, -0.00541284913, 0.0188101977, 0.00675695529, 0.00779508566, 0.00443299953, -0.0169597752, 0.00511051668, 0.0123118646, -0.0170034859, 0.00584267173, -0.0215202644, -0.0236766618, -0.0106945662, -0.00404688809, -0.0164352469, 0.00456777448, 0.0053035724, 0.0310637802, -0.00587909762, 0.0207480416, -0.00919383, -0.0186790656, -0.00298872334, -0.0159398578, -0.00451313611, -0.02013609, 0.00293226354, -0.00558769237, -0.00307978736, -0.021301711, 0.018664496, -0.00579896104, 0.0106071448, -0.0272900853, 0.000690265791, -0.00171473669, -0.00201615877, 0.00591916544, 0.0301021449, -0.0068771597, 0.0161729809, 0.00193237991, 0.0148543734, -0.00637448626, -0.00430186745, 0.00690265791, -0.0177757088, 0.0169743448, -0.00811563153, -0.0111243883, 0.00839975104, -0.00188502658, -0.00241501955, 0.00171655801, 0.0212288592, 0.0155610312, -0.0257747788, -0.0136523275, 0.0233706869, 0.00517972512, -0.023035571, -0.00477540074, -0.00730334, -0.0131787946, -0.0162749738, 0.0239389278, 0.00224928302, 0.0135721918, -0.00588638242, 0.0193201564, -0.00479725609, 0.020398356, 0.00716856495, -0.0219573732, 0.0181399658, -0.0133536374, -0.00382469152, -0.0120204594, 0.00673874235, 0.00648376299, -0.0161438417, 0.00717949262, 0.00792621821, -0.025701927, 0.0146285351, 0.00788979232, 0.00147159561, 0.0233415458, -0.0105197234, 0.00564597314, -0.0242740419, 0.00617778767, 0.0135139106, -0.00528535945, 0.00930310693, 0.00718313502, 0.0129602412, 0.00204165676, -0.021767959, -0.0233706869, -0.0163623951, 0.0188393388, -0.00925939623, 0.0291987881, 0.0011109818, 0.00344222249, -0.0162749738, 0.0232978351, -0.0115396408, 0.0157795846, -0.00429458218, 0.0110442527, 0.0208791737, -0.00274102902, -0.00417073537, -0.0082831895, 0.0156921633, 0.00122936512, -0.0104541574, 0.00791164767, -0.0136377579, -0.00193055859, 0.0147159565, -0.00554033881, 0.0114522194, 0.0424577184, -0.0173823126, -0.00735797826, -0.00469162175, 0.00470619183, -0.0128509635, -0.0310055, -0.00545291742, 0.0252648201, 0.00957994163, 0.0124648521, 0.0213308521, 0.00089561526, -0.000147523824, 0.00326373684, -0.00578074809, -0.0101700369, 0.00862559, -0.0103303101, 0.0263284482, 0.00382469152, -0.0313843265, 0.0349977501, -0.00803549495, -0.0191890243, -0.0214619841, -0.0436233394, -0.0268384069, 0.0122098727, -0.00344222249, -0.018300239, 0.00181035406, -0.0256873574, 0.0295921862, -0.0174114536, -0.00645826478, -0.0155318901, -0.0116562033, 0.007583817, -0.00122936512, 0.0497719869, -0.00567147136, 0.0152550554, -0.0180379748, 0.00255525834, 0.0205877684, 0.00609400868, -0.00433465047, -0.0297233183, 0.00718313502, 0.0184750818, -0.00247512176, -0.0320545584, 0.00808649, -0.00768580893, 0.0266198535, 0.0210103057, 0.00303789787, 0.025599936, 0.0183876604, -0.0233706869, 0.0233415458, -0.003575176, 0.0433610752, 0.0117873354, -0.0203837845, -0.00838518143, -0.00743082957, 0.00974021479, -0.0171200484, 0.0137324641, -0.0221613552, 0.00724870106, 0.019669842, 0.00493203104, -0.00104905828, 0.0167412218, -0.00797721371, -0.00300147221, -0.0319379978, 0.00397767918, -0.000397039403, -0.0109131197, 0.00187227759, -0.0235309601, 0.0110223973, -0.0174405929, -0.0290385149, -0.0141185755, -0.0244925972, -0.0411755368, 0.0112773767, 0.0218116697, -0.0116197774, -0.0203400739, -0.017367743, -0.0032437027, -0.00267546275, 0.0298981611, 0.00206715474, -0.00129219936, 0.0217971, -0.00676424, 0.0172657501, 0.0164061058, -0.0214182734, 0.00582445879, -0.00399224972, -0.00960179698, -0.00244962401, -0.0101044709, 0.0170180555, 0.0239243563, 0.0137616051, -0.0217825286, 0.00699736457, -0.00933953281, -0.0208791737, -0.00893885083, -0.0151093528, -0.00493931584, 0.0238369349, -0.00310710655, 0.037328992, 0.00853088405, 0.0141987121, 0.0202526525, -0.000737163762, -0.0110879634, -0.000691631751, 0.0189996101, -0.00405781576, 0.0113210874, -0.0155027499, -0.00737983361, 0.0161147, 0.0176591482, 0.0151239233, -0.0101554673, 0.0147523824, -0.00399224972, -0.0201798, 0.0335115828, 0.0213162806, -0.00622149836, 0.0252648201, -0.0196844134, 0.00112008827, -0.0184605122, -0.00317995786, -0.0102283182, 0.010534293, 0.00890242495, -0.0170180555, -0.00587181235, 0.0117581952, -0.00411609653, -0.00447671069, 0.0246965811, -0.00995148346, -0.00184040517, 0.0128655341, 0.0110733928, -0.010934975, -0.0264595803, 0.0133099267, -0.0283100028, -0.0262410268, 0.0146358199, 0.0153133366, -0.0148033779, 0.0108184135, 0.0348229073, -0.00287398254, 0.00501945242, -0.0217825286, 0.0223653391, -0.0107892733, -0.012734402, 0.01493451, -0.023501819, -0.0300147235, 0.022132216, 0.0323168226, -0.00563504547, 0.0438856035, 0.0240263492, -0.0143954111, 0.00329287746, -0.00532178534, -0.0145483986, -0.0323751047, -0.00675695529, -0.0467705131, -0.00697186636, -0.00325827301, -0.00713578193, 0.0117946202, -0.0140748648, -0.000486737554, -1.68183979e-05, 0.00606851047, 0.00227113836, 0.0156775936, -0.00164643873, 0.0220739339, -0.0150656421, 0.0261244643, -0.0215931162, 0.00130039512, 0.0266635641, 0.00786793698, -0.000565508, -0.00389754283, 0.0188393388, 0.00226931693, -0.00567875663, -0.0160418488, -0.00511051668, -0.00538735138, -0.0124284262, 0.0182419568, -0.00477540074, 0.0137251792, -0.00779508566, -0.0231812745, -0.00712849665, 0.0107747028, 0.0171054788, -0.0175571553, 0.00929582212, 0.0153861884, 0.02186995, -0.00791893248, -0.000269094366, 0.00830504484, -0.019203594, -0.0212434307, 0.0082831895, -0.0207480416, 0.0107819876, 0.00168104307, 0.00753282104, 0.00563868834, -0.0206606202, 0.00847988762, -0.0234872494, -0.00665860577, 0.00509230373, 0.0351434536, 0.0094196694, -0.00812291633, 0.0137324641, 0.00360067398, -0.0219573732, 0.00309435767, 0.00485189445, -0.00390118547, 0.00906269811, 0.00592645071, -0.00131405471, 0.0088878544, 0.0188101977, 0.00759110227, 0.00970378891, 0.00871301163, -0.02813516, -0.0196844134, 0.0128436787, 0.00372634246, 0.00955080148, 0.000409560715, -0.000756287249, -0.010468727, -0.0074199019, -0.0160127096, -0.00268456922, 0.000944334548, -0.000471711974, -0.0244634561, -0.0261390358, 0.024303183, 0.0137688899, -0.0149126546, -0.00925939623, -0.0152404858, -0.0179796927, -0.00786065217, 0.0167995021, 0.0191453137, 0.0223070588, -0.0151384939, 0.00899713207, 0.00212179311, 0.00191416708, -0.0141987121, 0.027770903, -0.00221649976, -0.00126305886, 0.026503291, -0.00790436286, 0.00522343582, 0.00559497764, -0.0184313711, 0.000765393663, -0.00193966506, -0.00891699549, 0.0127052609, 0.00434193574, 0.00258986256, -0.0149636511, 0.00327466452, -0.0030852512, -0.000990777276, -0.0139947291, -0.00548934331, -0.00166100892, -0.011066108, 0.00659668259, -0.0134119187, -0.011532356, 0.0152113447, 0.0125959842, -0.00883685891, -0.00469890703, 0.00861102, -9.93167705e-05, -0.00191963091, -0.00489196274, -0.0135357659, 0.00329287746, -0.0108621242, 0.00285576982, 0.00562776066, 0.00386111718, 0.0226567443, 0.00526714651, -0.0291696489, -0.00346772047, -0.00739440368, 0.0100461897, 0.0106435707, 0.0269549694, 0.0450512245, -0.000829138502, -0.0118529014, -7.68353202e-05, -0.0071467096, 0.0133900633, -0.0152696259, 3.66248387e-05, 0.0129748108, -0.00434922054, -0.0044439272, -0.00015469511, 0.0241429098, -0.010002479, -0.00103357737, -0.000333977543, 0.00972564425, -0.0256582163, -0.0047098347, -0.00385383214, -0.00764938304, -0.0187373459, 0.00240409188, 0.00756924693, -0.00162549398, -0.0127052609, 0.00413795188, -0.000514512067, -0.0221904963, -0.00446578301, -0.00642912462, -0.00472076237, 0.00102993485, -0.0260224734, 0.0097475, -0.0165518075, -0.0234872494, 0.0224090498, 0.033132758, 0.0167703629, -0.0256145056, -0.0118529014, -0.00791893248, -0.015167634, 0.0129966661, 0.0136887534, 0.011699914, 0.000727602048, -0.00326191564, 0.0288345329, 0.0143589852, 0.0056241178, 0.00190506072, -0.027770903, -0.0140530095, 0.00955808628, -0.00270460336, -0.0125377029, -0.0177028589, 0.00576982042, 0.0204420667, -0.00991505757, -0.0179651231, -0.00291587203, -0.00439657411, 0.000951619702, 0.0168869235, -0.0181399658, -0.0062797796, -0.00453499146, 0.00208536768, -0.00842160638, 0.0150802126, 0.00544563215, -0.013266216, -0.00523436349, 0.00826861896, -0.0124575673, 0.00121388421, 0.0232104138, -0.0291259382, 0.017935982, 0.0269549694, -0.0255125146, 0.0149490805, -0.00424358621, 0.00370084448, 0.00217096787, 0.0184896514, -0.00179942639, 0.00343857985, 0.0079626441, 0.0111753847, 0.00584267173, -0.00363709964, 0.0246965811, -0.00393032609, -0.0148179485, 0.00791893248, 0.00305428938, 0.00952894613, 0.0354057178, 0.00550391339, 0.00943423901, 0.0101263262, 0.000152190856, 0.00192145223, -0.0169014949, -0.00207443978, 0.0289802346, -0.0167412218, 0.00116562028, -0.00170927285, -0.0151384939, 0.0105925743, -0.000387022359, 0.00342218834, 0.00270460336, -0.0109422607, 0.0399807766, 0.00957994163, 0.00389754283, 0.029767029, 0.00709571363, 0.00300329365, 0.0200632401, -0.00785336643, -0.0228170175, 0.0177902803, 0.000528627, 0.0105124377, 0.0135139106, 0.00163915358, -0.0259787627, 0.00315445988, -0.0196115617, -0.0170909073, 0.000838700216, 0.0162312631, -0.0149636511, 0.00336937117, 0.0036899168, 0.00770766428, 0.0117071988, 0.0125814145, -0.017469734, -0.00696093868, 0.00053864409, -0.018664496, -0.0200195294, 0.0165080968, -0.0029705104, -0.0456048958, 0.0241137706, -0.0274940692, -0.000463288539, 0.0170909073, -0.00331473281, 0.00816662703, -6.89739318e-06, -0.00013056313, 0.000934317533, 0.00675695529, 0.00964550767, -0.00885871425, 0.00967464875, -0.00460784277, 0.00274649286, 0.0121807326, 0.0110296821, 0.00305064698, 0.0178922713, 0.004666124, -0.00314535364, 0.0157067329, -0.0322585404, -0.0094269542, -0.000151394037, -0.0406801477, -0.00235127471, 0.00909183826, 0.00260989671, 0.0189413298, 0.00235673855, -0.00362617197, 0.0125886993, -0.0156193124, -0.00952166, -0.020966595, 0.00998790935, 0.022132216, -0.00524893403, 0.00765666831, -0.0152550554, 0.0122608682, -0.0137178935, 0.00325827301, 0.0148252333, -0.00613407698, -0.000743993558, 0.0176737178, 0.00118929695, -0.00737254834, 0.0212725699, -0.0062870644, 0.00952894613, -0.000789070327, -0.0051906528, 0.0186062139, 0.000489924802, -0.0140530095, -0.000282298657, 0.0203692149, -0.00190506072, 0.0166100897, -0.0297378879, -0.0222196374, 0.0123555753, 0.00571153965, 0.0042763697, -0.0193930082, 0.00123391836, -0.00786793698, 0.0177028589, 0.00652018841, -0.00848717242, -0.0128946742, -0.00978392549, 0.00128309301, -0.00378098083, 0.015867006, 0.00230392138, 0.000633806048, -0.000206032491, -0.00572246732, 0.00936867297, -0.00589366769, -0.00805735, 0.019334726, 0.00269549689, -0.0117946202, 0.00971107371, -0.0209957361, -0.00707750069, -0.0312677659, 0.0215785466, -0.0190141816, -0.00786065217, 0.01840223, -0.0270715319, 0.00646190764, 0.00837789569, 0.015167634, -0.0135794766, -0.00366077619, 0.000450767227, -0.0210248753, -0.0166829415, 0.00433465047, 0.0163041148, 0.0222196374, 0.00226931693, -0.00509230373, 0.0320836976, -0.0026517862, 0.00877857767, -0.000903355714, 0.0044439272, -0.0104031609, -0.0166975111, -0.00360431662, 0.013368208, -0.040796712, -0.00389025779, -0.00162003015, 0.0161875524, 0.00579896104, -0.0142569933, -0.0108839795, 0.006283422, -0.0119184675, -0.00268456922, 0.00205804827, -0.0126542654, -0.00118019059, -0.0115542114, 0.0242740419, 0.011634348, 0.010832984, 0.0145119727, -0.00646555, -0.0004325544, -0.000936138793, 0.00505587785, -0.0180088338, -0.00341308187, -0.010133611, 0.00362617197, 0.010301169, 0.0267509855, -0.019932108, -0.030801516, -0.000394079834, -0.0061231493, 0.00523436349, 0.00114740746, -0.0130185215, 0.00313806836, 0.00250972621, 0.00226749573, -0.00562776066, -0.00894613564, 0.00423265854, 0.0255562253, 0.0122462986, -0.0126542654, 0.0178922713, -0.010133611, -0.00353328651, 0.0155901713, 0.027333796, 0.0137907453, 0.00345679279, -0.00826133415, 0.0267364159, 0.0100607602, -0.0106945662, -0.0153570473, -0.0105852894, -0.00289037405, 0.00201251637, 0.00436379109, -0.00419987552, 0.00836332608, 0.00784608163, -0.00212179311, 0.0335698649, 0.0224819016, -0.00679338071, -0.015400758, -0.00784608163, 0.0355514176, -0.0216513965, -0.0114157936, 0.003199992, -0.0112919463, 0.00829775911, -0.0336572863, -0.0314134657, -0.00592280831, -0.00157631934, -0.00680430839, 0.0111098187, -0.00397767918, 0.0131132286, 0.0100097647, -0.00102993485, 0.0036352782, -0.0170617681, -0.000272964593, 0.0115542114, -0.00804278, 0.00300875749, 0.0184605122, -0.0108839795, -0.0219136626, 0.0022201424, -0.0178048499, -0.00587545475, 0.0249588452, -0.00176300074, -0.000639725185, 0.00315810251, 0.0037919085, 0.00380283617, 0.0152987661, -0.0158087257, -0.00898256153, 0.00941238366, -0.027333796, -0.0285722669, 0.0199612472, -0.00868387148, -0.00204529939, -0.00316538755, -0.0181108247, 0.0220010839, -0.00862559, 0.0231667031, 0.0152841965, -0.0235309601, -0.00173386023, -0.00347136287, -0.0114376489, 0.0208208933, -0.0247111507, 0.00026158159, -0.0196407028, -0.0221759267, 0.0320545584, -0.00158087257, 0.000394307484, 0.0106435707, 0.000303926383, -0.0315883085, -0.00268821185, 0.00295047648, -0.0027683482, -0.00506680552, 0.0206897613, -0.00722320331, 0.0119986041, -0.0201215204, 0.00877857767, -0.00316720898, 0.00389754283, 0.0085527394, 0.00639998401, 0.00853088405, -0.00110096484, -0.00962365232, 0.0361342281, -0.0248131417, 0.028237151, -0.00208536768, 0.00921568554, 0.0029267997, 0.000169493025, 0.0102938842, 0.00613043411, 0.0195824206, 0.00356424833, -0.0179068428, -0.0149636511, -0.0178194195, 0.00102538161, 0.0236329511, -0.00337483501, -0.00679702358, -0.00399953453, -0.0104760127, 0.0103448806, 0.00100079435, 0.023035571, 0.00142606359, 0.00416345, -0.0144391218, 0.0113065168, 0.0270423908, -0.000377005315, -0.00661489507, 0.013900022, -0.013368208, -0.00825404841, -0.00477904314, 0.00359885278, 0.00574796507, 0.0120714549, 0.019932108, 0.0077368049, -0.0106071448, 0.019101603, -0.00585724181, 0.0101408968, 0.0328122117, -0.00371723599, 0.00346589903, -0.0227733068, 0.0133900633, -0.0016719366, 0.00249879854, -0.00131132279, -0.00295594032, 0.00263903732, 0.00550027099, -0.000638359226, 0.0147888074, 0.00336572854, -0.0136523275, -0.00370812952, 0.00963822287, -0.00226567453, 0.00992234237, 0.0126834055, -0.0300730038, -0.00868387148, -0.019567851, -0.003633457, 0.0147086708, 0.00809377618, -0.00709207123, 0.0238223653, -0.0170034859, -0.0192764457, -0.00336208614, 0.00057097181, 0.0125377029, -0.0215639751, 0.0011392117, -0.019669842, -0.000361979735, 0.0171637591, -0.00103630929, 0.0129748108, 0.0105852894, 0.00172202184, 0.00106180727, 0.0111462446, -0.000271143304, 0.0228607282, -0.00896799099, -0.00390118547, 0.0124794226, 0.0219136626, 0.00688444497, -0.00627613673, 0.0143954111, -0.00813020207, -0.00590823777, -0.0126396948, 0.00128673553, 0.00223107, 0.0249005631, 0.0182856694, -0.0114813596, 0.00820305292, 0.010468727, 0.00481911143, 0.00535092549, -0.0108766947, -0.00401410507, -0.00704107527, -0.0150073618, 0.00842160638, 0.00153442984, -0.0177902803, 0.0094706649, -0.0122244433, 0.0211560093, 0.00318542169, 0.0167995021, -0.00493567344, -0.0130622322, -0.0187082067, 0.0180671141, 0.0267072748, -0.0238369349, -0.0201943722, -0.010366736, 0.0243177544, -0.00388661516, 0.0062870644, -0.00313442573, 0.00875672232, 0.0060248, 0.00397403678, -0.00488832034, -0.00760567235, 0.00618871534, 0.00464791106, -0.000577801606, 0.00691722799, -0.0124357119, 0.0199758187, -0.0225547533, 0.01263241, -0.00783879682, 0.00545291742, -0.017367743, 0.0130185215, 0.00441478705, -0.000626976253, -0.000198633541, 0.0049866694, -0.0264013, 0.0048701074, -0.00302332756, 0.0214911252, -0.0369210243, -0.00299782981, -0.0141477166, -0.00704836, 0.00390847074, 0.00260625407, -0.00448035309, -0.0166975111, -0.00142242108, -0.00677516824, 0.00134592724, -0.00590095297, 0.0281934403, 0.00391211314, -0.0082904743, -0.00588274, -2.55264022e-05, -0.0290385149, -0.012734402, 0.0224090498, 0.0427491255, -0.0190724619, 0.0062797796, -0.0152987661, 0.0163186844, 0.00922297, 0.00277927588, 0.00821762346, 0.0297815986, 0.0195095707, 0.0174405929, 0.00780237094, 0.0242594723, 0.00423265854, -0.00647283532, 0.0158815775, -0.00146886369, 0.0133463526, 0.00983492099, 0.00435650581, -0.00147523824, 0.00188502658, 0.0129311, -0.0296650361, -0.0175134446, 0.00740168896, -0.0314426087, 0.004983027, 0.00957265683, 0.00229845755, -0.0082904743, 0.00858188, 0.0213891324, -0.019669842, -0.0124065708, 0.00693908334, 0.0258330591, 0.0022766022, 0.00458234502, 0.0315008871, 0.0131642241, -0.000710755179, -0.0218990911, 0.01263241, -0.0197426938, -0.015167634, 0.00313442573, -0.0117727648, -0.00589002529, 0.000820487388, 0.000479907729, -0.0193055868, 0.0118820416, 0.0045532044, -0.001671026, 0.0281497296, 0.00651654601, -0.0111826696, -0.0151967751, -0.0136086168, 0.00636355812, 0.00377369579, 0.00772951962, -0.00638905633, 0.0104760127, 0.00409788406, -0.0245217364, -0.00159635348, 0.00157996186, -0.0118529014, 0.0361342281, 0.0116270622, -0.00504130777, -0.0130840875, -0.014300704, 0.00585724181, -0.00239862804, -0.0022183212, -0.0125886993, 0.00217825291, 0.0210394468, 0.00599201676, 0.0110078268, -0.00713578193, -0.0014542935, -0.0115833515, 0.00361524429, 0.00361342286, 0.0012676121, 0.00890242495, -0.00472804718, 0.0147232413, -0.0137324641, -0.00256072218, -0.00250426237, 0.00535821076, 0.00338576268, -0.000691631751, -0.00649833307, -0.01089855, 0.000209105914, 0.0300147235, 0.00334023079, -0.00506316312, -0.00358063984, -0.00417802, 0.000966189953, 0.0124648521, -0.00688444497, 0.0127198314, -0.0306266733, 0.0196261313, -0.0273192264, -0.010534293, 0.00928853638, 0.017134618, -0.00165190257, -0.0152550554, 0.0012111523, 0.0105707189, -0.0143517, 0.0306266733, -0.00444757, 0.0182419568, -0.00224564038, 0.00128036109, 0.00170289841, -0.00685530435, -0.0211705789, 0.0230647121, -0.013033092, -0.00368263153, -0.00756196165, -0.00266089267, 0.00619964302, -0.00402503274, 0.00869844109, 0.0162749738, 0.00414887955, -0.0292862095, 0.00270096073, -0.00759110227, 0.00899713207, -0.00374819781, -0.00419623312, 0.0136377579, -0.0252648201, 0.00175116234, 0.016202122, -0.0039048281, 0.0154590392, 0.0193055868, -0.000698006246, 0.00104450504, 0.0104614422, -0.0141768567, 8.28114062e-05, 0.00339304795, -0.0074235443, 0.018664496, 0.00194695021, -0.0252793897, -0.00203619292, 0.017134618, -0.00697186636, -0.00883685891, 0.00586816948, -0.00912826415, -0.0217825286, 0.0115614962, -0.00890242495, 0.00470254943, -0.00266817771, -0.00397767918, -0.00453863386, 0.0107164215, 0.0158232953, -0.0303061288, 0.00837061089, 0.0167849325, 0.0126469806, -0.013666898, -0.00770766428, 0.0142934192, -0.0129602412, 0.0104832975, 0.00227113836, 0.00605394039, -0.00206533354, -0.0295484755, -0.00399589213, 0.00741261663, -0.00068207, 0.0250025559, 0.0165809486, 0.00190870324, 0.0366879, 0.000580078224, -0.00922297, -0.0060575828, -0.0157213043, -0.0138198854, 0.0172220394, 0.00689173024, -0.00207990361, 0.000357198878, 0.00613771938, 0.0138198854, -0.0108548393, 0.0341526754, 0.00826133415, -0.00532178534, 0.00538735138, 0.00611222163, 0.0126396948, -0.000496299297, -0.0234289672, 0.0112773767, -0.0758236, -0.0133317821, 0.00501945242, -0.00257529225, -0.00214729109, 0.0085600242, 0.0255707949, -0.01436627, 0.0482275411, 0.000580078224, 0.00181854982, 0.0103885913, -0.00139783369, -0.00133864209, -0.022700455, 0.0135576213, 0.00384290447, 0.0206897613, -0.00395582383, 0.000804551179, 0.020398356, 0.00882228836, -0.00359338894, 0.00179578376, 0.0197864044, -0.00203619292, 0.00566782849, -0.011699914, -0.0104177315, -0.0118091907, -0.00231302786, -0.00810834579, -0.0281643011, -0.00171291549, -0.00754010631, -0.0230501406, 0.0143881254, 0.00279748882, -0.00394489616, -0.010199178, -0.0101846075, -0.00102720293, 0.0091501195, -0.0136304721, -0.0115906373, 0.00483368151, -0.00496117119, -0.00312167685, -0.0217533894, 0.020733472, -0.0219573732, 0.000775866036, -0.00258986256, 0.00959451217, 0.0002397262, 0.0219282322, -0.00793350302, 0.0054674875, 0.00403596042, 0.00572246732, -0.00506680552, -0.0257747788, -0.0129893813, 0.0166829415, 0.0217533894, 0.0137834605, -0.00595923373, -0.00398860686, -0.0205440577, -0.0126761207, -0.0210977271, -0.0353474356, 0.0012384716, -0.0133244973, 0.0143371299, 0.0154298991, -0.0202235114, 0.00853816886, 0.011532356, 0.00199430343, 0.000920657883, 0.0220593642, 0.0218990911, -0.002708246, 0.0211560093, -0.000321911532, 0.0159252882, -0.00734705059, 0.00834875554, 0.00212543574, 0.0135794766, 0.0103958761, -0.0238952171, -0.0109859714, -0.000684801955, -0.0260224734, -0.00208718888, 0.0044402848, 0.00296322536, 0.0122608682, 0.00309800031, -0.0221613552, -0.00696093868, -0.000359475467, 0.0224527605, -0.00334387319, 0.0148398038, -0.0199175365, 0.00982035138, -0.00141513592, 0.00731426757, 0.0169014949, 0.0240846295, -0.00355514186, 0.0222196374, 0.0141112907, -0.00590095297, -0.0179068428, -0.0127489725, -0.000162663229, 0.00283937831, -0.00722684572, -0.0100243343, -0.0220156536, 0.00819576811, 0.012566844, -0.00624335371, 0.000102617843, -0.0053145, -0.01233372, -0.0138927372, 0.00247876439, 0.00337119238, 0.0185042229, -0.00706657302, -0.0183730908, 0.00174660922, 0.0270861015, -0.00185861799, 0.00797721371, -0.00177757093, 0.0132516455, 0.0296067558, 0.0130840875, -0.0279311761, -0.0183439497, -0.00632713269, -0.00801364, 0.0104177315, -0.0145046879, -0.00943423901, -0.00296504656, 0.0264887214, 0.00095617288, 0.0015990854, -0.0163623951, -0.00414887955, -0.00510323141, -0.01146679, -0.0162312631, -0.00356242713, 0.00850902777, 0.00315445988, 0.0124502815, 0.009201115, -0.00998062361, 0.0202526525, 0.000355149939, 0.00975478534, -0.00330744754, -0.00283937831, 0.00976207, 0.0235601012, -0.0159689989, -0.00171837932, -0.0148907993, -0.00590459537, -0.0355514176, 0.00416345, 0.00153078733, 0.00114285434, -0.00975478534, 0.00685166195, 0.0119694639, 0.0109641161, -0.00629434967, 0.000714853057, 0.00780965621, 0.00328012835, 0.00618507294, -0.0123410048, 0.0234289672, -0.0171783287, -0.0128072528, -0.00294683385, -0.00192327355, -0.0105780046, 0.00648740539, 0.0100971861, 0.000264541159, 0.00500488235, -0.0177757088, 0.00677152537, 0.00295229768, -0.0088295741, -0.0142861335, -0.000764938304, 0.0171054788, -0.0346772037, 0.0132735008, -0.00781694148, -0.003199992, -0.0169014949, 0.00971107371, 0.00393396849, -0.0101263262, -0.00648376299, -0.0242303312, -0.0164352469, 0.0130768027, 0.0218408108, 0.0185333621, 0.0325790867, 0.00314899604, 0.0215931162, 0.00482275384, 0.00826861896, 0.021767959, -0.00991505757, 0.0199175365, 0.000733521185, 0.00376641052, 0.0126032699, 0.00054092065, -0.00831233, -0.0083269, 0.00474626, 0.00292315707, -0.0146795306, 0.0198446847, 0.0361633711, 0.0169160645, 0.0118383309, -0.0146503905, -0.0178922713, 0.0155027499, -0.0246965811, 0.0134629142, 0.0041197394, 0.00484096678, -0.0024332325, -0.0109786866, -0.00415616482, 0.0175425857, 0.00081547891, 0.006716887, -0.0111462446, 0.0287471116, -0.009966054, -0.01666837, -0.00602115737, -0.00196516304, 0.0154298991, -0.0236475226, 0.00422901614, -0.0109786866, -0.0156921633, 0.00513237203, -0.00156265975, 0.00480089849, 0.00550755579, -0.00700829225, -0.0126251252, -0.000727602048, -0.000778597954, 0.0215202644, -0.0151384939, 0.0162166916, -0.0231521334, -0.0080209244, -0.0129383849, -0.0104832975, -0.00885142945, 0.00986406207, 0.00236402359, -0.00466976641, -0.0235746708, -0.00729605462, 1.19379329e-05, -0.0236183815, 0.00311621302, -0.0322585404, 0.00759110227, 0.0185770728, -0.0318797156, -0.0220156536, 0.00218189554, 0.0189267602, 0.0155610312, -0.00340215419, 0.0273775067, -0.0287762508, -0.0154298991, -0.00493931584, 0.0115833515, -0.00449856604, -0.0256145056, -0.00677152537, 0.00109094777, -0.0168869235, -0.0166538, -0.0080209244, -0.0108184135, -0.0128436787, -0.00995148346, -0.00220921473, -0.00831961446, -0.00678609591, 0.00410516886, -0.00979849603, -0.00973293, 0.0192181654, 0.0108548393, 0.00547477277, 0.0264741518, 0.0276252013, 0.0260516144, 0.00605394039, 0.000609674084, -0.022132216, 0.00807920564, -0.0148762288, 0.00167375791, -0.00275559933, -0.0282225814, -0.00288673164, -0.017935982, -0.0128655341, -0.0167557914, -0.0302769877, -0.0170909073, -0.00805006549, -0.00707750069, -0.0207771827, -0.00211086543, -0.00839975104, 0.00739440368, -0.0131277982, 0.0471784808, 0.00971835945, -0.0181836765, -0.00577710569, -0.000966189953, 0.0211268682, -0.0113720829, -0.0014852552, -0.00847260281, -0.0274940692, 0.00815205742, 0.00154444692, 0.00626885146, 0.00307250232, -0.00483732438, -0.0221759267, 0.00358428247, 0.00303243403, 0.00877129287, 0.00251336885, -0.0194367189, -0.017498875, 0.00426544202, -0.00495752878, 0.00569696911, 0.0657409877, 0.02466744, 0.00145793601, -0.0172511805, 0.00382469152, -0.0179796927, -0.000804551179, 0.0330744758, -0.0193201564, 0.00706293061, 0.000320545572, 0.0170180555, -0.0103084547, 0.01666837, -0.013834456, 0.00469162175, 0.0136814686, -0.0124429967, -0.0144755468, -0.0110223973, -0.00328923482, -0.0272755157, 0.00920840073, -0.0218262393, 0.00438928884, -0.0133827785, -0.00961636752, -0.0144901173, -0.0181545354, 0.0192618761, 0.00998790935, 0.0208208933, 0.0121078808, 0.0211414378, -0.0217096787, -0.000270005025, -0.014868944, -0.0141112907, 0.0161438417, -0.0130695179, 0.0274649281, 0.0179068428, -0.002708246, -0.00979121, 0.00414159475, -0.00532907, 0.0126834055, -0.0296067558, -0.0149053698, -0.0485189445, 0.0134847695, -0.0197135527, -0.00783151109, -0.0232395548, 0.0270569604, -0.0154736098, 0.0193930082, 0.00284119952, -0.00340943947, 0.00418530544, 0.0237203725, 0.0167557914, -0.00692451326, 0.0151384939, 0.0063963416, -0.0375912562, 0.00491381809, 0.0100607602, -0.0110952482, 0.00497938413, -0.00131041219, -0.00174205599, 0.00939052831, 0.00763481297, -0.00918654539, 0.0378535204, -0.00180306891, -0.000312122167, -0.00565325841, -0.0137178935, -0.0443518534, 0.00332930288, -0.00810834579, -0.00944881, -0.00328012835, -0.00485917972, -0.0216513965, -0.0223507695, -0.00957994163, -0.00189595425, 0.0021600402, 0.0111389589, 0.00305975322, 0.000701648765, 0.00223653391, 0.00954351667, -0.0145483986, 0.00106818171, 0.00446578301, 0.00104814768, 0.0203400739, -0.00992962811, 0.0126396948, -0.0172803216, -0.0129165296, 0.0256582163, -0.0124794226, 0.0238952171, -0.00618871534, 0.000127148232, 0.00688444497, 0.0023804151, 0.00935410336, 0.0218990911, 0.00363892084, 0.003025149, 0.0221759267, 0.00661489507, 0.00913554896, -0.00589366769, -0.00638541393, -0.0187373459, -0.00276470557, 0.00964550767, -0.00520886574, 0.0123264343, 0.0115032149, -0.00939781405, 0.0217096787, -0.00169652398, -0.00641091168, -0.0021181507, 0.00469162175, -0.000534090854, 0.0213891324, 0.029402772, -0.01349934, 0.00938324351, -0.00179669447, 0.0132880714, 0.0115032149, 0.00647647772, -0.0023804151, -0.00176391134, 0.01003162, 0.0124284262, -0.0132880714, -6.86964704e-05, 0.0374746919, -0.00594102079, -0.0113866534, -0.00108275202, -0.000202959083, 0.000839610875, 0.00271735224, 0.0088878544, 0.0127271162, -0.026503291, -0.0131277982, -0.0131787946, 0.00332201784, -0.0047171195, 0.021767959, -0.00629799208, 0.0071467096, 0.00389754283, 0.00648740539, -0.00839975104, 0.0131860794, -0.0162895434, 0.00157996186, 0.0214474127, 0.00175480498, 0.0044439272, -0.0352017321, -0.0122535834, -0.00588274, -0.0150802126, 0.00566054368, -0.0295193344, -0.015837865, 0.014002014, -0.00270278216, 0.0519283861, 0.0147888074, 0.00288673164, 0.000328969, -0.00361524429, 0.0112118106, -0.00751825096, -0.0178777017, -0.0091574043, -0.00702650473, -0.00216732523, -0.00202344405, -0.0128509635, 0.0386694521, -0.00501945242, -0.0127416868, 0.00467705168, 0.0509084649, -0.0144245513, 0.00874215271, -0.000496754597, 0.00963093806, -0.011867472, -0.000563231355, 0.0053035724, -0.0106945662, 0.00333294552, 0.00131496543]
11 Nov, 2021
jQWidgets jqxTreeMap showLegend Property 11 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTreeMap is used for showing the hierarchical data set of nested rectangles. Here each and every branch of the tree is represented as a rectangle, which is then tiled with smaller rectangles that represent sub-branches. Here the rectangle of the leaf node has an area proportional to a specified dimension on the data. The showLegend property is used for checking whether the legend of the specified jqxTreeMap is visible or not. This property will be effective when the value for the colorMode property is set to “autoColors” or “rangeColors”. Syntax: For setting the showLegend property: $('#jqxTreeMap').jqxTreeMap({ showLegend: true }); For getting the showLegend property: var showLegend = $('#jqxTreeMap').jqxTreeMap('showLegend'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtreemap.js”></script><script type=”text/javascript” src=”scripts/gettheme.js”></script><script type=”text/javascript” src=”scripts/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxTreeMap showLegend property. In the below example, the value for the showLegend property has been set to true. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtooltip.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtreemap.js"> </script> <script type="text/javascript" src="scripts/gettheme.js"> </script> <script type="text/javascript" src="scripts/jqx-all.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTreeMap showLegend Property </h3> <div id="Tree_Map"></div> <input type="button" style="margin: 28px;" id="button_for_showLegend" value="Value of the showLegend property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { var Data_of_TreeMap = [{ label: 'GeeksforGeeks', value: 70, color: '#ff0300' }, { label: 'is a', value: 10, parent: 'GeeksforGeeks', color: '#ff5400' }, { label: 'Computer Science', value: 30, parent: 'GeeksforGeeks', color: '#008000' }, { label: 'Portal.', value: 15, parent: 'GeeksforGeeks', color: '#7fbf00' } ]; $('#Tree_Map').jqxTreeMap({ width: 390, height: 200, source: Data_of_TreeMap, showLegend: true, colorMode: "autoColors" }); $("#button_for_showLegend"). jqxButton({ width: 300 }); $("#button_for_showLegend").click( function () { var showLegend_Value = $('#Tree_Map'). jqxTreeMap('showLegend'); $("#log").html(( showLegend_Value)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtreemap/jquery-treemap-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtreemap-showlegend-property?ref=asr10
PHP
jQWidgets jqxTreeMap showLegend Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, Node.js date-and-time Date.transform() Method, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.00905219652, -0.00210365327, -0.0107647739, 0.0536459424, 0.0768658221, 0.000264810107, 0.0300850235, 0.0274457261, 0.00547505915, -0.00472997641, -0.0155540612, 0.0092597818, 0.018030256, -0.0329170786, 0.00394411851, 0.0131742451, -0.0239760876, -0.00557885179, -0.0494349264, 0.0139156207, -0.0303964, -0.00488566561, -0.0292398557, 0.00782892667, -0.0182230137, 0.00658341544, -0.00593841868, 0.0162954368, -0.0217964444, 0.0411315188, -0.035852924, 0.0114245983, 0.0248509105, -0.0389667042, -0.0586576387, -0.0293288194, -0.00498575112, 0.0206695534, -0.00822185539, 0.0186974928, -0.00272826222, 0.028142618, -0.00882978365, -0.00716910232, -0.00385144632, 0.0174371544, -0.0106906369, -0.0327094942, -0.0199726596, -0.00258925441, -0.00331950933, 0.00475221779, 0.00514144, 0.0217074789, 0.014012, -0.0149313053, -0.00908185169, 0.0311081223, -0.0216778237, 0.0416949652, 0.00738410139, -0.0320274271, -0.0342515558, -0.00163566, -0.000591247051, -0.0106016714, 0.0251178071, 0.0152723379, -0.0506804362, 0.00175706029, 0.0126997642, 0.0700451732, 0.0252809096, 0.0104756374, 0.00995667465, -0.0172147416, 0.000461274642, -0.0137525182, -0.0107944291, 0.0135301054, 0.0136190699, -0.0127220061, -0.0236054, 0.0177930146, 9.33669944e-05, 0.0176002569, 0.0151833734, -0.0555735156, 0.0542983525, 0.0294622667, -0.0143826874, -0.0297291633, -0.0206992067, -0.0185492188, -0.00478187297, -0.00246507395, -0.0196168, 0.00785858184, -0.0589541905, 0.0174964648, 0.0329763889, 0.00936357398, -0.00920788571, -0.028068481, 0.0257257335, -0.0111280484, 0.0310784671, 0.015850611, 0.0186974928, -0.0085035786, 0.0363867171, -0.0175409466, -0.00743229082, -0.013722863, -0.0378694683, 0.0522521548, 0.0120770093, -0.00848875102, 0.0325612165, 0.0095934011, -0.044897709, 0.00166902191, 0.00164214696, 0.0228936803, -0.0213516187, 0.0176595673, -0.0150795802, 0.00627574464, 0.0604072846, -0.0187123213, -0.00284317555, 0.0327094942, 0.0234571248, -0.00638324395, 0.0176595673, 0.0169181917, 0.0320570804, 0.0266450401, -0.0435632318, -0.00868150871, -0.0421991, -0.0479818322, 0.0227157492, 0.0203136913, -0.0142418258, 0.0280536544, 0.00661307061, 0.0270009, -0.049375616, 0.0300850235, -0.0115654599, -0.00160785834, 0.0120325265, 0.0102013284, 0.0256219413, 0.0135375187, -0.0284688249, 0.0168885365, 0.0206547249, -0.0118175279, 0.00324166496, -0.0206843801, 0.0291064065, 0.0196464546, -0.0205657594, 0.00212218775, 0.00225934223, 0.00194611098, -0.048901137, 0.0297291633, -0.00966012478, -0.00874823239, -0.00941547, -0.0151982, -0.0460839085, -0.00545652444, 0.00851099193, -0.0145013072, -0.0371280909, -0.0547431782, -0.0265560746, -0.0105423611, 0.00642772671, 0.0117137348, -0.00916340295, 0.0128480401, 0.0217074789, -0.00930426456, -0.0338067301, 0.00282649463, -0.0305743311, 0.0198095571, 0.0610893518, 0.0132557964, -0.000303964, -0.028024, 0.0207733456, 0.0487825163, -0.0286022723, -0.0145754451, 0.0183119774, -0.0128628667, 0.0119213201, -0.00132150203, 0.0310784671, 0.0302332975, 0.00371058495, -0.033777073, 0.0435928889, -0.00104255951, -0.013196486, 0.00313045853, 0.00138173881, 0.0301443338, 0.00548617961, 0.0340439677, -0.00475963159, -0.0149461329, -0.0138488971, -0.0108537395, 0.0195574891, 0.00646850234, -0.00554548949, 0.0370094702, -0.0867706, 0.0174816381, 0.0153761301, -0.0283650309, -0.0128332125, 0.000752496242, -0.0250140131, -0.0336288, -0.0171257779, -0.0152871655, 0.0417839289, 0.0356453396, -0.0257553887, 0.0218557529, 0.0103273625, 0.0132632097, 0.0293881297, -0.0272974502, -0.0151833734, 0.00691332761, 0.0388480835, -0.0212181713, -0.0241540186, -0.0208919644, 0.0296550244, 0.00675022509, 0.00909667928, -0.00970460661, -0.00249287556, -0.008963231, -0.00489307893, 0.0190978367, 0.00412946241, -0.00732479105, -0.00240020361, 0.015776474, 0.0147163067, 0.03315432, -0.00810323562, 0.0122771803, 0.0179561172, 0.0083997855, 0.0509473346, -0.0302926078, -0.0225674734, -0.0156875085, 0.026541248, -0.0327688046, 0.00199986086, 0.05388318, 0.00612746971, 0.000732108427, -0.0224933363, 0.0118397688, 0.031523291, -0.0187419765, 0.0197057649, -0.00419618608, 0.0256367698, 0.0428218581, 0.0190385263, -0.00700970646, 0.0513625033, -0.0203136913, -0.0383439474, 0.0155837154, -0.0350522399, -0.0227009226, 0.00841461308, 0.0199133493, 0.0314343274, 0.00068345567, -0.00960081443, -0.0410722084, -0.00799944345, 0.00954891834, -0.033777073, -0.0062497966, -0.0268971082, 0.0180006, -0.00492273411, 0.0327094942, 0.031523291, 0.0150944078, -0.00458170148, -0.0249102209, -0.0162509531, 0.000964715029, -0.0357639603, -0.0270305555, -0.0228788517, 0.000724694692, -0.00192201626, 0.0270602107, -0.0101346048, 0.00881495606, 0.00306929508, -0.0171999149, -0.0240057427, 0.0398563556, 0.0272233132, -0.0100530535, -0.0575900599, -0.0169181917, 0.00958598685, -0.0220040288, -0.0569079928, 0.0125292484, 0.00931167789, 0.0268081427, 0.00997150224, -0.038284637, 0.00629798602, -0.0469142497, -0.0279795155, 0.00725806737, -0.000302110566, -0.0283798594, 0.0145828584, -0.0307226069, 0.0233533327, -0.0527266338, -0.00826633815, 0.0104459822, 0.0488418266, 0.0260815956, 0.00137339835, 0.021158861, 0.0563742034, -0.0102680521, 0.0170368124, 0.00157913007, -0.0207733456, -0.0244653951, -0.0224043708, 0.000111959307, -0.00376062794, 0.0247619469, 0.0158061292, 0.0136190699, 0.0156578533, -0.0272826236, -0.0240502246, -0.0139304483, -0.0226712674, 0.00183861156, 0.013871138, -0.0277126208, -0.0268229712, 0.044719778, -0.0121882157, 0.00599031523, -0.0185788739, 0.000668628141, 0.00636841683, 0.00187846052, -0.0621569343, 0.0170219839, -0.0124402829, 0.0409239344, 5.56900522e-05, 0.0362977497, 0.0245247055, -0.0591914319, 0.0158357844, 0.000990663189, -0.0563148931, 0.0431777164, 0.0124773523, -0.0157171637, 0.0248953942, 0.000860459113, -0.000909575203, 0.00934874639, 0.0620976239, -0.033302594, 0.0335694887, -0.00916340295, 0.000206426776, -0.0184899084, -0.0380177423, 0.0179709457, -0.0133744162, 0.013344761, 0.000303268956, 0.0094525395, 0.0102828797, -0.0228343699, -0.0127664879, 0.0374542959, 0.000237703556, 0.034815, 0.00654264, 0.0525783598, -0.00470773503, -0.0059495396, 0.0317012221, -0.0389073938, -0.0240650531, 0.0166661236, -0.0387591161, -0.0135152778, -0.0369798169, -0.00822185539, 0.0338067301, 0.0075991, 0.00352709461, -0.00855547469, 0.00727289496, 0.000687625899, -0.00487825181, 0.0230419543, 0.0309895016, -0.00655376073, -0.00485601043, -0.0294029582, -0.0191126633, -0.000138428732, 0.0353487916, -0.0140638957, -0.077281, 0.0289729591, -0.0171702597, 0.0117878728, 0.0150425117, 0.0309301913, -0.0293139927, -0.0135820014, -0.0338363834, 6.00630083e-05, 0.0122104567, -0.0166957788, -0.00951184891, 0.00977874454, 0.0132483821, 0.0153909577, 0.00414429, 0.0178374983, -0.0302926078, -0.000336167519, -0.0245840158, -0.0041739447, -0.0274457261, 0.0228936803, -0.00779927149, -0.00411092769, -0.0338363834, 0.0158950929, 0.041606, 0.0317012221, 0.00568264397, 0.00882978365, 0.0216185134, -0.000761763484, 0.00885202456, 0.00191089569, 0.0557514466, 0.024361603, 0.029921921, 0.0239760876, 0.0300108846, -0.0223895442, 0.0534383543, 0.00788823701, -0.0304260552, 0.01081667, 0.0128332125, -0.0124106277, -0.0461432189, -0.000347056455, 0.00429256493, 0.019854039, -0.0296995081, -0.0083997855, 0.0345481038, 0.0241540186, 0.0200764518, 0.0209957585, -0.0540018, 0.0278608967, 0.0215147212, -0.00965271052, -0.00566781685, 0.0324129425, -0.00848875102, -0.0622162446, -0.000493014813, -0.00370502472, 0.002372402, 0.00771772023, 0.018030256, -0.0331839733, -0.0360012, -0.00551583478, -0.000131825858, -0.0210698955, -0.000177698472, 0.00895581767, 0.00521557778, 0.0319681168, 0.0182674956, 0.0373949856, -0.0154502681, -0.0231160913, 0.00202580891, -0.00525635341, -0.00521557778, 0.0130926939, 0.0340736248, 0.0197947286, -0.00453721872, 0.0268229712, -0.00891133491, -0.021559203, -0.02003197, 0.00379213644, 0.00347149139, -0.00164307375, -0.0320274271, -0.0239760876, -0.0174964648, 0.00866668113, 0.00226675603, -0.010942704, 0.0352598242, 0.037810158, 0.0317012221, -0.00461506331, 0.0462914929, -0.00546393823, 0.0233829878, 0.01472372, -0.0223302338, -0.00961564202, -0.0244505685, -0.00693186233, 0.0248360839, 0.00487825181, 0.0240353979, 0.0202692095, -0.00539721455, -0.014871995, -0.0121956291, 0.0392039418, -0.00480040722, 0.0020647312, -0.00950443558, -0.0344591402, -0.0111502893, 0.00480782101, 0.00770289265, 0.00458911527, 0.0660120845, 0.0174223278, 0.0105127068, 0.00504876813, -0.0151018212, -0.00986771, 0.040212214, 0.00791047793, -0.0267191771, -0.0218705814, -0.00422954792, 0.000859995722, -0.0192461107, -0.0033454576, 0.00900771376, 0.0343405195, 0.00100178376, 0.000513402629, 0.0247174632, -0.0272233132, -0.0283650309, 0.00431109918, 0.0267340057, -0.00717651611, 0.0102828797, 0.0465880446, 0.0380473956, 0.0126033854, 0.0150721669, -0.0231309198, -0.0120028714, -0.013344761, 0.0300257131, -0.0106832227, -0.0503245778, -0.0241985, 0.0111058066, -0.0169626735, -0.0154799232, -0.0220929943, 0.000910038594, 0.012744247, -0.0132113136, -0.0442156419, 0.0125070065, -0.0129444189, 0.0134930369, -0.00445566745, 0.023560917, 0.0137006212, -0.0603776313, -0.021410929, -0.00339364703, -0.0415170342, 0.00110186951, -0.00991960615, 0.00501169916, -0.00732108438, 0.0233236775, 0.0386701524, -0.0128554534, 0.0159692317, -0.0111280484, 0.0173333623, 0.0242429823, -0.00442601228, -0.0285133068, 0.0585983284, 0.000272223871, -0.00930426456, 0.0180895645, 0.00620160718, -0.00250028935, -0.0165178496, -0.0262595247, 0.00726548117, 0.015776474, 0.00979357213, 0.023234712, 0.0161175057, 0.0282612387, -0.00735444622, -0.00066631136, 0.0203285199, -0.00766582415, -0.016903365, 0.0258591827, 0.0151092354, 0.0133225201, 0.00309709669, 0.0248360839, 0.0420211703, -0.00124551111, 0.00872599147, 0.0345777608, -0.00859254319, -0.000896601123, 0.00519704306, 0.0258443542, -0.0150276842, -0.0211143773, 0.00569376489, -0.0201357622, 0.024939876, -0.0137154488, 0.0280091707, 0.0513625033, 0.0227750596, 0.00401454885, -0.0145828584, -0.0209661033, -0.00410722103, 0.00603850465, 0.00715427473, -0.00660565682, 0.00111762376, 0.0463804603, 0.00340476749, -0.0140490681, -0.0131594175, -0.0162657816, -0.0118990792, -0.033777073, -0.0100308126, -0.0189199056, 0.0052304049, -0.0154354405, 0.0146940649, -0.00733591197, 0.0056048, 0.00528230146, 0.0164881945, -0.0236498825, -0.00654634694, 0.0247767735, 0.00623496901, -0.0217519607, 0.0459059775, -0.00798461586, -0.00329170772, -0.0137895867, -0.0239464324, -0.0225971285, -0.00941547, 0.0163102634, 0.0336881094, 0.0161619894, -0.0151018212, -0.00686513819, -0.0120399399, -0.00990477856, -0.00994926132, -0.0135597605, 0.0053786803, 0.00245395326, 0.0255774595, 0.000899381295, -0.0134559674, -0.00455575343, 0.0239612609, 0.0207436904, -0.00603479752, 0.0019034819, -0.0137525182, -0.000278710912, 0.00464471849, -0.0100604668, 0.0196019709, 0.0191868022, 0.00576048857, -0.00140768697, -0.002253782, 0.00414058287, -0.014597686, -0.0162509531, -0.00879271515, 0.00997891556, -0.046499081, 0.0175854303, 0.0263040066, 0.00375692104, -0.0014012, 0.0319384634, -0.00175613351, -0.00752866967, 0.028142618, -0.0271491762, 0.0126404548, -0.0137525182, 0.0245247055, -0.0246729814, -0.0141083784, 0.0207436904, -0.000664457912, 0.0126033854, 0.0329467319, 0.031048812, 0.000258554763, -0.0228640251, -0.00378286908, -0.0161323342, -0.00703936163, -0.0157023352, 0.00140398007, -0.0155095784, -0.000305585767, -0.00152167352, -0.0112244273, 0.00932650547, -0.0122771803, 0.00210736017, 0.0304557104, -0.0129814874, 0.0153761301, 0.00882978365, -0.0276533104, 0.00859995745, -0.00454833964, 0.0167699158, -0.0248953942, -0.0119213201, 0.0295067504, 0.00940805674, -0.0258740094, -0.00105831376, -0.0119806305, 0.0294919219, 0.0149016501, 0.0241540186, -0.0427328907, -0.0123587316, 0.00481152767, 0.00758056575, 0.00929685, 0.00825151056, 0.00920047145, -0.0485452749, 0.00310821738, -0.000426986022, -0.0117656309, 0.00557514466, -0.0229529887, 0.0189199056, 0.00748418691, -0.00292102, 0.0101642599, 0.000766860438, -0.0243171211, -0.0444825366, 0.0451942571, 0.00111669709, 0.0116766663, 0.014197343, -0.0421694443, -0.00125107134, 0.0340143144, -0.0318198428, 0.0151314763, -0.0143604456, 0.0255478043, 0.00911892, 0.00569747156, -0.0036920507, -0.012143733, 0.00802909769, 0.00706530968, -0.0133595886, 0.0103125349, 0.0120028714, 0.0344887935, -0.0266746953, 0.0250881519, 0.0344887935, 0.024213329, 0.0386108421, 0.00980098546, 0.00922271237, 0.0535273217, -0.000937840145, 0.001302041, -0.0191126633, 0.00224636821, 0.0364163704, 0.0192609392, -0.0116470112, -0.00751013495, 0.0212774798, 0.0121808015, 0.0163102634, -0.000703380152, -0.0101865008, -0.0540018, -0.0387294628, 0.00834047608, -0.0181637034, -0.00625350326, 0.0162509531, 0.0247026365, -0.0129592456, 0.0125070065, -0.0405977294, -0.00506730238, 0.0229233336, -0.0214554109, 0.0359715447, -0.019157147, -0.0167847443, 0.00507100951, -0.0309895016, 0.0504728518, -0.0258443542, -0.0188605953, 0.0308115706, -0.00329726818, -0.0153019931, -0.00963047, -0.00866668113, -0.0440673679, 0.0136561394, 0.0458763242, -0.00399230793, -0.0370391272, 0.0194833521, 0.0285281334, 0.00885943882, 0.00351226702, 0.0320867375, 0.0105497753, 0.0151685458, 0.0101049496, 0.00977874454, 0.0442156419, -0.0126033854, 0.0098973643, 0.0356749967, 0.0113504613, 0.0226267837, -0.0323239788, 0.00370131782, -0.0127220061, -0.040034283, 0.0408646241, 0.00139471295, -0.0137154488, -0.00950443558, 0.00436299574, 0.0310784671, 0.0277571045, 0.00725436071, -0.0277126208, -0.0218557529, 0.00876306, -0.0458170138, 0.0178226698, -0.0165030211, 0.00988995098, 0.0470625237, -0.00269860728, 0.00478187297, -0.00937098823, 0.0203433465, 0.027920207, -0.0190681815, -0.0153168207, 0.0383142941, 0.0305446759, -0.00645367475, 0.00276718452, -0.0286615826, -0.0337474197, -0.0417542756, -0.010090122, 0.0247767735, -0.0121214911, 0.0236498825, 0.00591247063, -0.00621272763, -0.000933206582, 0.0149683738, -0.0363274068, -0.0162064712, -0.00771772023, -0.0171257779, 0.0036142061, -0.0185047351, -0.0166068133, -0.0121659739, 0.00491902744, 0.0264671091, -0.00176447397, -0.0459356345, -0.00718393, 0.00073071837, -0.0184009429, 0.0173481889, 0.0220040288, 0.0250140131, 0.00974908937, -0.00635358924, 0.0178226698, -0.00166160811, -0.0260815956, 0.00936357398, 0.00448532263, -0.0117730452, -0.0136783803, -0.00645367475, 0.0251474623, 0.0200467966, -0.00506359572, 0.00453721872, -0.0352894813, 0.00293770083, 0.040538419, 0.0237833299, -0.0232050568, -0.00256886659, 0.00155410869, -0.00885943882, 0.0155392336, 0.0101346048, 0.00014885432, 0.00285985647, -0.00665013958, -0.0172740519, -0.0572341979, 0.00934874639, 0.0218854081, 0.0128109707, -0.0101642599, -0.0284391697, 0.0236350559, 0.0164585393, 0.00858513, -0.0439190939, 0.00284502888, -0.0220929943, 0.0274012424, 0.013070452, 0.0230123, -0.0110761523, 0.0264522824, 0.0332729369, 0.00478187297, 0.0245247055, -0.00324351829, 0.0110464972, -0.0233236775, -0.00187938719, 0.0217074789, -0.0260222852, -0.00611634878, 0.0101346048, 0.00418877229, 0.0176743958, 0.0107573606, -0.00264856452, 0.0220633391, -0.0157616455, -0.0130778663, -0.00730996393, -0.0395004936, -0.00264485762, -0.0213516187, 0.0395598039, -0.0237833299, -0.00508213, 0.0178226698, -0.0010008571, 0.0113059785, -0.0183564611, -0.00138637237, -0.0193202496, 0.0154799232, -0.0128851086, 0.000107557389, 0.00624238281, -0.0188605953, -0.0131149348, 0.00494497549, 0.00464471849, -0.0312860534, 0.0143085495, 0.00468178699, 0.008963231, -0.0343405195, -0.0276977941, -0.00589764304, -0.0190385263, 0.0261260774, 0.0201357622, -0.00657970877, 0.00197947305, 0.0317308754, -0.0301888157, 0.0108611528, 0.00170053029, 0.0107128778, 0.0178671535, 0.000766397046, 0.0257998724, 0.00729513634, -0.000378564931, 0.000297940336, 0.0117137348, -0.0162212979, -0.00960081443, -0.00287653739, -0.0143826874, -0.0338956937, 0.0178671535, -0.022760231, -0.00546393823, -0.0214702375, -0.00424437551, -0.00325649255, -0.00762875518, 0.0095934011, 0.0031286052, -0.0181637034, -0.0233681593, 0.0686217248, -0.0189940445, 0.00294882152, -0.000755276415, -0.0253402181, -0.0396191142, -0.0147756161, 0.0316419117, 0.0332729369, 0.012618213, 0.0191719737, 0.0292991642, 0.0061348835, 0.022686094, -0.0148868226, -0.0143011361, -0.0244802237, 0.0111651169, 0.0171109494, -0.00772513403, 0.00619048672, 0.017778188, 0.00679100072, 0.00735444622, 0.0175112933, -0.00966012478, -0.017926462, 0.00337696588, -0.0257257335, 0.00351782725, -0.00550471386, 0.00686143152, 0.0294177849, 0.00361605966, 0.00625721039, 0.0327094942, -0.00551212765, -0.00102217169, -0.0213367902, 0.0141899297, 0.0123958, 0.00317679462, -0.00517850881, 0.00160229811, -0.00292287348, -0.0174816381, -0.0371577479, -0.0110390829, -0.000551861478, 0.0285577886, -0.0281277914, -0.00429256493, -0.0172888804, -0.0192757659, -0.00320274266, -0.00215554959, -0.00481152767, -0.0200467966, 0.0287357196, -0.0325315632, -0.0093339188, -0.00817737356, -0.00762134138, -0.0192164555, 0.0181488749, 0.000202256546, -0.0314639807, 0.0101049496, -0.0348743089, 0.0235460903, 0.0196464546, 0.020180244, -0.00578643661, 0.0126330405, -0.0271343477, -0.0015782034, -0.00963788293, 0.00626833085, -0.00171072432, -0.00367351621, -0.0292398557, 0.0330653526, -0.0106609818, -0.00162639283, -0.0023297728, -0.00309524336, -0.0222709235, -0.0346074142, -0.0147904437, 0.0077918577, -0.0252957363, 0.0154799232, -0.00992701948, 0.0176299121, -0.00897805858, -0.00571229914, 0.0243022926, 0.00639436487, 0.000312767836, 0.000383893581, 0.0299664028, 0.0162806083, 0.000161017524, 0.0241836738, -0.00871857721, 0.00175428006, 0.0206695534, -0.00177188776, 0.000769177219, 0.0120399399, -0.00917823054, 0.000650093774, -0.0048597171, 0.0153761301, -0.00445937458, -0.00769547885, 0.000522206479, -0.0131371757, -0.0127664879, -0.00911150686, -0.00631652027, -0.0180154275, 0.0111058066, 0.0129592456, 0.0190978367, 0.000617195212, 0.0158357844, -0.021959547, 0.00503764721, -0.0159544032, -0.0190681815, 0.00367351621, -0.017051639, 0.00609781453, -0.0182378404, 0.00710237864, -0.0341625884, 0.0209661033, 0.00557514466, 0.0322943218, -0.0211440325, -0.0010509, 0.00400342839, 0.00378657598, -0.0020647312, 0.0198985226, -0.00368093, 0.000581516535, 0.00659082923, 0.0157913, -0.0153761301, 0.00936357398, 0.0121956291, -0.0135301054, 0.020284038, -0.0249991864, -0.0245543607, 0.00762875518, -0.00343256909, 0.00398118701, -0.00489678606, 0.0389073938, 0.0146495821, -0.0155095784, -0.0174964648, 0.00120102847, -0.00683919, 0.00586798834, 0.00541204214, -0.0165178496, 0.00822927, -0.0198392123, 0.00586798834, -0.0237833299, 0.020106107, 0.00468178699, -0.000751106185, -0.0127220061, 0.0198836941, 0.0110390829, -0.0095934011, 0.0223747157, -0.0132483821, -0.0148200989, -0.00277089141, -0.00748048024, 0.00302481255, -0.0122845946, 0.0100604668, -0.00472626975, -0.028869167, 0.0139749302, 0.0267340057, -0.0098973643, 0.0151833734, 0.0224636812, 0.0123958, -0.0145161347, 0.0075694453, 0.0105201202, -0.0161768161, 0.0243171211, 0.0131816585, 0.0215888582, 0.00352894794, -0.00994184706, -0.00545652444, -0.00594583247, 0.0203730017, -0.0294326134, 0.0427625477, -0.0132113136, 0.00030072048, 0.0125366617, 0.0218557529, 0.00427032355, 0.0114542535, -0.00411834149, 0.0147311334, 0.0252512544, 0.00379398977, 0.0172888804, -0.00285244267, 0.0143233771, 0.0118397688, -0.0170664676, 0.0208919644, 0.0061348835, -0.00283946865, 0.0137154488, 0.00124829123, 0.0365349911, 0.016977502, 0.00234645396, 0.00140768697, 0.00710608531, -0.00773254782, -0.024287466, -0.0070764306, -0.00470402837, 0.0271640029, -0.00821444206, 0.00611634878, 0.0246581528, 0.01424924, -0.000140282165, 0.0198392123, 0.00431480631, 0.00205546385, 0.0104682241, 0.00359381828, -0.00263003, -0.00554178283, -0.0252660811, 0.0425549597, 0.00108518859, -0.0200912803, -0.0131816585, -0.0105423611, -0.0386108421, 0.00176910765, 0.00393670471, -0.000774737506, -0.0242429823, -0.031523291, 0.0245691892, -0.00885943882, -0.0177337043, -0.0220040288, 0.00261149555, -0.00936357398, 0.00974167604, 0.0411908291, -0.00392929092, -0.000719134347, -0.0122623527, 0.00369761093, -0.00848875102, 0.0131001072, -0.00192386971, -0.0268081427, 0.0137080355, 0.0230716094, -0.0197057649, -0.0324425958, 0.026615385, 0.00285429624, 0.00882237, -0.00475221779, -0.00856288895, 0.0155392336, 0.0275198631, -0.0247916, 0.0277571045, -0.0094525395, 0.0297736451, 0.00595695339, -0.0306039862, -0.00498575112, -0.00574936811, 0.0180450827, 0.00194055075, 0.0165475048, -0.0135078635, -0.00272084866, 0.0212626532, 0.0131668309, 0.00404791115, 0.0155095784, -0.0100530535, -0.00990477856, -0.0439190939, 0.0129666599, 0.013670967, -0.0121882157, -0.00534161134, 0.00546764536, -0.00325463898, -0.0102235703, -0.0120325265, -0.0153168207, -0.0171554312, -0.0499390624, -0.0104682241, 0.0391742885, -0.0299812313, 0.000302573928, -0.0128999362, -0.00444084, -0.0195426624, 0.013070452, 0.00802168436, -0.0292546824, 0.0251622889, -0.00314157922, 0.0123809734, 0.0347853452, -0.00122512318, 0.00662419107, -0.00382549828, -0.0154947508, 0.0123068355, -0.0170812942, 0.0206992067, 0.00783634, 0.0164437108, -0.0304260552, -0.00390334264, 0.0019034819, -0.0275050364, -0.00563816167, -0.0193350762, 0.00156152237, 0.00792530552, -0.00305261416, 0.0345481038, -0.00116952008, 0.0159840584, 0.0179709457, 0.00592359109, -0.021959547, 0.00609040074, 0.00652039889, 0.00051154918, 0.00719505036, -0.0168588813, 0.00644626096, -0.0105794305, 0.0112837367, 0.0309301913, -0.0126923509, 0.00621272763, -0.00660936395, -0.0210995506, 0.00698005175, 0.0188309401, 0.0009971502, 0.00859995745, -0.0143011361, 0.0022259804, -0.0404198, -0.00407015206, 0.0115135638, 0.00697263796, 0.0165475048, -0.000859532389, 0.00164770731, -0.0207436904, -0.0129370047, 0.0116618387, 0.0194388684, -0.0172147416, -0.0059495396, -0.00883719791, 0.0163695738, -0.00265227142, -0.0220188554, 0.0168440547, -0.0135894157, -0.0226564389, 0.0231012646, 0.0205509327, -0.0211736877, 0.01472372, 0.0381956734, 0.00769547885, 0.0116544245, -0.0161619894, 0.0150499251, 0.0242281556, 0.00823668297, 0.0239909161, -0.0364460275, -0.0242281556, 0.00799944345, 0.0129295914, 0.00830340665, 0.0233385041, 0.0105868438, -0.0224488545, -0.0127961431, -0.00108982215, -0.0228788517, -0.0252809096, 0.0243912581, -0.0185343903, -0.000297476974, -0.00355674955, -0.0177337043, -0.00278386544, 0.000471005216, -0.0116321836, -0.00570117868, 0.005871695, 0.00708755106, 0.0042036, -0.0296401978, 0.0112096, 0.0108759804, 0.018727148, -0.0194685236, -0.00744341128, 0.0189347342, 0.00652039889, 0.00712462, 0.00920788571, 0.0172740519, -0.0148052713, 0.000757593196, -0.0163102634, -0.00586798834, -0.0281722732, -0.0270750374, 0.0108314976, 0.00738780806, -0.00119454146, -0.00384403253, -0.0197502468, 0.0131890727, 0.0181488749, 0.0161916446, 0.00299330405, 0.00104163273, 0.0198392123, 0.00862961262, -0.0215147212, -0.00572342, -0.00756573817, 0.00213516178, -0.0126849366, 0.0102458112, -0.022760231, 0.001483678, -0.0182081852, -0.00417023804, -0.0040664454, -0.0123809734, 0.01472372, -0.00337696588, -0.0101271914, -0.00696522417, 0.0252067707, 0.00556031708, 0.0044816155, 0.0158654377, 0.00382179138, 0.0120844226, 0.0163992289, 0.000990663189, 0.0110316696, 0.0114987362, 0.0103940861, 0.01174339, 0.0107128778, 0.0128628667, 0.0120621817, -0.00457428768, 0.0228195414, -0.0263484903, -0.014597686, 0.00677617313, 0.0068132421, -0.00191460259, -0.0082070278, 0.00649445038, 0.0098973643, -0.00669462187, -0.021307135, 0.00295252842, 0.0129147638, 0.0120992502, -0.0140564824, -0.0203285199, 0.0184009429, 0.012017699, -0.0181933586, -0.0161471609, -0.00244097924, 0.00830340665, 9.43516352e-05, 0.025666425, 0.00834788941, 0.0140564824, -0.0113652879, 0.00325834588, 0.00885202456, 0.0174668096, -0.0228195414, 0.0282464121, 0.0125663169, -0.00736927381, 0.0264671091, -0.00954150409, -0.00422213413, -0.0148868226, -0.0135004502, 0.0109130489, -0.011090979, -0.0130778663, 0.0107796015, -0.00121214916, 0.00325093209, 0.00230197143, -0.0029006321, -0.00356416334, 0.00686884532, -0.00752496254, 0.00376248127, 0.00151611317, -0.0153613035, 0.0107499463, -0.00666867383, -0.0231309198, 0.00723582599, -0.000254847866, 0.000944790547, -0.0105646029, 0.00326575967, -0.0075694453, 0.00828116573, -0.00385886012, -0.00641660625, 0.000803929172, -0.00792530552, 0.0132039, 0.00174779305, -0.00964529719, 0.0151388906, -0.0169181917, -0.0209957585, 0.00997891556, 0.00878530089, 0.00571971294, 0.0224488545, 0.0213516187, 0.0468549393, -0.00589022925, -0.0172888804, -0.0127739022, -0.0117952861, -0.000654727337, -0.00229641097, -0.00245951372, 0.00902254134, -0.00970460661, 0.0224488545, 0.0197650734, 0.0105868438, -0.00761392759, -0.0117656309, -0.00123068353, -0.0165326763, -0.00960081443, -0.000235850122, -0.0100975363, -0.021559203, -0.022611957, -0.00633505452, -0.00951926317, 0.0128257982, -0.00735815335, 0.00279498613, -0.0152871655, -0.0154206129, -0.0125070065, -0.00664643245, -0.00643143337, 0.0111873578, -0.0292398557, -0.00494497549, 0.00822185539, -0.0253847018, 0.00828116573, 0.0239464324, 0.0271788314, -0.0119509753, 0.000848411757, -0.00614971062, 0.00281908084, 0.0075991, 0.0127145918, -0.00310080359, -0.00583462603, 0.0102458112, 0.0186085291, 0.00440747803, 0.0086592678, -0.00476333825, -0.0137895867, 0.00522669824, 0.0065500536, 0.0173778441, 0.00765099656, -0.000904478249, -0.00662419107, 0.0131742451, -0.0104830517, -0.00867409445, 0.013596829, -0.0229381621, 0.001186201, 0.00199615397, -0.0136338975, -0.0179116353, -0.012343904, -0.00736927381, -0.000414475304, 0.0154650956, 0.0149164777, -0.0110242553, -0.0106461542, 0.0117211491, -0.0160285402, 0.0049042, 0.00640177866, -0.00878530089, 0.00730255, 0.0259184912, -0.00837013125, -0.00812547654, -0.0101494323, 0.00753608346, -0.0100530535, 0.0202692095, 0.00736927381, -0.012595972, 0.0212033428, 0.0117878728, 0.0207585171, -0.0205805879, 0.0228640251, -0.00600884948, -0.00113615813, 0.0041813585, 0.00720617129, 0.0150647527, 0.0323832892, -0.000295855221, -0.00492644124, 0.0168440547, -0.0298922658, -0.0154799232, -0.00612746971, 0.00634246832, 0.0192757659, 0.00184324512, 0.00728030875, -0.00433334056, -0.00607557315, -0.0113356337, -0.0131075215, 0.00808099471, -0.0134559674, -0.0129666599, 0.0285726171, 0.00497463066, 0.00963047, 0.0261557326, -0.000927646237, 0.0114394259, 0.0333915576, -0.00563074788, -0.00908185169, 0.0119732162, -0.00165697455, 0.0128109707, -0.00672427705, 0.0235905722, -0.0125366617, -0.00357343047, -0.00324351829, -0.0173037071, 0.0127294194, 0.0156281982, -0.0159692317, -0.00573454052, -0.00727289496, 0.0231160913, 0.00846651, -0.00114079181, 0.0128406258, 0.00360864587, 0.00131038146, 0.0123883868, -0.0143530322, 0.0095934011, -0.00564557547, -0.0120473541, 0.017778188, -0.0167402625, -0.0085035786, 0.0231457464, -0.0087334048, -0.000456409383, -1.11785548e-05, 0.00221115281, 0.0140787233, 0.00943771191, 0.000892430893, -0.0132409688, 0.0110464972, 0.0149757881, -0.0155837154, -0.00371985231, -0.00516738836, 0.0230716094, 0.011217013, 0.00283020153, -0.00057595619, 0.0303964, -0.0149164777, 0.000319486571, -0.00254662521, -0.0379287787, 0.000598197454, 0.00877788756, 0.022434026, 0.0136116566, 0.0138859656, -0.00540833501, 0.0110020144, -0.0164140556, -0.00686884532, -0.02163334, 0.0160730239, -0.00917081628, -0.00347519829, -0.00607557315, -0.0276384838, 0.00407756586, -0.0192461107, -0.0135671739, 0.00088316371, -0.00675393175, -0.000932743191, 0.0195278339, 0.00805134, 0.00464471849, 0.0103199491, -0.0128183849, 0.00591988442, -0.0186974928, -0.00937840156, 0.0153761301, -0.0152278552, -0.0163250919, 0.00478928676, 0.00357343047, 0.00716539565, -0.00364015438, -0.0264819376, -0.0158802662, 0.00872599147, -0.0065129851, 0.00260964222, -0.01424924, 0.00367536978, 0.00186085282, 0.0231754016, 0.0104311556, 0.00682065589, -0.0236054, -0.00304149347, -0.00447049504, -0.0174075, 0.00925236754, 0.0140787233, 0.00770289265, 0.00121307583, -0.00264671096, 0.0135226911, -0.0094525395, 0.00521187065, 0.00819220114, -0.00532678375, -0.0190236978, 0.00507842284, -0.00767323794, -0.00205546385, -0.028943304, 0.0196612813, -0.0327391475, 0.00427032355, 0.0117582176, -0.00158469041, 0.0108982222, -0.00154576823, 0.00379584334, -0.0163102634, 0.00197020569, -0.00808840804, -0.0278757233, -0.00794754643, 0.00710608531, 0.00388851529, 0.00437040953, -0.018030256, 0.00701341359, 0.0134040713, 0.00994184706, 0.0167699158, 0.0114245983, 0.00159673777, -0.0204619672, -0.00677246647, -0.012343904, 0.0149090635, -0.033599142, -0.000369529414, -0.00408127299, 0.0112392548, -0.002072145, 0.00943029765, 0.0098602958, 0.0147385476, 0.00325093209, -0.0121659739, -0.00885202456, -0.0178819802, -0.00891874917, 5.27795737e-06, 0.00665384624, 0.0160730239, -0.00401084218, -0.0160433687, -0.00723211933, -0.0180450827, -0.00788082276, 0.0027894259, -0.00762875518, -0.00066631136, -0.0216778237, 0.00964529719, -0.00848133676, 0.0276977941, -0.0287060644, -0.0312267412, -0.0142121706, -0.00190162845, -0.0196168, 0.00383291207, -0.0115283914, -0.00300627807, -0.00141788088, 0.0201357622, -0.0130185559, -0.00632393407, 0.00801427, 0.0138266552, 0.0025651597, 0.00263559027, 0.0109204631, 0.00101012434, -0.00640919246, 0.023812985, 0.0118768374, 0.00832564849, 0.00242244476, -0.0225971285, 0.0219892, -0.00215554959, -0.00421101367, -0.0189347342, -0.00315826014, 0.00633134786, 0.0114394259, 0.00690220715, 0.016651297, -0.00433334056, 0.00848875102, 0.00114079181, 0.0239019506, 0.0231160913, -0.00972684845, 0.00147997111, 0.006998586, 0.0330357, -0.0118397688, -0.00272455555, -0.0054231626, 0.00938581582, 0.00501540629, -0.0168588813, -0.0224043708, -0.00326761301, 0.000752496242, -0.00786599517, 0.00169775018, 0.0319088064, 0.014012, 0.0157319903, 0.0117508033, 0.0122401118, -0.0109871868, 0.00662419107, -0.00301369186, 0.00255403901, -0.0128999362, 0.0237091929, -0.0125811445, -0.0152723379, 0.00519704306, -0.0105497753, -0.00951926317, 0.0196761098, -0.00346222427, 0.0035382153, 0.00365868863, 0.00421472033, 0.0108314976, 0.0108092567, 0.00165790122, -0.00388480839, 0.00864444, -0.0338660404, -0.0115061495, 0.0146347545, -0.00634246832, 0.00248546177, 0.00520445686, -0.0245543607, 0.023738848, 0.0121511463, 0.019379558, 0.00172184489, -0.00524523249, -0.00954150409, 0.0207733456, -0.0346667245, 0.00637212349, -0.0162212979, 0.00811064895, -0.0041368762, -0.0298477821, 0.025562631, -0.00254477188, -0.00553807616, 0.0151611315, 0.00748048024, -0.0290174428, -0.00245766016, 0.0171554312, 0.00581979891, 0.00486713089, 0.0177485328, -0.0151314763, 0.0154354405, -0.023738848, 0.0111651169, -0.0166364685, -0.00102124491, 0.00741746323, 0.000749716128, 0.00104811974, -0.00852581952, -0.0133892437, 0.0370687805, -0.0027894259, 0.019157147, 0.00382179138, -0.00299330405, 0.011491322, 0.00336213852, 0.0157616455, 0.0115802875, -0.000332460622, -0.0183712877, -0.00152352697, -0.0139452759, -0.0260964222, -0.0121733882, -0.0106609818, 0.00116210629, -0.00745453173, -0.00243171211, -0.0016551211, 0.000483747601, 0.00998633, 0.0370984375, 0.0111132208, -0.000447837228, -0.0202247277, 0.00263559027, 0.0276977941, -0.00571229914, -0.000691796129, 0.0218112711, -0.0296995081, -0.00177003432, -0.00529342191, 0.00250584958, -0.0191126633, 0.0162806083, -0.00542686973, -0.000246044045, -0.00265597808, 0.01424924, -0.00231679878, 0.0181933586, 0.00856288895, 0.0118471822, 0.00263373693, -0.0324129425, 7.03003661e-06, -0.0222709235, 0.0112466682, -0.00556773087, -0.00907443743, -0.00424437551, -0.00729142921, -0.00696522417, 0.0025651597, -0.00268748659, -0.0126923509, -0.00819220114, -0.00272826222, -0.00571229914, 0.0115951151, 0.0209512748, -0.00140305341, 0.00543057639, 0.00991219189, -0.0301443338, -0.00727660162, 0.00510437135, -0.00130667456, 0.0162954368, -0.00505618192, -0.0090670241, -0.00462247711, 0.00527488766, 0.0128332125, -0.0162954368, -0.0108463252, -0.0053860941, 0.00446678838, -0.00504876813, -0.00852581952, 0.0077918577, 0.014271481, 0.00540092168, -0.000299098727, 0.0127961431, 0.00782892667, 0.02879503, 0.00447420171, 0.00885202456, 0.0211440325, 0.0228936803, 0.014271481, -0.0124476971, 0.00487083802, -0.0189940445, -0.00491532031, 0.0113801155, -0.011543219, 0.00620160718, 0.0116989072, -0.00205175695, 0.00386627391, 0.00383291207, 0.0189940445, 0.00590135, 0.0133151067, 0.0038069638, 0.00692074141, -0.013871138, 0.000840997964, 0.0211292058, 0.0152130276, -0.0145828584, 0.0110464972, -0.00460394286, 0.0183861163, -0.0135745881, 0.0202692095, 0.0027115813, -0.00923754, -0.0139378617, 6.00630083e-05, 0.0196612813, -0.0130852796, -0.00868150871, 0.00331950933, 0.0262298696, 0.0113504613, -0.0215740316, -0.0149461329, 0.0070356545, 0.00540462835, -0.0234719533, -0.00384032587, -0.00576790236, 0.0107351188, -0.0111577036, 0.0106906369, 0.00182934431, -0.0157468189, 0.0218260977, 0.00371243851, 0.0115580456, -0.00464842515, 0.00419618608, -0.0098232273, 0.0190830082, -0.0129370047, 0.0107796015, -0.00646850234, 0.00148645812, -0.0192905944, 0.00347519829, -0.0029747698, 0.0180895645, -0.0297143348, 3.28985443e-05, -0.0267043505, -0.00313045853, 0.00806616712, 0.00531566329, -0.00118898111, -0.00601626327, -0.0221671313, 0.0128183849, 0.00870375, 0.00246692752, 0.00381808449, 0.00624608947, 0.0044816155, -0.0043296339, -2.2834949e-05, -0.0112021854, -0.00880754273, -0.00480040722, 0.0373356752, 0.00601255614, 0.00180988328, -0.0072617745, 0.0101642599, 0.00377360196, -0.00464842515, -0.00343998289, 0.0141380336, 0.0051229056, 0.0153168207, -0.00608298695, 0.0227454044, -0.00180710305, -0.00626462419, -0.0022574889, -0.0163250919, 0.0209661033, -0.00536385272, -0.00814030413, 0.0036920507, -0.01034219, 0.00213516178, -0.0292250272, -0.0219150633, -0.00106665422, -0.0335694887, 0.0116321836, 0.00793271884, 1.25251936e-05, 0.000142714809, 0.0029710629, 0.0117211491, -0.00168848294, -0.0154947508, -0.00885202456, 0.0130778663, -0.00707272347, -0.00265968498, 0.0243912581, 0.0164437108, -0.00792530552, -0.0196612813, 0.0213812739, -0.019053353, -0.013722863, 0.00623496901, 0.00288024428, -0.00845909584, -0.0153761301, -0.00814030413, -0.0301443338, 0.0157616455, 0.0169478469, -0.00916340295, 0.02163334, 0.0160285402, -0.00409980724, -0.00196093856, -0.000485601049, -0.0227305759, 0.0072617745, 0.0138118276, -0.00261520245, -0.00732849818, 0.00319347554, -0.0192016289, 0.0136561394, -0.00409239344, 0.00143178168, 0.0302777812, 0.0216926504, -0.0124106277, -0.00486342423, 0.00784375425, -0.00712462, 0.00799944345, 0.000496258319, -0.00758056575, 0.00791047793, 0.00842944067, 0.00084007124, -0.000961934857, 0.00300813164, 0.0176595673, 0.00338067277, 0.00230011786, 0.0260371119, 0.0210254136, 0.0245840158, -0.00871116389, 0.013797, -0.00468920078, 0.0157171637, -0.00501911296, 0.0150647527, -0.00905961, 0.00130852801, -0.0127887297, 0.00169589673, -0.000441350188, 0.0215147212, -0.00370317115, -0.0173481889, 0.00227231625, -0.0101716733, -0.0186381824, 0.01221787, -0.00231865235, -0.0019943004, -0.0126404548, 0.0161175057, -0.0304853655, -0.0154057853, 0.0213367902, 0.0263484903, 0.0162361264, -0.0115951151, 0.00242244476, -0.000450385705, -0.00283761532, 0.00191274914, -0.0187716316, 0.0231309198, -0.00531937, -0.00745082507, -0.0068132421, -0.0131297624, 0.00243727234, 0.0156875085, 0.00573824719, -0.0129444189, -0.00882237, -0.00861478504, -0.0151982, -0.0214554109, 0.0194092132, 0.00119639491, 0.01567268, -0.0117063215, -4.12390182e-05, -0.00495609595, -0.0108611528, 0.0187419765, 0.0275050364, -0.00630169269, -0.0346074142, -0.00556031708, 0.0199133493, 0.00799202919, -0.00459652906, 0.0144790662, 0.0036104992, 0.00771772023, -0.00127145916, -0.00581609178, 0.00307670888, -0.022033684, -0.033450868, 0.0240947083, -0.0287060644, -0.0116618387, 0.0032787337, 0.014345618, -0.00774737541, -0.00288580474, 0.00510437135, -0.00856288895, -0.0136190699, 0.0186530109, -0.00819961447, 0.00908185169, -0.00567523064, -0.00729513634, -0.00639065774, 0.0149238911, 0.0145087214, -0.018905079, 0.0229678173, 0.00891874917, -0.00782151334, -0.0029395544, -0.0101197772, 0.00629427889, -0.0202988647, -0.000966568477, -0.00616083154, -0.00384773943, -0.00273567601, -0.00984546822, 0.000805319287, 0.00358084426, -0.027920207, 0.0255922861, 0.00288951141, 0.0059161773, 0.0288246851, 0.0114320125, -0.00865185354, -0.0167550892, 0.0122104567, 0.00798461586, 0.0149535462, 0.025562631, -0.00553066237, -0.00533049088, 0.00709496485, 7.41954864e-05, -0.00802168436, 0.0115358047, 0.00258925441, -0.00910409261, 0.0047003217, 0.0113652879, 0.0153613035, -0.00268563326, -0.0128183849, 0.0164437108, -0.0581535026, -0.00963788293, -0.00388851529, 0.0182230137, -0.00228899717, 0.00818478689, 0.0239316057, -0.0200764518, 0.0264671091, 0.0133521752, -0.00495238928, 0.00986771, -0.0154206129, -0.00473739, -0.0124180419, 0.0213961, -0.000123601218, -0.00403679, 0.00708013726, -0.00302295922, 0.00369946449, 0.03315432, -0.010015985, 0.00876306, 0.0101790875, -0.00339920726, -0.00435928861, 0.0125070065, 0.00885943882, -0.00566410972, -0.0028969252, 0.00598290144, -0.00200356753, -0.00558255846, 0.00266895234, -0.0100233983, 0.00402196264, 0.00785858184, -0.00434816815, -0.000858142274, -0.00798461586, 0.00379028288, 0.00204434339, -0.0149313053, -0.00720987795, -0.00318976864, -0.00824409723, 0.00240205694, -0.0186085291, 0.0060644527, -0.0163102634, -0.0132557964, -0.00282278773, 0.0111206342, -0.00126775238, 0.0170368124, -0.0123735592, -0.00403679, 0.01657716, -0.0138192419, -0.0018617796, -0.0340143144, -0.00545281777, 0.0119658029, 0.0214257557, 0.0151685458, -0.00745453173, -0.00655746739, -0.0363570601, 0.00432222, -0.0365943, -0.0294919219, -0.00665013958, -0.00536014559, 0.00431851298, 0.0201950725, -0.0151685458, -0.0025225305, -0.00284873578, 0.00234089349, 0.0191868022, 0.010142019, 0.0262595247, 0.0283057224, 0.0249102209, -0.0237091929, 0.00100734411, 0.00577160949, 0.00918564387, -0.00951926317, 0.0152871655, 0.00731737725, -0.00785858184, 0.000968421926, 0.00243912591, -0.0207436904, -0.00705418922, 0.00283205486, 0.0201357622, 0.0031564068, -0.00808099471, 0.00300627807, 0.00980098546, 0.00360864587, 0.0396191142, -0.00806616712, 0.0162954368, -0.0144938938, 0.00065333728, -0.000150707769, 0.0118545964, 0.00475221779, 0.020358175, 0.00961564202, 0.0228491966, 0.0107647739, 0.0015253803, -0.00502652675, -0.0157023352, 0.00980098546, -0.000620438717, 0.00332692312, 0.0094525395, -0.038106706, 0.00867409445, 0.010364431, 0.00676134555, 0.00326946657, -0.0180599112, -0.0123661458, -0.0137821734, 0.0180154275, -0.00976391695, 0.0157319903, 0.0137673458, -0.0111058066, 0.00422954792, 0.0144049283, -0.00686513819, -0.000398489414, -0.00732849818, 0.00544540398, 0.0177930146, 0.0114987362, -0.0172592252, -0.00361976656, 0.0187864583, -0.020432312, -6.97211635e-06, -0.0168292262, -0.00197947305, 0.010616499, 0.00973426178, -0.00320830313, 0.00639807153, -0.0137599315, -0.00814771838, -0.00352153415, -0.00188402086, -0.0172888804, 0.0226416122, 0.0194536969, 0.0160581954, -0.00215554959, 0.0159544032, 0.0090003, 0.0231012646, 0.00394041138, -0.00727289496, 0.01034219, -0.00609410787, 0.0253402181, -0.0025188236, -0.0107499463, -0.0173926726, -0.0294326134, -0.00738410139, -0.0143085495, -0.0149906157, -0.0139823444, 0.00524152583, 0.0139452759, 0.0012807264, 0.00900771376, 0.0225674734, -0.0287653748, 0.00181173673, 0.00867409445, -2.10973503e-05, 0.00168662961, 0.00601997, 0.00919305813, 0.0129592456, -0.000830804056, -0.0041035139, 0.00771030644, 3.44334221e-05, -0.00383291207, 0.0185492188, 0.0132335545, 0.027742276, 0.00544911111, 0.00689479336, 0.00430368539, 0.00379955, -0.0350818932, -0.00977133121, 0.0291360617, -0.0115283914, 0.00787340943, 0.0154057853, -0.0033528714, 0.00322127715, 0.0154650956, -0.00521557778, -0.00691332761, -0.0209957585, -0.0116692521, -0.00125292479, 0.011943561, 0.0118620098, 0.0127664879, 0.0274160709, 0.00801427, 0.0269860737, 0.00620531384, 0.0098232273, 0.0258888379, -0.0232940223, -0.00550471386, -0.00106294733, -0.00116210629, -0.00951184891, 0.00831823424, -0.00747677311, 0.0178819802, -0.00177837478, -0.00371799874, -0.00871116389, 0.0213367902, 0.0239019506, 0.00885943882, 0.00720987795, -0.0264967643, -0.0113801155, 0.00137710525, -0.0356453396, 0.023887122, -0.00146329019, -7.84236399e-05, -0.000132520887, -0.0038773946, -0.0230271276, 0.0106535675, -0.00123346376, 0.00315084634, -0.0203433465, 0.0160137136, 0.00515626743, -0.00743970461, -0.00672798371, -0.000916062272, 0.0116247702, -0.0135375187, 0.0128999362, -0.00997150224, -0.0238722954, -0.0223895442, -0.0090003, 0.0049301479, 0.0068132421, 0.00168477616, -0.00702453405, -0.0126330405, 0.00858513, 0.0107499463, -0.0141380336, 0.0302036423, -0.0171109494, -0.00117322698, -0.0182674956, -0.00288765808, -0.0112911509, -0.00802909769, 0.00943771191, 0.0100752944, -0.0146199279, -0.00875564665, -0.00479670055, -0.00976391695, 0.00554548949, -0.022686094, 0.0248212554, 0.00545281777, -0.0300998501, -0.0189199056, -0.00514514698, -0.0208919644, 0.00485601043, 0.00413316907, 0.021055067, -0.0277719311, -0.00866668113, -0.0167699158, 0.00437782332, -0.0109871868, -0.0259778015, -0.013997172, 0.00175428006, 0.00164956076, -0.010416328, -0.0140787233, -0.00753237633, -0.00418877229, -0.0125811445, 0.00131779513, -0.0055010072, -0.00523411203, 0.010090122, 0.00913374778, -0.0031601137, 0.0192461107, 0.0010184648, 0.00546023156, 0.00852581952, 0.0131890727, 0.0401232503, -0.000223455252, -0.000412621885, -0.045045983, 0.011469081, 0.00112781767, -0.00138173881, 0.00150035892, -0.0230716094, 0.00717651611, -0.0125663169, -0.0108759804, -0.02599263, -0.00881495606, -0.0217074789, -0.0115358047, 0.003499293, -0.0362680964, 0.00694298279, -0.0117582176, 0.00793271884, 0.00438894378, 0.0186381824, 0.00234089349, -0.00627945177, -0.0250881519, 0.00181544363, 0.0332729369, -0.0145383757, -0.00161249202, 0.00545652444, -0.0175854303, 0.0225229915, -0.0150944078, 0.00198317971, -0.00831823424, 0.000557421823, -0.011090979, 0.00120102847, -0.008889094, 0.00617565913, 0.0190681815, -0.0151092354, -0.00903736893, -0.00724324, -0.00280054635, 0.0090670241, 0.066901736, 0.022686094, 0.00389592885, -0.0183564611, 0.015924748, -0.00167180202, -0.00606815936, 0.0337474197, -0.0212181713, 0.0166068133, 0.00714315427, 0.00445937458, -0.0144419968, 0.00524893962, -0.0184454247, 0.00410722103, 0.00526376674, -0.00570488535, 0.00563074788, -0.00494497549, -0.00227231625, -0.0294474401, 0.0198243838, -0.0204619672, 0.00254291832, -0.00034612976, -0.00335843163, 0.00522669824, -0.0123513183, 0.00441489182, 0.0122401118, 0.0332432836, 0.0162361264, 0.00424808217, -0.0320867375, 0.0143011361, -0.00114449859, 0.0166957788, 0.0261112489, -0.0158357844, 0.0187864583, 0.0307819154, -0.0173185356, -0.000480040733, 0.00867409445, 0.00104904652, 0.0264522824, 5.08826961e-05, 0.00591247063, -0.0233385041, 0.0112318406, -0.0243912581, 0.00710237864, -0.0160581954, 0.00762134138, 0.0063647097, 0.0315826, -0.0038736877, -0.00604591845, 0.0075620315, 0.012469938, 0.00971202087, -0.0198243838, 0.0174668096, 0.0231012646, -0.0393522196, 0.00328614749, -0.00556773087, -0.00671315612, -0.00712832669, 0.00527859433, -0.000778907794, -0.00335843163, -0.00236128131, -0.0162212979, 0.0262150429, 0.00427403068, 0.0029395544, -0.0145902727, -0.0039515323, -0.0299664028, 0.00990477856, -0.00975650363, -0.0145532032, -0.00323239784, -0.0120251123, -0.0231902301, -0.0299367476, -0.0140564824, 0.00398489414, 0.00414429, 0.0218260977, 0.00313787232, -0.0107351188, 0.00337881944, 0.00344739668, 0.000123717065, -0.00306929508, 0.0141528612, 0.00324537186, 0.0185937, -0.0101494323, 0.0245988425, -0.00116117962, -0.00305261416, 0.0364460275, -0.0113949431, 0.0125514893, -0.0107499463, -0.00694298279, 0.00814030413, 0.00189421477, 0.0224785097, 0.00734703243, 0.000303500652, 0.00558997225, -0.000361188926, 0.0113652879, 0.0148275122, -0.00757685909, 0.00156244915, -0.0112985643, -0.01314459, -0.0130630387, -0.00614229729, 0.0190236978, 0.0215295479, 0.0019034819, 0.0116247702, -0.0152278552, -0.00051988964, -0.000171558961, -0.00116210629, -0.000389917259, 0.00920788571, 0.0228195414, -0.00450015, -0.00419989275, 0.0170071572, 0.0167847443, 0.00563816167, -0.00771772023, 0.00441489182, 0.0197502468, -0.0020684381, -0.00164400041, 0.0147163067, -0.00536385272, 0.0364460275, -0.0109204631, 0.000609781477, 0.00965271052, 0.0108463252, 0.00210365327, -0.00592359109, -0.0086963363, 0.00762134138, -0.0252957363, -0.00385886012, -0.0056048, -0.0102013284, 0.00277089141, 0.00264300406, -0.0157171637, 0.00198132638, -0.00437040953, 0.00497092353, -0.00349743944, 0.0152871655, -0.013596829, 0.0134856226, 0.0198836941, -0.0085035786, 0.00593471201, -0.018104393, -0.00779927149, -0.0141528612, 0.010216156, 0.00403679, -0.0127071785, -0.0124921789, 0.00634617545, 0.00165975466, 0.0536459424, -0.0120473541, 0.00226860936, 0.0071913437, 8.33468366e-05, 0.0106906369, -0.00546764536, -0.0143307913, 0.00918564387, -0.0200616252, 0.00243912591, -0.0108018434, -0.0116989072, 0.0189940445, -0.017778188, 0.00452980492, -0.00422954792, 0.0338956937, -0.0147163067, 0.00477075204, -0.00432222, 0.0215888582, 0.0119287334, 0.0139675168, 0.0121882157, -0.0013539372, 0.0233681593, -0.00397748034]
11 Nov, 2021
jQWidgets jqxTreeMap selectionEnabled Property 11 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTreeMap is used for showing the hierarchical data set of nested rectangles. Here each and every branch of the tree is represented as a rectangle, which is then tiled with smaller rectangles that represent sub-branches. Here the rectangle of the leaf node has an area proportional to a specified dimension on the data. The selectionEnabled property is used for setting or getting whether a sector of the specified jqxTreeMap will be outlined or not when it is clicked. Syntax: For setting the selectionEnabled property: $('#jqxTreeMap').jqxTreeMap({ selectionEnabled: true }); For getting the selectionEnabled property: var selectionEnabled = $('#jqxTreeMap').jqxTreeMap('selectionEnabled'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtreemap.js”></script><script type=”text/javascript” src=”scripts/gettheme.js”></script><script type=”text/javascript” src=”scripts/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxTreeMap selectionEnabled property. In the below example, the value for the selectionEnabled property has been set to true. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href=" jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtooltip.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtreemap.js"> </script> <script type="text/javascript" src="scripts/gettheme.js"> </script> <script type="text/javascript" src="scripts/jqx-all.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTreeMap selectionEnabled Property </h3> <div id="Tree_Map"></div> <input type="button" style="margin: 28px;" id="button_for_selectionEnabled" value="Value of the selectionEnabled property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { var Data_of_TreeMap = [{ label: 'GeeksforGeeks', value: 70, color: '#ff0300' }, { label: 'is a', value: 10, parent: 'GeeksforGeeks', color: '#ff5400' }, { label: 'Computer Science', value: 30, parent: 'GeeksforGeeks', color: '#008000' }, { label: 'Portal.', value: 15, parent: 'GeeksforGeeks', color: '#7fbf00' } ]; $('#Tree_Map').jqxTreeMap({ width: 390, height: 200, source: Data_of_TreeMap, selectionEnabled: true }); $("#button_for_selectionEnabled"). jqxButton({ width: 300 }); $("#button_for_selectionEnabled").click( function () { var selectionEnabled_Value = $('#Tree_Map'). jqxTreeMap('selectionEnabled'); $("#log").html(( selectionEnabled_Value)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtreemap/jquery-treemap-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtreemap-selectionenabled-property?ref=asr10
PHP
jQWidgets jqxTreeMap selectionEnabled Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, Node.js date-and-time Date.transform() Method, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0308768433, 0.00693540275, -0.0117162615, 0.0417535752, 0.0706096068, 0.00720286323, 0.00872218795, 0.0139228115, 0.0116419671, -0.0119911516, 0.000437641749, 0.0229718965, 0.0176524017, -0.0239525847, 0.0106464187, 0.00626303628, -0.0027358993, -0.0184102058, -0.0345915742, -0.00213968498, -0.0212928373, 0.00812783092, -0.0217683241, 0.00307022524, -0.02499271, 0.0104235355, 0.00473256735, 0.0169837493, -0.0232393574, 0.00966572948, -0.0343835503, -0.00180164457, 0.0346807279, -0.0269243699, -0.0426451117, -0.0359585956, -0.0156315882, 0.0266420506, 0.00214525708, 0.0178455673, -0.0131724356, 0.0133507429, 0.0183953475, 0.014814347, -0.0215751566, 0.034145806, 0.00617759768, -0.0383954607, -0.0196583569, -0.00966572948, 0.00669766, 0.0393464305, -0.00600300543, 0.0344727039, 0.0171769168, -0.0120580168, -0.0166568533, 0.0459140763, -0.0136107747, 0.0465678684, 0.0360477492, -0.0399407856, -0.0189005509, -0.00250001391, 0.0103789587, 0.0247103907, 0.0257505141, -0.00655278517, -0.0400299393, 0.00763005717, -0.0322141461, 0.0664491057, 0.0146360397, 0.00358843012, 0.0163893923, 0.010505259, -0.0310551506, -0.0263597313, -2.17079596e-05, 0.0308768433, 7.11603134e-05, -0.00358100072, -0.0412483737, 0.0096583, 0.0132690193, 0.00752233, -0.022734154, -0.0478457361, 0.0233136509, 0.0437446721, -0.0179495793, -0.0254979134, -0.0333731435, -0.0135067618, -0.000871104421, -0.00142367068, -0.0201338418, -0.00459140725, -0.045349434, 0.0443093106, 0.0310848691, -0.010341811, 0.0113893654, -0.0545619689, 0.018692527, -0.00522662653, 0.0302973464, 0.0245320834, 0.0220357832, -0.0193611775, 0.0133507429, -0.0546511225, 0.0170134678, -0.00989604369, -0.0501637273, 0.0356316976, 0.0196434967, -0.00394132966, 0.0336703211, -0.0152006792, -0.0430017263, 0.00275447289, -0.0157950353, 0.024234904, -0.0206539035, 0.0317683779, -0.017072903, -0.000171109801, 0.0469839163, -0.00951714069, 0.022734154, 0.0325113237, 0.00136052025, 0.00564267626, 0.0382765867, 0.0436555184, 0.0108470144, 0.020416161, -0.065379262, -0.00236256886, -0.0468947627, -0.028335968, 0.0093685519, 0.0292126443, 0.019331459, 0.0304162167, 0.00196323521, 0.0197029337, -0.0227490123, 0.0373256169, -0.00185272202, 0.0129049756, 0.00864789356, 0.00439452659, 0.0491236039, -0.00690568471, -0.0258693863, 0.0127786743, -0.0148514947, 0.004283085, 0.00918281451, -0.0135439094, 0.00566125, 0.0222586673, -0.0319169685, 0.020089265, -0.00416421331, -0.00861817598, -0.0608324334, 0.0359288789, -0.0200001113, -0.0141977016, 0.00107912929, 0.00239042938, -0.0210253764, -0.0191382933, -0.00104941148, -0.0112259174, 0.0232244972, -0.0267312042, -0.0209808, 0.00158990489, 0.00728087267, 0.0269689467, 0.0140119651, 0.0263002943, 0.0258991048, 0.000213945284, -0.0118277036, 0.0204755962, -0.0193166, 0.0342349596, 0.0819618255, 0.04115922, 0.00593985477, -0.00819469616, -0.00296064047, 0.0260476936, 0.00756690698, -0.039703045, 0.0240120217, -0.000643112813, 0.00187222438, 0.0266866274, 0.0176375434, 0.0317386612, -0.00810554251, -0.026389448, 0.0352750868, 0.0184993595, -0.0112556349, 0.00322624389, 0.0191085767, 0.00415306911, 0.0206093267, 0.041307807, 0.00148403505, -0.0184399243, -0.021381991, 0.0290789139, 0.0248144027, 0.0265231784, -0.00312037393, 0.0219020545, -0.123150758, 0.020847071, 0.0193611775, -0.0253939014, -0.00232542166, 0.00987375528, 0.00431280257, -0.0238337144, -0.0177415553, -0.00490344502, 0.0183804892, 0.0305202287, -0.0142868552, 0.00391904125, -0.0102749458, 0.0260625519, 0.0157356, -0.0230907667, -0.0232393574, 0.00317052286, 0.0479348898, -0.0197029337, -0.018529078, 0.0200001113, 0.00537521578, 0.0251115821, -0.0191531535, -0.0151040964, -0.0273552779, -0.00333025632, 0.0209362227, -0.013358173, 0.00488858577, -0.0216197334, -0.00564639084, 0.000734588073, 0.00666051265, 0.0347698815, -0.0116642555, 0.0163299572, 0.00584327197, 0.0126152262, 0.0487669893, -0.0223329626, 0.011961434, -0.0160030611, 0.0290194787, -0.0266866274, 0.00617388263, 0.00338969193, 0.0114413714, -0.00308136921, -0.0352156498, -0.00825413223, 0.021976348, 0.00740717351, -0.012117452, 0.00567982346, 0.0239080079, 0.0702529922, 0.0436555184, 0.015780177, 0.0313226096, 0.00942798704, -0.0557209626, -0.0146211814, -0.0352750868, -0.0111664813, 0.0106984256, 0.0113967946, 0.0321249925, -0.00183136237, -0.00236628368, -0.0226598587, 0.00150353741, 0.0323330164, -0.014702905, -0.00287520187, -0.0318278149, 0.00865532272, -0.00846958626, 0.0421101898, 0.0391978398, -0.000211855746, -0.0166419949, -0.0437743887, 0.00279533514, 0.00207467726, -0.0128455395, -0.0406837352, -0.00792723615, 0.00117014023, 0.0185142197, 0.0243834946, -0.00965087116, -0.0113002118, 0.0266717691, -0.00220097811, -0.0302676279, 0.0282319561, 0.019331459, -0.0173700824, -0.0311443042, 0.0106835663, 0.0173998, -0.0223329626, -0.0587521829, 0.0115156658, -0.00780093484, 0.00718800444, 0.00566496467, -0.0613376386, 0.0174443759, -0.0148292063, -0.0195097663, 0.0215602983, -0.00879648328, -0.0125037841, -0.00860331673, -0.0209956598, -9.89047112e-05, -0.0470136367, -0.0099183321, -0.00041860374, 0.0310551506, 0.0145617453, 0.0013763078, 0.0146137513, 0.0294206683, -0.01297927, 0.0191977303, 0.0240417384, -0.0533732548, -0.0254681949, -0.0315306373, -0.0109435972, 0.0218426175, 0.0230759084, 0.0203418676, 0.00694283238, 0.0169540327, -0.0216494519, -0.00197252212, 0.0065342118, -0.002154544, 0.0275187269, 0.0161219332, -0.0216197334, -0.0144205857, 0.0289600417, -0.0358991586, 0.0119911516, -0.00735888211, 0.00768206362, -0.0076969224, 0.00655278517, -0.0327193514, 0.0342349596, -0.0118871387, 0.0327193514, -0.00933140423, 0.0151709616, 0.0343241133, -0.0440715663, -0.0153938448, 0.0420507528, -0.0357208513, 0.0292423628, 0.00357542862, -0.0231204852, 0.0157504585, -0.00425336696, 0.00328382221, 0.00323367328, 0.0536407158, -0.0356316976, -0.0130609944, 0.00194094691, -0.0134398965, 0.00161962269, -0.020089265, -0.00771921081, -0.0198069457, -0.00776378764, -0.00560924364, 0.00296992739, 0.0109435972, -0.0227044355, 0.00305722351, 0.0174295176, -0.00387074961, 0.0371473096, 0.00806839578, 0.0331056826, 0.00605501141, -0.0502231643, 0.0313820466, -0.0247995444, -0.0249629915, 0.0202824306, -0.0298218597, -0.00430908799, -0.045408871, 0.00374444877, 0.0504609048, 0.0102675166, -0.00308136921, -0.00703941518, -0.00224369741, -0.0158841889, -0.000214641797, 0.0249629915, 0.0216494519, 0.0120357284, -0.0136182038, -0.0379794091, -0.0122214649, -0.000789380341, 0.00966572948, -0.0286628641, -0.0135364793, 0.0285885688, -0.0369690023, 0.0148812123, -0.00649334956, 0.024725249, -0.019985253, -0.0374742076, -0.0168797374, -0.00532692438, -0.00263374415, -0.0258693863, 0.00901936647, 0.0041790721, 0.0046434137, 0.0278010461, -0.0266866274, 0.0241457503, -0.00907137338, -0.0365232341, -0.0207281988, -0.0268946514, -0.0197772272, 0.0232542157, -0.00577640673, 0.0156167289, -0.00112927821, -0.0150149427, 0.0517982095, 0.0721549317, -0.00403419789, 0.00488858577, -0.0194651894, -0.0171174798, -0.0161813684, 0.00606987, 0.0349184722, 0.0181873236, 0.0476971455, 0.0286480058, 0.0182764754, -0.0214711446, 0.0445173346, 0.0206687637, -0.0221992321, -0.00601786422, 0.0105201183, 0.00328939431, -0.043952696, 0.00647477619, -0.0121843172, 0.014004536, -0.0225261282, -0.0203567259, 0.0322141461, 0.0165231228, -0.0051449025, 0.028543992, -0.0328679383, -0.0046434137, 0.0347996, -0.0216643102, -0.0172512103, 0.0276821759, 0.00134566124, -0.0441904403, -0.00291792117, -0.00784551166, -0.0152303968, -0.00281019392, 0.0227638707, -0.0043313764, -0.0252453107, 0.00154811412, 0.00584698655, -0.00315752137, 0.0331354, -0.0111293336, -0.00138280855, 0.0139599591, 0.026226, 0.0327193514, -0.0127563858, -0.0214117095, -0.0229273196, 0.0132318716, -0.0179792978, 0.00713599799, 0.0197623689, 0.0434177741, 0.0100149149, 0.035393957, -0.0305796657, -0.0311740227, -0.00472885231, 0.00978460163, -0.00279719243, 0.023328511, -0.0515307486, -0.00959143508, 0.00255759223, 0.0114933774, -0.00155925832, -0.0227044355, 0.022674717, 0.0471919402, 0.016374534, 0.00596214319, 0.0188411158, -0.0156167289, 0.0102972342, -0.0417238586, -0.0172214918, -0.0282765329, -0.0127712451, -0.0133433137, 0.00522291195, -0.0287223, 0.0406837352, 0.00823184382, 0.0172957871, -0.0252304524, 0.00415306911, 0.00815011933, -0.00904165488, -0.0103715286, -0.0104086762, -0.00640048133, -0.0013763078, 0.0134324674, -0.019985253, 0.0161962267, 0.0531355105, 0.0144428741, -0.00752233, -0.00591013674, -0.01766726, -0.0334325768, 0.0521548241, 0.0154235633, 0.00996290799, -0.0146954758, -0.0207579173, -0.0340863727, -0.0305796657, 0.00939826947, 0.013573627, 0.0164636876, 0.00118964259, -0.00583584234, 0.0422290601, 0.0219466314, -0.0138559463, -0.013737075, 0.026879793, -0.0228084475, -0.00318538188, 0.0286331456, 0.0236554071, 0.0335514508, 0.0100520616, -0.00387074961, -0.0362260565, 0.00832099747, -0.0021786897, -0.00364043633, -0.0256613623, -0.0148514947, 0.0182467587, -0.00289934757, 0.0102823749, -0.00717314566, 0.0130832829, 0.024888698, -0.0173849408, -0.0264043082, 0.00912337936, -0.0309362803, 0.0243834946, 0.033937782, 0.042823419, -0.0216643102, -0.0259882584, -0.0294355284, -0.0038484612, -0.0393761471, 0.0060215788, 0.00152118236, -0.00328753679, 0.0108470144, 0.0328382216, 0.035601981, -0.0187519621, 0.0157356, -0.0206241868, 0.0498665497, 0.0451414101, 0.0111441929, -0.0266866274, 0.0774447098, -0.00645248778, -0.00427565537, -0.0112110581, -0.0104458239, 0.00307951192, -0.00840272103, -0.0199555345, 0.0117905559, 0.0319764055, 0.00692425855, 0.0047177081, 0.0135587677, 0.00359957432, -0.00809811335, -0.0148292063, 0.0199406762, -0.0378308184, -0.00593614, 0.0240714569, 0.00649706461, 0.0125186434, 0.00389303803, 0.0351859331, 0.0374444872, 0.0176078249, 0.041307807, 0.00279719243, -0.0182021819, -1.65856927e-05, 0.00543836597, 0.0125855086, -0.0168054421, -0.0121843172, 0.0062221745, 0.00205238885, 0.0127489567, 0.00503346045, 0.00358100072, 0.0301784743, 0.014866353, 0.0230907667, -0.022838166, -0.028335968, 0.0210848134, 0.0143462913, 0.0205498915, 0.00105219753, 0.011203629, 0.0351859331, 4.77981412e-05, -0.00914566778, -0.00408991892, -0.0223329626, -0.0208619293, -0.0281279422, -0.0172512103, 0.0160030611, -0.0221249368, 0.000838600507, 0.0191828702, -0.0150000835, -0.000460162293, 0.000142552803, 0.0213076975, -0.0228233077, -0.00885591842, 0.033937782, -0.0105721243, -0.0173998, 0.0449631028, 0.00494059222, -0.0202675723, -0.0115973903, -0.0251561571, -0.0269540884, -0.00598814618, 0.0200298298, 0.0586333126, 0.0199109577, -0.022243809, -0.0149852242, -0.00805353653, 0.00479943259, -0.0271026772, 0.00609958824, 0.00066168647, 0.0212631207, 0.0329868123, 0.022139797, -0.0172957871, -0.0412780903, 0.00405277126, 0.00427565537, 0.00238671456, 0.000565567811, -0.0035122782, 0.0111739105, -0.00983660761, -0.0193463191, 0.0219317712, 0.00237185578, 0.00226041372, -0.00861817598, -0.038306307, 0.0188856926, -0.0239080079, 0.00208953605, -0.0138856648, 0.0215157215, -0.0414861143, -0.0101040686, 0.0209808, 0.00207653455, 0.0359883122, 0.0248589795, 0.0117162615, -0.0216791704, 0.0263300128, -0.0234473813, 0.0317981, 0.000190263876, 0.0161665082, -0.0324518904, -0.0221695136, 0.0221249368, -0.0171917751, -0.0103492402, 0.00614787964, 0.0397327617, 0.00387446443, -0.00324110268, 0.00342683936, -0.0143685797, -0.0165082645, -0.00777121726, -0.00523034111, -0.0086999, 0.0130238468, 0.028335968, -0.0125780785, -0.00833585579, -0.0200446881, 0.0101486454, 0.0187222436, 0.0141085479, 0.0064859204, 0.00259473966, -0.0235811118, 0.000562781759, 0.0237742774, 0.0136999274, -0.0145840337, -0.0146880457, 0.0160624962, 0.000644041458, -0.0167757254, -0.0191531535, 0.0143982973, 0.0230907667, 0.00294206687, 0.0268946514, -0.0248441212, -0.0260774121, -0.00949485227, 0.00983660761, 0.00847701635, -0.0079123769, -0.00311480183, -0.0452305637, 0.00342126726, 0.00974002481, -0.00128436822, 0.00133080233, -0.0166419949, -0.00566496467, 0.029197786, 0.00179050036, 0.00801639, -0.000277211802, -0.0161962267, -0.0254681949, 0.0474296845, -0.0123849129, 0.0153344097, 0.0215008631, -0.0298515782, -0.00765234558, 0.00711742463, -0.0604758188, 0.0349779055, -0.0214117095, 0.0216494519, -0.0073477379, 0.0052674883, 0.00901936647, 0.000423711492, 0.00385589083, -0.00766720483, 0.00157690328, 0.00232356414, 0.00872218795, 0.0220952202, -0.00278976304, 0.0274295732, 0.0409511924, 0.0271918308, 0.0168945957, 0.00421250472, -0.00731802, 0.0231947806, -0.0167162884, 0.00798667129, -0.00395990303, 0.00309622823, 0.000783808238, -0.0187371038, -0.0139376707, -0.00797924213, 0.0091605261, 0.0133284545, 0.00546808401, 0.0108024376, -0.0156018697, -0.039703045, -0.0283805449, 0.0191977303, -0.0247401074, 0.00333025632, 0.00343055394, 0.00255202013, -0.00158619008, -0.0040193391, -0.0383360237, -0.01519325, 0.0192423072, -0.0357208513, 0.0602380782, -0.02499271, -0.0168648791, 0.00209139357, 0.00852902234, 0.02402688, -0.027147254, -0.0472810939, 0.0340566523, -0.00152675447, -0.0137445042, -0.0274890084, 0.0282616727, -0.045349434, 0.028543992, 0.0223329626, -0.00417535752, -0.025691079, 0.00366086746, 0.0303567816, 0.00752976, -0.021976348, 0.0155424345, 0.0133135961, 0.011901998, -0.014271996, 0.0285588522, 0.0363152102, -0.0149035007, -0.000451804139, 0.0320655592, 0.00263002957, 0.0093685519, -0.0241160337, -0.00587298954, -0.013090712, -0.0279793534, 0.0354236737, -0.00254087592, -0.0175335295, -0.0264340248, 0.0132021541, 0.0136702098, 0.0375336409, -0.0104978299, -0.0138187995, -0.0279050581, 0.0198069457, -0.0388709456, 0.0161070731, -0.02208036, 0.00970287714, 0.0512930043, 0.00508175185, -0.0102526573, -0.0313820466, 0.0269243699, -0.000236465843, -0.0254087597, -0.0227490123, 0.018261617, 0.0302527696, -0.0240714569, -0.0161813684, -0.0133656021, -0.00707656238, -0.0209213644, -0.009643442, 0.0206390452, 0.0067496663, -0.0019186585, 0.0200298298, 0.0151189547, 0.00459883688, -0.000768949336, -0.028603429, -0.0284548383, 0.0172512103, -0.0146137513, 0.0240565985, -0.0183061939, -0.0222735275, -0.0192720238, -0.00183507707, 0.0484995283, -0.00175428169, -0.00975488313, 0.010505259, -0.0104458239, 0.000443213823, 0.00778607605, 0.000508453813, 0.0611593314, 0.0250372868, -0.00314266235, -0.0125260726, 0.0176969785, -0.0180981699, 0.0195840616, 0.00189358415, 0.011151622, -0.015676165, -0.00430165837, 0.00898222, 0.0337594748, -0.00854388159, 0.0188113973, -0.0458546393, -0.0110624684, 0.0166271366, 0.0281428024, -0.0152601143, -0.0142942844, 0.0131055703, -0.00347513077, -0.00651563797, 0.0226152819, -0.0016493405, -0.0186776668, 0.0126300855, -0.0179792978, -0.0563450381, -0.0250075683, 0.0245023649, 0.0016400537, 0.00806096662, 0.000979760312, 0.0326599143, 0.0252304524, -0.00630018348, -0.0295692589, 0.0117162615, -0.00133823184, 0.0405648611, 0.0246360954, 0.0259733982, -0.0202229954, 0.0349779055, 0.0206093267, -0.0159584843, 0.0290491953, 0.00484400894, 0.0150446603, -0.0256465022, 0.00659736199, 0.0176524017, -0.0107207131, -0.0331651196, -0.00689454051, 0.0130461352, 0.0253939014, 0.0111590521, -0.00356985652, 0.0180535931, -0.0171620566, -0.00363857904, -0.0275484454, -0.0398219153, -0.0176226832, -0.0133804604, 0.0245320834, 0.00979203079, 0.00113949378, -0.00553494925, -0.00829128, 0.0032671059, -0.00617388263, 0.0138559463, -0.0163150989, -0.0118871387, 0.0158396121, -0.0168648791, 0.00013361423, -0.00551266083, -0.00619988609, 0.00596585777, -0.00496288063, -0.0270283818, 0.0237148423, 0.00457654847, 0.00585813075, -0.0231056269, -0.0211442485, -0.0122363241, 0.000598536048, 0.0125706494, 0.0110104624, 0.0100223441, 0.00544208102, 0.0205350332, 0.00440195622, -0.00111441931, -0.00979946, 0.000289052492, 0.0222586673, -0.00471027894, 0.00763005717, 0.0160327796, -0.0098886136, 0.00949485227, 0.0111144753, 0.0124666374, -0.0140119651, -0.00731059071, -0.0220655017, -0.0187816806, -0.00294763898, -0.0276673157, -0.00363857904, -0.00838043261, 0.00113856501, 0.0153789865, 0.0184845012, 0.0150075126, 0.00852902234, -0.037058156, -0.0281130839, 0.0909960493, 0.0136330621, -0.0263745897, 0.0137445042, -0.021872336, -0.0378605388, -0.00867018197, 0.0286480058, 0.0412780903, -0.00628161, 0.0397922, 0.01713234, 0.0110996161, 0.0102229398, -0.0213968512, -0.0227638707, -0.0152749736, 0.0215900168, 0.0058061243, -0.0191085767, 0.0143462913, 0.0179198626, -0.0282022376, 0.00609958824, 0.0161665082, 0.0154829985, 0.0108990204, 0.00791980606, -0.00223812531, 0.0168351606, 0.0126523739, 0.0113373585, 0.0205053147, -8.32331934e-05, 0.0213225558, 0.0181278866, -0.0198366642, 0.0165825598, -0.000871104421, -0.00547179859, -0.0302379094, 0.0263151545, -0.0331948362, -0.00519690849, -0.0142348493, -0.0171769168, -0.0128009627, -0.00014673188, -0.0195097663, 0.0415158346, -0.024294341, 0.00654535601, -0.0130535644, -0.0040936335, 0.00852159318, -0.00266717677, -0.0102080805, -0.00910109095, 0.0134696141, -0.0481429137, -0.0141234072, -0.0101412153, -0.00718800444, -0.0455277413, 0.0230313316, 0.00358285801, -0.0151189547, 0.0104086762, -0.0256316438, 0.0186776668, 0.0435069278, -0.00521548232, 0.0110847568, 0.00834328588, -0.0334920138, 0.00962858275, 0.000984403654, 0.00439081201, 0.0063336161, -0.00472513773, -0.00958400592, 0.0268500745, -0.0146657582, 0.00434995, 0.00566125, -0.00913080852, -0.00760776922, -0.00648963498, 0.0100223441, 0.0229867548, -0.0212482605, -0.00772664044, -0.0384846143, 0.0142125608, -0.0220357832, -0.0209659413, 0.0180981699, 0.0121546, 0.0125112142, 0.00329682371, 0.0184547827, 0.00804610737, 0.0172214918, 0.0216345936, 0.00215268647, -0.00376859447, 0.0134696141, 0.0016307669, 0.0184696428, 0.0101486454, 0.0275484454, -0.0100594917, -0.00306836772, 0.0201932769, -0.00940569863, 0.00945027545, -0.000429515756, -0.00904908497, -0.0106761372, -0.00167534361, -0.000886427646, -0.00442795921, 0.0231204852, 0.0152898328, 0.00420136051, -0.0205498915, 0.0124666374, -0.00569468271, -0.0134250373, 0.0159287658, -0.0109435972, 0.00971773639, -0.022243809, 0.0172957871, -0.0325707607, -0.00292349327, -0.0224964097, 0.0279496349, 0.0173700824, 0.0320061222, -0.0081129726, -0.0113967946, 0.00055581663, 0.0289749019, 0.00868504122, 0.0193017423, -0.0168797374, 0.00298107159, -0.00776378764, 0.00477714418, -0.00974002481, 0.00721400743, 0.0234028045, -0.00933883339, -0.00176078244, -0.000787058612, -0.0140342535, -0.0124369189, 0.00506689306, 0.00744803576, 0.0119985808, 0.0152898328, 0.0196583569, -0.0166419949, -0.0243834946, 0.00347698806, 0.00364229362, -0.0329868123, 0.0197029337, -0.00491087418, 0.0118574211, -0.0189748462, 0.0250818636, -0.0187519621, 0.0130164176, 0.0001528844, 0.0438932627, -0.00673109246, 0.0129941292, -0.00717686024, -0.0282319561, 0.0102452282, 0.0182319, 0.017934721, 0.00842500944, -0.00694654696, 0.00531206513, -0.00253344653, 0.00102526578, 0.0124889258, -0.0238039959, 0.0195543431, 0.0266866274, 0.00256130705, 0.0111739105, 0.0103566702, 0.00357542862, -0.019985253, -0.00242571929, 0.0138262287, -0.0191085767, 0.0119168572, 0.0170431864, 0.0239228681, 0.00385960541, 0.00903422572, -0.01863309, 0.00481429137, 0.0123477653, -0.0196434967, 0.0348590352, -0.0253939014, -0.0129049756, 0.0103640994, 0.0049443068, 0.0168054421, 0.00611816207, -0.0126449438, -0.00450596865, 0.0127786743, -0.0117682675, -0.00169391732, -0.00565753505, 0.0145617453, -0.00649706461, -0.00488487119, 0.00217311759, -0.0166419949, -0.0104383938, -0.000690939953, -0.00559809944, 0.0136479214, -0.000533063896, 0.0127489567, -0.0118054152, 0.0164042525, -0.0129644107, 0.00383360242, -0.0162408035, -0.0144280149, -0.00224184012, -0.00473256735, 0.00800153054, 0.0201189835, 0.00138280855, -0.000112602786, 0.0235662535, -0.0159436259, -0.00370915886, 0.0122586126, 0.0160476379, 0.0102377981, 0.0109213088, -0.0382765867, 0.0365826711, 0.0133210253, -0.0256613623, -0.0196732152, -0.00160290638, -0.0474594, 0.00398962107, 0.0133433137, -0.0157504585, -0.0266123321, -0.0288857482, 0.0030107894, -0.0214711446, -0.014866353, -0.00392647041, -0.0119837224, -0.00721029285, -0.0095394291, 0.0294058099, -0.00753718894, -0.00806839578, -0.0145171685, 0.0102972342, 0.00219169119, 0.00502974587, -0.00973259471, -0.025854528, 0.0379199721, 0.0249481332, -0.0179198626, -0.0340863727, 0.0152898328, 0.0142942844, 0.0112927817, 0.0233582277, -0.0181724634, 0.0246806722, 0.0175781064, -0.0100223441, -0.000730873318, 0.0181873236, 0.0287371594, -0.00179792976, -0.0253344644, -0.0203270074, 0.00171156228, 0.0176078249, -0.0043313764, 0.01201344, -0.0116939731, -0.00948742311, 0.0150595196, 0.0283805449, -0.0197920874, 0.0103269517, -0.0126300855, -0.00923482142, -0.0230461899, 0.00457654847, -0.0155424345, 0.002490727, -0.00976231322, -0.0110104624, 0.00977717154, 0.00556838186, -0.00994062, -0.0144651625, -0.011523095, -0.0298070014, -0.00183600571, 0.0320358388, 0.012117452, -0.0199703928, -0.0129421223, -0.0032856795, -0.022674717, 0.022570705, -0.0112407757, -0.0158247538, 0.00929425657, -0.00608472945, 0.0272661243, 0.00774892885, -0.0173403639, 0.00165862741, 0.0145766046, -0.012927264, 0.0135884862, -0.015512716, 0.00651563797, -0.00608844403, -0.00239785877, -0.0323627368, -0.00746289454, -0.0116865439, 0.00085624546, 0.0098143192, 0.00223441073, 0.000415817689, 0.00638562255, -0.00556838186, 0.0296138357, -0.0133284545, -0.00838043261, 0.00797181297, 0.0281725191, -0.00414935453, 0.00660107704, 0.0104383938, 0.00830613822, 0.00206353306, -0.0194354728, 0.0126969507, 0.016537983, 0.00108098669, 0.0135141909, 0.00222326652, 0.023328511, -0.0103789587, -0.00856617, 0.0121546, 0.0249332748, 0.0104086762, 0.019331459, -0.0179050025, 0.00510404026, -0.0152303968, -0.0173998, -0.0124889258, 0.00690197, 0.00142367068, -0.00462855492, 0.000186200894, -0.0125335027, 0.000393993658, 0.0143388612, 0.00860331673, 0.00224555493, 0.00055581663, 0.00247586821, -0.0141382664, 0.00709885079, -0.0198366642, 0.0322735831, -0.0121100228, -0.00470656389, 0.0173849408, 0.0214265678, -0.00296435528, 0.014004536, 0.0332245529, 0.00492944801, -0.0125855086, -0.0194503311, 0.0116568254, 0.0116939731, -0.000793559419, 0.0230164733, -0.0167162884, -0.01766726, 0.0123997722, 0.0259436816, 0.0123774838, 0.0286925826, 0.0154235633, 0.00422736397, -0.00226784335, 0.00557209644, -0.0163893923, -0.021173967, 0.0268203579, -0.0215751566, -0.0027228978, -0.00973259471, -0.00246472401, 0.000726229919, -0.000631039904, -0.0135290502, -0.000444374688, 0.00102433702, -0.00197437941, 0.0132095832, 0.0104086762, 0.00801639, -0.00110513251, 0.0164042525, -0.0317089446, -0.0145914629, 0.0252453107, 0.00591756636, 0.0164488293, -0.0108098667, 0.0118574211, 0.011582531, 0.00382617279, -0.00608844403, 0.00229756115, -0.0256316438, -0.0176969785, 0.0108321551, 0.00423107855, 0.00407505967, 0.00581726851, -0.0259139631, 0.00244615041, 0.0047177081, 0.0148589239, -0.00884106, 0.0221546553, 0.012117452, 0.0241606105, 0.0110624684, 0.00930911582, 0.00896736048, -0.00872961804, -0.0198515225, 0.0156464465, -0.0266866274, 0.00382617279, -0.00479943259, 0.000272104051, 0.0068833963, -0.0297475662, 0.0148069179, -0.0231204852, 4.42865567e-05, -0.00944284629, 0.0263300128, -0.0125335027, 0.00775635801, 0.00294763898, 0.0161516499, 0.00307393982, 0.00537521578, 0.00512632867, -0.0106315603, 0.00713599799, 0.00313709024, 3.6566882e-05, 0.019331459, 0.0209956598, -0.00132430159, -0.0104978299, 0.0192571655, -0.011582531, -0.0166568533, -0.00507803727, 0.00125372165, -0.00821698457, -0.0157058816, 0.0126672322, 0.000923110638, -0.0130312759, -0.00239042938, -0.00879648328, 0.0161367916, -0.000799595844, -0.0284845568, -0.0182764754, 0.0186479501, 0.0208024941, -0.00382245821, -0.00806839578, -0.0066085062, 0.00135030469, 0.0133804604, 0.00331911212, 0.0263002943, 0.016968891, -0.02057961, 0.0134993326, 0.00019479121, -0.00689454051, -0.0234176647, 0.0143760089, -0.00267089158, 0.000866925344, 0.0258099511, -0.0114116538, -0.012927264, -0.0145245977, -0.0148366354, -0.00537521578, -0.00947256386, 0.00133358839, 0.0167757254, -0.00129736983, 0.0212185439, -0.0269689467, 0.00867018197, 0.00864789356, 0.00431651715, -0.0145543162, -0.00558324065, -0.00976974238, -0.0145320278, 0.00858102832, -0.00760776922, -0.0340566523, -0.000956543197, 0.0128901163, -0.00641534058, -0.00593614, 0.00641534058, -0.00619617105, 0.0161219332, 0.010178363, -0.010341811, -0.0106761372, -0.00829870906, -0.00086831837, 0.00083952921, 0.00130387058, 0.0237445608, 0.00159919169, -0.021277979, -0.00930168666, -0.0189154092, 0.013677639, 0.00105498359, 0.0196880735, 0.0320061222, 0.00567982346, -0.00907137338, -0.0181427468, -0.0132690193, 0.00678309891, -0.0032615338, -0.0146806166, -3.20395557e-05, -0.0187073853, 0.0195246264, 0.00255016284, 0.0164488293, -0.0083581442, 0.0115751019, 0.0138633763, 0.0116568254, -0.0179644395, -0.000724836893, -0.0116791138, -0.0265677553, -0.0331354, 0.00317238015, -0.0012509356, -0.00110791856, -0.0115528135, -0.0132615892, -0.00126765191, -0.0037927404, -0.00352156488, -0.00649706461, -0.00488487119, 0.010341811, -0.0232244972, 0.00724372547, 0.0127266683, -0.0265083201, 0.00962858275, 0.0158098955, 0.00557952607, -0.0108395852, 0.0108618736, -0.0105795534, -0.0141977016, 0.0151115255, 0.0117756967, 0.0165082645, -0.00532320933, 0.0155424345, 0.0236405469, 0.00933140423, -0.000290677708, 0.00150818075, -0.0230313316, -0.0169986095, -0.0223626811, 0.00589156337, -0.00307951192, -0.000936112192, -0.00153418386, 0.0112333465, -0.0136999274, -0.00256502163, 0.00155368622, -0.00343984086, -0.01713234, 0.000235421074, -0.0331056826, -0.0103046633, 0.0062964689, -0.00617759768, 6.70392837e-05, 0.0118945688, 0.00960629433, -0.00256502163, -0.0185587965, -0.00170320412, -0.0117311208, -0.0183804892, 0.0248738378, -0.0105275474, 0.00888563599, 0.0297178477, -0.00574668869, -0.00950228143, -0.0012267899, 0.00309065613, -0.00117385504, 0.0191680118, 0.0224221162, -0.00731430529, 0.00357728591, 0.0132987369, -0.00545694, -0.0234771, 0.0198663808, -0.0143314321, -0.020520173, 0.0123997722, 0.00591013674, 0.0157058816, 0.0446956418, 0.00156111573, -0.0145023093, 0.0154681401, -0.00721400743, -0.0225409865, -0.0276673157, -0.0079123769, 0.0289897602, -0.0017598538, 0.0149703659, -0.0086999, -0.00241271779, -0.000956543197, -0.000592035241, 0.0149109298, -0.00398590649, 0.00725115463, 0.0325410441, -0.00878905319, 0.00516719092, 0.0202081371, -0.00614416506, 0.0150149427, 0.0380982794, -0.00799410138, -0.0390492529, 0.0131501472, -0.00558695523, 0.00794209447, 0.019286884, 0.0192720238, -0.0142348493, -0.00429051416, -0.0164339691, -0.00407134509, -0.00335625932, 0.0351859331, -0.0292126443, -0.00985146686, -0.0101709338, 0.019985253, -0.0150223719, 0.00862560514, 0.012065446, -0.00195209112, 0.000513097213, -0.0118277036, -0.0218277592, -0.0129421223, 0.00585070113, -0.0103120934, 0.0164042525, -0.0361071862, -0.0027414714, 0.0126300855, -0.00365901, -0.0112556349, -1.34368784e-05, -0.00124814955, 0.0164191108, 0.00941312779, -0.00823184382, -0.0235811118, 0.00927196816, 0.0186776668, -0.000342916115, -0.00610330282, 0.00777121726, 0.00283991173, 0.0095394291, -0.018425066, -0.00342683936, 0.0197326504, -0.024398353, -0.00188336859, 0.00415678415, -0.0419021659, 0.0209065061, -8.45681716e-05, -0.000925432367, 0.0228233077, 0.000836278778, 0.0105275474, 0.010557265, -0.0166865718, 0.0136033446, -0.0150966663, 0.0288263131, 0.0145245977, 0.00129458378, 0.0129866991, -0.00903422572, 0.0194206126, 0.0231056269, -0.00388189382, 0.00325410441, -0.00232727895, 0.000944006, 0.0240565985, 0.00727715809, -0.0280239303, 0.0207430571, -0.00440938585, 0.00436109398, -0.0094354162, -0.0145617453, 0.0260625519, -0.00327453529, -0.0097103063, 0.0269095115, 0.0170580447, -0.00160754984, -0.00108748744, -0.00636333413, -0.00334883, 0.018365629, 0.00749261212, 0.000577640662, -0.010936168, 0.0156018697, 0.00961372349, -0.00491830381, -0.0134696141, 0.00336183142, -0.00204495946, -0.00910109095, 0.00632990152, 0.00696140574, 0.00196137791, -0.00281576603, 0.0138410879, 0.015245256, -0.00479571754, 0.0128678279, -0.0237742774, -0.00366458204, 0.0184102058, 0.019717792, -0.0187816806, 0.00894507207, -0.0173403639, -0.00781579409, -0.0305796657, 0.0372067466, -0.0407431684, -0.000805632269, -0.0137445042, -0.0224815514, 0.00789008848, -0.00114785181, 0.00823184382, -0.00485143857, -0.00716571603, 0.00947256386, -0.0313226096, -0.012711809, -0.004821721, -0.00875190645, 0.00586184533, 0.00955428835, -0.00139209547, 0.0112556349, 0.0065602148, 0.018692527, 0.0101635037, -0.00890049525, -0.0165082645, 0.00190751429, -0.0245618019, 0.0095394291, -0.0187816806, 0.00348627497, 0.00350113399, 0.0219169129, -0.00202824315, 0.00054142205, 0.00604386721, -0.00471027894, -0.000592963945, -0.00875933561, -0.00485143857, -0.0277713295, -0.000610144576, 0.023536535, 0.0027228978, 0.0127712451, 0.00707656238, 0.00980689, 0.00666794227, 0.0175335295, -0.00739974389, 0.00408620387, 0.00390418223, 0.0173998, -0.00744060613, -0.000458072755, -0.0115379542, 0.0274444316, -0.0390195325, -0.019064, -0.00265046046, 4.6056859e-05, 0.00436109398, 0.000419300253, -0.0179495793, -0.00498888362, 0.00156204437, 0.0191085767, -0.0128975455, -0.00447253603, 0.0121694589, 0.0174146593, -0.00117664097, -0.00243314868, 0.0157504585, 0.00696140574, -0.00263560168, 0.0297772828, 0.0143314321, 0.00482543558, 0.013521621, -0.00355871231, 0.0333137065, 0.00625189207, -0.0121025937, 0.000781486509, -0.00279533514, 0.00154904276, -0.000410013425, 0.00715457182, 0.0113522178, 0.0161367916, 0.0187073853, 0.000242386188, 0.0263300128, 0.0193760358, -0.0192125887, 0.00565382047, 3.3026281e-05, 0.0161070731, -0.0172512103, 0.00709142117, 0.0154384216, -0.00262631476, 0.00480686175, -0.0209213644, -0.00299035851, -0.00747775333, 0.00259102485, 0.00702084135, 0.00968801789, 0.0149480775, 0.014004536, -0.00749261212, 0.003298681, 0.0044056708, -0.000536778651, -0.000570675533, 0.00498516904, -0.0108395852, 0.00238485727, 0.0168797374, -0.00419021631, -0.02111453, 0.0101412153, -0.0117979851, -0.0213076975, 0.00826156139, -0.00950971153, 0.00570582692, 0.00689825555, -0.00377788139, -0.00782322325, 0.0115899602, -0.0035308518, -0.0110476101, -0.00842500944, -0.00102898048, -0.012548361, 0.0240120217, -0.00606244104, -0.00363114942, 0.00680910191, -0.0119242864, 0.0308174081, 0.000682581798, 0.00260959845, -0.0143611496, -0.0189005509, -0.012600367, 0.0163002387, -0.0232393574, -0.0043313764, -0.00109120226, 0.00502231624, -0.0117311208, -0.0212185439, 0.00557209644, -0.00665308302, 0.00216197339, 0.00258731, 0.0101189269, -0.0332839899, 0.00906394329, 0.00518947933, -0.0114116538, -0.00017679797, 0.0198663808, -0.0106835663, 0.011471089, -0.0054457956, 0.00484029436, -0.0187519621, 0.0134473257, 0.00532692438, 0.0198069457, 0.00870733, 0.0132690193, -0.0158098955, 0.0265083201, 0.00160104909, 0.0240565985, -0.00338411983, 0.0285885688, -0.00686853752, 0.013306166, 0.000228339864, 0.0070357006, 0.0119688632, -0.0229570381, 0.000466895261, -0.00549037242, -0.0164488293, -0.00398219144, -0.00253716134, -0.00338411983, -0.0168054421, -0.0021471146, 0.00240157358, -0.00131408602, 0.00512632867, 0.0157504585, 0.00840272103, -0.0178455673, -0.0188559741, 0.0139228115, 0.0125037841, 0.00296064047, 0.00194094691, 0.0213076975, -0.0153789865, 0.00788265932, -0.0208916478, -0.00907137338, 0.00423850818, 0.00958400592, -0.0134473257, 0.00679424312, -0.0134176081, 0.00159083353, 0.00729573146, 0.020520173, 0.0239080079, 0.0105869835, -0.00527120335, -0.0320655592, 0.00982917845, -0.0274592917, 0.0144948801, -0.00694283238, -0.0123031894, -0.00250372873, -0.00693911733, -0.0142645668, 0.000863210589, -0.00499631325, -0.00250001391, 0.00322995847, 0.0098886136, -0.019227447, -0.00452082744, 0.026285436, -0.012600367, 0.00220469292, -7.87203703e-07, -0.0128232511, 0.0174592361, 0.00716571603, -0.00320024067, 0.0198961, -0.010557265, -0.0199703928, 0.00352899451, 0.0149109298, 0.0163596757, -0.0171174798, 0.00874447636, -0.0158693306, 0.0115973903, 0.0249332748, -0.00197809422, -4.9075079e-05, 0.0106241303, -0.00632618694, -0.00512632867, 0.0059844316, -0.00705427397, 0.032749068, -0.001232362, 0.0187816806, 0.0195543431, 0.0357208513, -0.0035122782, -0.00940569863, -0.0083878627, -0.0121694589, -0.00445024762, -0.0148366354, -0.00486258278, 0.00102712307, 0.0131501472, -0.00663450966, -0.00507060764, 0.000636147684, 0.0237594191, 0.00458769267, 0.0255573485, -0.00854388159, 0.00226970064, -0.0206687637, -0.00349556189, 0.0116048194, 0.0246063787, -0.000734588073, 0.0103863878, -0.0132838776, 0.0163893923, -0.023699984, 0.02154544, 0.00507060764, 0.0059472844, -0.00157783192, 0.0181427468, 0.00547179859, -0.0125706494, -0.0261962824, -0.0117534092, 0.024829261, 0.0157058816, -0.0186033733, -0.00959886517, 0.00553866383, 0.0139971059, 0.003567999, -0.0106687071, 0.0101114977, 0.00799410138, 0.00103919604, -0.0057095415, 0.00456168968, -0.0198663808, 0.0195394848, -0.0274890084, 0.00286962977, 0.00673480704, -0.00747403875, 0.0127192391, 0.0111961989, 0.0106687071, 0.0124220606, 0.0106092719, 0.00335811684, -0.0176524017, 0.0120282993, 0.000212668354, 0.0188856926, -0.0181427468, -0.0143165728, -0.00207096245, 0.00762262801, -0.00478457334, -0.00704312976, -0.0106538488, 0.00118499913, -0.0148514947, 0.00522291195, 0.00880391244, 0.0100372033, 0.00734030828, 0.00625189207, 0.00176263985, 0.00147939159, -2.16354056e-05, -0.0189154092, 0.00610701786, 0.0128306812, 0.0391978398, -0.0109064505, 0.00794952456, 0.0106612779, 0.0181576051, 0.00785294082, -0.00665679807, -0.0163002387, 0.0168945957, 0.00318166707, 0.0133730313, -0.00209696568, 0.019064, -0.00855131075, 0.00181093137, 0.0116196787, -0.00673109246, -0.00532320933, 0.00184436387, 0.0134027489, -0.00138930941, 0.00206539035, 0.0104086762, -0.0252750292, -0.0199555345, 0.00827642065, -0.0237445608, -0.00111999142, 0.00719543407, -0.00374259148, -0.00935369264, -0.00059389259, 0.0207430571, 0.000461090967, -0.0188708324, -0.0070245564, 0.0102377981, 0.000693261682, -0.0117385499, -0.000337576173, 0.0150595196, 0.00948742311, -0.0278010461, 0.00432394678, -0.00668280106, -0.0124072013, -0.0024721534, -0.0065565, -0.00392647041, -0.00308136921, 0.00394504424, -0.0238337144, 0.0123403361, -0.00550151663, 0.000795881089, 0.0339972191, -0.00120078679, -0.0183804892, -0.0132541601, -0.0103492402, -0.00518947933, -0.00676452508, 0.0279199183, -0.0199703928, 0.00291977846, 0.00539007457, -0.0177415553, 0.0209808, 0.00362186274, 0.0070728478, 0.0309957154, 0.0189005509, -0.0174295176, -0.0160476379, 0.00712485379, 0.00628532469, -0.00930168666, -0.0161516499, -0.011367077, 0.00350484857, 0.0158396121, 0.0113745062, 0.0128381103, -0.00113949378, 0.0165231228, -0.00677566929, -0.0110476101, 0.0243834946, 0.0128083928, 0.0104829706, -0.00434623519, 0.0172066335, -0.0198663808, -0.00509661064, 0.00495916605, 0.0133656021, -0.00881877169, 0.00169577473, -0.00397847686, -0.0117385499, -0.00861817598, 0.0100743501, -0.0113522178, -0.0158247538, 0.00563153205, 0.00854388159, -0.00551637542, 0.00360514643, 0.0215305798, 0.00784551166, -0.0115453834, 0.0223478209, -0.030698536, 0.000196996829, 0.0155424345, 0.0179050025, 0.00857359916, -0.0113819353, 0.00147474813, 0.00631504273, -0.0105498359, 0.0178901441, 0.000100820122, 0.0183804892, -0.0129346931, -0.00965087116, -0.00422736397, -0.00786037091, -0.00426451117, 0.0255276319, 0.0105349766, -0.0148217762, -0.0142571377, -0.0214562863, -0.00357542862, 0.0022325532, 0.00775635801, 0.00155182881, 0.0237891376, -0.0106761372, 0.0110550392, -0.00310180034, -0.00872218795, 0.0103789587, 0.0248738378, -0.015245256, -0.017726697, -0.00989604369, 0.00555723766, 0.00588784833, 0.00225484162, 0.014650899, -0.00918281451, -0.00404905668, 0.000583212764, -0.00796438288, 0.00851416308, 0.000739231473, -0.0121843172, 0.0332839899, 0.000696047733, 0.00419021631, 0.0105721243, 0.0208322108, 0.000395618845, -0.00151561026, -0.0017858569, -0.0177564137, -0.0158098955, 0.0132021541, 0.00114692317, -0.0134696141, -0.00195952062, -0.00366272475, -0.00670508947, 0.0295246821, 0.0235811118, -0.0240565985, 0.0132021541, 0.0106389895, 0.00395247387, -0.015081808, -0.00718429, 0.00724001043, -0.0141382664, -0.00161219318, -0.0141754132, 0.00342312455, -0.00738859968, -0.00517833512, -0.002490727, 0.0190045629, -0.0181873236, 0.0121768881, -0.0145691745, -0.00102526578, 0.0146954758, -0.000973259506, 0.0117385499, -0.0161219332, -0.0159733426, 0.00450596865, 0.0326599143, 0.0213671327, 0.00380388461, 0.00627789553, 0.0202229954, 0.0106389895, -0.0142868552, 0.0168203022, -0.00804610737, -0.00678681349, 0.0212631207, 0.0223181043, 0.0223478209, 0.00193166011, -0.0123403361, 0.0319466852, -0.0649632141, -0.00511147, 0.00782322325, 0.0123923421, -0.00840272103, -0.00212482619, 0.0209510829, -0.0179050025, 0.0320952758, 0.00492573343, 0.0111144753, 0.0181724634, -0.0127192391, -0.000713228364, -0.0345618576, 0.0105646951, 0.0138039403, 0.00686110789, 0.002490727, 0.0102600865, 0.000788915961, 0.0158693306, -0.0259139631, 0.0119688632, 0.0136627806, 0.00439081201, 0.00537893036, -0.00418278715, 0.00237928517, -0.0140639711, 0.00809811335, 0.00289749, -0.00390418223, -0.0122957593, 0.00847701635, -0.00439824164, 0.00920510292, -0.00172549253, -0.00956914667, 0.00667908648, -0.00161683664, -0.00740717351, 0.0109138796, -0.0171769168, -0.0181576051, -0.0086404644, -0.00960629433, -0.00957657676, -0.0197326504, 0.01713234, -0.0200298298, -0.00401190948, 0.00836557429, 0.00487744156, 0.00705427397, 0.0182021819, -0.0139896767, 0.0111070452, 0.0149109298, 0.0106835663, 0.00150075136, -0.036998719, -0.00521548232, -0.00488115661, 0.0157653186, -0.00210810988, -0.0113596469, -0.0272364076, -0.0167608652, 0.00492944801, -0.0202527139, -0.0195840616, -0.00484772399, -0.00606244104, 0.00492573343, 0.00773407, -0.015133814, -0.000607822847, -0.00484400894, 0.00200224, 0.00337669044, 0.00364972325, 0.0212928373, 0.0103120934, 0.0195840616, -0.0109435972, -0.00223812531, -0.00618502684, 0.00702084135, 0.00925711, -0.0115602426, 0.00506689306, -0.0210996717, -0.0189154092, 0.00763748679, -0.00711370958, -0.0155275753, 0.00871475879, 0.0164042525, 0.00259659695, 0.00699112378, 1.38359219e-05, 0.0078380825, 0.00177749875, 0.0170283262, -0.0277564693, 0.00750375632, -0.0172066335, -0.0105795534, 0.00617016805, -0.000821884198, 0.0139673883, 0.00647477619, 0.00387817901, 0.0142422784, 0.0065565, -0.0100594917, 0.00588413374, 0.00867018197, -0.0123774838, -0.000688153901, 0.00554609345, -0.00611444702, -0.0241457503, 0.00317795225, 0.0128752571, 0.0152303968, -0.00456540426, -0.000771271, -0.0193166, -0.0197326504, 0.0208322108, 0.00617016805, 0.00837300345, 0.00704312976, -0.00458769267, -0.00438709743, 0.021872336, -0.0164934061, 0.0108172968, -0.00665308302, -0.00154904276, -0.0108395852, 0.00430165837, -0.0232096389, -0.00892278366, -0.0125112142, -0.0111441929, 0.00737002632, -0.00760405418, -0.00253158924, 0.00670137443, 0.0118722804, 0.00520062353, -0.0105795534, -0.0203567259, 0.000361954095, -0.00505574886, -0.00366458204, -0.00481800595, 0.00566125, 0.00624817749, 0.0171026215, -0.00310737244, 0.0113745062, -0.00749261212, 0.0120728752, 0.00226598582, 0.0099851964, 0.0187965389, -0.00620360067, 0.0074220323, 0.00365715264, -0.0108767319, -0.0122586126, -0.0330165289, -0.0102675166, -0.0104681114, 0.00197066483, -0.0024591519, 0.00265231798, 0.00874447636, 0.00323367328, 0.00350484857, 0.0215305798, -0.0153789865, 0.0138485171, 0.0155275753, 0.00271361088, 0.00606987, 0.00511518447, 0.0277713295, 0.0156167289, -0.00279719243, -0.00865532272, 0.00594356935, -0.00565382047, -0.0170134678, 0.0126226554, -0.00883363, 0.00290677696, 0.00116642553, 0.00881877169, -0.00676452508, 0.00217497488, -0.0266420506, -0.0121694589, 0.0208619293, -0.0280536488, 0.00616645347, 0.0188411158, -0.00875190645, 0.00395990303, -0.0163002387, -0.01077272, -0.00551637542, -0.0226152819, -0.0304607935, -0.0149406483, 0.00508918148, 0.0308174081, 0.0205053147, 0.0206093267, 0.00409734808, 0.0179941561, 0.015676165, 0.0260328352, 0.0336108841, -0.0284548383, 0.00318166707, 0.0142942844, 0.0116716847, 0.00739602931, -0.0011107045, 0.00722143706, 0.00560552906, -0.00745546492, -0.0100669209, 0.00303865, 0.0194949079, 0.0410106294, 0.0177861322, 0.00624074787, -0.0161516499, 0.00375930779, 0.00552380504, 0.00623331871, 0.0229124613, 0.0074220323, -0.00212482619, -0.0180981699, 0.00110513251, -0.0331056826, 0.0103046633, 0.00380388461, -0.0121397404, -0.00742946193, 0.0203567259, 0.0132615892, -0.000923110638, -0.000492201827, -0.00309808552, 0.00997033808, -0.00314451964, 0.00364972325, -0.0126523739, -0.0108767319, -0.0130609944, 0.00170506153, -0.00224926951, -0.00797181297, -0.0128009627, 0.0210550949, -0.00890792441, 0.00822441466, 0.0117756967, 0.0016493405, 0.00805353653, -0.0267312042, -0.00810554251, -0.0255424902, -0.00175892515, -0.0239971615, -0.00406391546, 0.00533806859, 0.00142552797, -0.0176375434, -0.0157504585, 0.005494087, -0.00662336545, 0.00340640824, -0.0300893206, 0.0125409318, 0.010393817, -0.0299704485, -0.00917538535, 0.0198812392, -0.0215157215, 0.00992576126, 0.00628903927, 0.0234176647, -0.029792143, -0.0108544435, -0.0219912063, 0.00566867925, -0.0090862317, -0.0123626245, -0.00420879, -0.009643442, -0.014383438, -0.0150446603, -0.00623703329, 0.00228084484, 0.00184622128, 0.00270618149, -0.00905651413, 0.00242571929, -0.0195394848, 0.0214265678, -0.00138373731, 0.00105498359, 0.00151375285, -0.00202638563, 0.00523034111, -0.00520062353, 0.0321844295, 0.0228827428, 0.00642648432, 0.00423107855, -0.0308174081, 0.00232913624, -0.00315566384, 0.00577269169, 0.00450596865, -0.0116048194, -0.00063289731, -0.00271918299, -0.00778607605, -0.00947256386, -0.0150669487, -0.0203121491, -0.0113967946, -0.00346027198, -0.0094354162, -0.0118277036, -0.00469170511, 0.0030107894, -0.00587298954, 0.0334920138, 0.0217980407, 0.000621753104, 0.000123050457, -0.00395247387, 0.0172957871, -0.00665308302, -0.00627046591, -0.00295878318, -0.0215305798, 0.0203418676, 0.00345841446, 0.00622588908, 0.00338783464, -0.00557581102, -0.0152303968, -0.00420879, 0.00957657676, -0.009532, 0.00845472794, -0.021976348, -0.0046434137, -0.00715085724, 0.0249629915, 0.0116493963, 0.0662113652, 0.022139797, 0.0123700537, -0.022674717, 0.011523095, -0.0117534092, -0.0117831267, 0.0358991586, -0.0116865439, 0.0305796657, 0.00726229884, 0.0135661978, -0.0256613623, 0.00983660761, 0.000944934669, -0.000989975757, 0.0244726483, -0.0121025937, -0.00157783192, -0.00372959, -0.00347513077, -0.0239228681, 0.000218008267, -0.0129866991, 0.0076969224, -0.0108098667, -0.011849992, -0.0154087041, -0.0165974181, 0.00275075831, 0.00560181448, 0.0189154092, 0.0145394569, 0.00644877274, -0.00979946, 0.00402305368, 0.00624817749, 0.0319466852, 0.0110550392, -0.0162408035, 0.0134473257, 0.0165677, -0.0202824306, -0.0139748175, 0.00590270758, -0.00489973, 0.00141252647, -0.00718429, -0.000548387179, -0.0210848134, 0.00465827249, -0.00861817598, -0.0134250373, -0.00919767376, 0.00160847849, -0.010884162, 0.0138708055, -0.00205424614, -0.0101560745, 0.00611816207, 0.0112779234, 0.00269503728, -0.0204755962, 0.0184399243, 0.00758919539, -0.0227935892, 0.0035178503, 0.00606987, -0.00304236473, -0.00443538884, -0.0206687637, -0.00611073244, -0.0098143192, -0.0123403361, -0.00887077767, 0.0127340974, 0.0117831267, 0.00105776964, -0.00867761113, -0.0256465022, -0.0227935892, -0.00654164143, 0.0086330343, -0.00559438486, -0.0123997722, 0.00436480902, -0.0217088871, -0.0216643102, -0.00208210666, 0.00261888537, 0.0137965111, 0.0200298298, 0.00110048905, -0.00898964889, 0.00489973, 0.0259882584, 0.00696140574, 0.0131575773, 0.0121546, 0.0229124613, 0.0261219889, -0.0012230752, 0.00925711, -0.0186033733, -0.0068722521, 0.0260625519, -0.00322995847, 0.0132170124, -0.00373701937, 0.0195840616, -0.0148440646, 0.0124294898, 0.0278307647, 0.0152155384, -0.00901936647, 0.00522662653, -0.0037760241, 0.00718057482, -0.00148960715, -0.004766, -0.00952457, -0.00582098356, -0.000879926898, -0.00076755631, 0.00285662804, 0.0132615892, 0.0212334022, 0.00144967379, 0.0264191665, -0.00352156488, 0.0174295176, -0.0024777255, 0.0159733426, 0.012065446, 0.0151040964, 0.0264786016, -0.00167905842, 0.0119094271, 0.00851416308, 0.0260031167, -0.0024535798, -0.00446882145, 0.00611816207, 0.0242051873, -0.0035364239, -0.00316866557, 0.000343844789, -0.0112407757, 0.038514331, -0.0151412431, 0.00190194231, 0.001367021, -0.0024851549, -0.00699483836, -0.0170283262, 0.00238114246, 0.0194949079, -0.0212631207, -0.0096583, -0.0163448155, -0.00176356849, 0.00226041372, 0.0175483897, 0.00523405569, 0.0167311486, -0.00745175034, 0.00305722351, -0.0184845012, 0.0132541601, 0.00442795921, 0.00482915, -0.00143760093, 0.00831356831, 0.0106909955, -0.0085364515, -0.00990347285, 0.00965087116, 0.00286220014, 0.0235216767, -0.00950228143, -0.0117979851, -0.000963972707, 0.0120877344, 0.0557804, -0.00358285801, 0.00553494925, 0.00582841272, 0.0012416488, -0.00464712828, -0.0167014301, -0.0252601709, -0.0189451277, -0.0198515225, -0.000629646878, -0.0160922147, -0.00292349327, 0.0238188542, 0.00434623519, -0.00646734657, 0.00663450966, 0.0252155941, -0.0218426175, -0.00692797313, 0.00426451117, 0.0347996, 0.0180981699, -0.0232542157, 0.0138930939, -0.0035494254, 0.00627046591, 0.00406020088]
11 Nov, 2021
jQWidgets jqxTreeMap theme Property 11 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTreeMap is used for showing the hierarchical data set of nested rectangles. Here each and every branch of the tree is represented as a rectangle, which is then tiled with smaller rectangles that represent sub-branches. Here the rectangle of the leaf node has an area proportional to a specified dimension on the data. The theme property is used for setting or getting the theme of the specified jqxTreeMap. Syntax: For setting the theme property: $('#jqxTreeMap').jqxTreeMap({ theme: "energyblue" }); For getting the theme property: var showLegend = $('#jqxTreeMap').jqxTreeMap('theme'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtreemap.js”></script><script type=”text/javascript” src=”scripts/gettheme.js”></script><script type=”text/javascript” src=”scripts/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxTreeMap theme property. In the below example, the value for the theme property has been set to “energyblue”. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css"/> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtooltip.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtreemap.js"> </script> <script type="text/javascript" src="scripts/gettheme.js"> </script> <script type="text/javascript" src="scripts/jqx-all.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTreeMap theme Property </h3> <div id="Tree_Map"></div> <input type="button" style="margin: 28px;" id="button_for_theme" value="Value of the theme property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { var Data_of_TreeMap = [{ label: 'GeeksforGeeks', value: 70, color: '#ff0300' }, { label: 'is a', value: 10, parent: 'GeeksforGeeks', color: '#ff5400' }, { label: 'Computer Science', value: 30, parent: 'GeeksforGeeks', color: '#008000' }, { label: 'Portal.', value: 15, parent: 'GeeksforGeeks', color: '#7fbf00' } ]; $('#Tree_Map').jqxTreeMap({ width: 390, height: 200, source: Data_of_TreeMap, theme: 'energyblue' }); $("#button_for_theme"). jqxButton({ width: 300, theme: 'energyblue' }); $("#button_for_theme").click( function () { var theme_Value = $('#Tree_Map'). jqxTreeMap('theme'); $("#log").html(( theme_Value)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtreemap/jquery-treemap-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtreemap-theme-property?ref=asr10
PHP
jQWidgets jqxTreeMap theme Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0261004455, 0.0104145743, -0.0101886615, 0.0407847688, 0.0650628507, 0.0104145743, 0.0203472022, 0.00758690061, -0.00693551917, -0.0212960355, 0.02814872, -0.00334350765, 0.0190971512, -0.0287210327, 0.00623518974, 0.0160247386, -0.0269890353, -0.0142852115, -0.0503935888, 0.00782410894, -0.0334350765, -0.0301668737, -0.0455138758, 0.0106932, -0.0184194129, 0.00425845385, 0.0115968511, 0.023073215, -0.0194134302, 0.0412064716, -0.0271998867, 0.0247449689, 0.0324109383, -0.0187959354, -0.064882122, -0.0264167227, -0.0239015613, 0.0370496809, -0.00214428781, 0.0012707588, -0.0122745885, 0.00421327166, 0.0151963932, 0.00302158203, -0.0111073731, 0.025257038, 0.00791447423, -0.0451222919, 0.00362401595, -0.0136150038, -0.0088934293, 0.026973974, 0.00370685058, 0.0396100245, 0.0167476591, -0.0242479611, 0.00169528637, 0.0474115424, -0.0268836096, 0.0359954201, 0.0458150916, -0.0325013027, -0.0298505947, -0.00835876912, -0.0150231933, 0.024398569, 0.0113558769, 0.0296096224, -0.0223804154, 0.00551226921, -0.000118545322, 0.0405739173, -0.00976695772, 0.0343086049, 0.0231334586, -0.0102187833, -0.00816297811, -0.0156482179, -0.0110471295, 0.029669866, -0.0027806086, 0.000469710125, -0.0178922843, 0.023073215, 0.00617118133, 0.019639343, 0.00926995, -0.0506948046, 0.0608458146, 0.0249257, -0.0349110402, -0.0117173372, 0.00743252691, 0.0238262564, -0.0261305664, 0.000297451683, -0.00346399448, 0.00612976402, -0.0631953, 0.0283445101, 0.0295493789, -0.00187131, -0.0337965377, -0.050092373, 0.0297752917, 0.00887083821, 0.0317482613, 0.0112504512, -0.00869763829, -0.0364171229, 0.0279378686, -0.0225460846, -0.0238563791, -0.0257841665, -0.0389473476, 0.0359652974, 0.0318687484, -0.0250010025, 0.0297752917, 0.000817050866, -0.0357243232, -0.0115817897, -0.0110471295, 0.0227870587, -0.022094259, 0.0165217463, -0.0114161205, 0.0190820917, 0.0518394299, -0.00699199736, -0.0159042533, 0.0212659128, 0.0178621616, 0.0118302936, 0.0100004012, 0.019518856, -0.000927183311, 0.0217629205, -0.0335555635, -0.0320193581, -0.036387, -0.021627374, 0.0107459128, -0.0112956343, -0.0131255267, 0.0289168227, 0.0153846536, 0.0268836096, -0.0398811176, 0.0174404588, -0.00768103125, 0.0109718256, 0.0293084048, 0.0172747895, 0.00896873325, 0.0135171087, -0.0426824354, 0.0117851114, -0.00518093072, -0.00437517557, 0.00461991411, -0.0174555201, 0.0340375118, 0.00912687182, -0.00256034359, 0.00369178969, -4.34175927e-05, -0.010738383, -0.0689184293, 0.0272450689, -0.000122369369, 0.000499831804, 0.0101133576, 0.0168832075, -0.0549720861, -0.0204676893, 0.0128167793, -0.0318386257, -0.00791447423, -0.0337061733, -0.0202116538, 0.0058360775, 0.0158440098, 0.042742677, 0.00481570512, 0.0256034378, -0.0023871439, 0.000317689701, -0.0238714404, 0.00541060884, -0.0181633793, 0.0527129583, 0.0596409477, 0.0349712819, 0.0223804154, -0.0263263583, -0.00329644256, 0.0310855843, -0.0170187559, -0.0229075458, 0.03653761, -0.0426221937, -0.00780151784, 0.0238413177, 0.0292180404, 0.0409052558, -0.0183742307, -0.0371701643, 0.0427728, 0.00232313527, -0.0178621616, 0.0167175382, 0.00896120258, 0.00603186851, 0.00452578394, 0.0262058713, 0.00564405182, -0.0238111969, -0.00230054418, 0.0093753757, 0.0173651539, 0.00446177553, -0.000966718, 0.02104, -0.100967906, 0.00810273457, 0.013878569, -0.0209044535, -0.0206634793, 0.0220038947, -0.0124251973, -0.0171844251, -0.0221846253, -0.024006987, 0.0431342609, 0.0434053577, -0.0305584557, 0.0169735719, 0.00861480366, 0.0297752917, 0.0148424627, -0.0489176251, -0.0248503946, -0.0161151048, 0.0312060714, -0.0207990278, -0.000209557547, -0.0146316113, 0.0116194421, 0.0271547046, -0.0110471295, -0.0293234661, 0.0116947461, 0.00919464603, 0.015889192, 0.0443391278, 0.00264129578, -0.0151587408, 0.0115215462, 0.00100342883, 0.0140592987, 0.0409353785, -0.00515080895, 0.0140291769, 0.0136225345, 0.0168530867, 0.0443993732, -0.0275011025, -9.54834e-05, -0.0260703228, 0.0236756485, -0.0400618501, 0.0303927865, 0.0152265141, -0.00737981405, -0.00372002879, -0.0341579951, -0.019594159, 0.023073215, -0.0218081046, 0.0251365509, 0.00221394422, 0.0406944044, 0.0511165075, 0.0204676893, 0.0076358486, 0.048676651, -0.0513574816, -0.0330736153, 0.00201250543, -0.0370195583, -0.021356279, 0.0111149037, 0.0211454276, 0.0180730149, -0.00466509676, 0.0131556485, -0.0514779687, 0.00856209081, 0.0108739305, 0.0100982971, -0.00598668586, -0.0259648971, 0.0258745328, 0.00862986408, 0.0684364811, 0.0216725562, 0.0182989277, -0.0022610093, -0.0135622909, 0.0164916255, -0.00374638522, -0.0378027223, -0.0475922711, -0.0176964924, 0.00508680055, -0.00493619218, 0.0247299075, 0.00335103809, 0.0297602303, -0.014812341, -0.0121239806, -0.0281939022, 0.0434053577, 0.0466283783, -0.00954857562, -0.0376521125, -0.0148424627, 0.00682256278, 0.00693551917, -0.0457247272, 0.00465756655, 0.0229376666, 0.0204978101, 0.0362363942, -0.024398569, 0.0168832075, 0.000555839331, -0.021627374, 0.00237020059, 0.010911582, -0.00514327874, 0.00315148197, -0.0414474458, 0.0255431943, -0.0681352615, -0.0101660704, -0.000383816223, 0.0320494771, 0.0134192128, 0.00141571939, 0.0223804154, 0.0430740155, -4.14173228e-05, 0.0212960355, -0.0120110242, -0.00870516896, -0.0345194563, -0.0124251973, 0.0176663715, -0.00190425559, 0.0188411176, 0.0413570814, -0.0266727563, 0.0267631225, -0.0226515103, -0.0161452256, -0.00325690769, -0.0176211894, 0.0374713838, 0.00910428073, -0.0245793, -0.0474717841, 0.0551226921, -0.025995018, 0.00335668586, 0.00673219794, 0.0031778384, -0.0204676893, 0.0138710383, -0.0476826355, 0.00348282047, -0.00193155336, 0.05129724, -0.00596409477, 0.0299259, 0.0145788984, -0.0516888201, 0.0291879177, -0.00693175383, -0.0435258411, 0.0188712385, -0.0145638371, -0.0328928865, 0.0113031641, -0.0163259562, 0.0214014612, -0.012432728, 0.0496706665, -0.0288565792, 0.0232539456, -0.0191272739, 0.00126887625, -0.0154524269, -0.0243533868, 0.00660418067, -0.0121616321, -0.012063737, 0.0173802152, -0.00354118133, -0.000102366685, -0.00623895507, -0.00637450255, 0.0464777686, -0.00261493935, 0.0319892354, -0.0119055985, 0.0627736, -0.00786176138, -0.0334049538, 0.0144282896, -0.0334953181, -0.0492489636, 0.0270492788, -0.0289620049, 0.0157687049, -0.0289318841, 0.00394217623, 0.0303777251, 0.0254076459, -0.00523740891, -0.0132083613, 0.00495125307, 0.00559510384, 0.00806508306, 0.00311947754, 0.00890849, 1.54579575e-05, -0.0114838947, -0.0149177676, 0.00682256278, -0.0216725562, 0.0356640816, -0.00482323579, -0.056176953, 0.0159343742, -0.0313265584, 0.00313265575, 0.0128619615, 0.0254829507, -0.0212809741, -0.00101001794, -0.0349110402, 0.0190067869, 0.0148876458, 0.00736475317, -0.0189766642, 0.0178922843, 0.0269287918, 0.00497007882, -0.0126360487, 0.00579089485, -0.00518846139, -0.0093527846, -0.0238714404, -0.0210550614, -0.0141647253, 0.0306789409, -0.0139086908, 0.0123875448, -0.0388268605, -0.00856962055, 0.0484658, 0.0505743176, 0.00405889796, -0.0182236228, 0.0198652539, 0.00267706532, 0.0368689485, 0.000326161418, 0.0452126563, 0.0207689051, 0.0490682349, 0.0198501945, 0.0158590693, -0.00847925618, 0.0423510969, -0.00582101662, -0.0309952199, 0.0237208307, 0.0137505513, -0.0144810025, -0.0362363942, -0.00388569804, -0.0161000434, 0.0290674306, -0.0327121541, -0.0191724561, 0.0343387276, -0.00379533297, 0.0180730149, 0.00650628516, -0.0267932434, 0.00697693648, 0.021356279, 0.00301781693, -0.0133815613, 0.0226213895, -0.0124101369, -0.0414775684, 0.0277420767, -0.013584882, -0.00254151761, 0.00181765575, 0.00466886209, -0.0258594714, -0.0342182405, 0.00976695772, -0.0037294419, -0.0109191127, 0.0147069152, 0.00620506844, 0.0263263583, 0.0123047102, -0.00293309963, 0.0489176251, -0.00518469606, -0.0168380253, 0.0242630225, -0.0161452256, -0.00277307816, 0.00294439518, 0.0489176251, -0.0350616463, 0.00474040117, 0.029082492, -0.0231033359, -0.0318988711, -0.00701458845, 0.00249068718, -0.00352988555, 0.0126812318, -0.0397606306, -0.0171241816, 0.00322866859, 0.00547838258, -0.0031119471, -0.0113709383, 0.00481570512, 0.030061448, 0.0230882764, 0.00590761658, 0.0330434926, -0.0067849108, 4.50648731e-05, 0.012922205, -0.0114613036, -0.0226364508, -0.023931684, -0.0100004012, 0.0117248679, 0.0141270729, 0.0307693072, 0.00897626393, 0.0298957769, -0.0300765075, -0.00691669295, 0.019247761, -0.00509056589, -0.022681633, 0.00835876912, -0.0120110242, 0.00895367283, 0.0117851114, -0.00488347886, 0.0099928705, 0.0567191429, 0.00549344346, -0.0093527846, 0.00713507552, -0.0357243232, -0.0137354909, 0.0421101227, 0.0359652974, -0.000745511847, -0.00439023646, -0.01015101, -0.0118528856, -0.0256184973, 0.0122971805, -0.00106178958, 0.0443391278, 0.0119809024, 0.000422644982, 0.0271547046, -0.0161301661, -0.0163711384, 0.000467356847, 0.0323506966, -0.0177266151, 0.0237208307, 0.0161000434, 0.00114556553, 0.024790151, 0.0058021904, -0.00760196149, 0.0185248405, -0.0244588125, 0.00994768832, 0.0110923126, -0.0196544025, -0.0175007023, 0.0272300076, 0.000698917371, 0.00283332146, 0.0245341174, -0.00914946385, 0.0303024203, -0.00822322164, -0.0370496809, 0.00487971399, -0.0215520691, 0.0109417038, -0.00481194025, 0.03653761, -0.0103091486, -0.0362966359, -0.0163259562, -0.00850184727, -0.0494296923, 0.00905909855, 0.0201062281, -0.0235702228, 0.00744382292, 0.0285403021, 0.0251516122, -0.0199556202, 0.0224858411, -0.00584737305, 0.0174856409, 0.0302723, 0.000253210455, -0.00954857562, 0.0548516, -0.00408901926, 0.0118227638, 0.00263753044, 0.0135095781, 0.0128017189, -0.000366637454, -0.0185097791, 0.0199706815, 0.0153921843, 0.0127941882, 0.0282240231, 0.0156180961, -0.00217629224, -0.0130803445, -0.0193531867, 0.011672155, -0.0183742307, -0.00149384758, 0.0310855843, 0.00043488192, 0.0267179403, 0.0124929715, 0.0311458278, 0.0430740155, 0.0061109378, 0.00872022938, 0.0145337153, -0.00388946338, -0.0160548612, 0.0130728139, 0.0211454276, -0.012997509, -0.00429610629, 0.0130803445, -0.00379721564, 0.0140216472, -0.0101886615, 0.0169283897, 0.0513273589, 0.0158289485, 0.00745135313, -0.0264769662, -0.0181031357, 0.0185248405, 0.0097744884, 0.0140969511, 0.00666818907, -0.015399714, 0.0307843685, 0.00412290636, -0.0161904078, -0.0102187833, -0.0103919832, -0.00576453842, -0.0247148462, -0.0360857844, -0.00386687205, -0.0219436511, -0.00958622806, 0.050002005, 0.0035468291, 0.00842654333, 0.00853196904, 0.00736851851, -0.00963141, 0.000378403725, 0.0313265584, -0.00972177554, -0.0187206306, 0.0523213781, 0.00346964225, -0.00777139608, -0.0128544318, -0.0330133736, -0.0193381254, -0.00805002172, 0.0158289485, 0.0330434926, 0.00720661459, -0.0250160638, -0.0137430215, -0.0245341174, 0.00125287403, -0.0325615481, -0.0091344025, 0.00332279899, -0.0108438088, 0.00870516896, 0.0113558769, 0.000689975, -0.0202267151, 0.0408148915, 0.0075454833, -0.0100606447, -0.0203321408, -0.00907415897, 0.00204450963, -0.00701835379, -0.0158741307, 0.00192967081, -0.00318348617, -0.0089837946, -0.0121465717, -0.0249558203, 0.00730827497, -0.0201212894, -0.00491736596, -0.0380135737, 0.00472157495, -0.0493694507, 0.0196995847, 0.0138409166, -0.00978955, -0.000954010407, 0.0181935, 0.00463121, -0.00769232679, 0.0432246253, -0.0396702662, 0.0330434926, -0.00563652115, 0.0108588692, -0.0374713838, -0.00283332146, 0.0225762073, 0.00108061568, -0.00997781, 0.0215520691, 0.0435258411, 0.0147746895, -0.00595279923, 0.00134982821, -0.00649498962, -0.00419821078, -0.00343199, 0.0116646243, -0.00583231216, 0.0321097225, 0.0449716821, 0.0021725269, 0.0147671588, -0.0343688503, 0.0168982688, 0.0162054691, -0.00553862564, 0.0232238229, 0.00293309963, -0.00869763829, -0.00525247, 0.000380051, 0.0170488767, 0.00251327851, -0.0215972513, 0.0434656, 0.0289168227, -0.00130464567, -0.0177416764, -0.00575700821, 0.0236003436, 0.0141722551, 0.0160849821, -0.0259046536, -0.0255431943, -0.0075793704, 0.0115516679, 0.00579466, -0.00487594865, -0.00942808948, -0.0263715405, -0.0050980961, -0.0110396, 0.000441941665, 0.0122896498, -0.0207990278, 0.00458979281, 0.0121239806, -0.0159193128, 0.0270492788, 0.0102714961, -0.00432999292, -0.0433149897, 0.0565384142, 0.00949586276, 0.0194887333, -0.000146254926, -0.0292632226, -0.0100079319, 0.0156632792, -0.0562974401, 0.0140894204, 0.00274672173, -0.00821569096, 0.0113558769, 0.00920970645, -0.00216311379, 0.00341504673, 0.00102978526, 0.00798224751, -0.01282431, 0.0243684482, -0.00302158203, 0.031778384, -0.00756430952, 0.0335254408, 0.0109868869, 0.0290523712, 0.0177567359, 0.00225912686, -0.00127264147, 0.0370496809, -0.0204074457, 0.0329230092, -0.00946574099, 0.0262058713, 0.0100380536, 0.00463874033, -0.0140367076, 0.0209797565, 0.00173952768, 0.0293385256, 0.00958622806, -0.0114236511, -0.011672155, -0.00573818199, -0.0487670153, 0.00787682179, -0.0176211894, -0.0132987266, 0.0339170247, 0.0166422334, -0.00175552978, 0.00207086629, -0.0235852841, 0.00685645, 0.0283896942, -0.000730921631, 0.0340073891, -0.0394895375, -0.00705600576, 0.0149478884, -0.0109266434, 0.0462970398, -0.0149780102, -0.0193080027, 0.0195489768, 0.00694305, -0.0240822919, 0.0106103653, -0.0134041524, -0.0478031226, -0.00451072305, 0.0255883764, 0.00414173258, -0.0336459279, 0.00339998584, 0.0374111384, 0.0210098792, -0.0321398452, 0.00786176138, -0.00139971729, 0.01194325, -0.00539554795, 0.00472534029, 0.0341278762, -0.0147069152, 0.00865245517, 0.0248353332, 0.0342784822, -0.00600551208, -0.0268083047, -0.0167777818, -0.0325013027, -0.0282692071, 0.0333748348, 0.00310065155, -0.0227569379, -0.0163862, 0.00178094499, 0.0208743308, 0.0234497357, 0.0111525562, -0.0317181386, -0.0493995734, -0.0081931, -0.0340977535, 0.0127565358, 0.000400053716, 0.0133137871, 0.0279077459, 0.00468015764, -0.00536919152, -0.0124929715, 0.0312964357, 0.0202417765, -0.0455741175, -0.019518856, 0.0480742194, 0.04060404, -0.0165066868, 0.000451119384, -0.0264619049, -0.0276517123, -0.0255431943, 0.00946574099, -3.04746791e-05, -0.0214014612, 0.0200459845, 0.00423962809, 0.0159946177, 0.00266388711, 0.025769107, -0.0246395431, -0.0198652539, 0.0185399, 0.010226314, 0.0247600302, -0.0176964924, -0.0228623636, -0.0109191127, 0.013291196, 0.014541246, -0.0195339154, -0.0228021201, 0.0105501218, -0.00597162498, -0.0235702228, -0.00430740183, 0.00893861149, 0.0281788409, -0.0190971512, -0.00396100245, -0.00455967104, 0.0152189843, -0.0157988258, 0.0185399, -0.00323431659, 0.0198050123, -0.00427351473, 0.0195339154, 0.00322113838, 0.0246244818, -0.00101660704, 0.0288415179, -0.00768479612, -0.0127188833, 0.0424715839, 0.0177115537, 0.00443165377, -0.00550473901, 0.0126962923, -0.00234384392, -0.024790151, 0.00911934208, 0.0154072447, 0.0139086908, -0.0268685482, -0.0171392411, -0.0322603323, -0.000221323833, 0.0314771682, 0.0183892921, 0.00298957783, -0.0207086615, -0.00826840382, 0.0355737172, 0.0161904078, -0.0354833528, -0.0177868586, -0.0170187559, 0.0275462866, 0.0325314254, 0.0300765075, 0.0120411459, 0.00519975694, 0.0334652, -0.00147690414, 0.00832864735, -0.0160398, -0.0107233217, -0.0291427355, 0.0058021904, 0.0254829507, 0.00193343603, -0.0126435794, 0.00374826789, 8.00695707e-05, 0.0246244818, 0.00367672881, -0.00261117402, -0.00400995, -0.00599421654, -0.00930760242, -0.00835876912, -0.0460861847, -0.0142550897, -0.00914946385, 0.0201965943, -0.0146240806, 0.0033265641, 0.0183591712, 0.0029293343, 0.00997027941, -0.0146090202, -0.00306864711, 0.008803064, -0.00315524708, 0.0020181532, -0.0105877742, -0.00578336464, 0.00283332146, -0.0059904512, 0.0301518124, 0.00798224751, -0.0192778818, 0.0368990712, 0.0220490769, -0.00163974951, -0.0140367076, -0.0211303663, -0.00891602, -0.0280131716, 0.0231033359, 0.00124910881, -0.00287097367, 0.00469145318, 0.0377123579, 0.000712095585, -0.000347340741, -0.00319666439, -0.00600174675, 0.00955610629, -0.00304982113, 0.0431643836, 0.0165368076, 0.00386687205, -0.0165970512, 0.0312361922, -0.00835876912, -0.0124703795, -0.0253474023, -0.0219587125, -0.0272450689, 0.00303664291, -0.0263414178, 0.00817050878, -0.0142776817, -0.000165786958, -0.00902897678, -0.000162021752, 0.0176964924, -0.00603563385, -0.0223653559, -0.000253210455, 0.0950038135, -0.000201556468, -0.00779398764, -0.0063556768, -0.0232840665, -0.0273354333, -0.0165970512, 0.0165970512, 0.0413570814, 0.013389091, 0.0339471437, 0.0412064716, -0.0130803445, -0.00289168232, -0.0107459128, -0.0182386842, -0.0163259562, 0.0224557202, 0.00939796772, -0.0207689051, 0.00051301, 0.0137204304, 0.0161000434, -0.00555368653, 0.0214767661, 0.0128167793, -0.0043036365, -0.018660387, -0.0233894922, 0.0238865, 0.0182386842, 0.0071501364, 0.0367183425, 0.00303287781, 0.016943451, 0.0285553634, -0.0174555201, 0.0032060775, -0.00940549746, -0.0120787974, -0.00333409454, -0.000963423459, -0.0069392845, -0.00655899802, -0.00561016472, -0.0206032358, -0.0295343176, -0.00663806731, 0.0198953766, 0.0407546461, -0.0154072447, -0.0132083613, -0.0166422334, -0.0156331565, -0.00308182556, 0.00231372239, -0.00209345738, -0.0212960355, 0.0163108949, -0.0186152048, -0.0110019473, -0.00497007882, 0.0268836096, -0.00585490372, 0.00649875449, -0.00269965641, -0.0272751916, 0.0318085067, -0.0175157636, 0.0337362923, 0.0258444101, 0.0239015613, -0.0150683755, 0.0035788333, -0.0328928865, 0.0180880744, 0.00158138876, -0.00640085945, -0.00185530784, -0.00142983894, -0.00821569096, -0.00793706533, 0.00133006088, 0.00706730178, -0.00878047291, -0.00815544743, -0.0153771229, 0.00121710461, -0.00952598453, 0.0182085615, -0.0314771682, 0.00786929205, -0.0135698216, 0.0155578535, -0.0129523268, -0.0254678894, 0.0216876175, 0.00365978549, -0.00150326057, 0.000808579149, 0.0311759505, 0.0116646243, 0.0131933, 0.0165970512, -0.013584882, -0.0231183972, 0.0140141165, -0.00451825373, 0.00582101662, 0.00495501794, 0.000890943105, 0.00853949878, -0.0101359487, 0.0074890051, -0.0138559779, -0.00364095927, -0.00380851119, -0.0021405227, -0.00765090948, -0.0148198716, -0.0100982971, -0.0162205305, 0.0149629498, 0.0067510237, 0.021356279, -0.00126134581, 0.000268035976, -0.00375391566, -0.00524117425, -0.0162205305, -0.00439776666, 0.00838889088, -0.0065100505, 0.00523740891, -0.017606128, 0.000760102, -0.022681633, 0.0037614461, -0.000440765056, 0.0458150916, -0.0244889352, -0.0114613036, -0.0114914253, 0.0261305664, 0.0288867019, 0.0100229923, -0.00835876912, 0.00514704408, 0.0098422626, 0.000535130675, -0.0258293487, -0.0135773523, 0.00933019351, -0.010226314, 0.0225912686, -0.00884824619, -0.01282431, -0.00769609213, -0.00433375826, -0.00252833939, -0.00225347886, 0.0304530282, 0.0122068152, -0.00591514679, 0.00646110252, 0.0156783406, 0.014812341, -0.0237961356, 0.00811779592, -0.00392335, -0.0161151048, -0.0179374665, 0.00405513262, -0.0082759345, 0.00563275628, -0.015030724, 0.0336459279, -0.00748524, 0.00878047291, 0.0143981678, -0.0156632792, 0.00944315, 0.0020181532, -0.000274389778, -0.00747017935, -0.00979707949, -0.0229376666, -0.0162054691, -0.00534283463, -0.00286344322, -0.0275613461, 0.0331338607, 0.00791447423, 0.00362589839, 0.00311571243, 0.00802743062, 0.00413043657, -0.0312060714, 0.00991756655, -0.0035750682, -0.00728191854, 0.0170639381, 0.022681633, 0.0216424353, -0.00503032235, 0.0117098074, -0.000236267, -0.000747394457, 0.024398569, -0.0136601869, 0.0352423787, -0.0325314254, -0.013486987, -0.00489100954, 0.0175609458, 0.0106706088, 0.0111751473, -0.016822964, -0.000716331473, 0.0100681754, -0.0157837663, 0.00655523269, -0.00944315, 0.00264129578, -0.00601304229, -0.0140216472, -0.00807261281, -0.00383298518, -0.00332091632, -0.00373697211, 0.00183271663, 0.0165669303, -0.00122557627, -0.00829099491, 0.00221394422, 0.00247750897, -0.0163410176, -0.0153394705, 0.00313830352, -0.00811779592, -0.00848678593, -0.0188863, 0.0190067869, 0.0265372097, 0.0091344025, -0.000110485416, 0.02030202, -0.0151060279, 0.0095335152, 0.0148198716, -0.0109492345, 0.0214918256, 0.0101058269, -0.0161151048, 0.0289318841, -0.00290486054, -0.0279981121, -0.0168681461, -0.033886902, -0.0359050557, 0.00187036872, 0.00192967081, -0.0126435794, -0.00608834671, -0.0367484614, -0.00687904097, -0.0206333585, -0.0316578969, -0.0327724, -0.00811779592, 0.00654770248, 0.00162845384, 0.0415679328, -0.00938290637, 0.0167476591, -0.0170789976, 0.0104974089, 0.00887083821, 0.0159343742, -0.00426221918, -0.0205881763, 0.0115817897, 0.0261757486, -0.00742123136, -0.0348809175, 0.0146617331, -0.00307806022, 0.016551869, 0.000797754154, -0.00131876522, 0.0297301076, 0.0414775684, -0.0308295507, -0.010053114, -0.00356377242, 0.0356038399, 0.00942055881, -0.0290071871, -0.013976464, -0.0146843242, 0.0105124703, -0.0174856409, 0.00484206155, -0.00664559798, -0.0314470455, 0.00247562653, -0.00404383708, 0.014812341, 0.0140291769, -0.00820816, -0.0206032358, -0.0182386842, 0.00994015764, 0.0110019473, -0.00230619195, -0.00604316406, -0.0151436795, -0.00574194733, -0.0307542458, -0.0194435511, -0.00587749481, -0.0182537436, -0.0187808741, 0.0174404588, 0.0341579951, -0.0135924127, -0.0131029356, -0.00795965642, 0.00754924864, 0.0145337153, 0.0227418765, -0.0101058269, -0.0108588692, 0.0170036945, 0.00696940627, 0.0193080027, 0.0181332584, -0.0187206306, 0.000201438801, -0.00783164, -0.00170469948, -0.00613729423, -0.0219436511, 0.0239618048, -0.00110508956, 0.00732333586, -0.020964697, 0.00512445252, -0.0132836653, -0.00191743381, 0.0203472022, -0.0164313819, -0.0266125128, 0.0147596281, -0.00526, 0.0307843685, 0.0135472305, 0.00348658557, 0.026702879, 0.00829099491, -0.00811779592, -0.00153149967, 0.0171392411, -0.00514704408, 0.0080199, -0.0192628205, -0.0230280329, 0.00875788182, 0.0176513102, 0.0168681461, -0.00982720125, 0.0175007023, -0.000174376342, -0.000961540849, 0.00257728714, 0.0296397433, 0.00179977098, -0.0100982971, 0.00582854729, -0.00504538324, -0.0195339154, 0.00796718709, -0.0193833075, 0.00213675736, 0.0132234218, -0.0262209307, -0.002869091, -0.0196092203, -0.00541813904, -0.00983473193, 0.00533906976, 0.00251139584, -0.00871269871, 0.0230430923, -0.0013620652, -0.0103919832, -0.0268384255, 0.0238111969, -0.0182838663, -0.00923229847, 0.00632932037, 0.00699199736, -0.0060243383, 0.00965400133, 0.0273053125, 0.0134418048, -0.00151832146, -0.0275914688, 0.0140141165, 0.0197598282, -0.0133363781, 0.00438270578, -0.0351821333, -0.00958622806, -0.000163316043, 0.0262510534, 0.00393088069, 0.00938290637, 0.0264769662, -0.00564405182, 0.0109341741, -0.0102790268, -0.015128619, -0.0158289485, 0.0249407589, -0.0386160053, 0.0143981678, 0.00356189, -0.00808014348, 0.0184043534, -0.00596032944, -0.0003854635, -0.00444294931, -0.00308182556, -0.00669078063, -0.00737981405, -0.0184043534, 0.00789188314, -0.00847925618, 0.0218382254, -0.0221545026, -0.0031816035, 0.0244588125, 0.0119959628, -0.00437141024, 0.00798977818, 0.0183591712, 0.00886330754, -0.00364660705, -0.00686774543, 0.000283567468, -0.0111676166, -0.0156934, 0.00640085945, 0.0018035362, 0.0114085907, -0.0225159638, -0.0194284897, -0.00666065887, 0.00670584152, 0.0127188833, -0.00538801728, 0.00334539032, 0.0171844251, 0.00903650746, -0.0142776817, -0.00949586276, -0.0192778818, -0.0220641382, -0.00454461, 0.0245341174, -0.0369894356, 0.00640085945, -0.000311100594, 0.0084943166, 0.0105953049, -0.00753795309, 0.0306036379, -0.0192628205, -0.0022327702, -0.00948833209, 0.0299861431, 0.000215323016, 0.00660418067, 0.00622012885, 0.00780904805, -0.00666818907, 0.00648369407, 0.00658912, 0.00466886209, 0.0140668293, 0.00829852559, -0.00473663583, 0.0172747895, 0.0080349613, 0.0175157636, -0.00239090924, 0.00914193317, -0.0131029356, -0.00637073768, -0.000369932, -0.0055612172, 0.00395723712, 0.0174555201, 0.0127565358, 0.00994015764, -0.010542592, -0.0212056693, 0.0118980678, 0.0182085615, -0.000759160728, -0.0204074457, -0.0270342175, 0.0163108949, 0.00544449547, -0.0164615046, -0.00503408769, -0.00538425194, 0.0106781395, 0.00910428073, 0.0228171814, 0.00309500378, 0.0185700227, -0.0116043808, 0.00280131726, -0.00463497499, 0.0133589702, -0.0057720691, 0.0276517123, -0.00670960639, 0.0169133283, 0.0233292487, -0.00664936332, 0.00370873325, 0.00201250543, -0.0213110968, 0.00289168232, -0.00990250614, -0.0202869587, 0.0142324986, -0.00115497853, 0.00372191146, -0.00971424486, 0.00526, -0.00520352181, 0.00957869738, -0.0198953766, -0.00265635666, 0.00298393, -0.0183441099, 0.0151436795, 0.00639709411, -0.0163259562, 0.018660387, 0.00396100245, 0.0119357202, -0.00346399448, -7.31274631e-05, -0.0052863569, 0.00207086629, -0.00312136021, 0.00746641401, -0.00911934208, -0.0208592713, 0.00678867614, 0.006841389, -0.00259234803, 0.0118905371, 0.00631425949, -0.0256034378, -0.0028126128, 0.000234619729, 0.00190049037, 0.022290051, 0.0118152332, 0.050002005, -0.000700329314, -0.00914946385, -0.0147144459, -0.00981967151, -0.00529765245, -0.0198501945, -0.00300275604, 0.0152340448, -0.0174705796, 0.00582101662, 0.00263753044, 0.0140442383, 0.00629166793, 0.000625025074, 0.00478181848, -0.0126059279, -0.0269890353, -0.00156350399, -0.00789941289, -0.00657029357, -0.0118302936, -0.010128418, -0.0130426921, -0.00623518974, -0.0167024769, -0.00869010761, -0.00667948509, -0.02030202, -0.0214767661, -0.0192929432, 0.0132083613, 0.00761325704, -0.0190971512, 0.00243044388, 0.00411914103, -0.0146466717, 0.00631049415, 0.0111374948, 0.0102714961, -0.0226966944, 0.00338869, -0.00175741233, -0.00978955, 0.0181633793, 0.00462367944, 0.00881812442, -0.00921723712, 0.00566664292, 0.0191875175, 0.0024436221, 0.0123498933, -0.00411537616, -0.0239166226, 0.00987991411, 0.0225310251, 0.00960881915, -0.00330209034, -0.0118980678, -0.00478181848, 0.0164464433, -0.007270623, -0.0150909666, 0.00421703653, -1.62668894e-05, -0.0168681461, 0.016551869, -0.0282390844, -0.00240408746, 0.0141421333, -0.00446177553, -0.00471780961, 0.0193381254, 0.00649122428, 0.000759160728, -0.0152340448, 0.000687621708, -0.0133665, 0.00262435223, 0.0135472305, -0.0167476591, 0.0247299075, 0.0298355352, -0.0213713385, -0.00667948509, -0.00218570512, 0.00826087315, -0.00152020401, 0.0136225345, 0.0128694922, -0.00214805314, 0.0168982688, 0.00750783132, 0.00479311403, -0.00560263451, 0.0197447687, -0.0097744884, -0.00282579102, 0.00777892675, 0.00822322164, 0.0127414754, 0.0375918709, 0.0172898509, -0.0138710383, 0.0104522267, -0.019247761, -0.00474793138, -0.013486987, 0.0101585397, 0.0237208307, -0.00254528294, 0.0053503653, -0.0112579819, -0.0020746314, -0.00624272041, -0.00675478904, -0.00343952049, -0.0170338154, -0.00520728715, 0.0200008024, -0.00859974232, 0.00514704408, 0.0152340448, 0.0175157636, 0.00367484614, 0.0374713838, 0.00447307108, -0.0131104654, 0.0121315112, 0.00188825349, 0.0123122409, 0.00857715122, 0.00873529, -0.0293837097, 0.00569676468, -0.000102131358, -0.0103693921, -0.00338115986, 0.013682778, -0.0082533434, -0.00453331461, -0.00359389419, 0.0126059279, 0.00183365785, 0.0252269153, -0.000237208311, 0.00652887626, -0.0193531867, -0.000156373935, -0.0282541458, 0.0101811318, 0.00261305668, -0.0122369369, 0.01780192, -0.0226364508, -0.010738383, 0.014932828, -0.0136300651, -0.0220490769, -1.2994391e-05, -0.0123649538, 0.0101660704, 0.00735722296, 0.0188109949, -0.0204827487, 0.0141044818, 0.0116269728, -0.0173651539, -0.00651381537, 0.000543602393, 0.0106932, 0.0135095781, 0.00697317114, 0.0029632214, 0.0108061563, -0.0189013612, -0.010911582, 0.00713884085, -0.0283746328, -0.00151549757, 0.0131707089, 0.0141346036, 0.0120110242, 0.0123498933, 0.0164615046, 0.0135246394, -0.00969918445, -0.00582101662, -0.0235852841, 0.00703341467, 0.0111149037, -0.0012707588, -0.00998534076, -0.0275161639, 0.00657782424, -0.00855456, 0.00640085945, -0.000120957411, -0.0171241816, -0.00359577686, 0.0175760072, -0.00740617048, -0.00675478904, 0.00101378316, -0.00485335756, 0.00622765953, -0.00562146027, -0.0110245384, 0.019323064, -0.000104366954, -0.0124402577, 0.00583984284, 0.0192176383, -0.00582101662, 0.000170022817, -0.0138635077, -8.8423636e-05, 0.022952728, -0.0108588692, 0.0144810025, 0.00376332877, 0.0102714961, -0.00232313527, 0.0164916255, 0.00377274165, 0.00683762366, -0.0226665717, -0.00900638569, 0.00947327167, -0.00906662922, 0.0234497357, -0.00286156056, 0.0153695922, 0.00729697943, -0.00261493935, 0.00256034359, -0.00251704385, 0.0104748178, 0.0163410176, 0.00976695772, -0.0145337153, 0.0151060279, -0.0141873164, 0.0017122298, -0.0410859846, 0.0334049538, -0.0403028205, -0.00643474609, 0.0132234218, -0.00841901265, 0.0117926421, 0.0112730423, 0.00579089485, -0.0237961356, 0.00404007174, -0.00677361526, -0.0285854843, -0.00837383, 0.00142701506, -0.0170036945, 0.0112730423, 0.0015606801, 0.00410408, 0.0161301661, 0.00477052294, 0.00845666416, 0.0139839947, 5.70076518e-05, -0.00787682179, -0.013095405, -0.0162054691, 0.0043036365, -0.02334431, 0.00991003588, -0.00661547622, 0.0218382254, 0.00219135289, 0.0107534435, 0.0051621045, 0.0161151048, 0.0116947461, -0.0103543308, -0.00249068718, -0.0232539456, 0.0103618614, -0.000864116, 0.0100681754, 0.00689410185, 0.0108287474, -0.0124854408, 0.00102884404, 0.000364048872, -0.010542592, 0.00691292807, -0.0186453257, 0.00396476733, -0.00829099491, -0.00326820347, 0.0107685039, 0.0249708816, -0.0265070871, -0.00664559798, 0.00617871154, 0.000737510738, -0.00474793138, -0.00265259133, 0.00129805657, -0.00285214768, -0.00608458137, 0.0112956343, -0.0130502228, 0.00520352181, 0.0162054691, 0.00372002879, -0.0015164389, 0.00487594865, 0.013878569, -0.00404383708, -0.0102413744, 0.0232840665, 0.0177115537, 0.000241914822, 0.00484206155, -0.0120260846, 0.0182085615, 0.00431869738, -0.0122519974, 0.000467121514, -0.0206032358, 0.00847172551, -0.0108438088, 0.00755677931, 0.0142550897, 0.00848678593, 0.0114161205, 0.0110019473, 0.0319892354, 0.0280884765, -0.0225611459, -0.00394594157, 0.00917205494, 0.0161000434, -0.0208442099, 0.013020101, 0.00634438125, -0.000768103113, 0.00910428073, -0.0243835077, -0.0327422768, 0.00475169672, -0.00927748065, -0.00580595573, 0.00535789551, 0.0202417765, 0.00634438125, 0.0104597574, 0.00337174674, 0.00930007175, 0.00252833939, 0.0122896498, -0.00919464603, -0.00148066937, -0.00367484614, 0.0186001435, -0.0101811318, -0.00681126723, -0.00271283486, 0.00160398, -0.00181953842, 0.0209797565, 0.00304417335, 0.00458979281, 0.0119055985, -0.000255328399, 0.0108965216, -0.00120298506, -0.00641592, -0.0215219483, 7.84222939e-05, -0.0149704805, 0.00239090924, 0.0194134302, -0.00926242, 0.0089837946, 0.0120486766, -0.0325916708, 0.0252419766, -0.00502655702, 0.0189013612, 0.0111224344, 0.000792106322, -0.0107459128, 0.00405513262, -0.0242178384, -0.00762831792, -0.0101886615, 0.00841148198, 0.00111356121, -0.0311458278, 0.0244286917, -0.00348846824, -0.00947327167, 0.00375956343, 0.00973683689, -0.030332543, 0.0113483472, 0.0154524269, 0.0018600144, -0.00452954927, 0.0223502945, -0.000386875472, 0.00607328583, -0.0262811743, 0.0142099075, -0.0100681754, -0.00682632811, 0.00541060884, 0.00569299934, -0.00471780961, 0.00421327166, -0.00961635, 0.0224557202, 0.00689410185, 0.0140216472, -0.00311759487, 0.0100079319, -0.00298393, 0.00695811072, 0.013095405, 0.0241575949, 0.00582854729, -0.0138258561, -0.00491736596, -0.00727815367, -0.00711248396, -0.00770738767, 0.00248503941, 0.00140442385, -0.00884071644, -0.00758313574, 0.00318725128, 0.000200026858, 0.0149855409, 0.0191875175, 0.0195791, -0.0158741307, -0.0175308231, 0.0159946177, 0.0315374099, -0.00894614216, 0.0196995847, 0.0146843242, -0.0245039947, 0.00258481759, -0.00801236928, 0.00936784595, -0.0179675892, 0.015128619, 0.0113709383, 0.0111374948, -0.00808767416, 0.0089837946, -0.000258858287, 0.0281939022, 0.0233593713, 0.0101058269, 0.00257916981, -0.0174404588, -0.0032663208, -0.0191875175, -0.000429234089, -0.00160680397, -0.00709365821, -0.00482700067, -0.00222335733, -0.00396476733, 0.00709742354, -0.00228548329, -0.0194586124, -0.00823828205, -0.00914946385, -0.0112881036, -0.00258670026, 0.0141270729, -0.0280583538, 0.00615612045, -0.00408901926, -0.0248654559, 0.0159042533, 0.0121315112, -0.000889531162, 0.031778384, -0.0184947178, -0.027094461, -0.00617118133, -0.00762078771, 0.0156180961, -0.024006987, -0.00717649283, 0.000730451, 0.00918711536, 0.0106480177, 0.00593397301, 0.00393464603, 0.0133665, 0.00428857561, 0.00179600576, 0.0153771229, -0.0176663715, 0.0243533868, -0.00466509676, 0.0040363064, 0.00951092411, 0.033224225, 0.00212546182, -0.0010721439, -0.00814038701, 0.00192214036, 0.0066870153, -0.00266765221, 0.00241350033, 0.0100681754, 0.0102714961, -0.000568546879, -0.00864492543, -0.00695434539, 0.0262510534, 0.00294816052, 0.0259197149, 0.00371814612, -0.00870516896, -0.0186302662, -0.0117625203, 0.0163259562, 0.02334431, -0.00379533297, 0.00881812442, -0.0167476591, 0.026973974, -0.0133213177, 0.0356339589, -0.00406266283, 0.00595279923, -0.0233292487, 0.0101811318, 0.0205279328, -0.0141346036, -0.00956363697, 0.00590761658, 0.0254076459, 0.00380851119, -0.00963894092, -0.0232388843, -0.000708330364, 0.0129146744, -0.0115968511, -0.0231485199, 0.00154656055, 0.00336986408, -0.004401532, 0.00201062276, -0.00435634935, -0.0019230817, 0.0184645969, -0.01549761, 0.0124854408, -0.00122557627, 0.00888589863, -0.0133363781, 0.00931513309, -0.00275801728, 0.0100606447, -0.00017825923, 0.0115667293, -0.0235250406, 0.0082533434, 0.00316089485, 0.0074249967, -0.0228021201, -0.0109793562, -0.0136677166, -0.00710495375, -0.0037896852, -0.0121315112, -0.00506044412, 0.00139218685, -0.00371061568, -0.0140291769, -0.00237584836, -0.00403254153, 0.010813687, -0.00328702945, -0.00955610629, -0.0204526279, -2.13705152e-05, -0.0248503946, -0.0105576525, 0.0144282896, 0.0322603323, -0.00446554041, 0.00115780253, -0.0123122409, 0.019202577, 0.00568546914, -0.00144113461, -0.0116119115, 0.0340375118, 0.00129617401, 0.0251817331, -0.00377462432, 0.00404760195, -0.00289733, -0.00564405182, -0.00847172551, -0.00762078771, 0.00624272041, 0.00863739476, -0.00630672881, -0.0143605163, 0.000759631395, 0.00118321762, -0.0107007306, -0.0266275741, 0.00374450255, -0.0290071871, -0.0124929715, 0.0216574948, 0.00509056589, 0.00613729423, -0.00885577686, 0.0147746895, 0.0141873164, -0.0139086908, -0.0115064858, 0.01780192, 0.00590761658, -0.000609964249, 0.0218532868, 0.0108362781, -0.0145035936, -0.00516587, 0.00724803191, -0.0108739305, -0.0114085907, -0.00598668586, 0.0131481178, 0.00156915176, -0.00310253422, -0.00175458845, -0.0291276742, 0.00545579102, 0.0115591986, -0.00750030112, 0.0361159071, 0.0175157636, -0.024985943, 0.0116119115, -0.00923229847, -0.00852443837, 0.0138710383, 0.0186453257, -0.0145261856, -0.00340563362, 0.0139086908, -0.030724125, 0.027169764, -0.00451072305, -0.00550473901, 0.0304229073, 0.0142099075, -0.0204225052, -0.00766220503, 0.0107308524, 0.00185907306, 0.00075492484, 0.000913534372, 0.00570429536, 0.00593020767, 0.00117568718, 0.0140894204, 0.000396288495, -0.00112579821, 0.0083663, -0.0133589702, -0.000564781716, 0.0153168794, 0.0183441099, 0.0154373664, 0.0024718612, 0.0143529857, -0.0177115537, 0.00341504673, -0.0244738739, 0.0141647253, -0.00603563385, 0.000360518985, -0.0127565358, -0.00333597721, -0.00145713682, 0.0108814603, -0.00961635, -0.0106480177, 0.000742217293, 0.0095335152, -0.00846419483, -0.00581725128, 0.00770362234, 0.00841901265, -0.0161452256, 0.0135321692, -0.0217478611, -0.0103317397, 0.016280774, 0.0257992279, 0.0140291769, -0.0180730149, -0.00530141732, 0.0197297074, -0.0160849821, 0.0104296356, -0.0130125703, 0.0175157636, -0.0155277317, -0.0101058269, 0.00147031504, -0.00798224751, -0.00727815367, 0.0195489768, 0.00217064423, -0.00123404805, -0.0186302662, -0.000956363685, 0.00495501794, 0.000565252325, 0.0225912686, 0.00670584152, 0.0151512101, -0.0206182972, 0.0180579536, -0.0211454276, -0.0132761346, 0.00294627785, 0.0266727563, 0.00330773811, -0.0139689343, -0.000772338943, 0.01157426, 0.000711624918, 0.00959375873, 0.0241425354, 0.0139237512, 0.0136150038, -0.000343104883, -0.00615612045, 0.00619000755, -0.0121315112, -0.00673219794, 0.0219888333, -0.0123047102, -0.00812532566, 0.0156180961, 0.00805755239, -0.012726414, 0.00352612045, -0.00753418775, -0.00408901926, -0.0160247386, 0.00723297102, 0.0053466, 0.00638956344, 0.00995521899, -0.0142023768, -0.0135020474, 0.0192628205, 0.029745169, -0.0196995847, 0.0249257, 0.0146542024, 0.00230242661, -0.0148801152, -0.00878047291, -0.00274672173, -0.00792200491, -0.00300087337, -0.0066870153, -0.00116250897, -0.0106254267, -0.0142475599, -0.00201627077, 0.0128619615, -0.0176211894, 0.0169585124, 0.0112429205, 0.00111450255, 0.020377323, 0.00042311562, -0.00905156787, -0.0118378242, 0.000522893737, -0.010053114, 0.00939796772, 0.00792200491, -0.0164916255, 0.00589632103, 0.0116947461, 0.016551869, -0.0211454276, 0.016160287, 0.00600551208, 0.00231937016, 0.00578336464, 0.0222298075, 0.0167928431, 0.00289544743, -0.0291427355, 0.0125230933, -0.064219445, -0.00113426987, -0.00524493912, 0.00180071231, -0.0154072447, 0.0101811318, 0.0197598282, -0.0204827487, 0.0254829507, 0.00152396923, 0.0020463923, 0.0200158637, -0.00304793846, 0.00084811385, -0.019518856, 0.0204074457, 0.00792200491, 0.0101736011, -0.00964647159, -0.00524870446, 0.0042471583, 0.0182537436, -0.00579842553, 0.00128958491, 0.00911934208, 0.00193720125, -0.00135641743, 0.0208291486, -0.010053114, -0.0164916255, 0.00259611313, 0.0100907665, -0.00471780961, -0.0148424627, 0.0181031357, -0.0164615046, -0.000121545731, 0.0130351614, 0.00606952049, 0.00214805314, -0.00190896215, -0.0051621045, -0.00548591278, -0.0206634793, -0.0202267151, 0.00570053, -0.0131481178, -0.00225536153, -0.0208592713, 0.00268836087, -0.00837383, 0.00471027941, 0.00274295639, 0.0124703795, -0.000747394457, 0.0204827487, -0.0154147753, -0.00901391543, 0.0245491769, -0.00161527563, -0.00704847556, -0.0179826487, -0.017606128, 0.00961635, 0.0161301661, 0.00451072305, -0.0106856693, 0.000717272749, -0.0145111242, 0.00226477464, -0.0227268152, -0.0320494771, 0.000583607762, -0.00654770248, 0.00559133897, 0.00852443837, -0.00287285633, 0.000969541899, 0.00615235511, -0.00350541179, 0.0037012028, 0.0051056263, 0.0231183972, 0.00275613461, 0.0198953766, -0.0319892354, -0.0161301661, 0.004401532, 0.00982720125, -0.00294439518, 0.00286532589, 0.00887836795, -0.0124929715, -0.00756430952, 0.00353929866, -0.00735345762, -0.0113332858, 0.0127414754, 0.00111262, 0.00570806, 0.00146749115, -0.00874282047, 0.014443351, 0.00171787769, 0.0360857844, -0.00911181141, 0.0183742307, -0.0065100505, 0.00972930621, 0.0131481178, -0.00449566217, 0.0196694639, 0.0145186549, 0.00283143879, 0.0327121541, -0.00845666416, 0.00629166793, -0.00440529734, -0.00304605602, 0.00325879036, 0.00275048683, -0.00115121331, -0.00216687913, -0.0248503946, -0.00282579102, -0.000575606653, 0.00258105225, 0.0103844525, -0.00521481782, -0.00928501133, -0.0221545026, 0.0124176666, 0.00388569804, 0.00832111668, 0.0163410176, -0.00916452426, -0.003757681, 0.0254678894, -0.00902897678, 0.0140517689, 0.00594903389, 0.00288038654, 0.0078467, -0.00232878327, -0.0252720974, -0.00481570512, 0.0045559057, 0.0028126128, 0.00490983576, -0.0228171814, 0.0029952256, -0.00383486762, 0.00972930621, -0.00994768832, -0.008803064, -0.0306036379, -0.00106743735, -0.00769609213, 0.00452578394, -0.00268271309, 0.0171844251, -0.00230242661, 0.0246395431, -0.0126887625, -0.0034809378, -0.0027523695, 0.0115140164, 0.0188260563, 0.00196167501, 0.00830605626, 0.0122068152, 0.00700705824, 0.00680373702, -0.0176964924, -0.0138409166, -0.0295945611, -0.00899132434, -0.0321699642, -0.00723297102, -0.00875035115, -0.00100248749, -0.00547461724, 0.0014816107, -0.00471780961, 0.0191875175, -0.0111525562, 0.00727815367, 0.0215821918, -0.001986149, -0.00322113838, -0.0109642949, 0.0167777818, 0.0175007023, -0.0150231933, -0.0207689051, 0.000519599183, -0.000893296383, -0.00044900144, 0.0212960355, 0.00634438125, 0.012628519, 0.00400618464, 0.0105651831, 0.00529765245, 0.00591891212, -0.0340676308, -0.0026864782, 0.0100154625, -0.0390678309, 0.0141571946, 0.0100982971, -0.0147822192, -0.00724050123, 0.0196544025, -0.00955610629, -0.00868257694, -0.0101359487, -0.00820063055, -0.019247761, 0.0179224052, 0.0167777818, 0.0198652539, 0.027365556, 0.00756430952, 0.0306488201, 0.00614859024, 0.01549761, 0.0181633793, -0.0115968511, 0.0102639664, 0.00692798896, -0.00371249835, -0.00358636375, -0.00406266283, -0.00300275604, 0.0154524269, 0.00269965641, 0.00881812442, -0.00213110959, 0.0141270729, 0.0234647971, 0.0193682462, 0.0103618614, -0.0201514103, -0.00109850045, 0.0243232641, -0.0183892921, 0.0236304663, -0.00216687913, 0.00711248396, 0.00942055881, -0.0257841665, -0.0134418048, 0.0124779101, -0.00141195429, 0.00668325, -0.0149780102, 0.0136677166, -0.0073911096, -0.0102187833, -0.00895367283, -0.00755301397, 0.0123122409, -0.0262510534, 0.00759066595, -0.00527506089, -0.00372567656, -0.0159042533, 0.00586243393, 0.000838230189, 0.000963894068, -0.00190049037, 0.000552074111, 3.50046976e-05, 0.00622389419, 0.0241726562, -0.0121164499, 0.0216725562, -0.00964647159, -0.00339810317, -0.0102564357, -0.00993262697, -0.0163410176, -0.00780151784, 0.00264882622, -0.00134512177, -0.000961540849, -0.0181935, -0.00278625637, -0.00544073, 0.00378780253, -0.0270191561, 0.0170789976, 0.00425092364, -0.021235792, -0.0211303663, 0.00102413748, -0.00939043704, 0.0113408165, -0.00561393, 0.02030202, -0.0440981537, -0.0126812318, -0.0125682754, -0.00534283463, -0.0174253974, -0.0153319407, -0.0202267151, 0.00363907684, -0.000171199456, -0.0093753757, -0.00370685058, -0.0146993846, 0.00585113838, -0.0105727138, -0.00262811757, -0.0186001435, -0.0131255267, 0.00668325, -0.00995521899, -0.00256222626, 0.0293686483, 0.0130125703, 0.00294627785, 0.0218382254, 0.0196995847, 0.0259799585, -0.0164313819, -0.00261493935, -0.0318988711, 0.00052430568, 1.85171921e-05, 0.00139218685, 0.0104748178, -0.0259648971, 0.00637073768, -0.0233292487, -0.0135999434, -0.00503408769, -0.0147897499, -0.0166572947, -0.00780904805, -0.00764714414, -0.00485712243, -0.00211416604, -0.0103091486, 0.0104974089, 0.00994768832, 0.0274709817, 0.00828346517, -0.00923229847, -0.0032098426, -0.00808014348, 0.0172898509, -0.011672155, -0.00325502525, -0.00713131, -0.0165066868, 0.0089837946, -0.0137882037, -0.00249633519, -0.000909298542, -0.0194736738, -0.0363568813, 0.00458602747, 0.000199556205, 0.00319101661, 0.0269589126, -0.0168681461, -0.00308935577, -0.00194284902, 0.0122670587, 0.013682778, 0.0666291788, 0.0270492788, 0.00591514679, -0.019202577, 0.00183083396, -0.00881812442, -0.0112429205, 0.0342182405, -0.0115893204, 0.0264619049, 0.0110546602, 0.00474040117, -0.0303626638, 0.00707483198, -0.00823828205, 0.00490230508, 0.0169886332, -0.0197598282, -3.02981844e-05, 0.00327573391, -0.0176362488, -0.0238262564, 0.0145111242, -0.0103769228, -0.00249445252, 0.0102564357, -0.00740240561, 0.00861480366, -0.0114688333, 0.0089837946, 0.0193531867, 0.029474074, 0.00524117425, 0.007944596, -0.0117098074, 0.0164765641, 0.00446177553, 0.0158590693, 0.0183591712, -0.0122745885, 0.0295192562, 0.00605822494, -0.0124628497, -0.0175910667, 0.0120562064, -0.00567793846, 0.00567417359, -0.0132686049, -0.00966906268, -0.0468994714, 0.0137882037, -0.0229979102, -0.0231033359, -0.0277872588, 0.0170187559, 0.00646863319, 0.0268685482, -0.0042471583, -0.00286156056, 0.0122896498, 0.0151813319, 0.0133062564, -0.00548214745, 0.0153394705, 0.016822964, -0.0438873023, 0.00526, -0.00829852559, -0.0126209883, -0.00565534737, -0.00938290637, -0.00167175382, 0.0163108949, -0.00303664291, -0.0220792, 0.02030202, 0.00458602747, -0.00978955, -0.00296510383, -0.013682778, -0.0334350765, -0.00287850411, 0.00612976402, -0.0044918973, -0.00112485688, -0.00828346517, -0.0186754484, -0.0190218482, -0.00761325704, 0.00351294223, -0.000992133166, 0.0275914688, 0.00997781, -0.00925489, -0.00153432356, 0.0154147753, 0.001768708, -0.00617871154, 0.000151196771, -0.00298016472, 0.0259648971, -0.000775633554, -0.00297075161, -0.00398359355, -0.0124929715, 0.0257540457, -0.00225159642, 0.0114838947, -0.00131311745, 0.00372191146, 0.0136677166, 0.00564781716, 0.0124026062, 0.0114838947, -0.00556874741, 0.00885577686, -0.00408901926, 0.000729980355, 0.00169528637, 0.0022610093, 0.0134493345, -0.0284951199, -0.0159042533, 0.000135194612, -0.00191837514, 0.0202417765, 0.0138484472, 0.0119959628, 0.0217026789, 0.00195226201, -0.00502655702, -0.00744005758, 0.0115591986, 0.01282431, 0.0179675892, 0.0299710818, 0.00266012177, 0.0154373664, 0.0123724844, 0.0139463423, 0.0033604512, -0.00708236266, -0.00105143525, 0.0112429205, -0.00881059468, 0.00609587692, 0.0194887333, 0.000784105272, 0.0333145894, -0.00894614216, -0.00890849, 0.00298769516, -0.0104371654, -0.0051621045, -0.0248353332, -0.00129052612, 0.000350870629, -0.0375617482, -0.00653264159, -0.00664936332, -0.000199909191, -0.000827405194, 0.0117851114, -0.0189766642, 0.00969918445, -0.0135547603, 0.00987238437, -0.00899132434, 0.00855456, 0.00945068058, 0.0100832358, 0.00923229847, -0.015030724, 0.00566664292, -0.0188863, 0.00149855413, 0.00408901926, -0.000789282436, 0.00655146781, -0.0346399434, -0.0201363508, 0.00415679347, 0.00654393714, 0.054731112, 0.0102338446, -0.00786929205, 0.00862233434, 0.00087211706, 0.00733086653, -0.00750783132, -0.023073215, 0.00107026135, 0.0089837946, -0.00174329279, 0.0101886615, -0.00464250566, 0.0343086049, -0.0194284897, 0.00607328583, 0.013607474, 0.0359652974, -0.025769107, 0.0186905097, -0.0121315112, 0.0224557202, 0.0124854408, 0.0135698216, 0.00890849, -0.0119055985, 0.0353929847, 0.00650252]
11 Nov, 2021
jQWidgets jqxTreeMap width Property 11 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTreeMap is used for showing the hierarchical data set of nested rectangles. Here each and every branch of the tree is represented as a rectangle, which is then tiled with smaller rectangles that represent sub-branches. Here the rectangle of the leaf node has an area proportional to a specified dimension on the data. The width property is used for setting or getting the width of the specified jqxTreeMap. This property accepts numeric values. Syntax: For setting the width property: $('#jqxTreeMap').jqxTreeMap({width: 390}); For getting the width property: var width = $('#jqxTreeMap').jqxTreeMap('width'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtreemap.js”></script><script type=”text/javascript” src=”scripts/gettheme.js”></script><script type=”text/javascript” src=”scripts/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxTreeMap width property. In the below example, the value for the width property has been set to 390. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtooltip.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtreemap.js"> </script> <script type="text/javascript" src="scripts/gettheme.js"> </script> <script type="text/javascript" src="scripts/jqx-all.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTreeMap width Property </h3> <div id="Tree_Map"></div> <input type="button" style="margin: 28px;" id="button_for_width" value="Value of the width property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { var Data_of_TreeMap = [{ label: 'GeeksforGeeks', value: 70, color: '#ff0300' }, { label: 'is a', value: 10, parent: 'GeeksforGeeks', color: '#ff5400' }, { label: 'Computer Science', value: 30, parent: 'GeeksforGeeks', color: '#008000' }, { label: 'Portal.', value: 15, parent: 'GeeksforGeeks', color: '#7fbf00' } ]; $('#Tree_Map').jqxTreeMap({ width: 390, height: 200, source: Data_of_TreeMap }); $("#button_for_width"). jqxButton({ width: 300 }); $("#button_for_width").click( function () { var width_Value = $('#Tree_Map'). jqxTreeMap('width'); $("#log").html(( width_Value)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtreemap/jquery-treemap-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtreemap-width-property?ref=asr10
PHP
jQWidgets jqxTreeMap width Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.00197479036, 0.0258209165, -0.00964037515, 0.0357302576, 0.0864661, -0.00898919, 0.0369760059, 0.0314267725, -0.00667818915, 0.000211015911, 0.0186437201, 0.0291900933, 0.0181482527, -0.0393259339, -0.0123725226, -0.00957667176, -0.0177943483, -0.00279408065, -0.0466022231, 0.0202858411, -0.0156001365, -0.00547845103, -0.0521797687, -0.00756649114, -0.0422421135, 0.0164636653, 0.0151754506, 0.014050032, -0.0146516711, 0.0234285183, -0.0379386283, 0.0287795626, -0.00690822769, -0.0256227292, -0.0621174239, -0.00880515855, -0.0141137354, 0.0370609425, 0.00404513534, -0.00309136114, -0.0123512875, 0.0382217504, -0.0012130097, 0.0152745442, 0.0108861206, 0.0227490198, 0.00828845706, -0.0284256581, -0.0173271932, -0.00469278172, -0.0187569708, -0.00227384036, -0.00263128453, 0.0210502762, 0.0130024729, -0.022480052, 0.00627827644, 0.0680630282, -0.0157700107, 0.0413644277, 0.0544164479, -0.0353622, -0.0263871644, 0.00674189208, -0.0279726591, 0.018204879, -0.00709933648, 0.0408548042, -0.0195214059, -0.000373591058, -0.0117708836, 0.0371458791, -0.00700732088, 0.0255661048, 0.0150763569, -0.00791331846, -0.0309454612, -0.0314267725, 0.0145384213, 0.0335502028, -0.00437426707, -0.0145242652, -0.0198328421, -0.0100225927, -0.0170723815, 0.0120893978, 0.0128821461, -0.0359850712, 0.0377687514, -0.00325769652, -0.051047273, 0.00470339879, -0.0212201495, -0.0229188949, -0.00717719551, 0.0028931743, -0.0240655467, 0.0204981826, -0.0443938561, 0.0268826317, 0.0501129627, 0.00514224125, 0.00135722605, -0.0169025082, 0.00720196869, -0.0345411375, 0.0356170088, 0.0118628992, 0.0214041807, -0.0137669081, 0.0328707062, -0.0127972085, -0.0204415582, -0.0102915606, -0.0684594, 0.0248299818, 0.0140783451, -0.0270949751, 0.0336917639, -0.00680205598, -0.0179359112, -0.00164742826, -0.0234143622, 0.0203424655, -0.0205123387, 0.0268684756, -0.0321345814, 0.00994473323, 0.0249432307, -0.0328707062, -0.00176510168, 0.0137173617, -0.0156426057, -0.0132006602, -0.00869190879, 0.0255661048, 0.0229047388, 0.0374006927, -0.0137385959, -0.0231737066, -0.0248158257, -0.0313984603, 0.00651893206, 0.00368415215, 0.000345057459, 0.029444905, 0.00674897, 0.0201867465, -0.0487539656, 0.0539917611, -0.0203990899, -0.00284539699, 0.0338050164, 0.0305774, 0.0370326303, -0.0138093773, -0.0391277485, 0.0356170088, -0.0199036226, -0.00573326275, 0.0123371314, -0.032672517, 0.0151188262, 0.0231170803, -0.00973239, -0.00300642382, 0.00611901935, -0.0190117825, -0.0674401522, 0.0220553651, -0.0164778214, 0.00426809536, -0.0123371314, 0.0090882834, -0.032672517, -0.0482726544, -0.00213935622, -0.00692238379, -0.00572264567, -0.0271091312, 0.0133563783, -0.0117284153, 0.0328707062, 0.0242495779, -0.0162371658, 0.0183605962, 0.016562758, 0.00918737613, -0.00951296929, -0.0173413493, -0.0302942768, 0.0409397408, 0.025735978, 0.0409114286, 0.00316922017, -0.0465172864, -0.014934795, 0.0222393963, 0.00715596089, -0.0248724502, 0.0242212657, -0.012719349, -0.0162230097, 0.0169308204, 0.0234002043, 0.0270666629, -0.00399912754, -0.0546146333, 0.0501412749, 0.00859281607, -0.0290485304, -0.00105286762, 0.0072762887, 0.00296218577, -0.0100155147, 0.0199460909, -0.00162177009, -0.00993765518, -0.0123442095, 0.000796286447, 0.0328140818, 0.00213581719, -0.0127051929, 0.0125070065, -0.103000537, -0.0120823197, 0.00754525652, -0.00811858289, -0.00852203462, 0.0284256581, -0.00944218785, -0.0130803324, -0.0289777499, 0.0150763569, 0.0250423253, 0.030322589, -0.00809734873, 0.0265428834, -0.0157841668, 0.0204698704, 0.0132289724, -0.0300677773, -0.00571910618, -0.0174829122, 0.0267269127, -0.00339041092, -0.0406566188, -0.00104578957, 0.00116257824, 0.0101075293, -0.0051033115, 0.000766204554, 0.0281991586, -0.0195780303, 0.00720196869, 0.00435303291, 0.0176103171, -0.0170440692, 0.0182615034, 0.00522717834, 0.00226145354, 0.00935017318, -0.00725505454, -0.017015757, 0.0296997167, 0.0186012518, 0.0429216102, -0.0322478339, 0.0203283094, -0.0287654065, 0.00203672377, -0.0478196554, 0.0390994363, 0.000675958756, -0.0211069, 0.0148215452, -0.045696225, -0.00105021335, 0.0205406528, 0.0151612945, 0.0210502762, -0.00364522263, 0.0306057129, 0.076217, 0.0268401634, 0.0115585402, 0.03609832, -0.0313701481, -0.00403097924, -0.00538643543, -0.0397506207, -0.0182190351, 0.0173413493, 0.0368627533, 0.000919268525, -0.0119549138, 0.0165202897, -0.0468004085, -0.0102986386, -2.48977776e-05, -0.0268543195, -0.0028843265, -0.0293316543, -0.0129812388, 0.0213050861, 0.0293033421, 0.0274913479, -0.0212484617, -0.00398143241, -0.016265478, 0.0217580851, -0.00725505454, -0.040968053, -0.0435161702, -0.0304641519, 0.00402390119, 0.0347676352, 0.0108224181, -0.0205548089, 7.73061474e-05, -0.000693211623, -0.0219421163, -0.0209653378, 0.0299545284, 0.0220978353, -0.0143048437, -0.0438842326, -0.00497944467, 0.00905289222, -0.0476214699, -0.0500563383, -0.000813539373, 0.0265853517, -0.00382925314, 0.00642691646, -0.0373723768, 0.0314833969, -0.0342580155, -0.0234285183, 0.0290768426, 0.0118062738, -0.00932893809, -0.00211104401, -0.0307189617, 0.0259058531, -0.074121885, -0.0204981826, 0.0124857724, 0.0289211255, 0.0180350039, 0.00128202117, 0.0403168686, 0.0403168686, 0.0446486659, 0.0176669434, 0.0134200817, -0.0501412749, -0.0264437888, -0.0057544969, -0.0157983229, -0.00812566094, 0.0256227292, -0.00326654408, -0.0215032734, 0.0200027172, -0.0114736035, -0.0287370943, -0.0182615034, -0.0228622686, 0.00709225796, 0.0127759743, -0.0289635938, -0.0308888368, 0.0513587072, -0.00858573802, 0.00823183265, -0.000294404803, -0.00646938523, -0.0114311343, 0.00645522913, -0.0496882759, 0.0243911389, -0.00927231368, 0.0229188949, 0.000320284104, 0.012280507, 0.00861405, -0.026047416, 0.0313984603, 0.032672517, -0.0468287244, 0.045696225, -0.00359390629, -0.0513020828, 0.010659622, -0.00326831359, 0.0134271597, -0.0160531346, 0.0342013873, -0.0338333286, 0.000195864355, -0.0212626178, 0.00686575891, -0.00378324557, 0.00888301805, 0.00927939173, -0.0249857, 0.00692238379, 0.0339748897, -0.0144605627, 0.0103411069, 0.0129953949, -0.0324743316, 0.0435161702, 0.0310020875, 0.0146516711, 0.000242646187, 0.0313984603, -0.0142411413, -0.0261040404, 0.00822475459, -0.0281283781, -0.00936432928, 0.00802656729, -0.0370892547, 0.0122168036, -0.0536803268, 0.0164919775, 0.0350224487, 0.0370892547, -0.0321912095, -0.0107728709, 0.0245043896, 0.0195072498, 0.0311153363, -0.00530149834, 0.0257218219, 0.0351356976, 0.00261712819, -0.0358151942, -0.0248724502, -0.00667465, 0.0356736332, -0.00164388923, -0.0203141533, 0.0352489464, -0.0388446227, -0.0234143622, -0.0125636309, 0.0177660361, -0.00438488415, -0.0139792515, -0.0199885592, 0.00424686121, -0.0126060992, -0.00655786134, 0.00192524376, 0.00217651646, 0.0076018814, 0.00990934297, -0.0217863973, -0.0161380731, -0.027661223, 0.00507853832, -0.0181482527, -0.0267410688, -0.0240797028, 0.00875561219, -0.011983227, 0.00974654686, -0.0474799089, 0.0165344458, 0.0340598263, 0.0554356948, 0.0177660361, -0.00866359659, 0.0161522292, -0.00313029066, 0.00581112178, -0.00284539699, 0.0527743287, 0.0313984603, 0.0235559233, -0.0123017412, 0.00861405, -0.0229896754, 0.0195072498, -0.000866182731, 0.0105746845, 0.0221827719, 0.0314550847, -0.00125547836, -0.0196912792, -0.00113692018, -0.0274205673, 0.0493202135, 0.00288609602, -0.0119690709, 0.00833800435, 0.0207388382, 0.0111621665, 0.0318231471, -0.0325592682, 0.0108790426, 0.0263446961, 0.00103428762, -0.00565186422, 0.0110489177, -0.0241646394, -0.0416192412, 0.0139792515, -0.00758064725, -0.0183039717, -0.016874196, 0.00573326275, -0.0442239828, -0.0140358759, -0.0125070065, 0.0137739861, 0.00889717415, 0.0082389107, 0.00758064725, 0.0104755908, 0.0088900961, 0.0305774, 0.0444787927, -0.0191250313, -0.0339182653, 0.00253573013, 0.00910951756, -0.0240230784, 0.012867989, 0.0430065468, -0.002218985, -0.0217863973, 0.00174652168, -0.0179075971, -0.00321345823, 0.00925107952, 0.012280507, 0.0133917686, -0.0034983519, -0.0293599665, -0.00586420763, 0.00564124715, 0.00460430514, -0.0037407768, 0.00784961507, 0.00318868505, 0.0451299772, 0.0382217504, -0.00183499791, 0.0244902335, -0.007693897, 0.0226640832, 0.0201725904, 0.00799825508, -0.0452998541, -0.00465739099, -0.0135970339, 0.0191391874, -0.00591375399, 0.00957667176, 0.0228622686, 0.00789208338, -0.0251272619, -0.00395665923, 0.00882639363, -0.0328990184, 0.0269958805, 0.0184880029, -0.00134837849, -0.00565894274, -0.000579962, -0.002181825, 0.000177837312, 0.0534255132, -0.0175820049, -0.00777883409, -0.0127051929, -0.00357798045, -0.0174687561, 0.0160672907, 0.0310870241, 0.00543244323, 0.00327008311, -0.00772220921, -0.0355886966, -0.0491220281, -0.00543244323, -0.0050431476, 0.0466305353, -0.00729752332, -0.00345942238, 0.0120752417, -0.00637029158, -0.0263163839, -0.0070285555, 0.0330972038, -0.033125516, 0.0274488796, 0.0232586432, 0.0315117091, 0.00468216464, -0.0190400947, -0.00576511398, 0.0156001365, 0.0162513219, 0.00485911686, -0.01775188, -0.0336917639, -0.0382217504, 0.0230887681, 0.00488742953, 0.0126556465, 0.00943511, -0.0111055421, 0.00698962575, -0.0162230097, -0.0206822138, 0.0187145025, -0.0361266322, -0.00627473742, -0.00332139945, 0.0419589877, -0.00738953846, -0.0334086418, -0.021149369, -0.00229153549, -0.0322478339, 0.0141915949, 0.0125636309, -0.014042954, -0.000770185958, 0.0540766977, 0.0317099, -0.0266419761, 0.0201301221, -0.0121247889, 0.0144464066, 0.0285955314, 0.0232444871, -0.0159257296, 0.0487822779, -0.00175890839, -0.00250918721, -0.0248016696, 0.00436718902, 0.0144393276, 0.00222429354, -0.0262880716, 0.0300111528, 0.0129387705, 0.00701439893, 0.0216448363, 0.0398921818, 0.00403805729, -0.00545367738, -0.0172139443, 0.0266702883, -0.0236125477, -0.0201442782, 0.0166760087, 0.0179217551, 0.0184738468, -0.00874853414, 0.0270383488, 0.0424686112, 0.0181907229, 0.0108861206, 0.0253679175, -0.0133776125, 0.016123917, 0.0222110841, 0.0148640145, -0.0122592729, -0.00900334585, -0.00112895726, 0.00443443097, 0.00202433718, 0.0103057167, 0.0134696281, 0.0206255894, 0.0241929535, 0.01804916, -0.0124716153, -0.0310020875, 0.0171573199, 0.019535562, 0.00253749965, 0.0186720323, -0.0100862952, 0.0221827719, 0.00335679, 0.0119336797, 0.0126131773, 0.0147507647, 0.00311790383, 0.000221411872, -0.0274771918, -0.0262880716, -0.00724089844, 0.00364522263, 0.0115019158, -0.00340633653, 0.0302376524, 0.00511038955, 0.0156567618, -0.0184313767, -0.00330724311, 0.0273497868, 0.00554923201, -0.02722238, 0.0491220281, 0.00843001902, -0.0258067604, -0.0182331912, -0.0244194511, -0.0321062692, -0.0130944885, 0.0212059934, 0.0296997167, 0.0347110108, -0.0253112931, -0.0157275423, -0.0156001365, 0.00763019407, -0.0127972085, -0.0137952212, 0.0034983519, -0.00808319263, -0.00375139411, 0.00617210474, -0.0177094117, -0.0146516711, 0.0348808877, 0.00779299, 0.00853619073, -0.0243911389, -0.0249432307, -0.00551384129, -0.0237116423, -0.0138376895, -0.0089184083, -0.00638090912, 0.00896087755, -0.00503253052, -0.0149489511, -0.00713472674, 0.0105888406, -0.00752402237, -0.0367495045, 0.00129706215, -0.0293033421, 0.0231312364, 0.0319647081, 0.00632074522, 0.00462907879, 0.0248016696, -0.00276753795, -0.010942746, 0.020271685, -0.0261465088, 0.0186437201, 0.0359850712, 0.000510508078, -0.0385048762, 0.000437515177, 0.0291617811, -0.0300111528, -0.00986687373, 0.0272082239, 0.0450167283, 0.0146375149, 0.00522363931, -0.00251449575, -0.0112187918, -0.0129741607, 0.0130874105, -0.00489804661, -0.00258350722, 0.010942746, 0.0164495092, 0.000499006186, 0.0179075971, -0.01834644, 0.012570709, 0.0150480447, -0.00262066722, 0.0191533435, 0.0129953949, -0.0252829809, -0.00626412034, -0.0183322839, 0.00857158192, 0.000300155749, -0.01834644, -0.00195178657, 0.0382500626, 0.00299934577, -0.0138376895, 0.00740369456, 0.0145808905, 0.0319363959, 0.00254103867, -0.0409963652, -0.00527672516, 0.00234108232, -0.00944218785, -0.00438842317, -0.00126874982, 0.0250847936, -0.0302659646, 0.0130095519, -0.00893964246, -0.0141137354, 0.0145384213, -0.019379843, 0.0105676064, 0.010808262, -0.0134696281, 0.0234285183, 0.00741077261, -0.017596161, -0.0416758657, 0.03609832, 0.0199036226, 0.0158832613, 0.0377404392, -0.0307472758, -0.0217580851, 0.020271685, -0.0569362529, -0.00148374715, -0.00466446904, 0.0130732544, 1.26078694e-05, 0.0127335051, -0.0195497181, -0.00919445418, 0.00172528741, 0.00998720154, -0.0162088536, 0.0116434777, 0.0182756595, 0.0112824943, -0.000631720584, 0.0150338886, 0.0250989497, 0.0060800896, 0.0235559233, -0.00496882759, 0.0020862706, 0.0203707777, -0.00915906392, 0.00471401587, -0.0168317258, 0.0106313089, 0.0145384213, 0.00398851046, -0.0235842355, -0.01775188, 0.00517409248, 0.000894495111, 0.0139863295, -0.000849372242, -0.0130378641, -0.0309454612, -0.0343995765, 0.0198045298, -0.00306481821, -0.000989164808, 0.033125516, 0.00291263894, -0.00990934297, 0.00978193711, -0.0270525049, 0.0226782393, 0.02633054, -0.0132148163, 0.0374573171, -0.0026914482, -0.0255519487, 0.0135333315, -0.0165486019, 0.0412511788, -0.0290768426, -0.0167751014, 0.00445566513, 0.00694715697, -0.00674543111, 0.0036310663, 0.0188843757, -0.0398072451, -0.00456537586, 0.0306623373, -0.0135191744, -0.016718477, 0.0374006927, 0.0306623373, 0.0168175697, -0.0496882759, 0.00918737613, -0.00525195152, 0.00785669312, -0.01301663, 0.00384340947, 0.0438559204, -0.0126839587, 0.00918029808, 0.0325875804, 0.0145384213, -0.00659325207, -0.0149206389, -0.00580758275, -0.0135899559, -0.0255377926, 0.0441673547, -0.0103340289, -0.0293599665, -0.0421854891, 0.00605885545, 0.0200168733, 0.0254953243, -0.00229330501, -0.0134130036, -0.024405295, -0.0178651288, -0.0244194511, 0.00794870872, 0.00922276732, 0.017893441, 0.032842394, -0.0102844825, -0.0190542508, 0.0020632667, 0.0126627246, -0.00332316896, -0.0309454612, 0.0100792171, 0.0208379328, 0.033748392, -0.00741785066, 0.0154444184, -0.0197762176, -0.0116364, -0.0201301221, 0.00165362156, -0.00620395644, 0.00491928076, 0.0108719645, -0.00712764869, 0.00531565445, 0.00720196869, 0.0203990899, -0.0361266322, -0.0202009026, 0.0365230069, -0.000287547882, 0.0122946631, -0.00198186864, -0.0305207763, -0.0249007624, -0.000214333777, -0.000875030353, 0.00778591214, -0.0109569021, 0.00172440265, 0.0154585745, -0.00939264148, 0.00943511, -0.00114842202, 0.0348525755, 0.00188100559, -0.000698962598, 0.0203141533, 0.0014722452, -0.0288928133, 0.0416475534, -0.0107657928, 0.030775588, -0.0278594103, 0.0269392561, 0.00645876816, 0.0347110108, -0.00731875747, 0.0336351395, -0.0273639429, -0.0225933, 0.033295393, 0.0106171528, -0.019960247, -0.00876269, -0.00597037887, -0.00137846032, -0.0083309263, -0.0013209508, -0.00889717415, 0.0132360505, -0.00883347169, -0.0200734977, -0.0237682667, 0.00824598875, 0.0206539016, 0.00845125411, 0.00366291776, -0.0239947662, 0.0149914203, 0.0131440358, 0.0164919775, -0.0309737734, -0.00680913404, 0.000618449179, 0.00298342, 0.0351073854, 0.0181057844, 0.00423624413, 0.0309737734, 0.019662967, -0.0130661763, 0.023655016, -0.0255802609, 0.00629597157, -0.0302942768, 0.00518117053, 0.01834644, -0.0234285183, -0.0228905827, -0.00217828597, 0.0177094117, 0.0230887681, -0.0135687217, -0.00443443097, 0.00707810186, -0.0210361183, -0.0171148498, -0.00343111, -0.0262739137, -0.00254103867, -0.0305774, 0.00647646328, 0.0082530668, -0.0171148498, 0.00436365, 0.0152745442, -0.00365583971, -0.00561293494, -0.00725505454, -0.0128963022, 0.00630304962, -0.00364876166, 0.0250140131, 0.0157133862, -0.0102278572, 0.00743908528, 0.0126627246, -0.00863528438, -0.0346260741, 0.0153594809, 0.0336917639, -0.0028330104, 0.000182261123, 0.00561647397, 0.00195001706, -0.0204698704, 0.0142482193, 0.00518470956, 0.0033426336, -0.000794959313, 0.0170865376, 0.00294095138, 0.0174121317, -0.0136748934, -0.00458661, 0.00765850628, -0.00191462657, 0.0229755193, 0.000174298257, -0.00803364534, -0.00607301155, 0.0181340966, -0.0024118633, -0.0106808562, -0.011537306, -0.00472817197, -0.0301244017, 0.0197337475, 0.00167485583, -0.00627827644, -0.0063313623, -0.00100951432, -0.00350719946, -0.0141915949, 0.0186578762, -0.00723382039, -0.0260191038, -0.0192807503, 0.0859564692, -0.0136890495, 0.00105286762, 0.00925107952, 0.00117408019, -0.0346543863, -0.0192807503, 0.0314550847, 0.0412228666, 0.0193373747, 0.0290485304, 0.0281708464, 0.0121460231, -0.00712057063, -0.0203707777, -0.0252546687, -0.014793233, -0.000455210422, 0.0281566903, -0.0134483939, 0.00348773482, 0.0254103858, -0.00402744, -0.0154019501, 0.0368627533, 0.0083309263, -0.0181765668, -0.010645465, -0.0334086418, 0.0173413493, 0.0100933732, -0.00473878905, 0.0216873046, 0.00201195059, 0.0184880029, 0.0402602442, -0.0147507647, 0.0101570766, -0.0156992301, -0.00886178389, -0.0190117825, -0.0108224181, -0.000379563222, -0.0252546687, -0.0129953949, -0.0162371658, -0.0388163105, -0.0110276826, -0.00300111528, 0.0334086418, -0.0388163105, -0.00248264428, -0.0115797753, -0.0143756252, 0.00913075171, 0.00492989784, -0.00116877165, -0.0156992301, 0.00895379856, -0.0518117063, -0.00448043877, -0.0094492659, -0.00480249198, 0.0103694191, 0.0194364674, -0.00489096856, -0.00373723777, 0.0270949751, -0.00620395644, 0.0322195217, 0.033436954, 0.0231453944, -0.00720550772, 0.00662864232, -0.0416758657, 0.00982440542, -0.00379386265, 0.0146375149, 0.0096474532, -0.00761603797, -0.0205831211, 0.0223951153, -0.0154868867, 0.0120752417, -0.00365937874, -0.0145384213, 0.00671004085, -0.00228976598, -0.0231878627, 0.0173271932, -0.00782838091, 0.00482018758, 0.00166246924, 0.0215174295, 0.00898919, 0.00504668662, 0.0305207763, -0.00772220921, 0.00277284649, 0.0138730798, 0.00178810547, -0.00219952012, 0.00139615557, 0.0252121985, -0.00518117053, -0.0338050164, 0.00801241118, 0.000376024167, 0.0150197325, 0.0160814486, -0.0133776125, 0.0150622008, 0.00518470956, 0.0123796007, 0.0207813065, -0.00500775734, 0.0104402006, -0.0202150587, -0.00952004734, -0.0132077383, -0.00519886613, 0.0011696564, 0.0247450452, 0.00479895296, 0.0163645726, -0.0230604559, -0.00743908528, -0.0157558545, 0.00687283697, -0.020710526, -0.0216165241, 0.0163362585, -0.0268543195, 0.0211210568, -0.0243769828, 0.0163079463, -0.00343464897, 0.0255519487, 0.00709933648, 0.0119053675, -0.0304641519, 0.00140765752, 0.0100084366, -0.0162088536, 0.0147649208, 0.0351640098, 0.000529972895, 0.00893256441, 0.00178456644, 0.0148781706, -0.0285955314, -0.00626765937, 0.0211635251, -0.0141703598, 0.00269321771, -0.00351604726, -0.0109073548, 0.0110276826, -0.0164636653, 0.006950696, 0.0268967878, 0.0346260741, -0.0125636309, -0.00912367366, -0.000373591058, 0.0198894665, 0.0104685128, -0.0131298788, -0.0160956047, -0.0112895723, -0.00306127919, -0.0142623754, 0.0165910702, 0.00157576241, 0.0167892575, -0.0123583665, 0.022933051, -0.0103127947, 0.0180916283, 0.00643753354, -0.0270383488, 0.0110347606, -0.00741785066, -0.0126202563, -0.0100862952, -0.00548906811, -0.00870606583, -0.0188843757, 0.00635259645, 0.000661360158, -0.020257527, 0.0189834703, 0.0200451855, -0.0010245553, 0.0195214059, 0.000185689583, 0.00698608672, -0.0252121985, 0.00711349258, -0.0112329479, 0.00974654686, 0.00821059849, 0.0325026438, 0.0222393963, 0.00157664716, -0.00939264148, -0.0181340966, 0.00160142058, 0.0185446274, -0.000868837, 0.0271657556, -0.0217722412, -0.00961206295, -0.0132218944, 0.00949881319, 0.00888301805, 0.0122946631, -0.00828137901, 0.0216306802, 0.010206623, -0.0135899559, -0.00305950968, -0.00134395459, 0.00741785066, 0.000895379926, -0.0153453248, -0.00768681895, 0.00179872266, 0.00731875747, 0.00613317546, -0.00198186864, 0.0368344411, 0.0251838863, 0.00538643543, -0.00887594, 0.00704625063, 0.00203141524, -0.020115966, 0.00550676323, -5.91685093e-05, -0.00136695849, -0.00731875747, -0.00150409667, 0.0218430236, 0.00733291358, -9.67156302e-05, 0.00830969214, -0.0223384891, -0.00381155801, 0.0238673594, -0.00623580767, 0.028411502, -0.00292325602, -0.0354188234, 0.0348808877, -0.0190542508, -0.0137315178, -0.00398143241, -0.0293599665, -0.0333803296, 0.00901042391, 0.000715773087, -0.00407698657, -0.0176244732, -0.0322195217, 0.00214997353, 0.00024087666, -0.00142181374, -0.00241894135, -0.0126698026, -0.0067879, 0.0214324929, 0.0411096178, 0.00420793146, -0.00732583553, -0.020866245, 0.00164123485, 0.0295298416, -0.0016155768, -0.00703917257, -0.0381934382, 0.0229472071, 0.0174687561, -0.0302942768, -0.0363531336, 0.00819644239, -5.56432838e-07, 0.0110701518, 0.0106950123, -0.00954836, 0.0244336072, 0.0223951153, -0.0121106328, 0.00752402237, 0.00339395, 0.0522363931, 0.0113320416, -0.0433179848, -0.00681975111, -0.0111621665, 0.0173555054, -0.00862112828, 0.0108578084, -0.0178651288, -0.0305207763, -0.00247733574, 0.0182756595, 0.00582173886, 0.0131086446, -0.0159540419, -0.00644107303, -0.0260049459, -0.0038788, -0.0130732544, -0.00623226864, 0.00729044527, -0.0272365361, -0.00221013743, -0.0164070409, -0.0287937187, 0.00181907217, -0.00666757207, -0.0396939963, 0.00862820633, 0.0352489464, -0.00507853832, -0.0118558211, -0.0376838148, 0.00188808376, -0.00832384825, 0.00858573802, -0.00201195059, -0.0154302623, 0.00819644239, -0.00977485906, 0.0264154766, 0.0146516711, -0.0323610827, 0.00250033964, -0.00116877165, -0.0147649208, 0.00770097505, -0.00956251565, 0.00883347169, 0.0141420476, 0.00998012349, -0.012860911, 0.0116010094, -0.0282133147, 0.00725505454, 0.00617564376, -0.0172705688, 0.00293918187, 0.0208945572, 0.000943157065, 0.0314833969, 0.00894672051, -0.0132431285, 0.0369476937, -0.00661448622, -0.0189693142, -0.00935725123, 0.0290485304, 0.00166246924, 0.00837339461, -0.0273356307, -0.00128025166, -0.00227030111, 0.0132289724, 0.0177801922, -0.00514224125, 0.0134342378, 0.0081610512, -0.0211210568, -0.000221411872, 0.026769381, 7.18869705e-05, -0.00806195848, -0.00455475878, -0.0121743353, -0.0423836745, -0.0121035548, -0.00571202813, 0.00675604818, 0.00584651204, -0.0120115392, 0.00474232854, -0.0101924669, -0.00185977132, -0.00902458, 0.0296714026, 0.0204415582, -0.0127618182, 0.00275515113, -0.00627473742, 0.0103835752, -0.0254245419, 0.0116930241, -0.00922276732, -0.0308039, 0.00182968937, 0.00775052188, -0.00668880623, 0.010206623, 0.0277320035, -0.0102986386, 0.00732583553, -0.0156567618, 0.00744616333, -0.00302058, -0.0150763569, 0.0162937902, -0.0330688916, -0.015968198, 0.00720550772, 0.0212626178, -0.00402390119, 0.0505659617, 0.0293882787, -0.0129175363, -0.00884055, -0.0160672907, -0.0133351441, -0.0301810261, 0.019662967, -0.0328990184, 0.00371600362, 0.00348242628, 0.0127264271, 0.00747447554, -0.022635771, -0.00154391094, 0.00869190879, -0.000479541399, 0.00261358917, -0.00796286482, 0.00253573013, -0.00956251565, 0.0023516994, 0.0236974861, -0.0294732172, 0.00221721549, 0.0316249579, 0.00376201118, 0.00808319263, 0.00511392858, 0.0189834703, 0.0148640145, -0.00425040023, -0.00249149185, 0.00660740817, -0.0109215118, -0.0106100747, 0.0185870957, 0.00837339461, 0.0102986386, -0.0144039374, -0.0267552249, 0.00131475739, 0.0148781706, 0.0148923267, -0.00907412637, 0.00607301155, 0.011240026, 0.00361691019, -0.00179518363, -0.0106737781, 0.00204734108, -0.0266986, 0.0029303343, 0.0245185457, -0.0319647081, -0.00620395644, -0.0106100747, 0.00859989412, 5.33899038e-05, -0.0208520889, 0.0128184427, -0.0345128253, 0.00873437803, 0.00202787621, 0.0303509012, 0.00244548428, 0.00740369456, 0.00560939591, 0.00327893067, -5.36940388e-05, -0.00208096206, -0.0028701704, 0.00160672911, 0.0105251381, 0.0095412815, -0.00776467798, 0.0182898156, 0.019662967, 0.00752402237, -0.00309666968, 0.0206114333, -0.0258775409, -0.0101146074, -0.0048485, 0.00362044922, 0.0142482193, -0.0112187918, 0.0140217198, 0.0104472786, -0.00178633595, -0.0179359112, 0.00513162417, 0.0166335404, -0.0164353531, -0.0193232186, -0.0200876538, 0.0295015294, 0.0313984603, -0.00592437154, 0.00400974462, -0.00100774481, -0.00253219088, -0.0102915606, 0.0141208135, -0.000215329128, 0.0131794261, -0.0311436485, 0.00804780237, 0.000807788398, 0.0132289724, -0.00754525652, 0.0321345814, 0.00110683823, 0.0108861206, 0.0209511817, -0.00958375, 0.0105746845, -0.00490158563, -0.0150622008, 0.00747447554, -0.00585359056, -0.0021004267, 0.0066852672, -0.00179606839, -0.000185247205, -0.0170723815, -0.0014598585, -0.0138022993, 0.010206623, -0.0109569021, -0.00764435, -0.00688699307, -0.0138518456, 0.00618272228, 0.000284451235, -0.0229047388, 0.0136324242, 0.0094775781, 0.0104897469, -0.00603054278, -0.00193763047, -0.010942746, 0.00738953846, 0.00268790917, -0.00737538235, -0.00702501601, -0.00329131749, 0.000350587245, 0.00933601614, -0.00205795816, 0.0122592729, 0.00772928726, -0.0274630357, -0.00799117703, -0.01834644, 0.0117991958, 0.0107020903, 0.01834644, 0.043204736, -0.000644107291, -0.0135474876, -0.0244619213, -0.0154727306, 0.00471401587, -0.00617210474, -0.00324177067, -0.00652601, -0.0131157227, -0.0137385959, 0.00594914472, 0.0150338886, 7.97945395e-05, -0.0124433031, 0.00971115567, -0.00118027348, -0.0240655467, 0.00345234433, 0.00489450758, -0.00600223057, -0.0153736379, -0.00588898081, -0.00837339461, -0.011685946, -0.00996596739, -0.00557046616, -0.00296041626, -0.0215882119, -0.0111409323, -0.0254245419, 0.00322407554, 0.00489804661, -0.0111480104, -0.00443443097, -0.00521656126, -0.0331538282, 0.0130944885, 0.0192241259, 0.0200451855, -0.0236408599, 0.0146658272, -0.00536166225, -0.00669234525, 0.0123158973, 0.0186154079, 0.014198673, -0.015246232, -0.002956877, 0.0222960208, 0.0229188949, 0.00767974043, -0.0019411695, -0.0430631712, -0.00992349908, 0.00638444815, 0.0231453944, 0.0111338543, -0.004731711, 0.00912367366, 0.0374573171, -0.0151612945, -0.00452644611, 0.0117991958, -0.00112187921, 0.000677285891, -0.00556338811, -0.0293316543, 0.00535812322, 0.00526610808, -0.0072621326, 0.0124645373, 0.000977662858, -0.00601638667, 0.00719135161, -0.000725505466, 0.01346255, -0.0144322496, -0.00489450758, 0.0111055421, -0.0202009026, 0.0221119914, 0.0236408599, -0.00915906392, -0.00162530912, -0.00458661, 0.0149206389, -0.0141066574, 0.0204415582, 0.00278523308, -0.00190931803, -0.000791420287, 0.0296430904, 0.00644815108, -0.0188560635, 0.0202292148, -0.00654016621, -0.0188702196, 0.00197125133, 0.0126910368, 0.00985271763, 0.0366645679, 0.00927939173, -0.00818228628, -0.000181818745, -0.00772928726, -0.00259058527, -0.0322478339, -0.000631720584, 0.00981732737, -0.0108578084, 0.00594206667, -0.00755941309, -0.0129953949, -0.000424243743, -0.00322761456, 0.0161097609, -0.021899648, 0.00243309746, 0.0217297729, 0.0123088192, -0.00271976064, 0.0271374434, 0.00485557783, 0.0101429205, 0.0321062692, -0.00267552258, -0.0106737781, 0.00960498396, 0.00650477596, 0.00105286762, 0.00666403305, -0.00361337117, -0.0320779569, 0.00278346357, -0.0104472786, -0.0100721391, 0.0017606779, 0.00818936434, -0.0156001365, -0.00534042809, -0.00365230069, 0.0138376895, 0.000613140583, 0.0258350726, -0.00556692714, 0.00722320331, -0.000247512391, -0.0047635627, -0.0161522292, -0.0072762887, 0.0019535562, -0.0274347235, 0.0179075971, -0.0235842355, -0.00205264962, 0.0219279602, -0.00160672911, -0.0204981826, -1.151574e-05, 0.0095554376, -0.00181199412, 0.00338510238, 0.0100013586, -0.0306057129, 0.0058182, 0.0101216855, -0.00307543529, -0.0167751014, -0.0081468951, 0.0104614347, 0.0187994391, 0.0089962678, 0.004218549, 0.0262739137, -0.0241504833, -0.00229861354, 0.0067029628, -0.0307189617, 0.00598099595, -0.0109073548, 0.0109356679, 0.00130767934, -0.0011944297, 0.0119124455, 0.0118204299, -0.032983955, 0.000454325665, -0.0249432307, 0.000270958582, 0.0111975577, -0.00348773482, 0.000563593872, -0.0142128291, 0.00978193711, -0.00990226492, -0.00884055, 0.0115019158, -0.00433179829, 0.00641629938, 0.024688419, -0.0023747033, -0.0108861206, 0.00437426707, -0.00852203462, -0.00776467798, 0.00949881319, -0.000338642945, 0.022480052, 0.0124645373, -0.00497236662, 0.0121460231, 0.0187003464, 0.0171856321, 0.00197479036, -0.00959082786, 0.000460961397, 0.0356736332, -0.0120893978, 0.0124716153, -0.0109144328, 0.00331432116, 0.00251803477, 0.0111480104, 0.00976778101, -0.00424332218, -0.0253254492, -0.00986687373, 0.00291440845, 0.00477418, 0.0211352129, 0.00573326275, -0.000386198953, 0.00958375, 0.00411591632, -0.000681709673, -0.00354612898, -0.00288786553, 0.00570495, -0.0082389107, -0.00902458, 0.00801948924, -0.0105746845, -0.00546783395, -0.0210078061, 0.0386464372, -0.0182615034, 0.00230392208, 0.00155275862, -0.0154727306, 0.000189892206, 0.00236231647, -0.0130661763, -0.0255236365, -0.0179217551, 0.00387172168, -0.0345411375, -0.0104685128, -0.014198673, 0.00618626131, 0.0185870957, 0.00155983667, -0.0116930241, 0.0181340966, 0.0032099192, 0.0225933, 0.0095271254, 0.00205618865, 0.00205264962, -0.00846541, -0.00210750476, 0.0060659335, -0.0304358378, 0.00677374378, -0.00589605886, 0.0387596861, 0.0105605284, -0.00311436481, -0.00243132794, 0.00732583553, 0.0124149909, -0.0153594809, -0.0162371658, -0.0213334, 0.00395665923, -0.0157700107, 0.00864236243, 0.00869190879, 0.00391065143, 0.000686133513, -0.000825041265, -0.00585005106, -0.0066251033, -0.00427163439, -0.0123371314, 0.00777175603, 0.00880515855, 0.00552445883, 0.00461492268, 0.0239806101, -0.0296430904, -0.0271232873, -0.00197479036, 0.00152533094, -0.00254811672, 0.00949881319, -0.0100862952, -0.00198540767, -0.0072161248, 0.0140287979, -0.0158832613, 0.0112754162, 0.0167609453, 0.015685074, 0.0029091, -0.00901750196, 0.00933601614, -0.000749394065, -0.0119336797, 0.0171431638, 0.0112754162, -0.00526256906, -0.0131369568, 0.000111756592, 0.0240938589, 0.00143773947, -0.0229472071, -0.0081468951, -0.0259766337, 0.00954836, -1.30226017e-05, 0.00249857, -0.00124309165, 0.0181340966, 0.0028701704, -0.00783545896, 0.0308605246, 0.00382217509, -0.0107304025, -0.00235877745, 0.00147401472, 0.0206680577, -0.0246317945, 0.000197412694, -0.0126627246, -0.00264897966, 0.0153028565, -0.00785669312, -0.028836187, -0.0144251715, 0.00965453126, -0.0083309263, 0.0100013586, 0.00703917257, 0.011678868, 0.0144039374, 0.00721966382, -0.000304800778, -0.0116080875, 0.0261181965, -0.0138518456, -0.0029091, -0.0179783795, 0.00375493313, -0.01390847, -0.0209370255, 0.00965453126, -0.0218430236, 0.00681975111, 0.0177660361, -0.0142340632, -0.00156337582, 0.00391419046, 0.00758064725, 0.00744616333, 0.0295015294, -0.00966868736, 0.0031727592, 0.00566602079, -0.0136182681, -0.0243911389, 0.029133467, -0.00527672516, -0.00729752332, 0.00857866, -0.0181199405, 0.0306340251, 0.00563063, 0.000736122602, -0.00353197288, -0.0160814486, 1.22415222e-05, -0.00872022193, -0.0257076658, 0.00647646328, -0.00376908923, 0.0213758685, -0.00344880531, -0.0261323527, 0.0353905112, -0.00320461066, -0.00835216, 0.0178509727, 0.00971823372, -0.0344278887, 0.00431764219, 0.0166618526, -0.000714003516, 0.0100862952, 0.0260049459, 0.00076266547, 0.001719094, -0.0163645726, 0.00831677, -0.0172564127, -0.000348375324, 0.00263305404, 0.00213227817, -0.0101287635, -0.00362398825, -0.0167892575, 0.0164636653, -0.00288786553, 0.019238282, -0.00313206017, 0.0179075971, 0.00151205959, 0.0123300534, 0.0211352129, 0.00948465709, -0.00966160931, -0.0167751014, -0.00864944048, -0.00880515855, -0.00978193711, -0.00146693666, 0.0132572846, 0.0169732887, -0.0192099679, -0.0117001021, 0.00646938523, 0.0133351441, -0.000837427913, 0.0280151274, 0.00788500533, -0.00663218135, -0.0166901648, 0.019238282, 0.0447052903, -0.0131298788, 0.0143827032, 0.00512808468, -0.0275338162, -0.0101287635, -0.00275692064, 0.00370184728, -0.000171091, 0.0149064828, 0.00915198587, 0.0120610856, -0.00905997, 0.017171476, -0.0054430603, 0.0229613632, 0.0298129655, -0.0070285555, 0.0072762887, -0.0223101769, 0.0235700794, 0.00119973824, 0.00567663787, -0.000923692307, -0.00712764869, 0.0170865376, 0.00752402237, -0.00639506523, 0.0104331225, 0.00115550018, -0.0184030645, -0.0202433709, 0.0122946631, -0.00166777777, 0.00934309419, 0.0121106328, -0.0111267762, -0.0131157227, -0.00981024932, -0.0206680577, 0.0282840952, 0.00231807842, -0.010206623, 0.0200876538, -0.024263734, -0.0231453944, -0.000887859438, -0.00493697636, 0.0137456739, -0.0390994363, -0.00990226492, 0.0011944297, 0.00365583971, 0.0151046701, -0.00485911686, 0.0128892241, 0.00976778101, 0.00356559386, 0.0134059256, 0.01331391, 0.00154656533, 0.0147507647, -0.0038611046, 0.00509623345, 0.0156709179, 0.032672517, 0.00321345823, -0.0041725412, -0.00671004085, 0.00625350326, 0.00059013674, -0.00818936434, 0.00543952128, -0.00352666434, 0.00729044527, -0.00420439243, 0.000523337163, 0.0011342658, 0.0217014607, -0.00432472024, 0.02722238, -0.00869898777, -0.015685074, -0.0248724502, -0.00988810882, 0.0115797753, 0.00976778101, 0.000220416521, 0.0217863973, -0.016860038, 0.00759480335, -0.0105676064, 0.0197479054, 8.59878783e-05, 0.00260120258, -0.0184030645, 0.0139509393, 0.0264296327, -0.0200310294, -0.00682329, -0.00579342665, 0.0196488108, 0.00239593745, -0.00844417606, 0.00033289197, 0.0102703264, 0.011834587, -0.00378324557, -0.0132360505, 0.00118469726, 0.00236939453, -0.00607655058, 0.002774616, 0.00301173236, -0.0113178855, 0.00697900867, -0.0368910693, -0.00092988566, 0.000772397907, -0.00464323489, -0.012280507, -0.00229684403, -0.00625350326, 0.00282239309, -0.00102632481, 0.00692946184, -0.0128821461, 0.00442381389, -0.0032329231, 0.021149369, -0.0190542508, 0.00976070296, -0.00922984537, -0.00160230533, 0.00329131749, -0.00239593745, -0.0110206045, 0.0107657928, -0.00157576241, -0.00892548636, 0.00658263499, 0.00393542461, 0.0106383869, 0.00197655987, -0.00851495657, -0.0326158926, -2.08333986e-05, -0.0062995106, -0.00351958629, 0.0120610856, 0.0352772586, 0.00666049402, 0.000358992489, -0.0147366086, 0.00867775269, -0.00508561637, 0.017298881, -0.00648354134, 0.0143968593, -0.00142623752, 0.0252121985, -0.00631366717, 0.00928647, -0.00475294562, -0.0020402628, -0.00105375238, -0.0121177109, -0.0174546, 0.015529356, 0.0131440358, -0.0198328421, 0.00722674234, 0.00654016621, -0.0249857, -0.010057983, 0.00766558433, -0.0298412777, -0.00685868086, 0.0178792849, -0.000385092979, 0.00293387333, -0.010645465, 0.00225791452, -0.0172847249, -0.00605531642, -0.00248972233, 0.00421500951, -0.00688699307, 1.96997953e-05, 0.0169449765, 0.0253962297, -0.00155629765, -0.0275338162, 0.00233754329, -0.00379740167, -0.00591021497, -0.00532981101, -0.0030772048, 0.00270383502, 0.00259235478, 0.00282770186, -0.0295298416, 0.0101146074, 0.00913783, -0.00567309884, 0.0190542508, 0.0174121317, -0.014793233, -0.00607301155, -0.0197762176, 0.00318514579, -0.00252511282, 0.0206680577, -0.00382217509, 0.00636321353, 0.00919445418, -0.0246742629, 7.85918201e-06, 0.0101570766, 0.00187215803, 0.0308039, 2.10684138e-05, -0.0115019158, -0.00292325602, 0.00574741885, -0.00733999163, 0.0231595505, 0.0109356679, 0.011240026, 0.00912367366, 0.00912367366, 0.0133422222, 0.003438188, -0.00753110042, 0.00757356919, -0.0155859804, -0.0110135265, 0.00169697497, -0.00496174954, 0.00779299, 0.0082389107, 0.0203849338, -0.0198611543, -0.000540147652, -0.015840793, 0.00076708931, -0.0012607869, 0.013023708, -0.0184738468, 0.00960498396, -0.0183889084, 0.00264367112, -0.00714534381, -0.0156426057, 0.00241717184, 0.00100509054, -0.0045441417, 0.00884762779, 0.000596330094, 0.00828845706, -0.0211776812, 0.00854326878, -0.0284539703, -0.0271516, 0.00409822119, 0.0271940678, 0.0102420133, -0.00993765518, 0.0029073304, 0.00696839159, -0.0230604559, 0.0187003464, -0.00926523563, 0.0185587835, -0.00904581416, -0.0027144521, 0.00995888934, -0.018502159, -0.0200876538, 0.0387313738, -0.0036912302, -0.00368415215, 0.00515285833, -0.00681267306, 0.014934795, -0.0113461977, -0.0120610856, 0.00596330082, 0.0249432307, -0.0104826689, 0.0135191744, -0.0111055421, -0.00295333797, 0.00801948924, 0.00294626, 0.0109852143, -0.0482443422, -0.0172705688, 0.0218571797, -0.00710995356, 0.00912367366, 0.0151754506, -0.00186684937, 0.0134908622, 0.0161522292, 6.7960842e-05, 0.0138022993, 0.00112010969, -0.0167043209, 0.0120752417, -0.0176103171, -0.00365230069, 0.00396019826, 0.0144393276, -0.0014165052, -0.00862112828, 0.00937848538, -0.00483788271, -0.0319930203, 0.012131867, 0.00749571, -0.00194824755, 0.00417608, -0.00786377117, -0.0243628267, 0.0121106328, 0.0316249579, -0.0109215118, 0.0164070409, -0.00022174367, -0.000727717357, -0.00927939173, -0.00143685471, 0.00603054278, -0.00398497144, 0.00566956, -0.0129175363, 0.00657555694, -0.00452644611, -0.0148781706, -0.00713118771, -0.00723028136, -0.0101712327, 0.0274064112, 0.0244477652, -0.00399204949, 0.0379952528, 0.000980317127, -0.00281531503, 0.00383987022, -0.0094492659, -0.0132855978, 0.018502159, 0.00877684634, -0.00777175603, 0.00454768073, -0.00232338696, 0.000233356172, -0.0126839587, 0.0238956716, -0.0108578084, -0.00340456702, 0.000587040093, 0.00985271763, 0.0213192441, -0.00132802885, -0.00945634395, 0.01346255, -0.0622872971, -0.0115797753, 0.0156142926, 0.00301881041, 0.0110843079, 0.00495821051, 0.0287512504, -0.00973239, 0.030775588, -0.00682329, 0.0089821117, 0.0110489177, -0.00554923201, 0.0149206389, -0.0264862571, 0.0119336797, 0.012280507, 0.0212201495, -0.0152745442, -0.0233860482, 0.0108578084, 0.0271657556, 0.00896087755, 0.00474586757, 0.0156284496, -0.0089962678, -0.0124008348, -0.0011280725, -0.0157841668, -0.0248299818, 0.0101712327, 0.0160531346, -0.0109356679, -0.0150338886, 0.0116222436, -0.0110135265, 0.0109073548, 0.0108436523, -0.0072621326, -0.00528734224, -0.00702147698, -0.00540767, 0.00840878487, -0.0160672907, -0.0145667335, 0.00591021497, -0.00713826576, -0.00284008845, -0.00783545896, 0.00820352, -0.0154585745, 0.00837339461, -0.00262243673, 0.0027144521, -0.00126963458, 0.0168883521, -0.00891133, 0.000149856685, 0.0144888749, -0.000213227817, 0.00701793795, -0.0154727306, -0.016123917, 0.0123937568, 0.00616148766, -0.0129104583, -0.000176510162, -0.0110630738, -0.0179925356, 0.0198186859, -0.0229472071, -0.0245327018, 0.000913075171, -0.00696485257, 0.00811150484, 0.0177943483, -0.00232338696, 0.00450167293, 0.00604823837, -0.0137881422, -0.0038611046, -0.00314444676, 0.031200273, -0.00179960742, 0.0166760087, -0.0153594809, -0.00466446904, 0.00246671843, 0.00515993638, 0.00804780237, 0.00271976064, 0.0255661048, -0.0195921864, -0.00117761921, -0.00531211542, -0.00986687373, -0.000978547614, -0.00959790591, -0.00803364534, 0.00884762779, 0.0161805414, -0.00942803174, 0.00852203462, -0.00787084922, 0.0466871597, -0.00113072677, 0.0143756252, 7.8025012e-05, 0.00342580141, 0.0138022993, 0.0089042522, 0.0144605627, 0.0116080875, -0.00340456702, 0.0332387686, 0.0109144328, -0.0103694191, 0.00587128568, 0.000638798694, -0.00263482356, -0.0154868867, -0.0163221024, -0.0199319348, -0.0280151274, 0.0057544969, -0.00106879335, 0.0107657928, -0.00101216859, 0.00368769118, -0.0211069, -0.0155718243, 0.00821059849, -0.00472817197, 0.0246459506, 0.0110701518, -0.00291440845, -0.00526256906, 0.0319647081, 0.00582881691, 0.00152710045, -0.00333024701, 0.00121124019, 0.00723028136, 0.0156426057, -0.0195638742, -0.00525902957, -0.0142552974, -0.00282770186, 0.0171148498, -0.0128538329, -0.00211281353, 0.00258881575, 0.00938556343, 0.00491220271, -0.000383323466, -0.00882639363, -0.0101641547, -0.0139863295, -0.00293210382, -0.023074612, 0.00211458304, 0.00796994288, 0.0162088536, 3.85701278e-05, -0.0038009407, 0.00787084922, 0.012280507, 0.00812566094, 0.0110064484, 0.011983227, 0.00402744, 0.00360275386, 0.00186507986, -0.0167043209, -0.000787438825, -0.0313135237, 0.00582173886, -0.0320779569, -0.00391772948, -0.00238532037, -0.00707102381, 0.00862112828, 0.00372662069, -0.00419731438, 0.0122380387, -0.0114523694, -0.00884055, 0.0192241259, 0.00591021497, 0.00320107164, 0.00188985327, 0.0294732172, 0.0156284496, -0.00326477457, -0.0227207076, -0.000702501624, -0.00216766866, 0.0221686158, 0.0170016009, -0.00857866, 0.0120469294, 0.00580758275, 0.0213050861, 0.00315683358, -0.0107233245, -0.00917322, 0.00819644239, 0.00943511, -0.025735978, 0.0152179189, 0.0186578762, 0.00209688768, -0.00891133, -0.010808262, -0.0114948377, -0.00127051934, -0.00482726563, -0.0206680577, -0.0152179189, 0.0114169782, 0.0139509393, 0.0257926043, 0.0306906495, 0.00878392439, 0.0424119867, 0.0016341568, -0.00122185738, 0.0218713358, -0.0200734977, 3.56946475e-05, 0.00713826576, 0.00958375, -0.0031497553, 0.000390843954, 0.0106737781, 0.00539351394, 0.0124433031, -0.000970584748, -0.00297811138, 0.0295298416, 0.0449034795, 0.0108578084, 0.00397435436, -0.0158266369, -0.00226499257, 0.00767974043, -0.024844138, 0.0104897469, 1.09558514e-05, 0.0135545656, -0.00232515647, -0.0148357013, -0.0172139443, 0.0187994391, -0.00721258577, -0.00152179191, -0.0228622686, 0.0236125477, -0.00997304544, -0.0174121317, -0.0117496494, -0.00414776755, 0.00466446904, -0.0166052282, 0.0075877253, 0.00645522913, -0.00485911686, -0.00183499791, -0.00465385197, 0.0111975577, 0.00122185738, 0.00437072804, 0.00152356143, -0.00242955843, -0.00117231067, 0.000525106676, -0.0110064484, 0.0147790769, -0.0198328421, -0.00175183022, -0.0171006937, 0.00244548428, -0.0111550884, 0.0083450824, 0.0188702196, 0.00691884477, -0.0183605962, -0.0145101091, -0.00220128964, -0.00208273157, -0.000890071329, -0.0218288656, 0.0206539016, -0.00830261409, -0.0289211255, -0.0191250313, 0.00453352416, -0.000286220748, 0.00376555021, -0.00258881575, 0.0202433709, -0.0340598263, -0.0026047416, -0.00726921065, 0.00852911267, -0.0173130371, -0.0184596907, -0.0132360505, -0.000421368255, -0.0222535525, -0.0132572846, -0.000703828759, -0.0187003464, 0.000843621267, -0.000914844684, 0.0117071811, -0.0168317258, 0.000756472175, 0.0100438269, -0.0127405832, -0.00800533313, 0.0282416269, 0.0207246821, 0.00507853832, -0.00537227932, 0.00799825508, 0.0110701518, -0.0131369568, 0.00429640803, -0.053538762, -0.00730460137, -0.00416192412, 0.0132855978, -0.0196204986, -0.016562758, -0.00842294097, -0.0261181965, 0.00155187387, -0.0120115392, -0.00822475459, -0.0190117825, -0.00835923851, -0.0161663853, -0.00903873611, 0.0145950466, -0.00824598875, -0.00333201652, -0.00359036727, 0.0274488796, 0.0203566216, -0.0112895723, -0.0181624088, 1.73842056e-06, 0.0107516367, -0.00452290708, 0.0125494748, -0.00206857524, -0.0165202897, 0.0207529943, -0.00782130286, -0.0072621326, 0.00561293494, -0.0137244398, -0.0346543863, 0.0185446274, -0.0105463723, -0.00660033, 0.00746739749, -0.0134200817, -0.0145384213, -0.0145808905, 0.00489096856, 0.0165910702, 0.0691955239, 0.0204557143, 0.0207246821, -0.00787084922, 0.00357444142, -0.00762311602, -0.0101499986, 0.0297846533, -0.011983227, 0.00792039651, -0.00881931465, 0.0178085044, -0.0172281, 0.0106737781, -0.00689761061, 0.00227207085, 0.0164919775, -0.00571556715, -0.00893256441, -0.0144110154, -0.000606504851, -0.0183747523, 0.00857158192, -0.0170723815, -0.00201372, -0.00354435947, 0.000152179186, -0.011098464, -0.00827430096, 0.0212626178, 0.0179075971, 0.0181057844, 0.0107304025, 0.00697546965, -0.0111763226, 0.00780714629, 0.00148994045, 0.0310587119, 0.0041725412, -0.028708782, 0.0180208478, 0.0135687217, 0.00123070495, -0.00586420763, 0.00298872846, -0.0265428834, -0.00299934577, -0.00502545247, -0.0140783451, -0.0289494377, 0.0118841333, -0.0250706375, -0.0144180935, -0.0107091684, 0.0217297729, -0.0100862952, 0.0395241231, -0.00904581416, 0.00118115824, 0.00548552908, 0.0171006937, 0.0123229753, -0.0112612601, 0.0200027172, -0.00713472674, -0.0291617811, -0.00208804, -0.0141845159, 0.00232692598, -0.0117779616, -0.0234568305, -0.00246494892, 0.0145525774, -0.00981024932, -0.0037867846, 0.0238815155, 0.00838755071, 0.00322938408, -0.0180633161, -0.0088122366, -0.029133467, -1.99486349e-05, -0.00298518944, -0.0263871644, 0.00326300506, -0.000940502796, -0.00848664436, -0.0234143622, -0.016874196, -0.000454325665, 0.004731711, 0.0302093402, 0.00545721641, -0.00426101731, 0.00084273651, 0.00571910618, -0.000327804592, 0.00571910618, 0.0159823541, 0.0143756252, 0.0151896067, -0.00746031944, -0.00374785508, -0.00909536146, -0.00419023633, 0.0213475563, 0.0004510078, 0.0147366086, -0.0107020903, 0.00389649509, -0.00200664182, 0.00150409667, 0.0261323527, -0.011990305, 0.00373723777, -0.000405442523, 0.0087980805, 0.000178832677, -0.00159522728, -0.00468216464, 0.00754525652, -0.0129670827, -0.00331255165, -0.00197479036, 0.00195001706, 0.0122380387, 0.0113391196, 0.00968284346, 0.021743929, -0.00888301805, -0.0041406895, -0.0167043209, -0.00525549054, 0.00616502669, 0.0140075637, 0.0416758657, -0.0154868867, -7.36565e-05, 0.0125565529, 0.0224942081, 0.00677020475, -0.00087326084, 0.00733999163, 0.0229755193, 0.0017978379, 0.0187145025, 0.0190542508, 0.00038951679, 0.0393542461, -0.000226720455, -0.0056483252, -0.00745324139, -0.0198894665, 0.0047635627, -0.0060800896, -0.005400592, 0.00515993638, -0.0223384891, 0.00968992151, -0.0199460909, 0.0110489177, -0.00199956377, 0.0178226605, -0.00673835305, 0.00741077261, 0.00238178135, -0.00105817628, -0.0114169782, 0.028100064, 0.00145897374, 0.00396019826, 0.0105392942, -0.00311967335, -0.0160531346, -0.0210927445, 0.00229153549, -0.00315329432, 0.00126255641, 0.00386464363, -0.0206397455, -0.0229755193, 0.00871314388, 0.0167467892, 0.0513587072, -0.00121831836, 0.00456183683, -0.00142092898, -0.0082530668, 0.0179359112, -0.0116930241, -0.0184172206, -0.00888301805, -0.00663218135, -0.00539351394, 0.01375983, 0.00554923201, 0.040231932, -0.00850080047, 0.00016511885, 0.000732583576, 0.0334086418, -0.0204840265, 0.00137846032, -0.00983148348, 0.0218005534, 0.00383633119, 0.00234108232, 0.00506792124, -0.00516347541, 0.0241646394, -0.000229374738]
30 Sep, 2021
jQWidgets jqxTree width Property 30 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for pc and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTree represents a jQuery widget that is used to display a hierarchical collection of items. To display the collection of items, we can populate from ‘UL’ or by using its ‘source‘ property. The width property is used to set or return the width of the widget. It accepts the Number/String type value and its default value is null. Syntax: Set the width property. $('selector').jqxTree({ width: Number/String }); Return the width property. var width = $('selector').jqxTree('width'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtree.js”></script> The below example illustrates the jQWidgets jqxTree width property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"></script> <script type="text/javascript" src="jqwidgets/jqxtree.js"></script> <style> h1, h3 { text-align: center; } #jqxTree { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTree width Property </h3> <div id='jqxTree'> <ul> <li item-selected='true'> GeeksforGeeks </li> <li>Programming <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> </li> <li>Web Technology <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>jQuery</li> <li>PHP</li> </ul> </li> </ul> </div> <script type="text/javascript"> $(document).ready(function() { $('#jqxTree').jqxTree({ width: '350px', height: '250px' }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtree/jquery-tree-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtree-width-property/?ref=next_article
PHP
jQWidgets jqxTree width Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[0.00195826381, 0.0325775817, -0.0111516658, 0.0397101231, 0.084684737, 0.000126040017, 0.0487107038, 0.0300019439, -0.000275076804, -0.00289759343, 0.0034159054, 0.0109464647, 0.00077879458, -0.0396252088, -0.0235911515, -0.00321070338, -0.0225156099, -0.00453920942, -0.0350966156, 0.00750048598, 0.00446845, -0.0107271103, -0.0444368422, -0.00261455635, -0.0308510568, 0.0291528329, 0.0150858834, 0.0153406169, -0.018638, 0.034870185, -0.0266904086, 0.0121706, -0.00193172903, 0.00411465345, -0.0567206591, -0.0125668524, -0.0191757716, 0.0300019439, -0.0293509588, -0.0108615533, -0.0143853668, 0.0402195901, 0.0064567863, 0.00615605945, 0.0283603296, 0.0289122518, 0.0213551577, -0.0290396176, -0.000972940412, 0.0119300187, -0.0153689208, 0.0322379395, 0.00251549319, 0.0209447537, 0.00776229566, -0.0168124102, 0.00735896779, 0.0617021136, -0.0103379339, 0.0298321228, 0.0502391048, -0.0313039161, -0.0144490497, -0.0013320439, -0.0118875634, 0.0273696985, -3.7203914e-05, 0.0502674095, -0.0121210683, 0.00978601165, -0.00917040557, 0.0217938647, -0.0110101476, 0.0144419735, 0.0107129589, -0.0200248826, -0.044465147, -0.0482861474, -0.00994875841, 0.0323511548, -0.00059084018, 0.00325669697, -0.0337946452, -0.015751021, -0.0170529913, 0.0105289845, 0.019529568, -0.0297472104, 0.0258837529, 0.00968694873, -0.0459935479, 0.00365825603, 0.00554045336, -0.0192040745, -0.00396252098, 0.000594378158, -0.0201522503, 0.0248082113, -0.0488239191, 0.00123121194, 0.0614190772, 0.00962326489, -0.00421371637, -0.014491505, -0.00279676146, -0.00509113213, 0.0364834964, 0.0085901795, 0.0241996814, -0.0137060769, 0.0129631041, 0.00342121231, -0.0130692432, 0.00928362086, -0.0660608858, 0.0324077606, 0.00341236731, -0.0565791391, 0.0149726691, 0.00224130088, 0.00543077663, -0.00606761035, -0.0205201972, 0.00855479948, -0.00794627, 0.0411536098, -0.029633997, 0.00460289279, 0.023916645, -0.0236619115, -0.0115337661, 0.0287565812, -0.00861848332, -0.0038988376, -0.00340882945, 0.034360718, 0.0291528329, 0.0258412976, -0.00793919433, -0.0163737033, -0.0255016536, -0.0239732526, -0.00110207614, 0.0320398137, 0.00530341, 0.0425971, -0.00671859598, 0.0233505704, -0.0418045968, 0.0456255972, -0.00833544601, -0.0255016536, 0.0113356402, 0.0409271829, 0.0352381319, -0.013437192, -0.0342191979, 0.0324077606, -0.0245817825, 0.00370424963, 0.00603930652, -0.0212702472, -0.00295597, 0.00996998604, -0.027044205, -0.00758539746, 0.0183832664, -0.0245959349, -0.0720612779, 0.0223033316, -0.00684242463, -0.00425971, -0.0157227181, 0.0322945453, -0.0489654392, -0.0321247242, 0.00386699592, -0.0309642721, -0.00336283585, -0.0174633954, -0.00530694798, 0.000403106911, 0.0135362549, 0.0115832984, -0.0181285329, 0.00842743274, 0.0324643701, 0.0339644663, -0.0245534778, -0.0162746403, -0.0286150631, 0.0423706695, 0.0204352867, 0.0378986821, 0.00712546194, -0.0481163263, -0.0274687614, 0.0258412976, 0.00321424147, -0.0143782906, 0.0277234949, -0.0289405547, -0.0143287592, 0.0158359315, 0.0356060825, 0.0294358712, -0.00733066397, -0.0590415634, 0.03620046, -0.00184151088, -0.00138511334, 0.00274015404, 0.016670892, -0.00411111536, -0.0313039161, 0.0176049154, 0.00582702877, 0.00152397854, -0.016161425, -0.0032301622, 0.00888736825, 0.0114134755, -0.0194871128, 0.0190767087, -0.109195754, -0.00704055093, -0.00386699592, -0.00835667364, -0.010649275, 0.0400214605, -0.0284027848, -0.013338129, -0.031643562, 0.0300868563, 0.0318416879, 0.0281622037, -0.00280914432, 0.00365825603, -0.0195012633, 0.0146330241, 0.00670090597, -0.0287282765, -0.0249921866, -0.00555814337, 0.0284452401, 0.00176190666, -0.0245251749, 0.00536001706, 0.00131346961, 0.00590132596, -0.0207749307, 0.016331248, 0.018538937, -0.0387477949, 0.0101822643, -0.00421017874, 0.00535294134, -0.00185212481, -0.000939329737, 0.00457105087, 0.000316647871, 0.00711484812, 0.00601454079, -0.00473379763, 0.0110242991, 0.0126517639, 0.0472672135, -0.0367665328, 0.031671863, -0.0440405905, -0.00115249213, -0.0348418802, 0.0498428531, 0.0103520863, -0.0500409789, 0.012078613, -0.0169539284, -0.00514420122, 0.0256148688, 0.0155953504, 0.0195720233, 0.00333099416, 0.0325492807, 0.0815147161, 0.0347569697, -0.00868924242, 0.0120361578, -0.017109599, 0.000705824059, 0.0160057545, -0.028714126, -0.0115903737, 0.0233647227, 0.0110738315, 0.000660715, -0.0107907942, 0.0184257235, -0.020958906, -0.0103874654, -0.019968275, -0.0190484039, -0.0231665969, -0.0106563512, 0.00219176942, 0.0185813922, 0.0381817184, 0.0255865641, -0.0111375144, -0.00837082602, -0.00223599398, 0.0255158041, -0.00724221487, -0.0503523201, -0.0449746139, -0.0388610102, -0.00496730302, 0.0324926712, 0.0119937016, -0.0105289845, 0.00994875841, 0.01817099, -0.0229684692, -0.0256148688, 0.042936746, 0.037276, 0.0135999378, -0.0418045968, -0.00145675719, -0.00153989939, -0.0453708656, -0.047154, 0.00558998482, 0.0373609141, -0.0133593567, 0.00168849388, -0.0516825952, 0.0228127986, -0.0391723514, -0.000610741263, 0.0285584554, -0.00186273863, -0.00941806287, 0.000404433638, -0.0284310877, 0.0240157079, -0.0670798197, -0.0273980033, 0.0140952533, 0.0371910892, 0.0215815883, 0.00125155516, 0.0338229463, 0.0500126742, 0.0359457247, 0.01817099, 0.0150575796, -0.0455123857, -0.00823638309, -0.00646386249, -0.0297755152, 0.00278614764, 0.0264781322, -0.00378208468, -0.000927831396, 0.0232373551, -0.0211853348, -0.0220061429, -0.00577395922, -0.0198833644, 0.025275223, -0.0171379037, -0.0220202953, -0.0244827196, 0.0432197824, -0.0192465298, 0.0167699549, 0.00555106718, -0.00652400777, 0.00128162792, 0.00207678555, -0.0374458246, 0.0341342874, -0.00722806295, 0.0241147708, -0.0231807474, -0.00169026281, 0.000547942356, -0.00902888738, 0.0205060467, 0.0331153534, -0.0282329619, 0.0403894112, -0.00109588471, -0.0497296378, 0.0154962875, 0.000232400082, 0.00201310217, -0.0286858212, 0.0202513132, -0.0298887305, -0.00193703594, -0.0255441088, 0.0112224258, -0.00895105209, 0.0174917, -0.00642494485, -0.0398233347, 0.0100761252, 0.0242704414, -0.0159349944, 0.00779059948, 0.00613129372, -0.0427386202, 0.0546544865, 0.0241713785, 0.0179162566, 0.0271291174, 0.0252327677, 0.00446491223, -0.0317567773, -0.0110172238, -0.027044205, -0.0119229425, 0.00478686672, -0.0318982936, 0.000913679483, -0.0677025, 0.0338229463, 0.0400497653, 0.0164020061, -0.0303132851, 0.00143287587, 0.0133310528, 0.0226854328, 0.0163878556, -0.00664783642, 0.0331436582, 0.0263649169, -0.00870339479, -0.027044205, -0.0269309916, -0.00460643088, 0.0298604257, -0.00967279635, -0.029633997, 0.00420310255, -0.029973641, -0.0368797481, -0.0141589362, 0.0197135415, -0.00617021136, -0.0229260139, -0.014732087, 0.00725282868, -0.00549446, 0.00320539647, -0.0028445241, -0.0125385486, 0.00960911345, -0.0036299522, -0.0236902144, -0.0169114731, -0.0452010445, 0.0217938647, -0.011328565, -0.0320398137, 0.00288344151, 0.00941806287, -0.00222538016, 0.0123050427, -0.0492767803, 0.0151424911, 0.0392855667, 0.0414649509, 0.0236902144, -0.0150575796, 0.0185530894, -0.00387760974, -0.00688134227, 0.0154679837, 0.0346154496, 0.0266904086, 0.0259403605, -0.0124890171, 0.013437192, -0.0159916021, 0.0140386457, -0.00234744, 0.0146613279, 0.0164727662, 0.0281197466, 0.0045993547, -0.0246949978, 0.000657177, -0.0190908592, 0.046814356, -0.00191403914, -0.0310491826, 0.0157085657, 0.0272989385, 0.0110950591, 0.0262941569, -0.032690797, 0.0375873409, 0.0458520278, -0.0140032666, -0.00819392782, 0.00642848294, -0.0246242378, -0.0358608142, 0.00582349068, -0.0108757047, -0.045795422, -0.0221052058, -0.0139466589, -0.0393138677, -0.0199965797, -0.0128640411, 0.0280206837, 0.0103874654, 0.0211145766, 0.00809486397, 0.0171520561, 0.00244473387, 0.0343890227, 0.0497579426, -0.0215815883, -0.0327191, -0.00802410487, 0.0060853, -0.0298887305, 0.0114842346, 0.0313039161, 0.0104511492, -0.0316152573, -0.00345659209, -0.0160482097, 0.00133558188, -0.00764908083, 0.0251478571, 0.0160623621, -0.00118698727, -0.0365967117, -0.0147886947, 0.00287990365, 0.0226571299, -0.00286221388, 0.0057598073, 0.0117814243, 0.041776292, 0.0324360654, -0.0168548655, 0.0261526387, -0.00273307809, 0.0197984539, 0.0025703318, 0.013437192, -0.0279782284, 0.00590132596, -0.0197418462, 0.0158500839, -0.00290820748, 0.00686011463, 0.0239449479, 0.00759954937, -0.0282471143, 0.00570319965, 0.0234354809, -0.0348984897, 0.0384647585, 0.0277093425, -0.00167080411, -0.00647447631, -0.00102247193, 0.0082293069, -0.00438000076, 0.0666835681, -0.0358325131, -0.00131789199, -0.0109818438, 0.00793919433, -0.016090665, 0.00530694798, 0.0252186153, 0.00755001791, 0.01095354, 0.00105608266, -0.0240864661, -0.0619285442, -0.000637718244, -0.0023067533, 0.0421725437, 0.00179021037, 0.00285159983, 0.0149868205, 0.00632234383, -0.030652931, 0.00510882167, 0.0262092464, -0.0426537097, 0.0176756736, 0.0214400683, 0.0410403945, 0.0086538624, -0.0155528951, 0.0185955446, 0.0141730886, 0.00941806287, -0.00369009771, -0.0100195175, -0.00912087411, -0.026534738, 0.0278508626, -0.00175217725, 0.0131824585, 0.0034955095, -0.0304265, -0.00246065482, -0.00871047, -0.00825053453, 0.0154255284, -0.0136848493, -0.00341413636, 0.00407219771, 0.036030639, 0.00249072746, -0.0218929294, -0.0187370628, -0.0105219083, -0.0228411034, 0.0117885, 0.0205768049, 0.0126942191, -0.00151513354, 0.0299170334, 0.0258837529, -0.0215391312, 0.0322096348, -0.0142155439, 0.00926946849, 0.0261243358, 0.0250770971, -0.0275961291, 0.0538053736, -0.00329030771, 0.00438353885, -0.01418724, 0.0180011671, 0.0158500839, -0.00134796475, -0.017590763, 0.0182275958, 0.013472571, 0.0119229425, 0.00695210136, 0.0379835926, 0.00486116437, 0.00151071115, -0.00108527078, 0.0210296642, -0.0181426853, -0.0215108283, 0.0332851782, 0.0219212323, 0.00279145455, -0.0266338028, 0.0282329619, 0.0373043045, 0.00562182674, 0.0160482097, 0.0112931849, -0.012418258, 0.034360718, 0.00145498815, -0.00448260177, -0.00309748854, -0.011908791, -0.00945344288, 0.00411111536, 0.00453213323, -0.00147710042, 0.0112648811, 0.0235203933, 0.019628631, 0.0178596489, -0.0128640411, -0.0317001678, 0.0194163527, 0.0221901182, 0.0111304382, 0.0163453985, 0.00587302214, 0.0301717669, 0.000715111208, 0.00283921696, 0.0108120218, 0.0208456907, 0.0130055603, -0.00117991143, -0.0236053038, -0.0230816845, 0.00478686672, 0.000677078089, 0.0229118634, -0.0135574825, 0.0174209401, -0.00264639803, 0.0313039161, -0.0263649169, -0.00439415267, 0.0234637856, 0.0233647227, -0.0133805843, 0.0413234346, 0.0353513472, -0.017760586, -0.00470903143, -0.0135008749, -0.0273696985, -0.0221759658, 0.0168124102, 0.012892345, 0.0192323793, -0.0184964817, -0.0139466589, -0.0277659502, 0.00393067952, -0.00689549418, -0.00498499302, 0.00304265, -0.001526632, 0.0117460443, 0.00803118106, -0.015581199, -0.0160340574, 0.0257139318, -0.0117672719, 0.00758539746, -0.0247233, -0.0322379395, -0.00768446038, -0.0247799084, -0.00107907935, 0.00527510606, 0.000985323335, 0.00232975, -0.000549711345, -0.0134654958, 0.00403681817, 0.0118309557, -0.00382454041, -0.0257705376, 0.00179286383, -0.0124607133, 0.00420310255, 0.0229967739, 0.0105219083, 0.00145941065, 0.0311057903, 0.0139749628, -0.0187370628, 0.0262800045, -0.0305114109, 0.0208456907, 0.0318416879, 0.0126871429, -0.0442953259, -0.0120644616, 0.0173643325, -0.0310208779, 0.00266231876, 0.00631526764, 0.0288273394, -0.00595439551, 0.00139572727, 0.0149160614, -0.0176473707, -0.0174633954, 0.0157085657, -0.00896520354, -0.0283461772, 0.0100973528, 0.0229684692, -0.0070865443, 0.0251620077, -0.0102247195, 0.0269592945, 0.0165152214, 0.00711131, 0.0222608764, 0.00963034108, -0.0234213304, -0.00259332848, -0.00503098639, 0.00126570708, -0.00465242425, -0.0305963233, 0.00796042196, 0.0363985859, -0.00499560684, -0.0056713582, 0.0063011162, 0.0134796472, 0.0456822067, 0.0110879829, -0.0336814299, -0.0225156099, 0.0146471756, -0.00463473424, -0.0152981617, -0.0107412627, 0.0308793597, -0.0270159021, 0.024426112, 0.00270831236, -0.00915625412, 0.0186946075, -0.0160482097, 0.0177747365, 0.0101185804, -0.0151566425, 0.0213268548, 0.00541662471, -0.0210862719, -0.04395568, 0.0443236269, 0.0199965797, 0.0194446575, 0.0228694063, -0.0242987443, -0.00313286809, 0.00783305522, -0.0412102193, -0.0174775477, 0.00276668882, 0.00812316779, 0.00182205206, 0.0132532176, -0.00951712672, 0.00296481489, -0.00420310255, 0.00529633369, -0.0173218772, 0.00834959745, 0.0170812961, 0.00950297434, -0.0106988065, -0.00460289279, 0.0230816845, -0.0132532176, -0.00116752856, -0.0127649782, 0.00667614024, 0.0333983898, 0.00295420084, 0.0138051398, -0.0215674359, 0.0101327319, 0.0107200341, -0.0100124413, -0.0162321851, -0.0201522503, -0.00896520354, 0.000775256602, 0.0175483078, 0.00435877312, -0.00627281237, -0.0303698927, -0.0225014593, 0.00430570357, 0.0123758018, 0.00419602683, 0.0310491826, 0.00704055093, -0.00892982446, 0.00304618804, -0.0384364538, 0.0119300187, 0.0195578709, -0.0189634934, 0.03993655, 0.00446491223, -0.0353230461, 0.00717145531, -0.0132390661, 0.0302000716, -0.025685627, -0.0324360654, 0.0113073364, -0.00794627, 0.0031045645, 0.0140811019, 0.0226854328, -0.0453425609, -0.0125810038, 0.0275253691, -0.0199824274, -0.0342191979, 0.0224307, 0.0153406169, 0.018949341, -0.0453425609, 0.00267647067, -0.0259120576, 0.00593316741, -0.00623389473, 0.0105077568, 0.0416630767, -0.016090665, 0.0113214888, 0.0398233347, 0.0129631041, -0.00319478265, -0.0200956427, -0.00643555867, -0.011194122, -0.0184257235, 0.0276810396, -0.00480455672, -0.0184257235, -0.0242987443, 0.000853091828, 0.0210013613, 0.0336814299, -0.0074438788, 0.000921639905, -0.0198409092, -0.0177888889, -0.0253035277, -0.0119583225, 0.019119164, 0.00700163329, 0.0213127024, -0.0117955757, -0.0159774516, 0.00703701284, 0.0128286621, -0.00320008956, -0.0318133831, 0.0217514094, 0.0299170334, 0.0225297622, -0.0209306013, 0.0165010691, 0.00347958878, -0.0128286621, -0.0207183249, 0.0120290816, -0.0170954484, 0.0242279861, 0.0112861088, -0.0013090471, 0.00650631776, 0.013302749, 0.026534738, -0.0219919924, -0.0101964157, 0.0260111205, -0.0102600986, 0.00438353885, -0.00980723929, -0.0387194902, -0.0159208439, 0.004082812, 0.00521849887, 0.0109393885, 0.0173926372, -0.00649924204, 0.0124748657, -0.00148594542, 0.0031045645, -0.00243058219, 0.0489654392, 0.00204494386, -0.00447552605, 0.034870185, -0.000161309101, -0.0422291532, 0.0500975884, -0.000389839552, 0.0264922827, -0.00575626921, 0.010069049, 0.000378341152, 0.045144435, -0.00946051907, 0.0322096348, -0.0235203933, -0.0186663046, 0.0345871486, 0.0182417482, -0.0214542206, -0.00399790052, -0.0136565454, 0.00510528358, -0.0122838151, -0.00120290811, -0.0150575796, 0.00213339296, -0.0110313753, -0.036030639, -0.026605498, 0.013982038, 0.00692379801, 0.013267369, 0.00250311033, -0.0208315384, 0.0228835586, 0.0111658182, 0.0174492449, -0.0254875012, -0.0179304071, 0.000328588503, 0.0135362549, 0.0393704772, 0.0121564483, 0.00464534806, 0.0435877293, 0.00885906443, -0.00693087373, 0.02197784, -0.0146896318, 0.00885906443, -0.0274970662, 0.00245180982, 0.0189068858, -0.0300019439, -0.023407178, 0.0112578049, 0.0198975168, 0.0176190659, -0.0130480155, -0.00196887762, 0.00670798216, -0.0148736052, -0.024765756, -0.00623743283, -0.0222750288, 0.00943221524, -0.0302566774, 0.0286858212, 0.0121352207, -0.0163029432, 0.00100655109, 0.00905011501, 0.0069980952, -0.00415710919, -0.0127366744, 0.00587656, -0.00932607614, -0.00330799748, 0.00622681854, 0.014562265, -0.0137202293, 0.00679996889, -0.0019954124, -0.00451090559, -0.0306246262, 0.00484347437, 0.0207890831, 0.0039908248, 0.00546615617, -0.00273130904, 0.0103733139, -0.0220910553, 0.00597916124, -0.00982139166, 0.0105855921, -0.00965864491, 0.00906426646, 0.00548738381, 0.00989922695, 0.000442024524, -0.00891567208, 0.00557229528, -0.007535866, 0.00105962052, 0.00553691573, -0.00267470162, -0.0131116994, 0.0148877576, -0.0030497259, -0.00839912891, 0.00014571994, 0.00650278, -0.0202654637, 0.00534586562, -0.0115408422, -0.00524680223, -0.00306387781, -0.000736781221, -0.0034105985, -0.021128729, 0.0240581632, -0.00344951614, -0.0271291174, -0.0116965128, 0.0727971718, -0.0156095028, 0.00623743283, -0.00707239239, 0.00263932208, -0.0482861474, -0.0171520561, 0.0260535758, 0.0351532213, 0.0110879829, 0.017590763, 0.024327049, 0.018270053, -0.00837082602, -0.0163595509, -0.00833544601, -0.0165010691, 0.0003051495, 0.0307944492, -0.0144419735, 0.00571381394, 0.0202654637, -0.00538478279, -0.00705470238, 0.0460501537, 0.00342121231, -0.0259120576, -0.00327438675, -0.0356626883, 0.0136282416, 0.0134442681, 0.00396252098, 0.0154255284, -0.000553691527, 0.00768446038, 0.0277376473, -0.0191474669, 0.0125243971, -0.0134301158, -0.00491069583, -0.0156519581, -0.0190908592, 0.0121352207, -0.00604284462, -0.0063683372, -0.0110950591, -0.0298321228, -0.00268000853, -0.0215957388, 0.0333134793, -0.0375590399, 0.003767933, -0.0158500839, -0.0006302, 0.00316117192, 0.0125031685, 0.00126924505, -0.0113922479, 0.0139678866, -0.058758527, -0.00329561462, -0.00883076154, -0.0123616504, 0.00977893546, 0.0155528951, 0.000432074, -0.00770568801, 0.0351532213, -0.0242421366, 0.0270300545, 0.0405309275, 0.0213834625, -0.0178171918, 0.00331507344, -0.0230533816, 0.00691672182, -0.000310677569, 0.0229967739, 0.00902181119, -0.00206794054, -0.0155670466, 0.0313322209, -0.0151566425, 0.00282506528, -0.0196427833, -0.000830095087, 0.00335045299, -0.0035963417, -0.0161048174, 0.00329915248, -0.0140669495, -0.00526803033, -0.00312225427, 0.0139183551, 0.0139678866, 0.00544846617, 0.0226146728, -0.00299311848, 0.00300903944, -0.00676812744, 0.0199965797, 0.0119370949, 0.00713607576, 0.00960203726, -0.0140598733, -0.0242138337, 0.0190908592, -0.00348135782, 0.00325315888, 0.0192606822, 0.00326554198, 0.0142296962, 0.00202902313, 0.0107200341, 0.0154679837, 0.00550153572, 0.0042384821, -0.00793919433, -0.0115549946, -0.00442599459, -0.00898643117, 0.00380331255, 0.0128215859, 0.00552983955, -0.00721391104, -0.0185247865, -0.0122342836, -0.0111375144, 0.0167133473, -0.0195437204, -0.0312190056, 0.0181568377, -0.028204659, 0.0211004242, -0.0157368686, 0.0222184211, -0.00917748176, 0.0202796161, 0.00693795, 0.0101115042, -0.0292377435, 0.00829299074, 0.0141094048, -0.0132178375, 0.00564305438, 0.0385213643, 0.00149744377, -0.00347958878, 0.00302496017, 0.0229826216, -0.0351249166, -0.0191616192, 0.0178030413, -0.00854772422, 0.00498499302, -0.0164586138, -0.0171379037, 0.0135787101, -0.0156095028, 0.00917040557, 0.0297189075, 0.0313322209, -0.00902181119, -0.00993460603, -0.00781182712, 0.00643202057, 0.00817977544, -0.0157227181, -0.00233859499, -0.0137485331, 0.0127154468, 0.00226606661, 0.0278650131, 0.00227314257, 0.00638602721, -0.00709362, 0.00579872495, -0.00153017, 0.0138405198, 0.000368390611, -0.0312473085, -0.000823019131, -0.0136848493, -0.00764200464, -0.0126022324, -0.0101822643, 0.00127632089, -0.0264215246, -0.000668233202, 0.00652400777, -0.013437192, 0.0115408422, 0.0304548051, 0.000749606348, 0.0289122518, -0.00577749731, -0.00392006524, -0.0214259177, -0.00470195571, -0.00262340112, -0.00141076359, 0.00899350736, 0.0201664, 0.0257139318, -0.0145905688, -0.00503098639, -0.0116045261, -0.00472318335, 0.0104086939, 0.000860610045, 0.0134301158, -0.0283603296, 0.000730589789, -0.0315869525, -0.00218292442, 0.0068353489, 0.01258808, -0.0233505704, 0.030822752, 0.00911379792, -0.00636126148, 0.00214754487, -0.0183549635, -2.16976769e-05, 0.001926422, 0.000644351938, -0.0174067896, -0.00578811113, 0.0164869186, 0.00600038888, -0.0122625874, 0.034502238, 0.035549473, 0.00353973405, 0.00462412043, 0.00587656, 0.00313286809, -0.0263507646, 0.00213869987, 0.000398463337, -0.0142013924, 0.00616667327, 0.0139395827, 0.0288131889, 0.000888913753, -0.000117747906, 0.00534940325, -0.0295207817, -0.00956665818, 0.0186663046, -0.00331330439, 0.0269734468, 0.00425263401, -0.0328323171, 0.0352947414, -0.011158742, -0.00311340927, 0.00610299, -0.0236477591, -0.0296056923, 0.00580580067, -0.0118521834, -0.000852649624, -0.00420310255, -0.0491352603, -0.004082812, -0.00204671291, -0.00619497709, -0.00201310217, -0.0171379037, 0.0100478213, 0.0193455927, 0.0386628844, 0.010479453, 0.00805948488, -0.0146896318, 0.0133522805, 0.0235486962, -0.0148028461, -0.00758539746, -0.0313888267, 0.0139112789, 0.00800287724, -0.0247091483, -0.0317001678, 0.0110738315, -0.0116823614, 0.0127154468, 0.00536001706, 0.00644971058, 0.0179870147, 0.0290679224, -0.0155387428, 0.00335222203, 0.00109676924, 0.051880721, 0.0108261732, -0.0342191979, 0.00931192469, -0.00921993703, 0.0164161585, -0.00784013048, -0.00715376576, -0.0094817467, -0.0160623621, 0.00561475055, 0.0178313442, -0.00605345843, 0.0193738975, -0.0077835233, -0.00861140713, -0.0312190056, -0.0156519581, -0.00745803071, 0.00225368375, -0.00194411189, -0.0131400023, 0.00152397854, -0.0185955446, -0.0203079209, 0.006209129, 0.00279499241, -0.0408988781, 0.00574919349, 0.0313605219, 0.000591282442, -0.00625512237, -0.031671863, 0.0016566522, -0.01810023, -0.000974709401, 0.00323546911, -0.0162180327, 0.0148169985, -0.0178738, 0.0197843015, 0.00911379792, -0.0361438505, -0.00246773078, 0.00111711246, -0.0131895347, 0.0105431359, -0.0146188717, 0.00335929799, 0.0146330241, 0.00779767521, -0.00271538831, 0.0174492449, -0.0261809416, 0.00318770669, 0.0123474989, -0.0216948017, 0.00728820823, 0.0318699889, -0.00194764987, 0.0389459208, 0.0106209712, 0.00355388597, 0.0245676301, 0.00608883798, -0.0159633, 0.00967279635, 0.0388610102, 0.00509820785, 0.00207147864, -0.0319266, -0.00463119661, -0.00284806197, 0.0217231065, 0.0210296642, 0.00382100232, 0.0119653987, 0.0084769642, -0.0197135415, -0.0080524087, 0.0296056923, 0.00963034108, -0.015241554, -0.00881660916, -0.0166284367, -0.0411536098, -0.00756416935, -0.00841328129, 0.0057598073, 0.0107907942, -0.00529279606, 0.00457458897, -0.0081585478, -0.00899350736, -0.0157227181, 0.0253884383, 0.0125810038, -0.0132036861, 0.00137449952, -0.00677874126, 0.0226854328, -0.0290396176, 0.00613129372, -0.0153972246, -0.00871754624, -0.000382984726, 0.00922701322, -0.00521496078, 0.00714315148, 0.0277801026, -0.00393067952, -0.00140722562, -0.0337946452, 0.014491505, -0.0157934763, -0.00275430596, 0.010104429, -0.0311623979, -0.00774106802, 0.0045285956, 0.014357063, -0.00191227021, 0.0457388125, 0.0194729604, -0.00468072807, -0.0105643645, -0.0246808454, -0.0133239767, -0.031502042, 0.0136706978, -0.0325775817, 0.00333276321, 0.0129418764, 0.012722523, 0.0234920885, -0.00953127816, -0.00413588108, 0.00705824047, -0.00112507294, 0.00396605907, -0.0124748657, -0.00982139166, -0.0102813272, 0.0103167063, 0.026025271, -0.0305114109, 0.00524680223, 0.0303698927, -0.00533171371, 0.013097547, 0.00936853141, 0.0120503092, 0.0183125082, -0.00049487286, -0.00270831236, 0.0130409393, -0.0150434282, -0.0202230085, 0.00884491298, 0.0179021042, 0.00466657616, -0.00671859598, -0.0189210381, 0.00570319965, -0.000398684439, 0.0147462385, -0.0112507297, 0.0076915361, 0.0146330241, 0.0141730886, 0.00175129273, 0.0020838615, 0.00479394291, -0.0165435243, 0.012418258, 0.0238175821, -0.0288981, 0.00846281275, -0.00873877387, 0.00484347437, -0.00364764221, -0.0191333164, 0.009319, -0.026704561, -0.00575626921, 0.00574565539, 0.0294075664, 0.00824345928, 0.0190342534, 0.0131541546, 0.0106068198, 0.0103025548, 0.000484258984, 0.00287636579, 0.00298250467, 0.0145198088, 0.0100053651, -0.0105077568, 0.00996291, 0.0221901182, 0.0118663348, -0.0125527009, 0.0200531874, -0.0249497313, -0.023746822, -0.0101327319, 0.00918455794, 0.00273484713, -0.00633295765, 0.0193597451, 0.0133735081, -0.00629050191, -0.0114205517, -0.00249249651, 0.0202230085, -0.00943929143, -0.0153123131, -0.0214542206, 0.0161189698, 0.0257422347, -0.00453213323, 0.00929777231, -0.00551922573, 0.00523265032, -0.00521142269, 0.0159066916, -0.0137697607, 0.00810901634, -0.0418895073, 0.0045958166, 0.00118168036, 0.0174067896, 0.000848669384, 0.0244827196, -0.00482932245, 0.0188361257, 0.00895105209, -0.00735896779, 0.0144773535, 0.00295420084, -0.0241996814, 0.00785428286, -0.00746510644, -0.00911379792, 0.00910672266, -0.00308864354, -0.00706885429, -0.0313322209, -0.00199718145, -0.00375024299, 0.000591282442, 0.00392714143, -0.0116186775, -0.0139749628, -0.01483115, -0.00213162391, -0.00246419269, -0.0175624583, 0.012418258, 0.00844158512, 0.0033186113, -0.0020750165, -0.0025208, -0.000380331243, 0.00951712672, 0.00866093859, -0.00144083635, 0.00907134265, 0.00662307069, 0.00381746446, -0.000881837797, 0.000351806404, 0.00252787606, 0.00958788581, -0.0260394234, 0.00116310606, -0.0100407451, 0.0242138337, 0.00434108311, 0.0189917963, 0.0281197466, 0.0057598073, -0.00678581744, -0.0106421988, -0.0178313442, 0.0127862059, -0.00325669697, 0.00370424963, 0.00460289279, -0.0130763194, -0.0062975781, 0.000666906417, 0.0241430737, -0.0131612308, -0.0131116994, 0.00372901536, 0.00383161637, -0.0318699889, 0.000100445046, 0.00458520278, -0.0133805843, -0.0180577748, 0.00475856336, -0.00880245771, -0.00451444369, -0.0149160614, -0.0137556084, -3.98021075e-05, -0.0049743792, -0.0131824585, -0.0268460792, 0.00790381432, -0.00294535607, -0.0116186775, -0.00426678592, 0.00600038888, -0.0289264042, 0.00637187529, 0.0202937685, 0.025685627, -0.0135999378, 0.0111658182, 0.00244296505, 0.00639664102, 0.0191757716, 0.0166850444, 0.0117955757, -0.0212560948, -0.0101751881, 0.0196003281, 0.0199399721, 0.0135504063, -0.00618436327, -0.0396535136, 0.00149213686, 0.00764200464, 0.0257846899, 0.00503806258, -0.00277553359, 0.00482224673, 0.0230675321, -0.011463007, 0.000440918899, 0.00632588193, -0.00198126049, -0.00687426655, 0.00286752079, -0.0282895695, 0.0014992127, 0.000912795, -0.00203433, 0.0107341865, 0.00747218262, -0.00739434734, 0.0079108905, 0.00246419269, 0.0183691159, -0.0207466278, 0.0014850609, 0.0239874031, -0.020958906, 0.0188078228, 0.0201947056, -0.00697686756, -0.0106917312, 0.00868924242, 0.0196710862, -0.0156095028, 0.0274829138, -0.00454628514, -0.0105572883, 0.000344951608, 0.0258696023, -0.00807363633, -0.0226854328, 0.0157651734, -0.0043269312, -0.0327191, 0.00993460603, 0.0144419735, 0.00527510606, 0.0187087599, -0.00118433381, -0.00413234346, 2.69078828e-05, -0.0149726691, -0.00245888578, -0.0342191979, -0.00209447532, 0.0234213304, -0.0174917, 0.00758539746, -0.0144773535, -0.00644971058, -0.00509113213, -0.00234744, 0.020378679, -0.022388244, -0.0110526029, 0.0240157079, 0.00563951628, -0.00502037257, 0.0137556084, 0.00145941065, 0.000804887095, 0.0264498275, -0.0103520863, -0.015411376, 0.00247480674, 0.00499206875, -0.00654169777, 0.00421371637, -0.00866801478, -0.0169256255, 0.00387407187, -0.0115337661, -0.0137485331, -0.0104511492, -0.00442599459, -0.0269734468, -0.009319, 0.00303557422, 0.0222325735, -0.00606407225, 0.0320964195, -0.00976478402, 0.00303380517, 0.00572796585, -0.0116965128, -0.0203362238, -0.0121706, -0.00266054971, -0.0328889228, 0.0177747365, -0.0223033316, -0.00252787606, 0.0280206837, 0.00145321921, -0.0292943511, -1.14776567e-05, 0.00418187492, -0.0118521834, 0.00153724593, 0.010613896, -0.0266621057, 0.0273838509, 0.0206051096, -0.00263755303, -0.012418258, -0.00931192469, 0.00776937138, 0.0202230085, 0.0120644616, -0.00258802157, 0.028544303, -0.0131683061, 0.00621974282, 0.00899350736, -0.0173077248, 0.00104989111, -0.0132178375, 0.00784013048, -0.00166815054, -0.011703589, 0.0125668524, 0.0117885, -0.0219495352, 0.00412880536, -0.0265771952, 0.0036759458, 0.00737311924, 0.0121281445, 0.0115549946, -0.00980016403, 0.0141377086, -0.0132744452, -0.0115620699, 0.00724575249, -0.0058305664, 0.0111304382, 0.026704561, -0.0103450101, -0.0049531511, -0.00386345806, -0.00719268341, -0.0117106652, 0.0174209401, 0.00756416935, 0.00725990441, 0.00611714181, -0.0111233629, 0.00438353885, 0.0113568678, 0.0203220714, -0.0137202293, -0.0260394234, 0.00147267804, 0.0280065332, -0.00449321559, 0.0160199068, -0.00388468569, 0.00653462159, 0.00210332032, 0.0034159054, 0.0116116013, 0.00288344151, -0.0287848841, -0.0122555112, -0.00249426556, -0.00764200464, 0.0213834625, 0.0106917312, 0.00594731933, -0.00564659247, 0.00952420197, -0.00510174595, -0.0050451383, -0.00266939471, 0.0132390661, -0.00313463714, -0.00798165, 0.0164020061, -0.0103450101, -0.00929777231, -0.0157227181, 0.0286999736, -0.0156519581, 0.00315940287, 0.00678935507, -0.0110738315, 0.00413234346, 0.00199010549, -0.0187087599, -0.0235345438, -0.016090665, 0.002441196, -0.035040006, -0.00530341, -0.00436938694, 0.000352248666, 0.0205768049, 0.00876000151, -0.00554399146, 0.0125385486, 0.00856895186, 0.0165718291, 0.0170388408, -0.00310279545, 0.0106634274, -0.00312756118, 0.0070865443, 0.0113144126, -0.030483108, 0.00121882895, -0.0041712611, 0.0306812339, 0.00624804664, 0.00134708022, -0.00271185022, 0.0123121189, 0.00475148717, -0.00902181119, -0.0233930256, -0.0303981975, 0.00134884927, -0.0147037832, 0.0195578709, 0.00909964647, 0.00885906443, -0.00897935592, 9.63542698e-05, -0.0086963186, 0.00736604352, 0.00227491162, -0.014562265, 0.020888146, 0.015071732, 0.0146613279, 0.0108757047, 0.0277659502, -0.0260677282, -0.0209872089, -0.00651693204, -0.0094817467, -0.00429155165, 0.00724575249, -0.00209093746, 0.000361535815, -0.0069945571, -0.000388512795, -0.0119441701, 0.010238871, 0.0266762581, 0.0218787771, 0.00986384694, 0.00419602683, 0.0025243382, -0.00677166553, -0.00883783679, 0.018609697, 0.0101327319, -0.0182134453, -0.00729528442, 0.00734481588, 0.0207749307, -0.000765969453, -0.0177464336, -0.0183691159, -0.0191050116, -0.00827176217, -0.00552630145, 0.0105219083, 0.00272600213, 0.0243836567, 0.00727405632, -0.0207749307, 0.0290113147, 0.00841328129, -0.00832129456, -0.00593316741, -0.00590132596, 0.0136353178, -0.0217797142, 0.00145498815, -0.0118168034, -0.00594731933, 0.0144632021, -0.0210721213, -0.0252186153, -0.0184823293, 0.0162180327, -0.00464888616, 0.00671505788, 0.0163878556, 0.0117106652, 0.0208032355, 0.0016893784, -0.00757124554, -0.00190342532, 0.0242421366, -0.0270300545, -0.0195437204, -0.0252186153, -0.00118964084, -0.013812216, -0.0348135792, 0.00399790052, -0.025275223, -0.000700517092, 0.0138829751, -0.018270053, 0.0016619591, 0.00431985548, 0.0142084686, -0.000972940412, 0.0344456285, -0.0066584507, 0.000261809415, 0.00655231159, -0.00652400777, -0.0197843015, 0.0205909573, -0.00570673775, -0.00446491223, -0.00589425, -0.0212702472, 0.0191333164, -0.0145905688, -0.00247480674, 0.00846281275, -0.0132107623, 0.00131966104, -0.00868924242, -0.0287565812, 0.0109818438, -0.00285867578, 0.0275819767, -1.63078075e-05, -0.0207041726, 0.0242279861, -0.00289405556, 0.000292766606, 0.0166991949, 0.00802410487, -0.032690797, -0.0109747676, 0.0137626845, -0.00163011742, 0.00562182674, 0.0277659502, 0.00110030721, 0.00115160772, -0.0170812961, 0.0140811019, -0.00798165, 0.0049566892, 0.00895812828, 0.01095354, -0.0190484039, -0.00793919433, -0.0179587118, 0.0231099892, 0.00365471793, 0.00821515545, -0.00740142306, 0.0194871128, -0.00219884538, 0.0192606822, 0.0212419424, -0.00204848195, -0.00827883836, -0.0116469814, -0.0103733139, -0.00398021098, -0.00934730377, -0.0131116994, 0.00825761072, 0.0166567396, -0.016090665, -0.0163595509, 0.00628696429, 0.014732087, -0.0161897279, 0.0157368686, 0.0102034919, -0.00303734303, -0.0135999378, 0.0185813922, 0.0336814299, -0.00698394328, 0.00904303882, 0.000178003873, -0.0192606822, -0.0141447848, 0.00617021136, 0.004167723, -0.0051335874, 0.0122838151, 0.0154396798, 0.0163029432, -0.00129577972, 0.0157368686, -0.00191227021, 0.0191474669, 0.0216948017, -0.0103733139, 0.00188573543, -0.0172652695, 0.0330870487, -0.00700163329, 0.0158783887, -0.00363702816, -0.0155104389, 0.0187936705, 0.012722523, 0.00101274252, 0.00883783679, 0.00350789237, -0.0162887909, -0.0232798103, 0.0167558026, -0.010479453, 0.00788966194, 0.0169539284, 0.000229967744, -0.019458808, -0.0062126671, -0.0208598431, 0.0264498275, -0.011498387, -0.0188078228, 0.0182559, -0.0196427833, -0.0308793597, -0.00180347776, -0.00269946735, 0.0109181609, -0.0333134793, -0.00489654392, 0.00958788581, 0.00490008201, 0.00805948488, -0.000680173805, 0.0151707949, 0.00548738381, 0.0100832, 0.00906426646, 0.0146471756, -0.00104281527, 0.0122484351, -0.0118238796, 0.0114559317, 0.0122413598, 0.0330587476, 0.00084203569, -0.00620559091, -0.00195649476, 0.0178596489, 0.00530341, -0.00862555951, -0.00231736712, -0.0146896318, 0.00709008239, 0.00616667327, 0.00342298136, 0.00764908083, 0.0155670466, -0.0145056574, 0.0153123131, 0.00145498815, -0.00839912891, -0.0220627505, -0.00802410487, 0.020477742, 0.000697863637, 0.0017309495, 0.0302283745, -0.0227561928, 0.00254202797, -0.00395898288, 0.0115903737, 0.0162746403, -0.0129418764, -0.012078613, 0.00962326489, 0.0182275958, -0.0145198088, -0.00767030846, -0.00669029215, 0.010104429, 0.00159739133, -0.0137343807, -0.0021298551, 0.0166425891, 0.0195861757, 0.00166549708, -0.00921286177, 0.00247303769, 0.00686719036, 0.00523972651, 0.0034105985, -0.00347958878, -0.00110119162, 5.34011633e-05, -0.0283037219, -0.00505929, 0.0128003582, -0.000347826193, -0.00687426655, 0.00669029215, -0.000643467414, 0.00481870864, 0.00239520241, 0.0068176589, -0.0165576767, -0.00356096192, -0.00886614062, 0.0241713785, -0.0236760639, 0.00997706223, -0.00747925835, 0.00618436327, 0.006906108, -0.00145321921, -0.00659476733, 0.0130480155, -0.0181568377, -0.00160977419, 0.00588009832, -0.00289051747, 0.00636126148, 0.013338129, -0.00296304584, -0.0342758074, -2.06473433e-05, -0.000135106049, 0.00195295678, 0.0173643325, 0.0331153534, -0.000131899767, -0.00933315232, -0.0130763194, 0.0147462385, -0.0118804872, 0.0188078228, 0.00908549502, 0.020619262, -0.003767933, 0.017689826, -0.00173714093, 0.00401205244, -0.00339644658, 0.00702993665, 0.00254202797, -0.0153547693, -0.0129560288, 0.0162038803, 0.0135362549, -0.0102600986, 0.00760662509, 0.00487885391, 0.000554133789, -0.0110030714, -0.00196357071, -0.0332285687, -0.0108898571, 0.0203220714, -0.00803825725, 0.0128781935, 0.0021723106, 0.0107554141, -0.0128003582, 0.00375731895, 0.00224307, 0.00713607576, -0.00812316779, -0.00221122825, 0.00874585, 0.0249638818, -0.00571735157, -0.0171945114, -0.00277199573, -0.0116186775, -0.00529633369, 0.00292589725, -0.00581287686, 0.0110667553, 0.00243058219, 0.00400497671, -0.0259969682, 0.00838497747, 0.0139891142, -0.00318063074, 0.0171237513, 9.81232515e-05, -0.0225014593, 0.000683269522, -0.016670892, 0.0109252362, -0.00630819192, 0.0253601354, 0.00538478279, 0.0036334903, 0.00166549708, -0.032690797, 0.000427430408, 0.0289122518, -0.000855303078, 0.0162746403, -0.00484701246, -0.0193455927, 0.00808071252, -0.00333453226, -0.00692026, 0.00596500933, 0.00769861229, 0.00546615617, 0.0115549946, 0.00736604352, 0.0142438477, 0.0180860776, -0.00479394291, 0.00313286809, -0.0164161585, -0.0232090522, 0.00087078166, -0.00030116929, 0.0134867234, 0.00559352292, 0.0294641741, -0.0165293738, 0.00825053453, -0.0137202293, -0.00967279635, -0.0176049154, 0.00827883836, -0.0179162566, 0.00672213407, -0.00956665818, -0.00410757773, 0.00486116437, -0.0167982578, 0.00756416935, 0.0137060769, -0.00801702868, 0.00317001692, 0.00899350736, 0.00846988894, -0.0273980033, 0.00754294172, -0.0264073722, -0.0120290816, 0.00316294096, 0.0306246262, 0.0113710202, -0.0122696636, 0.00580580067, 0.00916332938, -0.022317484, 0.017590763, -0.0164727662, 0.00288344151, -0.0119229425, 0.00018894946, 0.0099133784, -0.0250204895, -0.0122838151, 0.035549473, -0.00768446038, -0.00619851518, 0.0021298551, -0.0152274026, 0.00723867677, -0.0173360296, -0.0125102447, 0.00818685163, 0.0181426853, -0.011668209, 0.014017418, -0.0182275958, -0.0119795501, 0.0222750288, 0.00255441084, 0.00527156796, -0.0494182967, -0.0138263684, 0.0224590022, -0.00224483898, 0.0166284367, 0.0125385486, -0.00845573656, 0.00660891877, 0.0132036861, 0.00636126148, 0.0173784848, -0.00502037257, -0.019699391, 0.0130550917, -0.0185955446, -0.00476563908, 0.00683181081, 0.0150575796, 0.00232798117, -0.00177340501, 0.00943929143, 0.00655938732, -0.0373609141, 0.0135574825, -0.00371132558, -0.00561121292, 0.00503806258, 0.0116399052, -0.0248931237, 0.00973648, 0.0311907, -0.0104653006, 0.00774814375, 0.00768446038, -0.000528041332, -0.0102034919, -0.000280604872, -0.00156731857, -0.00309748854, 0.0169256255, -0.0199824274, 0.00425263401, 0.00122148253, -0.0174775477, -0.0125314724, -0.00796749722, 0.00177340501, 0.0338229463, 0.0255299564, -0.00650631776, 0.019968275, 0.00116929749, -0.00821515545, 0.00684596272, -0.00374670513, -0.009729404, 0.0348418802, 0.0248082113, -0.0156661104, 0.00985677075, -0.00718560722, 0.0096657211, -0.0134301158, 0.0247940607, 0.00234920881, -0.0104582254, 0.0054024728, 0.00692379801, 0.0226146728, -0.0142721515, -0.0253176782, 0.0154962875, -0.0577678941, 0.00104016182, 0.0115903737, 0.0116186775, 0.0206051096, 0.00759247318, 0.0188785829, -0.00423494447, 0.0392572619, -0.0137697607, 0.00124005682, 0.0143782906, -0.00846988894, 0.0238883402, -0.0257705376, 0.00982846692, 0.0163029432, 0.00814439543, -0.0162321851, -0.0184115712, 0.0192182269, 0.016600132, 0.00878830533, 0.00034141363, 0.0163029432, 9.28163063e-05, 0.000897316437, -0.00272246427, -0.0161189698, -0.0184681788, 0.00319832051, 0.0208315384, 0.000205091419, -0.0172935743, 0.0154962875, -0.00879538152, 0.01262346, 0.0107978694, -0.00300019444, -0.0146896318, -0.00856895186, -0.00459227897, 0.0085901795, -0.0149443652, -0.0261667911, -0.000336106692, -0.0100973528, -0.00871047, 0.000620028412, -0.000200890092, -0.0153689208, 0.0109959962, 0.00163011742, 0.000921639905, 0.00358572765, 0.0200956427, -0.0205626544, -0.00216877274, 0.0226995852, 0.000277730258, 0.00606761035, -0.0244402643, -0.0200673379, 0.0110950591, 0.00514420122, -0.0125173209, -0.00691318419, -0.00921286177, -0.0197559968, 0.0299453381, -0.0209164508, -0.026265854, 0.0063895653, -0.00714668958, 0.0103450101, 0.00581287686, -0.00542723853, 0.00545554236, 0.00498853112, 0.00529279606, -0.000347605092, -0.00538124517, 0.0217797142, -0.00266585685, 0.000429420528, -0.00885906443, -0.0176473707, 4.96144348e-05, 0.0114063993, 0.0122696636, 0.00313640619, 0.0247516036, -0.0214542206, -0.00687072845, -0.00742265116, -0.00479040481, 0.00132231449, -0.0243128967, -0.0100548975, 0.00747218262, 0.010274251, -0.00657353923, 0.0183266588, -0.00968694873, 0.0493333861, 0.00256148679, 0.00861140713, 0.0016336554, 0.00669736788, 0.0201239455, 0.027114965, 0.0180577748, 0.00454274751, -0.0103379339, 0.0333700888, 0.0108049456, 0.00138511334, 0.00933315232, -0.0110809067, -0.00419956446, -0.00680704508, -0.0172935743, -0.0178171918, -0.0280348361, 0.00223068707, 0.0182417482, 0.0156095028, -0.000384090352, -0.00151601806, -0.0263790693, -0.0139183551, 0.0030585709, -0.00243058219, 0.0214117654, 0.0140669495, 0.00965156872, -0.00395898288, 0.0261101834, -0.00115249213, -0.00420664065, 0.00613129372, 0.00511943549, 0.0104511492, 0.0224590022, -0.0243128967, -0.0137697607, -0.0052432646, -0.0157934763, 0.00854772422, -0.0144773535, 0.0047054938, -0.000372591952, 0.00931192469, 0.00478686672, 0.00529987179, -0.0146047203, -0.00848404, -0.0109676924, 0.00169910782, -0.0103733139, 0.00187689054, 0.00851234421, 0.0236336067, -0.0131824585, 0.00911379792, 0.00919870939, 0.00574919349, 0.00943221524, 0.00757832127, 0.00740849925, 0.000685923, -0.00542016281, 0.000444899109, -0.0102105672, 0.0057598073, -0.0269309916, 0.0167982578, -0.0364551917, -0.000845131406, 0.00050637126, 0.00311517832, 0.00652754586, 0.00619497709, -0.0162321851, -0.00110384519, -0.00996291, -0.0135221025, 0.0141589362, 0.00707593048, 0.000816385495, 0.00682827272, 0.0311907, 0.00411819154, 0.00413941918, -0.0318416879, -0.00451798132, 0.00106138957, 0.0110313753, 0.00763492892, -0.00210332032, 0.0193172898, 0.00734481588, 0.0155528951, 0.00462412043, -0.0205343496, -0.00140722562, -0.00490361964, 0.0139254313, -0.0136565454, 0.0136565454, 0.0239024926, 0.00128781935, -0.00371840131, -0.00692026, -0.00636479957, 0.00635064766, -0.00984969549, -0.0134513434, -0.00745803071, 0.00718914531, 0.0187795199, 0.0182842035, 0.0160199068, 0.0101822643, 0.0447764881, -0.00664429879, 0.00258802157, 0.0200107303, -0.0249214265, -0.00193172903, 0.00895105209, 0.0079108905, -0.00404389435, -0.00307802972, 0.00398021098, 0.000453744025, 0.0140740257, 0.00212808605, -0.00332038035, 0.0212419424, 0.0486257933, 0.00980016403, 0.00469841762, -0.00496730302, -0.00343713327, 0.00591901597, -0.0227986481, 0.0151566425, 0.00841328129, 0.0154679837, 0.0135433311, -0.0154962875, -0.00808071252, 0.0218646247, 0.00488946773, 0.000468338141, -0.0185106341, 0.0181851406, -0.0194446575, -0.0121210683, -0.0131824585, -0.00806656107, 0.00170618366, -0.020039035, 0.00227137376, 0.0145198088, -0.00125243969, -0.00643202057, 0.00517958123, 0.00779767521, -0.00136211654, 0.0102671748, -0.000491777144, 0.00279853051, -0.00731651206, 0.00181851408, -0.00647447631, 0.0201522503, -0.0169963855, -0.00683181081, -0.00598977506, 0.0143287592, -0.015581199, 0.0101610357, 0.0221618135, 0.00914917793, -0.0196852386, -0.0115832984, 0.00716084149, -0.00107642589, -0.0045958166, -0.0239449479, 0.0244119596, -0.0141660124, -0.0234496333, -0.020888146, 0.0072669806, -0.00612421753, -0.00650985586, -0.00229083234, 0.0105219083, -0.029633997, 0.000396252115, 0.000472760585, 0.0192748345, -0.0175624583, -0.0172794219, -0.00871754624, 0.000505929, -0.0248789713, -0.00700517092, 0.00520434696, -0.0109323123, -0.000244119597, 0.00483639818, 0.000312004297, -0.0150575796, -0.00343182613, 0.0104653006, -0.0157368686, -0.0105148321, 0.0268460792, 0.0171945114, -0.001220598, -0.00451444369, -0.0023863574, 0.0212843977, -0.0115408422, -0.00177163607, -0.0468709618, 0.00398021098, -0.00747925835, 0.0100195175, -0.0180860776, -0.0173077248, -0.0184540264, -0.0181992929, 0.019119164, -0.00964449346, -0.00907841884, -0.019458808, -0.00333807012, -0.0136706978, -0.0171237513, 0.013607014, -0.00481517054, -0.000770391896, -0.0036334903, 0.0236336067, 0.00977893546, -0.00657353923, -0.0211853348, 8.20918503e-05, 0.0145056574, 0.00387760974, 0.0141164809, -0.00745095452, -0.0191333164, 0.0180719253, -0.00714668958, -0.00510882167, 0.0097011, -0.00560059911, -0.0274829138, 0.0232656598, -0.0138971275, -0.00382807828, 0.0167841073, -0.0167275, -0.0189068858, -0.00679996889, -0.00153193891, 0.0221901182, 0.0677025, 0.0219353847, 0.021128729, -0.012382878, 0.0113780964, -0.0124748657, -0.00803825725, 0.0305114109, -0.00819392782, 0.0131895347, -0.00318947551, 0.015581199, -0.0089369, 0.0045993547, -0.00650631776, -0.00297189085, 0.0169822332, -0.00433400739, -0.00573857967, -0.0120644616, 0.00267116376, -0.0164020061, 0.000111722307, -0.022897711, -0.000261588313, 0.000782332558, 0.0111375144, -0.00693441182, -0.00783305522, 0.0216523465, 0.00172298902, 0.0137909884, 0.00719975913, 0.00922701322, -0.0103520863, -0.0023067533, 0.0153972246, 0.0360872447, 0.000845131406, -0.0374741256, 0.00975063164, 0.00914917793, -0.000431410619, -0.00124182575, 0.00661599496, -0.0276810396, 0.00986384694, 0.00434108311, -0.00185212481, -0.021128729, 0.0176473707, -0.0242987443, -0.00651339395, -0.0174917, 0.0201805532, -0.00207855459, 0.0329172276, 0.00505575212, 0.00996291, -0.00334160822, 0.0208315384, 0.0089439759, -0.0147745423, 0.0191757716, -0.00926239323, -0.0344173238, -0.00301788421, -0.0150151243, 0.00422079256, -0.0104086939, -0.0323228501, -0.00885906443, 0.0146471756, -0.0241430737, -0.00728820823, 0.0241147708, 0.00885198917, 0.00486824, -0.0124677895, -0.0132815214, -0.0186663046, -0.00197418453, 0.00133469736, -0.0264215246, 0.00022731426, -0.00937560759, -0.0012604, -0.00701932283, -0.0110596791, 0.00415357109, 0.00476563908, 0.0279357731, 0.00607822416, -0.00245711673, -0.00487885391, 0.000608972274, 0.0027100814, 0.00718560722, 0.0174917, 0.0189068858, 0.0120998407, -0.00873169769, -0.00387053401, -0.0101539604, 0.00830714218, 0.019458808, 0.00311164046, 0.0154962875, 0.00396252098, -0.00742265116, -0.00925531704, -0.00112241949, 0.0101398081, 0.00439061457, 0.00483286055, 0.00913502648, 0.00743680261, 0.00429155165, -0.0128569659, -0.00617021136, 0.0101115042, -0.00187335256, 0.00188042852, 0.000693441194, 0.0059402436, 0.0055829091, 0.0102813272, 0.00907841884, 0.0258412976, -0.00266762567, -0.0032814627, -0.0141447848, 0.00197241548, 0.000994168222, 0.0184964817, 0.0374175198, -0.0108686294, 0.00120379264, 0.00839205366, 0.0268036239, 0.00635064766, 0.0190201011, 0.00174244784, 0.015751021, 0.000698748103, 0.0109393885, 0.0122342836, 0.00280560646, 0.0504655354, -0.00541308662, -0.00848404, -0.0192040745, -0.0205343496, 0.0102105672, -0.0113356402, 0.00434108311, 0.0115832984, -0.0125385486, 0.00416418491, -0.0245959349, 0.0195720233, 0.00385992, 0.0162746403, -0.00736604352, 0.00211039628, 0.00679643126, -0.00065054337, -0.0194871128, 0.0187370628, 0.00177871203, 0.0102600986, 0.0145339612, -0.00155847368, -0.0172794219, -0.0168265626, -0.00267293281, -0.0115408422, -0.00279499241, 0.00107731041, -0.0108120218, -0.0264073722, 0.00740142306, 0.0166284367, 0.0547110923, -0.00596854743, 0.0083425222, 0.00223422493, 0.00125067064, 0.0351815261, -0.0154255284, -0.0126871429, -0.00418895064, -0.0126163838, -0.00388114783, 0.0186946075, 0.00833544601, 0.0232515074, -0.00454628514, -0.00457458897, -0.00267116376, 0.029492477, -0.0241572261, 0.00447198795, -0.0165435243, 0.0186238494, 0.0131258508, 0.00803118106, 0.00883783679, -0.00714668958, 0.0108544771, -0.00479394291]
30 Sep, 2021
jQWidgets jqxTree enableHover Property 30 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for pc and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTree represents a jQuery widget that is used to display a hierarchical collection of items. To display the collection of items, we can populate from ‘UL’ or by using its ‘source’ property. The enableHover property is used to enable or disable the hover state. It accepts Boolean type value and its default value is true. Syntax: Set the enableHover property. $('selector').jqxTree({ enableHover: Boolean }); Return the enableHover property. var enableHover = $('selector').jqxTree('enableHover'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtree.js”></script> The below example illustrates the jQWidgets jqxTree enableHover property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"></script> <script type="text/javascript" src="jqwidgets/jqxtree.js"></script> <style> h1, h3 { text-align: center; } #jqxTree { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTree enableHover Property </h3> <div id='jqxTree'> <ul> <li item-selected='true'>GeeksforGeeks</li> <li>Programming <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> </li> <li>Web Technology <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>jQuery</li> <li>PHP</li> </ul> </li> </ul> </div> <script type="text/javascript"> $(document).ready(function() { $('#jqxTree').jqxTree({ width: '350px', height: '250px', enableHover: true }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtree/jquery-tree-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtree-enablehover-property?ref=asr10
PHP
jQWidgets jqxTree enableHover Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0522075593, 0.0164201204, -0.0118251, 0.0366149805, 0.0767143369, -0.00565122161, 0.0380087309, 0.0200206414, 0.0133059593, -0.0182203799, -0.00551329833, -0.000509499165, -0.00331741595, -0.0213853549, 0.00754948, -0.0221403018, -0.0436708406, 0.0056584808, -0.0267280638, 0.00342993205, 0.0289929081, -0.0106781591, -0.0496523492, 0.0314464904, -0.0234904978, 0.0100103207, 0.0114911804, 0.0372828171, -0.0213998724, 0.0116073256, -0.0454420634, -0.00977077, 0.0301979203, -0.00877627078, -0.0294284541, -0.0227210317, 0.00116690283, 0.00286735059, -0.0390830785, 0.00234650914, -0.00374933332, 0.0158829447, 0.0272216834, -0.0118686538, -0.00763658946, 0.0177848339, 0.0214289092, -0.0177703146, -0.00157522806, -0.00542618893, 0.00735711353, 0.0355115943, -0.00806487724, 0.036992453, 0.0116726579, -0.00205614441, 0.00248261751, 0.0346405, -0.0268587284, 0.0277733766, 0.00736800255, 0.00100175792, -0.0103442399, -0.0319691449, 0.00897226669, 0.0183800813, 0.0213272814, 0.0202093776, -0.0356858112, 0.000657403667, -0.0127687845, 0.0307205766, 0.0133567723, -0.01633301, 0.0315336, -0.0179880876, -0.0270184278, -0.0363536514, -0.0126018245, 0.0159990899, -0.00613758247, -0.0182058625, -0.0590311289, 0.0220822301, 0.0254069045, 0.0300237015, 0.00958929211, -0.0313593782, 0.0319110714, 0.0546175875, -0.0385894589, -0.018714, 0.00697963964, -0.0174073596, -0.0221548211, -0.00633357838, -0.0229968783, -0.00255520875, -0.0259440783, 0.00688527105, 0.020296488, 0.00675460696, -0.0106346039, -0.0223580766, 0.0113677755, 0.0224742219, 0.0307205766, 0.00254250527, -0.00850768387, -0.000835252, 0.0239696, -0.036121361, 0.00905937608, 0.000944592408, -0.041318886, 0.0537174568, 0.0043373215, -0.021893492, 0.000730448519, -0.00525559951, 0.00519389706, -0.00414495496, -0.00322667696, 0.0509880297, 0.00361866923, 0.00551692769, 0.00635535549, -0.00940781366, 0.0583342537, -0.022953324, 0.00198899768, 0.0239986368, 0.0152586605, 0.0140754255, 0.031794928, 0.0336242244, 0.031243233, 0.00505234441, -0.0547918044, -0.00387636782, -0.0506976619, -0.0146997087, -0.0158684272, 0.0344372429, 0.0127179706, 0.030081775, -0.00137288019, 0.0051031583, -0.0365859419, 0.017058922, 0.0178429056, -0.0114621436, 0.029646229, 0.041899614, 0.0175525416, 0.0167104844, -0.0145617863, 0.0214434266, -0.0365278684, 0.011549253, 0.0151715521, -0.0233598333, 0.000754948, 0.00901582185, -0.0376022197, -0.00263505895, 0.0151570337, -0.00458050193, -0.0513945371, 0.0335080773, -0.0200641956, -0.0164781921, -0.0102426121, 0.00364407594, -0.0414350331, -0.00326660206, 0.0382990949, -0.0328692757, -0.00738977967, -0.0292832721, -0.0211095084, -0.0105547542, -0.0331596397, 0.00572381262, -0.00548426202, 0.0207465533, 0.0174509138, 0.041173704, -0.0353664123, -0.0211385451, -0.0259005241, 0.0124711609, 0.0598151125, 0.0182784535, 0.00544433668, -0.0289929081, -0.0177412778, 0.0334790424, 0.00834798254, -0.032549873, 0.0175525416, -0.0139955748, -0.0181477889, 0.017494468, 0.0313013047, 0.018292971, 0.0225177761, -0.043903131, 0.0269893911, 0.0111427428, 0.0116000669, -0.0136326188, 0.0202093776, 0.00206884788, -0.0150699243, 0.0138140973, -0.0095167, 0.00132297387, -0.021094989, 0.0128994482, 0.0108596366, 0.0108596366, -0.00237736036, 0.0329854228, -0.120907828, 0.0197447948, 0.0256827511, -0.0234179068, -0.00766562624, 0.0376893282, 0.000972721493, -0.0068308278, -0.0320562534, 0.00348619022, 0.0167104844, 0.0240712278, -0.0345824249, 0.00288186898, -0.00192366564, 0.0200787131, 0.0197738316, -0.0248552114, -0.028731579, -0.00370033411, 0.0258424524, -0.00877627078, 0.0106055681, 0.00830442831, -0.0144819357, 0.00838427898, -0.0137850605, 0.00468212971, -0.0209352896, -0.0457033925, 0.0175380241, -0.00290727569, 0.00785436295, -0.0103297215, -0.0257408246, -0.0186268911, 0.0100393565, 0.0397509187, 0.00171587348, 0.00566211, -0.0181332715, -0.00953847822, 0.0655062571, -0.030952869, 0.00728089316, -0.0340888053, 0.0411156304, -0.00937877782, 0.0468067788, 0.0479101613, -0.00469301827, 0.00274576037, -0.0261037797, -0.0273378287, 0.0452097729, 0.00176033552, 0.00934248138, -0.00230658404, 0.0310690142, 0.081882827, 0.0328112021, 0.00607950939, 0.0154328793, 0.00490716193, -0.0336242244, 0.0148666687, -0.0332467481, -0.0115565117, 0.0117597673, 0.00407599332, 0.0403897204, -0.00828265119, 0.0183365252, 0.0351341181, -0.00721193152, -0.000995406182, -0.0326369852, 0.00469301827, 0.00222491892, 0.0254504588, 0.0167830754, 0.0475907624, 0.0450355522, 0.00278750039, -0.0081592463, -0.00823909603, 0.0216466822, 0.0299946666, -0.06539011, -0.0500298254, -0.0145763038, -0.0121517591, -0.00418850966, 0.0211385451, -0.000349571783, 0.00550241, 0.00523019303, -0.00971995573, -0.0446290411, 0.0271200556, 0.041754432, 0.00913922675, -0.0226774774, -0.0059851408, -0.00956025533, -0.0294574909, -0.0402155, -0.00413043657, 0.0279911496, 0.0123404963, 0.0254794955, -0.052817326, 0.026481254, -0.0179154966, -0.00769466255, 0.0465744846, -0.0326369852, -0.00140100927, 0.00728089316, -0.00727000413, 0.0176832061, -0.0520043038, 0.00291997916, 0.000137582931, 0.0457905, 0.0275846384, 0.00123677182, 0.0378345102, 0.0205287784, -0.0267135445, 0.0208626986, 0.00540078199, -0.0403026082, -0.0166959651, -0.0270619821, 0.0165362656, 0.0322014354, 0.0107725272, 0.0238824897, -0.00133476988, 0.0217628293, -0.036266543, -0.0264522173, -0.00223943708, -0.00555322366, 0.0187720731, -0.0448322967, -0.0368182361, -0.0119630229, 0.0498265699, -0.0479101613, -0.0137197282, -0.0232001338, 0.00708126742, -0.00576373795, 0.00850768387, -0.0330725312, 0.0353664123, -0.00717563555, 0.0237808619, -0.0208917353, 0.0241583362, 0.0362955779, -0.0109322285, 0.0177267604, 0.0290364623, -0.0172912125, 0.0451517, -0.00313775265, -0.0333919302, 0.015897464, -0.00702319434, 0.00754222134, -0.00429013744, 0.0164346378, -0.00593069755, 0.0133204767, 0.00790517684, 0.0166233741, -0.0124493828, -0.0155780623, -0.00581092201, -0.0446871147, 0.013240627, -0.0201222692, 0.000911472715, -0.00402517943, 0.00145545264, -0.0230113957, 0.0346114635, -0.0210804716, 0.0392863341, 0.031794928, 0.0495652407, -0.0022739179, -0.0577825606, 0.0129720392, -0.0112298522, -0.0224597044, 0.0252617225, -0.0469519608, -0.00802858174, -0.0666677207, -0.0185688175, 0.0538336, 6.83377657e-05, 0.0291090533, -0.0194399115, 0.0356567763, -0.015970055, 0.00346985715, 0.0315045603, 0.074449487, 0.0152731789, -0.0229388047, -0.0382119827, -0.027933076, -0.00818102341, 0.00262054079, -0.0268877633, -0.0315045603, -0.00245902548, -0.0247390661, 0.03194011, 0.00826813281, 0.0253923871, -0.0120719094, -0.0351341181, -0.0123332376, -0.00641342858, -0.0239696, -0.00197810889, -0.00107253436, 0.0061085457, 0.00443531945, -0.00284920284, -0.0382700562, 0.00162331969, -0.0228952505, -0.0168266296, 0.000867464289, -0.0293994173, -0.00427561905, 0.0322014354, 0.00174581725, 0.00035365505, -0.00825361442, -0.0136543969, 0.0583632886, 0.0358600318, 0.00381466513, -0.00100629486, 0.016768558, -0.00131571468, -0.0133785503, 0.0206304062, 0.0379506573, 0.017567059, 0.0495071672, 0.0069469735, 0.00613395264, -0.00786888134, 0.052672144, 0.0131898131, -0.0194834657, 0.0234179068, 0.00722644944, -0.0049797534, -0.0273959022, -0.0249132849, 0.00183927838, 0.00501967827, -0.0246084016, -0.0168847032, 0.0475036539, 0.0209207721, -0.00974173285, 0.00628276449, -0.0259005241, 0.0285283253, 0.0142351259, -0.0215595737, -0.0356858112, 6.43324938e-06, 0.00579277426, -0.0431191474, 0.0142278662, -0.0282524787, -0.0245212931, -1.19591095e-05, 0.0179590527, -0.0240567084, -0.0379216187, -0.00852946099, 0.0248987656, -0.00630817143, 0.0378635488, -0.00504871504, -0.00177031686, 0.000136335264, 0.0306915399, 0.0408833399, 0.00449339254, -0.0258134156, -0.0412317775, -0.0131244808, -0.0099232113, 0.0173928402, 0.00144547143, 0.0221838579, -0.0104531264, 0.0164346378, -0.0199335311, -0.0285283253, -0.0131027037, 0.00153893256, -0.00627550529, 0.00779629033, -0.0541239642, -0.00483457092, -0.00577462651, 0.02174831, -0.00777451275, -0.00913922675, 0.0132624041, 0.0324337296, -5.63148569e-05, 0.00434821, 0.0353664123, -0.000750864798, 0.0143875675, -0.0409994833, -0.0289057977, -0.00321215857, -0.00147450785, -0.026699027, 0.0225468129, -0.0286735073, 0.0474746153, 0.000391992246, 0.00860931072, -0.0323466174, 0.0100829117, 0.0278895218, 0.0026495771, 0.00328474981, 0.00817376375, 0.00151896989, 0.00821006, 0.00482731173, -0.00130391866, -0.0194399115, 0.0606862083, -0.0141770532, 0.00855849776, -0.0040977709, -0.0176541694, -0.0142931985, 0.0156506523, 0.0278895218, 0.0149247414, -0.0259585977, -0.0164636746, -0.0201367866, -0.0284702517, 0.0190914739, 0.00459502032, 0.0288332067, 0.00921907648, 0.00621743267, 0.0152005879, 0.0202674512, -0.0264522173, 0.0196722038, 0.0358890668, -0.00858027488, -0.00272579794, 0.0189172551, 0.0276136752, 0.0260747429, 0.0217628293, 0.0193818379, -0.0148085961, -0.0134075861, 0.00775999436, -0.0087980479, -0.0190624371, -0.0112080742, 0.0117597673, 0.00478375703, 0.00932070427, -0.0106926775, -0.0263941437, 0.00926989, -0.00914648548, -0.0258714873, 0.0422480516, -0.000245675707, 0.0211240258, 0.02880417, 0.0319691449, -0.0107362317, -0.0317368545, -0.0268006548, -0.00468212971, 0.00288005406, -0.00836976059, -0.000770827348, 0.0118613951, 0.00123314222, 0.0215160195, 0.0521494858, -0.0227065142, 0.0356858112, -0.00669290451, 0.0340597704, 0.0285428427, 0.0201077498, -0.0246955119, 0.06539011, -0.0139810564, -0.00861657, -0.00668201596, 0.00498338277, 0.0106781591, -0.0133204767, -0.0181042347, 0.0116291028, 0.00428287825, 0.0148957055, -0.00557863, 0.028731579, -0.0154183619, -0.0158103537, -0.0216902383, 0.0212256536, -0.0111209648, -0.0371957086, 0.0445419326, 0.0235195346, -0.000962740218, 0.00855849776, 0.0154764345, 0.0335080773, 0.0138358744, 0.0203545596, 0.0200206414, -0.0124493828, 0.000544887385, 0.0119267274, 0.005146713, -0.00919004064, 0.0106418636, -0.0106346039, -0.0068235686, 0.0096764015, -0.00149537786, 0.00507775135, 0.0297623742, -0.00115329202, 0.00438813539, -0.0244922563, -0.0202529319, 0.00368581596, 0.00567299873, 0.0258714873, -0.00611217553, -0.0114911804, 0.0131825544, 0.0345243551, -0.0193092469, -0.00828265119, -0.0215886105, -0.0164491553, -0.0233307984, -0.020949807, -0.0144674173, -0.00718652457, -0.0334790424, 0.032404691, -0.0178283881, 0.00750592537, 0.00290183141, 0.0207029972, -0.0499136783, -0.0113024432, 0.0245938841, -0.00442806073, -0.0117307305, 0.0425384156, 0.018438153, -0.00885612145, -0.0212837271, -0.0120283542, -0.0349599, -0.00220132689, 0.0187865905, 0.0331306048, 0.0107652685, -0.0172186214, -0.000432371075, -0.0365859419, 0.0248261746, 0.00286553591, -0.00732807722, 0.00659853593, -0.00181568624, 0.0322304741, 0.0152876973, -0.0116581395, -0.0448322967, 0.0200496782, 0.0187865905, 0.00260420772, -0.00572018325, -0.00970543735, -0.0155490255, -0.0154328793, -0.0333048217, 0.00845687, 0.00150626653, 0.00537900487, 0.00195996114, -0.0215886105, 0.0258569699, -0.028658988, 0.00889967568, -0.0018338341, -0.016187828, -0.0569114648, -0.0124711609, 0.0286154337, -0.0132261086, 0.0195996128, 0.0216321647, 0.00627550529, -0.00930618588, 0.019570576, -0.0156942084, 0.0382990949, 0.00896500796, 0.0164056011, -0.0444257893, -0.00272761262, 0.0179300159, -0.0206739604, 0.00316497451, 0.0101990579, 0.0326660201, -0.00738977967, -0.00474020233, -0.00189462921, -0.00783258583, -0.0129284849, -0.0012630861, -0.0033646, -0.0359471403, -0.00196540565, 0.0265102908, -0.0143803079, 0.004373617, -0.0205287784, 0.0167395212, 0.0170879588, 0.00958203245, 0.00688527105, -0.00660216575, -0.0179880876, 0.00818828214, 0.0089214528, -0.00129847426, -0.0181332715, -0.0373699255, 0.00330471247, 0.0300527383, -0.0293413457, -0.00499427132, -0.00147904479, 0.0184236355, 0.0337984413, 0.0298204478, -0.00704860128, -0.01691374, -0.00237736036, 0.00830442831, -0.0212256536, -0.0168266296, 0.0087617524, -0.0122824237, 0.0170008484, 0.00478012767, -0.00467124069, 0.00926989, -0.0048999032, -0.00241910038, 0.00121227233, -0.0135963233, 0.00335552613, -0.00102353527, -0.0229242872, -0.0404477939, 0.0570856854, -0.00751318457, 0.0159119815, 4.61917953e-05, -0.0116871763, 0.0182494167, -0.000995406182, -0.0198754594, 0.0104168309, -0.0080431, 0.00817376375, 0.010968524, 0.027352348, -0.00805035885, -0.00734259561, 0.00947314594, 0.000212442552, -0.0103877941, 0.0191350281, 0.00153167336, 0.0395476632, -0.0186414085, 0.0273087937, 0.0347276106, 0.0301979203, 0.0201513041, -0.0273813847, 0.0152731789, 0.0429158919, 0.00113695895, 0.0214869827, -0.00591255, 0.011404071, 0.0347566456, -0.0253633503, -0.0083552422, -0.00260420772, -0.0156796891, 0.0296026729, 0.0253778677, 0.0151134785, -0.0162459016, 0.000138036616, -0.0289203171, 0.0170734394, -0.0165653024, -0.019643167, -0.00730629964, 0.0219370481, 0.010656382, -0.0128413755, -0.0532528721, -0.00425021211, 0.0172476582, -0.0243035182, 0.0561855547, -0.00305064325, -0.0297043, 0.0198609401, -0.030081775, 0.0407091193, -0.0266409535, -0.0212546904, 0.0202093776, 0.00036613163, -0.00781806745, 0.00629728287, 0.0178574249, -0.0349599, 0.0240712278, 0.0322885476, -0.0178719424, -0.0340016969, 0.0081084324, 0.0112080742, 0.00725185638, -0.0287751351, 0.00182748237, -0.00708852662, 0.020514261, -0.0340016969, 0.0228516962, 0.0244922563, -0.00897952635, 0.00980706513, 0.0218644571, 0.0137197282, 0.0141988304, -0.0171024762, 0.00205614441, -0.0132914409, -0.024114782, 0.0152586605, 0.0196576845, -0.0289638713, 0.00714659924, -0.00368581596, 0.032259509, 0.0302559938, 0.00689253025, -0.0231565796, -0.029791411, 0.00533182034, -0.0486941487, -0.00987239741, 0.00693971431, 0.00214325381, 0.0408543, -0.00770192174, -0.0269893911, -0.0149392597, 0.0121517591, -0.0121517591, -0.0260602254, -0.00134747336, 0.0493039116, 0.0271926466, -0.0369053446, 0.0105257174, -0.00836976059, -0.00830442831, -0.0169427767, 0.0156942084, -0.00910293125, 0.026553845, 0.0239405632, 0.0285863969, 0.0153602883, -0.00101899833, 0.00162241235, -0.0172186214, -0.0121517591, 0.00318675186, -0.0153748067, 0.00651142653, -0.023751827, -0.0371086, 0.000773095817, 0.00666023837, 0.0339145884, -0.0230404325, 0.0100175794, -0.0153748067, -0.00155798765, 0.0109322285, -0.014423863, -0.00680542085, 0.048229564, 0.00907389447, 0.0100320978, 0.0061521004, 0.0308367237, -0.0300527383, 0.012347756, 0.0114403665, 0.00832620542, 0.0217773467, -0.0153312525, 0.0173202492, 0.0380668, -8.85271802e-05, -0.00653683348, -0.00815198664, -0.0206884798, 0.0173202492, 0.0253197961, -0.00534633873, -0.0050668628, -0.00778177194, 0.0146053405, 0.00450791093, -0.0044244309, -0.0204271507, -0.0173347685, 0.000495888351, -0.0450065173, -0.0543852933, -0.00551692769, -0.000145862854, 0.0209788438, 0.000150740074, -0.00387273822, 0.0348727927, 0.00918278098, 0.00829717, -0.034408208, -0.0068235686, -0.0278314501, 0.0180606805, 0.0355406292, 0.0118468767, 0.0105692726, 0.02971882, 0.0133059593, 0.00207792176, 0.0252907593, 0.013168036, 0.00161152368, -0.0427997448, 0.00274031609, 0.0150699243, -0.03899597, -0.0289348345, -0.00957477372, 0.00230658404, 0.0115710301, 0.00348981982, -0.00585447671, -0.00697601028, -0.0159410182, -0.0049797534, -0.0168266296, -0.0477940179, 0.00127760437, -0.0132841812, 0.0195560567, 0.00407962315, -0.00642068777, 0.0131535176, -0.0051830085, 0.00337730348, -0.00887063891, -0.00619202573, 0.00831168704, -0.016115237, 0.010075652, -0.0150408875, 0.00897226669, -0.0155925807, -0.00844235159, -0.00660216575, -0.0126090841, -0.0344372429, 0.00178483501, 0.00952396, 0.0272507202, -0.019570576, -0.0263941437, -0.0193963572, -0.01263812, 0.0123404963, 0.00458776113, 0.00745511195, -0.0078834, 0.0180751979, 0.00535722729, 0.0170008484, 0.000240004505, 0.00250076526, 0.0250439495, -0.0113605158, 0.0110556334, 0.0171750672, 7.51999e-05, -0.0173638053, 0.00380740617, 0.0101337256, -0.00527737709, -0.00179572369, -0.0124566425, 0.000232972248, -0.00620291429, -0.00361503963, -0.00936425943, -0.0152876973, -0.0024898767, 0.0156361349, 0.00671468209, 0.0121880556, -0.000391992246, -0.0312141962, -0.0209207721, 0.0538045652, -0.0251165405, -0.00554233463, 0.0132551454, -0.0204271507, -0.0359181054, -0.00646424247, 0.016260419, 0.0298785195, -0.00937877782, 0.0150118507, 0.0111572603, -0.0045841313, 0.00470390683, -0.0132841812, 0.0126889339, -0.000475018373, 0.0168121122, 0.0173347685, 0.00149537786, -0.00687801186, 0.00427198969, 0.00170407735, -0.00635172613, 0.032085292, -0.00362955779, -0.0142060891, -0.0134075861, -0.0200351588, -0.00331560103, 0.0109322285, 0.00834798254, 0.0266699903, 0.00521567464, -0.0112298522, 0.0350179747, -0.00169863307, 0.00162241235, -0.0182494167, 0.0112225926, -0.0112806661, -0.0196141303, -0.000634718919, -0.00353337452, -0.0165072288, -0.00532093178, -0.00701956498, -0.00781806745, -0.0247390661, 0.0329273492, -0.0222419295, 0.0124711609, -0.0121880556, -0.0207029972, 0.00352974492, -0.000959110621, -0.00189281441, -0.00923359487, 0.0344372429, -0.0332467481, -0.0212692078, -0.0306334682, -0.029646229, -0.0260602254, 0.0173057318, 0.0041413256, -0.0195270218, 0.0221257843, -0.0391992256, 0.0118033215, 0.0201948602, 0.00228480669, 0.01403913, 0.0144166034, -0.0224597044, 0.00543707749, 0.00245176628, 0.0282089226, 0.0168556664, -0.00372392638, -0.0206013694, 0.0238098986, -0.0127179706, 0.00123314222, -0.0193673205, 0.012420347, -0.0191059913, -0.0132551454, 0.00965462346, -0.00461316807, -0.00408325251, 0.0152876973, -0.0236502, 0.00704497192, 0.00116781017, -0.0171895865, 0.019497985, 0.00410865946, -0.00626461674, -0.0155199887, 0.0358309932, 0.0195850935, 0.0148666687, 0.0321433656, -0.00344082084, -0.0124421241, 0.0308657587, -0.00313956756, 0.000886973168, 0.0246809926, 0.0194834657, -0.0101409843, 0.00242635934, 0.00362229859, -0.0296171922, 0.020949807, -0.0164927114, 0.00903759897, -0.00492168032, 0.0164781921, -0.0155635439, 0.00493256887, -0.00276209344, 0.0156506523, 0.0141552752, -0.00646787183, 0.00421754597, -0.00913922675, 0.0183074903, 0.00592343835, -0.027570121, 0.0206158888, -0.0377183631, 0.0111645199, -0.0206304062, 0.0246809926, -0.022735551, 0.0200787131, 0.00478012767, 0.0292397179, -0.0160136092, -0.00204525585, 0.00114784762, 0.0105184587, -0.00610491633, 0.0193237662, 0.00232654647, -0.00616661878, -0.00202166359, -0.00736800255, -0.027642712, -0.00958929211, 0.0162459016, -0.00205432973, 0.0172912125, -0.0165943392, 0.00672557065, -0.00576736731, 0.0035351892, 0.00444983784, 0.0270765014, 0.0247245487, 0.0174073596, -0.0267716181, -0.00726274494, -0.0155635439, 0.00873271562, -0.0282524787, 0.0129284849, -0.0199480504, 0.0101990579, -0.0173928402, 0.0123767918, -0.00766562624, 0.016260419, -0.00539352279, 0.0270910189, 0.00740792742, 0.0130228531, -0.0116871763, -0.0242164098, -0.00362411351, 0.00521567464, 0.0141915707, -0.00581818121, -0.0188301466, 0.00991595164, -0.0220531933, 0.0129430033, 0.00360233616, -0.0181768257, 0.00829717, 0.0349018276, -0.00138739846, 0.0100320978, -0.00439539459, -0.00492893951, -0.00667838613, -0.00629728287, 0.0149392597, -0.02749753, 0.00595973385, 0.0162168648, 0.0258714873, -0.00340089574, 0.0127978204, 0.00360596576, -0.00298168184, 0.0227065142, -0.0200206414, 0.0164491553, -0.016260419, 0.00286009163, -0.0290219449, 0.0141044613, 0.00195996114, 0.000608858303, -0.0139520206, -0.00702319434, 0.0127397478, -0.00897952635, 0.0089940438, -0.0193092469, 0.00730629964, 0.00917552225, -0.00154256204, -0.00622106204, -0.0129067078, 0.00328474981, 0.00352793024, -0.0122969421, 0.0295155644, 0.0268296916, 0.0142496442, -0.00264594774, -0.00402155, 0.00567662856, -0.0163184926, -0.00667475676, 0.00343900593, -0.00374207413, -0.00529189548, 0.00110520038, 0.0179880876, -0.00275846384, -0.000156638111, 0.0159990899, -0.0141262393, -0.0100901704, 0.00656949962, -0.00944410916, 0.0190479197, 0.0252181683, -0.0344953164, 0.0248842482, -0.00341359922, -0.0201222692, -0.0212111361, -0.00294720102, -0.0679453239, 0.0131389992, -0.00621743267, -0.0113387387, -0.0163910836, -0.0324337296, -0.00263142935, -0.00886338, -0.0195415393, -0.00493982807, -0.0146271177, 0.0193382837, 0.00343174697, 0.0265102908, -0.00775273563, 0.00653320411, -0.0325208381, 0.0232001338, 0.0189317744, 0.0179009791, -0.00996676553, -0.0217918642, 0.00316678919, 0.0294139367, -0.0177557971, -0.0085512381, 0.013385809, 0.00601417711, 0.0150263691, 0.00320489961, 0.00195814646, 0.0207029972, 0.0114331068, -0.000225939977, 0.00897226669, 0.00168048521, 0.0319110714, 0.0109322285, -0.0242018923, 0.0191640649, -0.00836976059, -0.016260419, -0.0108959321, 0.00949492306, 0.000617932237, 0.00656949962, 0.0354825556, 0.0174509138, -0.00762207154, 0.00652594492, -0.00975625124, -0.00882708468, -0.0132115902, -0.00532819098, 0.0185252633, 0.0110701509, -0.0157522801, 0.00033641464, 0.0059415861, -0.00959655084, -0.0121880556, -0.0130881853, -0.0214434266, -0.0455872454, -0.00339000695, 0.0452388078, 0.00440628314, -0.00847138837, -0.0171750672, 0.00786888134, -0.0197593123, 0.00351704145, -0.000511313963, -0.0185833368, 0.0346114635, 0.00459502032, 0.018438153, 0.0116871763, -0.00534633873, -0.00284738815, -0.000769919949, -0.00678364374, 0.0134221045, -0.0150989601, -0.00246265507, -0.0179300159, -0.00369851943, -0.00649327878, 0.00333919306, -0.0162459016, -0.014256903, 0.010075652, -0.00891419407, 0.0146997087, 0.0125074564, 0.0180897154, 0.0296752639, -0.00285101775, 0.0157522801, 0.0146634132, 0.021893492, 0.0109903011, 0.016187828, 0.0124348653, 0.00961832795, 0.0150699243, -0.0159555357, -0.00958203245, -0.00240458199, -0.00292360876, -0.00171678083, -0.00267861364, -0.00381466513, 0.0123332376, -0.00775999436, 0.0241293, 0.0245358106, 0.0220677108, 0.0176832061, -0.00939329527, -0.0124421241, -0.0278459676, -0.0017312991, -0.0165653024, -0.00022072249, 0.00145000836, -0.00592706772, 0.00599965919, -0.00272942754, -0.0232001338, 0.00099994312, 0.0275991578, 0.0203981157, 0.00849316549, 0.000262916088, -0.0200932324, 0.0121372417, -0.0392572954, 0.0197593123, -0.0290219449, 0.00366766821, 0.00151261827, 0.017131513, -0.0178574249, 0.0155490255, 0.0418125056, -0.00154891377, -0.0098361019, -0.0281072948, 0.0111572603, 0.0154328793, 0.00339545123, 0.00528826565, -0.0164201204, -0.0250875037, -0.0134075861, 0.0341759175, 0.0213998724, 0.0412317775, 0.00828265119, -0.00348800514, 0.00580729265, -0.0123114605, -0.016187828, -0.0122533869, 0.00413043657, -0.0132261086, 0.0239405632, 0.0024935063, -0.0214434266, 0.0122969421, 0.00955299567, -0.00628639432, 0.00504145585, -0.00594521547, 0.000343220046, 0.00916100387, -0.00806487724, 0.0163765643, 0.00101809099, 0.0144166034, -0.0162168648, 0.00532819098, 0.0184526723, -0.00144365663, 0.00484545948, -0.000319627929, 0.0107797869, -0.0124856792, 0.00783258583, 0.00259150425, -0.00146271184, -0.0217337925, -0.0111500015, 0.00794147234, 0.0131535176, 0.000407871557, -0.00985787902, -0.02044167, 0.00858027488, 0.00789065845, 0.0121445, -0.021820901, 0.00351704145, 0.0206739604, 0.0164346378, 0.0108378595, 0.00321941776, 0.00405784557, -0.000227641329, 0.00446798559, 0.0198173858, -0.0218354203, -0.0087980479, -0.00818828214, -0.00117779151, -0.00409051171, -0.0156361349, 0.00895049, -0.00881256629, -0.00764384866, 0.00228480669, 0.0188591816, -0.00243361853, 0.0210659541, 0.0113532571, 0.00854397938, 0.00561492611, 0.0185252633, 0.00683445716, -0.00371666718, 0.0255520865, -0.00248080282, 0.0009935915, 0.00778177194, 0.0168992206, 0.0139447609, 0.00220314157, 0.0117597673, -0.0201948602, -0.0279621128, 0.0040977709, 0.00631543063, 0.0111500015, 0.00622106204, 0.0289783888, 0.00928440876, -0.0029562749, -0.00480553461, -0.00476560928, 0.0192947295, 0.00520115625, -0.0178429056, -0.0137923192, 0.0108668962, 0.0203110054, -0.010148244, -0.0110265967, -0.00786162261, -0.0148303732, 0.00744785275, 0.0088343434, 0.00642794697, 0.00647876086, -0.0495652407, 0.0164927114, 0.0206739604, -0.0194108747, -0.0119049493, 0.00632994901, -0.0082318373, 0.00254976447, 0.0209643263, -0.00784710422, 0.0098869158, -0.00765110785, -0.0330144577, -0.00905211736, -0.00856575649, -0.00261509651, 0.0194689482, -0.00436272845, 0.00355152227, -0.0332177132, 0.00192003604, -0.0060286955, 0.005738331, -0.01633301, 0.00415221415, -0.00419939822, -0.0159264989, 0.00518663833, 0.00389088597, -0.0156506523, 0.00858027488, 0.00680179149, -0.00609039795, -0.0137560237, 0.00664572045, -0.00632631918, 0.00272942754, 0.0129792988, -0.00225032587, 0.00924811326, 0.00476560928, 0.013603583, 0.00767288497, 0.00599965919, 0.0274104197, 0.0107217133, -0.020514261, 0.0052991542, -0.00146271184, 0.026263481, -0.00299801468, 0.00849316549, 0.0166088566, 0.00243724813, 0.00177757593, -0.00272035366, -0.0278895218, 0.023824418, -0.000159587114, 0.00228843628, 0.0290074255, -0.0219225287, 0.0169282574, 0.00693608494, 0.00043123684, -0.00109068211, -0.00676549552, 0.0057818857, 0.00597425224, -0.0260166712, 0.00417399127, -0.00545159588, -0.0213853549, -0.0131244808, 0.0087617524, -0.000276526931, 0.0166378934, -0.0117525086, -0.00281653693, -0.0129212262, 0.000960018, -0.00539352279, -0.0232291706, 0.00631906, 0.00813020952, -0.0263796262, -0.000910111645, 0.0290074255, -0.0177122429, 0.0097635109, 0.0147214867, 0.0306334682, -0.00379288802, 0.00106346048, 0.00663846126, 0.00323756551, 0.00191277696, 0.00705223065, 0.00528826565, -0.00919004064, 0.00917552225, 0.0146706728, 0.00439539459, 0.0197738316, -0.00585084734, -0.0104095722, 0.00296171918, -0.0116653992, 0.019788349, -0.00753496215, 0.0110628922, -0.0029562749, 0.00283286977, -0.0181187522, -0.00671468209, 0.00144637877, -0.00755673926, 0.00668564532, 0.0149247414, -0.0222564489, -0.0257988963, -0.0104966816, 0.00495434646, -0.00925537199, 0.0164491553, -0.00791969523, 0.00555322366, 0.00398525456, 0.0238679722, -0.0163475275, 0.00575284893, 0.0123259779, -0.0255666059, 0.0204126332, 0.0158248711, 0.000715930248, -0.0070268237, 0.0157087259, 0.0155925807, -0.0145908222, 0.0206884798, 0.00218317891, -0.0124421241, 0.010075652, 0.00993047, -0.0233453158, -0.0200641956, 0.0319691449, 0.00312504917, -0.0487231836, 0.00293994183, 0.00919729937, 0.00838427898, 0.0209643263, 0.00865286589, 0.00243180362, -0.00244087772, -0.0150554059, -0.00649327878, -0.0180897154, 0.00123042008, 0.0205578152, -0.00687075313, 0.00549878, -0.0217773467, 0.00442080153, -0.0235195346, -0.0113242203, 0.0161587913, -0.000925990927, -0.00664935, 0.0219806023, -0.00540804118, -0.0137850605, -0.00683445716, -0.00516849, 0.00160154235, 0.0263796262, -0.0127252294, -0.0270184278, 0.00961106922, 0.00123586447, 0.0157087259, 0.017204104, -0.000281063869, 0.0110628922, -0.00430465536, 0.00839879643, 0.0034154139, -0.0259876344, 0.0232727248, -0.0180316437, -0.0158248711, 0.016768558, 0.0201077498, -0.0138431331, 0.0120356139, 0.00977077, -0.000890602765, -0.00656587025, -0.000777179084, -0.007948732, -0.00590166077, 0.0124130873, -0.0128704123, 0.027207166, -0.0196576845, -0.00562218484, 0.0380087309, -0.0034952641, -0.0214869827, -1.25758506e-05, -0.00785436295, -0.00184653758, 0.00572018325, -0.00155163591, -0.00778903114, 0.0305753946, 0.0261328164, -0.00163148623, -0.0218644571, 0.0134511413, 0.0132551454, -0.00355878146, -0.00589440204, -0.0166814476, 0.0215305369, -0.00711030373, 0.0179300159, 0.00349707901, -0.0298494827, 0.0080358414, -0.00736800255, -0.000145636, 0.00919729937, -0.00574196037, 0.00186740747, 0.016042646, 0.00145908224, 0.00591255, -0.0222128946, 0.00165235624, 0.00356785534, 0.0030760502, 0.02044167, -0.0241002645, 0.0111717787, 0.00657312898, -0.0234614611, 0.00732081803, -0.00478375703, 0.0187285189, 0.0205287784, -0.00532093178, -0.00802132301, -0.00136743591, -0.00465309294, 0.00472931378, 0.00829717, -0.00754222134, 0.0061883959, 0.0084786471, -0.0125800474, 0.0112806661, 0.010148244, 0.0232727248, -0.00453331787, -0.0199480504, 0.00701593515, 0.0217628293, 0.0147287454, -0.00464946358, 0.0151570337, 0.00907389447, 0.00166233745, -0.00243906281, -0.0118178399, 0.00517937914, -0.00727000413, 0.00647876086, -0.00821006, -0.0184962265, 0.00650779717, -0.00588714285, 0.0156216165, -0.00574921956, 0.00613395264, 0.0161297545, -0.00838427898, 0.00876901206, 0.0203981157, 0.00635535549, -0.0184962265, 0.00706674904, -0.0130373714, -0.00605047308, -0.0318529978, 0.0191640649, -0.0366730504, -0.00443894928, 0.0139375022, -0.023751827, 0.0113459975, -0.00372392638, -0.000566664734, -0.00960381, 0.00465672277, 0.00505597424, -0.0250003934, -0.022880733, 0.010801564, -0.0171169955, -0.00224488159, 0.000525832176, 0.00361685432, 0.0152151063, 0.0117307305, -0.00506323297, 0.0292687546, -0.00143549009, -0.0014109906, -0.0160136092, -0.000941870268, 0.00648601959, -0.043322403, 0.00158430194, -0.00722282, 0.0109903011, -0.00246991403, 0.0166959651, -0.00270765019, 0.0156651717, 0.0138649112, -0.00364770554, -0.0261037797, -0.0229968783, 0.00400340231, 0.00505234441, 0.0117742857, 0.0103732767, 0.00217047567, -0.00076674408, 0.0107943052, -0.00832620542, 0.0126671568, 0.005738331, -0.0083189467, 0.00649690861, -0.00508501055, 0.00397073617, 0.000887426897, 0.0162749365, -0.0203110054, -0.0255520865, -0.00385096087, 0.0109031918, -0.00294175651, 0.006910678, 0.00395621778, -0.0148231145, -0.01263812, 0.00658764737, -0.00936425943, -0.00392355211, 0.0212546904, -0.00510678766, 0.0129357437, -0.000171950305, 0.0171024762, -0.0218789745, -0.00757125765, 0.0204852242, 0.0127179706, 0.00991595164, 0.00958203245, -0.00927715, 0.0350760482, 0.007429705, 0.00167867052, -0.0151134785, -0.00995224714, -0.0107507501, 0.00320308469, 0.00533907954, 0.0147505226, 0.0226194039, 0.0191350281, -0.0235630888, 0.0239841174, 0.0307205766, -0.0311561245, -0.00778903114, -0.0187720731, 0.0200206414, -0.0265102908, 0.0126453796, -0.00507049216, 0.00293086795, 0.0265828818, -0.0325208381, -0.00726637477, -0.0171605498, 0.0137995789, 0.0013066408, 0.00564759178, 0.0244922563, 0.0106055681, 0.00715022907, 0.00327930553, 0.00123858661, -0.00103260914, -0.00157613552, 0.00180298288, -0.0221403018, -0.0108451191, 0.0143440124, -0.00473294361, -0.0205578152, 0.00300527387, -0.0183365252, -0.0101337256, 0.00362229859, -0.0136834327, 0.000622015446, 0.0142496442, 0.00072954112, -0.00355152227, -0.0014527305, -0.00211240258, -0.0223145206, -0.00102353527, -0.010946746, -0.019570576, 0.0103950538, -0.0157232452, 0.0113024432, -0.0118468767, -0.00887789857, 0.0259150434, -0.0153312525, 0.00322667696, 0.0127687845, -0.0129502621, -0.00469664764, 0.0138866883, -0.00936425943, -0.00170770695, 0.00286553591, 0.01763965, -0.00514308363, -0.0248842482, 0.00805035885, -0.00557500077, 0.00953847822, -0.00111790386, 0.0041340664, -0.0326660201, -0.00380014698, 0.00223580771, -0.0247971397, -0.00891419407, 0.0249568392, 0.00046004646, 0.00354063371, -0.0141988304, 0.00856575649, -0.0153022157, 0.00938603655, 0.012659898, 0.0167975929, -0.00590166077, 0.00500878971, -0.010728973, 0.0371086, -0.0219951198, 0.0216612015, 0.0191931017, 0.0211821, -0.0117742857, 0.0123767918, -0.00178574247, 0.00151443295, 0.000720920914, -0.00255702343, -0.00402880926, 0.00229388056, -0.0160281267, -0.0105910497, -0.0101264659, -0.007429705, -0.0135019552, -0.00977802835, 0.00483820075, 0.0126961935, 0.00820280053, 0.00158430194, 0.000946407206, -0.00874723401, -0.0232001338, 0.00866738427, 0.00150263694, -0.000195769273, -0.00558226, 0.027279757, -0.00244269241, -0.00566936936, -0.0100393565, -0.00108342303, -0.00172222522, 0.0204126332, -0.0124058286, 0.00283468468, 0.00182476023, 0.00971269701, 0.00833346508, 0.0179154966, 0.019643167, 0.00569477631, -0.0116653992, -0.0238824897, 0.0244196653, -0.0169282574, 0.0215160195, 0.00255883834, -0.0303721391, -0.00961106922, -0.00370940799, -0.00621380284, -0.00232291711, 0.00371303759, -0.00866738427, 0.0017712242, -0.003292009, -0.0282379594, -0.00188737, 0.0176106151, -0.0119920587, -0.0102063166, 0.00410503, -0.0252472032, 0.00961106922, -0.00989417452, -0.0110120783, 0.0136398785, -0.0146198589, -0.0196867213, 0.00705223065, 0.0121009462, 0.0277007855, -0.0158829447, -0.00159882021, 0.00517574931, -0.000519026769, 0.019497985, -0.0010371462, 0.00897226669, 0.00852220133, 0.018365562, -0.00763658946, 0.00847138837, -0.00802132301, 0.0321724, -0.00389451557, 0.0266845096, 0.00777451275, 0.0307205766, 0.00426110066, -0.00822457764, 0.00908841286, -0.000818011584, -0.00154982123, -0.01280508, -0.00586536527, -0.0129067078, 0.0143440124, 0.0113459975, 0.00624283962, 0.00480916398, 0.00708489679, -0.0138503928, -0.000267906726, -0.0171750672, -0.0015779502, -0.0331306048, -0.00533182034, 0.00850042421, 0.0143657895, 0.000796234235, 0.00778177194, -0.0154183619, 0.00922633614, 0.00349707901, 0.00785436295, 0.0160571635, -0.00453694724, -0.00619202573, 0.0204126332, 0.0100974301, -0.00600691838, -0.0149392597, -0.0227936227, 0.014329494, 0.00407962315, -0.0132043315, -0.0106346039, 0.00260239304, 0.0213853549, 0.000419213931, -0.00842057448, 0.0025334314, 0.0165507831, -0.00080621551, 0.00499064196, 0.00380377658, -0.0118831722, 0.0113097019, -0.0245503299, 0.0156942084, 0.0152005879, -0.00896500796, 0.00945862755, 0.017131513, -0.0029490157, -0.000565757335, 0.0110048195, 0.0050160489, -0.0198028665, -0.0020742924, 0.00802858174, 0.00747688906, -0.00292723835, 0.00487449626, -0.00522293383, 0.0180461612, 0.0194544289, 0.0014527305, -0.0176251326, 0.0099232113, -0.0206013694, -0.00119775406, 0.00913196709, -0.0139012067, 1.87149071e-05, 0.00968366, -0.00953847822, 0.00633720774, -1.92820262e-05, -0.0103442399, 0.0058254404, 0.0219515655, 0.0358019583, -0.0176251326, -0.0129357437, -0.0040542162, 0.00786162261, -0.0108160824, 0.00604684325, 0.00703771273, 0.012057391, -0.0164491553, 0.000679181, 0.0040977709, 0.0020706628, -0.011404071, 0.00810117275, 0.0167540386, 0.00109249691, 0.000831622456, -0.00929892715, 0.00150898867, -0.000943685, -0.0113750342, 0.000158566312, -0.00707763759, -0.0213272814, -0.0190624371, -0.0246519558, 0.000198037742, 0.00780354906, -0.00356967, 0.00909567159, -0.0106055681, 0.00590892, -0.0103514986, -0.00115056988, 0.00217229035, 0.0136616556, -0.00117416191, -0.0129067078, -0.0105620129, 0.00779629033, 0.00203255238, -0.0341759175, 0.00362592819, -0.0156070981, -0.00519389706, 0.00659490656, -1.21008889e-05, 0.00298349652, -0.00874723401, -0.0152005879, -0.0157668, 0.014111721, 0.013893947, -0.00800680462, 0.020732034, 0.00415221415, -0.0154909529, -0.000597515958, -0.00630817143, -0.0131607763, 0.00713571068, 0.019425394, -0.0157522801, -0.00139375019, 0.0061448412, -0.0294429734, 0.00226847362, 0.00330471247, -0.0107580097, 0.0249858759, 0.0142714214, -0.0115419934, 0.00131934427, 0.00505234441, 0.00161878276, -0.0270184278, -0.00421028724, -0.0276572313, 0.0102280937, 0.00629365304, 0.00442806073, 0.00599965919, -0.00847138837, 0.0381829478, -0.00603958406, -0.0216031279, 0.016768558, 0.0177412778, 0.0208917353, 0.0025697269, 0.0327821672, -0.00724822702, -0.00113332947, -0.00401066151, 0.0108451191, -0.0101337256, -0.0088343434, -0.00166415225, -0.00224851095, -0.00958929211, 0.0291526075, -0.00601780694, -0.0243035182, -0.00975625124, 0.0118904309, -0.0145763038, 0.00559677836, 0.013966538, -0.0158539079, -0.0157813169, 0.0101555027, -0.0319110714, -0.00175852072, 0.0162168648, 0.032549873, 0.0172331408, -0.0150408875, 0.0123985698, -0.00101446139, -0.0040614754, 0.0114403665, -0.0130518898, 0.00811569113, -0.00217954954, -0.0192802101, -0.0016841148, -0.0026931318, -0.0100901704, 0.0179445334, -0.0066638682, -0.0109903011, -0.0175960958, -0.00879078917, 0.000286054536, -0.00786162261, 0.00333919306, 0.0145980818, 0.0100320978, 0.0014962852, 0.000449157786, -0.00791243557, -0.00961832795, 0.0147650409, 0.00281835161, -0.0175235048, -0.041173704, -0.00444620848, 0.0134874368, 0.00209062523, 0.00793421362, 0.0190769564, -0.00378199923, -0.00648239, 0.0107144546, -0.00468938891, -0.00555322366, -0.0123404963, -0.00944410916, 0.0203110054, 0.00133749202, -0.0114911804, 0.0209207721, 0.0106491223, 0.0155054713, -0.00590892, -0.00450791093, -0.00438813539, -0.0210804716, 0.0099232113, -0.0180026069, -0.0154909529, 0.000203028394, -0.00486723706, -0.0173928402, 0.0127179706, 0.0344372429, -0.0191205107, 0.0221403018, 0.010801564, 0.00966914184, -0.0144093446, 0.00504145585, 0.000362048391, -0.00509952893, 0.00934248138, -0.0189172551, 0.00583269959, -0.000519026769, 0.00516849, -0.00414858479, 0.000529461773, -0.00101173925, 0.0241728555, -0.00771643966, 0.0090448577, 0.0175525416, 0.00629728287, 0.000710485969, 0.000325072266, -0.00160698674, -0.00658038817, 0.0351921916, 0.0253052767, -0.00536811585, 0.00175761338, 0.00602506613, 0.005146713, 0.00966914184, 0.0386765674, -0.00345352432, -0.00436998764, 0.0132043315, 0.0303721391, 0.0301108118, -0.0114621436, -0.0153457699, 0.0223000031, -0.0583342537, 0.00377111067, -0.00401066151, 0.00488175545, -0.000620200706, -0.0012612713, 0.0215305369, -0.013530991, 0.0386475325, 0.00340815471, -0.000218113739, 0.0102643892, -0.000673736678, 0.0124856792, -0.0282669961, 0.00588714285, 0.019497985, 0.00924811326, 0.00948766433, 0.00828991, 0.0149247414, -0.00103079446, -0.0108088227, -0.00502693746, 0.0206304062, 0.0124493828, 0.00797776785, -0.0142786801, -0.0103877941, -0.00715022907, 0.00144365663, 0.0199625678, -0.00380377658, -0.0214289092, 0.0044970219, -0.00597062241, -0.000330743467, -0.00917552225, -0.00753496215, -0.00282742549, 0.00869642, -0.00663120206, -0.0098869158, -0.0222564489, -0.0388798229, -0.0105039403, -0.00890693441, -0.0211240258, -0.00595247466, 0.00524108158, -0.0208917353, -0.00245176628, 0.0040977709, 0.00834072381, 0.00744785275, 0.0213563181, -0.0103514986, -0.00277479691, 0.0393734425, -0.00858753361, 0.00371666718, -0.0383862033, 0.00608676858, 0.00533907954, 0.0317658894, 0.0122679053, 0.0043373215, -0.0217047557, -0.0207755882, 0.019570576, -0.0156506523, -0.00769466255, -0.0110919289, -0.0138068376, 0.0134003274, 0.000757670205, -0.00723733846, 0.0115855485, 0.00203436706, 0.0199044943, 0.0102571305, 0.00523745175, 0.00621380284, 0.0130301127, 0.00987965614, -0.00355333718, -0.0131535176, -0.0140754255, 0.0138866883, 0.00474383216, 0.0100248391, 0.00517212, -0.0227210317, -0.0059488453, 0.00887789857, -0.000329155533, -0.0118178399, 0.000854307145, 0.00618476653, 0.00313775265, 0.0020634036, 0.00502693746, 0.0136834327, 0.0124711609, 0.0412027389, -0.0157232452, -0.000572109071, 0.00722644944, 0.00572018325, 0.00226665894, 0.0231856145, 0.0129284849, 0.00574196037, 0.00135563989, 0.00555685302, 0.0119702816, 0.00948040467, 0.0029526453, -0.0129067078, -0.0103442399, 0.00330289756, -0.0107071958, -0.00216684607, -0.0320272185, 0.0013465659, 0.00554959383, 0.0123913102, 0.00709578535, -0.0131535176, -0.0152586605, -0.0116291028, 0.00773095805, 0.00709941518, -0.00507775135, 0.000180003379, 0.00505597424, -0.00481279381, 0.0188301466, -0.01633301, 0.000839788932, 0.0150989601, 0.0104821632, 0.00642068777, 0.0138431331, -0.0338274799, -0.0182203799, 0.00156978378, -0.0143222352, 0.00306879124, -0.0168992206, 0.00898678508, -0.00276390836, 0.00865286589, -0.0126236016, -0.00564759178, -0.0260457061, -0.00505234441, 0.00279294467, 0.013073667, 8.07009492e-05, 0.0170444027, -0.00238280464, 0.0240857452, -0.00565122161, 0.0254649781, -0.00774547644, 0.0206013694, 0.014569045, 0.0179880876, -0.00252072793, -0.00482368236, 0.0104603861, 0.00926989, -0.0212111361, 0.0113895526, -0.0241438188, 7.45760699e-05, -0.0194834657, 0.0124421241, -0.00100175792, 0.00418488029, -5.08634321e-06, 0.00387636782, -0.00154800643, 0.000192706837, -0.0302269571, -0.0125437519, 0.00579277426, -0.00302160694, -0.00125854916, -0.00192366564, 0.034117844, 0.00898678508, 0.00810117275, 0.0133277364, -0.00136380631, -0.00334100798, -0.0240567084, 0.00355152227, 0.000226053395, 0.0197447948, -0.00489627337, -0.00507049216, -4.61917953e-05, 0.00965462346, -0.0180751979, -0.0286154337, 0.0199044943, 0.000708217442, 0.000104803483, 0.0170734394, -0.00162604195, -0.00585447671, 0.00333919306, -0.0156796891, -0.00202529319, -0.0189027376, -0.00816650502, -0.00770918094, -0.00153893256, 0.0308657587, 0.0240131542, 0.0201367866, 0.00834798254, 0.0236066431, -0.0127034523, 0.0132987, 0.0307205766, -0.0212256536, 0.023025915, 0.00634083757, 0.00281653693, 0.000587534683, -0.0246664751, -0.00391266309, 0.00501241954, 0.00462768599, -0.0049797534, -0.000792150968, 0.0116799166, 0.0271781292, 0.0154183619, 0.00708489679, 0.000731809589, -0.0148158548, 0.0158393905, -0.0177122429, 0.0115710301, -0.000533545, -0.00255883834, 0.00388362678, 0.00509226974, -0.0083552422, 0.0148085961, 0.00978528801, -0.0119920587, -0.00696149189, 0.0115782898, 0.00164146756, -0.00245176628, -0.005219304, -0.00167050399, 0.0210514348, -0.00576736731, -0.000154936744, -0.00105257181, -0.0138286157, -0.0017276695, -0.000300572749, -0.0150118507, -0.00138830591, -0.0131535176, 0.00139737979, -0.00476923911, 0.00488175545, 0.0203835964, -0.00131571468, 0.00906663574, -0.0153312525, -0.00918278098, -0.00634446694, -0.00118232844, -0.026481254, -0.00112697773, 0.00139465753, -0.00813020952, -0.0267716181, 0.0029490157, -0.00861657, -0.0256246775, -0.00178846461, -0.0230694693, 0.00947314594, 0.00589440204, -0.00793421362, -0.0085149426, 0.00920455903, -0.0128268572, -0.00473657297, -0.00470390683, 0.00665297965, -0.0282669961, -0.00561492611, -0.0145980818, 0.0118613951, -0.0123550147, -0.00649690861, -0.0173928402, -0.00238461955, -0.0162894558, -0.0127978204, -0.00897226669, -0.0046785, 0.0160281267, 0.00696512125, -0.00245176628, -0.00377111067, -0.0129430033, 0.0160136092, -0.0137705421, -0.0305463579, 0.0170153677, 0.0086383475, 0.00219951198, 0.00991595164, 0.0171024762, 0.0355115943, -0.00264050323, -0.00844235159, -0.021966083, 0.00842057448, 0.00348074595, -0.00646787183, -0.000579821877, -0.00827539153, -0.00971995573, -0.00235558301, -0.0101917982, 0.00432280311, -0.0178719424, -0.02619089, -0.00140373153, 0.00654409267, -0.0146198589, -0.00905937608, -0.00639528083, -0.00541892974, -0.000517211971, 0.0425964892, 0.00105710875, -0.00207792176, -0.0219806023, -0.0043373215, 0.0193237662, 0.00366222393, -0.00398525456, -0.0225468129, -0.0222564489, 0.0120065771, -0.0239986368, -0.00685623474, 0.00419213949, 0.0043808762, -0.0236937534, -0.00315045612, 0.00651142653, -0.00399251375, 0.011454884, -0.0276717488, -0.00170044787, -0.018365562, 0.000615663768, 0.00103442394, 0.0653320402, 0.0258860067, -0.00435909908, -0.0101192072, 0.0186849628, -0.0159845725, -0.0197012406, 0.0354825556, -0.00847138837, 0.0189462919, 0.0137269879, 0.0157813169, -0.018438153, 0.00661305431, -0.00537174568, -0.00182022329, 0.0112879248, 0.00175579858, 0.011549253, -0.0138721699, -0.00257880078, -0.0206158888, 0.00486360723, -0.0143875675, 0.00752770295, -0.00628276449, 0.0185543, -0.00741155725, -0.0175235048, 0.0128341168, -0.00888515729, 0.0154328793, 0.0105983084, 0.00553144608, -0.0117888041, -0.0102353534, -0.011621844, 0.00919729937, 0.0137560237, -0.0166378934, 0.00484908931, 0.012420347, -0.018365562, -0.0121807959, 0.00607225, -0.0178719424, 0.0160281267, -0.00884160306, 0.0084786471, -0.0145617863, 0.017276695, -0.0111862971, -0.0040179207, -0.0198173858, 0.0144456401, -0.00034435431, 0.0210804716, -0.00473294361, 0.00629002368, 0.00663483189, 0.0151134785, 0.00979254674, -0.0101337256, 0.00701230578, 0.00688890088, -0.0257988963, 0.00286190631, 0.00387999718, 0.00331923063, 0.00430828519, -0.0210514348, -0.00661305431, 0.00176033552, -0.00843509194, -0.00559314853, 0.00418125046, 0.0153457699, -0.00361322472, -0.00846412871, -0.0243470743, -0.0182784535, -0.00531367259, -0.000123064689, -0.0274104197, -0.00820280053, -0.0239115264, -0.0191205107, 0.000940962869, 0.0070268237, 0.0224451851, 0.00778903114, 0.0182058625, 0.00059434009, -0.0110048195, 0.0061883959, 0.00762933027, 0.00339908083, 0.00396710681, 0.00459139049, 0.0190188829, 0.0153893251, -0.00621380284, 0.0115202162, -0.00829717, 0.0198028665, 0.0225758497, -0.00789791811, 0.0115928072, 0.0157668, 0.00154709897, -0.0156361349, -0.000463676, 0.0136398785, 0.032404691, 0.0039417, -0.00103442394, -0.0181332715, -0.00538263423, -0.00115964375, 0.000589803152, -0.00629728287, -0.00272398302, -0.00273850141, 0.0137850605, 0.00744059356, 0.0101409843, 0.0214724634, 0.00801406335, 0.0215305369, 0.00209244015, -0.00556774158, -0.0199335311, 0.00421754597, 0.0156651717, 0.0214579459, 0.0308947954, 0.0150554059, 0.010946746, 0.0108160824, 0.0141334981, -0.00317949266, 0.010728973, -0.0123985698, 0.00887063891, 0.000606136164, -0.00873997528, 0.0112951836, 0.0117234718, 0.0321724, -0.0108451191, 0.0143004581, -0.013168036, -0.00979254674, -0.0161007177, 0.000470027735, -0.00202166359, 0.01263812, -0.0264231805, -0.00436998764, -0.0132261086, 0.00684171636, -0.00370577862, 0.0195996128, -0.00650779717, 0.0032883794, 0.00479464605, 0.00263505895, -0.0114839207, -0.0100829117, -0.005738331, 0.010511199, 0.0234469436, -0.00774547644, -0.00162785663, -0.0123550147, -0.016260419, 0.00505597424, -0.0107797869, 0.0135672875, -0.0115637714, -0.0160716828, -0.00535722729, 0.0232146513, 0.0605700612, -0.00461316807, 0.000465037097, 0.0029163498, -0.000306470785, 0.00595610449, -0.00629002368, -0.0104168309, -0.00106799742, -0.00926263165, -0.0102643892, 0.00577462651, 0.000327794434, -0.0048563485, -0.00690704864, -0.0118686538, -0.0100611346, 0.0207175165, -0.0291961636, 0.00272035366, -0.00287098018, 0.0163184926, 0.00407236395, -0.00749866664, 0.00503056729, -0.00762933027, 0.0175235048, -0.00428287825]
29 Oct, 2021
jQWidgets jqxButtonGroup enableHover Property 29 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxButtonGroup is used to illustrate a jQuery widget that generates a group of buttons that functions like the normal button, radio buttons, or checkboxes. The enableHover property is used to enable or disable the highlighted state of the displayed jqxButtonGroup. It is of type Boolean and its default value is false. Syntax: Set the enableHover property. $('#Selector').jqxButtonGroup({enableHover: true }); Return the enableHover property. var enableHover = $('#Selector').jqxButtonGroup('enableHover'); Linked Files: Download jQWidgets from the link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script> The below example illustrates the jqxButtonGroup enableHover property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> </head> <body> <center> <h1 style="color: green"> GeeksforGeeks </h1> <h3>jQWidgets jqxButtonGroup enableHover property</h3> <br /> <div id="jqxBG"> <button style="padding: 6px 36px" id="l"> ON </button> <button style="padding: 6px 36px" id="c"> Button </button> <button style="padding: 6px 36px" id="r"> OFF </button> </div> <div> <input type="button" id="jqxBtn" style="margin-top: 25px" value="Click here" /> </div> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxBtn").jqxButton({ width: "100px", height: "30px", }); $("#jqxBG").jqxButtonGroup({ enableHover: true, }); $("#jqxBtn").on("click", function () { var eh = $("#jqxBG").jqxButtonGroup("enableHover"); $("#log").text("Hover state enabled: " + eh); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxbutton/jquery-button-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxbuttongroup-enablehover-property?ref=asr10
PHP
jQWidgets jqxButtonGroup enableHover Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0558099858, 0.00924641173, -0.0106949918, 0.032171458, 0.083080776, 0.00405026, 0.0351406895, 0.0228601843, -0.000907614944, -0.0123525718, -0.0141759096, 0.00686093839, 0.00826627761, -0.0192279238, 0.00485022226, 0.0023710595, -0.0447402373, 0.00412232848, -0.0276887864, 0.00696183462, 0.0391477086, -0.0200350937, -0.0672256649, 0.0366973728, -0.0322002843, 0.0160569027, 0.00263411016, 0.0376486778, -0.0178153776, 0.00184856169, -0.0300093982, -0.0275302362, 0.00174946722, -0.00838158745, -0.0307012573, -0.0277896821, -0.00526822032, 0.00467365375, -0.0412521139, -0.0211017095, -0.00234403391, 0.0016584805, 0.0139020486, -0.00295841927, -0.013202982, 0.01732531, 0.000827438547, -0.00902299862, 0.00305571198, -0.014507425, 0.0152497329, 0.0159415919, 0.00259987754, 0.049929183, 0.00467365375, 0.000331741147, 0.00487184292, 0.0307300854, -0.0267663077, 0.00198369031, -0.0119489869, -0.0165757965, -0.0428664498, -0.0287554041, -0.00466644717, 0.0252096243, 0.00851131137, 0.00131255086, -0.0263194814, 0.0157542136, -0.00157289894, 0.0134480158, 0.0178442057, -0.00654743938, 0.0193432327, 0.00159451959, -0.00610421738, 0.00841762219, -0.0109544396, 0.0116030574, -0.0138516, -0.0186657887, -0.058721561, 0.0194297154, 0.0185072366, 0.0344776548, 0.00910948124, -0.0275734775, 0.022831358, 0.048804909, -0.0330939367, -0.0163451768, 0.0124030197, -0.0173685513, -0.0166622791, -0.00279806647, -0.00255843811, 0.00537272, -0.0229899082, 0.00384126068, 0.00790593401, 0.00315300468, -0.0113580236, -0.0271698926, 0.0278185103, 0.0257717595, 0.044682581, -0.00415475946, -0.0170082077, 0.00423403503, 0.0126264328, -0.0427511409, -0.00290256599, -0.0114589203, -0.0388594307, 0.0361496508, -0.0165325552, 0.00855455268, 0.00666635297, 0.000861671171, 0.0235520452, 0.0115454029, 0.00845365599, 0.06076831, -0.0141254608, 0.00619790656, 0.0147452522, 0.0089941714, 0.048804909, -0.00668437, 0.00434213784, 0.0395512916, 0.0371297821, -0.00447186176, 0.0375333689, 0.0219521206, 0.0246763155, 0.0121363653, -0.0611142404, -0.00945541076, -0.0635357499, -0.0097076511, 0.0110841626, 0.034794759, 0.00252240384, 0.0352271721, 0.019948611, 0.0156244896, -0.0217647403, -0.00424844865, 0.00771855563, -0.0290004369, 0.0185216498, 0.0280058887, 0.0250654873, 0.0222115666, -0.0137002561, 0.0186802018, -0.0190405454, 0.000318228267, 0.019804474, -0.0187522713, 0.018435169, 0.0156244896, -0.0377351604, 0.0201504026, 0.0266365837, 0.0131813614, -0.0530137196, 0.0283518191, -0.0178153776, -0.0232925974, -0.0162875224, -0.00138191693, -0.0366685428, 0.0182477888, 0.0305571202, -0.0351695158, 0.0163019355, -0.0198621284, -0.0219521206, -0.00666635297, -0.0261753444, 0.00402503554, 0.00545920245, 0.0163451768, 0.0161433835, 0.0334686935, -0.0328921452, -0.0143056326, -0.0281932671, -0.0077978312, 0.0567612909, 0.025815, 0.00627718214, -0.0130011896, -0.0227304623, 0.0169793814, -0.0119129531, -0.0400990136, 0.0114517128, -0.00544478884, -0.0128786732, 0.00273320475, 0.0201504026, 0.0154659385, 0.0127777765, -0.0422034189, 0.0259591378, 0.022557497, 0.0235520452, -0.0122877099, 0.0321138054, -0.0109616462, -0.0160424877, 0.00498354901, -0.0153650427, -0.0110985767, -0.0272419602, 0.00600332115, -0.00820141565, 0.0157974549, 0.00497634243, 0.0263050683, -0.0940928683, 0.0407332182, 0.0109400256, -0.0322291143, -0.00296742795, -0.0039817947, -0.00938334223, -0.0127273286, -0.0449132025, 0.00747352187, 0.0130444309, 0.0394359827, -0.01870903, 0.0288563, -0.00239808531, 0.0260600355, 0.0170946904, -0.000917073921, -0.00887165405, -0.0281212, 0.0166766923, 0.0203377809, 0.0150046991, 0.0130804656, -0.00815096777, 0.00656185346, -0.0270545818, 0.00585197657, -0.0157398, -0.0343046933, 0.0214620531, 0.0176424123, 0.00364307174, -0.019790059, -0.0134119811, -0.0125759849, 0.00771134859, 0.0668797344, -0.018982891, 0.00981575437, -0.00579432165, 0.00296382443, 0.0791025832, -0.0106877852, 0.00542677147, -0.0245754197, 0.0296346415, -0.0144930119, 0.0252816919, 0.0392918438, 0.00669878395, 0.0280779582, -0.0433276892, -0.0495544225, 0.0502462834, -0.00230439613, 0.00320165115, -0.000854013837, 0.0409061834, 0.0653807074, 0.0235952865, -0.00266113598, 0.0125687774, 0.0153218014, -0.0279626474, 0.0277608559, -0.0264203772, -0.0345641375, 0.0100896154, 0.0150767677, 0.0495544225, 0.0034142537, 0.0029458073, 0.0373027474, 0.00191702682, 0.00983737502, -0.0249934178, -0.00574387377, -0.0169649664, 0.0115309888, 0.00475653308, 0.0259014834, 0.057597287, -0.0234223213, -0.0138083594, -0.0184495822, 0.0428376235, 0.0422610752, -0.0464410558, -0.0376486778, -0.01072382, -0.00735100545, -0.00452230964, 0.0267807208, 0.00288454886, -0.00502318703, 0.001253995, -0.0203233678, -0.050880488, 0.0418286622, 0.0408773534, 0.010385097, -0.0102769937, 0.000188279431, 0.00214764662, 0.00166028226, -0.0393783264, 0.0103562688, 0.0034845206, 0.00875634421, 0.0215485357, -0.0311048422, 0.0146299424, -0.00756721152, -0.00926803239, 0.0436447933, -0.0284094736, 0.00718524726, -0.00140714098, -0.0220241882, 0.0246042479, -0.0384846739, 0.0012341761, -0.0200206786, 0.0561270863, 0.00164676935, 0.00130444311, 0.0300958809, 0.00315120304, -0.0326038711, 0.00556370197, 0.00605376903, -0.0191702694, -0.0142407715, -0.0313354619, 0.0072392989, 0.0269248579, -0.00741586694, 0.0366397165, -0.00695823086, -0.00856175926, -0.0329786278, -0.0307012573, -0.00743028102, -0.0169649664, 0.00148101139, -0.0543397851, -0.0413962491, -0.0168064162, 0.056645982, -0.0560694337, 0.0181180667, -0.0371874385, -0.0137723247, -0.0319984928, 0.0168208294, -0.0449420288, 0.0438465849, -0.00393855339, 0.0111634387, -0.00948423799, 0.00704111, 0.0376775041, -0.0123453652, 0.0128426384, 0.011415679, -0.024618661, 0.0437601022, -0.00405386323, -0.0168784857, -0.00168640714, 0.012720122, 0.00539434049, 0.0022575513, 0.0107526472, 0.00985178817, 0.0339875892, 7.12804249e-05, -0.000562586123, -0.0154659385, -0.0276311319, -0.0308453944, -0.0558964685, 0.00541596115, 0.00214944826, -0.0129435351, -0.00794196874, -0.00141975295, -0.0170082077, 0.0153218014, -0.0138443932, 0.0277032, 0.0306724291, 0.0518894494, 0.0242150761, -0.0448555462, 0.0412521139, -0.00281428196, -0.020481918, 0.0212746747, -0.0396377742, -0.0203233678, -0.0619790629, -0.0259158965, 0.0644005686, -0.00173054915, 0.0235808715, -0.00290616951, 0.0254258309, -0.0458356813, 0.012511123, 0.0553199202, 0.0591539741, 0.029836433, -0.0283950604, -0.0449708551, -0.0244168695, -0.00837438088, -0.0187810976, -0.0147308381, -0.0385423303, 0.00897255074, -0.0113147823, 0.0250943135, 0.0126336394, 0.0375333689, -0.0148317339, -0.042607002, -0.0223268773, -0.0212602597, -0.0175559297, -0.00645735348, 0.0135705322, 0.0164028313, -0.0112499213, -0.000764828874, -0.0387729481, 0.00536911655, -0.00836717337, 0.000102641563, 0.0185504779, -0.0189396497, -0.0136714289, 0.0214620531, -0.00381243322, -0.0101472698, -0.0275158212, -0.00152605434, 0.047853604, 0.0273140296, 0.00293860049, -0.00509165227, 0.00960675534, -0.00096031517, 0.000642312109, 0.0258438289, 0.0329498, 0.0103634764, 0.0371874385, -0.000292103359, 0.0142768053, -0.0116535053, 0.0579143912, 0.00481779128, -0.0140966335, 0.0313354619, 0.00110175, -0.0028322991, -0.0344488285, 0.00536551327, 0.00398539798, 0.022139499, -0.022283636, -0.00374036445, 0.0532155149, 0.00831672549, -0.00887886155, 0.00289175566, -0.0389459133, 0.0324597321, 0.00366829569, -0.0286545064, -0.0414539054, -0.00504480768, -0.00347911543, -0.00520335883, -0.0106157167, -0.0260600355, -0.0268960316, 0.00147560623, 0.0188819934, -0.0379081257, -0.0540803373, -0.0168496575, 0.010594096, -0.0141182542, 0.0389459133, -0.00728614349, 0.0060249418, 0.0212314334, 0.0341893807, 0.0254690722, 0.00237286137, -0.0167920031, -0.0343623459, 0.0244889371, -0.00874193106, 0.00124858983, -0.00590242492, 0.00850410387, -0.00764648709, 0.029576987, -0.0242294893, -0.0330074541, -0.0198333, -0.00312057394, -0.0271987189, 0.0143704945, -0.0507363491, -0.000168122715, 0.00876355171, 0.0254546572, -0.0113003692, 0.00688976562, 0.0109832669, 0.0273284428, -0.00459437817, -0.00647897413, -0.00427367259, 0.00191882858, 0.0139236692, -0.0508516617, -0.0137939453, 0.0097076511, -0.0164028313, -0.023652941, 0.0100103393, -0.030931877, 0.0366973728, -0.0137651181, 0.0157974549, -0.00702309282, 0.00134047749, 0.0284959562, 0.0167055205, -0.0105508547, 0.00990944356, 0.00716002332, 0.00947703142, -0.00951306615, -0.000546370691, -0.0113796443, 0.0411656313, -0.0145290457, -0.00368090789, 0.0226151515, -0.0207269527, -0.0417998359, 0.021865638, 0.0211017095, 0.00712398905, -0.0192999933, -0.0142119434, -0.0110265082, -0.0367550254, 0.0149614578, 0.00949865207, 0.0240421109, 0.0199630242, 0.00908786058, 0.0149326306, 0.00671680085, -0.00759603875, 0.0230187364, 0.0214908794, -0.0213755704, -0.0127633633, 0.020078335, 0.0201792307, 0.0197179914, 0.0197035763, 0.020208057, -0.0223989449, -0.00954189338, 0.0132390168, -0.0232493561, -0.0270545818, -0.0136714289, 0.0307589117, 0.0066303187, 0.00322687509, -0.012093124, -0.01732531, 0.0127129154, -0.00149632595, -0.0165037271, 0.039061226, -0.00327912485, 0.0270113405, 0.0342182107, 0.037936952, -0.0195882674, -0.0265645161, -0.0321426317, 0.00932568684, 0.00095851341, -0.0263194814, -0.000687355059, -0.00910227466, 0.0296922959, 0.0221827403, 0.0305859484, -0.00374396797, 0.0297499504, -0.00606818264, 0.0548875071, 0.015264146, 0.0155524211, -0.0310183596, 0.0530713759, -0.0141542889, 0.00717443693, 0.00799962319, 0.00629159575, 0.00348271895, -0.0210584681, -0.0135993594, 0.0160569027, 0.000407188054, 0.0166478641, -0.013750704, 0.018435169, -0.0403008051, -0.00856896583, -0.0220530163, 0.0269825142, -0.0217359141, -0.0306724291, 0.0515723489, 0.0187522713, 0.00404665619, 0.00788431335, 0.0200350937, 0.0416556969, 0.0205539875, 0.0126048122, 0.0181757212, -0.0176712405, 0.0162731074, 0.0103346491, 0.00169991993, -0.0231772866, 0.0216061901, -0.00257825712, -0.00378720905, 0.00253141229, -0.00986620225, 0.0177865494, 0.0069221966, 0.00600692444, -0.0168928988, -0.0229466669, -0.0187955108, 0.0148173207, 0.000269356678, 0.0189252347, -0.0112931617, -0.0162010398, 0.0117327813, 0.019256752, -0.0258870702, -0.0162298661, -0.0201648157, -0.0215485357, -0.0242871456, -0.00506642833, -0.0226151515, -0.0165757965, -0.0253825895, 0.0281356126, -0.0146227349, 0.0100103393, 0.0124967089, 0.00686454168, -0.0380810909, 0.000459437841, 0.00809331238, 0.0193288196, -0.00434574159, 0.0414539054, -0.0113003692, -0.00794917531, -0.0247051436, -0.00678166281, -0.0410503186, 0.00136480061, 0.0124246404, 0.0209719855, -0.00771134859, -0.0296922959, 0.0190405454, -0.0300670527, 0.0262041725, -0.00447186176, -0.00266834279, 0.00393134635, 0.000516642351, 0.0436447933, 0.0205972288, -0.0215052944, -0.0333245583, 0.0231196322, 0.0119994348, 0.00921758451, 0.00315480656, 0.00055808184, -0.0243736282, 0.0029998587, -0.015120009, 0.0121147446, -0.0161866248, -0.0162875224, 0.00990223698, -0.0243592132, 0.0227737036, -0.0339011066, 0.00344488281, -0.0162875224, -0.0082230363, -0.0471329167, -0.00259447237, 0.0182333756, -0.00149092078, 0.0326903537, 0.0100175468, 0.00362865813, -0.0153506286, 0.00468446407, -0.0304129831, 0.036293786, -0.00175577321, 0.0101977186, -0.0435583107, -0.008814, 0.0252384525, -0.0126336394, 0.0112499213, 0.0119706076, 0.0166766923, -8.21470312e-05, -0.00284130778, -0.00335299526, -0.000498174748, 9.41678627e-06, 0.0147524588, 0.0330074541, -0.0261321031, -0.0133038787, 0.0206548832, -0.0171379317, -0.00318903918, -0.0283806454, 0.000490967883, 0.0135705322, 0.0157830417, 0.0173829664, -0.00509525556, -0.00250979187, 0.00845365599, 0.022283636, -0.00823745, -0.017051449, -0.0244312827, 0.0171379317, 0.0223268773, -0.0359766856, 0.00384846749, -0.00618709624, 0.0126192262, 0.0168064162, 0.0343046933, -0.015134423, -0.0230187364, -0.0165037271, -0.0121868141, -0.00978692714, -0.0223989449, -0.00259267073, -0.00959234126, -0.00110895676, 0.00588801131, -0.0107454397, -0.00317642698, -0.00524659967, 0.00370793347, -0.00943379, -0.0127705699, 0.00247555925, -0.0022035, -0.0283950604, -0.0393206701, 0.0501021445, -0.0144353565, 0.00875634421, 0.00628438871, -0.00683571445, 0.000985539169, -0.0107021993, -0.0351406895, 0.00911668781, -0.0179306883, -0.00164226501, 0.0218223967, 0.0249934178, 0.00588080427, -0.00731136743, 0.0112643344, 0.0180315841, -0.0162442811, 0.0206837114, -0.00382324355, 0.0339299329, 0.0115021616, 0.0422610752, 0.0185793061, 0.0107021993, 0.0218800511, -0.0172532424, 0.0153362146, 0.0261897575, -0.00610782066, 0.00760324579, -0.019530613, 0.0186369605, 0.0111778518, -0.0203521959, -0.0362649597, -0.0118192639, 0.0060862, 0.0501886271, 0.020755779, 0.0189973041, -0.0193288196, 0.0010531036, -0.0245321784, 0.0115526095, -0.0169793814, -0.026261827, -0.00949865207, 0.0238691475, 0.0184495822, -0.0233502518, -0.0566748083, -0.00898696389, -0.0129219145, -0.0234079063, 0.0443078242, 0.000612583768, -0.0455185771, 0.0174262077, -0.0252528656, 0.049900353, -0.0197035763, -0.0296634678, 0.00722488528, 0.00374036445, -0.00862662122, -0.0150479404, 0.0205828156, -0.0323155969, 0.0176856536, 0.0411368, -0.00265392917, -0.0151055949, 0.0103418557, 0.00711317873, 0.00405026, -0.0151488362, 0.0075095566, -0.0107021993, 0.0275878906, -0.0461527817, 0.0117327813, 0.0375621952, 0.00777621055, 0.0115309888, 0.0230043232, 0.0292598847, 0.0106733711, -0.00543037523, 0.0238114912, -0.0105724754, -0.0181324799, 0.0296634678, 0.0150767677, -0.0223124623, 0.00370072667, -0.00296742795, 0.0237970781, 0.0279194061, -0.00934010092, -0.0174117927, -0.0319984928, 0.0236817673, -0.0354577899, 0.00127561565, 0.00283770426, -0.00518534146, 0.0356307551, -0.00336921075, -0.0203089546, -0.0170082077, 0.0248348676, -0.0165181421, -0.0209143311, -0.0115309888, 0.0467005037, 0.00854734518, -0.0318831839, 0.0104283383, -0.00859779306, 0.00516732456, -0.0288130585, 0.0194008891, -0.00248817122, 0.0204242636, 0.0129363276, 0.015538007, 0.0259303115, -0.00933289435, -0.012093124, -0.0142263575, -0.0199630242, 0.0140101509, -0.0032701164, 0.0164749, -0.0133110853, -0.0418863185, -0.000503579911, 0.0123237446, 0.0280347168, -0.0270689968, 0.0034142537, 1.02965314e-05, 0.0106229233, -0.00093148771, -0.0190261323, -0.0148749752, 0.040963836, 0.0210584681, 0.00428087963, -0.00439258618, 0.0268672034, -0.0245754197, 0.0154659385, 0.000489616592, 0.0222692229, -0.000189518105, -0.0161001422, 0.0167920031, 0.0295481589, 0.00504480768, -0.0216206033, -0.00755279744, -0.0348524153, 0.0193288196, 0.0183342714, -0.0222692229, -0.0057258564, -0.0037547783, 0.018146893, 0.0109472321, 0.0205972288, -0.0215629488, -0.0228457712, -0.00570063246, -0.0265068598, -0.0418286622, -0.00140984356, 0.0190693717, 0.0144281499, 0.0218368098, -0.0174694471, 0.0317390449, 0.004742119, 0.00245213672, -0.0283662323, -0.012640846, -2.47032294e-05, 0.0137146693, 0.0313642882, 0.0198477153, -0.000922479085, 0.0175703447, 0.0276887864, 0.0123813991, 0.0274581667, 0.0250654873, 0.0133254984, -0.0282653365, 0.00278905779, 0.0149038034, -0.0375333689, -0.0306436028, -0.0126768807, -0.00801403727, 0.000557631429, 0.0138227725, -0.0293751936, -0.0126192262, -0.00757441809, -0.00550965033, -0.0242871456, -0.0471040905, -0.00210800883, -0.0173973795, 0.00290797115, 0.0072392989, -0.0023242149, 0.0103995102, -0.0104283383, 0.00905182585, -0.020208057, 0.00321246148, 0.00482139457, -0.0268383771, 0.00866265502, -0.00703750644, -0.00888606813, 0.000464392564, 0.00309895328, -0.00333858165, -0.0173973795, -0.0284094736, 0.00659428397, 0.0128066046, 0.018968476, -0.0197035763, -0.0253825895, -0.0200350937, -0.00443222374, -0.00464843, 0.0122805033, -0.00914551504, -0.00936892815, 0.0197756458, -0.00947703142, 0.0139524965, -0.00900137797, 0.0185216498, 0.0136426007, -0.00879237894, 0.0120498836, 0.0139452899, -0.00117652118, -0.019790059, 0.0146299424, 0.00553127099, 0.00535830623, -0.000560334, -0.0128714666, 0.00735460874, 0.0103130285, -0.00173145, -0.0171091054, -0.0243015587, -0.00507003162, 0.0145939076, 0.0194008891, -0.00831672549, 0.00511687621, -0.0435294807, -0.0222692229, 0.0773152784, -0.00409350079, -0.00642852625, 0.0173685513, -0.0301823635, -0.0311624967, -0.00352956355, 0.0235232171, 0.0202801265, -0.0105220275, 0.0144858044, -0.000447726663, -0.00647537084, -0.000183549913, -0.00648257788, 0.0166046247, 0.000777440902, 0.032171458, 0.0145434598, -0.0110048875, -0.0144281499, 0.00611863099, 0.00107832765, -0.00894372351, 0.0252816919, 0.0025512313, -0.0207990203, -0.0117616085, -0.0251519699, -0.000306967529, 0.00519615179, -0.00238186982, 0.0151920775, 0.0129435351, -0.00901579205, 0.0244456958, -0.0115165748, 0.00636726804, -0.0263483096, 0.00249537802, -0.0126336394, -0.00724650593, 0.00681049, -0.00389170879, -0.0064969915, 0.00239268015, -0.00682490412, -0.00547361607, -0.0170946904, 0.0217647403, -0.0341893807, 0.00286473, -0.0142912194, -0.0185072366, -0.00858338, -0.00665554265, -0.00823745, -0.0110048875, 0.0161722116, -0.0378793, -0.0331515931, -0.026405964, -0.0203521959, -0.0200639199, 0.0147236316, -0.0105076134, -0.0197035763, 0.0125903981, -0.0507363491, 0.0176856536, 0.0109832669, -0.00735100545, 0.0259447247, 0.0118769184, -0.00908065401, 0.00452230964, 0.00123687868, 0.0139308758, 0.019948611, -0.0162010398, -0.0248348676, 0.012929121, -0.018146893, 0.00813655369, -0.022125084, 0.0199774373, -0.0189396497, -0.00694742054, 0.0182333756, 0.00946261734, 0.00583395967, -0.0014945243, -0.0359190293, 0.00263230852, 0.00637447461, -0.0135633256, 0.0151632503, 0.00238547334, -0.00610421738, -0.0247051436, 0.0190837868, 0.0111850593, 0.00588440755, 0.0213611573, -0.00784107205, -0.00905903336, 0.0307589117, -0.00507003162, -0.0100247534, 0.0203089546, 0.0112931617, -0.00772576267, -0.00658347411, 0.0114373, -0.0186081324, 0.0198909547, -0.0231196322, 0.00790593401, -0.00614745822, 0.0201792307, -0.0235664584, -0.0115093682, -0.00085851812, 0.017339725, 0.0098878229, 0.00129543454, 0.00834555272, -0.00423403503, 0.00245754188, 0.0158695225, -0.0398972221, 0.0306147747, -0.033699315, 0.00597449346, -0.021044055, 0.019386474, -0.0253537614, 0.0198333, -0.0057546841, 0.0341317281, -0.0143849086, -0.00155308, -0.00818700157, 0.0115093682, -4.29596912e-05, 0.00968603, -0.000163843637, 0.00164857099, 0.00388450176, -0.0200350937, -0.0301823635, 0.00138552033, 0.0194153022, -0.00488265324, 0.0231772866, -0.00762486644, 0.00746631529, -0.0152497329, -0.00231340458, -0.0029458073, 0.0109039908, 0.025714105, 0.014298426, -0.0132390168, 0.010176098, -0.015538007, -0.00525020342, -0.0262329988, -0.00354577904, 0.0114300922, 0.0159992464, -0.0283085778, -0.0146011142, -0.0103778895, 0.0131453276, 0.0084968973, 0.0173685513, 0.0140317716, 0.00172694575, 0.0106445439, -0.0183775127, -0.00020809831, -0.00489346357, 0.0217503272, 0.0126048122, -0.017599171, 0.00622673379, -0.0122588826, 0.0154371113, -0.0127489492, -0.0161289703, 0.0148749752, 0.0343623459, 0.0115814367, 0.00714560971, -0.00473851571, -0.00870589633, -0.00148641656, -0.00751676317, 0.00237286137, -0.0328344889, 0.000248862169, 0.0161289703, 0.0147596654, -0.00434934488, 0.0137939453, 0.00453672325, 0.0283518191, 0.0238403194, -0.0210872963, 0.0104211308, -0.0129363276, -0.00495111849, -0.00967161637, 0.0199774373, -0.013685842, 0.00976530649, -0.0190837868, -0.0232637692, 0.00664833561, -0.00625556149, 0.0055745123, -0.0182766169, 0.00394215668, 0.0110697495, 0.00579792541, 0.000201341871, -0.00939775538, -0.00523579, 0.00824465696, -0.00209719851, 0.0274581667, 0.020222472, 0.0417133532, -0.00384126068, -0.01539387, 0.0126480535, -0.01072382, 0.00526822032, 0.00483580818, -0.0120570902, 0.00762486644, 0.00478896359, 0.0149758719, 0.000569342577, -0.000142335644, 0.0239412151, -0.0119417803, -0.00245934376, 0.0164028313, 0.00205756072, 0.00253141229, 0.0273716841, -0.0280058887, 0.031076014, 0.00303409132, -0.0149182165, -0.0143560814, 0.014377702, -0.0568766035, -0.00110445253, -0.000874733611, -0.0120642968, -0.0341028981, -0.0143056326, -0.00956351403, -0.020496333, -0.00366289075, -0.00332777132, -0.0169505533, 0.00457275752, 0.000811673526, 0.0221683253, -0.0196315087, 0.0158406962, -0.0444807895, 0.0377639867, 0.0223845318, 0.0246763155, -0.016907312, -0.0142479781, -0.014716424, 0.0263483096, 0.00596728688, -0.0133903604, 0.00833114, 0.00208638818, 0.00430250028, -0.00170082087, 0.010240959, 0.0196891632, 0.0086770691, -0.00562496064, 0.01003196, -0.00227376679, 0.0258870702, 0.0216782596, -0.0161145572, 0.00415475946, -0.0287554041, -0.0137434974, -0.020755779, 0.00743028102, -0.00109814655, 0.00629159575, 0.0145506663, 0.0185216498, -0.00736902235, 0.00537992688, -0.00923199765, -0.00745190168, -0.0182910301, -0.0103778895, -0.000465293415, -0.000182986885, -0.0319696665, 0.0168928988, 0.00322687509, 0.0148749752, -0.017339725, -0.0227304623, -0.0368126817, -0.0422034189, -0.00607899297, 0.0374757126, -0.00465563685, -0.00913830847, -0.0115598161, 0.00343587436, -0.016633451, 0.00259987754, -0.00120084442, -0.0191702694, -0.000336020224, 0.0125399502, 0.00649338821, 0.00535470294, 0.00345028797, -0.00691859331, -0.00728254, -0.0107598538, 0.00630600937, -0.0153794559, -0.00651500886, -0.0078626927, 0.00677085249, 0.00582314935, -0.0241285935, -0.0119994348, -0.0129002938, 0.00846086256, 0.0108030951, 0.0163307637, -0.00306832395, 0.0191702694, 0.031076014, -0.00791314058, 0.00630240608, -0.00407908717, 0.021317916, 0.0157686267, 0.00258726557, 0.00306291878, 0.0145002184, 0.0204386767, -0.020770194, -0.0195017848, -0.00504841097, -0.00969323702, -0.0135200843, -0.0197035763, 0.0100824079, 0.0137290834, -0.00122967188, 0.0274005122, 0.0238979738, 0.0180892386, 0.0203810222, 0.00527903065, 0.00864103436, -0.0177000687, -0.011624678, -0.00840320811, -0.0140822204, 0.0183486864, -0.00140533922, -0.0110913701, 0.0147452522, -0.00967882387, 0.0179739278, 0.0432700366, 0.0263483096, 0.00941937603, -0.0125039155, -0.00969323702, 0.00846086256, -0.0208134353, 0.0242871456, -0.039061226, -0.000104612191, 0.014846148, 0.00537272, -0.00977972, 0.0163884182, 0.0339011066, -0.000169248786, -0.0042700693, -0.0222548079, 0.00565739116, 0.0184495822, -0.00376198511, 0.0158262812, -0.00513849687, -0.023926802, -0.00929686, 0.0191702694, 0.0216494314, 0.0228169449, -0.00416917307, -0.00651500886, -0.00316922017, -0.00841041468, -0.00738703972, 0.00565018458, -0.01072382, -0.0105076134, 0.0121291587, -0.000141096956, -0.0289860237, 0.0122444686, 0.0263338964, -0.00349713257, 0.00324489223, -0.00239268015, 0.00528984098, 0.000219584254, -0.00385207101, 0.0153218014, -0.000119138538, 0.00778341759, -0.0221539121, 0.0138948411, 0.0131092928, 0.00282148877, -0.000902660191, -0.0122156413, 0.0172388274, -0.00929686, 0.00651861215, 0.00483580818, -0.00448987866, -0.0247339699, -0.0060898033, 0.0136642214, 0.00713840267, -0.0064501469, -0.0172388274, -0.0193144064, 0.0124102263, 0.0172532424, 0.0140533922, -0.0164316595, 0.00200711284, 0.0195017848, 0.0115742302, 0.0178297907, 0.00221250858, -0.00303769484, -0.00416917307, 0.00637447461, 0.0100463741, -0.0184063409, -0.0123381577, -0.0107310265, 0.0159992464, 0.00590602821, -0.013267844, 0.00626637181, -0.00582314935, -0.000610782066, 0.000704020902, 0.0213467423, -0.00735460874, 0.0101905111, 0.0162010398, 0.0240421109, 0.00315120304, 0.0172964837, 0.00535470294, -0.00750234956, 0.0263483096, 0.0110841626, 0.010385097, 0.017339725, 0.0116535053, 0.00421962142, 0.0161577985, 0.00993827078, -0.0224277731, -0.0223701186, 0.017887447, 0.0132101886, 0.0178009644, -0.00273861, 0.00240349048, 0.00681049, 0.00414755242, -0.014233564, -0.0110697495, 0.0241430085, 0.0127417427, -0.0138371866, -0.00430970686, 0.0263050683, 0.00516372081, -0.0117688151, -0.028870713, -0.00614745822, -0.0213467423, 0.0135200843, 0.0150479404, -0.00376198511, 0.0153218014, -0.0417133532, 0.00604656199, 0.0053474959, -0.0230619777, -0.017887447, 0.00438177586, 0.00675283512, 0.0109904734, 0.0186369605, -0.00040786367, -0.00428448291, -0.0132101886, -0.0323732495, 0.00110175, -0.00915272254, -0.000804466661, 0.0197035763, -0.00596008, 0.0143488739, -0.0192279238, -0.00103148294, -0.0011170645, 0.014103841, -0.0159848332, 0.00887165405, 0.00290436787, -0.00683571445, -0.00529704802, 0.0119922282, -0.0122300545, 0.0121868141, 0.00652581872, 0.00278365286, -0.0152353188, -0.00160803238, -0.0216782596, 0.0086770691, 0.0169505533, -0.00145939074, 0.00892210286, 0.00611502724, 0.0120570902, 0.0119345738, 0.0119994348, 0.0363802686, 0.00871310383, -0.0175703447, 0.00840320811, -0.0146083217, 0.0109544396, 0.00771134859, 0.0123309512, 0.00274581672, 0.00434574159, 0.00934010092, -0.00874193106, -0.0393783264, 0.0229322538, 0.00816538185, 0.00457636127, 0.024618661, -0.00712038577, 0.00946261734, 0.00882120617, -0.000748163, -0.00914551504, -0.00240529212, 0.00729335053, 0.000180284303, -0.0114661269, -0.00230619777, 0.00238367147, -0.0197179914, -0.0130876722, 0.0097076511, -0.00238367147, 0.0112138866, -0.011062542, -0.00182604021, -0.0125903981, 0.00687174872, -0.000891849922, -0.00658347411, 0.00716723036, 0.0176424123, -0.0258005876, 0.00448267208, 0.0198477153, -0.0342758633, 0.00526822032, 0.00186477706, 0.0358037204, 0.0101616839, 0.00332957297, 0.00796358939, 0.00381243322, 0.00327191805, 0.00710957544, 0.0252816919, -0.00590963196, 0.0086770691, 0.0117976433, -0.00665554265, 0.0271410644, -0.0193576477, 0.00199089735, 0.00219809473, -0.0133038787, 0.0112859551, -0.00623033755, 0.00854734518, 0.00971485768, 0.00925361831, -0.0155956624, -0.00980134, 0.00104950019, -0.00955630653, 0.0223124623, 0.00705912709, -0.0143128401, -0.0197324045, -0.000160240204, 0.00909506716, -0.000774287852, -0.00193504407, -0.00768252136, -0.00168460538, 0.00918155, 0.0184495822, -0.00863382779, 0.0108751636, 0.00086031988, -0.0224421863, 0.0249501765, 0.00897255074, -0.0102553731, 0.00488986, 0.0123381577, 0.0143344607, 0.0051204795, 0.0263915509, 0.00678166281, -0.0195594393, 0.0024143008, 0.00656906, -0.0205539875, -0.0238403194, 0.0358613767, 0.0139308758, -0.036841508, -0.000605376903, 0.0158262812, 0.0207125377, 0.0324597321, 0.0151632503, 0.00326651288, -0.00269356696, -0.0139741171, 0.00191342342, -0.0110697495, -0.00264672237, 0.00807169173, -0.00598170049, 0.0121147446, -0.021303501, 0.00199450064, -0.0279194061, -0.0182477888, 0.014846148, 0.0114228856, 0.00241249916, 0.0112715419, -0.00612223428, -0.00246835221, -0.0039817947, -0.00736541906, 0.0163740031, 0.0171235185, -0.00262149819, -0.0437312759, 0.00137380918, 0.000741406519, 0.035256, 0.00848969072, 0.00243231794, 0.010867957, -0.00239628367, 0.00942658354, 0.0102121318, -0.0143560814, 0.0145578729, -0.0176424123, -0.00813655369, 0.00887886155, 0.0189973041, -0.0184928235, 0.00298364344, 0.0116318846, 0.000368225912, -0.0129867764, 0.0157398, -0.000749063853, -0.0143344607, 0.0164172444, -0.00682130037, 0.0294328481, -0.0220241882, -0.00272419606, 0.0398683921, -0.000240754438, -0.00625556149, -8.38220694e-06, -0.0119489869, 0.00335119362, 0.000431736436, -0.00545920245, -0.00356199453, 0.0370144732, 0.0222692229, -0.00543397851, -0.0167487618, 0.0164460726, 0.0106949918, 0.00805727858, -0.00967161637, -0.0122588826, 0.0120354695, -0.0015683946, 0.00921758451, 0.00513129, -0.0264347922, 0.0102265459, -0.0111057833, -0.00297283311, 0.0118192639, -0.000305841473, -0.00121525815, 0.021591777, -0.00762486644, 0.00728254, -0.0104355449, 0.0143128401, 0.0116607128, -0.00283770426, 0.0181901343, -0.0322002843, 0.014507425, 0.00710957544, -0.0161433835, 0.00222331868, 0.00420160405, 0.0257285181, 0.0114228856, -0.0104715796, -0.0129651558, 0.000679247314, 0.00491868751, 0.0156821441, 0.00707354071, -0.019256752, 0.0169505533, -0.0042700693, -0.0156533178, 0.0149470437, 0.00325930608, 0.0144930119, -0.00652581872, -0.0178297907, 0.0155956624, 0.0134408092, 0.0066771633, 0.00429889653, 0.0169793814, 0.0107454397, -0.00286112656, -0.00977972, -0.0124750882, 0.00769693498, -0.00502318703, 0.0125183295, -0.0123093305, -0.0148029067, 0.0113724377, -0.00756721152, 0.0155668352, 0.010579682, 0.00271158409, 0.00582675263, -0.00872751698, 0.0206692982, 0.0171379317, 0.0168208294, -0.0273572709, 0.00897255074, -0.0116607128, -0.0186802018, -0.0342182107, 0.0253393482, -0.0253537614, 0.0090374127, 0.00631681969, -0.0196026806, 0.0128282253, 0.00504841097, 0.00131345168, -0.0166766923, 0.0116607128, 0.00985178817, -0.0278473385, -0.0178009644, 0.00915992912, -0.0177577231, -0.00554208132, 0.00289535918, -0.00154317066, 0.0111778518, 0.0266221706, -0.00792755466, 0.0390900522, 0.0109111983, -0.0117111607, -0.0201936439, -0.00534389261, 0.013058845, -0.045662716, 0.00128192164, -0.000144024758, 0.00482860161, -0.00516372081, 0.0332957283, 0.00117832294, 0.0176856536, 0.0214476399, 0.00696183462, -0.0194441304, -0.010320235, 0.00180171698, 0.0101184426, 0.0114373, 0.000383765728, -0.00294760894, 0.00363045977, 0.0137723247, -0.0222259816, 0.00396017404, -0.00766090071, -0.0105364406, 7.31384498e-05, 0.00269356696, -0.00732217776, -0.00871310383, 0.02102964, -0.0281788539, -0.0307300854, -0.00912389439, 0.00581594231, 0.000196612367, -0.00279085967, -0.00609340705, -0.0354289636, -0.00179180759, 0.0156100756, -0.0282220952, -0.01072382, 0.0289860237, -0.000341200153, -0.00733298808, 0.00227376679, 0.0044502411, -0.014990285, -0.00585918361, 0.0100535806, 0.0066050943, 0.0114661269, 0.00701588579, -0.0208999179, 0.0361496508, 0.00703390315, -0.00109274138, -0.00946261734, 0.00436736178, -0.0108967843, 0.0117471945, -0.00340884854, 0.0262185857, 0.0205251593, 0.0118480911, -0.0171091054, 0.0195594393, 0.0351695158, -0.0255123135, -0.00790593401, -0.0146155283, 0.0296922959, -0.0161577985, 0.0171379317, -0.00488265324, 0.00525020342, 0.0180171691, -0.0157686267, -0.00209900038, -0.015134423, 0.00221431023, 0.00263050687, 0.00463041244, 0.0244024545, 0.00803565793, -0.00370433019, 0.00291878148, -0.00695823086, 0.00171613542, -0.00991665, 0.0250366591, -0.012511123, -0.00771134859, 0.00704111, 0.00692940364, -0.0213323291, -0.00950585864, -0.00830951892, -0.0135633256, 0.00165757968, -0.00736541906, 0.000240078793, 0.0159704201, -0.01265526, 0.00190441485, -0.00620151, -0.00214584498, -0.0162731074, 0.00573666673, -0.00584837329, -0.00918155, 0.0178586189, -0.0257429332, 0.0110769561, 0.000306517089, -0.00856896583, 0.0414827317, -0.0132822581, 0.00636366429, 0.00639249198, -0.0199918523, -0.00397458766, 0.00928244554, -0.0140461856, -0.000708975655, 0.00643573329, 0.00211521564, 0.00989502948, -0.0249069352, 0.00642852625, -0.00798521, 0.00866986252, 0.0045871716, 0.0194585435, -0.020755779, 0.00107652589, -0.0026881618, -0.0235520452, -0.00995989144, 0.0201936439, -0.00080131361, -0.00359442551, -0.00309895328, 0.00101346581, -0.00410070783, 0.00777621055, -0.002407094, 0.0075095566, -0.0138371866, 0.00178189809, -0.00918155, 0.0172388274, -0.0194873717, 0.0188964084, 0.0212314334, 0.0197179914, -0.00475292932, 0.0182189625, -0.00930406619, 0.00450789602, 0.0128066046, -0.00623033755, -0.00304850517, 0.00317282369, -0.0032034528, -0.0163019355, -0.00637807837, 0.000972026319, -0.0051024626, -0.0165037271, -0.0071023684, 0.00700867921, 0.0172964837, 0.0145867011, -0.00230980129, -0.00417638, -0.0234943889, 0.00668797363, -0.00171163119, 1.23938426e-05, -0.00400701864, 0.0358613767, -0.0140029443, -0.0080428645, -0.0116967466, -0.000721137214, -0.0162298661, 0.00503039407, -0.00395657029, -0.00796358939, 0.00843924284, 0.00983016752, 0.0119417803, 0.0271122381, 0.0197612327, 0.00441420684, -0.013750704, -0.00927523896, 0.0198477153, -0.0278040972, 0.00738703972, 0.00701948954, -0.0279770605, -0.000954009127, -0.00219629309, 0.00209179334, -0.00192783715, 0.00477455, -0.0107094059, 0.00338002108, 0.00500156637, -0.0249645915, -0.0159560051, 0.0180892386, 0.00206296588, -0.00848969072, 0.00379441609, -0.0234943889, 0.00958513469, -0.0172820687, -0.00374757126, 0.000845455681, -0.0198188871, -0.0202657133, 0.0199197829, 0.0111490246, 0.0171667598, -0.0140822204, 0.0115958508, -0.00909506716, 0.00722848857, 0.0154515253, -0.0133543266, 0.0074374876, 0.0119706076, 0.0255267266, -0.00774738286, -0.00168640714, -0.0107166125, 0.0345641375, -0.00834555272, 0.0195882674, 0.00127831823, 0.0228890125, 0.00495111849, -0.00590602821, 0.00546280574, -0.0182333756, -0.005329479, -0.0339299329, -0.00697624823, -0.00897255074, 0.020496333, 0.0215485357, 0.00628078543, 0.000521597045, 0.00926082488, -0.0181757212, 0.00720326463, -0.0121435728, -0.0142912194, -0.0373027474, -0.00107832765, 0.00879237894, 0.0202801265, 0.00741586694, 0.0106445439, -0.00730416086, 0.0119129531, 0.00302688451, 0.00484661851, 0.0094914455, 0.00460879225, 0.000685553299, 0.0241574217, 0.00725731626, -0.0125399502, -0.0123813991, -0.0240276977, 0.0144569771, 0.00594926951, -0.0147020109, -0.00119634008, 0.00272779958, 0.0183775127, 0.00358361518, -0.00613664789, -5.06732904e-05, 0.0152497329, -0.00139362807, 0.00509165227, 0.0164604858, -0.0078699, -0.00362685625, -0.0189540628, 0.0155091798, 0.0173541382, -0.0198333, 0.0009161731, 0.0115093682, -0.00430610357, -0.00227917195, 0.00904461928, 0.00432412094, -0.0201936439, -0.00639969856, 0.000765279285, 0.0212458465, -0.00429169, 0.00154407148, -0.0051204795, 0.0153506286, 0.01539387, 0.0107742678, -0.0233646668, 0.0133615332, -0.00622673379, 0.00430250028, -0.000337146281, -0.0142551847, -0.002234129, 0.014990285, -0.0133471191, 0.00548442639, -2.04804546e-05, -0.0247339699, 0.0146803902, 0.00483941194, 0.0267951358, -0.0127993971, -0.00307012582, -4.05104802e-05, 0.00459437817, -0.0234511476, 0.00273861, 0.00448267208, 0.00270257541, -0.00838158745, 0.00838158745, 0.00286473, -0.0054195649, -0.00625916477, 0.0116174715, 0.0140533922, 0.00428808667, -0.00459437817, -0.0117399879, 0.00761045236, -0.000380612706, -0.00252420548, 0.0059997174, -0.0102337524, -0.0228457712, 0.00298544508, -0.0235232171, 0.000519795343, -0.00686814496, -0.0110481288, 0.0122732958, -0.0144281499, -0.00851131137, -0.00699066184, -0.0323444232, 0.0077978312, 0.00395657029, 0.00481058424, -0.0151776643, -0.0257429332, 0.00959954783, 0.00129543454, -0.0388882607, 0.00344668468, -0.00466284342, 0.00771855563, 0.0110120941, -0.00959234126, -0.00227376679, -0.00766090071, -0.010320235, 0.00273680803, 0.0140029443, 0.0205684, -0.00388089847, 0.018146893, -0.00428087963, -0.010240959, -0.000726542377, 0.0123381577, -0.0106517505, -0.00227376679, 0.0136930496, -0.00156118779, 0.00235844753, 0.00888606813, -0.0349388942, -0.00428448291, -0.00914551504, -0.0154803526, 0.0246907305, 0.0174982753, -0.009354515, 0.0134191886, -0.00453672325, -0.0205251593, -0.0217647403, -0.00156028697, -0.0246907305, 0.0111922659, 0.012914707, 0.0107526472, 0.0019764835, -0.0153362146, 0.02804913, -0.00172604492, -0.0229034256, 0.0115237823, 0.0143993217, 0.0245898329, -0.000104950013, 0.0281212, -0.000878337, -0.00992385764, -0.00479256734, 0.00795638189, -0.00432412094, -0.0121219521, -0.00666635297, -0.00249717967, -0.00700867921, 0.0142479781, -0.00957072061, -0.00985899568, -0.00820141565, 0.0168496575, -0.0167775881, 0.0103346491, 0.019804474, -0.0157109722, -0.0230331495, 0.000753568136, -0.0405890793, -0.000991845154, 0.0140029443, 0.0180604104, 0.0156389028, -0.00337281427, -0.000967522035, 0.0140029443, -0.00148011046, 0.0115093682, -0.00386288133, 0.00429889653, 0.0018089239, -0.0228457712, 0.00221611187, 0.0146803902, -0.00365208043, 0.00947703142, -0.0116030574, -0.0206116419, -0.0214764662, -0.0060429587, 0.0137867387, -0.0140606, 0.00619430281, 0.0124246404, 0.0275590625, 0.014233564, -0.00444303406, -0.000503579911, -0.015811868, 0.0230475646, 0.0106085092, -0.00461239554, -0.0167920031, 0.00365388207, 0.0139020486, -0.000505381613, 0.0083599668, 0.00776900351, -0.00161523931, 0.00241610245, 0.00678887, -0.00229178392, -0.00374757126, -0.00277464418, -0.00453312, 0.0142191509, -0.0183198582, -0.00636726804, 0.0144209424, 0.0101184426, 0.00784107205, -0.00940496288, 0.00196927669, -0.0183054451, -0.0170082077, 0.00687174872, -0.0115093682, 0.00109904737, 0.00419439701, -0.0119273663, -0.0219377056, 0.00964999665, 0.0313642882, -0.0102193383, 0.0188099258, 0.0135272909, 0.018694615, -0.0210728813, 0.00991665, 0.0077978312, -0.00733298808, -0.000807619654, -0.0268672034, 0.0105220275, -0.00221070671, 0.00957072061, -0.00566820148, 0.00823024288, -0.0198333, 0.0183919277, -0.0169649664, 0.0135128777, 0.0202945396, 0.00967882387, 0.00334038329, -0.00634204363, 0.00307733263, -0.00745910825, 0.0337857977, 0.0211737789, 0.00138371869, -0.0118192639, 0.00636726804, 0.0094914455, 0.0159704201, 0.0394359827, -0.0027854545, -0.00150713627, 0.00975809898, 0.0186225474, 0.030931877, -0.0119706076, -0.0162731074, 0.0167775881, -0.054599233, 0.00147200283, 0.00160893332, -0.00328453, -0.0162731074, 0.00512408325, 0.017873032, -0.00301066902, 0.0341028981, 0.00154677406, -0.00468086079, 0.0115381954, 0.0122228479, -0.000391197798, -0.0196315087, 0.00476373965, 0.0168640707, 0.0073726261, 0.012929121, 0.00872751698, 0.00190621661, 0.0133687397, -0.0216926727, -0.0153073873, 0.0115093682, 0.0150623545, 0.00687895529, -0.00895813666, -0.0183054451, 0.000947703142, -0.00146389508, 0.0274293385, 0.00634925067, -0.0223412905, -0.00188459596, 0.00154677406, -5.6922996e-05, -0.0207413658, -0.00470248144, 0.00321246148, 0.0156533178, 0.00880679302, -0.0104859928, -0.0302400179, -0.0371009558, 0.000183887736, -0.0138876345, 0.00293499697, 0.00789872743, -0.000692760164, -0.0237970781, -0.0141975302, -0.000485112309, 0.0165469684, 0.0203233678, 0.0111706452, -0.000869778858, -0.00359442551, 0.0309030507, -0.00373676093, 0.0100752013, -0.0364667512, 0.00335299526, 0.00528623769, 0.0360631682, 0.00871310383, 0.00153055857, -0.0260023791, -0.00737983268, 0.0245610066, -0.0164893139, 0.00268275663, -0.0267807208, -0.00934010092, 0.0137362899, 0.00245213672, 0.00432412094, 0.0105364406, -0.00397458766, 0.0237970781, 0.00582675263, 0.00403224258, 0.0105724754, 0.019256752, 0.00392414, -0.00750234956, -0.00409710454, -0.00553487474, 0.0131885679, 0.00106121134, 0.0212026052, 0.00555649539, -0.0198188871, 0.0052393931, 0.0118697118, 0.00367370085, -0.017599171, 0.000111875364, 0.00452951668, 0.00461239554, 0.00198369031, 0.0123813991, 0.0157109722, 0.0114733335, 0.0224710144, -0.0179739278, 0.00906624, 0.0129075, 0.00970044453, -0.00162695046, 0.0121651934, 0.00996709801, 0.00236565433, 0.0160713159, 0.00180982472, -0.00705192052, 0.00874913763, 0.00522137573, -0.0131669482, -0.00838879403, 0.00169631653, -0.0162442811, 0.00474932604, -0.0237394236, 0.00157379976, -0.0150191132, 0.00496913539, 0.0102769937, 0.00181072555, -0.0223268773, -0.0128354318, 0.00134498172, 0.0149326306, 0.00447906833, -0.00415475946, -0.00242330926, -0.0117399879, 0.00971485768, -0.027227547, 0.0127345361, 0.0102914078, 0.00350253773, -0.00908065401, 0.0090734465, -0.0307300854, -0.012446261, 0.000748163, -0.000817078631, 0.00185036333, -0.019256752, 0.0051493072, -0.00224313769, 0.00164676935, -0.00840320811, -0.0140606, -0.0119778141, -0.0069041797, 0.00519615179, 0.0147884935, 0.00980134, 0.0123525718, -0.00860500056, 0.00954189338, -0.000882841297, 0.011624678, 0.00148011046, 0.0206404701, 0.0135633256, 0.00174586382, -0.00448987866, -0.00713119563, 0.0142840119, 0.00718164397, -0.0103346491, -0.00302328099, -0.019934196, 0.00288815238, -0.00453312, 0.019804474, -0.00358902034, 0.0100896154, -0.00823745, 0.013750704, -0.00750234956, 0.00443943078, -0.0330074541, -0.00280527328, 0.0176712405, -0.000323633401, 0.00740145333, 0.0058627869, 0.0200495068, 0.0105436482, 0.0044502411, 0.0317390449, -0.00181162648, -0.00387008814, -0.029836433, -0.00301427254, 0.00236925785, 0.0208855029, -0.00777621055, -0.00913830847, -0.00471689506, 0.00674202479, -0.00279626483, -0.0240853522, 0.0120354695, 0.00483580818, 0.00153326115, 0.0175559297, -0.0174117927, -0.0166478641, -0.00367730437, -0.00420160405, 0.00457996456, -0.0253970027, -0.00251519703, -0.00631681969, 0.00792755466, 0.0411656313, 0.031767875, 0.0126696741, 0.0123453652, 0.0144497706, -0.0105580613, 0.00743028102, 0.0335551761, -0.0163884182, 0.0206692982, 0.00251699868, 0.00742307398, 0.0128138112, -0.0126840873, 0.00268996344, 0.0134624289, -0.00505561801, -0.00638528494, -0.00327191805, 0.0146875968, 0.00905903336, 0.00976530649, 0.0114517128, 0.00689697266, -0.011350817, 0.00977251306, -0.00402503554, 0.0109976809, 0.0114373, -0.00027949136, 0.00634925067, 0.0114517128, -0.00978692714, 0.0184928235, 0.0236241128, -0.00981575437, -0.00325209927, 0.0205539875, 0.00508804899, -0.00231160293, -0.00915992912, 0.00612944132, 0.00890768878, -0.000412593188, 0.0126480535, -0.0202801265, -0.015134423, 0.00216566375, -0.0109616462, -0.0116967466, -0.00221971539, -0.0313354619, 0.00178640243, -0.00367189921, 0.0118841249, 0.0189540628, 0.0167199336, 0.00262510171, -0.0234799758, -0.00125489593, 0.00319084083, -0.00320525444, -0.0204386767, 0.0114084724, 0.00308453944, -0.00712038577, -0.0226007383, -0.00342506403, -0.00442141341, -0.0182766169, 0.0186513737, -0.0251087286, 0.00379441609, 0.0133543266, -0.0137002561, -0.00781224482, 0.0135344984, -0.0168928988, -0.00468806783, -0.0141614955, 0.00647897413, -0.0292454697, -0.00112427142, -0.0162298661, 0.0126840873, -0.0221827403, 0.000360568607, -0.028596852, 0.00510606589, -0.00980134, -0.0140678063, -0.0144858044, -0.0164604858, 0.0108751636, -0.00167559681, 0.00557811558, 0.00417638, -0.0153794559, 0.0139380824, -0.00641050888, -0.0303553287, 0.00442501716, -0.00399260502, 0.00791314058, 0.00724650593, 0.0129363276, 0.0177865494, 0.00146659766, -0.0116751259, -0.0211449508, 0.0224421863, 0.00548442639, -0.0128066046, 0.00834555272, -0.00140263664, -0.00450789602, 0.00124408561, -0.00697264494, -0.00452951668, -0.00364307174, -0.0322579406, -0.00299805705, 0.000234898849, -0.00708074775, -0.0172676556, -0.00743028102, -0.010176098, 0.00269897212, 0.0359766856, -0.0166766923, 0.00212422432, -0.0101256492, -0.020770194, 0.0198333, 0.00720326463, 0.00351515, -0.0311048422, -0.0121291587, 0.00612583756, -0.0232781842, -0.0170946904, 0.00577270146, 0.00267194631, -0.0406467356, 0.00356019288, 0.0172676556, 0.00704831677, 0.00728254, -0.02901485, 0.00179631182, -0.00720686791, -0.000946802262, -0.00766810728, 0.0589521788, 0.0308453944, -0.0119345738, -0.0225719102, 0.0214188118, -0.00477094669, -0.00735821202, 0.0359766856, -0.0106301298, 0.020208057, 0.0220818426, 0.00824465696, -0.0218223967, 0.00537632359, 0.00583035639, 0.00562496064, 0.0112787485, 0.00388810528, 0.00274041155, -0.000814376108, -0.00927523896, -0.0214908794, 0.0101184426, -0.0166190378, 0.00977972, -0.00567180524, 0.0161145572, 6.51996306e-05, -0.012237262, 0.00923920516, -0.00704471348, 0.0182045493, 0.0273284428, 0.00932568684, -0.00677085249, -0.00674562855, -0.0177000687, 0.0140173584, 0.0108319223, -0.0127057079, 0.0243015587, 0.0193144064, -0.00912389439, -0.0045871716, 0.00148911914, -0.0152353188, 0.00477455, -0.00326471124, 0.00523579, -0.0201215763, 0.00517092785, -0.0055745123, -0.0115742302, -0.0133903604, 0.00634564739, 0.0130516374, 0.0157253854, -0.00163055386, 0.000890498632, 0.0084968973, 0.00793476123, 0.000253591657, 0.00475653308, -0.00161614013, 0.00890048221, -0.0225719102, 0.00483580818, 0.00411151815, 0.000240529218, 0.00749514252, -0.00438177586, -0.00597449346, -0.00242330926, 0.00637087133, 0.00745190168, -0.00081617781, -0.0106877852, -0.0137434974, -0.00315300468, -0.0249501765, -0.0239844564, -0.00326831453, 0.00270978245, -0.0291589871, -0.0095274793, -0.0284094736, -0.0142047368, -0.000595017045, 0.00796358939, 0.0180027559, 0.00380522618, 0.0140101509, -0.00287193689, 0.00304670352, -0.000461689982, 0.0132894646, -0.00841762219, -0.00590242492, -0.00502679031, 0.0181036517, 0.0243880413, 0.00256204163, 0.00623033755, 0.00490427343, 0.0106373373, 0.0259447247, -0.00694381725, 0.00247736089, 0.00699066184, -0.00528623769, -0.00920317, -0.00423043128, 0.0105508547, 0.0354866162, 0.0104211308, 0.0037187438, -0.0298940875, -0.0155668352, -0.00313498755, 0.00569342589, -0.00941216946, -0.00285752304, -0.00634204363, 0.0213899836, -0.00808610581, 0.00396738062, 0.0162298661, -0.00123147352, 0.00799962319, -0.00174496288, -0.0105076134, -0.00477815326, 0.0121940207, 0.0154371113, 0.0179306883, 0.0167055205, 0.0255555529, 0.0094914455, 0.00305030681, 0.00363766658, -0.00652581872, 0.00890048221, -0.00555649539, 0.00883562, -0.00469167111, -0.0082230363, 0.0105868895, 0.0132606374, 0.0110913701, -0.0148173207, 0.0118336771, -0.021317916, -0.00365928723, -0.0228890125, -0.00240529212, -0.00708074775, 0.00844644941, -0.0155524211, 0.00877075829, -0.0200495068, 0.0051024626, -0.00424484536, 0.0131813614, 0.00624114787, 0.004407, -0.0104643721, -0.00560694328, -0.0157686267, -0.00818700157, -0.0212314334, 0.0016855062, 0.0346217938, -0.0117688151, -0.000269131473, -0.00857617334, -0.0153218014, 0.00127201225, -0.00938334223, 0.00101977179, -0.00511687621, -0.00259267073, -0.000110636684, 0.0231628735, 0.0600764528, 0.00149542512, -0.00282689393, 0.017051449, -0.00780503778, 0.0028989627, -0.00705552381, -0.00815817434, 0.00674562855, -0.0155235939, -0.00727533316, -0.00193864747, -0.00181522989, -0.00830231234, -0.00159181701, -0.00552406441, -0.00580873573, 0.0219809469, -0.020755779, 0.00209900038, -0.000414620125, 0.0016855062, 0.00845365599, -0.0137939453, -0.00335299526, -0.0040718806, 0.0245321784, -0.0022935858]
10 Oct, 2021
jQWidgets jqxListBox enableHover Property 10 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxListBox is used to illustrate a jQuery ListBox widget which comprises a list of electable elements. The enableHover property is used to enable or disable the hover state. It is of type Boolean and its default value is true. Syntax: To set the enableHover property. $("#jqxListBox").jqxListBox({enableHover: false}); To get the enableHover property. var enableHover = $('#jqxListBox').jqxListBox('enableHover'); Linked Files: Download jQWidgets from the link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script> The below example illustrates the jqxListBox enableHover property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxlistbox.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxListBox enableHover Property </h3> <div id="jqxLB"></div> <br /> <input type="button" id="jqxBtn" style="padding: 5px 20px;" value="Boolean" /> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { var data = ["C", "CSS", "C++"]; $("#jqxLB").jqxListBox({ source: data, width: "200px", height: "80px", enableHover: false }); $("#jqxBtn").on("click", function () { var en = $("#jqxLB").jqxListBox("enableHover"); $("#log").text(en); }); }); </script> </body> </html> Output: enableHover property Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxlistbox/jquery-listbox-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxlistbox-enablehover-property?ref=asr10
PHP
jQWidgets jqxListBox enableHover Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0351858251, 0.00629235571, -0.0109367138, 0.0420061126, 0.0819005072, -0.025483327, 0.0348148495, 0.0266105291, 0.0179924276, -0.0107155535, -0.0174074247, 0.0063851, 0.00104337535, -0.0178212076, 0.0114361066, -0.0122422706, -0.0616394021, 0.0168366898, -0.0341585, 0.0233145338, 0.0385817, -0.00674180966, -0.0481415167, 0.0433188044, -0.0377541333, 0.0127487984, 0.0172076672, 0.031789951, -0.00311229052, 0.0166226625, -0.0258115, -0.0167938843, 0.0121209892, -0.0159235131, -0.026453577, -0.0285082236, 0.0180923063, -0.000235205327, -0.0373831578, -0.0219019633, -0.00247021345, -0.0196047556, 0.00574302301, -0.00694513414, -0.0120639158, 0.0103802467, 0.0158521701, -0.0207890309, 0.013105507, -0.0201326851, 0.00546835689, 0.0126917241, -0.0130627025, 0.0160091221, 0.0101305498, -0.0166940056, 0.0136405714, 0.0244131982, -0.03672681, 0.0125133693, -0.0209174454, -0.00918170251, -0.0174074247, -0.0407790318, -0.0157950968, -0.00308018667, 0.0208318345, 0.0086395042, -0.0353570469, 0.016908031, -0.0234144125, 0.0307626277, 0.0343297236, -0.0168081522, 0.0183348693, -6.18110716e-05, -0.0254975967, -0.0100734765, -0.00804736651, 0.0153099718, -0.0293072537, -0.0309909228, -0.0575015731, 0.0317328796, -0.00819718465, 0.0226867255, 0.00366340671, -0.0293072537, 0.0255974736, 0.0234001447, -0.0318755619, -0.0159805864, 0.00828279462, -0.00626025209, -0.0175929125, -0.0153385093, -0.0385531634, -0.0084754182, -0.0117428768, 0.00701290881, 0.0207319576, 0.00094528019, -0.0294214, -0.0178354755, 0.0191053618, 0.0270671174, 0.040436592, -0.0104301861, 0.00453734491, 0.0114503754, 0.033330936, -0.0320467837, 0.0034012252, -0.00848968606, -0.0222586729, 0.0485410318, -0.00121013704, -0.000680869271, -0.00235606637, -0.00522579439, 0.0415495224, 0.00838267338, 0.00610686699, 0.056531325, -0.010672749, 0.00376685243, 0.00465862639, 0.00142416277, 0.0522793457, -0.000272659847, 0.00677748071, 0.036070466, 0.0154669248, -0.014475272, 0.0254405215, 0.0459156483, 0.0124348933, -0.0012502668, -0.0438039266, 0.0120567819, -0.0587286539, -0.0274523646, -0.000844955677, 0.0354997292, 0.014154233, 0.0382107235, 0.0223728213, 0.00225797109, -0.0325319059, 0.00398801221, 0.0256402791, -0.0289077386, 0.0461439416, 0.0259541832, 0.0311050694, 0.0235999, -0.00213312288, 0.0198045112, -0.000457479939, 0.0272383373, 0.00469429698, -0.0302204303, 0.0219875742, 0.013911671, -0.0315616578, 0.00888206717, 0.0129628237, 0.00366697367, -0.0585003607, 0.0317043401, -0.00803309772, -0.0132481912, -0.0263822358, -0.00297317374, -0.0220589153, 0.00102643156, 0.0576157197, -0.0172790084, -0.00340835936, -0.0366697386, -0.00972390082, -0.0092887152, -0.0234144125, 0.00725547131, -0.0289220065, 0.0085681621, 0.010273234, 0.0388670675, -0.0336448401, -0.00491545722, -0.0329884961, -0.0121637946, 0.0462580882, 0.0117928162, -0.000547103235, -0.0135264248, -0.0132481912, 0.0134122772, -0.013426546, -0.0128344083, 0.0215024501, -0.00968823, -0.0275522433, 0.00436255755, 0.0128772138, -0.00653491821, 0.0426624566, -0.0408075675, 0.0239851475, 0.0117571456, 0.0276093166, -0.0022811573, 0.0334450826, 0.00883212779, -0.00761931529, 0.00730184373, -0.0131411785, -0.00499036629, -0.0257116221, 0.00170774676, 0.0155525347, -0.000182925098, -0.0165370535, 0.0311621428, -0.104102105, 0.0047156997, 0.0286081024, 0.00219376339, 0.00492972555, 0.00215987605, -0.00424841046, -0.0148391156, -0.0202040263, -0.0080830371, 0.0183063317, 0.0396660976, -0.0213312283, 0.0133052645, -0.00449810689, 0.0166940056, 0.0116501329, -0.021916233, -0.0123849539, -0.00753370486, 0.0167653468, -0.0161660742, -0.00317471474, -0.0150103364, 0.0024113562, 0.0112648867, -0.00356174447, 0.0104943942, -0.027095655, -0.0387814566, 0.0220589153, -0.0103945155, 0.0192908496, -0.0200185385, -0.0185203571, -0.0277091954, 0.00976670627, 0.0297353044, 0.00180495018, -0.0053720451, -0.00646714354, -0.00434115482, 0.0744809434, -0.0326460563, 0.00416993396, -0.0259969886, 0.0363558345, -0.0212313496, 0.0347292386, 0.0553613156, 0.0236997791, 0.0150246043, -0.0284654181, -0.0439180732, 0.0341299661, -0.00186202361, 0.0184490159, -0.00217771158, 0.0356994867, 0.0808731839, 0.0206320789, -0.00555753428, -0.00280016963, -0.00866804086, -0.0233858749, 0.0292501803, -0.0260968674, -0.0184632838, -0.00475493772, 0.0261111371, 0.0499107949, 0.00187272497, 0.00862523634, 0.0361560769, -0.00286972802, 0.0131126419, -0.0275094379, 0.00945280213, -0.0234286804, -0.00533994148, 0.00814011134, 0.0230862387, 0.045544669, -0.00542555144, 0.000445886893, -0.0153813139, 0.0231718495, 0.0316187292, -0.0361560769, -0.0700862855, -0.012777335, -0.00526146544, -0.00703431154, 0.0267246757, 0.0125918454, 0.00362951937, 0.00804736651, 1.96468918e-05, -0.0446029566, 0.0239566099, 0.0275237057, -0.00927444734, -0.00892487168, -0.0106941508, 0.000881964283, -0.0217022058, -0.0354997292, 0.00992365833, -0.00876078568, 0.0158379022, 0.0277948044, -0.053306669, 0.0237711221, 5.93029545e-05, -0.0171220563, 0.0394948758, -0.0291074961, 0.000515445252, -0.0108796405, -0.0252978392, 0.00824712403, -0.0642077103, -0.00664549833, -0.0070450129, 0.0530783758, 0.0120853186, 0.00123867381, 0.0121709285, -0.00345829874, -0.0168509576, 0.0300206728, -0.000848522759, -0.0259399153, -0.0273810215, -0.0338445976, 0.0391239, 0.010187624, -0.000825782539, 0.0296782311, 0.00826852676, 0.016265953, -0.0335306935, -0.0222016, -0.0132410573, -0.0105800042, 0.00810444, -0.061239887, -0.0376685262, -0.0142612467, 0.0673467591, -0.0332453251, -0.00759791257, -0.0191767029, -0.000989868888, -0.0362416878, 0.0120995864, -0.0353285111, 0.0609545223, 0.00105942728, 0.0131768491, -0.00641363719, 0.0113933021, 0.0157380234, -0.0356994867, 0.0228008721, 0.009995, -0.0187486522, 0.0341870412, -0.00949560758, -0.0229007509, 0.00756937591, 0.00112720206, -0.00821858738, 0.0119497683, -0.00366697367, 0.0163801014, 0.0178925488, -0.0115003148, 0.0260683317, -0.0355853401, -0.035271436, -0.0062352824, -0.0502817743, 0.00689519476, -0.0184775535, 0.00147410203, -0.0179496221, -0.0164086372, -0.00706998259, 0.0364985168, -0.000235651227, 0.0300777461, 0.0328458101, 0.0580437705, 0.00157130545, -0.0497966483, 0.0221302584, -0.0187629201, -0.023542827, 0.0323036127, -0.0446314923, -0.0137761217, -0.0635228306, -0.0109438477, 0.0408075675, -0.0125918454, 0.0186773092, 0.0137547189, 0.0309338495, -0.0378112085, 0.012541906, 0.0518512949, 0.0886351764, 0.0233858749, -0.0437183194, -0.0354426578, -0.0186630413, -0.0110294577, -0.00460511958, 0.00014056584, -0.00502247, 0.00297139026, -0.0134693515, 0.0426339209, 0.009995, 0.0236569755, 0.00196546945, -0.0446029566, -0.011000921, 0.00226153829, -0.0267674811, -0.00690589612, 0.0161518063, -0.00514375092, 0.000861899345, -0.01237782, -0.0468573608, 0.0133837406, -0.0155525347, 0.00754083926, -0.00516872061, -0.0232574604, -0.0240992941, 0.0137404501, -0.00921737403, -0.00814011134, -0.020945983, -0.0114004361, 0.0496539623, 0.0326460563, 0.00857529696, -0.00167296757, 0.000279125205, 0.0184775535, -0.010679883, 0.0173360817, 0.0328172743, -0.000247690157, 0.02361417, -0.000158066905, 0.0282371249, -0.0251266174, 0.0462580882, 0.00127077766, -0.016736811, 0.0184775535, -1.20041113e-05, 0.00253263745, -0.0122565385, -0.0214453749, 0.00341549353, 0.00200470746, -0.0207890309, -0.0101804892, 0.0302489661, 0.00684525538, 0.0103445761, 0.0192765817, -0.030734092, 0.0340728909, 0.0121138552, -0.0166226625, -0.0494827442, -0.00618534302, 0.0267389454, -0.0332738645, -0.00780480402, -0.0424912386, -0.00212063803, 0.00702361, 0.0198758543, -0.0400370769, -0.0370977893, -0.0194478016, 0.0275094379, -0.00463722367, 0.0368409567, 0.0110223237, 0.00118427561, 0.00280552031, 0.0334450826, 0.0311050694, -0.0106584802, -0.0165085159, -0.0327887386, 0.00750516821, -0.0147820422, 0.00436969148, -0.00842547882, 0.00388456648, -0.00691303052, 0.0307055544, -0.0110793971, -0.0298779886, -0.0074909, 0.0123635512, -0.0255261324, 0.00761931529, -0.0340443552, 0.00155257818, 0.00342084421, 0.0141899046, -0.0175501071, 0.000774059619, 0.0208318345, 0.0163230281, 0.00178176397, 0.0130413, 0.0219590366, 0.00332274917, -0.00241314, -0.041492451, -0.0111864107, -0.00698080519, -0.0150531409, -0.0317614153, 0.0188770667, -0.0152957039, 0.0379824303, 0.00353499129, 0.0122065991, -0.0189912152, 0.0286794454, 0.0221017208, -0.00811157469, -0.0188342631, 0.00410572626, 0.0130983731, 0.010109148, 0.00192801491, -0.0166226625, -0.00246486277, 0.038496092, -0.0211029351, 0.00771205965, 0.0204465892, -0.0183776747, -0.0236712433, 0.00404865295, 0.0182492584, 0.0111935446, -0.0101662213, -0.0218591597, -0.0106228096, -0.0090532871, 0.0235856324, -0.00894627441, 0.036327295, 0.0152528984, -0.000200649098, 0.0034904026, 0.0177355967, -0.0158521701, 0.0192337763, 0.0295070112, -0.00987371895, -0.0099307932, 0.0264107715, 0.0115716569, 0.0270385817, 0.0126275169, 0.0125704436, -0.0211457405, -0.00160608452, -0.00103802467, -0.0149960676, -0.0118427556, -0.00769065693, 0.0182207227, -0.00831846613, 0.00637796614, -0.0438895375, -0.00796889048, 0.013105507, 0.0142398439, -0.020945983, 0.0448027141, 0.000303203095, 0.0107084196, 0.000627808738, 0.0492829867, -0.0134408148, -0.0260397941, -0.048769325, -0.0123064779, 0.0111008, -0.0256973524, 0.0113861673, 0.00299636, 0.0201041475, 0.0142113073, 0.0606120788, -0.00733394735, 0.0352143645, -0.00413426338, 0.0160091221, 0.030163357, 0.0200328063, -0.0198045112, 0.0638081953, -0.00383106014, 0.00792608503, -0.0100164032, -0.00151601539, 0.0210743975, 0.00668116892, -0.0276663899, 0.0166083947, 0.0140543543, 0.00801169593, 0.0117500117, 0.0148248477, -0.0224584304, -0.00828279462, -0.0162944905, 0.00658842456, -0.0100449398, -0.0294784736, 0.0372975469, 0.0247984454, -0.00848255213, -0.00771919359, 0.0064885458, 0.0489690825, 0.0345580168, 0.0108939083, 0.015452656, 0.00170150434, 0.00501890294, 0.00157487253, 0.000800367, -0.0196047556, 0.00381322461, 4.55919326e-05, -0.00255939085, -0.000920310558, 0.00635656342, 0.0189912152, 0.037211936, -0.00509737898, -0.00662409561, -0.0185346268, -0.00504387263, 0.00806163531, -0.0117500117, 0.0262538195, -0.0142612467, -0.0207319576, -0.00731967902, 0.0329599604, -0.0111436052, -0.0167082734, -0.0282513928, -0.0117000723, -0.0275665112, -0.0338731334, -0.00657058926, -0.00488335313, -0.0291645695, 0.0231005084, -0.0196047556, 0.00227937382, 0.0183206, -0.00617820863, -0.0348148495, -0.0143468566, -0.000477544847, 0.00377398659, 0.00721623329, 0.0397802442, 0.0293072537, -0.0146036875, -0.0290504228, -0.00426981272, -0.0321323909, 0.00309267151, 0.0113861673, 0.022972092, -0.00587500585, -0.0444602743, 0.0279517565, -0.036070466, 0.0213597659, 0.00400941493, -0.002042162, 0.00726617267, -0.0042305747, 0.0428336784, 0.00342976185, -0.0118498895, -0.0297067687, 0.0111721419, 0.0282656625, 0.00214382424, 0.000514107582, -0.0024826983, -0.00552543, -0.0143468566, -0.0143825272, -0.00122618896, -0.0091603, 0.0032888616, 0.0156524125, -0.0201184172, 0.0174644981, -0.0189912152, 0.00618534302, 0.00134479487, -0.00301776244, -0.0651208907, -0.00266105286, 0.0254262537, 0.0063993684, 0.0279089529, 0.0220589153, 0.00601412216, -0.00284475833, 0.0170507152, -0.0150103364, 0.0388099961, -0.0143825272, -0.000836037914, -0.0218306221, -0.00220446475, 0.0253121071, -0.0273524858, 0.00274487957, 0.0179353543, 0.0235000234, -0.000974708761, -0.0128130056, 0.000962223916, -0.0168224201, -0.00453734491, 0.00637439918, -0.000959548575, -0.0382107235, 0.00122797245, 0.00420560502, -0.0134479487, -0.00669187028, -0.0177213289, 0.00892487168, 0.0294784736, 0.0200756118, 0.0134408148, -0.00570735196, -0.00601412216, 0.0222586729, 0.00485838344, -0.0113148261, -0.0213169605, -0.015367046, 0.00258436031, 0.0246842988, -0.0350716785, 0.00176571205, -0.0123350145, 0.0224013571, 0.0334450826, 0.0319040976, -0.00898194592, -0.0301348194, -0.0174502302, -0.000659020792, -0.0110294577, -0.0220446475, 0.00659555895, -0.00675607799, 0.00260219583, 0.00686665811, -0.0154669248, -0.00876078568, -0.00695940247, 0.0156666823, 0.00391310314, -0.0108511029, -0.0095954854, 0.0168652255, -0.0357850976, -0.0350716785, 0.0377255976, -0.0133552039, 0.0114789121, 0.00924591068, 0.000127077757, 0.00586787146, -0.0023899537, -0.0174644981, 0.0161375385, -0.0214311071, 0.0134693515, 0.0240992941, 0.0264963824, 0.00751230214, -0.0183776747, -0.00472996803, 0.00437682588, -0.0219305, 0.0104016494, 0.00869657751, 0.036555592, -0.0108225662, 0.0305057969, 0.0239708796, 0.0151815563, 0.0262252837, -0.0123920888, 0.0155097293, 0.0372975469, -0.0119925737, 0.00220089778, -0.0213883016, 0.0268388242, 0.0179353543, -0.0201754905, -0.0137047796, -0.00497253053, -0.00661696121, 0.0333024, 0.00628878875, 0.0222729426, -0.0219305, -0.00676321238, -0.0355282687, 0.0234286804, -0.00568238273, -0.0267817508, -0.00548619218, 0.01035171, 0.0138545977, -0.0029161002, -0.0519654416, 0.00379182212, 0.00682028569, -0.0207462255, 0.0340728909, -0.00725547131, -0.0334450826, 0.00864663813, -0.00443033222, 0.0557037555, -0.0305343345, -0.0174359605, 0.0262966249, -0.00248091458, -0.00442319782, -0.000762020703, 0.0158521701, -0.0321609303, -0.00306235114, 0.045373451, -0.0196190234, -0.032218, 0.00725190435, -0.0162374172, -0.000787436264, -0.0310765319, 0.00201719231, -0.00906042196, 0.0331882536, -0.0187058467, 0.00384532847, 0.0243418571, 0.00261111371, 0.0196190234, 0.0182920638, 0.0101234159, 0.016109, -0.0221445262, 0.0185203571, -0.0107654929, -0.0191196296, 0.0229007509, 0.0138831344, -0.0305628702, 0.0116572669, -0.0257829633, 0.0302775037, 0.0255832057, 0.00479417574, -0.0135549614, -0.0290932283, 0.0256973524, -0.0399229303, -0.0100592086, 0.00865377299, 0.00587500585, 0.0345294811, -0.0144324666, -0.0230148975, -0.0262395516, 0.0187486522, -0.0251694229, -0.0102018919, -0.0084754182, 0.0489976183, 0.0342441127, -0.0408646427, -0.0056788153, -0.00561104063, -0.00963829085, -0.028394077, 0.0147820422, -0.0145894187, 0.0321609303, 0.0222158674, 0.03980878, 0.019576218, -0.0144895399, -0.0030088448, -0.0289648119, -0.00857529696, 0.0145038087, -0.0188057255, 0.0229863618, -0.0246985666, -0.0420631841, 0.0147249689, 0.00404865295, 0.0304772612, -0.0337019153, -0.00286259386, -0.0135264248, -0.00420560502, -0.0112862885, -0.0176642556, 1.70273051e-05, 0.043432951, 0.035414122, 0.0163515639, 0.00424484303, 0.0321038552, -0.0350716785, 0.00855389424, 0.00799742714, 0.0215452537, 0.00724120298, -0.0180066954, 0.0338160619, 0.0216023289, 0.01990439, -0.0106656142, 0.0011200679, -0.0193193872, 0.0238852687, 0.0154383872, -0.0263822358, 0.00345294806, -0.00850395486, 0.0171648618, 0.0184918214, -0.0032888616, -0.0256117433, -0.0144253327, -0.000118940327, -0.0351858251, -0.037611451, 0.00112274324, 0.0154383872, 0.0155810714, 0.0029161002, -0.0132909967, 0.0355282687, -0.00925304461, 0.0272811428, -0.0215595234, -0.00600698823, -0.0264250413, 0.0420917235, 0.0320753194, 0.0141470991, 0.00881072506, 0.0227723345, 0.0237283166, 0.00878218841, 0.0258257687, -0.000301419524, 0.0104087833, -0.0332738645, -0.00397731084, 0.0195334125, -0.0307055544, -0.0357565619, -0.00510094594, -0.00542555144, -6.5322427e-05, 0.0114147039, -0.0153385093, 0.00771205965, -0.0161660742, -0.0164371748, -0.0141399652, -0.0433758758, -0.00158646551, -0.0196475592, 0.0135264248, 0.0087108463, 0.00578939542, 0.0147392368, 0.00140008482, 0.00819005072, -0.016579859, -0.00809730589, 0.0149960676, -0.010030671, 0.0113576306, -0.010358844, -0.000178689166, -0.00870371237, 0.00754083926, -0.0119140977, -0.0109652504, -0.0313619, -0.00269137323, 0.0117571456, 0.0163230281, -0.0268958975, -0.0165085159, -0.00855389424, -0.0120139765, 0.017393155, 0.0212313496, -0.00286259386, -0.00886779837, 0.020546468, -0.00192088075, 0.0207176879, -0.00602125656, 0.00881785899, 0.0269244332, -0.0130912391, 0.0158093646, -0.000432733214, 0.00152404141, -0.00609973259, 0.0268102866, 0.00437325845, 0.00361881801, -0.00499393325, -0.0129770916, 0.0051936903, -0.00224727, -0.000741509895, -0.0117428768, -0.0243418571, -0.000935470685, 0.032218, 0.0109010423, 0.000730808591, -0.0079902932, -0.0456588157, -0.0160519276, 0.0712277517, -0.0203467105, -0.00549332658, 0.0196618289, -0.0198615864, -0.0305343345, 0.0108582377, 0.00409502536, 0.0157094877, -0.0111079337, 0.0205892734, 0.00325854146, -0.00417350139, 0.000141234676, -0.0161518063, 0.0189056043, 0.0134479487, 0.0135264248, 0.0185060892, -0.0178354755, -0.014639358, 0.00940999668, -0.000411776535, -0.00170685502, 0.0183776747, -0.0119925737, -0.0257116221, -0.0116215963, -0.0346436277, -0.00130377326, 0.0188770667, 0.0132553251, 0.0144181987, 0.00114147039, -0.0199471954, 0.0224298947, 0.00687735947, -0.0104301861, -0.023856733, 0.0135834981, -0.00627095299, -0.00449097296, -0.0126631875, 0.00845401548, -0.0162944905, -0.0102018919, -0.00235963333, -0.0107298223, -0.01990439, 0.0293357894, -0.0341014303, 0.0136619741, -0.0166083947, -0.00879645627, -0.0149389943, -0.00619247695, -0.00885353051, -0.00719483104, 0.0378112085, -0.0253834482, -0.0312192161, -0.0227152612, -0.0416922085, -0.0307055544, 0.0245558824, -0.0026735377, -0.00731967902, 0.00857529696, -0.047742, 0.0321609303, 0.00948847272, 0.0163943693, 0.0172647405, 0.0132125206, -0.0211885441, 0.00147856097, -0.00812584255, 0.0279232208, 0.0115288515, -0.00366697367, -0.0252122283, 0.0117928162, -0.00429121545, -0.000673735107, -0.0246129557, 0.0134764854, -0.0299636, 0.000834254373, 0.00868944358, -0.0200898796, 2.60147135e-05, 0.00225083693, -0.0204323214, 0.0187914576, -0.000184374221, 0.00236855121, 0.0311906803, 0.016265953, -0.0032710263, -0.00848968606, 0.0255118646, 0.0249411296, 0.0218163542, 0.0263679679, -0.0152386306, -0.00458015, 0.036555592, -0.00144110643, -0.0231147762, 0.0357565619, 0.0201754905, -0.0140686231, 0.0105229309, 0.0109367138, -0.0242134407, 0.0150246043, -0.0278518777, 0.00443389919, -0.000446778664, 0.0226011146, -0.0261824783, 0.0060105552, 0.00100146199, 0.00536491117, 0.0104515888, -0.0135192908, 0.0151672885, 0.00344403042, 0.0127416635, 0.0197902434, -0.0260826, 0.00793322, -0.0344438702, 0.0318470262, -0.0345294811, 0.0304772612, -0.0299350619, 0.0105800042, 0.00334236817, 0.0290932283, -0.0095954854, 0.0042377091, -0.0027662823, 0.0103873806, 0.00221516611, 0.0166369323, 0.0148248477, -0.00371691305, -0.006938, -0.000995219569, -0.0375258401, -0.00547549082, 0.0114432415, -0.0109723844, 0.0191338975, -0.0126203829, 0.0035956318, -0.0201469529, 0.00260754651, -0.00578582846, 0.0256545488, 0.0155097293, 0.0155953402, -0.0184062105, -0.00646714354, -0.0287079811, -0.00769065693, -0.0334165469, 0.0091603, 0.00139830133, -0.000834700244, -0.0145038087, 0.0111364713, -0.0195334125, 0.0213883016, 0.000458817609, 0.022001842, 0.0145466141, 0.0130413, -0.006938, -0.00926017854, 0.00137333164, 0.00324248942, 0.0161232706, 0.0043197521, -0.0222586729, 0.00721623329, -0.0261539407, 0.013027031, -0.00278590131, -0.0121637946, 0.00997359771, 0.0292501803, 0.00443033222, 0.00263073272, -0.0155239981, -0.0110936658, 0.00447670417, -0.00408789096, 0.00697010383, -0.0268816296, 0.0271384604, 0.0185774304, 0.0142113073, -0.00969536416, 0.0142255751, 0.008332734, 0.0228294078, 0.0114361066, -0.0141114285, -0.00146161718, -0.0234429482, 0.00228294078, -0.010515796, 0.0205607358, 0.00137600699, 0.00779053569, -0.0123920888, -0.00978810899, 3.3636592e-05, -0.00251480215, 0.0238139275, -0.0114503754, 0.0033530693, 0.00328707811, 0.00682742, -0.00375615107, -0.0193051193, -0.0141970385, 0.0106584802, 0.00424484303, 0.0295070112, 0.032218, 0.029121764, 0.00716629392, 0.000463722361, -0.0116501329, 0.00650994852, -0.0127987368, -0.000112196285, -0.0111436052, 0.00611043395, -0.0120924525, 0.0186773092, -0.00236855121, -0.00015851279, 0.00980951171, -0.00268067187, -0.0111150686, 0.01237782, 0.00124580797, 0.00831133127, 0.0156666823, -0.0454875976, 0.021274155, -0.00309445499, -0.0133123994, -0.0266105291, 0.00597131718, -0.0493685976, 0.00314261089, 0.0116144614, -0.00586787146, -0.0149532631, -0.0313048251, -0.00798315927, -0.0256117433, -0.0101662213, 0.0201184172, -0.0230434351, 0.0118998289, 0.00293750293, 0.00501890294, -0.0201469529, 0.0130341658, -0.0354711935, 0.0311906803, 0.0268388242, 0.0290789586, -0.0122708073, -0.0146536268, -0.00541841751, 0.0236569755, -0.00414853171, -0.0131126419, 0.01035171, 0.00667403499, 0.0242990516, -0.0062531177, 0.000477544847, -0.00529713603, 0.00467646169, 0.00540058222, 0.00856102817, -0.000326389214, 0.0173218139, 0.0204608571, -0.0190482885, -0.000118160024, -0.0189626776, -0.0309338495, 0.00468716305, 0.00691303052, 0.0131411785, -0.00891773775, 0.0171791296, 0.0241706371, 0.000859669934, 0.0128201395, -0.00911749527, -0.0174216926, -0.0104729915, -0.00342441141, 0.0131768491, -0.00130734034, -0.0201612208, -0.0090532871, 0.00973817, 0.01326246, -0.00737675279, -0.0210601296, -0.0369836427, -0.0572162047, -0.0079189511, 0.0341585, 0.00570378499, -0.0119569032, -0.00716986135, 0.0105657354, -0.0188342631, 0.00947420485, 0.00219733058, -0.0085681621, 0.036327295, -0.000904704502, 0.0152243618, 0.0145323453, 0.00630662404, -0.00574302301, 0.000309668452, -0.00130109792, -0.00460868701, -0.01035171, -0.00552543, -0.0110865319, -0.00628165435, -0.00269137323, -0.00657058926, -0.01140757, -0.0171791296, 0.00997359771, -0.00772632798, 0.00577155966, -0.00576085877, 0.024184905, 0.0218876954, 0.0131554464, 0.00573588908, 0.00960262, 0.00360276597, 0.0130413, 0.0204037838, 0.00562887592, -0.00592494477, 0.0234144125, -0.0166512, -0.0275665112, -0.00609973259, -0.00969536416, -0.00502247, -0.0234857537, 0.0061639403, 0.0173218139, 0.00201184163, 0.0324463, 0.0160091221, 0.0291788373, 0.0193907283, -0.004651492, 0.00745522883, -0.0251836907, -0.00823999, -0.0186202358, -0.00355817727, 0.00501533551, 0.00270564156, -0.00204572896, 0.00653848518, 0.0015454439, 0.0048762192, 0.0316472687, 0.0190340187, -0.00190839591, -0.00374901691, -0.0175358392, 0.00685952371, -0.0294499379, 0.0276806578, -0.013826061, 0.0119069638, 0.00940999668, -0.00310693984, -0.0161232706, 0.0175215714, 0.0396946333, -0.00349575328, 0.00516515365, -0.0268816296, 0.0117642796, 0.00702717714, -0.0152814351, 0.00514018396, -0.0134550827, -0.0161946118, 0.00429834938, 0.0300492086, 0.0222586729, 0.0341014303, 0.00297674094, -0.0163801014, -0.00941713154, -0.00251658564, -0.0228722133, 0.00129485549, -0.00384889566, 0.00226510549, 0.0126774563, 0.00509737898, -0.0232574604, -0.00122083828, 0.0135549614, -0.00463008927, 0.0192908496, -0.00279660267, 0.00290896604, 0.00838267338, -8.83413377e-05, 0.0178069379, 0.0107440902, 0.0222016, -0.0208889097, 0.0137618529, -0.00282692281, 0.00107726268, -0.0148533843, 0.00352964061, 0.0138117922, -0.00802596379, 0.00709851924, 0.00779767, -0.00407362264, -0.0161660742, -0.0119497683, 0.00619604439, 0.0138403289, -0.0110651292, -0.00856102817, -0.0163515639, 0.014639358, 0.0140971597, 0.0148105789, -0.0221873317, -0.00764785195, 0.0073696184, 0.00461938838, 0.000476653076, -0.00586430449, 0.000220602538, -0.0018887769, -0.00182813627, 0.00783334114, -0.00990939047, -0.00879645627, -0.0116858035, 0.00299636, -0.0127059929, -0.0166369323, 0.0104587227, -0.00966682751, -0.00873224903, 0.0127131268, 0.0169651043, -0.0084754182, 0.0224727, 0.0241421, 0.00391667057, 0.0113790333, 0.0213169605, 0.00819718465, -0.0134978881, 0.0299636, 0.00296960678, 0.0128914816, 0.00390596921, 0.0112006785, 0.00419133669, 0.00855389424, 0.0208603721, -0.0247271024, -0.0171077885, 0.00610686699, 0.0140258176, 0.00427694712, 0.00774773071, 0.0263394304, 0.00654561957, 0.00968823, -0.016736811, 0.00365627254, 0.0235000234, 0.0101662213, -0.0198615864, -0.0150103364, 0.0106656142, 0.0102304285, -0.0146678947, -0.0108796405, -0.00136441388, -0.0129556898, 0.00379895628, 0.00509024458, 0.0053720451, 0.0100235371, -0.0381251127, 0.0134408148, 0.0111935446, -0.0387814566, -0.0117856823, 0.0083256, 0.00226510549, 0.000720107346, 0.00913176313, -0.0054362528, 0.0114432415, -0.0153813139, -0.021274155, 0.00180584192, -0.00841834489, -0.00499393325, 0.0122565385, -0.00620317832, -0.0031176412, -0.0208032988, 0.000451906351, -0.00657058926, 0.00901048258, 0.00493685948, -0.00331383129, -0.0146036875, -0.00532567315, 0.00271634292, -0.000381233287, -0.022486968, 0.00698080519, 0.00369194336, 0.000494934444, -0.00635656342, 0.00512234867, -0.017307546, 0.00683812145, 0.0159520488, -0.00470143137, 0.00249518314, 0.00636369782, 0.0182207227, 0.0179353543, 0.0142041724, 0.0222016, 0.00154811924, -0.0162944905, 0.00257900986, -0.0173503514, 0.0106228096, -0.00186380721, 0.001809409, 0.0051294826, 0.00839694217, 0.0112506179, -0.0150531409, -0.0208175667, 0.0143753933, 0.00274309609, -0.00734108174, 0.0298779886, -0.00717699528, 0.0192623138, -0.00122797245, 0.00732681341, -0.00669900468, -0.0103089046, 0.00554326596, -0.00108172162, -0.00750516821, -0.00263965037, 0.00104337535, -0.0105942721, -0.00395590859, 0.011000921, -0.0127416635, 0.00606762897, -0.0119854398, 0.00676677935, -0.0262823571, 0.00174074236, 0.0012092453, -0.00663123, -0.0110437265, 0.0135549614, -0.0216451325, 0.00524006272, 0.0191767029, -0.0173360817, 0.00100413722, 0.0122351358, 0.0264250413, 0.00449810689, -0.00438396, 0.00517228805, -0.00317649823, -0.0106085408, 0.000847185089, 0.016665468, -0.013105507, 0.00898194592, 0.0159805864, -0.000519012334, 0.0180780385, -0.01999, -0.0101448186, 0.00770492526, -0.0190768242, 0.0147107, -0.00363486982, 0.0166940056, 0.00985945109, 0.00812584255, -0.0150103364, -0.0256973524, -0.0108867744, -0.0221873317, 0.0188057255, 0.00804023258, -0.026211014, -0.0194192659, -0.0121067204, 0.00760504697, -0.0155239981, 0.00272526057, -0.00979524292, 0.0110793971, 0.0100378059, 0.0209887885, -0.0114717782, 0.000994327711, 0.00974530354, -0.027252607, 0.00860383362, 0.0199186597, -0.0143325878, -0.00317114755, -0.000647873676, 0.0153527772, -0.012862945, 0.0194763392, 0.00537561253, -0.0183491372, 0.00825425796, 0.00794748776, -0.0205607358, -0.0248555187, 0.030334577, 0.0116429981, -0.0513376333, -0.00531497179, 0.0211314708, 0.0070378785, 0.0261824783, 0.0101662213, 0.00759077817, -0.00503317127, -0.00708068395, 0.00450880826, -0.0208603721, -0.00789754838, 0.00906755589, -0.00560747366, 0.00883212779, -0.0280944407, -0.00116644008, -0.0255404, -0.0110080559, 0.0152100939, 0.00212598871, -0.0019975733, 0.0120425131, -0.00555396685, -0.00851822272, -0.0138974022, -0.0184632838, 0.00308553735, 0.0187201146, -0.00294998754, -0.0246272255, 0.00381679181, 0.00565384561, 0.0191338975, 0.00271991012, -0.00444816751, 0.0124348933, -0.0171933975, 0.0097524384, 0.00131893344, -0.0224727, 0.0168652255, -0.0207462255, -0.00196368597, 0.00780480402, 0.010273234, -0.00532210572, 0.0143040512, 0.019333655, 0.00196368597, -0.0160661954, 0.00722336769, -0.0083256, -0.0137689868, 0.0130127631, -0.00866090693, 0.00956694875, -0.00985945109, -0.0126703214, 0.0334165469, -0.0114004361, -0.0139616104, -9.280021e-06, -0.00535421, -0.00814011134, 0.00791181717, -0.0057501574, -0.00641006976, 0.0393236578, 0.031133607, -0.0119355, -0.0271099228, 0.0150103364, 0.0139758782, 0.00339409104, -0.00195833528, -0.0158949755, 0.0111293364, 0.00289648119, 0.0128914816, 0.00747663155, -0.018035233, 0.0227152612, -0.0194763392, -0.0145537481, 0.0155810714, -0.0107440902, 0.00613897061, 0.0211600084, 0.00104426709, 0.0231005084, -0.0143682593, 0.00194585044, 0.00275914813, 0.00110936654, 0.014881921, -0.0220303796, -0.00858243089, -0.000679977529, -0.0206463467, -0.00806876924, -0.00110312412, 0.0176785234, 0.0148533843, -0.0176499858, -0.00478704181, 0.00677391374, 0.00177106273, 0.0127559323, 0.000697813, -0.0113148261, 0.00582149904, 0.00311229052, -0.0104729915, 0.00982378, 0.00565384561, 0.0289505441, -0.0109295798, -0.0124776987, 0.00238638674, 0.018206453, 0.00477277348, 0.000714756665, 0.0195476804, 0.00700577488, -0.00292501808, 0.00255047297, -0.00274844677, 0.0167796146, -0.00881072506, 0.0114717782, -0.018035233, -0.0140186837, 0.0155097293, -0.0138189262, 0.019005483, 0.0048120115, 0.0121067204, 0.014154233, -0.0133694727, 0.0215737913, 0.0159520488, 0.00684168842, -0.0267532133, 0.0167510789, -0.0127844689, -0.0160091221, -0.0309053119, 0.0230577029, -0.0339872837, -0.000427828461, 0.00378468796, -0.0140258176, 0.013590632, -0.015609608, 0.00101662206, 0.000992544228, 0.00907469, -0.00415923307, -0.0193764605, -0.0276093166, 0.0136049008, -0.0181065742, -0.00159627502, -0.00391667057, 0.0107940296, 0.00597488414, 0.0129770916, -0.00134836196, 0.0335592292, -0.0060747629, -0.0049653966, -0.0084754182, -0.00776199903, 0.00924591068, -0.0310479961, -0.0108796405, -0.00738388672, 0.0175215714, -0.0105942721, 0.0270385817, -0.0119212316, 0.0203609783, 0.0268816296, -0.00264321757, -0.0194335338, -0.0234857537, 0.00125650922, 0.00623884937, 0.00788328052, 0.00527930073, -0.0021723609, -0.00204572896, 0.00855389424, -0.00675251102, 0.000301865424, -0.00649924716, -0.0115787908, -0.00169704552, -0.0175358392, -0.000852535712, -0.00718412967, 0.00221516611, -0.0118498895, -0.01999, -0.00859669875, 0.00826852676, -0.0012190548, 0.0147249689, 0.00466932729, -0.0288363975, -0.00565741304, 0.00418420276, -0.0127345296, -0.00312655885, 0.0271527283, 0.00266997074, -0.00115217175, 0.00509737898, 0.0100734765, -0.0209887885, 0.00172825763, 0.00565741304, 0.00405222, 0.00641720416, 0.0120068425, -0.019576218, 0.0292073749, 0.00426267879, 0.0103445761, -0.013105507, -0.0159520488, -0.0154669248, 0.0159520488, 0.00665976666, 0.0129913604, 0.0206320789, 0.0150959464, -0.012541906, 0.0126203829, 0.0332167894, -0.0225155037, -0.00654205261, -0.0110223237, 0.0240279529, -0.0269101653, 0.0116715347, -0.00694156718, 0.00810444, 0.023871, -0.0300777461, 0.00169793726, -0.00394877419, 0.012777335, 0.00232752948, 0.00123243139, 0.0305057969, 0.0148533843, 0.00904615317, 0.00663836394, -0.0028750787, -0.00589997508, -0.0104872594, 0.0198330488, -0.00756937591, -0.00221694959, 0.00975957233, -0.00682385312, -0.0101733552, -0.00346721639, -0.0132909967, -0.0141685018, -0.000948847272, 0.000391934562, 0.000946172, 0.0145751508, -0.000991652487, 0.00487265177, -0.00332631613, 0.00135460438, -0.0090532871, 0.00252907048, -0.0209174454, -0.0144895399, 0.0119925737, -0.0122708073, 0.0161946118, -0.00578226103, -0.00385246263, 0.0273952913, -0.0173503514, -0.000368079636, 0.00418420276, -0.0110793971, -0.00209923554, 0.00956694875, -0.00270742527, -0.00494756084, -0.0038381943, 0.0198615864, 0.00469786441, -0.0166369323, 0.0127916029, 0.00600342127, 0.0103374412, 0.0121780625, -0.000130756336, -0.0351002142, -0.00239173719, 0.00490475586, -0.020303905, -0.0104587227, 0.0133052645, -0.00580723071, 0.00119943568, 0.00418063533, -0.00292501808, -0.0199614652, 0.00173093285, -0.00449810689, 0.0276806578, -0.00506884232, -0.00277876714, -0.00624955073, 0.019576218, -0.017236203, 0.0219590366, 0.0263822358, 0.0151387518, -0.00117535784, 0.0226724558, -0.00360098248, -0.00188342622, 0.0063993684, -0.00621031271, 0.00929585, 0.0137047796, -0.00709495228, -0.010758359, -0.00704144593, -0.0086395042, -0.00781193841, -0.0113362279, 0.00337090483, -0.000714310794, 0.0112791546, 0.0135406926, 0.00188164262, -0.00105496834, -0.0260255262, 0.0031586627, 0.0093600573, 0.00262538204, -0.00111204188, 0.0206891522, -0.0102875018, 0.000871708849, -0.0113718994, -0.00332988333, -0.00330313016, 0.00410572626, -0.00691659749, 0.000929228263, 0.0134622166, 0.0115288515, 0.0196618289, 0.027752, 0.00813297648, 0.00966682751, -0.0159235131, -0.0228008721, 0.02264392, -0.0299350619, 0.0149247255, 0.0158236343, -0.040208295, -0.00721266633, -0.0158949755, -0.0116858035, 0.00112541846, 0.00562887592, -0.00683455402, 0.00249339943, -0.00865377299, -0.020375248, -0.00236498402, 0.0103017706, -0.0102018919, -0.006938, 0.00125740108, -0.0237568542, 0.0102518313, 0.00327280979, -0.00792608503, -0.000314573204, -0.0277948044, -0.0105229309, 0.0105015282, -0.0061639403, 0.0287079811, -0.0140614891, 0.00923877675, -0.0206606146, 0.0104087833, 0.0213026926, 0.00841834489, 0.00955268089, 0.0164514426, 0.0150388731, -0.0123492833, 0.00764785195, -0.00735535, 0.0263251625, -0.00503673824, 0.0215737913, 0.00169793726, 0.0173218139, 0.003599199, -0.00848255213, 0.00612113532, -0.00157308893, 0.00148123619, -0.0177355967, -0.00212598871, -0.0152814351, 0.0125133693, -0.00654205261, 0.000612648611, 0.00307840318, 0.0194763392, -0.0135692302, 0.0095954854, -0.00788328052, -0.00628522178, -0.0437468551, 0.000537739601, 0.00335485302, 0.0147963101, -0.00242205756, 0.00939572882, -0.0028073038, 0.00848968606, 0.00242919172, 0.000524362957, 0.00845401548, -0.0044802716, -0.0103659788, 0.0196760967, 0.000658129051, -0.00547192385, 0.000662142, -0.0249553975, 0.030334577, 0.00491545722, -0.0214453749, -0.0130769704, 0.00596775, 0.02167367, -0.00532567315, -0.0187914576, -0.00475850469, 0.0213597659, 0.000482895499, 0.00212242152, 0.00922450796, -0.0158949755, 0.0153242406, -0.00870371237, 0.00484768208, 0.024513077, -0.0127559323, 0.012534772, 0.0203895159, -0.0148391156, 0.000994327711, 0.00563244335, -0.00198865542, -0.0160233919, -0.00396661, 0.000290941185, -5.63210888e-05, 0.00626025209, 0.0104729915, -0.0151815563, 0.00933865458, 0.0253263749, 0.0158664398, -0.0121994652, 0.00501533551, -0.0124348933, 0.000888652576, 0.0109723844, -0.0110151898, -0.0121495258, 0.0103445761, -0.00153920159, 0.00893914048, -1.98419657e-05, -0.013747585, 0.00480844406, 0.00498679886, 0.0142469779, -0.00933152065, -0.0137047796, 0.00500106718, 0.00774773071, -0.0108796405, 0.00705571426, 0.0113362279, -0.00414496474, -0.0180495, 0.0025237198, -0.00755510759, -0.00509024458, -0.00425554439, 0.00866804086, 0.019404998, 0.00561104063, 0.00289469771, -0.019333655, -0.00779767, 0.00374901691, -0.0137689868, 0.00112631032, -0.00572875468, -0.010836835, -0.00220981543, -0.0201326851, 0.000949739071, 0.00396661, -0.00811157469, 0.0124420281, -0.0222158674, -0.00956694875, -0.0183919426, -0.00484411512, 0.0124420281, 0.0146678947, 0.00280016963, -0.0163658317, -0.0244131982, -0.00591781083, -0.00656345487, -0.0449168608, 0.00858243089, -0.0121281231, 0.00404865295, 0.0109081771, 0.00514731836, 0.00729827676, -0.00763358362, -0.00901048258, -0.0151530197, -0.000952414412, 0.0137333162, 0.00118516735, 0.0272668749, -0.00101662206, -0.0016132188, 0.0130841052, 0.00433045346, -0.0151672885, 0.00560033927, 0.00854676, -0.00839694217, -0.00572162075, 0.00800456107, -0.0275237057, -0.000170886153, 7.12861656e-05, -0.0102090258, 0.0236569755, 0.0137404501, -0.0120567819, 0.00185667304, 0.00543982023, -0.0115145827, -0.0295070112, -0.010679883, -0.0261396728, 0.0102090258, 0.008168648, 0.0173360817, -0.00395590859, -0.0100164032, 0.0326460563, -0.0178640131, -0.020303905, 0.00701647624, 0.0117143402, 0.0284511503, 0.00577869406, 0.0222158674, -0.000517674664, -0.00172914937, 0.0016560239, 0.0114432415, -0.00617464166, -0.0178497434, -0.00239887135, -0.00505457399, -0.00474066939, 0.0244560037, 0.000498501526, -0.0142826485, -0.00660626031, -0.00826852676, -0.0309623852, 0.0175643768, 0.0178069379, -0.0259541832, -0.0216308646, 0.00969536416, -0.0227723345, 0.00133320177, -0.00315687922, 0.0230006296, 0.0118427556, 0.00278055063, -0.00694156718, -0.000540414883, -0.0162802227, 0.00470143137, -0.011971171, 0.01132196, 0.000224726988, -0.0359277837, 0.00525789801, 0.00969536416, -0.0185774304, 0.0208603721, -0.00606406154, -0.0157094877, -0.0182492584, -0.0171363242, 0.00809730589, -0.0109581165, 0.0017532272, 0.0165655892, 0.020546468, 0.00662766257, 0.00309802219, 0.00417350139, -0.00964542478, 0.0209887885, 0.010672749, -0.0112720206, -0.0211457405, -0.00901761651, 0.0144181987, 0.0105229309, 0.0129699577, 0.0117856823, -0.00762644922, -0.00323892245, 0.0125133693, -0.0123564173, -0.00164353906, 0.000257276726, 0.000722782628, 0.027252607, -0.00141167792, -0.00346364942, 0.0230148975, 0.0127916029, 0.0202325638, -0.00324605661, 0.00657415623, -0.00908895861, -0.0231861174, -0.00451237522, -0.0155953402, 0.00145537476, 0.00747663155, -0.0118712923, -0.0051116473, 0.00770492526, 0.0285367612, -0.0127702, 0.0116358642, 0.0091603, 0.0245416146, -0.0118712923, 0.00156238768, 0.00230255979, 0.0117642796, 0.00183883752, -0.015124483, 0.0139402077, -0.00302846381, 0.00935292337, -0.0089605432, 0.0136191687, -0.0143753933, 0.0201469529, -0.0147535056, 0.0175786447, 0.0151815563, 0.00660626031, 0.00190661231, -0.00251123495, 0.00530427042, -0.00938146, 0.022244405, 0.01990439, 0.00213669, -0.00921737403, 0.00550759491, 0.00888206717, 0.017707061, 0.026211014, -0.00667046802, 0.0025237198, 0.0105443327, 0.0314189754, 0.0315901935, -0.00118070852, -0.00278055063, 0.0183919426, -0.0609545223, 0.010836835, -0.00365627254, -0.000741509895, 0.00204929616, 0.00428764848, 0.0133837406, -0.00791181717, 0.0412641577, -0.00510808034, -0.000456142297, 0.02070342, 0.00238281954, 0.00274487957, -0.0186487734, 0.00620674528, 0.0188199934, 0.00201719231, 0.0181493796, 0.0110508604, 0.000522133545, 0.00115752232, -0.0163658317, 0.00681671873, 0.0247984454, 0.00916743465, 0.00502247, 0.00796889048, -0.0125276381, -0.0143254539, 0.00306235114, 0.0366982743, 0.00857529696, -0.0295926202, -0.00132160878, 0.0088749323, -0.0125490408, -0.0176642556, -0.0222586729, 0.0131197758, 0.00776199903, -0.00518298941, -0.0190625563, -0.0312192161, -0.0262538195, -0.000138224932, -0.00395590859, -0.00585003616, 0.00224191928, 0.00230612699, -0.0165941268, -0.00167385943, 0.00299636, 0.0174216926, 0.019248046, 0.0173360817, -0.0106513463, -0.00926017854, 0.037611451, 0.00956694875, 0.00931011792, -0.0329028852, 0.0026771049, 0.00414139731, 0.0453449115, 0.00714489166, -0.00211528735, -0.0250695441, -0.00645287521, 0.0349860676, -0.0090532871, 0.000173115579, -0.014475272, -0.0139687443, 0.00681671873, 0.00841121, -0.00427338, 0.00330669712, 0.0159092434, 0.0207462255, 0.007683523, 0.00413426338, 0.00727687404, 0.0163515639, 0.00490832282, 0.00264678453, -0.0114717782, -0.00529356906, 0.0247413721, 0.0153813139, 0.0154669248, -0.00185488944, -0.0168509576, 0.0153242406, 0.0229435563, 0.0059213778, -0.00561817503, 0.0025914947, 0.0122850752, -0.00690232916, 0.00318184891, 0.00781907234, 0.00250945147, 0.0149532631, 0.0285224933, -0.0374116935, 0.0024345424, -0.00793322, -0.00372048025, 0.00517585501, 0.0148676522, 0.0021313394, 0.00473710243, 0.0240564886, 0.0117571456, 0.02070342, 0.00503317127, 0.0149104577, -0.00812584255, -0.00624598376, -0.0027752, 0.00018259068, 0.00580723071, -0.0259256475, -0.00558250397, 0.00433045346, 0.00369194336, 0.00168456067, 0.00362595217, -0.0175501071, -0.00219198, 0.0067311083, 0.00517942198, -0.0115074487, 0.00552899763, -0.012777335, -0.00593921356, 0.0236855112, -0.0215595234, 0.00469786441, 0.00955981482, 0.0118784271, 0.00363486982, -0.00549332658, -0.0297923777, -0.0132053858, -0.000109632441, -0.00974530354, 0.000310114323, -0.0184347481, 0.0151815563, -0.00471926667, 0.00410929369, -0.00969536416, -0.00201005815, 0.000886423106, -0.00187094137, -0.00186202361, 0.0115787908, -0.00410215929, 0.0218306221, -0.00446243584, 0.00908895861, 0.00101483858, 0.0249553975, -0.00484054815, 0.0147535056, 0.0284083448, 0.00355996098, -0.0129556898, -0.0015686301, 0.00821145251, 0.00971676689, -0.0312762894, 0.000750427658, -0.0286366399, -0.000440313306, -0.00744809443, 0.0175929125, 0.000694245857, 0.00342084421, 0.0030088448, 0.000539077271, -0.00155079458, 0.00263429969, -0.0351287536, 0.00232039532, -0.0048048771, 0.00379538909, 0.0162088796, 0.00531140482, 0.0430905074, 0.00801169593, 0.0054362528, 0.0236284379, -0.00706284819, 0.00140989432, -0.0285652969, 0.00677748071, 0.000311229058, 0.0111150686, -0.00630305707, -0.00837553944, 0.0044731372, 0.0183206, -0.0164942481, -0.0114717782, 0.0146964323, 0.0136120347, -0.0057501574, 0.0105728703, -0.008332734, 0.00853249151, 0.0144324666, -0.018035233, 0.00684525538, -0.0247413721, 0.00657058926, -0.00933152065, 0.00713419029, 0.02652492, 0.0225012358, 0.0147963101, 0.00709138485, 0.00950274151, -0.00506884232, 0.00557180261, 0.0281943195, -0.0207747612, 0.0112078125, 0.0022401358, 0.000646090077, -0.00159449154, -0.0267674811, -0.00191374647, 0.00716272695, 0.0132981306, 0.000442765682, -0.000171554973, 0.00901761651, 0.0185203571, 0.0229435563, 0.000547995, 0.00565741304, -0.0111364713, 0.0163515639, -0.0132267885, 0.0110793971, -0.00216701021, -0.00154187682, -0.00107815454, 0.00726260571, -0.0104872594, 0.0145680169, 0.0105728703, -0.0257116221, -0.0171933975, 0.0107868956, 0.0116858035, 0.00441249646, -0.00455518067, -0.00851108879, 0.0170221776, -0.00243632589, 0.0178497434, -0.0175786447, -0.0101162819, -0.00587857282, 0.000342441141, -0.0218306221, -0.00337268831, -0.0206463467, 0.00404865295, 0.00160519278, 0.00428051408, 0.0289648119, 0.00438396, 0.0223157462, -0.00405935431, -0.0100021344, -0.010679883, 0.000907379843, -0.0117214741, 0.0110793971, -0.00491545722, -0.00165334856, -0.0160661954, -0.00393807283, -0.00444460055, -0.0223300159, 0.00167296757, -0.0103659788, 0.0210601296, 0.00526146544, -0.0091246292, -0.00599628687, 0.0123278806, -0.0123064779, 0.00545052113, -0.0156666823, 0.000583665911, -0.0266390666, -0.00416993396, -0.0128700789, 0.0184632838, -0.0162088796, 0.00675607799, -0.0217592809, -0.00370977889, -0.00541485054, -0.00745522883, -0.00926731341, -0.00457301596, 0.0189769454, -0.0103231734, 0.00275379745, -0.00195476809, -0.00898194592, 0.0145822847, -0.00811870862, -0.0189626776, 0.0172219351, -0.0022365686, -0.00742669217, 0.0190197509, 0.0220874529, 0.0263251625, 0.00885353051, -0.0126631875, -0.0184632838, 0.0121923313, 0.00914603192, -0.00160519278, -0.00511521427, -0.0031996842, -0.0109581165, -0.00893200655, -0.0117785484, 0.01237782, -0.0163087584, -0.0166083947, 0.000303871901, 0.0152671672, -0.0203895159, -0.00920310523, -0.00441249646, 0.000268646836, -0.00293215225, 0.0400656126, -0.0049653966, -0.00578582846, -0.0250124708, -0.0110365925, 0.02264392, 0.00625668466, -0.00257009198, -0.0270813853, -0.00587857282, 0.00108350511, -0.0247413721, -0.00122975605, 0.00538631342, 0.000177128561, -0.0180209652, 0.00161589403, 0.00940999668, -0.00298744207, 0.000986301806, -0.0230291653, -0.00191553007, -0.00234358152, 0.000589908333, -0.0102518313, 0.0620389171, 0.0283370037, -0.0133195333, -0.0228436776, 0.0359848551, -0.0121923313, -0.0110437265, 0.0356138758, 0.00732681341, 0.0234001447, 0.0191481672, 0.0198758543, -0.0104230521, -0.0030730525, 0.00275379745, -0.00689519476, 0.00739102112, 0.00443746615, 0.0184347481, -0.00191553007, -0.00591424387, -0.0215737913, 0.0162374172, -0.0118142189, 0.0199471954, 0.000451683416, 0.0234001447, -0.00282870652, -0.0102446973, 0.0192623138, -0.00898908, 0.0118284877, 0.00730184373, 0.00409502536, -0.00137868221, 0.000555129198, -0.0129485549, 0.00935292337, 0.00321573624, -0.0176785234, 0.0119925737, 0.02167367, -0.0112506179, -0.00322465389, 0.00574659044, -0.00861096755, 0.0121423919, -0.0101662213, 0.00398087827, -0.00769779133, 0.00865377299, -0.022244405, -0.0125062354, -0.0207890309, 0.000225061405, -0.00140989432, 0.0135763641, -0.00379895628, 0.0129271522, 0.0253263749, 0.00517942198, 0.0132909967, -0.00420203805, -0.000400852325, 0.0157237556, -0.027423827, 0.000819540117, 0.0122351358, -0.00241849059, 7.4853262e-05, -0.011892695, -0.00856102817, 0.00420917245, 0.000367410801, 0.00376685243, 0.00982378, 0.00192623131, -0.0123136127, -0.00461582094, -0.0101162819, -0.0195191447, -0.00111204188, 0.0049653966, -0.0309909228, -0.00262181484, -0.0313333645, -0.00950987544, 0.00187985913, 0.000104393264, 0.0180780385, 0.00772632798, 0.011885561, -0.00215452537, -0.00521866, 0.00690589612, 0.0137832556, -0.00446957024, 0.00117089902, -0.0126560535, 0.00918170251, 0.00819718465, -0.000327280984, 0.0166797359, -0.00953841209, 0.0112934234, 0.0254405215, -0.008332734, 0.00196011877, 0.0133766066, -0.00116198126, -0.0117214741, -0.0142897833, 0.0150674097, 0.0197902434, -0.00295890542, 0.00472996803, -0.0295070112, 0.00533994148, 0.000212576575, 0.00238103606, -0.0175643768, -0.0043197521, -0.0189056043, 0.00900334772, 0.0116215963, 0.00723763602, 0.0215737913, 0.0148961889, 0.0132981306, 0.00196725293, -0.0202753693, -0.0267960187, 0.00275201397, 0.0201754905, 0.0129128844, 0.0247413721, 0.0221730638, 0.00481914543, 0.0141899046, 0.00379895628, -0.00363486982, 0.0144110639, -0.00684882281, 0.00988798775, -0.00313904369, -0.000701825949, 0.00769779133, 0.0123421494, 0.0226011146, -0.00490475586, 0.0236569755, -0.0182920638, -0.010843969, -0.0219019633, -0.00552543, 3.029244e-05, 0.0197759755, -0.0160519276, 0.00570021803, -0.0134550827, 0.00449454, -0.00890346896, 0.0144610032, -0.00908182375, -0.000571181125, -0.0151102152, -0.00917456858, -0.0156524125, -0.0188627988, -0.0108582377, 0.00092387764, 0.0292216428, -0.016908031, 0.0079189511, -0.0145180775, -0.0111864107, -0.0110294577, -0.0122993439, 0.00075667, 0.00463722367, -0.00965256, -0.00114236225, 0.0180780385, 0.0562459566, 0.00764071755, -0.00362595217, 0.00209210138, -0.00521509303, 0.00208853418, -0.0171220563, 0.00341727701, 0.00312477536, -0.00868944358, -0.00853249151, -0.00515445229, 0.00599628687, -0.0076763886, -0.0098451823, -0.0149104577, -0.0152957039, 0.0117928162, -0.0256260112, 0.0105229309, -0.0125490408, 0.00187094137, 0.00326567562, -0.0150531409, -0.000561817491, -0.0149247255, 0.0175073035, -0.00418776972]
06 Sep, 2021
jQWidgets jqxTabs enabledHover Property 06 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxTabs represents a jQuery Tab widget that is used for breaking the content into multiple sections. The <li> elements are used for tab title and <div> elements are used for tab content. The enabledHover property is used to enable or disable the tabs hover effect. It accepts boolean type value and its default value is true. Syntax: Set the enabledHover property. $('selector').jqxTabs({ enabledHover: Boolean }); Return the enabledHover property. var enabledHover = $('selector').jqxTabs('enabledHover'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtabs.js”></script> The below example illustrates the jQWidgets jqxTabs enabledHover property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href=" jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxtabs.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTabs enabledHover Property </h3> <div id='jqxTabs'> <ul style='margin-left: 20px;'> <li>GeeksforGeeks</li> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ul> <div> A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, ... </div> <div> HTML stands for HyperText Markup Language. It is used to design web pages using a markup language. HTML is the combination of Hypertext and Markup language. Hypertext defines the link between the web pages. </div> <div> Cascading Style Sheets, fondly referred to as CSS, is a simply designed language intended to simplify the process of making web pages presentable. CSS allows you to apply styles to web pages. More importantly, CSS enables you to do this independent of the HTML that makes up each web page. </div> <div> JavaScript is a lightweight, cross-platform, and interpreted scripting language. It is well-known for the development of web pages, many non-browser environments also use it. JavaScript can be used for Client-side developments as well as Server-side developments. </div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTabs').jqxTabs({ theme: 'energyblue', width: 550, height: 150, enabledHover: true }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtabs/jquery-tabs-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtabs-enabledhover-property/?ref=next_article
PHP
jQWidgets jqxTabs enabledHover Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.045606602, 0.00859531667, -0.0102188764, 0.0530705713, 0.0906842649, 0.0101380656, 0.0207756888, 0.0211870875, 0.00240228069, -0.00563838053, -0.00220392738, 0.00381646748, -0.00635098387, -0.0272405427, -0.00296244561, -0.014847124, -0.0542459972, -0.00750437239, -0.0183807537, 0.0213634018, 0.0239493437, 0.00105972169, -0.0630029365, 0.0199822746, -0.0279457979, 0.0215544086, 0.00107716944, 0.04363776, -0.0236701798, 0.00464294, -0.0177930407, -0.0121877184, 0.0301791113, -0.0227592234, -0.0159417409, -0.0273727775, -0.00597264292, -0.00675503723, -0.0310312975, -0.00509107206, -0.00485966, -0.00461355457, -0.00114512385, 0.00541431503, -0.020893231, 0.0193798672, -0.000767242222, -0.0217601098, 0.00188068463, -0.016000513, -0.00747866, 0.0148618165, 0.00962381624, 0.0544223115, 0.0169114694, -0.00930792, -0.00270348415, 0.0249043796, -0.0194827169, 0.0153687196, 0.0121362936, -0.0213780943, -0.00998379104, -0.0373786092, -0.0120775215, 0.0256390218, 0.00910222, 0.00166029192, -0.0379663222, 0.00946219452, -0.0189390816, 0.0101380656, 0.0288567543, -0.0124521898, 0.0287539046, 0.00284122955, -0.0174991824, 0.00104135566, -0.0202614386, 0.00439683488, -0.018219132, -0.0173669476, -0.0631792471, 0.0237436444, 0.0155597273, 0.0199381951, 0.0205112174, -0.0316777825, 0.0396413058, 0.0259034932, -0.0382601768, -0.0176754966, 0.00708195334, -0.0076035494, -0.0221862011, -0.00518290233, -0.0258300286, -0.00266675209, -0.0177783463, 0.0156772695, 0.00571184512, -0.00700114248, 0.00486700609, -0.0351452939, 0.035850551, 0.00771374581, 0.0282396562, -0.0182044394, -0.00956504419, 0.00101197, 0.010938826, -0.0264912061, -0.00188986771, 0.00187242, -0.0413162895, 0.0497499853, 0.00310570095, -0.00350240781, 0.00291653047, 0.00997644477, 0.0132602965, 0.00995440502, 0.0194974113, 0.0672344789, -0.0178518109, 0.0136790425, 0.0137451598, -0.0125109609, 0.0578310527, -0.0282984264, 0.0151042482, 0.03723168, 0.020246746, -0.00420582807, 0.029694248, 0.0326475091, 0.00711868517, -0.00325262942, -0.0643546805, -0.00362362387, -0.0426092632, -0.0142520638, -0.00246839854, 0.0416395329, 0.00124246406, 0.0259622633, 0.0189831611, 0.00140041218, -0.0185129903, 0.0175138749, 0.023200009, -0.000805351767, 0.0219658092, 0.0281221122, 0.0189390816, 0.0317659378, -0.00401482079, 0.0384952649, -0.0157360416, 0.00116899982, 0.0400233194, -0.0246692933, 0.0181456693, 0.0128121646, -0.0326475091, -0.00255288254, 0.032618124, 0.0185276829, -0.05348197, 0.046311859, -0.00296428218, -0.0438140742, -0.0352040641, -0.0101380656, -0.0159123559, 0.000891213131, 0.0429325029, -0.0271523856, -0.00627751974, -0.0317659378, -0.0149646662, -0.00843369495, -0.00678442279, -0.0122244507, -0.0140684023, 0.00198720791, 0.0135835391, 0.0203789808, -0.0370553657, -0.00961647, -0.0384658799, -0.00181089365, 0.0297236331, 0.0196149535, -0.00438214233, -0.0275344, -0.0194974113, 0.0183807537, 0.0013370493, -0.0270348415, 0.0146414237, -0.00128746091, -0.0116000045, 0.0163972192, 0.0222449731, 0.0207316093, 0.0284747407, -0.0425798744, 0.0333821513, 0.00852919836, 0.000315896265, 0.00527840573, 0.0304141976, 0.011049022, -0.0207463019, 0.0167645402, -0.018219132, -0.00942546222, -0.0207022242, 0.0144283772, 0.0200263523, -0.0116440831, 0.00793413818, 0.0295913983, -0.0904491767, 0.0331176817, 0.0243607443, -0.0431675911, -0.00608651247, 0.0303848106, 0.00705624046, -0.0336172394, -0.0332352258, 0.00573388441, 0.000323931396, 0.0278723352, -0.0132676428, 0.0114898076, 0.0038495264, 0.019850038, 0.00647954643, -0.00910956599, -0.00301570725, -0.0136423102, 0.0271964632, -0.017969355, 0.0170877837, 0.00435643, 0.00669259252, 0.0150601696, 0.00165753707, -0.0033169107, -0.0106082372, -0.00894059893, 0.027049534, 0.0303554256, 0.00685421377, -0.0187480748, -0.0265058987, -0.0204965249, 0.0494561307, 0.049632445, 0.0106449686, -0.000870092132, -0.0151777128, -0.0121877184, 0.0741107315, -0.0134586496, 0.0149646662, -0.0179987401, 0.0354979225, -0.0180428177, 0.0253010858, 0.0465469435, -0.00726928702, 0.0250953864, -0.0335290805, -0.0289742984, 0.0334409252, 0.00360709429, 0.0124595361, -0.0169996265, 0.0297236331, 0.0585069247, 0.0265352856, 0.0152364839, 0.0260945, -0.0123934178, -0.0223625153, 0.00704154791, -0.0227445308, -0.0220833514, 0.0238905717, 0.0091756843, 0.0412281342, -0.0135174207, 0.0157654267, 0.0390535928, 0.00374300336, -0.0155450338, -0.0314426981, 0.00777986366, -0.0189684685, 0.01670577, 0.00378340855, 0.0368790515, 0.0459592305, -0.000545931165, -0.013693735, -0.0211430099, 0.0266675204, 0.0387009643, -0.0357623957, -0.0459886156, -0.00825003441, -0.0157360416, -0.00855858438, 0.0173963327, -0.011893861, -0.0241991226, 0.0315308534, -0.0157948118, -0.0447838046, 0.0298852548, 0.0393180624, -0.00523800077, -0.00488537224, -0.0196737237, -0.00946219452, -0.0209813882, -0.0545692407, 0.0125109609, 0.0105421189, 0.0304729678, 0.0303848106, -0.0486333296, 0.0116587756, -0.00136643497, -0.00647587329, 0.0558034405, -0.0301791113, -0.00527840573, 0.019850038, -0.00698644947, 0.00589183252, -0.0359680951, 0.00266307895, 0.00823534187, 0.0530999564, 0.00790475309, 0.00128470594, 0.0239787288, -0.000905905967, -0.0125770783, 0.0222302806, 0.00110563682, -0.0267703701, -0.0276666339, -0.0152364839, 0.0120040579, 0.0301497262, 0.00139949389, 0.030649282, 0.00112675782, 0.0146340774, -0.023479173, -0.0201145094, -0.016000513, -0.0257859491, -0.00374851306, -0.052189, -0.031325154, -0.0199528895, 0.0459592305, -0.0570670255, 0.0021469926, -0.0303554256, 0.0106596621, -0.0153099485, 0.00169794238, -0.0453715175, 0.0358799361, 0.00834553782, 0.0346163511, -0.0103070335, 0.0155303413, 0.0161621328, -0.0246546, 0.00890386663, 0.0244048219, 0.00345832924, 0.0429912768, -6.6978726e-05, -0.0133558, 0.0049147578, -0.00871286, 0.0123273, 0.00614895718, 0.0182925966, -0.00625548046, 0.0094401557, -0.00223882287, 0.0266381353, 0.00583673408, -0.00287796184, -0.0220686588, -0.0410224348, -0.00316447229, -0.00146377506, -0.00910956599, -5.66191229e-05, -0.023479173, -0.00453641731, 0.0197618809, -0.0163531415, 0.0421978608, 0.0279751848, 0.062062595, -0.000445147394, -0.0507491, 0.046899572, 0.014002285, -0.0331764519, 0.0147516206, -0.0361444093, -0.0183072891, -0.0372610651, -0.0248603, 0.0565674677, 0.00784598105, 0.0287539046, -0.0156184984, 0.0184982959, -0.0405228771, 0.012092215, 0.0278870277, 0.0760501847, 0.0118057039, -0.0334409252, -0.0276225563, -0.0278870277, -0.028063342, -0.000987175736, -0.00730601931, -0.0133337602, 0.0152070988, -0.0313839242, 0.00396339595, 0.0142373703, 0.0242872797, -0.0155303413, -0.0362031795, -0.0328825973, -0.0252570063, -0.0141345207, -0.00789006, -0.00103951909, 0.0155891124, 0.0063913893, -0.017293483, -0.0394943766, 0.010152759, -0.0183366761, -0.0263736639, 0.0236114077, -0.00501026167, -0.0100646019, 0.0406110361, -0.013892089, 0.00116349, -0.00719214929, -0.00703787478, 0.0618275069, 0.0265499782, -0.000953198585, -0.000261257228, -0.00962381624, 0.000337705947, -0.00147571298, -0.00675503723, 0.0357917808, 0.00319202151, 0.0644722208, 0.00233616307, 0.0114089968, 0.000906365109, 0.0465469435, 0.00302121695, -0.0401114784, 0.026403049, 0.00569347898, 0.0138480105, -0.0220392738, -0.0122758755, 0.0108727077, 0.0063913893, -0.0252276212, -0.0175138749, 0.0359093212, 0.00101380656, 0.00148030452, 0.0211577024, -0.0133998785, 0.041081205, -0.00297530182, -0.00825003441, -0.0289449114, 0.0102041839, -0.0064868927, -0.032001026, 0.00290367426, -0.0401114784, -0.0265205931, 0.00574123068, 0.00952831283, -0.0221862011, -0.0637669638, -0.00907283463, 0.0217454154, -0.0161180552, 0.0383483358, -0.0061746696, 0.0011901207, 0.00474579027, 0.02738747, 0.0481337719, 0.00168600446, -0.0226563737, -0.0291653052, -0.00852185208, -0.0177342687, -0.0028173537, 0.00445193332, 0.0297089405, -0.0157360416, 0.0359093212, -0.023449786, -0.0231706221, -0.00333895, 0.008323499, -0.00416542264, 0.00256206561, -0.0510135703, -0.0103143798, 0.0109314797, 0.0108800549, 0.00135266036, 0.00151152688, -0.0039340104, 0.0284159705, 0.000415532122, 0.00852919836, 0.0193064027, -0.00211393367, 0.0156331919, -0.0407285765, -0.0140684023, 0.00285408599, -0.00633996446, -0.0239640363, -0.00180630211, -0.0312663838, 0.0531587265, 0.00564205414, 0.00824268814, -0.0279751848, 0.0181897469, 0.0200116597, 0.00684319437, -0.00954300538, -0.00951361936, -0.0112988008, 0.00211760681, 0.0126652354, -0.0058146948, -0.00139582064, 0.0351452939, -0.0108506689, 0.0143549135, 0.0140610561, -0.017572647, -0.037143521, 0.0327650532, 0.0243166648, 0.00901406258, -0.0242872797, -0.00466865255, -0.0209960807, -0.0374667645, 0.0152511774, 0.0168526974, 0.0234204, 0.0101013333, 0.00607549306, 0.0103143798, 0.0260504205, -0.0233322438, 0.0125623858, 0.0287539046, -0.00696808379, -0.0124374963, 0.0177930407, 0.0272552352, 0.0323242657, 0.0122979144, 0.0178371184, -0.0214956384, 0.0140684023, 0.0042462335, -0.00955769792, -0.0242725872, -0.00261716382, 0.0262561217, -0.0204818305, 0.0085512381, -0.0119893644, -0.0137598533, -0.00498087564, -0.0028669422, -0.0230971593, 0.0447250307, 4.93300904e-05, 0.0337347798, 0.00591387181, 0.0289889909, -0.0369378217, -0.0284894332, -0.0185423754, -0.00341241411, 0.00274572615, -0.0217454154, 0.00522330776, 0.00303774653, 0.0108653614, 0.0313839242, 0.0428737327, -0.0135688456, 0.0212017801, -0.00232881657, 0.0220833514, 0.0274315495, 0.01670577, -0.0160298981, 0.0744045898, -0.0102115301, 0.011049022, 0.00610120548, -0.000503689225, -0.00161529507, 0.000690563873, -0.0042939852, -0.00351526402, 0.00723622786, 0.0152070988, -0.0151630202, 0.0176020321, -0.01990881, -0.0140610561, -0.0249484573, 0.0296501685, -0.0181015898, -0.0422566347, 0.0498675294, 0.0132970279, 0.0162062123, 0.00690931221, 0.0247868355, 0.0207316093, 0.00412501721, 0.0136349639, 0.0171465538, -0.0190566257, 0.00667422637, 0.0175285693, 0.0159270484, -0.0200557392, 0.0216866452, 0.00323059014, 0.00603141449, 0.00647587329, -0.000586795679, 0.00389360497, 0.0138700493, -0.00358872837, 0.0102041839, -0.0222008955, -0.03593871, 0.00761089567, 0.013693735, 0.0293122344, 0.000157833332, -0.000562001485, 0.0196884181, 0.0369084366, -0.0152217913, -0.0025473726, -0.0109608648, -0.00337200891, -0.0155156488, 0.00336282584, 0.010292341, -0.018277904, -0.0215397161, 0.0277694836, 0.000986257452, 0.0168233123, 0.0150381308, -0.00171079859, -0.0387597345, -0.00386789255, 0.0227151439, -0.00793413818, -0.00534452358, 0.0514543578, 0.012569732, -0.0061269179, -0.0240375, -0.00484864, -0.0357036218, 0.00502495421, 0.00862470269, 0.015721349, -0.00631792517, -0.0282984264, 0.0173081756, -0.0467820317, 0.0296060909, 0.00387523882, -0.0139141278, -0.00107074133, 0.000317962433, 0.0363501087, 0.0208785385, -0.0116073508, -0.0434614457, 0.031325154, 0.0196149535, -0.00291836704, -0.00197067834, 0.00138755597, -0.00431602448, -0.0043417369, -0.0256096348, 0.00662280153, 0.00816187728, 0.00675871037, 0.020246746, -0.0126138106, 0.0323242657, -0.0370847508, 0.000873765384, -0.00767701352, -0.00656770356, -0.0790475234, -0.0117910113, 0.0219805017, -0.0235820226, 0.0181456693, 0.0205552951, 0.00492945081, -0.0121216, 0.0090434486, -0.0305317398, 0.0402290188, 0.000979829347, 0.00538492901, -0.0590946376, -0.014002285, 0.0189096965, -0.0173375625, -0.00556124328, 0.00528207934, 0.0465763323, 0.0161768273, 0.00475313654, -0.00749335298, -0.0136496564, -0.0124521898, -0.0109314797, 0.00789740589, -0.0196590312, -0.0109535186, 0.0217894949, -0.0274609346, 0.00437112246, -0.0307962112, 0.00651995186, 0.000184923279, 0.0187921543, 0.00861735549, -0.0013012354, 0.00174018426, 0.0213046316, 0.0151777128, -0.00812514499, -0.0137010813, -0.00159325579, -0.00325813913, 0.0265205931, -0.0329707526, -0.00405889936, -0.00804433506, 0.0162943695, 0.029694248, 0.0316190124, -0.0247868355, -0.0180575121, -0.0147369271, -0.0178518109, -0.0109975971, -0.0314426981, -0.00253818976, -0.0110049434, 0.00377973542, -0.00181915832, -0.0123934178, -0.0068836, -0.00692400523, -0.00313875987, -0.00733173173, -0.00635098387, 0.0165441483, -0.00804433506, -0.0138186244, -0.03593871, 0.0573608838, -0.0219511166, 0.00942546222, 0.00833819155, 0.00282653677, -0.00696441, -0.0153834131, -0.0213927887, 0.00976339821, -0.017939968, -0.00428663846, 0.0114089968, 0.01670577, 0.00230126735, -0.0080590276, 0.00507637952, 0.0132823354, -0.0128342034, 0.00685788738, -0.00651260512, 0.0502789281, -0.00172273652, 0.0322361104, 0.0322948806, 0.0227592234, 0.0317659378, -0.00883774832, 0.0272993129, 0.0337641649, -0.00515719, 0.0233469363, -0.0207316093, 0.0290771481, 0.0186452251, -0.0217894949, -0.00556491641, -0.00545472, 0.0176608041, 0.0328825973, 0.0193945598, -0.00604978064, -0.000864123169, -0.00628119288, -0.0302966535, 0.0238171071, -0.0208785385, -0.0101307193, -0.0104172295, 0.0182485189, 0.0060791662, -0.00494414382, -0.0405816473, -0.0169114694, 0.00562001485, -0.0126138106, 0.0470465, -0.00444826, -0.0277107134, 0.0123934178, -0.0148397777, 0.0315014683, -0.036467649, -0.0249337647, 0.016984934, -0.00312223029, -0.013524767, 0.00196516863, 0.0138039319, -0.0231559295, 0.0159564335, 0.0549806394, -0.0115191936, -0.0204377528, 0.0122611821, 0.0113943042, 0.00356117915, -0.0105788512, 0.00665953383, -0.00143898092, 0.033969868, -0.0432851315, 0.0154568767, 0.00736479042, -0.00614895718, 0.0168380048, 0.0321185663, 0.0229208451, 0.00545472, -0.0273727775, 0.0174257196, -0.0190713182, -0.0189096965, 0.0165588409, 0.0188950039, -0.0249043796, 0.0147956992, 0.0109608648, 0.0438434593, 0.0373198353, -0.0073868297, -0.0260945, -0.0292387698, 0.0149205877, -0.046400018, -0.00214515603, 0.0144651094, -0.00432704389, 0.0422860198, -0.015324641, -0.0383189507, -0.033881709, 0.0206287596, -0.0123860715, -0.012400764, -0.0109608648, 0.0477223732, 0.0480456166, -0.0296207834, -0.00342894369, -0.00588448578, -0.0016970241, -0.0148618165, 0.0308843683, -0.0160298981, 0.0196590312, 0.025756564, 0.0277400985, 0.01861584, 0.00185772707, 0.00384218, -0.0276225563, -0.0164266042, -0.00203312305, -0.0105127329, -0.000145665821, -0.00342343375, -0.0442548618, 0.00352077396, 0.0108212829, 0.0353509933, -0.0268291421, 0.00330405449, -0.0198059604, 0.00733173173, 0.0039817621, -0.0204083677, -0.0180428177, 0.0446956456, 0.00508005265, 0.016955547, -0.012907668, 0.0213634018, -0.0401114784, 0.00975605194, 0.00628486602, 0.0226122942, 0.000226017335, -0.0200998168, 0.0167351551, 0.0193798672, 0.0132088708, -2.82234705e-05, 0.00476782955, -0.0311782248, 0.0201732814, 0.0264471285, -0.0199969672, -0.00971932, -0.00624813419, 0.0110931005, -0.00266491552, 0.0157360416, -0.00980747677, -0.0315602385, -0.00524534704, -0.0490447283, -0.0346163511, -0.00622976804, 0.01670577, 0.0298999473, 0.0199528895, -0.0121069076, 0.0331176817, 0.00816187728, -0.00761824194, -0.0255655572, -0.0163825266, -0.00409195852, 0.00582204154, 0.0397294648, 0.00331323734, -0.00204230589, 0.00655668369, 0.0167204626, 0.0202908237, 0.0315896235, 0.00569715211, 0.0128635895, -0.0408755057, 0.0004811908, 0.00545104686, -0.0369378217, -0.0289302189, -0.00893325172, 0.000885244168, 0.0160152055, 0.0121583324, -0.00882305577, -0.00669259252, 0.00167131156, -0.0114383828, -0.0151483268, -0.0506609417, -0.0015923375, -0.0125770783, 0.00321222399, 0.0093446523, 0.00618936261, 0.0229208451, 0.0108874012, -5.22571827e-05, -0.0127313538, 0.00116899982, 0.0182338245, -0.025815336, 0.0108065903, -0.0187039971, -0.00694604451, -0.00507270591, 0.00197435147, 0.00118552928, -0.0114971539, -0.0427855775, 0.00459518842, 0.00549145229, 0.0126505429, -0.0144944955, -0.013723121, -0.0192182455, -0.012092215, 0.0156184984, 0.00300101447, -0.00965320133, 0.00232881657, 0.0100352159, -0.00725092087, 0.00639506243, -0.0143549135, 0.022803301, 0.0401408635, -0.0108212829, -0.000544094539, 0.0171906333, 0.00320304115, -0.0267703701, 0.00112583954, 0.0195121039, -0.00418746192, -0.00679544266, -0.0118057039, 0.0136716962, 0.00935199857, -0.0150748631, -0.0249778423, -0.0317071676, -0.000418516604, 0.0139141278, 0.0161180552, -0.00198720791, -0.00865408778, -0.0343224965, -0.0173522551, 0.0774019286, -0.019203553, -0.0119159007, 0.00270164758, -0.0307668261, -0.0357330069, -0.0061269179, 0.0115191936, 0.0122905681, -0.00495149, 0.00588081265, 0.00960912276, 0.00183293293, -0.00451070443, -0.00971197337, 0.00603876077, 0.00460988143, 0.0096678948, 0.0154127982, -0.0184542183, -0.0282396562, 0.0062224213, -0.000511494814, -0.00673299795, 0.0179840475, 0.00147020316, -0.0150013985, -0.0133337602, -0.0189978536, 0.00199639075, 0.0146855023, 0.0117983576, 0.0275931694, 0.0119012073, 0.000964218227, 0.0294444691, -0.00823534187, 0.00292755, -0.0171171688, 0.00116440828, -0.00828676671, -0.0113208396, -0.0119673256, -0.0111224866, -0.00545839313, -0.0151630202, -0.00480088824, -0.0185276829, -0.0288861413, 0.0294885468, -0.0183660612, -0.00207169168, -0.0236995649, -0.012400764, -0.00322324364, 0.00545839313, 0.0106155835, -0.0170437042, 0.032618124, -0.0334409252, -0.00428663846, -0.032706283, -0.0104392692, -0.0288420618, 0.0152511774, 0.0140977884, -0.00737213669, 0.0142520638, -0.0275490917, 0.0173375625, 0.0120114041, 0.00567878596, 0.0183072891, 0.014538574, -0.0172494054, 0.0115559259, 0.00231779693, 0.0216131806, 0.018924389, -0.0276519414, -0.0270642284, 0.00866143405, -0.000165409336, 0.0192476325, -0.0227151439, 0.0158682764, -0.0333233811, -0.0114971539, 0.0128415497, -0.01090944, 0.0067513641, 0.00158039958, -0.0268879142, 0.0182925966, -0.00103309099, -0.0138186244, 0.0127387, -0.000745202939, -0.00858797, -0.0156038059, 0.0285188202, 0.00986624788, 0.0164706837, 0.0286363624, -0.00190639717, -0.0114824614, 0.0161033627, 0.00241146376, -0.0220686588, 0.0255802497, 0.0189831611, 0.0016547821, -0.0068468675, 0.00537023647, -0.00184578914, 0.0120995613, -0.0265940558, 0.0165147614, 0.00703420117, 0.0449013449, -0.0205552951, 0.0124889212, -0.00861735549, 0.0160152055, 0.0201145094, -0.00804433506, 0.0106302761, 0.0069313515, 0.00878632348, 0.00420215493, -0.0240815785, 0.0137598533, -0.0231265444, 0.0081912633, -0.0314426981, 0.0189096965, -0.0200704318, -0.0012801144, -0.00613793777, 0.014847124, -0.0192770176, 0.00183201465, 0.00427561905, 0.0225829091, 0.0133558, 0.00812514499, -0.00307998853, 0.00415440323, -0.00499189552, -0.0189390816, -0.0275344, -0.00349322474, 0.0139802461, 0.00656403042, 0.0246839859, -0.0168233123, -0.00121399667, -0.0012534837, -0.000450198073, -0.000751171901, 0.0322361104, 0.0250806939, 0.0284894332, -0.0275344, -0.0106963944, -0.0232587792, 0.00660076225, -0.0391711369, 0.0163237546, -0.00467967242, 0.0199381951, -0.0224065948, 0.00672197854, -0.014002285, 0.00646852655, 0.00431235135, 0.0246839859, 0.00159141922, -0.0017934459, 1.04600458e-05, -0.0111371791, -0.00437479559, 0.00138296443, 0.0247427579, -0.00140408531, -0.00580734853, 0.00269981101, -0.011724893, 0.00150509865, -0.00573388441, -0.0271817707, 0.011107794, 0.0232734717, 0.0156772695, 0.00543268071, -0.000316814549, 0.00429765834, 0.00554655027, -0.00324344635, 0.0143034887, -0.0198794249, 0.0198206529, 0.025110079, 0.0248162225, 0.00521596149, 0.0178371184, -0.00224984251, -0.00611222535, 0.0232734717, -0.0234938655, 0.0250953864, -0.0148691628, 0.000248171389, -0.00986624788, 0.00327099557, -0.00114696054, 0.0106670083, -0.0114310365, -0.0118424362, 0.00693502463, -0.0162209049, -0.00268511823, -0.00789006, 0.00303223659, 0.0157654267, 0.00594325736, -0.00524167391, -0.0112326825, 0.0113722654, 0.0146046914, -0.00741254212, 0.0257712565, 0.0343224965, 0.0242432, 0.0102776475, 0.0155009553, -0.00418746192, -0.011754279, -0.00480823498, -0.00283939298, -0.0116440831, -0.00337568205, -0.0262120422, 0.0153834131, 0.0129884779, -0.000112377333, 0.0193357896, -0.028371891, -0.0125770783, 0.0200704318, -0.00264838594, 0.0155744199, 0.0199675821, -0.0199381951, 0.0306198969, 0.00147846795, -0.0246252138, -0.0283278134, 0.0222449731, -0.0568907112, 0.0024096272, -0.00794148445, -0.0328825973, -0.0180281252, -0.023846494, -0.00157397147, -0.0138259707, -0.0234204, -0.00457682228, -0.0169702396, 0.00715541746, -0.00940342341, 0.0185129903, -0.0105200801, 0.0146414237, -0.0415807627, 0.0248162225, 0.00481558125, 0.0252570063, -0.0106743546, -0.0229649227, 0.032618124, 0.0165000688, -0.00314059644, -0.00807372, 0.00944750197, 0.018557068, 0.0155303413, -0.000706175051, 0.0139435139, 0.0298852548, -0.00464661326, 0.00949892681, -0.0117028542, 0.0150381308, 0.0315602385, 0.0131721394, -0.0263442788, 0.0123052606, -0.0238758791, -0.0116514293, -0.0146855023, 0.0162943695, 0.0209960807, -0.00552818459, 0.0054069683, -0.00368055864, 0.000389360503, 0.00835288502, -0.00106798648, -0.0146561172, -0.00871286, -0.0205112174, 0.00718480302, 1.95498114e-06, -0.0178518109, 0.00274756271, 0.0103070335, 0.00441152789, -0.00601304835, -0.00974135846, -0.0264177416, -0.0242432, -0.00647954643, 0.0341461822, -0.0041617495, 0.00130307209, -0.00324528292, 0.0185129903, -0.00583673408, 0.00593958423, -0.00585877337, -0.0181456693, 0.031912867, -0.000972482958, 0.0200998168, 0.00263185659, -0.0114530753, -0.010402537, 0.0120775215, -0.00631792517, 0.00511678448, -0.0102115301, 0.00698644947, 0.00278062164, -0.00736479042, -0.000234396852, -0.00242799334, -0.0145018417, -0.025110079, 0.0138039319, -0.00520126848, 0.0366145782, 0.0153687196, 0.0229502302, 0.0207316093, -0.00385319954, 0.00619670888, 0.0129664391, 0.0104539618, 0.0178518109, 0.020584682, 0.00387523882, 0.00503597409, 0.0120554827, -0.0116881616, -0.0166763831, -0.00982951559, 0.00218188809, -0.00592856435, -0.0266675204, 0.00346567575, 0.00273103337, 0.0108506689, 0.0243460499, 0.02181888, 0.0119452858, 0.023141237, -0.0066191284, -0.0119305933, -0.019600261, 0.00112032972, -0.0210401602, -0.0115265399, -0.00251798704, -0.00023393771, 0.00772843836, 0.00421684748, -0.0182925966, 0.00636935, 0.0201585889, 0.027784178, -0.003754023, -0.00060791662, -0.0289155263, -0.00476415642, -0.0334996954, 0.0101601053, -0.0211283173, -0.00102941773, 0.00777251692, 0.0207169168, -0.0207169168, 0.0132749891, 0.0533644259, -0.00314977951, -0.00300652417, -0.00681748195, 0.0137084275, 0.0239346512, -0.00512413122, 0.0146340774, -0.0156772695, -0.0348808244, -0.0127827786, 0.0312369969, 0.019262325, 0.0309725255, 0.0127974711, 0.00123511755, -0.00444826, -0.00364566315, -0.0269907638, -0.00225167908, 0.0023673852, -0.0208050739, 0.0233910158, 0.0110196369, -0.027725406, 0.00699012307, 0.00938873086, -0.0161474403, 0.0192917101, 0.00289081805, 0.00475313654, 0.0124668824, -0.0194680244, 0.000900396146, 0.00434541, 0.00322875357, -0.0246839859, 0.0115412325, 0.0158095062, -0.00551716471, -0.0175285693, -0.00170988031, 0.0175285693, -0.0111518726, 0.00376504241, -0.00638771616, 0.00896998402, -0.0167939272, -0.00627384661, 0.0156772695, 0.000505066651, -0.00573388441, -0.00721051544, -0.0179105829, 0.00676238351, 0.0114236902, 0.0137157748, -0.0302966535, -0.00100921502, 0.0142373703, 0.013186832, 0.0142594101, -0.00491843093, 0.00880836323, -0.00368974172, 0.0133117214, 0.0107625118, -0.0459004603, -0.0151630202, -0.00716276374, 0.01060089, -0.00239493442, -0.0142814489, 0.011386958, -0.00412869034, 0.00144632731, 0.0132309105, 0.00899202377, -0.0126578892, 0.00402216753, 0.0170437042, 0.0244489014, 0.00975605194, 0.00678809639, 0.00302305375, -0.00193394627, 0.0209813882, -0.00505434, 0.0106963944, 0.00256941188, 0.00210291403, 0.0104245767, -0.000607457478, 0.00876428466, -0.0237583369, -0.0158682764, 0.00827207416, 0.00601304835, 0.00790475309, -0.00560899498, 0.0199675821, 0.0247574504, -0.0080590276, -0.0115706185, 0.0110931005, 0.0240081158, 0.02418443, -0.0149646662, -0.00882305577, 0.0168233123, 0.0142226778, -0.0107918978, -0.0134659959, -0.00261900038, -0.0139288204, 0.0178518109, 0.0105494652, 0.00910956599, 0.0184836034, -0.0445193313, 0.0214515589, 0.00854389183, -0.0311488397, -0.013892089, 0.0157948118, -0.00413603708, 0.0116367359, 0.0227886084, -0.00199822756, 0.00388258533, -0.0209666956, -0.0272111557, -0.00624446059, -0.00635833, 0.00276592886, 0.0167792328, -0.00846308097, 0.0177048836, -0.0282690413, -0.00829411298, -0.00735377101, 0.00698644947, -0.012878282, -0.00871286, -0.00840431, -0.0152952559, -0.0126431966, 0.0154421842, -0.0374667645, 0.0100205233, 0.0139288204, -0.00139214739, 0.00719214929, -0.00020879916, -0.0248162225, 0.0070268549, 0.0149646662, 0.00109278061, -0.000138434189, 0.00472742412, 0.0197912678, 0.0252863932, 0.0113796117, 0.0104686553, 0.00329670799, -0.0060608, -0.00142428803, -0.016955547, 0.0322361104, 0.0134219173, -0.00384585327, 0.0121142538, -0.000602865941, 0.000718572119, -0.0132749891, -0.0252129287, 0.027049534, 0.00707827974, 0.00732071185, 0.0191447828, -0.001142369, 0.0167939272, 0.00150785362, 0.000515627151, 0.00379810133, -0.0101601053, 0.0138773955, 0.0021873978, 0.00302489032, 0.000368698675, -0.00524167391, -0.0157360416, -0.00110655522, 0.00532983104, -0.00880836323, 0.00344363647, -0.00577061623, -0.00875693746, -0.0211430099, -0.00680278894, -0.00913160574, -0.0077357851, -0.00811045244, 0.00960177649, -0.0237730294, -0.00343445339, 0.0201732814, -0.0205552951, 0.00372280064, 0.00287245191, 0.0266822129, 0.00410297792, 0.00338486512, 0.0113943042, 0.00339772133, -0.00747866, 0.00914629828, 0.0209960807, -0.00220943708, 0.0122391433, 0.020584682, 0.00459151529, 0.0166763831, -0.012848896, -0.00753743155, -0.00376504241, -0.00660810899, 0.020187974, -0.00467232615, 0.0177636538, 0.0128121646, -0.00566409342, -0.0171612483, -0.0170290116, 0.00149316073, -0.0091756843, 0.012533, 0.00676605711, -0.0293856971, -0.0178077333, -0.0161621328, 0.00354464981, -0.018219132, 0.00268144486, -0.0151924053, 0.00134898722, 0.0030304, 0.0225976016, -0.0090801809, 0.000858613348, 0.0117102, -0.0146561172, 0.0146634635, 0.0146561172, -0.0105127329, -0.00167865795, 0.0142153315, 0.00149316073, 0.00142153318, 0.0254333206, 0.0199381951, -0.0117689716, -0.00035171007, 0.0126652354, -0.0197178032, -0.00973401219, 0.0267556775, 0.00861735549, -0.0377018489, -0.00328936148, 0.0114677688, 0.0171465538, 0.0264177416, 0.0165588409, 0.00782394223, 0.000813616498, -0.00713337818, -0.00907283463, -0.0145238815, -0.00352077396, 0.0127460463, 0.00388258533, 0.0143475672, -0.0250953864, -0.00951361936, -0.0258006435, -0.0116881616, 0.0221862011, -0.00565307355, 0.00444458658, 0.00945484824, -0.00608283933, -0.0216719527, 0.00128837919, 0.0101013333, 0.0148030454, 0.0296795554, -0.0100131761, -0.0359974802, 0.00614895718, 0.00176406011, 0.0253157783, 0.0135321142, 0.00717378361, 0.010152759, -0.00619670888, 0.00572286453, 0.0143989921, -0.0163531415, 0.00360893109, -0.0168673899, -0.0100572547, 0.0128195109, 0.0161915198, -0.00320855086, 0.00365300965, 0.00916833803, 0.00580000225, -0.0205699876, 0.00347853196, -0.01090944, -0.0029973411, 0.0145899989, -0.0105494652, 0.030649282, -0.0168820824, -0.0129664391, 0.0227151439, -0.0117028542, -0.0217160303, -1.49798188e-05, -0.00880836323, -0.00570817199, -0.0131280608, -0.0067146318, -0.0121509861, 0.0321773402, 0.0233910158, -0.0163678341, -0.0196884181, 0.0109167863, 0.0143989921, 0.00738315657, -0.00188803102, -0.0151777128, 0.019541489, -0.00143806264, 0.0269760713, 0.00899937, -0.0335584655, 0.0161915198, -0.0145532666, -0.00366586586, 0.02181888, -0.00978543703, 0.00932261255, 0.0188950039, 0.000207995647, 0.0176020321, -0.0212458596, 0.00947688706, 0.00844104122, -0.0105935438, 0.0166323055, -0.0297530182, 0.0162355974, 0.00421317434, -0.0126064643, 0.0155450338, -0.00211393367, 0.0144210309, 0.0183219817, -0.00922710914, -0.0107772043, 0.00072408194, -0.00456580287, 0.0150601696, -0.0030469296, -0.0147369271, 0.0139067816, 0.0225682165, -0.0196443386, 0.0180134326, 0.0143622598, 0.0175873395, -0.00997644477, -0.0165588409, 0.0151336342, 0.0306198969, 0.00204781583, -0.00721051544, 0.0177783463, 0.0177195761, -0.00342159718, -0.00223882287, 0.000572561927, -0.00122501631, -0.00440050801, -0.00105421187, -0.00140775857, -0.0118424362, 0.0194386393, -0.0125109609, 0.00183752447, 0.00422419421, 0.00291469391, 0.0205993745, -0.00489639211, 0.0138186244, 0.0249043796, 0.00376871577, -0.0256831, 0.0134145711, -0.00561266812, -0.00784598105, -0.0225829091, 0.0147663131, -0.0280045699, -0.00387156568, 0.00217270502, -0.016309062, 0.0101454118, -0.00333895, -0.00610487862, -0.00908752717, 0.0059469305, 0.0103584584, -0.0284012761, -0.016955547, 0.0186893046, -0.00369157828, -0.00606814679, -0.00547308614, 0.00520126848, 0.0138259707, 0.0160152055, -0.0102776475, 0.0266381353, 0.00628119288, -0.0196296461, -0.0189831611, -0.0144798029, 0.0104466155, -0.0387303494, -0.000806729251, 0.00521596149, 0.00839696359, -0.0149132414, 0.0214956384, -0.0065346444, 0.0197912678, 0.00985155534, 0.00616365, -0.019262325, -0.0309137534, 0.0106376223, 0.0109755583, 0.0192329399, 0.000682758342, 0.0061269179, -0.00626282673, 0.00465396, -0.00365300965, 0.00374851306, 0.00149867055, -0.00449601188, 0.0124962684, -0.00267777173, -0.00202394, -0.00683584809, 0.019203553, -0.0196443386, -0.0198941175, 0.00153907586, 0.00759620266, 0.00370259793, -0.0104172295, -0.0152511774, -0.0164412986, -0.00792679191, 0.00983686186, -0.000168623403, -0.009925019, 0.025168851, 0.00131776487, -0.00371545414, 0.014509188, 0.00977074448, -0.0223184377, -0.00336098927, 0.0164266042, 0.0042095012, 0.00595427677, 0.00158682768, -0.0223184377, 0.0311782248, 0.0127827786, -0.00823534187, -0.00626282673, -0.00971932, -0.0162796769, -0.00285041262, 0.0063913893, 0.0160445906, 0.0189390816, 0.0200116597, -0.0198794249, 0.0229502302, 0.0299440268, -0.0320597962, -0.000441703771, -0.00710399263, 0.0184836034, -0.0197912678, 0.00629221275, -0.0127460463, 0.0160886701, 0.0224065948, -0.0224065948, -0.0173522551, -0.0158095062, 0.0108139366, -0.00343996333, -0.0059946822, 0.0258888, -0.000392574555, 0.00751539227, 0.0020147569, -0.00166304689, -0.000369157817, -0.0131647922, 0.0186746102, -0.0180575121, -0.0201585889, 0.0138039319, -0.00731336558, -0.0152658699, -0.00476048281, -0.0111445263, -0.0110122906, -0.0111812577, -0.0068946192, -0.00130766351, 0.0127313538, 1.29495083e-05, 0.000737856491, 0.00054960436, -2.68675376e-06, -0.0198647324, 0.0112620685, 0.0112032974, -0.0102556087, 0.0204671379, -0.0122832218, 0.0117689716, 0.00200557383, -0.000609294104, 0.0399645492, -0.0103511121, 0.0160886701, -0.000186530306, -0.0142153315, -0.00499189552, 0.0127166603, -0.0108212829, -0.00578163611, 0.00570817199, 0.0119159007, -0.00484129367, -0.0166323055, 0.00766232051, -0.00360709429, 0.0156772695, 0.0120260967, 0.0155891124, -0.0293416195, -0.000336558063, -0.00327650527, -0.0246986784, -0.0172787905, 0.0237583369, 0.0106376223, -0.0061746696, -0.0110269831, -0.00144908216, -0.00616365, 0.00879367, -0.00102298963, 0.0055869557, -0.00765497424, 0.00437112246, -0.000884784968, 0.0142226778, -0.0192182455, 0.0306198969, 0.0159417409, 0.0269907638, -0.0114310365, 0.0137818921, -0.0138259707, 0.0015436674, 0.0136496564, -0.000883407542, -0.000149224245, 0.0177930407, -0.00314610638, -0.0130252102, -0.00913895201, -0.00377606205, -0.00252166018, -0.00877163094, -0.00652729813, 0.000524810224, 0.0194974113, 0.00554287713, 0.00223331293, -0.00555022387, -0.0229061507, 0.0114310365, 0.00150326209, -0.0092124166, -0.00337200891, 0.0166176129, -0.00318467501, -0.00420582807, -0.0139728989, -0.00711868517, -0.00412501721, 0.00884509459, -0.0187480748, 0.00256390218, 0.00877897721, 0.0134292636, 0.00861000922, 0.0209520031, 0.0155744199, 0.00733540487, -0.00102574448, -0.00788271334, 0.0182044394, -0.0174110252, 0.0217013378, -0.0014334711, -0.0289302189, -0.00451437803, -0.0188950039, 0.00307080545, -0.00628119288, 0.00557226315, -0.0123934178, 0.0040772655, 0.00688727293, -0.0288567543, -0.0065713767, 0.0054069683, -0.00977809075, 0.00909487344, -0.0178518109, -0.0330589116, 0.00860266294, -0.00908752717, -0.00880836323, 0.00363831664, -0.0327356681, -0.0181750543, 0.00798556302, 0.00632894458, 0.0150895556, -0.00944750197, -0.00119930378, 0.00795617793, 0.010402537, 0.0124668824, -0.00270164758, 0.00947688706, 0.0138700493, 0.0357330069, -0.0150895556, 0.0095723914, -0.0184542183, 0.0277400985, -0.00825003441, 0.032706283, 0.0037521862, 0.0209079236, 0.0170583967, -0.00221494702, 0.000534452382, 0.0016961057, -0.00104411063, -0.0234644804, -0.00754477782, -0.00346383918, 0.0110343294, 0.0115412325, -0.000877897721, 0.00313508674, 0.00696808379, -0.0156478845, 0.00104502891, 0.00182925968, -0.00679176953, -0.0342637226, -0.00345649268, -0.000453182554, 0.025168851, 0.00214148266, 0.015721349, -0.017293483, 0.00960912276, 0.00332793035, 0.0199381951, 0.00519759534, 0.00910956599, -0.00620405562, 0.0187333822, -0.000216375163, -0.00567143969, -0.0171759408, -0.0191153958, 0.0277400985, 0.0119305933, -0.0240228083, -0.0103437658, -0.00472007785, 0.0155009553, 0.0061269179, -0.00587713951, -0.00235452899, 0.00764762796, -0.00916099083, 0.00525269331, 0.00636200374, -0.0132823354, -0.00656035682, -0.0290330686, -0.00593958423, 0.0160298981, -0.00392299052, 0.0134513034, 0.0215544086, 0.0180868972, -0.00824268814, 0.00602039462, 0.00666320696, -0.012848896, -0.00465396, 0.00113777746, 0.00591019867, -0.000514249725, 0.00103768241, -0.00548410602, 0.0115926573, 0.0174991824, -0.00255104597, -0.0134439571, 0.0120701753, -0.0135100745, 0.00610487862, 0.00238024141, -0.00799291, -0.00133062107, 0.00297713839, -0.0109829046, 0.0170877837, -1.80360457e-05, -0.0216719527, 0.00215984881, 0.00737213669, 0.0253892429, -0.00784598105, -0.00331874727, 0.000503230083, -0.0061269179, -0.011893861, 0.0145753063, 0.00408461178, 0.00726194074, -0.0119893644, 0.00764762796, 0.000469712017, -0.00506535964, -0.00924180169, 0.00813983846, 0.0132309105, -0.00208271132, 0.0174991824, -0.00956504419, -0.000800301088, -0.0057669431, 0.00404788, 0.00933730509, -0.0118203973, -0.0221862011, 0.0019670052, -0.022494752, 0.00243350305, 0.0047861957, 0.00359240151, -0.00498454878, -0.0140096312, 0.00268144486, -0.00516821, -0.0124521898, 0.0102482624, 0.00543635385, 0.00045731492, -0.0104833478, -0.0106963944, 0.0103804981, 0.00190088735, -0.0302378833, -0.000625364366, -0.0156184984, 0.00622609491, 0.0100205233, -0.0112620685, 0.00250145746, 0.00375769613, -0.0147148883, -0.0032195705, 0.0110563692, 0.0115779648, -0.00570817199, 0.0223331302, 0.0058991788, -0.00494047, -0.00471273111, 0.0102703013, -0.0158976633, 0.00134898722, 0.0129737854, -0.0174991824, -0.0078312885, 0.00434541, -0.0202908237, 0.00355750602, -0.00271083065, -0.00969728, 0.011078408, 0.0208197664, 0.00365851936, 0.000452264241, 0.00456580287, 0.00545104686, -0.0153687196, -0.0079635242, -0.0221715085, 0.00477150269, -0.00472375099, 0.00412134407, 0.0060461075, -0.0187921543, 0.0279311053, 0.0108065903, -0.0152364839, 0.000486700621, 0.00458416902, 0.0173963327, 0.00690196594, 0.0132382568, -0.00618936261, -0.000895804609, 0.00254369946, 0.0101821441, -0.00226269872, -0.0163237546, -0.00379442819, -0.00276776543, -0.00288530812, 0.0253892429, -0.00744927442, -0.0124742286, -0.00253818976, 0.00730234571, -0.0188068468, 0.0112253362, 0.0129223606, -0.0188362319, -0.0173228681, 0.00874959119, -0.0435202196, -0.00435643, 0.0158535838, 0.0337935537, 0.0235820226, -0.00503597409, -0.00761089567, 0.00650158571, -0.00356852566, 0.00860266294, -0.0154421842, 0.0211283173, -0.00293673319, -0.00573021127, 0.0105053866, 0.00336098927, -0.0218482669, -0.000109737215, -0.00193761941, -0.0121803721, -0.0153099485, -0.0108727077, 0.00189170428, -0.0010523753, -0.00741988886, 0.00846308097, 0.0186305325, 0.0109829046, -0.000554655038, 9.00510931e-05, -0.016646998, 0.0216278732, 0.000622609456, 1.03524317e-05, -0.0357330069, -0.000790199789, 0.00660076225, -0.00087514281, 0.00244084955, 0.017969355, -0.00812514499, -0.00341057754, 0.00237656827, -0.013723121, -0.00119746721, -0.020584682, 0.0109314797, 0.0229502302, -0.0135835391, -0.00492210453, 0.0173522551, 0.0122905681, 0.0197618809, -0.00353363017, -0.00867612753, -0.00157397147, -0.0281368047, 0.00411767093, -0.0109829046, -0.0172053259, 0.0135982316, -0.0112841083, -0.0158241987, 0.00918303058, 0.0243166648, -0.0154862627, 0.0130619425, 0.0170583967, 0.0118424362, -0.0151630202, 0.00222780323, 0.00753008481, -0.00990298, 0.0110931005, -0.0276225563, 0.00170896202, -0.00570817199, 0.00926384144, -0.00301754382, 0.014340221, -0.0142667564, 0.0129884779, -0.0114898076, 0.00569347898, 0.0257124864, 0.00858797, 0.0148618165, 0.00830880646, -0.000859990832, -0.0037595327, 0.0371141359, 0.0211283173, 0.00319018471, -0.00735744415, 0.008323499, 0.0133925313, 0.00854389183, 0.0336760096, -0.00717011048, -0.00307998853, 0.011893861, 0.0114383828, 0.0212458596, -0.0106376223, -0.0189096965, 0.00877163094, -0.0560972951, -0.00101656152, -0.0169408545, -0.00624078745, -0.0203789808, -0.00149132416, 0.0103584584, -0.0103364196, 0.0387891196, 0.00737213669, 0.00841165613, 0.012371379, -0.00474946341, 0.00860266294, -0.0243460499, 0.00669626566, 0.0120040579, 0.00572653767, 0.0124815749, 0.0118718222, 0.0111739114, 0.00918303058, -0.00552083785, -0.00891855918, 0.0169114694, 0.0196296461, 0.00260798074, -0.0102849938, -0.0140830958, -0.00289081805, 0.0137084275, 0.0145238815, 0.00856593065, -0.0302084964, 0.0177489612, 0.000427929219, 0.000515168, -0.0213927887, -0.00887448061, 0.00655301055, 0.00139306579, 0.00621874817, -0.0106302761, -0.0193064027, -0.0227298364, -0.00231228699, 0.00361444079, -0.0152217913, -0.00336833554, 0.0070746066, -0.017293483, -0.00968258735, -0.00394135667, 0.00777251692, 0.00835288502, 0.0158241987, -0.0133043751, -0.011724893, 0.031912867, 0.0012470556, 0.015662577, -0.0163678341, 0.00902875606, -0.00470905798, 0.0271964632, -0.00239860755, 0.011754279, -0.0184982959, 0.00808841363, 0.0343518816, 0.000533074897, -0.00452907057, -0.0158682764, -0.00797087047, -0.000237610919, 0.0135321142, -0.000546390307, 0.00905079488, 0.00776517065, 0.0286657475, 0.00307447859, 0.0100278696, 0.0131794857, 0.0090434486, 0.0146046914, -0.00230494072, -0.014171253, -0.00352077396, 0.0213927887, 0.000272047269, 0.0218482669, 0.0064024087, -0.0199235026, -0.0176167265, -0.00659708912, -0.00370994443, -0.0134145711, 0.00165386382, 0.012768086, -0.00568980584, 0.00649423897, 0.0123126069, -0.00104778376, 0.0132456031, 0.0340580232, -0.0319422521, 9.48721863e-05, -0.00775047764, -0.00257492182, 0.00607549306, 0.017293483, 0.00824268814, 0.00487067923, 0.0110857543, -0.00112032972, -0.00247941818, 0.00391197111, -0.00519024907, -0.00861735549, -0.0043894886, 0.00138755597, -0.0108874012, -0.00274756271, -0.0233616289, 0.00167773967, -0.00585877337, -0.0067146318, -0.00841165613, -0.0124889212, -0.0125844255, -0.00437479559, -0.000636384, 0.0121436398, -0.00905079488, -0.00930792, -0.0018825212, -0.00979278423, 0.0166910756, -0.0249925368, 0.00391931739, 0.000418516604, -0.00380912097, 0.00251064054, 0.0113649182, -0.0388772786, -0.0242725872, 0.00148214109, -0.00574857695, 0.0167498477, -0.0124742286, 0.000961463316, -0.00392666366, 0.016646998, -0.0178958904, -0.0135982316, -0.0200557392, -0.00227188179, 0.00493679708, 0.013833317, 0.0168673899, 0.00861735549, -0.014002285, 0.0203349032, -0.00341976061, 0.0228767656, -0.00578163611, 0.00962381624, 0.0182632115, 0.00330405449, 0.0041139978, 0.00481925439, 0.0274903197, 0.00279164128, -0.0199675821, -0.00534452358, -0.025066, 0.00668157311, -0.0191741679, 0.0214956384, -0.00563838053, -0.00735744415, -0.0045217243, -0.01121799, -0.00705624046, 0.000157259405, -0.0373786092, -0.0163237546, 0.00814718474, 0.00329303485, -0.000753926812, 0.00230126735, 0.0241991226, -0.00260247081, -0.000273195154, 0.019203553, -0.00046259517, 0.000811779872, -0.0278723352, -0.00567878596, -0.00244452269, 0.0150087448, -0.00676973024, -0.0121950647, -0.0067146318, 0.0130839823, -0.0129590929, -0.0176901892, 0.00634731073, -0.00586612, 0.00193945609, 0.0156772695, -0.00933730509, -0.00649791257, 0.00797087047, 0.000569807, 0.00963116251, -0.023141237, -0.00101564312, -0.00708929962, -0.00945484824, 0.0299881045, 0.0188362319, 0.0194386393, 0.00627384661, 0.0161033627, -0.00870551262, 0.0137010813, 0.0289889909, -0.0201732814, 0.0218482669, 0.000566592964, 0.00827942, 0.0125770783, -0.00081683055, -0.00332058384, 0.00087514281, -0.00536288973, -0.00419480819, -0.00405889936, 0.0090801809, 0.00624078745, -0.00037535638, 0.00918303058, 0.0029018377, -0.022524137, 0.0128562432, -0.0120701753, 0.0157507341, -0.00836757757, -0.0063913893, -0.00174293923, 0.0100058299, -0.0134733422, 0.00830145925, 0.0158241987, -0.00726928702, -0.00227555493, 0.0231706221, -0.00257492182, 0.00211577024, -0.00508739892, -0.00297530182, 0.0169261619, 0.0104833478, 0.0139728989, -0.0175579544, -0.013216218, 0.0126431966, -0.00945484824, 0.00145551038, 0.00499189552, -0.015354027, 0.00132511125, 0.00425358, 0.00112675782, 0.0265352856, 0.0193064027, 0.00682482822, -0.00797087047, 0.00101747981, -0.0107845515, -0.012878282, -0.0241991226, 0.000339312974, -0.007339078, -0.00201292033, -0.019600261, -0.0119673256, 0.00690563908, -0.0124228038, 0.00339221139, -0.0211430099, 0.0128635895, 0.0144504169, -0.00988828763, -0.00643179473, 0.0166763831, -0.0188362319, -0.00177048834, -0.0024996209, 0.00901406258, -0.0180428177, -0.00204965239, -0.00147020316, 0.00858797, -0.00997644477, 0.000385687279, -0.0260063428, -0.00287428848, -0.0138112782, -0.0287539046, -0.0060461075, -0.0121216, 0.011923247, -0.00565674668, 0.00318834814, 0.00314059644, -0.0155156488, 0.0110269831, -0.00764028123, -0.0285335127, 0.00905814115, -0.00195965869, -0.00418011565, 0.00456212973, 0.0281074196, 0.0369965918, 0.00234901928, -0.00539962202, -0.0203936733, 0.00611589849, 0.00299550453, -0.00951361936, 0.00614895718, -0.0140904421, -0.00678442279, -0.00345465611, -0.013892089, 0.000704797567, -0.0214368664, -0.0255508646, -0.00584040722, 0.0138994353, -0.0187186897, -0.00860266294, -0.0107184332, -0.0154127982, -0.00239860755, 0.0423154049, -0.00277878507, -0.00383850676, -0.0165441483, -0.0113649182, 0.0275344, -0.00135633361, -0.00123879081, -0.0251541566, -0.00844104122, 0.00826472789, -0.012400764, -0.0117322402, 0.0115779648, 0.00538492901, -0.0239787288, -0.000333573582, 0.0151630202, -0.00163641607, 0.0102409152, -0.0262708142, 0.000191695755, -0.010769858, 0.000459151517, 0.000184119766, 0.0655301064, 0.0309137534, -0.0109535186, -0.00815453101, 0.0203349032, -0.00112951279, -0.0089479452, 0.0380250923, -0.012231797, 0.0215397161, 0.00882305577, 0.0280192625, -0.0141124809, 0.00523065403, 0.000333803153, 0.00188803102, 0.0130105177, -0.000551441, 0.0144210309, -0.0146634635, -0.0134292636, -0.0241109654, 0.00173375616, -0.0102041839, 0.00588448578, -0.00794148445, 0.0174404122, -0.0015234648, -0.0201732814, 0.00989563391, -0.0214956384, 0.0195708741, 0.0129003217, 0.00886713434, -0.00918303058, 0.00434541, -0.00837492384, 0.0101601053, 0.00325630256, -0.0214809459, 0.015721349, 0.0176461115, -0.0103731509, -0.022465365, 0.00480823498, -0.00747866, 0.00274388958, -0.00757416338, 0.00138296443, -0.0244782865, 0.00816187728, 0.00370627106, -0.0168967769, -0.0164706837, 0.00967524108, 0.00154183083, 0.0166029185, 0.0056347074, 0.00849246699, 0.0134659959, 0.00597264292, -6.52569142e-05, -0.00139490236, -0.00258594146, 0.000763568969, -0.0261973497, 0.00257492182, 0.0133411065, 0.00485966, 0.00895529147, -0.0204524454, -0.0100866407, 0.000509199046, -0.00506535964, 0.00412501721, 0.00114879711, 0.00582204154, -0.00651260512, -0.00544002745, -0.0231118519, -0.016000513, -0.00392299052, -0.000850348617, -0.0177930407, -0.00471273111, -0.0294003915, -0.0241991226, 0.00371912727, 0.00356117915, 0.00715541746, 0.0084557347, 0.0298411753, -0.00229575764, -0.000603325083, 0.0140830958, 0.0121583324, 0.00515719, 0.0225682165, -0.0059946822, 0.00591019867, 0.0210548528, -0.00847042724, 0.0111151403, -0.00533717731, 0.0144357244, 0.0230383873, -0.0158829689, 0.0079635242, 0.0288420618, 0.00730601931, -0.00831615273, -0.00364015321, 0.0171171688, 0.0329707526, 0.0124448426, 0.00135541533, -0.0146193849, -0.000915548124, 0.0164853763, 0.00382381398, -0.0152070988, -0.000369846559, 0.0048339474, 0.00825003441, 0.00225167908, 0.0107257795, 0.0193651747, 0.0200116597, 0.0169996265, 0.00762558868, -0.00714439759, -0.0243754368, -0.00524902, 0.00495883636, 0.0132970279, 0.024463594, 0.0142153315, 0.0160886701, 0.0216572601, -0.00433071703, -0.00537758274, 0.0130839823, -0.00445927959, 0.00125623855, 0.00177599816, -0.00580734853, 0.0214515589, 0.00684319437, 0.0321479551, -0.00825003441, 0.0216572601, -0.0232147016, -0.00997644477, -0.023449786, -0.00405155309, -0.00215617567, 0.00788271334, -0.0237583369, -0.000106293577, -0.0119305933, 0.00938873086, -0.00681748195, 0.0128635895, -0.00295326253, 0.00610855175, -0.0204083677, 0.000368239533, -0.0194974113, -0.0235526375, -0.00296060904, 0.0154568767, 0.0121362936, -0.00289265462, 0.0069313515, -0.0177195761, -0.0246692933, -0.00161988661, -0.0119893644, 0.00821330212, 0.00384585327, -0.00422052061, 0.00367321214, 0.0183807537, 0.0532762706, 0.00477150269, -0.0075190654, -0.0146120386, -0.0137818921, 0.00825738069, -0.00551349157, -0.0142226778, 0.00844838843, -0.0111959511, -0.00798556302, 0.0140830958, -0.00330405449, -0.0148030454, -0.00755947083, -0.00183293293, -0.00535554346, 0.0129811317, -0.0169408545, -0.00200373726, -0.00492945081, 0.00988094, 0.0150381308, -0.00800760277, -0.000408415275, -0.0125476932, 0.0227739159, -0.0113281868]
06 Sep, 2021
jQWidgets jqxTabs position Property 06 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxTabs represents a jQuery Tab widget that is used for breaking the content into multiple sections. The <li> elements are used for tab title and <div> elements are used for tab content. The position property is used to set or return whether the tabs are positioned at ‘top’ or ‘bottom. It accepts String type value and its default value is ‘top’. Its possible values are – ‘top’ ‘bottom’ Syntax: Set the position property. $('selector').jqxTabs({ position: Boolean }); Return the position property. var position = $('selector').jqxTabs('position'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtabs.js”></script> The below example illustrates the jQWidgets jqxTabs position property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href=" jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxtabs.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTabs position Property </h3> <div id='jqxTabs'> <ul style='margin-left: 20px;'> <li>GeeksforGeeks</li> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ul> <div> A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, ... </div> <div> HTML stands for HyperText Markup Language. It is used to design web pages using a markup language. HTML is the combination of Hypertext and Markup language. Hypertext defines the link between the web pages. </div> <div> Cascading Style Sheets, fondly referred to as CSS, is a simply designed language intended to simplify the process of making web pages presentable. CSS allows you to apply styles to web pages. More importantly, CSS enables you to do this independent of the HTML that makes up each web page. </div> <div> JavaScript is a lightweight, cross-platform, and interpreted scripting language. It is well-known for the development of web pages, many non-browser environments also use it. JavaScript can be used for Client-side developments as well as Server-side developments. </div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTabs').jqxTabs({ theme: 'energyblue', width: 550, height: 150, position: "bottom" }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtabs/jquery-tabs-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtabs-position-property?ref=asr10
PHP
jQWidgets jqxTabs position Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0308169965, 0.0143192271, -0.00640217355, 0.0468314476, 0.072656557, 0.0252912901, 0.00708747655, 0.017962154, -0.0128187742, 0.0124148065, 0.0184094049, 0.0119314874, 0.0197655838, -0.016144298, -0.0226077884, -0.0107340105, -0.0258395337, -0.00167809078, -0.0473796912, 0.00736159785, 0.000516682456, 0.0107628647, -0.0516502112, 0.00629396783, -0.0340775959, 0.0231704582, -0.00657169567, 0.0182074215, -0.0247719027, 0.0149468211, -0.0151199503, 0.0224779416, 0.018279558, -0.0333850794, -0.0415510088, 0.00260234834, -0.00158521428, 0.009587029, -0.0392426178, -0.0146438451, 0.0116862208, 0.0215690136, 0.00234085112, 0.00719207525, -0.00722453697, 0.0173706301, 0.0155816283, -0.0348278247, 0.00893058162, -0.00249414262, -0.00966638047, 0.038838651, 0.0118232816, 0.0507845655, 0.0128620565, -0.00611723168, 0.00833184272, 0.0315095149, 0.0114842365, 0.00651759282, 0.0363282785, -0.0329234041, -0.0137349162, -0.0234301519, -0.0155527731, 0.0428494774, -0.0268350262, -0.00225067954, -0.0222903844, 0.0115203056, -0.0150189577, 0.024194805, 0.0315960795, 0.00960867, 0.00649234513, -0.0260559451, -0.00498467823, 0.010813361, 0.0317114964, 0.0340198874, -0.00605952181, -0.00158521428, -0.040512234, 0.00649595167, 0.0113255354, -0.0113327485, 0.0089233676, -0.0434265733, 0.0558341667, 0.03653026, -0.043080315, 0.00661858497, -0.00516502094, 0.00751669286, -0.00253742491, 0.0098827919, 0.0128259882, 0.0157403294, -0.0101857679, 0.00592246139, 0.0188999381, 0.00310189812, -0.0195924547, -0.0379441492, 0.00611362467, 0.0048692585, 0.039906282, 9.81319e-06, -0.00298106833, -0.0159134585, 0.0287538748, -0.00976015814, -0.00829577446, 0.0344815664, -0.0556033291, 0.0217132866, -0.000930569426, -0.042012684, 0.00934176333, -0.0048404038, -0.018871082, 0.00578540051, 0.00608477, 0.0446673334, -0.0268638805, 0.0274265502, -0.0107340105, 0.0132515971, 0.0429648943, -0.00155365421, -0.00255185226, 0.0331542417, 0.00194770354, 0.0113471765, 0.00645988341, 0.048418466, 0.0153940711, 0.00721011, -0.0322308876, -0.0239783935, -0.00827413332, -0.032750275, 0.0161587261, 0.0230406113, 0.00658612326, 0.0262579285, 0.0307304319, 0.0193904694, -0.00660415739, 0.0228097718, -0.0288115833, -0.00304058148, 0.00535618467, 0.0186835267, 0.0518810488, 0.0163607094, -0.0280036479, 0.0363282785, -0.00970244873, 0.000641569903, 0.0401659757, -0.0265031941, 0.0128764845, 0.0143480822, -0.0183805507, 0.00408657035, 0.0600181222, -0.010207409, -0.069424808, 0.0291578434, 0.0250893068, -0.0104021793, -0.0356069058, -0.00470334338, -0.0262435, -0.0281767771, 0.0395311676, -0.0415510088, 0.028162349, -0.0486204512, -0.00967359357, -0.0120180519, 0.0173273478, -0.00420920365, -0.018279558, -0.00593688898, -0.00874302443, -0.0114842365, -0.0151343774, -0.003769167, -0.0474951118, 0.0198954307, 0.0609414764, 0.0166059751, -0.00900993217, -0.0346835479, -0.0245699193, 0.0188566558, -0.0102795465, 0.00695402268, 0.0104526756, -0.0184959695, -0.0100919893, 0.0210784804, 0.0319423378, 0.0329811126, 0.0283643343, -0.0554302, 0.0385501, -0.0134319402, -0.00025338179, -0.00312173576, 0.0395311676, 0.0195203163, -0.0475239642, 0.0322020315, -0.0143913645, 0.000113446964, -0.0184382591, 0.00746619655, 0.0324328691, 0.0101064174, -0.0137132751, 0.0153652159, -0.0665393248, 0.00501353294, -0.0035311142, -0.0111884745, -0.0436285585, 0.036184, 0.00174932624, -0.026027089, -0.0317692086, 0.00553292083, 0.0244689267, 0.0416664258, -0.0103156148, 0.0239639673, -0.0346835479, 0.0339910313, -0.009587029, -0.0090748556, -0.000326646114, -0.00917584728, 0.0322597399, 0.0119459145, -0.0314518027, -0.00441840151, 0.0183949769, 0.0209342055, 0.0110802688, -0.0272101387, 0.0333273709, -0.0100414939, 0.0187556632, 0.00585032394, 0.00260595512, -0.0197511557, -0.00103246316, 0.0105825225, 0.0360974371, 0.0386943743, -0.00600181241, 0.000591073884, 0.0356357619, 0.00449414551, 0.0674626753, 0.000680343655, 0.0127105685, -0.00593688898, 0.00554013439, -0.0279459376, 0.0271235742, 0.0296916571, -0.00629757438, 0.00804329384, -0.0334427916, -0.021006342, 0.00867088698, -0.00864203274, 0.0331542417, 0.0150478128, 0.0312786736, 0.0564978272, 0.00264563062, -0.00880794786, 0.035174083, -0.019174058, -0.00780524127, 0.0107340105, -0.0142470906, 0.00528765423, 0.0192029141, 0.0162308626, 0.0256231222, -0.0213670284, -0.000851218589, -0.0192606226, 0.00579622108, -0.0122849597, -0.00220018346, -0.00181154453, -0.0406276509, 0.000888188835, -0.0110225594, 0.0202272609, 0.0261857919, 0.0220162626, -0.0110586276, -0.0150478128, 0.0520253256, 0.00107845059, -0.0112173297, -0.0247719027, -0.0273976959, -0.00732552912, -0.00625429209, -0.0123138139, -0.0203715358, -0.0164039917, 0.0148169743, -0.0270081554, -0.024194805, 0.0488512889, 0.0352895, -0.0031523942, -0.00669793598, -0.0455329791, -0.00616772752, -0.0171686448, -0.0645771921, 0.0104815299, 0.00204869546, -0.000825068855, 0.00750947883, -0.0399928465, 0.0218575615, 0.00237511611, -0.022694353, 0.0259549525, -0.0148602566, -0.0237764101, 0.0110369865, -0.00857710931, 0.0193904694, -0.0254067108, -0.00977458619, -0.00181424967, 0.0326925628, 0.0196934473, 0.00137962331, 0.00600541895, 0.0215690136, 0.0154517805, 0.0611723177, 0.00665826024, -0.0142398765, -0.0293453988, -0.00853382703, -0.0171542186, -0.00145176041, -0.00877909269, -0.00364292692, 0.0205879472, 0.0224058032, -0.0187845174, -0.00815871358, -0.0315672234, -0.0209486336, 0.00768260797, -0.0119531285, -0.0212516095, 0.00267268205, 0.0231416021, -0.0277583823, -0.00120739581, -0.0145572806, -0.00905321445, -0.0196213089, 0.00922634359, -0.057392329, 0.0308169965, 0.0244544987, 0.00225428655, -0.0273832679, 0.00766818086, 0.00352209713, -0.032750275, 0.00646349, 0.021165045, -0.0233580135, 0.0525158569, -0.0105392402, -0.023588853, -0.00758883, -0.0214103106, -0.00138864049, -0.0022615, 0.0130712548, -0.0227232073, 0.0124580888, -0.0201118421, 0.0326925628, 0.0197367296, 0.00894500874, -0.0241370965, -0.0268638805, -0.0205446649, 0.0165482666, 0.0139296865, 0.0220595449, -0.0160433054, -0.0134102991, 0.0290857051, 0.00858432241, 0.033962179, 0.0127971331, 0.0719640404, 0.0160721615, -0.0378575847, 0.0354049206, -0.0301821902, -0.0346835479, -0.001769164, -0.0197223015, -0.0206168015, 0.000931471179, 0.0130351856, 0.0496592261, -0.00606673583, 0.0118377088, -0.0211506169, -0.0224490855, -0.00654284097, 0.0190297849, 0.00240757782, 0.0502651781, 0.00165644963, -0.0277151, -0.025435565, -0.0107989339, -0.022073973, 0.0165338386, 0.0154806357, -0.0278882291, 0.0380884223, -0.0299224965, -0.010200195, 0.0119387014, 0.0297493674, 0.0149756754, -0.0131650325, -0.0362994224, -0.00428855466, 0.0178900175, -0.0142615177, 0.00604870124, -0.012941408, 0.0176303238, -0.0242380872, -0.0218719896, -0.0112461839, -0.031682644, -0.0313652381, -0.00324436906, -0.0155960554, -0.0035329177, 0.0275708251, -0.0129630491, -0.00402525393, -0.0143985786, -0.0235744268, 0.0458792374, 0.0466871746, 0.0104454616, -0.0101064174, -0.00695402268, -0.0101497, 0.00708026299, 0.007538334, 0.0436574146, 0.0133742308, 0.029835932, 6.41767156e-06, -0.0174139123, -0.0266186148, -0.00661137141, -0.0319134817, -0.0182074215, 0.0245987736, 0.0334139355, 0.0146943405, -0.0178900175, 0.0214968752, 0.0203138255, 0.0181641392, -0.0311921109, -0.0142543036, 0.0153075065, 0.0127466377, 0.0170243718, 0.007386846, -0.0140883885, 0.0806205, 0.0214824472, 0.00670154253, -0.0331253856, -0.00811543129, -0.0170676541, -0.0157691836, 0.0016862062, -0.0566709563, -0.015841322, 0.00658973027, -0.0108061479, -0.0478413701, -0.0515636466, -0.00535618467, 0.014160526, -0.0180631466, 0.0354049206, -0.00805050787, 0.0020018064, 0.0340775959, 0.0162164345, 0.045388706, -0.0066835084, -0.0444942042, -0.0368765183, 0.0125013711, -0.040656507, 0.00118575466, 0.0322020315, 0.0180775747, -0.0126023628, 0.0239639673, -0.0221028272, -0.0250460245, -0.00316501828, 0.0635384172, 0.00764653971, 0.0131866736, -0.0212948918, -0.0185103975, 0.000832282531, 0.0194626078, -0.0121623259, 0.0255365577, 0.00568440882, 0.00619297568, 0.0279603656, 0.00179441203, -0.00546439039, -0.0173994843, -0.0126312179, -0.00151848735, -0.00656808913, -0.0187845174, -0.00195131032, 0.00547881797, -0.0139873968, -0.00412624609, 0.0302110445, 0.0197511557, 0.015379644, -0.0193327609, 0.00682778284, 0.00994771533, -0.0238196924, -0.0177601706, -0.0015004531, -0.0203426816, 0.0144490739, 0.0125085842, 0.0104454616, 0.0284076165, 0.0155527731, -0.0388097949, 0.0100847762, -0.00785573758, -0.00412985263, -0.0363282785, 0.0218575615, 0.00849775784, -0.011570801, -0.00157890224, -0.0118160676, -0.0160144512, -0.0466583185, 0.00872138329, 0.0182507038, 0.0471488535, -0.000551398436, -0.00818035472, 0.0151343774, 0.00332191656, -0.00794230215, 0.00607034238, 0.0126095768, 0.000903968874, 0.0225356501, 0.0362994224, 0.0178755894, 0.0187556632, -0.0281912051, -0.0137132751, 0.024209233, 0.0199098587, 0.00788459182, 0.0116212973, -0.0363571309, 4.01544785e-05, 0.0285518896, -0.0272389948, -0.0181785654, -0.0202272609, -0.0108205751, -0.00246528769, -0.0172407832, -0.0081515, 0.00440397393, -0.018568106, 0.010661873, 0.00654644798, 0.0275852531, -0.0354626291, -0.00945718214, -0.00289270026, 0.0132371699, -0.0406853631, -0.0106690871, 0.0241515227, -0.00213886704, -0.0193904694, 0.0316537879, 0.0159278866, -0.0250315964, 0.0179910101, -0.00147069653, 0.00715600699, 0.0195491724, 0.00947882328, -0.0302399, 0.0649811625, -0.012335455, 0.00652841339, 0.0291001331, 0.015220942, 0.000100710247, 0.00919748843, -0.00130027242, -0.00712354528, 0.0153219337, 0.012941408, 0.00187195942, 0.0142903728, -0.0270225815, -0.00111361756, 0.0131217502, 0.00841119327, 0.00693598855, -0.00981786847, 0.0429937504, 0.0122561045, 0.00702616, -0.0154806357, -0.00387376593, 0.040656507, -0.00586835854, 0.0190153569, 0.00361046521, -0.0420992486, 0.0276141074, 0.000950407179, 0.00598377781, -0.0140523203, -0.00397475762, 0.0095798159, 0.0112317568, 0.0110009182, 0.0286384542, 0.00361046521, 0.0372227766, 0.0130568268, 0.022997329, -0.0217565689, -0.0126961414, 0.00694320211, 0.021468021, 0.020256117, 0.00296483748, 0.0209342055, 0.0471488535, 0.000926060893, -0.00134896499, -0.00963752531, 0.0154950637, 0.00519026909, -0.0194626078, -0.0259549525, 0.0217565689, -0.0161010157, 0.00592967495, 0.0160000231, -0.016447274, 0.0133742308, 0.0214968752, 0.0177745968, -0.00614608638, -0.0155816283, 0.0391271971, -0.00643102825, 0.000416592142, 0.0608837679, -0.00755276112, -0.0053742188, -0.014456288, -0.0219152719, -0.0412336029, 0.00505320868, 0.0182218477, 0.00613165926, -0.0192606226, -0.0320000462, -0.0132660251, -0.0330676772, 0.0220018364, 0.0151343774, 0.00732192257, 0.00366096129, 0.0132732382, 0.0333850794, 0.0105536673, -0.0094139, -0.0369342305, 0.0431668796, 0.0282633416, -0.0124580888, -0.00365915778, -0.0173706301, 0.00156988506, -0.00449414551, -0.0109864902, 0.0144057916, 0.0227520615, 0.0297782216, -0.00859153643, -0.00643102825, 0.0185969621, -0.00708026299, 0.00599459838, -0.0183228403, 0.00512534566, -0.0426763482, 0.0015193891, 0.0114481682, -0.00927684, 0.00233003055, 0.045388706, 0.00996935647, -0.0133886579, 0.00865646, -0.020097414, 0.0288981479, -0.0287394468, -0.009132565, -0.0439459607, -0.0187989455, 0.0194193255, -0.00823806413, 0.0145789217, 0.00675203884, 0.0433111563, 0.0115780151, 0.0119603425, 0.00573851168, -0.0252480078, -0.016432846, -0.0132371699, -0.00515780738, 0.00794951525, 0.00283679413, 0.00574933225, -0.0239639673, 0.0386943743, -0.0380307138, 0.030903561, 0.00502074696, 0.0197800118, 0.00522994436, 0.0101785539, 0.00924077071, 0.00260775862, 0.0230694655, 0.00365735427, -0.0250604507, -0.00333995069, 0.00717404112, 0.00968080759, -0.0158990305, 0.00970966276, -0.0110081313, 0.0211361889, 0.0325771458, 0.0427629128, -0.022694353, -0.0306438673, 0.00418034894, -0.0094139, -0.0219874084, -0.0179188717, -0.0137781985, -0.0107556516, 0.0165771209, -0.0150333857, -0.00752390642, 0.00682778284, 0.015220942, 0.018092, -0.00198016525, 0.00561587838, 0.0345969833, -0.0177745968, 0.00102975802, -0.0300090611, 0.0500054844, -0.0140595334, 0.00705140783, 0.0241082404, 0.0105464533, -0.00269071618, 0.00793508813, -0.032288596, 0.00901714619, -0.0258683879, -0.026647469, 0.0044436492, 0.00467088167, 0.0179188717, 0.01826513, -0.0231416021, 0.00352029363, -0.0187989455, -0.00460595824, -0.00696484325, 0.0437151231, 0.00900993217, 0.0103877522, 0.0349432416, 0.00586475153, 0.0441190898, 0.00374031207, -0.00248692883, 0.0195924547, -0.0154662086, 0.0163318552, -0.0736953318, 0.0167069677, 0.0113688176, 0.0019224555, 0.00393147534, -0.0031902662, 0.0168512426, 0.0141965942, 0.00926962588, -0.0169089511, -0.0187845174, -0.0457926728, -0.0511885323, -0.00113886548, 0.00425969949, 0.0235599987, 0.0072137164, 0.0155094909, 0.00079937, -0.000702435675, -0.0287971571, 0.0202705432, 0.0129341939, -0.0257818233, 0.029835932, 0.00199278933, -0.0255798399, -0.0217565689, 0.0118521368, 0.0409739092, -0.0229251906, -0.0244256444, -0.0226222146, -0.0109504219, 0.00304779527, -0.0123715242, -0.00254824548, -0.0143697234, -0.0146871274, 0.0356357619, -0.00494139595, -0.0145284254, 0.00407935679, 0.019477034, 0.0128836976, 0.000859334, 0.007689822, -0.0110730547, 0.0230694655, -0.0310189817, 0.00211001211, 0.0282056313, -0.00375113264, 0.0552859232, 0.0518233404, -0.0127610648, -0.00584311038, -0.0401082635, 0.0118377088, -0.0403391048, -0.00335257477, 0.0034265155, -0.00055861217, -0.0201118421, 0.0259982347, 0.00576375937, 0.038838651, 0.0249594599, 0.0107051553, -0.000386610132, -0.0396754406, 0.00757440226, -0.0344238542, 0.0185392518, 0.0120974025, -0.00745176943, 0.00611723168, -0.00485843793, -0.0052984748, -0.0320577584, 0.0308747068, 0.00736520486, -0.0197800118, -0.00541028753, 0.035174083, 0.0496015139, -0.00570965651, -0.020097414, -0.0192317683, -0.0143913645, -0.0298647862, 0.0162885729, -0.00350406277, 0.0159567408, 0.029835932, -0.00805050787, 0.000660956779, 0.00301172677, 0.0197655838, -0.028018076, -0.0199964233, 0.0177601706, -0.0126528591, -0.0123715242, -0.00241479161, -0.0311344, 0.00651037926, 0.00360144791, 0.0373959057, -0.00309107755, -0.0145933488, 0.00736520486, 0.0122200362, 0.000317628961, -0.00925519876, -0.0192606226, 0.0415221527, 0.0120036248, -0.00409378437, -0.0157114752, -0.00211181561, -0.0475239642, 0.0126167899, -0.00455906894, 0.0413490236, 0.00113075, -0.0164617021, -0.0173129197, 0.0189720746, -0.00292155519, 0.0282200594, 0.00510731153, -0.0227953438, 0.0101424856, 0.023300305, -0.0354337767, 0.00723175099, 0.00523355138, 0.0317114964, -0.00545357, 0.0304130297, -0.0190874934, -0.00494139595, -0.0300667714, -0.0334427916, -0.0134680085, -0.010654659, 0.0160577334, 0.0177024603, 0.0264166296, 0.00616051396, -0.0140595334, 0.0167646781, -0.00594770955, -0.0296339486, -0.0161875803, -0.00677007297, 0.00721011, 0.0315095149, -0.00216231146, 0.00485122437, 0.0064562764, 0.0205735192, 0.00670875655, 0.0435131378, -0.0199964233, 0.0183372684, -0.014607776, -0.0134030851, 0.0236465633, -0.0131001091, -0.0315960795, 0.0149901034, 0.0115203056, 0.00107484381, 0.00989721902, -0.0046889158, 0.0154084982, -0.00771146314, -0.0124436608, -0.0177890249, -0.0393291824, 0.00724617811, -0.00950046442, 0.0345969833, -0.00102885638, 0.00700451899, 0.0159423146, 0.0117655722, 0.00561227137, -0.0054968521, -0.00376556, 0.00643824227, -0.00128855009, 0.0102579053, -0.00454103481, -0.0044616838, -0.0171397906, 0.00156717992, 0.00195852411, -0.0258395337, -0.0336736292, 0.00551488623, 0.0175293311, -0.00346979778, -0.0081731407, 0.0190730672, -0.0151488045, -0.0180054363, 0.0187123809, 0.00350947306, -0.0197800118, 0.00233724411, 0.030759288, -0.0106690871, -0.011570801, -0.0123138139, 0.0206168015, 0.0288981479, 0.0180198643, 0.00428134063, 0.00339585706, 0.00627232669, -0.0269215908, 0.0146005629, 0.00295762392, -0.00270514376, 0.0266186148, -0.00385933835, -0.000176059766, 0.0187700912, -0.0214103106, -0.015826894, -0.0214103106, -0.000771867693, -0.00121821638, 0.00823806413, -0.0165771209, -0.0160865877, -0.0168945249, 0.00082597055, 0.0825826302, -0.0164039917, -0.00651037926, -0.0325194336, -0.022088401, -0.0148602566, -0.0051181321, 0.0173129197, 0.00930569414, -0.0106979413, 0.00183408742, 0.00857710931, 0.0277872365, -0.00251758704, -0.0139441146, 0.00540307397, -0.000468440732, -0.00690713385, 0.0314806588, -0.0356357619, -0.00814428646, 0.00512895267, 0.00511091808, 0.00445807679, 0.0252624359, 0.0119747696, -0.00805050787, -0.0114337411, -0.0374824703, 0.0169378072, -0.0101352716, 0.008829589, 0.0200252775, 0.00517223496, 0.0194193255, 0.0333273709, -0.00956538785, 0.00473580509, -0.0208332129, 0.019477034, -0.00110279687, -0.00605230825, -0.00373670529, -0.0106907282, 0.0120613342, -0.00500631938, -0.0183084123, 0.000723175064, -0.00908928271, 0.0200541317, -0.0177890249, -0.0064851311, -0.0406276509, -0.00785573758, -0.0097890133, 0.0240361039, 0.00740127312, -0.0190442111, 0.0265897587, -0.0246276278, -0.0178323071, 0.00991164707, 0.0141460979, -0.0231848843, 0.00919748843, 0.0143480822, -0.00991886, 0.00877188, -0.025421137, 0.0485338867, 0.0187123809, 0.0157691836, -0.0057709734, 0.00586835854, -0.00206131954, 0.000929667731, -0.0168512426, 0.00910371076, 0.00321731763, -0.0217565689, -0.0311921109, 0.00777638657, -0.0148314014, 0.0180775747, -0.0151776597, -0.00408657035, -0.0249306038, -0.0137132751, -0.00745176943, -0.000932372874, -0.00704780128, -0.00660415739, -0.021165045, -0.0141821671, -0.00435347809, -0.00227412418, 0.0224923678, 0.00882237498, -0.00486204494, -0.00601984654, 0.00729667442, 0.0202128347, 0.00989721902, 0.0250315964, 0.0114553822, -0.0204581, 0.0202849712, 0.0022615, -0.0259405244, 0.0207610764, 0.0152353691, 0.0136844208, -0.00611001812, -0.00162218453, 0.0141460979, 0.00836791098, -0.00925519876, 0.00845447555, -0.00206312304, 0.0205446649, 0.00166005653, -0.00745898299, 0.0133525897, 0.0241082404, -0.017341774, -0.0114481682, 0.0165482666, -0.0190153569, 0.0129053388, -0.0077836, -0.0211506169, 0.0128115611, -0.0133453757, -0.00186113885, -0.0219585542, 0.0211073346, -0.0135329319, 0.00320649706, -0.00742291426, 0.0136122834, -0.0178755894, 0.0262867827, 0.00280252891, 0.0266186148, 0.0370496474, 0.0107772928, -0.00544274924, 0.00651037926, 0.00469973637, 0.000864744303, -0.0291289873, -0.0139296865, 0.0177313145, -0.000966638036, 0.0288981479, -0.0256952588, -0.00142921763, 0.0111379782, -0.00712354528, 0.000830929959, 0.0276429616, 0.034712404, 0.0212804638, -0.00841119327, -0.0265609045, 0.000928766036, -0.0109071396, -0.0367322452, 0.00636249827, 0.00460956478, 0.00795672927, -0.0149468211, 0.0257673953, -0.0166059751, 0.0151920868, 0.00434626406, -0.00153020967, -0.0151488045, -0.00452660723, 0.0101136304, -0.0158846043, 0.00363932014, -0.0159278866, 0.0165482666, -0.0032281382, 0.0118521368, -0.00646349, -0.00405771565, -0.00327863428, -0.00576375937, -0.0134896496, 0.0212083273, 0.0224490855, 0.016447274, 0.0191452038, -0.00614969339, 0.0245699193, -0.0148169743, 0.0194337517, 0.026027089, 0.0162308626, 0.0297782216, 0.0274409782, 0.034106452, -0.00033363438, 0.00281875976, -0.0017087491, 0.00183589093, 0.0237475559, -0.0183228403, 0.032288596, -0.0352895, 0.000697025389, -0.0169666614, 0.0163174272, 0.00920470245, 0.0300667714, -0.0143913645, 0.00326961698, 0.00337241241, -0.0176303238, -0.00855546817, -0.00375834643, -5.35956606e-05, -0.0027249814, 0.00602706, 0.00047204757, -0.0142326625, 0.0310189817, 0.00803608075, -0.00392065477, 0.0221893918, 0.0335870646, 0.00271776784, 0.0355491936, 0.00761047099, -0.0166636854, -0.0056952294, 3.24617249e-05, -0.000781335693, -0.0018467115, 0.0200108495, -0.0161875803, 0.0202272609, 0.0170676541, -1.82808537e-06, 0.0133020934, -0.0256952588, -0.0125085842, 0.0255221296, -0.00651037926, 0.00535257766, -0.0143697234, -0.026633041, 0.0300667714, 0.00393868936, -0.0195347443, -0.0165771209, 0.00722814398, -0.0272967033, -0.0165771209, -0.00288729, -0.0200685598, -0.00736159785, -0.0415798612, 0.000701533922, -0.0168079603, 6.96011e-05, -0.0162308626, -0.00842562132, -0.0271380022, -0.0115780151, 0.0231848843, -0.00950767845, 0.0466583185, -0.0169522334, 0.0234590061, 0.00677007297, 0.00784852356, -0.00740127312, -0.00224166247, 0.00921191648, 0.00763211213, -0.00893058162, -0.013850336, 0.0210640524, 0.00758161629, 0.0185536798, 0.0041118185, 0.00645266939, 0.0167935323, -0.00144815363, -0.00488368608, -0.00841840729, 0.0297205132, 0.0305861589, 0.0103805382, -0.0196357369, -0.0259549525, -0.00454824837, 0.00500631938, -0.00322272792, 0.00457710307, 0.00684942398, -0.0100270659, -0.00245627039, 0.0102506913, -0.0218719896, 0.0248873215, 0.00840398, 0.00516862795, -0.0398197174, -0.0156826191, -0.008526613, -0.00645266939, 0.00324256555, 0.0074157007, 0.0104959579, -0.00787737872, -0.00420920365, -0.00437872577, -0.0151920868, -0.0433688648, 0.0100703482, 0.00760325743, -0.0213958826, 0.00900271814, -0.0120036248, 0.021165045, -0.0216411501, -0.00976015814, -0.00553652737, -0.017053226, 0.0335870646, 0.00294499984, 0.0248728953, 0.0241082404, -0.0189287923, 0.00544635626, 0.0130063314, -0.00915420614, 0.0236177091, 0.00279351184, 0.0234012958, 0.00505320868, 0.0215545855, -0.0065608751, -0.0023083894, -0.0167791042, -0.0132011017, 0.00800001156, -0.00134806335, 0.0360108726, 0.0218719896, 0.00918306131, 0.0217421427, 0.00510370452, 1.12714324e-05, 0.0259693805, 0.000928766036, -0.0168223865, 0.0159423146, 0.0360397287, -0.0103661111, 0.00205771276, -0.0104166064, -0.00833905675, 0.0094139, 0.008829589, 0.0250027422, -0.0172263552, 0.0141100297, 0.00492336182, 0.00294499984, 0.0191452038, 0.0139513277, 0.022679925, -0.00709469, -0.00921913, -0.00120108377, -0.0207322221, -0.00427052, -0.0152065149, -0.0246997662, 0.000578449923, -0.0172984917, 0.0103805382, -6.84175902e-05, -0.019491462, 0.00481515564, 0.0174716208, 0.0121551128, -0.0127827059, 0.0137854125, -0.0231271759, -0.00221821782, -0.022088401, -0.0182507038, -0.0281767771, 0.00310730841, 0.0198232941, 0.00924077071, -0.00871416926, 0.00763211213, 0.039444603, 0.0105464533, 0.000811092264, -0.0129774762, 0.0234012958, 0.0116790067, -0.00417674193, 0.0236465633, -0.0244833548, -0.0331542417, 0.00718486169, 0.0208187867, 0.00562309194, 0.0214103106, 0.0384635366, 0.009284053, -0.0156681929, 0.0100270659, -0.0173706301, -0.00825249217, 0.0132227428, -0.021468021, 0.0206889398, 0.0181641392, -0.00645266939, 0.0129269799, 0.00409739092, -0.0240216758, 0.0262146462, 0.0202128347, 0.0047935145, -0.000284490961, -0.0145933488, -0.0118016405, -0.00415149378, 0.00556177553, -0.0362705663, 0.0172263552, 0.00456267595, -0.0186979529, -0.00466727465, -0.00173039024, 0.0196213089, 0.0116717936, -0.012486943, -0.000409829285, 0.0121334717, -0.0081731407, -0.0212227535, 0.00804329384, -0.0235167164, 0.00284581119, -0.0066077644, -0.0056014508, 0.0139513277, 0.000716412207, 0.0142975859, -0.021468021, -0.00258431397, 0.0131722465, 0.00791344699, 0.0185969621, -0.0067303977, 0.00836791098, -0.0213526, 0.00983229559, 0.011116337, -0.0540740192, 0.00397836464, -0.00627593324, 0.0198954307, 0.00469612936, -0.0163318552, 0.0147087686, 0.00250676647, -0.00282597356, -0.00267989561, 0.0107051553, -0.0157259014, 0.00167899253, 0.0107195824, 0.0318269171, 0.00820199586, 0.00811543129, 0.00321010384, 0.0119819837, 0.00358521705, -0.00328945485, 0.000848964264, -0.00779802771, 0.0135185048, 0.00222543161, -0.0260848, 0.0051469868, -0.0206745118, -0.00911092386, 0.00601623952, 0.00354734506, -0.00451939367, -0.00693598855, 0.0164905563, 0.0276429616, -0.0261280816, -0.0161010157, 0.00972409, 0.0124725159, 0.0160721615, -0.0203859638, 0.0079639433, 0.0279603656, 0.0229540467, 0.0106474459, 0.00108025409, -0.00839676615, -0.0029612307, 0.00492696837, 0.0227376353, 0.00994771533, 0.0238196924, -0.0387809388, 0.0270802919, 0.0126600731, -0.0140162511, -0.00164653081, 0.0199098587, -0.00938504562, -0.00343372906, 0.0184526872, -0.00256086932, 0.00890172645, -0.026647469, -0.04963037, 0.00275383634, -0.00365915778, 0.00254824548, 4.50011939e-05, -0.0126456451, 0.0026492374, -0.0199675672, -0.010503171, -0.00373309827, 0.00642381469, -0.00748062413, -0.0206600837, -0.0131794605, -0.0114914505, -0.000751128246, 0.00142470899, -0.0381749868, 0.0177313145, 0.00476826681, 0.0189576466, 0.00273760548, -0.00950767845, -0.0214247387, 0.0198665764, 3.37579404e-05, 0.0185969621, 0.0144707151, 0.00812264532, 0.0135690011, 0.0245410632, -0.00761047099, -0.00546078337, 0.00247971504, -0.01354736, 0.0113471765, -0.0175004769, 0.021309318, 0.0143048, 0.000520289293, 0.0139801828, 0.00344274635, 0.00658251625, -0.0122705316, -0.00687827868, 0.0163174272, -0.0122344634, 0.00329486514, 0.00920470245, -0.00118665642, 0.00690352684, -0.00376556, 0.016447274, -0.00908928271, -0.0075960434, 0.00415510079, -0.00506042223, -0.0117439311, -0.00563751953, -0.0126023628, -0.00977458619, -0.0097313039, 0.0175726134, -0.0124436608, 0.0139873968, 0.000265554932, -0.0102867596, 0.000242786657, -0.00803608075, -0.0172696374, -0.00844726246, -0.0248728953, -0.00209378125, -0.0180198643, 0.00814428646, 0.00153381645, -0.0288548656, 0.00606673583, 0.00439676037, 0.0169378072, -0.0117295031, 0.00129576388, 0.0124725159, 0.000553652761, 0.000698828779, 0.0213237461, 0.0206889398, -0.00280433241, -0.00844726246, 0.022679925, 0.00978179928, 0.0161587261, -0.0206745118, -0.0138791911, 0.000242561218, 0.000513526436, 0.0141388848, -0.00311091519, 0.00551127968, 0.0189576466, 0.00292876898, -0.0151776597, -0.00397836464, 0.0080216527, -0.0035329177, 0.0211073346, 0.000914338569, -0.0300379153, -0.0135401459, -0.00440758094, 0.00300811976, 0.00517584151, -0.00724617811, 0.00110279687, 0.00370785035, -0.0133020934, 0.0101208445, -0.0254932754, 0.0116645796, 0.0249017496, -0.00560505781, 0.0129053388, 0.0372804888, -0.0134896496, 0.00269071618, -0.0104526756, 0.000595131598, 0.0116862208, 0.0340198874, 0.0125302253, -0.0083174156, -0.00373670529, 0.00697927084, -0.0123715242, 0.00639496, -0.00714879297, -0.0051469868, 0.00513977325, 0.000540577865, 0.0215545855, 0.0224923678, 0.0313652381, 0.013706062, 0.00347881485, 0.0066077644, -0.0148602566, -0.0151488045, -2.93902594e-05, 0.00711993827, -0.000742561941, -0.014773692, 0.0179910101, -0.010964849, -0.0147015546, -0.00485122437, 0.00743734185, 0.0126745, -0.0216988605, 0.00266186148, 0.00674482482, 0.000268936361, -0.028018076, 0.0125662945, 0.0186402444, 0.0185536798, 0.0265897587, -0.00150766678, -0.0188133735, 0.00136339245, -0.0130712548, 0.0137926266, 0.0037222777, 0.000869703712, -0.0132732382, -0.0245554913, -0.00183498918, 0.00535257766, 0.00068124535, -0.00199639611, -0.023603281, 0.000994591159, -0.00913977902, 0.016735822, 0.00851218589, 0.0157836117, -0.014917966, 0.00345897721, -0.0208476409, 0.00833905675, -0.0252768621, 0.00097295, -0.00937783159, -0.019174058, 0.0113616036, -0.0128187742, -0.0178034529, 0.0211217627, -0.0121695399, -0.0241803788, -1.51178083e-05, 0.00542832166, -0.00247430475, -0.016144298, 0.00118214777, -0.0171109363, 0.0166925397, 0.018582534, -0.0297493674, -0.00719568226, -0.00451578666, 0.0079278741, 0.0143048, -0.00314698392, 0.00771146314, 0.0219729804, -0.00414428, 0.0157691836, 0.0256086942, -0.0319134817, 0.015523918, -0.00519026909, 0.0083174156, 0.0144490739, -0.0128836976, -0.00047204757, 0.0287971571, -0.0122128222, 0.0212516095, -0.0221172553, 0.00606312882, 0.00678089354, -0.00162488967, 0.0153363617, -0.0181064289, 0.0105248122, -0.0132732382, -0.0122272493, 0.0206889398, -0.00323895877, -0.00660055084, 0.00684942398, -0.0121478988, -0.00110550201, 0.00318485592, -0.00610641111, 0.00439315336, 0.00216411497, -0.0149468211, 0.0178467352, 0.0204292461, -0.0121190436, 0.0104166064, 0.0189287923, 0.0149901034, -0.0128548434, -0.0102290502, 0.0119964108, 0.0328656919, -0.0222759563, 0.00493057538, -0.00669432897, 0.0280469302, -0.0130784679, -0.00320108677, 0.00157349196, -0.00338864326, -0.00745898299, -0.0213381741, 0.003693423, -0.0108277891, 0.0123570962, 0.00221641432, 0.00505681522, 0.00695402268, 0.00653562741, 0.00393868936, -0.00338323298, -0.000732192246, 0.00934897643, 0.0057529388, -0.0142110214, -0.00490172, -0.00669072196, -0.0052984748, -0.0180342924, 0.0139152594, -0.0238774028, -0.0152930794, 0.0034643875, 0.00374391885, 0.0128332023, 0.00824527815, -0.0063336431, 0.00692156097, -0.00776917301, 0.00748062413, -0.0303553194, -0.0114986645, 0.0108061479, -0.00546078337, 0.00840398, -0.0197078735, -0.00358702056, -0.00324256555, -0.000264653238, 0.0102795465, 0.0297493674, -0.00220920076, -0.0119387014, -0.0242669433, -0.0152642243, 0.00903878734, -0.0201551244, -0.00916142, 0.00616412098, 0.0285086073, -0.0125662945, 0.0153363617, 0.0013056827, 0.0168079603, 0.0157114752, 0.00842562132, -0.0224923678, -0.0422435254, 0.010200195, 0.0143841505, 0.0149901034, 7.16299546e-05, 0.00160415028, -0.00769703556, -0.00351488334, -0.00393508235, -0.0116501525, 0.0153652159, -0.0134319402, 0.0020703366, -0.000829126569, 0.0118521368, -0.000519838475, 0.0249450319, -0.021770997, -0.009435541, 5.21867296e-05, -0.0170676541, -0.00702255312, -0.01826513, -0.0128909117, 0.000521641865, 0.00148061535, 1.29057898e-05, -0.00640217355, -0.024194805, 0.00993328821, 0.0255942661, -0.0143192271, 0.0104526756, -0.000227908356, -0.0136483517, -0.00282056327, 0.00471055694, 0.00397475762, -0.0184671152, -0.00430658879, -0.0157403294, 0.0225789323, 0.00579622108, -0.00447611138, -0.00600902596, -0.0172840655, -0.0166636854, -0.0051181321, 0.0124508748, -0.00343192578, 0.0279603656, 0.0225500781, -0.0167935323, 0.0159423146, 0.0173994843, -0.00946439616, 0.00722453697, 0.000479712151, 0.003693423, -0.0198232941, -0.00718846871, -0.01612987, 0.0132660251, 0.0146294171, -0.0302399, -0.0353472121, -0.0149035389, 0.00643463526, 0.00755997514, -0.0143625094, 0.0314518027, -0.000965736283, 0.0199819952, 0.00806493498, -0.00328584784, 0.000762399693, -0.0163318552, -0.000261722656, -0.00721732341, -0.00265825447, 0.000127592619, -0.0157836117, -0.00910371076, -0.00703698071, -0.004523, -0.00814428646, -0.000866096874, 0.0156104825, 0.00443282863, 0.00927684, -0.00439315336, -0.00246168091, 0.0155094909, 0.000887738, 0.00102795463, 0.0113760307, 0.0203426816, -0.00715961354, 0.0283931885, 0.00656808913, -0.007538334, -0.00276105013, 0.00307304319, 0.0262579285, 0.00323715527, 0.0109071396, 0.0153363617, -0.0203282535, 0.0074157007, 0.0135257188, -0.0208909232, -0.000626240799, 0.000692065922, 0.0143841505, 0.00110189524, -0.012486943, -0.00689270627, -0.0115058776, 0.00481876265, 0.0296916571, 0.00996214245, -0.0259982347, -0.00442200806, -0.0108927125, -0.0115491599, -0.00998378359, 0.0150333857, 0.00079756655, 0.00384851778, -0.0224346593, 0.0186402444, -0.00818756875, 0.0145861348, -0.0236609913, -0.0130496137, -0.00453021424, -0.0125230122, 0.00396393705, 0.0278160907, -0.00348783191, 0.0240072496, -0.00449414551, 0.00124707131, 0.0105753085, 0.0157836117, -0.00923355762, 0.00743734185, 0.00526962, -0.0133598028, -0.009132565, 0.00255185226, 0.0040829638, -0.0112029016, 0.0104598887, 0.00467809523, -0.00385933835, 0.000851669407, -0.015841322, 0.00396393705, 0.00794951525, 0.0207899306, 0.00277367397, 0.00118034438, 0.00618936867, 0.0215401575, 0.0275708251, -0.0158990305, 0.010358897, 0.0105320262, -0.00554013439, -0.0159567408, -0.00257890369, -0.00160415028, -0.0016330051, 0.00407575, -0.0114625953, 0.00840398, 0.0129558351, 0.0140595334, 0.0192173403, 0.0301244799, -0.000340171828, -0.00254824548, 0.00113616034, -0.0198377203, 0.0152497971, -0.0217132866, 0.00902435929, -0.0112894662, -0.0331253856, 0.0216122959, -0.0129053388, 0.00206672982, -0.000514879, 0.00810821727, -0.018279558, -0.0121406848, 0.00703698071, -0.0193471871, 0.0138286948, -0.000628044188, 0.0145428525, -0.00257710018, -0.0281334948, -0.0315383673, 0.0201262701, -0.000169522347, -0.0127394237, 0.0107051553, -0.0189720746, -0.0294031091, 0.012176754, -0.00228494476, 0.00934176333, 0.00483319024, 0.0110730547, 0.00926241186, 0.0349432416, -0.00148241874, 0.0123066008, 0.00488368608, 0.00650677225, 0.0302110445, 0.00432823, 0.0152930794, -0.0128043471, 0.016303, -0.010654659, 0.00781966839, 0.00692516798, 0.0184094049, 0.0168223865, -0.00102885638, 0.0107700787, -0.0019567206, -0.00522633782, -0.017038798, -0.00714518642, -0.00492336182, 0.00953653362, 0.00301533355, -0.0131145371, -0.0105392402, 0.0166636854, -0.0112606119, 0.0193616152, 0.024194805, -0.00359423435, -0.0144490739, 0.00409378437, -0.00673761126, 0.0118160676, -0.00130117417, 0.0270658638, -0.00481154909, 0.0244256444, -0.0116285114, 0.0395023115, -0.00156086788, -0.0104238205, 0.00361226848, -0.00407575, 0.0155672, -0.0284364708, -0.0152497971, -0.0108782845, 0.0310478359, 0.00150586339, -0.0237475559, -0.00906042848, 0.0095798159, 0.0140523203, -0.00366637157, 0.0059513161, -0.00734717026, -0.00715961354, -0.00434987107, -0.014001824, 0.00779081415, -0.00955096073, -0.00151668396, -0.00495943, -0.0184094049, 0.00664022611, 0.00856268127, 0.00838955212, 0.0273111314, 0.0234590061, -0.00574933225, 0.00723175099, 0.00286745233, -0.0150045305, -0.00202885782, 0.0151488045, 0.00485483138, -0.0196645912, 0.00267809234, -0.00821642298, -0.00806493498, 0.00252660434, 0.00869974215, 0.00414788723, 0.0113688176, -0.0311921109, 0.0108710714, -0.00464924052, -0.00681335526, 0.0195203163, 0.0107772928, -0.0156249106, -0.0166636854, -1.92037023e-05, -0.0198232941, 0.00544274924, -0.0128404154, 0.0154950637, -0.0121623259, -0.00552210025, 0.000196911918, -0.0107051553, 0.00406853622, 0.00670875655, 0.00285122148, 0.0286384542, 0.00249955291, 0.00277547748, -0.00210099504, -0.00358702056, -0.00379080814, 0.0101713408, -0.0048692585, -0.0122056082, 0.0125951488, 0.00296664098, -0.00565555366, 0.00961588416, -0.00563030597, 0.00885123, -0.0135978563, -0.0117439311, 0.00996935647, -0.0206745118, -0.00624347152, -0.00421281066, -0.00153742335, -0.00745176943, 0.00967359357, 0.028018076, -0.000586565351, 0.0012903536, 0.0123787373, 0.00594049552, -0.00212443946, -0.00236429553, -0.00947882328, 0.0267196056, -0.00760325743, -0.0120036248, 0.00261677569, -0.0116645796, 0.00288729, 0.0120974025, -0.034568131, 0.00607394939, 0.0127827059, -0.00107123691, -0.00533093652, -0.00489450665, -0.00893779472, -0.012176754, 0.00149323931, 0.028624028, -0.00899550505, -0.00320469355, -0.00825970527, -0.0137709854, -0.0069576297, 0.0130712548, -0.00475744624, -0.00466006109, 0.0228819083, -0.0319711939, 0.0108999256, -0.00926962588, 0.00957260188, 0.0163751375, 0.0219874084, -0.00978179928, -0.0202849712, -0.000515329884, -0.00394590292, -0.00674482482, -0.00911092386, 0.00865646, -0.00480794208, -0.00153381645, 0.0094139, 0.0171975, -0.0184094049, 0.0180342924, 0.00340848113, 0.00489089964, -0.0122416774, 0.010207409, 0.0227376353, 0.000649685331, 0.00198196853, -0.00849054474, 0.0122561045, -0.0256952588, -0.00605591526, -0.0111884745, -0.0045843171, -0.0123210279, 0.00927684, -0.0118088545, 0.0106402319, 0.00263120304, -0.00622543739, 0.0156104825, 0.00620379625, -0.00579622108, -0.00133002899, 0.0120036248, 0.00541028753, -0.0179910101, 0.0152065149, -0.030903561, -0.0182939861, 0.00651759282, 0.015379644, 0.0138142677, -0.00449414551, -0.00818756875, 0.0174716208, -0.0188566558, 0.00986836478, -0.034568131, 0.0142182354, -0.00944275502, -0.0118954191, 0.0141100297, 0.00297024776, -0.0245410632, 0.0100919893, 0.00502074696, -0.0023841334, 0.00299369241, -0.0190442111, 0.000218327637, -0.0131433913, -0.0126672862, 0.0131650325, 0.010964849, 0.00443643564, 0.0206889398, -0.0171975, -0.0258972421, 0.0225789323, 0.000856628874, 0.0257962514, -0.0426763482, 0.000503607618, 0.00862760469, 0.0113976719, 0.000684852246, 0.0142038083, -0.00749505172, 0.00262218597, -0.00677368, -0.00632282253, -0.00957260188, -0.0158701763, 0.00576375937, 0.012032479, -0.0235167164, -0.0100342799, 0.00822363701, 0.0161154438, 0.0075960434, 0.018871082, 0.00598738482, 0.00064652937, -0.029244408, -0.00183859607, -0.00882237498, 0.00201984076, 0.0151776597, -0.000900812855, -0.0113327485, 0.00823085103, 0.0269215908, -0.00278088776, -0.00531650893, 0.0132515971, 0.0104815299, -0.0219441261, 0.00275744312, 0.0127971331, -0.00753112, -0.00250676647, -0.0140234651, -0.010200195, 0.00410460494, -0.0116790067, -0.0193327609, 0.0197511557, -0.0218864158, 5.72025192e-06, -0.00339946407, -0.00131650327, 0.0214391649, 0.00434626406, 0.00671597, 0.0018277755, -0.00318124914, 0.00548963854, 0.0422723778, 0.0214247387, 0.000408025837, -0.00582507625, 0.0174139123, -0.00794230215, -0.00247791177, 0.0268061701, -0.00292876898, -0.00228494476, 0.00609919755, 0.00339405355, 0.0193471871, 0.00280793919, -0.0323463045, -0.00779802771, -0.065212, -0.0174860489, -0.00700091198, 0.0168656688, -0.00783409644, -0.00261316891, 0.00800722558, 0.00390622765, 0.00992607418, -0.0065789097, 0.0142687317, 0.0217421427, 0.00128855009, 0.00681696227, -0.0192461964, 0.00800001156, 0.0234878622, -0.00828856, -0.00937783159, 0.00386655214, 0.012328242, 0.00757440226, 0.00662940554, 0.00295762392, 0.00340487435, -0.00200361, -0.00274121226, 0.0163751375, -0.016447274, -0.0131217502, 0.0117150759, 0.0110946959, 0.00862760469, -0.0324328691, 0.0255221296, -0.00422723778, 0.0291578434, -0.015538346, -0.0141028157, 0.00929848105, -0.0138719771, 0.0134247262, -0.00333995069, -0.00676646596, -0.0035707897, 0.00257710018, -0.000208070633, -0.000574392208, 0.00815871358, -0.0117439311, -0.0140883885, -0.00865646, -0.00485843793, 0.0030009062, 0.00022881008, 0.0150478128, -0.0103661111, -0.012183967, 0.04357085, 0.00346258399, 0.0142615177, -0.0132588111, 0.00328584784, 0.00182507036, 0.0238774028, -0.0190153569, -0.00947882328, -0.0124653019, -0.0131650325, 0.050726857, -0.0199964233, -0.0158990305, 0.00340848113, 0.00339766056, 0.00421281066, 0.0158701763, 0.00825249217, 0.00589360669, 0.00481515564, 0.0142975859, 0.00257169, 0.00410821149, 0.0141749531, -0.00409739092, 0.0172407832, -0.0212660357, -0.00737963198, 0.00704058725, 0.0233868696, -0.00661858497, 0.00233003055, -0.00320108677, -0.0156826191, -0.018423833, -0.00655366154, 0.000935979711, -0.00966638047, -0.00571326353, 0.00565916067, -0.018871082, -0.00587917911, 0.00760325743, 0.0034174982, 0.00169342, 0.0187556632, -0.0395600237, 0.0226222146, -0.0197655838, -0.00495943, 0.018120857, 0.0259260982, 0.0106330179, 0.0159855969, -0.00894500874, 0.0280902125, 0.00999099761, -0.000276600942, 0.00283679413, -0.0114265271, 0.00302795763, -0.00309288106, -0.00671597, -0.0054211081, -0.0303553194, 0.00164112053, 0.000116208466, -0.0113543896, -0.00754554756, -0.0237042736, -0.018871082, -0.00336339534, 0.000261497218, -0.00352931092, -0.00696484325, -0.00172317657, 0.000781786512, 0.00117042556, 0.0277728084, -0.0244977809, -0.00139946106, 0.0045374278, -0.0252912901, 0.0136772068, 0.0108494302, -0.0366168246, -0.0256664045, 0.00754554756, -0.010200195, 0.0198665764, -0.0137709854, -0.00585753797, 0.0063805324, 0.0201984067, -0.0105608813, -0.0222759563, 0.0205013826, 0.00957260188, 0.00313255633, 0.0117367171, 0.016432846, 0.023285877, -0.00398918521, 0.0265320502, -0.0162597168, 0.0248007569, 9.19748854e-05, -0.01675025, 0.00697566383, 0.00585753797, 0.00168530457, -0.00362849934, 0.018120857, 0.00116140838, -0.0216122959, -0.0125446534, -0.0247719027, 0.00653923396, -0.0374536179, 0.00863481872, -0.0128259882, -0.00138773874, -0.00610280409, -0.0115275187, -0.010200195, 0.000214608066, -0.016144298, -0.00368981599, 0.014607776, 0.0315095149, 0.0167935323, 0.0123859514, 0.00214968761, -0.0101713408, -0.00655005453, 0.00879352074, -0.00330027542, 0.00351308, -0.0107484376, -0.00200902019, -0.00619297568, 0.0258828159, 0.00352570391, -0.00674843183, 5.9625876e-05, 0.011116337, -0.00321371085, -0.0113327485, -0.0121623259, -0.0155094909, 0.00933454931, 0.0279315114, -0.00699369842, -0.0035311142, 0.00781966839, -0.000633905351, 0.0195347443, -0.0312786736, 0.0215401575, 0.00415510079, -0.0133165205, 0.0269215908, 0.00608837698, 0.0298936423, -0.00336700212, 0.0292155519, -0.00378359435, 0.00618936867, 0.00215329439, -0.0190297849, -0.00665826024, 0.00680253468, -0.0067123631, -0.000659153331, 0.0204148181, 0.00265284418, 0.0136339245, -0.00316862506, 0.00859875, -0.0089233676, 0.00286023854, 0.00454103481, -0.00596935069, -0.00896665, -0.00423084479, -0.00994771533, 0.0108782845, -0.009284053, 0.0288404394, -0.000953112321, -0.00161947939, -0.01506224, -0.00932733528, 0.0067123631, 0.0300956257, 0.00885844417, -0.00466366764, -0.0277439542, 0.0233724415, -0.0146582723, 0.00221641432, -0.010503171, 0.00802886672, -0.00123805413, 0.00588278612, 0.0172696374, -0.0109864902, -0.00921191648, -0.00996935647, 0.00262038247, 0.0169522334, 0.00339585706, -0.0178323071, -0.00476105278, 0.00282236654, -0.00519748265, 0.0107845068, 0.0222326741, 0.0304130297, -0.0115635879, 0.00565555366, -0.0211217627, 0.00115870323, -0.00672318367, -0.00475744624, 0.00236609904, 0.00258251047, -0.0139224734, -0.00581064867, 0.0145428525, -0.00516862795, 0.00835348386, -0.0159423146, 0.0152786514, 0.00217493554, -0.026633041, -0.0174427666, 0.000437782437, -0.00682778284, -0.000201984061, -0.000491885294, 0.0151488045, 2.65442231e-05, -0.0119819837, 0.00475744624, 0.00211902917, -0.0075960434, -0.0192894787, -0.0179188717, -0.00220739725, -0.0150910951, -0.0140667474, 0.00521191023, -0.0242525153, 0.0165915489, -0.00456988951, 0.00538503937, -0.0044147945, -0.0199387129, 0.0221172553, -0.00893779472, -0.0103372559, 0.00651759282, -0.00114517752, 0.000503607618, -0.00134084956, 0.0139296865, 0.0362705663, -0.000653743045, -0.0145933488, -0.0240793861, -0.00573851168, 0.00245627039, 0.00665104669, 0.0167791042, -0.0252480078, -0.00137060613, -0.00343733607, -0.00298647862, -0.00117583585, -0.0220018364, -0.0224779416, -0.00793508813, 0.0147304097, -0.0208764952, -0.000123760328, -0.014160526, -0.00978179928, -0.00723535754, 0.0359820202, -0.011116337, -0.019174058, -0.0289558582, -0.0117872134, 0.0250171684, -0.00653923396, 0.00802886672, -0.0234445799, -0.0162164345, 0.0182362758, -0.00192425889, 0.0066546537, 0.0179333, 0.00905321445, -0.0330676772, 0.0204436723, 0.00605230825, -0.00107394205, 0.0211217627, -0.00733274315, 0.00998378359, 0.00587196555, -0.00961588416, 0.0104815299, 0.0713869408, 0.030759288, 0.017341774, -0.022376949, 0.00834627, -0.00619297568, -0.0110297725, 0.0336447731, -0.00338503649, 0.0213381741, -0.00255906605, 0.0201406963, -0.000160617914, 0.00447611138, -3.49977963e-05, -0.00312894955, 0.00911092386, 0.0171397906, -0.00332191656, -0.00198016525, -0.00857710931, -0.0198377203, 0.00204689219, -0.0100775622, -0.00841119327, -0.00092335575, -0.00562309194, -0.00888008531, -0.0151199503, 0.00399279222, -0.0086203916, 0.0237619821, 0.00883680303, 0.0300956257, -0.0203715358, -0.00214968761, 0.00794951525, 0.0149035389, 0.0106474459, -0.0172984917, 0.0311632566, 0.0294175372, -0.00809379, -0.0264743399, 0.0112822531, -0.0110297725, -0.00673761126, -0.00308566727, 0.00334536098, -0.016144298, 0.0129774762, -0.0187845174, -0.0252335798, -0.0129053388, -0.000987377483, -0.000844004855, 0.0267773159, 0.0147881191, 0.00779802771, 0.0128332023, 0.0193183329, -0.0107700787, -0.00618215511, -0.00618576212, 0.00746619655, -0.0364725515, 0.000425158418, -0.00126961409, 0.00190261775, -0.00333454041, -0.00884401612, -0.0123931654, 0.00333814742, 0.00124166103, -0.00348783191, 0.00750947883, -0.00788459182, -0.00939947274, 0.0114409542, -0.0284797531, -0.0151199503, 0.00243102247, -0.0111091239, -0.0125807216, 0.00170424057, -0.025349, -0.0110586276, 0.000801173388, -0.0111956885, -0.0047177705, 0.00130748609, 0.0403679572, 0.00143913645, -0.00710911769, 0.0188278, 0.0010955832, 0.00423084479, 0.0169233792, 0.00371867092, -0.00415510079, 0.0313075297, -0.00600902596, -0.00368981599, -0.0196645912, 0.00621101, 0.0115996562, -0.01247973, 0.0120829754, 0.0246997662, 0.0100775622, 0.00378359435, -0.00228674826, -0.00775474543, 0.00822363701, 0.0140378922, 0.0117511442, 0.00888729841, -0.00566998124, 0.0195058901, -0.00287286262, -0.0113543896, -0.01612987, 0.00772589026, -0.00517223496, -0.00265284418, -0.00571687054, 0.0144490739, 0.018092, 0.0300090611, 0.022982901, 0.0159423146, -0.0160433054, 0.00610280409, -0.0101208445, 0.017962154, 0.0258395337, -0.00665104669, 0.000574392208, 0.0255077016, -0.0095798159, -0.0115852291, -0.000433048437, 0.0128836976, 0.000274572085, -0.00732913613, -0.00407935679, 0.0162308626, -0.0180054363, 0.0373093411, 0.000725429389, 0.000375564123, -0.0207322221, -0.0123210279, -0.0137854125, -0.0128909117, 0.0133453757, 0.00070018135, -0.027412124, 0.0234590061, -0.00477908738, 0.0145500666, 0.00139855931, 0.0136844208, -0.009132565, 0.00998378359, -0.0167646781, 0.00551849324, -0.018726809, 0.000572137884, 0.00900271814, 0.0354049206, 0.0116645796, -0.0128187742, 0.00999821164, -0.00700812554, -0.0318269171, -0.00893779472, -0.0199242849, -0.00534897065, -0.00981065445, 0.0121478988, -0.00843283441, 0.0219729804, 0.0494283848, 0.00336339534, -0.00989000592, -0.00807936303, -0.0181929935, 0.0152642243, -0.000705591636, -0.0141821671, -0.0111596193, 0.000646980188, -0.00700812554, 0.00804329384, 0.00563391251, 0.00772589026, -0.00409017736, 0.00525879953, 0.00044364357, 0.0145067843, -0.0107700787, 0.00191343832, -0.0098827919, 0.00293598277, 0.0135185048, 0.0137421302, -0.00170153542, -0.00260415161, 0.00121010095, 0.0040829638]
06 Sep, 2021
jQWidgets jqxTabs keyboardNavigation Property 06 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxTabs represents a jQuery Tab widget that is used for breaking the content into multiple sections. The <li> elements are used for tab title and <div> elements are used for tab content. The keyboardNavigation property is used to enable or disable the keyboard navigation. It accepts Boolean type value and its default value is true. Syntax: Set the keyboardNavigation property. $('selector').jqxTabs({ keyboardNavigation: Boolean }); Return the keyboardNavigation property. var keybNav = $('selector').jqxTabs('keyboardNavigation'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtabs.js”></script> The below example illustrates the jQWidgets jqxTabs keyboardNavigation property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href=" jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxtabs.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTabs keyboardNavigation Property </h3> <div id='jqxTabs'> <ul style='margin-left: 20px;'> <li>GeeksforGeeks</li> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ul> <div> A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, ... </div> <div> HTML stands for HyperText Markup Language. It is used to design web pages using a markup language. HTML is the combination of Hypertext and Markup language. Hypertext defines the link between the web pages. </div> <div> Cascading Style Sheets, fondly referred to as CSS, is a simply designed language intended to simplify the process of making web pages presentable. CSS allows you to apply styles to web pages. More importantly, CSS enables you to do this independent of the HTML that makes up each web page. </div> <div> JavaScript is a lightweight, cross-platform, and interpreted scripting language. It is well-known for the development of web pages, many non-browser environments also use it. JavaScript can be used for Client-side developments as well as Server-side developments. </div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTabs').jqxTabs({ theme: 'energyblue', width: 550, height: 150, keyboardNavigation: false }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtabs/jquery-tabs-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtabs-keyboardnavigation-property?ref=asr10
PHP
jQWidgets jqxTabs keyboardNavigation Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0197161306, 0.0162113607, -0.0136440815, 0.0363457538, 0.089710556, 0.0131248562, 0.0279804617, 0.0198459364, 0.00121242658, -0.0102546951, 0.00826433208, 0.0103484439, -0.00874028914, -0.0433264486, -0.0157065578, -0.0053725373, -0.0243891552, -0.0407303236, -0.0156777129, 0.0446245112, -0.00757203251, 0.00871865451, -0.0609224103, -0.00639295857, -0.0251391474, 0.0206968877, 0.00403841725, 0.0398649462, -0.0359130688, 0.00569705293, -0.0307208169, -0.00296210684, 0.00464417972, -0.02273052, -0.0228170566, -0.0239564683, -0.0109902639, -0.0265670158, -0.0471629426, -0.0161392465, 0.00639295857, 0.007672993, -0.0108388234, -0.00554921804, -0.0163844358, 0.0155767519, 0.00651194761, -0.00824269839, -0.0118195815, 0.0230766702, 0.0180286486, 0.0256583728, 0.00191103679, 0.0402110964, 0.0474225581, -0.0190959442, -0.0195430554, 0.0168171227, 0.025932407, 0.00261956267, 0.0394611061, -0.0304900501, -0.0263650957, -0.0393168777, -0.00337135722, 0.0358842202, -0.00567902438, 0.0195142087, -0.0233507063, -0.00589536782, -0.0347880796, 0.0285141096, 0.018749794, -0.00302160159, -0.00231127278, -0.0267833602, 0.010925361, 0.0385668837, 0.0220382195, 0.0310669672, -0.0227593649, -0.0460956469, -0.0713069066, -0.0367207527, 0.0277641192, -0.00846625306, 0.0374130495, -0.0378168933, 0.0467879474, 0.0159805939, -0.0395764895, -0.0321342647, -0.00953355, -0.0199324731, 0.0150575275, -0.00918739941, -0.0275045056, 0.0100022946, -0.0231487844, 0.0185190272, 0.0210718848, -0.0095047038, -8.65375114e-05, -0.0437879823, 0.0133484108, 0.0246055, 0.0551532395, 0.0186344106, -0.0091297077, 0.00251319353, 0.0212738048, -0.0142714782, -0.00901432429, 0.0236247405, -0.0528744198, 0.033086177, -0.0372976661, -0.0216632243, 0.00899990089, 0.0115527576, 0.00248975633, 0.033086177, 0.006829252, 0.056134, -0.0556724668, 0.0370380543, -0.0193699803, 0.00101140712, 0.0392880291, -0.0286150705, 0.00184613361, 0.0374707431, 0.00996623654, 0.00731242, 0.0283843037, 0.0289179515, -0.0298265964, -0.0194853637, -0.0483744703, 0.00753597496, -0.0229035951, -0.0185334515, -0.0040600514, 0.0308650453, -0.0255574118, 0.0390572622, 0.0154181, 0.0174517315, -0.0215766858, 0.0382207334, -0.0126056308, -0.00191464252, -0.00889173, 0.0172930788, 0.0430668369, 0.0279660393, -0.0146176284, 0.0495571494, -0.00223374949, -0.0106801717, 0.0409610905, -0.024043005, 0.025701642, 0.0205670819, -0.00378241041, 0.00954076089, 0.0341823176, 0.00502999313, -0.0407303236, 0.0405860916, -0.020740157, -0.0308362, -0.0332592502, -0.0169613529, -0.0135791777, -0.0313842706, 0.0334323272, -0.0227593649, 0.0136657152, -0.0298265964, -0.0270429719, -0.0160382856, 0.0202930458, 0.0156777129, 0.027216047, -0.0199324731, 0.0203940067, 0.0253554918, -0.0199468974, 0.00507326145, -0.0383649655, 0.0119638108, -0.00363097, 0.0441341326, 0.000406771374, 0.00334972283, -0.0177978817, 0.0125623625, 0.00830039, -0.011163339, 0.0212593824, 0.00840856135, -0.000211047867, 0.0102402726, 0.0207257345, 0.0504225232, 0.0240574293, -0.0493263826, 0.0401822515, -0.00967777893, -0.0317592658, -0.00303061586, 0.0387976505, 0.000912249612, -0.0227593649, 0.00933884, -0.0242160801, -0.0293939076, -0.0119493883, -0.00472711166, 0.0136368694, -0.00575113902, 0.00894220918, 0.0485475436, -0.0706146136, 0.00819942914, 0.00727636227, -0.0361438356, -0.0146464743, 0.0228603259, -0.01645655, -0.0468167961, -0.0212305356, -0.00806241203, -0.000548070937, 0.0209420789, 0.00417543482, -2.43386748e-05, -0.0211295765, 0.0159950163, 0.00109884609, -0.00181818916, -0.00246992474, -0.0212738048, 0.0276631583, -0.00642180443, -0.0141200377, 0.00511653, -0.0127570713, 0.0148123372, 0.0113364141, 0.00351198064, 0.00879798084, -0.0250526089, 0.0140046543, 0.00556003535, -0.00651194761, 0.00389418798, -0.0198603589, -0.00299816416, 0.0464994907, 0.0532782637, -0.000347952911, 0.0161969382, -0.00199577142, 0.0171776954, 0.0406726301, -0.0140046543, -0.00267545134, -0.0319323428, 0.0143435923, -0.00572589878, 0.0564513057, 0.0368649811, 0.00539417146, 0.00404923456, -0.0313842706, -0.00806241203, 0.0179276876, 0.011805159, 0.010117677, 0.0162690524, 0.00420067506, 0.0285141096, 0.0269997045, 0.00517422194, 0.0287593, 0.0107090175, -0.0411053188, 0.0347592346, -0.0188219082, -0.0284996871, -0.0172065422, 0.00373914163, 0.0193411335, -0.0206824653, 0.0199468974, -0.0014332775, 0.0230766702, -0.00810568, -0.0130815869, -0.00547349779, -0.03507654, -0.00848788768, 0.00180827349, 0.0213603433, 0.0377015099, 0.018446913, -0.0159950163, -0.0347015411, 0.0284708422, 0.00853836816, -0.0307208169, -0.0363746025, -0.0187065247, -0.000122932848, 0.0109037263, 0.011704199, -0.00334611721, -0.0181873012, 0.010117677, -0.0084374072, -0.0322208, 0.0193555579, 0.00268987427, -0.0245766528, -0.0080552, -0.00400957139, 0.00245910767, -0.044249516, -0.0442783609, 0.0109758414, 0.00158201391, 0.0207834262, 0.00742059154, -0.0470764078, -0.00915134232, 0.00756482081, 0.0009510112, 0.0303458218, 0.00367423845, -0.0188651774, 0.0359996036, -0.0137234069, -0.00288278097, -0.030316975, -0.0171200037, 0.00747107202, 0.0419995412, -0.00976431556, 0.00136026158, 0.043470677, -0.000483167765, -0.00410692627, 0.00211115484, -0.00939653162, -0.0234805122, -0.0328265615, -0.0453456566, 0.0119854454, 0.0134493718, -0.00175508892, 0.0452014282, 0.0107378634, 0.00472711166, -0.0110191097, -0.0183747988, -0.0319323428, -0.0136945611, 0.00223194668, -0.016355589, -0.0249516498, -0.0114806434, 0.0312688872, -0.0355957635, -0.00347231771, -0.0374418981, -0.0173651949, -0.00590257952, -0.0108893039, -0.0200622808, 0.018144032, -0.00855279062, 0.04546104, -0.00931720529, 0.0285573788, 0.0107378634, -0.0295381378, -0.00278722914, 0.0224997532, -0.0328554101, 0.0390861109, -0.0336054, -0.0290477592, -0.0137522528, -0.00248254486, 0.0129806269, 0.0027854261, 0.0182017237, 0.00611171173, 0.0286583398, -0.0139541738, 0.0130094728, -0.0117402561, -0.0115599697, -0.0380765051, -0.0549513213, -0.0238410849, 0.00442062458, -0.00320369075, 0.000727906707, -0.0199757423, -0.0157209821, 0.0369515195, -0.00466581434, 0.050826367, 0.0448841229, 0.0744222626, 0.0061045005, -0.0551820882, 0.029307371, -0.0127498601, -0.0276920032, 0.0164853968, -0.0309804287, -0.0304323584, -0.0524128862, -0.00925230235, 0.0259756763, 0.0289467983, 0.00276920036, -0.00238158437, -0.0129950494, -0.0243891552, 0.014365227, 0.000833825, 0.0529898033, 0.00705280714, -0.0182882603, -0.00466220826, -0.0285285339, -0.0315285, -0.0072511225, -0.0123820761, -0.0269275885, 0.0263506733, -0.0224853307, -0.000341642881, 0.0294371769, 0.019124791, -0.0259756763, -0.0441341326, -0.0275910441, -0.0191536359, 0.00822106376, -0.0199180506, -0.0149854124, -0.0149277207, 0.00382567919, -0.00631363271, -0.00686530955, 0.00739895739, -0.0376149714, -0.0228026342, -0.0034939521, -0.026610285, 0.00739895739, 0.0409610905, -0.0123171723, 0.00597469416, 0.0099013336, -0.0160094406, 0.0644416, 0.0523263477, 0.0288891066, -0.0179709569, -0.0166584719, -0.00144499622, -0.0373265147, 0.0020047857, 0.0306054335, 0.0164132807, 0.054807093, 0.0202642, -0.00280706049, -0.00808404572, 0.0293506403, 0.00289900671, -0.00197593984, -0.00351378368, 0.0248795357, 0.00782443304, -0.0474225581, -0.00933162868, 0.0113580488, 0.028600648, -0.0332304053, -0.0155623294, 0.00886288378, 0.025932407, 0.0211728439, -0.00785327889, 0.000724301, 0.0304323584, 0.00786049105, 0.013218605, -0.0259179845, 0.0188363325, 0.0147618577, -0.0407880135, -0.0134493718, -0.0497879162, -0.0346438512, 0.00550594926, -0.0236824322, -0.0369803645, -0.057403218, -0.00956960674, 0.0125912083, -0.0281679612, 0.0272448938, 0.00819221791, 0.00791818276, 0.0100095058, 0.0374418981, 0.0459802635, -0.00196512276, -0.0299996715, -0.04026879, -0.0151873333, -0.0414226241, -0.00696987566, 0.00706001883, 0.0221536029, -0.0230189785, 0.0428360701, -0.0202353541, -0.0123460181, -0.00918739941, 0.0246343445, 0.0043773558, -0.00613695197, -0.026336249, -0.0130094728, 0.0210286155, 0.00863211695, -0.0165575109, -0.0148700289, -0.00137107866, -0.00172083452, 0.0357111469, 0.00135936006, -0.00985085312, -0.0113003571, -0.0221968722, -0.0254852977, 0.00934605114, -0.00261415401, 0.0126056308, -0.0260766372, -0.0133484108, 0.00227882108, 0.0413649306, 0.0137378303, -0.000646777742, -0.0100744087, 0.0251535699, 0.0169469304, -0.0169325061, -0.00298013561, -0.00226439815, -0.0139685972, 0.00889173, -0.0122450581, 0.00478480337, 0.00923788, 0.0377880484, -0.0256439503, -0.00241043023, -0.0078316452, 0.00391942821, -0.0197449755, 0.0257881787, -0.00370308431, -0.0228603259, 0.00629560417, -0.00398072554, -0.01008162, -0.0212882273, 0.0141488835, -0.00702756736, 0.0308362, 0.000841937901, -0.0150431041, 0.0310381204, 0.0205093902, -0.0403264798, 0.00295850122, 0.00995902531, -0.0379611216, 0.00291883829, 0.0201632399, 0.0544897877, 0.0295669828, 0.0311535038, 0.000893770251, -0.00892778672, 0.0137306191, 0.0100022946, -0.000147384198, -0.0177690368, -0.0109686293, 0.0260622147, -0.0219949502, -0.00525354827, -0.0100888321, -0.0160815548, 0.00449273922, -0.00342904893, 0.00752155203, 0.00936768577, 0.00618743198, 0.00587373367, -0.0182161462, 0.0352784581, -0.0252545308, -0.0268266294, -0.00252581364, -0.00471629435, -0.0218795668, -0.00649752468, 0.000759456831, -0.00977152772, -0.013759464, 0.0591339655, 0.022326678, -0.0204949677, 0.0257737562, -0.0173796173, 0.0141921518, 0.0158219412, 0.0221824497, -0.035509225, 0.0726915076, -0.0240574293, 0.0141056143, 0.0130094728, -0.00305225025, -0.00104385871, -0.0129085127, -0.0163988583, -0.00221391814, 0.0067246859, 0.0125695737, 0.00768020423, 0.0178699959, -0.0137234069, -0.0191680584, -0.0195430554, 0.0181007627, -0.0164277051, -0.0104566161, 0.0438168272, 0.0213026516, 0.0166440476, 0.00478480337, 0.0590185821, 0.0281968061, -0.00494345557, 0.0272881631, 0.0218795668, -0.0133700455, 0.0179132652, 0.000383108767, -0.0124686137, -0.0147618577, 0.00701675, 0.0210574605, 0.0221103337, -0.00191464252, -0.000727455947, 0.0145887826, 0.0103412326, -0.00961287506, 0.0214613024, -0.0124325557, -0.0294804461, 0.00775953, 0.0105287302, 0.0142065752, -0.00319107086, 0.023033401, 0.0264949016, 0.0192834418, 0.00204264582, -0.00923788, 0.00867538527, 0.00870423112, -0.00425115507, -0.00585931074, 0.0365188308, -0.0206680428, -0.0195142087, -0.00769462716, 0.000980758457, 0.00650113076, 0.00486412924, 0.0205670819, -0.024418002, -0.00244648755, 0.02772085, 0.00326138246, -0.00262857694, 0.0495859943, -0.0173796173, 0.0128796669, -0.00338397734, 0.00618743198, -0.0268987436, 0.00788212474, 0.0148556065, 0.0094325887, -0.016355589, -0.00719703641, -0.00497951265, -0.0529321134, 0.00184252788, 0.0071465564, -0.00152071647, -0.00342003466, 0.00233651279, 0.0162257832, 0.0292208325, -0.00840856135, -0.0362592191, 0.0291054491, 0.00582325365, -0.00528239412, -0.00595666561, 0.000340290746, -0.00925951358, -0.0169180837, -0.0172498114, 0.0265958626, 0.0242305044, 0.0122234235, 0.00180106203, -0.000568353164, 0.0202353541, -0.00576916756, -0.00730160251, -0.00739895739, -0.0121440971, -0.0483744703, 7.26779908e-05, 0.0206247736, -0.0293217935, 0.00461172825, 0.0242305044, 0.0332015604, -0.0206247736, 0.0104061356, -0.0416822359, 0.0212449599, 0.0178844184, -0.0124974595, -0.02144688, -0.0178699959, 0.00412856042, -0.0269852802, -0.0281823836, -0.0200622808, 0.0727492049, 0.0206968877, 0.00347231771, -0.00951191504, -0.0320477262, -0.0130887991, -0.00277460902, 2.83528661e-05, -0.0149854124, 0.00274215732, 0.0316438824, -0.0137089845, 0.0260910597, -0.0318746492, 0.0288602598, 0.0178844184, 0.0171488505, 0.0169469304, 0.00193086825, 0.000575113867, 0.029711213, 0.0247641522, 0.0117979478, -0.0215766858, -0.00494345557, 0.00912249647, 0.014062346, -0.0195863228, -0.00326498831, -0.0104638273, 0.0131897591, 0.0120575605, 0.0403841734, -0.0258891396, -0.0283843037, 0.0142137865, -0.034268856, 0.00207870314, -0.0239853133, 0.000133637353, -0.0165430885, -0.00267545134, -0.00250237645, -0.00594224269, 0.0113003571, -0.0142570548, -0.00199577142, 0.0182017237, -0.00414658897, 0.0500186831, -0.00325236819, -0.020033434, -0.0367207527, 0.0430668369, -0.0161680914, 0.00735929422, 0.0275045056, -0.00848067645, -0.00312075904, 0.00306847598, -0.0352207683, 0.00277460902, -0.00535090268, -0.000988871325, 0.0234516654, 0.0162113607, 0.00770905, 0.00489297509, -0.00914413, -0.00172624306, -0.0029693183, 0.0141849406, -0.0294371769, 0.0508840568, -0.0134493718, 0.0142354211, 0.0439033657, 0.0178988427, 0.018446913, 0.014300324, 0.00668502273, 0.0233074371, -0.00604320318, 0.0101465229, -0.040095713, 0.0348169245, 0.0167305861, -7.36357615e-05, -0.0126993796, -0.0161392465, 0.00426918408, 0.0233218595, -0.00193988252, -0.0441341326, 0.00204985728, -0.0300862081, -0.0254852977, 0.0112787224, -0.0207545795, 0.0115888156, 0.00716458494, 0.0278218109, 0.0104133477, -0.0089782672, -0.0240285825, 0.00150899787, 0.0219949502, -0.0218218751, 0.0458360352, -0.0136152357, -0.0490956157, 0.00327941123, -0.00927393697, 0.0432976037, -0.021749761, -0.0266535543, 0.0309515838, 0.00127552683, -0.00777395302, 0.00884124916, 0.00869702, -0.0402110964, 0.000940194, 0.0225286, -0.00830039, -0.0180286486, 0.00955518335, 0.0374130495, 0.0101609463, -0.0117835244, 0.00336054014, -0.0120647717, -0.00239420449, -0.0244756937, -0.00416461797, 0.0163267441, 0.00253482792, 0.0144373421, 0.0191103667, 0.0228891727, 0.00695905834, -0.0100239282, 0.00399875408, 0.00539777754, -0.043470677, 0.0119638108, 0.0176824983, -0.0331150219, 0.016355589, -0.0139902309, 0.022326678, 0.0333457887, -0.00487855216, -0.0195719, -0.0140118655, -0.0015252236, -0.0402399451, 0.000589536794, 0.0105359424, -0.00301619293, 0.0520090461, 0.000337361096, -0.0236103181, -0.0232785903, 0.0466148742, -0.0132330284, -0.016355589, -0.0156488661, 0.0340669341, 0.0113508366, -0.0219372585, -0.00748549495, 0.00466220826, 0.00372832455, -0.0183171071, 6.73257309e-05, -0.0148844523, 0.03499, 0.0252401084, 0.00969941262, 0.0330573283, -0.00780279888, 0.0019020224, -0.0292208325, -0.0287160315, -0.0117330439, -0.0200478565, -0.00469466, 0.0042259153, -0.0456341133, -0.0152161792, 0.00320008514, 0.0286150705, -0.025701642, -0.00524273096, 0.00175869465, 0.00562493829, 0.0108893039, -0.00949749164, -0.00280345487, 0.0417976193, 0.0100311404, 0.0176392291, 0.00868980866, -0.0137234069, -0.0465860292, 0.0154036768, -0.00172984879, 0.0385668837, -0.0166440476, -0.026913166, -0.00119800365, 0.0115888156, 0.0114517976, -0.0240285825, -0.0104566161, -0.000418715354, 0.0284419954, 0.0118556395, -0.0362015255, -0.00609368319, 0.00603959709, 0.0164709724, -0.0178699959, 0.0525571145, -0.0132690854, -0.0128652435, -0.0211728439, -0.030316975, -0.0535955653, -0.0120647717, 0.0250670332, 0.0208266955, 0.0171921197, -0.000304233428, 0.00299636135, 0.0377015099, 0.00356786954, -0.0146825314, -0.00260694255, 0.00713573908, 0.0163700134, 0.0197449755, -0.010860458, -0.00189300813, 0.0190094076, 0.00840135, 0.0120864064, 0.0487783104, 0.0159517489, 0.0201920867, -0.0464994907, -0.00733044837, 0.0278362334, -0.0210141931, -0.0262352899, -0.00622348953, 0.00360933552, -0.000876643055, 0.0273891222, -0.00963451, 0.019124791, 0.000316402788, 0.00468384288, -0.0242305044, -0.0465571806, -0.0110551668, -0.00676434906, 0.00862490572, -0.0100599863, 0.0123532303, 0.017062312, 0.00300357281, -0.00114391779, 0.0102258492, 0.00799750816, 0.0104421936, -0.00111777615, 0.0139685972, -0.0143940728, -0.00383289065, -0.0164132807, -0.000772527594, 0.00103484443, -0.0137234069, -0.0358842202, 0.0141200377, 0.00948306918, 0.0069879042, -0.000443504745, -0.0038833709, -0.00967777893, -0.00527878804, 0.00373193016, -0.00143147469, 0.00814173743, -0.0147690689, 0.0160959773, -0.0113724712, 0.00303422147, -0.013860425, 0.0277929641, 0.0402399451, -0.012713803, 0.0063677188, 0.00986527652, 0.0274612382, -0.00348854344, -0.00306487014, -0.00852394477, -0.00109884609, 0.00146122195, -0.0185478739, -0.00604680879, 0.00136206439, -0.0097498931, -0.00249516498, -0.026913166, 0.00871865451, 0.00848788768, 0.0240862742, -0.000841937901, -0.0254997201, -0.0166728944, -0.012850821, 0.0718838274, -0.0281391144, -0.00363998418, 0.00989412237, -0.00120882085, -0.0120215025, -0.00413937774, 0.0215911102, 0.0200767033, -0.00236716145, 0.00720064202, 0.00627396954, -0.00643622736, -0.00886288378, -0.00353722088, -0.00577277318, -0.0036219554, 0.00169920013, 0.0206824653, -0.00853836816, -0.0133484108, 0.0173796173, 0.0235958956, 0.00339479442, -0.000658496399, 0.0193844028, -0.0215622634, -0.0167450085, -0.0125912083, 0.00457567116, 0.0154325226, 0.0160815548, 0.0269564353, 0.00118177792, 0.0140479226, 0.0226151366, -0.0174228866, 0.00925951358, -0.027115088, -0.0226439815, 0.00359491259, -0.0209709238, -0.0133339884, -0.00680761784, 0.00283590634, -0.00838692766, -0.0190671, -0.00200298289, -0.0340092406, 0.0245045386, -0.0190238301, 0.00988691114, -0.0202642, -0.00951912627, 0.000885206624, 0.0157209821, 0.00276920036, -0.00830039, 0.0357976854, -0.0167161636, -8.81713568e-05, -0.0106008453, 0.00405284, -0.0311246589, 0.0255285669, -0.0017758219, -0.0173075031, -0.00710328761, 0.00809846912, 0.0334611721, 0.0184901822, 0.00494706118, 0.0161969382, 0.0100383516, -0.0319034979, 0.00501917582, -0.000621086918, 0.00577637879, 0.0131897591, -0.0258026011, -0.021418035, 0.021043038, 0.0040276, -0.00182900636, -0.0144301299, 0.015345986, -0.0353073068, -0.0109109376, 0.00742780324, 0.00877634622, 0.00874028914, 0.0153315626, -0.0347880796, 0.0109397834, -0.00227521546, -0.0135719664, 0.0166007802, -0.00458288239, 0.0110335331, -0.012850821, 0.0226584058, 0.0194709394, 0.00263578841, 0.0233074371, 0.00599632831, -0.00735208299, 0.0150431041, 0.00976431556, -0.0192401744, 0.0245333854, 0.0337496288, 0.00666338857, -0.0168748144, 0.0102258492, 0.0169613529, -0.00613695197, -0.00508768437, 0.0162690524, -0.00752155203, 0.0366630591, -0.0255285669, 0.0260622147, -0.00862490572, 0.0204084292, -0.000755400397, -0.0046874485, 0.0270285495, -0.00403481163, -0.00309191318, -0.00560330413, -0.0467302576, 0.0231776312, -0.00903595891, -9.02559186e-05, -0.017437309, 0.022023797, -0.0156200211, 0.0102835409, -0.00367063284, 0.000775682623, -0.0144589758, 0.0053725373, 0.0057944078, 0.00790375937, 0.00314059062, 0.029913133, -0.00237797876, 0.00733044837, -0.0142209977, -0.00866817404, -0.0370380543, 0.00933162868, 0.0153315626, -0.00530042266, 0.00211476046, -0.0134421606, -0.0119205425, 0.00365621, -0.0187642165, 0.011805159, 0.0237545464, 0.0262208655, 0.0259035621, 0.00126470963, -0.00981479604, -0.00741338031, -0.00142696756, -0.0324804112, 0.015547906, 0.00155497098, 0.00414298335, -0.0163988583, 0.0123460181, 0.000181075244, -0.00987248775, 0.0128940893, 0.025326645, 0.00309371599, 0.00284672366, 0.014668108, -0.00804798864, -0.0110695902, -0.00957681797, 0.0152017567, 0.00816337205, -0.00299816416, -0.00585570512, -0.00880519208, -0.00922345649, -0.00451437337, -0.00465139141, 0.0118916966, 0.0201055482, 0.00637853565, 0.0204805452, 0.00591339683, 0.00951912627, -0.0119566, 0.00732323714, 0.00897105504, -0.0103845019, 0.020336315, -0.00311535038, 0.0250093415, 0.00825712085, 0.00966335554, -0.0149709899, -0.0252401084, 0.0329419449, -0.0110335331, 0.0298265964, -0.0338938609, -0.00390500529, -0.00384010212, 0.00269348, 0.0039086109, 0.0245766528, -0.0184180681, 0.00491460972, 0.00774510717, -0.00923788, -0.00191103679, -6.14100863e-05, 0.00313518196, 0.0111993961, 0.00504441606, -0.00776674179, -0.0222545639, 0.0109974751, 0.0258458704, 0.0038040448, 0.0176392291, 0.0237689707, 0.0217353385, 0.0248074196, 0.0102114268, -0.000627397, -0.00884124916, -0.0127787059, 0.0146248396, -0.00555642927, -0.00773789594, -0.0120575605, 0.0181007627, 0.0101970034, -8.38332126e-05, 0.0205238126, -0.0265525933, -0.0210141931, 0.0140479226, -0.00107000023, 0.00706723, 0.0207834262, -0.0344419293, 0.0262497123, -0.00121873664, -0.00814173743, -0.0166296251, 0.00702756736, -0.0427495316, -0.00768741546, 0.0104782507, -0.0412495472, -0.0216343775, -0.0268410519, 0.0086032711, -0.0167161636, -0.0276631583, -0.010218638, -0.012612842, -0.00652997661, 0.00186957081, 0.0147979148, -0.00535090268, 0.0240574293, -0.019831514, 0.0298265964, -0.000525985844, 0.0187642165, -0.0124902474, -0.00993739069, 0.0189805608, 0.00592060806, -0.0022445668, -0.00458648801, 0.021418035, -0.00684728054, 0.0169325061, -0.00694824103, 0.0340957791, 0.0313265808, 0.000301979861, 0.0127642835, -0.0186776798, 0.0264516324, 0.0402399451, 0.023711279, -0.0320477262, 0.0205526594, -0.0226151366, 0.00977873895, 0.000273584737, 0.00585570512, -0.00128003408, 0.00287556951, 0.0125479391, 0.00704559591, -0.0151296416, 0.0108027663, -0.0204805452, -0.00819942914, -0.0312977321, -0.0253410675, 0.0191969052, -0.01200708, -0.0100383516, -0.000770724728, 0.00710328761, 0.0094470121, -0.0268410519, -0.0014891664, -0.0304323584, -0.0422879979, -0.00432687579, 0.0300285164, 0.00183080928, -0.00049984426, -0.0177257676, 0.0156055978, -0.013658504, -0.00817779452, -0.00119529944, -0.0209997706, 0.0396341793, -0.000234597785, 0.0202065092, -0.0162978973, -0.018446913, -0.0121008288, 0.013961385, -0.0158940572, 0.00782443304, 0.000926672539, -0.00437375, 0.00575474463, 0.0131753366, 0.000265021139, -0.00769462716, -0.00907201599, -0.000904587447, 0.00960566383, -0.00376438187, 0.0200911257, 0.0271006636, 0.0150719499, 0.0239853133, -0.00796145108, -0.0121801551, 0.0173075031, 0.00623070076, 0.00392663945, 0.0224997532, 0.0061045005, 0.00118358072, 0.0142209977, -0.0329131, -0.00623070076, 0.0019813485, -0.00353000942, 0.00193267106, -0.0169036612, 0.00693021249, 0.0118412161, 0.000733766, 0.0271727797, 0.00976431556, -0.000711230154, 0.00786049105, -0.00178303337, -0.000383784849, -0.0272593163, 0.00362916687, -0.00884846, -0.0105575761, -0.0164132807, -0.0129229352, 0.00832202379, -0.00444947043, -0.0059783, 0.0119205425, 0.0379034318, 0.0216776468, -0.0304323584, -0.00266643707, -0.0155046377, 0.0183747988, -0.0479994752, 0.0202209316, -0.0138027333, 0.00977873895, 0.00480643753, 0.000151891363, -0.0129445698, 0.0109974751, 0.0550667048, -0.00749270618, -0.00445668167, -0.00168207288, 0.0102619063, -0.0094470121, -0.00238338741, 0.0368649811, -0.0216776468, -0.0236103181, 0.0083580818, 0.013557544, 0.00101321, 0.0155767519, -0.00296030403, 0.0120431371, 0.0092811482, -0.00123496237, -0.028067, -0.000397081, -0.0125046708, -0.0182738379, 0.0148267606, 0.00157390104, -0.0236103181, 0.0175526924, -0.00477398606, -0.0181584544, 0.00762972422, -0.00990854483, 0.00986527652, 0.00418625213, -0.00901432429, -0.015245025, -0.00858163647, 0.0175671149, -0.0232497454, 0.0029999672, 0.00883403793, -0.0156488661, -0.00697708689, -0.011062379, 0.0192545969, -0.0113580488, -0.00955518335, -0.0154613685, 0.0126272654, -0.013153702, -0.0118412161, 0.0147618577, -0.0122594805, 0.00733405398, -0.00343085174, -0.00716458494, -0.00532205682, 0.00202642, 0.0150719499, -0.0150863733, -0.00252941926, 0.0128868781, 0.0133412, 0.00633887295, -0.00832923595, 0.00232930132, -0.00629560417, -0.00344347185, 0.0118340049, -0.0460956469, 0.00337135722, -0.00213098619, 0.0159084797, -0.00991575699, -0.0113868946, 0.018144032, -0.00387976505, -0.00276739756, 0.0041790409, 0.00176500471, -0.0116753532, 0.00624512369, 0.0219661053, 0.014098403, 0.00519946218, 0.00844461937, 0.0171921197, -0.00198675715, 0.00848067645, 0.00150178641, -0.0110768015, -0.010218638, 0.00248434767, -0.0055239778, -0.0180863403, 0.0159084797, -0.0173796173, -0.0136657152, 0.00827875547, 0.0117186215, -0.00669584, -0.019730553, 0.00109884609, 0.0137378303, -0.00489658071, -0.00382928504, 0.019730553, 0.0212738048, 0.0136008123, -0.0168748144, -0.00739895739, 0.0129878381, 0.0104638273, -0.0140695572, 0.00566099538, -0.00377519894, 0.0080552, -0.00150629354, 0.008531156, 0.00906480476, -0.00264480268, -0.024418002, 0.0188219082, 0.00991575699, -0.0282689203, 0.00195250264, 0.0104926731, -0.0147834914, 0.0131176449, 0.0230910927, -0.00143598183, -0.00964172091, -0.0133267771, -0.0398937948, 0.0100311404, -0.0084374072, -0.0155190602, 0.00680761784, -0.0135431206, 0.0197738223, -0.0272448938, -0.00734126568, -0.00188219093, -0.015345986, 0.00428360701, -0.0234805122, -0.00830760133, -0.0074494374, 0.0128724547, 0.0111489166, -0.0278650783, 0.00898547843, 0.00173255312, -0.00208230899, 0.0171776954, -0.000358544756, -0.0223555248, 0.0126993796, 0.0188219082, 0.00509129046, 0.00621988392, 0.00307749026, 0.000603509, 0.0262497123, -0.00178393477, -0.00379683333, 0.00189481094, -0.0178123042, -0.00233290717, -0.00962729845, 0.0274468139, 0.0299996715, 0.00339659746, 0.0371534377, -0.0017082144, 0.00643983344, -0.00643262174, -0.0188940242, 0.0254420284, -0.0111056473, 0.00806962326, -0.00116014353, 0.0228603259, 0.00478119776, 0.00233831559, 0.0192545969, -0.00651555369, -0.00477398606, 0.00836529303, 0.00629921, 0.00624512369, 0.000615227618, -0.00126921688, -0.0202353541, 0.00532205682, 0.0178844184, -0.00878355745, 0.0106369024, 0.000569254567, -0.0117763132, -0.00530402828, -0.00616940344, -0.00502999313, -0.0118412161, -0.0120287146, -0.000198315131, -0.00721145933, 0.00905038137, 0.00334792, -0.0342977, 0.010860458, 0.00537614292, 0.0258747153, -0.00659487955, 0.00917297602, 0.0058809449, 0.00146933482, 0.00699872151, 0.0165286642, 0.0173651949, 0.00476316875, 0.00242485316, 0.0179565344, 0.0107739205, 0.0118989078, -0.023336282, -0.019730553, -0.012209001, 0.0122378469, 0.018345952, 0.00400236, -0.00535450876, 0.00736650592, 0.0088268267, -0.015446946, -0.0112426654, 0.0166728944, -0.00045139229, 0.00548070902, 0.0200767033, -0.0138532137, -0.0194997862, -0.019759398, -0.0214757267, -0.0129301464, -0.000938391138, -0.00765135838, -0.0170190446, 0.00704199029, -0.00110155041, -0.00460451702, -0.0099734487, 0.0173796173, -0.0103628673, 0.010658537, 0.0196007472, -0.00447831629, 0.00457927678, 0.00267364853, 0.00440620165, 0.00945422333, 0.0245045386, 0.0245622303, -0.00537974853, 0.0158652104, 0.00994460285, -0.0121873664, -0.0109037263, 0.0126200542, 0.00508407876, -0.0238410849, -0.00025014751, 0.0208411179, 0.0144733991, 0.0215911102, 0.0103412326, 0.00773789594, -0.00677156029, -0.00371390162, -0.0170046203, 0.00347231771, 0.00221391814, 0.00455043092, -0.00259973109, 0.0196584389, -0.0120503483, -0.0101897921, -0.00232028705, 0.0136945611, 0.0168459695, -0.0238410849, 0.00558527512, 0.0134637943, -0.0116248727, -0.00602156855, 0.0165286642, 0.01774019, 0.0106080566, 0.025326645, -0.00639295857, -0.035682302, 0.0120864064, 0.00791818276, 0.017841151, 0.00933162868, 0.0151007958, 0.0166296251, -0.00899269, -0.00690857787, -0.00120791944, -0.00781722181, -0.000596748258, -0.0150575275, -0.00773789594, -0.0072511225, 0.0262641348, 0.00698429858, 0.00733405398, -0.015850788, -0.00144048897, -0.0201488174, 0.00571508147, -0.0196440145, 0.00876192283, 0.0193555579, -0.0159661714, 0.0273747, -0.0224132165, -0.00757203251, 0.0216488019, -0.00146122195, -0.0149132982, -1.1324245e-05, 0.00771626132, 0.00696266396, -0.0173507705, 0.00560690975, -0.0207113121, 0.0355957635, 0.021418035, -0.0179276876, -0.0185911413, 0.00064632704, 0.00523912534, 0.00725833373, 0.0115094893, -0.00203543436, 0.0184757598, -0.00606483733, 0.0378168933, 0.00124487816, -0.0285141096, 0.0122450581, 0.00299636135, 0.00637853565, 0.010218638, -0.00645065028, 0.00400236, 0.00881240331, -0.00849509891, 0.0101897921, -0.00976431556, 0.0193988252, 0.000599452585, -3.90714631e-05, 0.00744222617, -0.025023764, 0.0068364637, -0.00106909883, -0.00899269, 0.0075143408, -0.0133916801, 0.00468023727, 0.0152882943, -0.00429081824, -0.0074494374, 0.00910807308, -0.00349755771, 0.00565017853, -0.0113508366, -0.00863932818, 0.011704199, 0.00646867882, -0.034903463, 0.0241872352, 0.0163267441, 0.0238843542, -0.0227882117, -0.0255718343, 0.00529681705, 0.0178123042, -0.00493984949, -0.00594945392, -1.00706902e-05, 0.0231632069, 0.00916576479, -0.0134854289, -0.00650473638, 0.00776674179, -0.0050624446, -0.00975710433, 0.013153702, -0.0156200211, 0.0149998358, -0.0102546951, 0.00733405398, 0.012915724, 0.00804798864, 0.00857442524, -0.0125046708, 0.0104710395, 0.0101104658, 0.00609368319, -0.022124758, 0.0196440145, 6.6762339e-05, -0.0239708908, -0.0227882117, 0.0257449094, -0.0232497454, -0.0014080375, -0.0035173893, -0.000333980715, 0.00703117298, 0.00662012, -0.00274215732, -0.00706723, 0.00225898973, 0.00761530129, -0.0153604085, -0.0125623625, 0.0076080896, 0.0160671324, 0.0176824983, -0.00443144189, 0.0107955551, 0.00899990089, 0.0147474343, 0.00125749828, 0.024043005, 0.000842839305, -0.0233074371, -0.0124902474, -0.0203218926, 0.00851673353, -0.0264372099, 0.00287376647, 0.0084518306, 0.00969220139, -0.00265021133, 0.0120647717, -0.00345609197, 0.00933884, 0.00248615071, 0.0116825644, -0.0176536534, -0.0159517489, 0.0111993961, 0.0169613529, 0.0256583728, -0.0090575926, 0.0126344766, -0.00573671609, 0.00940374285, 0.00981479604, -0.00517422194, -0.00624873, -0.000615227618, -0.00605402, -0.015245025, 0.00487494655, 0.00386894797, 0.0151873333, -0.0122450581, -0.0278362334, 0.00742780324, -0.0132907201, 0.00350657222, -0.00378962187, -0.0192401744, -0.000173751105, 0.0108027663, 0.0143868616, 0.000809486315, -0.0081345262, 0.0215766858, 0.00161446549, -0.00278903195, 0.00541580608, 0.0140911918, -0.0142426323, -0.00109073322, 0.0153892543, -0.00607204856, 0.00534369145, -0.00523191364, -0.0319034979, 0.0343265459, 0.00970662385, -0.00286114658, -0.0124614015, -0.0114085283, -0.00630642101, -0.0138027333, 0.0132041825, 0.00513095316, 0.0186055657, 0.0160959773, -0.000692750793, 0.0250958782, 0.010925361, -0.0175238457, -0.0121873664, -0.0073629, -0.0035967154, -0.0307785086, 0.00802635401, 0.000348629, 0.0160671324, 0.010860458, 0.00591700245, -0.0161392465, -0.0260622147, -0.000207104094, 0.0105647882, -0.00314419623, 0.0234805122, 0.00849509891, 0.0181584544, 0.00142246031, -0.0082859667, -0.00176590611, -0.00867538527, 0.00825712085, -0.0214613024, -0.0233218595, 0.010420559, 0.00250958791, -0.0172065422, -0.0101970034, -0.0154181, 0.000243612114, -0.00220129802, 0.00442062458, -0.00350657222, 0.00128273829, 0.00708525861, 0.00230586412, 0.00237617595, -0.00832923595, -0.00114301627, 0.0136440815, -0.00858163647, -0.00778116472, 0.0167882778, -0.0207257345, -0.00403841725, -0.00466220826, 0.0105575761, 0.0300573632, -0.00295128976, 0.014942144, 0.00607204856, -0.0095047038, 0.00329924258, 0.00826433208, -0.0311823506, 0.00898547843, -0.00234372425, 0.0175094232, -0.00353902369, -0.014062346, -0.00391221652, -0.00929557066, 0.0172786564, 0.0159084797, 0.000744583202, -0.021418035, 0.00782443304, -0.00163609989, -0.0288025681, -0.0122306347, 0.0228026342, -0.0110768015, 0.000922616106, -0.0291919876, 0.0052210968, -0.00126561115, 0.0276487358, 0.00793260522, -0.000167103033, 0.00314960489, -0.00951912627, -0.00752876373, 0.0283554588, -0.0150863733, 0.0158796329, -0.00277460902, 0.0190382525, -0.000475054898, 0.0176536534, 0.000584128196, 0.000872135861, 0.00509129046, -0.01200708, -0.0130960103, 0.00233831559, -0.00508047314, -0.024720883, 0.00512374192, -0.00484970631, -0.00153784372, -0.00367063284, -0.00416822359, -0.00654800516, 0.00781722181, 0.0162402056, -0.0101609463, -0.0238122381, -0.0105936341, 0.0165863559, 0.0131825479, 0.00484249508, 0.01753827, 0.0206103511, -0.0121585205, 0.0125551503, -0.00688333809, -0.00151620933, -0.0112715112, 0.0132113937, -0.0239564683, -0.00185154215, 0.00418264652, 0.000747287471, 0.00407447433, 0.00437014457, 0.0173219256, -0.00803356618, 0.00493263826, 4.13532107e-05, 0.00384370773, -0.0204661209, 0.0130887991, -0.0110191097, -0.0216199551, 0.00288638659, -0.00980758481, -0.000654439966, 0.00949028, 0.0152161792, -0.0156777129, 0.00442423, -0.0106080566, -0.0223699473, 0.00550955487, 0.00168027007, -0.0129734157, -0.00137107866, -0.0129085127, -0.0261920206, 0.00626315223, -0.00840135, -0.0061045005, 0.00881961454, -0.0266247075, -0.0284852646, 0.0151152192, 0.00899990089, 0.0147979148, 0.00414658897, 0.0107955551, 0.0072979969, 0.0133916801, 0.00756482081, 0.0130311074, -0.00334611721, 0.00998066, 0.0123243844, -0.00395187968, 0.00574392732, -0.0188074857, 0.0185334515, -0.0213026516, 0.0142282089, 0.00839413889, 0.0208843872, 0.0162546299, -0.00616940344, 0.0140767684, -0.00616940344, 0.00381125626, -0.015446946, -0.00337316, 0.00456485385, 0.00186055654, -0.0108748805, -0.00951191504, 0.00998066, 6.2649553e-05, -0.0131248562, -0.00641098758, 0.00147834921, -0.0134061025, -0.0178844184, -0.00605041441, -0.00366161857, 0.0157354046, -0.00730881421, 0.0160671324, -0.010016717, 0.0275766198, -0.0142570548, 0.0263939407, 0.00965614431, -0.00786049105, -0.0174228866, -0.00184162648, 0.007672993, -0.015749827, -0.0340669341, -0.00427278969, 0.0206247736, 0.0194420945, -0.0189372916, -0.0114301629, -0.001694693, 0.0137810986, -0.00877634622, 0.00321090221, 0.00145130616, 0.00259973109, -0.0131464908, -0.00304143294, -0.0134061025, -0.00367243565, -0.00305765867, -0.0295958295, -0.0130960103, 0.0171055812, -0.00544104632, 0.0102546951, 0.0049975412, 0.0284419954, 0.00642901612, -0.00859606, 0.00850231, -0.011163339, -0.00124127243, -0.00674992613, 0.00968499, -0.0191969052, 0.00104025297, -0.000268852222, -0.00856721401, 0.0135936011, -0.00539417146, -0.00050299929, 0.0153315626, -0.0190238301, 0.00991575699, 0.00616219221, -0.0121296747, -0.00424754946, -0.00203904021, -0.006829252, 0.00370669016, -2.11695769e-05, -0.014062346, -0.0100239282, 0.0211151522, 0.0189949833, -0.0257449094, 0.00575474463, 0.00421509799, -0.00434129871, -0.00905038137, 0.00637493, 0.00233651279, 0.0146536855, -0.00918018818, 0.00266823987, 0.00740616862, -0.0273458548, -0.00442423, -0.00137919164, -0.00415380066, -0.00728717959, 0.00352820661, 0.00632445, 0.0052210968, -0.00346510625, 0.000164962126, -0.0125335166, -0.0155046377, -0.0026339856, 0.00249155913, -0.0294516, -0.00691939518, 0.0121873664, -0.00439538434, -0.00381125626, 0.00995902531, 0.0243026186, -0.00804798864, -0.00570426416, 0.00097264559, 0.00293686683, -0.000769372564, -0.00814173743, -0.0122378469, 0.0210718848, 0.00115563639, -0.0201488174, -0.005109319, -0.0179421101, -0.0014440947, -0.000718441617, -0.000546718773, 0.0233218595, 0.0104277702, -0.0174805783, -0.00988691114, -0.00429803, -0.0112643, -0.000622439082, -0.00575474463, 0.00296571269, 0.00690857787, -0.00228422973, 0.00650473638, -0.0135791777, 0.00618382636, 0.0149709899, -0.00211295765, 0.00190021959, 0.0061441632, -0.0151152192, 0.0105287302, -0.022124758, -0.00542662339, 0.0145383021, 0.0228459034, -0.00623430684, 0.00701675, -0.00372832455, -0.000864023, -0.0180719178, -0.0006706657, -0.0134854289, -0.0167738553, 0.00862490572, 0.00747828325, 0.00481004361, -0.0156344436, 0.00612613466, 0.00489297509, -0.00924509112, -0.00494706118, 0.00494345557, 0.0161680914, -0.00243927608, 0.014365227, -0.00742059154, 0.0102763297, 0.00360392686, 0.0125912083, -0.000926672539, 0.00130256987, -0.0135647552, 0.00597469416, -0.000729258812, 0.0381342, 0.0124614015, -0.0235526264, 0.0136873499, 0.00290802098, -0.00121603231, -0.00216163485, 0.0134349484, 0.0079830857, -0.0054771034, 0.0171488505, -0.0283410344, 0.00254925084, 0.0145743592, 0.032278493, 0.0250381865, -0.00687973201, -0.00037477052, 0.0144733991, 0.0144589758, -0.000666158565, -0.0155911753, 0.0206247736, -0.00263218256, -0.00560330413, 0.00779558765, -0.0146608967, -0.0189517159, -0.00171182014, 0.00558166951, -0.010117677, -0.0083580818, -0.0248939581, 0.000441251177, -0.0113003571, -0.00165142422, -0.00618382636, 0.00942537747, -0.00227521546, 0.012612842, -0.0249804948, -0.0196151696, 0.0186632574, -0.00597108854, 0.0125263045, -0.0350476913, 0.00344707747, 0.0152161792, -0.00323974807, -0.00390139944, -1.40426273e-05, -0.0130383186, -0.00423673261, 0.0066309371, 0.00231668144, 0.00241043023, -0.0109037263, 0.00750712911, 0.0245622303, -0.0202642, 0.000429081847, 0.00649031345, 0.00585931074, 0.0182738379, 0.011163339, 0.00876913499, 0.00441341335, -0.0274468139, 0.00542662339, 0.00534369145, -0.00880519208, 0.00378962187, -0.00378962187, -0.0101609463, 0.0107811317, 0.0314419642, -0.0192978662, -0.0218507219, 0.0293217935, 0.0172786564, -0.0266824, 0.00418985775, 0.00731602544, -0.0169613529, 0.000909996044, -0.013658504, 0.00884846, 0.0083580818, 0.00208230899, 0.00801193155, 0.00885567255, -0.00930278283, -0.00249155913, 0.00623070076, 0.00825712085, 0.0202209316, -0.00184793642, 0.0107018054, -0.00195250264, 0.0138676362, 0.00436293287, 0.0340380892, 0.0158652104, 0.0110118985, 0.0018912052, 0.00399514847, 0.00719703641, -0.00201740582, 0.0285862256, 0.000351558643, -0.0019579113, 0.000585931062, 0.0204516985, 0.00907922722, 0.0011349034, -0.0246631913, 0.00520667387, -0.0625377744, -0.00985085312, -0.0127787059, -0.00717179617, 0.0144373421, 0.0120936176, 0.0105431536, -0.00406365748, 0.0411630087, 0.0196007472, 0.00570065854, 0.0257881787, 0.00695545273, 0.0128363976, -0.00908643845, 0.0175094232, 0.0317304209, -0.00109704328, 0.000536803, -0.00425836677, 0.00715016201, 0.00485331193, -0.000924869673, -0.00387615943, 0.00321631087, 0.0163700134, -0.01774019, 0.0153171401, -0.00827154424, -0.0150719499, 0.00994460285, 0.018749794, 0.00242485316, -0.0334900171, 0.040095713, 0.000217357898, 0.00739895739, -0.0107450746, -0.021043038, 0.0109686293, -0.0116753532, 0.0102835409, -0.00509850169, -0.00909365062, -0.0216343775, -0.00781722181, -0.0047920146, -0.015547906, 0.00128724554, 0.000261640758, -0.0111128585, -0.0114157405, -0.0182449929, 0.00982921943, 0.0111200707, 0.00113039627, -0.0172209647, -0.00435211556, 0.0321342647, 0.00188038801, 0.00921624526, -0.00946864579, -0.0120575605, -0.00724751689, 0.0258891396, -0.0111417044, 0.00806241203, -0.0131464908, 0.00473792898, 0.0397207178, -0.00581964757, -0.0156055978, -0.0115743922, -0.00542662339, -0.00824269839, 0.0310958121, 0.000924869673, -0.00124217384, 0.000176680755, 0.0271727797, -0.00118087651, 0.015345986, 0.0210574605, -0.00162347977, 0.0175671149, 0.000748639635, -0.00765857, 0.00176230038, 0.0109325722, 0.0101825809, 0.010319598, 0.00197053119, -0.0215045717, -0.0094398, -0.0131609133, 0.00188759947, -0.00587373367, 0.00187678228, 0.0110984361, -0.00206428021, -0.000161469085, -0.000355615077, -0.00424033822, -0.00884124916, 0.0323361829, -0.0345573127, 0.00195610826, -0.00930999406, -0.00835087, 0.0137522528, 0.0122739039, 0.00286114658, 0.00801193155, 0.0112715112, 0.0178988427, 0.0085095223, -0.00679680053, -0.00182449922, -0.00474153459, -0.0111344932, 0.0102258492, -0.00915855356, -0.022023797, -0.0180863403, 0.0122883264, 0.0150719499, 0.00186776801, -0.0152017567, -0.0159517489, -0.0182161462, -0.0177834593, 0.00675713737, 0.00899269, -0.00307749026, 0.0144157074, 0.00303422147, -0.0191680584, 0.0137378303, -0.0160238631, 0.0022445668, -0.00474153459, 0.00607926026, 0.0149998358, 0.00790375937, -0.0317304209, -0.0309804287, -0.00208230899, 0.00217605778, 0.0198459364, -0.0189949833, 0.00389779382, -0.0236680098, 0.0305477418, -0.0222545639, -0.0175959617, -0.00441701896, -0.0287881456, -0.0120647717, 0.0083580818, 0.00177852612, 0.00674632, 0.00773068424, 0.0175671149, -0.0218795668, 0.0192978662, -0.0151007958, 0.0163267441, 0.0156344436, 0.00357147516, -0.00393745676, 0.00958402921, 0.0114878546, 0.00419346383, -0.0264949016, -0.00808404572, -0.0332015604, 0.0159661714, -0.0243891552, 0.0141056143, -0.00260333694, -0.00508768437, 0.00734487129, -0.0164853968, -0.00710328761, 0.00220670667, -0.0142354211, -0.0171921197, 0.0166440476, 0.0123532303, 0.0160671324, -0.0164132807, 0.0267545134, -0.00959124137, -0.0106513258, -0.000415785704, -0.00595305953, -0.00501917582, -0.0200190116, 0.00647228491, -0.00502278144, 0.0124181332, -0.00493263826, 0.0104782507, -0.00806962326, 0.00341102039, -0.00907922722, -0.0205382369, 0.019730553, -0.0105792107, -0.00996623654, 0.0227882117, -0.00786770228, -0.00646146759, -0.00291523244, 0.0121513093, 0.0118628507, -0.0229180176, -0.00389779382, -0.00961287506, -0.00894220918, 0.0110046873, 0.0160959773, 0.0293650627, -0.0013287114, 0.0397207178, -0.00343986601, 0.0105647882, 0.0228459034, -0.0188074857, 0.0181007627, 0.00790375937, 0.00898547843, 0.00232930132, 0.0160671324, -0.00957681797, 0.00316763343, -0.0137089845, 0.00212197192, -0.0132330284, 0.0105431536, 0.00335693429, 0.00316943647, 0.00270069158, -0.00559248682, -0.00892057549, 0.00801193155, 0.00720785372, 0.0340957791, -0.0137306191, -0.00654079346, -0.0101248892, -0.00668141712, -0.0172498114, 0.00668862835, 0.0109325722, 0.00449273922, -0.0329419449, 0.0270573962, -0.00425836677, 0.00940374285, 0.00306667318, -0.0044819219, -0.00152251939, -0.00735568861, 0.0125335166, -0.0192401744, -0.0182882603, -0.00956239551, -0.00868259743, 0.0213170741, 0.00949028, -0.0153604085, 0.000690497225, -0.00137378299, -0.00204985728, 0.0189949833, 0.0110479556, 0.0132618742, -0.00785327889, 0.00974268187, -0.00863932818, -0.0137306191, -0.0210718848, -0.00607926026, -0.00926672574, 0.00543383462, -0.0130455298, -0.0226584058, 0.0104566161, 0.00345609197, 0.013254662, -0.0182017237, 0.0149565665, 0.0147402231, -0.0169469304, -0.0251968391, 0.0259468313, -0.00778116472, 0.00749270618, -0.00227160961, 0.00784606766, -0.0198026672, -0.00756482081, 0.00156849239, 0.00560690975, -0.0153315626, -0.017134428, -0.0245189611, -0.0118195815, -0.0153748309, -0.00912249647, -0.000634157681, -0.0132113937, 0.00939653162, 0.00417543482, 0.0131753366, -0.0239132, -0.00665257126, 0.022831481, -0.00797587447, -0.0197882447, 0.00611171173, 4.72688625e-05, -0.00608286588, 0.00296210684, 0.0230189785, 0.034903463, -0.0113724712, -0.0054771034, -0.0278073866, 0.00456124824, 0.00976431556, -0.00291523244, -0.0037571704, -0.0158796329, 0.00244107889, 0.00809125695, -0.010016717, 0.00511292461, -0.0176392291, -0.00414658897, -0.0189228691, 0.00306847598, -0.0279804617, -0.0053256629, -0.00214000046, 0.000577367493, 0.00880519208, 0.033663094, -0.00248975633, -0.00127552683, -0.00403841725, 0.00187317654, 0.026307404, -0.0101104658, -0.00120791944, -0.00522470241, -0.009374897, 0.0217786077, 0.00208952045, -0.0102258492, 0.0264227875, -0.00408529164, -0.0514032841, 0.0243026186, 0.0148556065, -0.00756482081, 0.00301799574, -0.0177834593, 0.00142786896, -0.00635690149, -0.0019020224, -0.000229639903, 0.0666915774, 0.0330284834, -0.0037571704, -0.0297977496, 0.00400596578, -0.00502999313, -0.000217583249, 0.0353649966, -0.0152306026, 0.0305188969, 0.0113868946, 0.0163123216, -0.000712131616, -0.0059783, -0.00711410446, -0.00343986601, 0.00637853565, 0.0168027, -0.00205346313, -0.00508407876, 0.00311895623, -0.0230045561, 0.00648670783, -0.00601075124, -0.000921263942, -0.0016270855, 0.00791818276, -0.00642180443, -0.0369515195, 0.0222978331, -0.015547906, 0.0182449929, 0.0226872507, -0.00209492887, -0.025427606, 0.00185154215, -0.00310813892, 0.019456517, 0.00146753201, -0.0266968217, 0.00546628609, 0.0134349484, -0.00251860218, -0.0126993796, 0.00757203251, -0.00261235121, 0.0132113937, -0.0188363325, -0.00665257126, -0.0355380736, 0.0154902143, 0.00778116472, -0.0111921849, -0.0161392465, 0.017841151, -0.0157209821, 0.0124253444, 0.00902874675, 0.00369046442, 0.0123243844, 0.0118844854, -0.010925361, -0.000257809676, 0.0177978817, 0.00329022831, -0.0234516654, -0.000690947927, 0.0192690194, -0.000279669417, 0.00642541051, -0.00750712911, -0.0108893039, 0.0142642669, -0.00236716145, 0.0068364637, 0.0300285164, 0.00153784372, 0.00405644579, 0.00152161787, -0.0251679923, -0.0138676362, 0.00754318666, -0.00613334635, -0.0117474673, -0.021345919, -0.0201055482, -0.0226439815, -0.0204516985, -0.000202033538, 0.00940374285, 0.00806241203, 0.0276631583, -0.0134926401, 0.0126921684, 0.0111921849, 0.00849509891, 0.00424394384, 0.0232930146, 0.00685449224, 0.0058989739, 0.0219084136, -0.0121585205, 0.0190671, -0.0119133312, -0.00486412924, 0.0241439659, -0.00721506495, 0.0183026846, 0.012814763, 0.0125767849, -0.00886288378, -0.0122883264, 0.0168171227, 0.0153315626, 0.0157786738, 0.000528690114, 0.00317123928, 0.0112715112, 0.00880519208, 0.0207834262, -0.00629199808, 0.00312256184, 0.0112498766, -0.0017866391, -0.00471268874, 0.0196728613, 0.0293362159, 0.0211007297, 0.0183171071, 0.00757203251, -0.00240502181, -0.01774019, 0.00723309396, -0.0117907356, 0.00789654814, 0.0396053344, -0.00335152564, 0.00460812263, 0.0139830196, -0.00371390162, -0.00525715388, 0.00696626958, 0.0146176284, 0.0111417044, 0.00722588226, -0.0180142261, 0.0198170897, -0.00790375937, 0.0456629619, -0.0103123868, 0.00545186317, -0.0379034318, -0.0118267937, -0.0156488661, -0.00803356618, 0.0097498931, 0.00531845121, -0.00704559591, 0.0073629, -0.0219084136, 0.0131032215, -0.0148556065, 0.0125984196, -0.0142354211, -0.00314239343, -0.00727636227, -0.00170010154, -0.00435572164, -0.0101393117, 0.00135755725, 0.0112426654, 0.0229901318, 0.0103484439, 0.0120503483, -0.0175526924, -0.0155623294, -0.00316222501, -0.00350296637, 0.0104998853, -0.00398072554, 0.000269302924, 0.00985085312, 0.0131032215, 0.0456052683, 0.0073629, -0.00919461064, -0.0228747483, 0.00799750816, 0.0100744087, 0.00199577142, -0.0216920692, -0.00996623654, -0.00887009501, -0.00215442339, 0.0127714947, -0.00150178641, 0.00874028914, -0.00739895739, 0.000632805575, 0.00172984879, 0.0124902474, -0.00889173, -0.000521929353, -0.0020047857, 0.000564296672, 0.0201488174, 0.000702666584, 0.00823548622, -0.0064145932, 0.0101681575, -0.00285573793]
08 Sep, 2021
jQWidgets jqxTabs contentTransitionDuration Property 08 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTabs represents a jQuery Tab widget that is used for breaking the content into multiple sections. The <li> elements are used for tab title and <div> elements are used for tab content. The contentTransitionDuration property is used to set or return the duration of the content’s fade animation that occurs when the user selects a tab. It is used with ‘animationType‘ property with its property value to ‘fade’. It accepts Number type value and its default value is 450. Syntax: Set the contentTransitionDuration property. $('selector').jqxTabs({ contentTransitionDuration: Number }); Return the contentTransitionDuration property. var CTD = $('selector').jqxTabs('contentTransitionDuration'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtabs.js”></script> Example: The below example illustrates the jQWidgets jqxTabs contentTransitionDuration property. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href=" jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxtabs.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTabs contentTransitionDuration Property </h3> <div id='jqxTabs'> <ul style='margin-left: 20px;'> <li>GeeksforGeeks</li> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ul> <div> A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, ... </div> <div> HTML stands for HyperText Markup Language. It is used to design web pages using a markup language. HTML is the combination of Hypertext and Markup language. Hypertext defines the link between the web pages. </div> <div> Cascading Style Sheets, fondly referred to as CSS, is a simply designed language intended to simplify the process of making web pages presentable. CSS allows you to apply styles to web pages. More importantly, CSS enables you to do this independent of the HTML that makes up each web page. </div> <div> JavaScript is a lightweight, cross-platform, and interpreted scripting language. It is well-known for the development of web pages, many non-browser environments also use it. JavaScript can be used for Client-side developments as well as Server-side developments. </div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTabs').jqxTabs({ theme: 'energyblue', width: 550, height: 150, animationType: 'fade', contentTransitionDuration: 1000 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtabs/jquery-tabs-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtabs-contenttransitionduration-property?ref=asr10
PHP
jQWidgets jqxTabs contentTransitionDuration Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0196465831, 0.00818485208, -0.011792358, 0.0309760626, 0.0344439708, 0.0229087677, 0.0139157176, 0.0336210765, -0.0158553943, 0.0229381565, 0.016766455, -0.00394548057, -0.00881671626, -0.0427610725, 0.0030142148, 0.000560228829, -0.0159141738, -0.0185444932, 0.00523492554, 0.0149296392, 0.022776518, 0.0284192152, -0.0742367506, 0.0189265516, -0.0161933694, 0.0346496962, -6.91101959e-05, 0.0317107886, -0.0246427227, 0.0119246086, -0.0107931299, 2.41943089e-05, 0.0177509896, -0.00187079702, -0.0292274151, -0.0246574171, 0.00900774542, 0.0184563268, -0.0383821055, -0.0387053862, -0.0245545544, 0.0155174211, -0.0388523303, 0.00114709151, -0.00584842172, 0.00869181287, -0.0140553154, -0.0383527167, -0.00981594436, -0.00532676606, -0.00386098702, 0.00165129744, 0.00880202185, 0.0575143807, 0.019014718, -0.0426435173, 0.00372322579, 0.0239520799, 0.0144373728, 0.0096249152, 0.0601887852, -0.0398221686, -0.00448917784, 0.001497005, 0.002883801, 0.0145843178, -0.00670805154, 0.0134454928, -0.0379706584, 0.0145034986, -0.02424597, 0.00753094535, 0.0215715654, 0.011388259, 0.0233202148, -0.00206825463, -0.00666029425, 0.0278167408, -0.0149663761, 0.00544799585, -0.0370595977, 0.0114029534, -0.079997, -0.0159141738, 0.00462510251, -0.00775136286, 0.01157194, -0.0365893729, 0.0427316837, -0.00598802, -0.0285367724, -0.0216156486, 0.0203519203, -0.0196612775, -0.040792007, 0.00275338697, 0.00940449722, 0.0152088357, -0.0417912342, 0.00721133919, 0.0219830126, -0.016399093, 0.00797912851, -0.0491972752, 0.0289041344, 0.0113074388, 0.0477572121, -0.022291597, 0.0181918237, -0.0210866462, -0.00521288346, -0.0168399289, -0.0153263919, -0.00520553626, -0.025759507, 0.0244076103, -0.00141618506, -0.0311230086, 0.00924285781, 0.0170309562, -0.00111311045, -0.0136732571, 0.0286837164, 0.0787626654, -0.0137393828, 0.0412622318, -0.0197935272, -0.000980859739, 0.0430549644, -0.0437309146, -0.0305058379, 0.0378237143, -0.0191910528, -0.000478490547, 0.0340325236, 0.0204988662, -0.0218360666, -0.00644722395, -0.00322544877, -0.00819219928, -0.0030142148, -0.000204001364, 0.00711949822, 0.0224091541, -0.015958257, 0.0216450393, -0.0125197368, 0.0139818424, 0.00634436216, 0.040204227, 0.00139506173, -0.0135042705, -0.00604679808, 0.0153851695, 0.0380000472, 0.00946327578, -0.0305940062, 0.0100069726, -0.0102714747, -0.0253333654, 0.0365599841, -0.00844935328, 0.0014446557, 0.0048198048, -0.0103376, -0.0105874073, 0.0267587341, -0.00190294127, -0.0453473106, 0.041938182, 0.00563902501, -0.0425553508, -0.0442011394, 0.00568310823, -0.0367069282, -0.00266338303, 0.0198376123, -0.0160905067, -0.00908121746, -0.0155615043, -0.0179420169, 0.0117482748, -0.00573453913, 0.0288453568, -0.00825097691, -0.0275669321, 0.0107857827, -0.00667498913, -0.0420557372, -0.0162374526, -0.0211454239, 0.0411446765, 0.026567705, 0.0594834462, -0.0282134917, -0.0279636849, -0.0160170346, 0.00332831033, -0.03700082, -0.0103302523, 0.00248153834, -0.0149149448, 0.00101943279, 0.0023345931, 0.0171485133, 0.0286396332, -0.00644722395, -0.0535468571, 0.0360603705, 0.0280665476, -0.00274787657, 0.00814811513, 0.0298592784, 0.0195437204, -0.0150031121, 0.0154292537, -0.03294513, -0.00824363, 0.00676315604, -0.00527166156, 0.0139377592, -0.0342382491, -0.00665662065, 0.0383821055, -0.0667131543, -0.0131075187, -0.0147973886, -0.0376179889, -0.0187943, 0.0191175807, 0.0011452547, -0.019308608, -0.0317989551, 0.00780279376, 0.00250725378, 0.0386172161, 0.0121009434, 0.0290069971, 0.00542962784, 0.0113809109, 0.00418426655, 0.00657212734, 0.0167370662, -0.0249806959, 0.00209764368, -0.0182359088, 0.00932367705, 0.0173101537, 0.000750798499, 0.0177950729, 0.00237867655, -0.0337386355, 0.0262150373, 0.0186032709, 0.00755298696, 0.0517247356, -0.0162080638, -0.00362954824, -0.0049483818, 0.00685499702, 0.0639505833, 0.0302707255, -0.0014437373, 0.0172807649, -0.00375812524, 0.0173836257, 0.0403217822, -0.041938182, 0.0163109247, -0.0613643453, 0.0103302523, -0.0224679317, 0.0160464235, 0.029330276, -0.0197935272, 0.0188089944, -0.022512015, 0.00373608363, 0.0388817191, 0.00828036573, 0.0324455164, 0.0283457432, -0.000477572146, 0.0511957332, 0.0180154908, -0.0137467301, 0.051401455, -0.0325924605, -0.0213511474, -0.00018666641, -0.0232026577, -0.0200580303, 0.0503434502, 0.00160537707, 0.00669703074, -0.000371266418, 0.0263325926, -0.00841261726, -0.00269460888, -0.0316226222, -0.0136218267, 0.00552881602, -0.0119319558, 0.000456678361, 0.0125858625, 0.0249660015, 0.0286984108, -0.00512471655, -0.00127291342, 0.0068954071, 0.0344439708, 0.020748673, 0.00718929758, -0.022291597, -0.0188824683, -0.00112137606, -0.0120054288, -0.00513941096, 0.00681458693, -0.0456412025, 0.0202637538, -0.00914734323, -0.0295653883, 0.0252158083, 0.0476396568, -0.0136585627, -0.0340031348, 0.00263032038, 0.0176334325, 0.00158976414, -0.0417324565, 0.00686234422, 0.0278755184, 0.00564269861, 0.0177069046, -0.00333014713, 0.00974247139, 0.0134161031, -0.0070901094, 0.0385584384, -0.0169280954, -0.00242276024, 0.0257301163, -0.0104992399, 0.0198229179, -0.00202049757, -0.02859555, 0.00815546233, 0.042085126, -0.00207192823, 0.00145751343, 0.0127842389, 0.0499026142, 0.00761176506, 0.0263032038, -0.00436060084, -0.00415487774, -0.0173689313, -0.00458469242, 0.0109400759, 0.023805134, 0.0101539185, 0.055721648, -0.00970573537, 0.00817750394, -0.0459938683, -0.0198229179, -0.00891223084, -0.0113515221, -0.0234083813, -0.0410271212, -0.0116894962, -0.0204694755, 0.060541451, -0.0395282768, 0.0151059739, -0.00529370364, 0.0186767448, -0.0204547811, 0.0200286414, -0.0551044755, 0.019235136, 0.0180889629, 0.0350905322, 0.00252194819, 0.0238345228, -0.0023988816, -0.00455897721, 0.0135483537, 0.00775136286, -0.0177803785, 0.0340325236, -0.0279196016, -0.0328275748, -0.00512104295, 0.00462510251, 6.77325879e-05, -0.00138955121, 0.0412622318, -0.0446713641, -0.00436794804, -0.0185444932, 0.0553689785, -0.0121523738, 0.0307409503, -0.00335769937, -0.0439660251, -0.0207927562, 0.0255537834, 0.000878916413, -0.00093861291, -0.0279049072, -0.00775871053, 0.0121376794, -0.0244663879, 0.0105212815, 0.0233936869, 0.0470518768, -0.0224826261, -0.0189118572, 0.023070408, -0.0110943681, -0.0377355441, 0.00106994528, -0.00447448343, -0.0378531031, -0.0261121746, -0.0115425512, 0.029536, 0.0201902799, -0.0107270051, -0.0187796056, 0.0085007837, -0.0344439708, 0.0268762894, -0.00393813336, 0.0365012065, -0.0132250749, -0.0268469, -0.0197935272, -0.0303882826, -0.0201021135, 0.0593658909, 0.00152547564, -0.0152529189, -0.00745747238, -0.025906451, -0.014885556, 0.00478306878, 0.01127805, -0.00700928969, -0.0169721786, -0.00304911449, -0.0374710448, 0.0160023402, -0.00879467465, -0.0249513071, -0.00683295494, 0.0148341255, -0.0156055875, -0.00143639, 0.0092208162, -0.0284779929, 0.00828036573, 0.0058814846, -0.00553616323, 0.00972043, 0.0238933, -0.0189559404, 0.0286543276, -0.0134454928, 0.00436427444, 0.0299180578, 0.0349435844, 0.0255096983, -0.00755298696, 0.00171925966, -0.0238345228, -0.019749444, -0.0314169, 0.0431725197, -0.0263913702, 0.0560155362, 0.0185297988, -0.0144888042, 0.0180301853, 0.0119099142, -0.0270967074, -0.0308878962, 0.0128944479, 0.00806729589, 0.0209543966, -0.0328569636, 0.00277359202, 0.0101759601, 0.00533778686, -0.0253333654, -0.0266852621, 0.0332684107, -0.0464053154, -0.00422100304, 0.0145034986, -0.00476102671, 0.0422026813, -0.00052762538, -0.0116380658, -0.0222769026, -0.000319605955, -0.0148561671, -0.0545460843, -0.0335623, -0.0357370898, -0.0152529189, 0.028448604, -0.00811137911, -0.0127621973, -0.036736317, -0.00349729741, -0.00358546455, -0.0177656841, 0.0396752246, 0.00905182865, 0.0121009434, 0.0228352956, 0.0264942329, 0.0545166954, 0.00155670149, -0.0122038051, 0.0119099142, -0.00598802, -0.0222475138, -0.0253774486, 0.0263913702, 0.0113368277, -0.00577862281, 0.0442011394, -0.0167223718, 0.00558759412, -0.00439733732, 0.0225414038, 0.0167811494, -0.00406303676, -0.0647147, 0.00657947455, 0.011645413, -0.00154108857, 0.00330994232, 0.0114396894, -0.00858160388, 0.0174130145, 0.0124609591, 0.014297775, 0.0218213722, 0.0127401548, -0.0179714076, 0.00891957805, 0.00423569744, 0.00167517608, -0.0106829209, 0.0018625313, -0.00280298106, -0.00279930746, 0.0325336829, 0.0112486603, 0.00856690947, -0.0294331387, 0.0252451971, 0.0221740417, -0.0200139452, -0.00625986839, 0.000995554263, -0.0380000472, 0.00665662065, -0.00983063877, 0.0124389175, 0.0217479, 0.0323279612, -0.0400278904, 0.00162007159, 0.00646559196, 0.0192792192, -0.011939303, 0.0279930737, 0.0163256191, -0.0323867388, -0.0118070524, -0.0140993986, -0.0250247791, -0.0671246, 0.00415120414, 0.0183240753, 0.0331214629, -0.00499613909, -0.00238051335, 3.80995789e-06, 0.0242165811, -0.0017385463, -0.00348995021, 0.0127254603, -0.0108886445, 0.0141214402, 0.0599536709, 0.017986102, 0.017427709, -0.00340545666, 0.011461731, 0.0179126281, 0.0303001143, -0.00918407924, -0.00798647571, -0.016252147, -0.00177160895, 0.0556628704, -0.0175305717, 0.00272032432, -0.000763656222, 0.00123893237, 0.0121009434, -0.00270930352, -0.00476102671, 0.0177950729, -0.00256786868, 0.0185297988, 0.00825097691, 0.0315932333, -0.00460306043, -0.00568678183, 0.0168840121, -0.00899305101, -0.0327394083, 0.00735828467, 0.0159288682, 0.00650967564, 0.0129752671, 0.0314462893, 0.0072150128, 0.000371266418, 0.0226442665, 0.00216193241, -0.00495572947, -0.0030105412, 0.0115572456, -0.0307409503, 0.075353533, -0.00308401394, 0.0131956851, 0.0224679317, 0.0233202148, -0.00349178701, 0.00205723383, -0.0114690783, -0.00720766559, 0.00740604149, 0.0312993415, -0.0147533054, 0.00560963573, -0.0059549571, -0.0154733369, 0.00377281988, 0.0229381565, -0.0123360557, -0.0435839668, 0.0644208044, 0.0105506703, 0.030329505, -0.0210131742, 0.0222181249, 0.0137467301, -0.0305352267, 0.00459938683, 0.021703817, -0.0114176478, 0.0260680914, 0.0147459581, -0.0181477405, -0.0200727247, -0.0296829455, 0.0113368277, 0.00948531739, 0.00269460888, 0.00777340494, 0.00208662287, 0.0158260055, 0.0128209749, 0.0334741324, -0.0231732689, 0.00699826842, -0.0178538505, 0.0251717251, 0.0294919163, 0.026567705, 0.0260387026, 0.0111604938, 0.0178832393, -0.0102788219, -0.00674478803, 0.00143363478, 0.0272142645, -0.0130487401, -0.0233202148, 0.0334447436, -0.0186032709, 0.0046140817, 0.041938182, 0.00400425866, 0.0371183753, 0.00817015674, -0.00215458497, -0.0270232353, -0.0282134917, 0.0274199881, 0.00804525334, 0.00357628055, 0.0423496291, 0.00396752218, 0.00160262187, 0.00594761, 0.0164431762, -0.0466698185, 0.0132471165, 0.00356893335, 0.0269056801, -0.000716817391, -0.0216744281, -0.0119907344, -0.0310054515, 0.0160023402, 0.00254582684, -0.0141728716, -0.00213621696, 0.0101392241, 0.0153851695, 0.0313287303, -0.0134087559, -0.0345027484, 0.0334153548, 0.0104551557, -0.00446346262, 0.00933102518, -0.0217185114, -0.000832077581, -0.00869916, -0.0187502168, 0.0119833872, -0.00229418301, -0.0200286414, 0.0285073835, -0.00559126772, 0.0132397693, -0.0318283476, 0.00688805943, -0.0154586425, 0.0048234784, -0.0289482176, 0.0107270051, 0.00884610508, -0.0263325926, -0.00100381987, 0.0284192152, 0.0203960035, -0.00913264882, 0.0183240753, -0.0437896922, 0.0167958438, -0.00175048551, 0.0223797653, -0.0401748382, -0.0108519085, 0.0199110843, -0.0293155815, 0.0196612775, 0.000324427616, 0.0433194675, 0.0246574171, 0.00535615534, 0.00221887371, -0.0133646727, -0.0330920741, -0.000616251724, 0.0126813771, -0.00798647571, -0.00320340693, -0.00766319595, -0.00855956227, 0.0290510803, -0.0136438683, 0.0198229179, 0.00910326, -0.01197604, 0.0275081545, -0.0105212815, -0.0233055204, 0.0234818552, 0.0299180578, 0.00266154623, -0.0218948461, -0.0312993415, 0.0109106861, 0.0148708615, -0.016399093, 0.00243378105, -0.00960287359, 0.0102641275, 0.0191322751, 0.0418794043, -0.046581652, -0.0247015, -0.0206898935, -0.016178675, -0.00129403675, -0.033385966, 0.00424671825, -0.0164578706, -0.0330039077, 0.00686969142, -0.00964695681, 0.0131222131, -0.0101465713, -0.00925755221, 0.00056528009, -0.015032501, 0.0302413367, 0.0128871007, -0.0236434937, -0.0326218493, 0.0494323894, -0.0138863279, 0.00358179095, 0.0392343886, 0.00402997388, -0.009360414, 0.00649865484, -0.0482274368, 0.00438631652, 0.00275522377, -0.00532676606, 0.0140259266, 0.00617537508, -0.00333749456, 0.00375261484, -0.00492634, 0.0135557009, -0.00542962784, 0.0138128558, -0.00644355034, 0.0685352758, -0.00116454123, 0.00049134827, 0.0185591877, 0.0149810705, 0.0377355441, 0.0181183517, 0.0224826261, 0.0249219183, -0.0154292537, 0.0277285725, -0.0198082235, 0.0289923027, 0.0254950039, -0.017501181, -0.0180742685, -0.0107196579, -0.00381690334, 0.0237022731, 0.0133352838, -0.00754563976, 0.011314786, -0.0267146509, -0.021850761, 0.0239961632, -0.0129017951, 0.0104404613, 0.035266865, 0.0066456, 0.00289482181, 0.00485286769, 0.00472429069, 0.0217185114, 0.0104918927, -0.0188677721, 0.0300943926, -0.0325336829, -0.0194702484, 0.000587781076, -0.00371771539, 0.0240108576, -0.0485801063, -0.00990411174, 0.013820203, -0.0131883379, -0.00874324329, -0.000607067661, -0.00498879189, -0.0461408161, -0.0121670682, 0.0189118572, -0.00376179907, -0.016986873, 0.00773666846, 0.00213805377, 0.00334300497, -0.00218213722, 0.0313581228, -0.0174424034, 0.0319459029, -0.0305352267, -0.00791300274, 0.0104771983, -0.00230520405, -0.000877079612, 0.0408801734, 0.0273612104, 0.00751992408, -0.0330626853, 0.00511736888, -0.0330626853, -0.0147386109, 0.0140112313, 0.000994635862, -0.0104257669, 0.00414018286, -0.004680207, 0.0272877365, 0.0367950946, -0.00729583297, -0.000247510936, -0.0343851931, -0.0152676133, -0.016399093, 0.013930412, 0.0048896037, 0.00185793929, 0.0224091541, 0.00309687154, -0.0208662283, -0.0150398482, 0.0323279612, 0.0345909186, -0.0243488308, 0.00596597791, 0.030623395, 0.0516365692, -0.000990043744, -0.0122993188, 0.00526431436, -0.00617904868, -0.0270232353, 0.021850761, -0.0251129474, 0.0100877928, 0.00898570381, 0.0406156741, 0.00839057472, 0.00597332511, -0.00674846163, -0.0254656151, -0.0341206938, 0.0178832393, -0.0128650581, 0.00725909648, 0.00298666256, -0.0371477641, 0.0184122417, 0.0231585745, 0.0115425512, -0.0141287874, 0.0140920514, -0.00488593, 0.00346607156, 0.0235994104, -0.00501818117, -0.0271701813, 0.0474927127, -0.0103890309, 0.00999962538, 0.0295947772, -0.00358913816, -0.0423790179, 0.0218213722, -0.0133058941, -0.00313911843, -0.0110870209, 0.012637293, 0.00149333128, 0.0359722041, 0.0272289589, -0.00607251329, -0.0126960715, -0.0240402464, 0.00767789036, 0.0172807649, -0.0391462222, -0.00821424089, -0.0115058152, 0.00166599196, -0.0139818424, 0.0229087677, 0.0118805254, -0.0152529189, -0.0197200552, -0.0460232608, -0.0070313313, -0.0139598008, 0.031211175, 0.0182359088, 0.0169721786, -0.0134014087, -6.08445262e-05, 0.00479041599, 0.00823628251, -0.0291392468, -0.0219242349, 0.0146945268, -0.00552514242, 0.0430255756, 0.0113588693, 0.016913401, 0.00756768137, 0.0113809109, 0.00454060873, 0.0510193966, -0.021850761, 0.0338561907, -0.0500495583, -0.00145843183, 0.00892692525, -0.00853017345, -0.0290363859, -0.00122882985, 0.0158407, 0.0117850108, 0.00239153439, 0.0012049512, -0.00360015919, 0.00820689369, -0.015737839, 0.00659049535, -0.033973746, -0.0068990807, -0.0125344321, -0.00305829849, 0.0185738821, -0.00194702484, 0.0058116857, 0.0170162618, 0.00770727964, -0.00449285191, 0.0168252345, 0.0240696352, -0.0130634345, -0.0209984798, -0.0256713387, -0.00899305101, -0.0236434937, -0.00585944252, 0.0214099269, -0.000948715431, -0.0273759048, 0.0101906545, 0.00919877365, -0.00516145257, -0.0073472634, 0.00267624087, -0.0226001833, -0.0226736553, 0.00188824674, -0.0182652976, -0.0112266187, -0.00164303184, 0.0133793671, -0.000210659826, -0.0058851582, -0.0123213613, 0.00186987862, 0.0254656151, -0.00720766559, -0.00905182865, -0.00128760794, -0.00600271439, -0.0111972298, 0.0096322624, 0.02888944, 0.00998493098, -0.0122258468, -0.00889753643, 0.00335035217, 0.0138128558, -0.0239961632, -0.0216744281, -0.0264942329, 0.00033912214, -0.00704235211, -0.00701296329, 0.0119099142, -0.0173395425, -0.0188383833, -0.00232908246, 0.0785275549, -0.00802321173, 0.00217479, -0.0279930737, -0.0226442665, -0.0320340693, -0.0297858063, 0.0149369873, 0.0279636849, 0.000603394, -0.0101612657, 0.000290216907, 0.0157084502, -0.0188971628, -0.0321516246, -0.00509165367, -0.0066456, -0.00658314815, 0.016399093, -0.0209397022, -0.0383527167, 0.0149590289, 0.00911795441, 0.00805994775, 0.0084934365, 0.00655743293, 0.000529921381, -0.0184710212, -0.0380882137, 0.0124389175, 0.0351493098, 0.0236288, 0.00589617901, 0.00787626673, -0.00111953926, 0.0242753588, -0.00772932125, 0.00748686166, -0.000467010454, -0.01820652, 0.002883801, -0.00919142645, -0.00842731167, -0.00396384858, 0.0208515339, -0.0152529189, -0.0070974566, -0.0103229051, -0.00979390275, 0.016472565, -0.0234230757, 0.00244480185, -0.0342676379, 0.000967083557, 0.000328560447, 0.011718885, -0.00682560774, -0.00462877611, 0.0459350906, -0.0405568965, 0.00952205341, 0.00202600798, 0.0145402346, 0.00874324329, -0.000217547888, 0.0101980017, -0.0107343523, 0.0226589609, -0.0129605727, 0.029109858, 0.0141728716, 0.0269497633, 0.00861834, 0.00555085763, -0.0114984671, 0.0267293453, -0.010352294, 0.0239373855, 0.0148341255, -0.0241724979, -0.0282281861, 0.0363542587, 0.00383159798, 0.0261562578, -0.0214687046, 0.00633701496, -0.0287571903, -0.00797912851, -0.00417324575, -0.0130266985, 0.00178538507, -0.0108739501, -0.0349729732, -0.00173670938, 0.00916938484, -0.0111457985, 0.00985268, -0.0172954593, -0.00236949255, -0.00628925767, 0.00747951446, 0.0164137874, 0.0158407, 0.00616068067, 0.0022170369, 0.00895631406, 0.0122919716, 0.0213511474, -0.0263178982, 0.0156496707, 0.0201608911, 0.0124462647, -0.0200286414, -0.00297564175, 0.0429961868, -0.0248484462, -0.00659416895, 0.0117703164, 0.0100877928, 0.0248631407, -0.0272877365, 0.0124389175, 0.0114323422, 0.0149663761, 0.00232724566, -0.00753829256, -0.0201315023, 0.00111494726, 0.0120642064, 0.0131001705, -0.0502258949, 0.028669022, -0.00324014318, -0.0135777434, -0.0123654446, -0.00194518804, -0.00764850155, -0.00833914429, -0.0276697949, 0.0133646727, -0.00198008749, 0.0231438801, -0.00987472199, 0.00660151616, 0.0206458103, 0.0145696234, -0.0126005569, -0.00596597791, -0.00693949033, -0.00541860703, -0.0183975473, 0.000954225834, 0.0291392468, 0.0150471963, 0.0240402464, -0.0316814, -0.00565739302, -0.00291319, -0.0215715654, 0.00873589609, 0.0192939136, 0.029403748, 0.0204400867, -0.0204988662, -0.00129679206, -0.00260093133, 0.00218948466, -0.026788123, 0.00855956227, 0.00207927567, 0.0289629139, 0.00380588253, 0.039205, -0.0180889629, 0.0239520799, 0.001497005, 0.0028782906, 0.00677050324, 0.00086927315, -0.0152382245, -0.0158994775, 0.00122331944, -0.0046177553, 0.00484552048, 0.00496307667, 0.015737839, -0.0113588693, -0.00424671825, 0.00951470621, -0.0180154908, -0.0264060646, 0.00290033221, 0.00316483388, 0.020822145, 0.00243010744, -0.00155761989, 0.00422467664, -0.0212188978, 0.00429814914, 0.0231144913, -0.00412916206, 0.0159141738, 0.00994084775, -0.00190661487, 0.00686969142, 0.0115205096, -0.0130046569, -0.00291502685, 0.0286837164, -0.00104147464, 0.021483399, -0.0246280283, 0.00485286769, 0.00375628844, -0.0194849428, -0.00225928356, 0.0307997297, -0.0256272554, -0.00320157013, -0.00479776319, -0.0152382245, 0.00864038244, -0.00955144223, 0.00562065654, 0.011682149, 0.00759707065, -0.0107196579, 0.00894896686, 0.0245692488, 0.0230410192, -0.0193379987, 0.023511244, 0.0510487892, 0.00295727351, 0.0233789925, 0.0150765851, -0.00236214534, -0.0107343523, -0.0128944479, -0.00207743887, -0.00846404769, -0.00419896096, -0.00140332733, 0.000503746734, 0.0159729514, -0.000111414367, 0.0189559404, -0.0288012736, -0.0106608793, 0.0257007275, 0.00145292142, 0.0190588012, 0.00800117, -0.0197641384, 0.0350905322, -0.00554718403, -0.0109621175, -0.00781014143, 0.0159435626, -0.0153557807, -0.00190110446, -0.0220124014, -0.0399103351, 0.00358546455, -0.020969091, -0.00109657913, 0.0111457985, -0.000712684589, -0.0214246213, -0.0264501497, -0.00330259488, 0.00801586453, 0.0285808556, -0.0118511366, 0.0136585627, -0.023290826, 0.0197347496, -0.00693214312, 0.000851823366, -0.00607251329, -0.016766455, 0.017501181, 0.00223724172, -0.00397119578, -0.0286396332, 0.00654641166, 0.0149369873, 0.0170897357, -0.0147900414, -0.00129587366, 0.0267734285, 0.00620109029, 0.00447081, -0.00531941885, 0.0154880313, 0.0364424288, 0.0151206683, -0.000505583594, -0.0107563939, -0.0127621973, -0.00327504263, -0.00408507837, 0.00630395208, 0.01157194, -0.0161052011, -0.023584716, 0.0132250749, -0.0070313313, 0.0261562578, 0.00599904079, -0.00379486172, -0.0345909186, -0.0203078371, 0.00706439372, -0.0229234621, -0.0151647525, 0.0127842389, 0.0195878055, 0.000718654192, -0.0102200434, -0.000145108454, -0.009360414, -0.0373534895, -0.00188457314, 0.0137540773, -0.0048234784, 0.00367914233, 0.0123727918, 0.0118364412, 0.0261121746, -0.00351933925, -0.00529002957, -0.0182652976, 0.0330920741, -0.0100804456, 0.0417030677, 0.00697990041, -0.0499026142, -0.0023474507, 0.00999227818, -0.0292421095, -0.0152235301, -0.0171632078, 0.0174717922, 0.00781748816, 0.00634068856, 0.00555453124, 0.0162962303, -0.0199992508, -0.00180559, -0.00329524768, -0.00986002758, 0.0259211455, 0.0208368395, 0.0241431072, 0.0208662283, 0.0135924378, 0.00899305101, 0.0213511474, 0.00920612086, -0.00288931141, 0.0329157412, 0.0271848757, -0.0124976952, -0.00274971337, -0.0245692488, -0.0213217586, 0.00996288937, 0.0153704751, 0.0159876458, -0.023511244, 0.0149884177, -0.00811872631, 0.0107416995, 0.00345321395, 0.0243341364, 0.0269938465, -0.00405568955, 0.0124976952, -0.0141581772, -0.015737839, 0.00244480185, -0.0260387026, -0.0124021806, -0.000478949747, -0.0165313426, -0.00469490141, -0.0047389851, -0.00203335518, 0.00667866273, 0.0281987973, 0.00329157407, -0.00124903477, 0.0191028845, -0.00884610508, -0.0083611859, -0.0400572829, 6.86509957e-05, -0.0159729514, -0.00938980281, 0.0123360557, 0.00384261878, 0.00186987862, 0.00605781889, 0.0459057, 0.000219499503, -0.00756033417, -0.0229528509, 0.0125123896, -0.00200029253, -0.0097571658, 0.00132893631, -0.0245692488, -0.03353291, 0.0186620504, 0.0191175807, 0.0249513071, 0.0233055204, 0.014297775, 0.0211160351, -0.00530472444, -0.0179714076, -0.0191322751, -0.0108078243, 0.00678519811, -0.0255537834, 0.0153116975, 0.00850813091, -0.0117850108, 0.0263766758, 0.00438999, -0.00966899935, -0.00130781287, 0.0286396332, -0.00477939518, -0.0159435626, -0.029403748, -0.00624150038, -0.00753829256, 0.0150104593, -0.0332096331, -0.00365342689, 0.0327100158, -0.0110355895, -0.0136732571, -0.00330075808, 0.0249513071, 0.0158994775, 0.00567576103, 0.000980859739, 0.0162962303, 0.00306197209, -0.00349362381, 0.0100216679, -0.0073472634, -0.0110208951, -0.00925020501, -0.00990411174, -0.00450019911, -0.00786891952, 0.0156790614, -0.0224091541, 0.00191763579, -2.65333802e-05, 0.0101245288, 0.00208845967, 0.00382057717, 0.0101833073, -0.00910326, 0.0107710883, 0.0114029534, -0.0494911671, -0.00545166945, -0.0202196687, 0.0132324221, 9.27018045e-05, -0.00307666673, 0.0108225197, -0.00292421086, -0.0217919834, -0.0048749093, 0.0017991612, -0.00517247338, 0.0155027257, 0.0121156378, 0.0267293453, 0.00901509263, 0.0016614, 0.00440101093, 0.0299768355, 0.0108445613, -0.00189375714, -0.00850813091, 0.00886079948, 0.00423569744, 0.00756033417, -0.00574188633, 0.0138495918, -0.0140259266, -0.0130928233, -0.00145292142, 0.00566106662, -0.00296094734, 0.00433488563, 0.0193673875, 0.0129532255, -0.0176334325, -0.00156864082, 0.0149957649, 0.0275816284, 0.0176040437, -0.00635538297, -0.00705337292, 0.0322104022, 0.0146798324, -0.00874324329, 0.000568494492, -0.0105065871, 0.00375261484, 0.0151647525, 0.0232173521, 0.0102861691, 0.0117703164, -0.0275669321, 0.016913401, -0.00691744871, -0.0179714076, 0.00313360803, 0.0165313426, -0.00177252735, 0.0131001705, 0.0122625828, -0.0083538387, 1.92435164e-05, -0.011057632, -0.0154292537, 0.00547003793, 0.00147496315, -0.0126740299, 0.00566106662, -0.0125564737, 0.0111164097, -0.0190441068, -0.00604312448, -0.0206311159, 0.0154145593, 0.0142096076, -0.0200139452, -0.0155761987, -0.0253480598, -0.0159141738, 0.00457734521, -0.0257154219, 0.0254803095, 0.0139744952, 0.00794973876, 0.0176922102, -0.00552146882, -0.0121082906, 0.0178979337, 0.000867436291, 0.00504757, 0.0122772772, 0.0178832393, 0.00371220498, 0.0156349763, 0.00539656496, 0.00153925177, -0.015032501, -0.0156937558, -0.00112321298, -0.0146430964, 0.0218360666, 0.0174717922, 0.0138495918, 0.0309466738, -0.00985268, 0.000537727843, 0.00182579504, -0.00538554415, -0.00129587366, -0.0124389175, 0.016178675, 0.0137393828, 0.0069541852, -0.00543697504, -0.00189375714, 0.0307115614, -0.0116674546, -0.000746665639, -0.00335953617, -0.0114764255, -0.0024154128, 0.00686601782, -0.00450387271, -0.000735185575, -0.00444142101, 0.0123727918, -0.0145255402, 0.0129679199, -0.0070166369, 0.000128691914, 0.00395650137, 0.00699459482, -0.0111751882, -0.00789830834, -0.016913401, 0.016546037, -0.0216891225, -0.0153557807, 0.0101833073, -0.0288453568, 0.0132177277, -0.014885556, 0.0104771983, -0.00844935328, 0.00531941885, 0.0217332058, 0.000147863684, 0.00432386482, 0.0202784482, 0.0153116975, 0.00136016216, -0.00606516609, 0.0145769706, -0.00320524373, -0.000308814662, -3.16563746e-05, -0.0069615324, 0.00673376722, 0.00369383674, 0.00237867655, 0.0117776636, -0.0003692, 0.00352484966, -0.0118952198, -0.00517247338, -0.00113607058, -0.0204694755, -0.00804525334, 0.00149241288, 0.016178675, -0.00884610508, 0.000442902237, -0.0115498984, -0.0138422446, -0.00991145894, -0.00651702285, -0.00789096113, 0.003482603, -0.0176187381, 0.00566474, -0.00396384858, 0.000159114177, 0.0145328874, -0.0102861691, -0.0149516817, 0.03353291, -0.0186473541, -0.00632966775, -0.00286359596, 0.00423569744, 0.00610190257, 0.0175746549, 0.0117850108, -0.01157194, 0.00874324329, 0.00434590643, -0.00550677394, -0.0290069971, 0.0070203105, 0.00255868444, -0.00111953926, -0.00404466875, 0.022512015, 0.0253627542, 0.05372319, 0.014885556, 0.0152676133, 0.0147092221, -0.00805260055, -0.0147239165, -0.0124976952, 0.00811872631, 0.00465449132, 0.00359832239, 0.014775347, -0.0178391561, -0.00700194202, 0.00541860703, -0.000257154228, 0.00623047957, -0.0257888958, -0.00297747855, 0.00864773, -0.00191028859, -0.00890488364, 0.0236141048, 0.0103669893, -0.00271114032, 0.0132618109, -0.00385731342, -0.0290216915, -0.00446346262, 0.00389037607, 0.00594761, 0.00631497288, 0.00394180696, -0.0083685331, 0.00515777897, -0.0025844, 0.00711215101, 0.0108298669, -0.0144888042, -0.0271701813, -0.00678887172, -0.00663090544, 0.0192645248, -0.00912530161, 0.00683295494, -0.0121376794, 0.021042563, -0.00858895108, -0.00440101093, -0.00562800374, 0.0218066778, -0.00961756799, -0.00447448343, 0.0111825354, -0.0103890309, -0.0111457985, 0.0271701813, -0.0102641275, -0.0332390219, -8.17957061e-06, 0.00894162, -0.0109400759, 0.00626354199, -0.0106976153, -0.0170456506, 0.0206017271, 0.00454060873, -0.0158994775, -0.006965206, -0.0165754259, -0.0108886445, 0.0311523974, 0.00261378894, -0.0118511366, 0.0297270287, -0.00242459704, 0.00562433, 0.0161052011, -0.0239373855, 0.0186767448, -0.00536717614, 0.00336872041, 0.00977186, 0.00875793863, 0.00832445, 0.0131956851, -0.00894896686, 0.00675948244, -0.00859629828, 0.0203666147, -0.00442305254, 0.00328606367, 0.00574188633, -0.0110282423, 0.0210866462, -0.012490348, 0.00447448343, 0.0201755855, -0.00855221506, -0.00655743293, 0.017427709, -0.0116748018, 0.00129403675, 0.01415083, -0.016178675, 0.0111237569, 0.00313177099, 0.00272032432, 0.00684397621, -0.00629293127, -0.0134969233, 0.0108151725, 0.0180595741, 0.0190000236, -0.0123874862, -0.0112266187, 0.00573453913, 0.0148561671, -0.00277175521, 0.0232467428, -0.00544432225, 0.0194114707, -0.0106461849, -0.0171925966, 0.00589617901, 0.00464347051, -0.00969104096, -0.00375445164, 0.00812607352, -0.00769993244, 0.0280224625, -0.0146945268, 0.00431284355, 0.00594761, -0.0187649112, 0.0108078243, -0.00184508157, -0.00634068856, 0.0127401548, -0.0115278568, -0.0122038051, 0.00883875787, -0.0181918237, -0.00414753, -0.0111017153, 0.0133573255, -0.0124389175, -0.0109621175, 0.0113441749, 0.00740971556, 0.00926489942, 0.00407773117, -0.0142096076, -0.0112045771, 0.0121450266, -0.00927959383, -0.00878732745, -0.00994819496, 0.00491164578, 3.24886823e-05, 0.00638109865, 0.00746849366, 0.00841261726, 0.014334511, 0.00613129139, -0.000285395276, 0.00794239156, 0.0101833073, -0.0209250059, -0.0134161031, -0.00382425077, 0.0124242231, -0.0225561, 0.00377281988, 0.00260460493, 0.0110723265, -0.0166489, 0.0275375433, -0.0118731782, 0.0258917566, 0.0120348176, 0.0187061336, -0.00317769148, -0.0450828075, 0.00890488364, 0.0144153312, 0.0137393828, -0.0137834661, 0.0148635143, -0.00495205587, 0.0121891107, -0.0183828529, 0.000411217159, -0.0178979337, -0.0200580303, 0.014297775, 0.0124242231, 0.0145622762, 0.00183406065, 0.0203519203, -0.0181624349, -0.0029407423, 0.00498879189, -0.0218066778, 0.0177362952, -0.00527166156, -0.0121523738, 0.00140608253, 0.00671907235, -0.000326264417, -0.00295543671, -0.00437162165, 0.033650469, 0.0277285725, -0.00826567132, 0.0153116975, 0.00773666846, -0.0111090625, -0.00833914429, 0.0158994775, -0.0166782886, -0.0136291739, -0.00283420691, -0.0153704751, 0.0150251538, 0.00897835568, -0.00143363478, 0.00535615534, -0.0285367724, -0.0152088357, -0.0141802188, 0.0183681585, -0.0128724054, 0.0128944479, 0.00801586453, -0.0117115378, 0.0199551675, 0.00768523756, -0.0299474467, -0.00396384858, -0.00246317, 0.0157525335, -0.00781014143, 0.00326953223, -0.0188677721, 0.000630487048, 0.00566841383, -0.0163550079, -0.0319752917, -0.0300943926, -0.00386098702, -0.00800117, -0.0100584039, 0.0430255756, -0.00483817328, 0.0150471963, -0.000591913937, 0.00335218897, -0.00748318806, -0.0180742685, -0.0126152514, -0.0190734956, -0.0269203745, 0.00662723184, -0.0124389175, -0.0058814846, -0.0112192715, -0.00676682964, -0.014040621, 0.00824363, -0.0114837727, 0.0131369075, -0.00560228853, 0.00379118812, -0.000355653465, 0.0257301163, -0.00819219928, -0.019455554, -0.00420630863, 0.0190294124, -0.0108592557, 0.0297711119, -0.00839792192, 0.0137026468, 0.00555085763, 0.00334484177, 0.0273171254, -0.0171925966, 0.00979390275, -0.000704878126, -0.0115939816, 0.00148782087, 0.00520921, -0.00916938484, 0.00856690947, -0.00195804564, 0.0220858753, -0.0119539974, -0.012233194, 0.0331214629, -0.00152088352, -0.00357995415, 0.0289923027, 0.025759507, -0.01415083, 0.00194702484, 0.000844476104, -0.0181036573, -0.0181771293, 0.0118144, -0.00565371942, -0.00653539086, -0.0221593473, 0.0131001705, -0.00670805154, 0.00446346262, -0.000685132341, 0.0030050308, -0.00997023657, -0.0185738821, -0.00940449722, 0.0137761189, 0.00698724762, 0.0261709522, 0.0057602548, 0.00636640377, -0.00429814914, 0.0180595741, 0.00509900087, 0.015737839, 0.0202196687, -0.0177950729, -0.0146577908, 0.0194996372, -0.0138789807, -0.0195878055, 0.00267440383, -0.000690642803, 0.0102347378, -0.0162227582, -0.0193967763, 0.0116160242, -0.00635170937, 0.0202490576, -0.00423202384, -0.00594761, 0.00550310034, 0.0146504436, 0.0246280283, -0.00803055894, 0.0113809109, 0.018426938, 8.27715194e-05, -0.00409242604, -0.00944123417, -0.00921346899, -0.0101392241, 0.00407405756, -0.0182359088, -0.00436794804, 0.0118584838, 0.0152235301, 0.0101171816, 0.0109841591, 0.0227912124, 0.0024686805, 0.0178538505, 0.0126593355, 0.0268469, -0.0178832393, 0.0196025, 0.00426141266, -0.0138495918, 0.000548748765, -0.0251864195, 0.0137908142, -0.00322361197, 0.00094320497, -0.00974247139, 0.00520186266, -0.00689173304, -0.0105506703, -0.00401895307, -0.00147404475, 0.00750155607, -0.00267991447, -0.0106902681, -0.0242900532, 0.00509532727, 0.000534513441, -0.0186620504, -0.00999962538, -0.0440835804, -0.0308585074, -0.00153925177, 0.0129826143, 0.00688805943, -0.0237169676, -0.00725909648, 0.00856690947, 0.0238933, 0.0176187381, 0.00574923353, 0.00383894518, 0.00206641783, 0.00703867851, -0.0116527602, 0.0152088357, -0.0266117882, -0.0105286287, -0.00486021489, 0.0135777434, -0.00670070434, 0.0136879524, -0.0018083452, -0.00153741485, -0.0190588012, 0.0022813254, 0.00219866866, -0.0274787657, 0.00254950044, -0.0025311322, 0.0180301853, -0.00185793929, -0.00744277798, -0.000419712422, 0.00781014143, -0.0139965368, 0.0170162618, 0.00447448343, -0.0267440397, -0.0223650709, -0.0155908931, 0.00125638209, 0.00900774542, 0.0092355106, 0.029888669, -0.00720399199, 0.0185591877, -0.00790565554, 0.0441129692, -0.0059439363, 0.00274420297, -0.0166489, 0.0230116304, 0.0110723265, -0.0140112313, -0.0181918237, -0.00342749851, 0.032239791, 0.00534513406, -0.0252598915, -0.00956613757, -0.00397486938, 0.0172807649, 0.00900774542, 0.00193600392, 0.0046838806, 0.00654273806, -0.0056941295, -0.00897835568, 0.0167517606, -0.0024062288, -0.00114892831, -0.0258770622, -0.016986873, 0.00500348629, 0.0133940615, 0.00249623274, 0.0236141048, 0.00511736888, -0.0136071322, 0.00338525162, -0.0028856378, 0.00547371153, -0.0057529076, -0.0188677721, 0.00765584875, -0.0126960715, -0.00277542882, -0.0197347496, -0.00193049351, 0.0203666147, -0.00902244, 0.00291870045, 0.0104037253, -0.0335623, -0.0123580974, 0.000230061196, -0.00559861492, 0.00973512419, 0.0135483537, -0.0083538387, -0.00122607464, -2.49261666e-05, -0.00224275212, -0.000358179095, -0.00385363982, 0.0173689313, 0.00180559, -0.00686969142, -0.00215458497, -0.00706439372, 0.000422926852, 0.0163403135, 0.0152382245, 0.00776605774, -0.0160317291, 0.0249072239, 0.00208294927, -0.00761176506, 0.00429447554, 0.00871385448, 0.000924836786, -0.0202049743, 0.00498144468, 0.0115131624, 0.0109988535, -0.00547738513, 0.00544432225, 0.00278461282, 0.00358913816, -0.0137761189, 0.00983798597, -0.029536, -0.0111825354, -0.0286984108, -0.0153851695, 0.011057632, -0.00129036314, 0.016472565, 0.0061459858, -0.00906652305, 0.0120789018, -0.00381322973, -0.00049088907, -0.0017422199, -0.00148782087, 0.0155908931, -0.0101318769, -0.0017477303, -0.00811137911, -0.0106094489, -0.00098269654, 0.00763380667, -0.0274934601, 0.0113294804, 0.0163550079, -0.00839057472, -0.00160813227, 0.00330075808, 0.00525696715, -0.00858895108, 0.0145402346, -0.00673376722, -0.0247455835, -0.000684213941, 0.00493368739, 0.00495940307, -0.0082215881, 0.0314462893, -0.00243378105, -0.00565004582, -0.00555820484, -0.0181477405, -0.00067916268, 0.0104110725, -0.00756768137, 0.00282685971, 0.0131222131, 0.00661621103, 0.000687887543, 0.00220785267, 0.00681826053, -0.0198229179, 0.000607526861, 0.00271114032, -0.00315748644, 0.000475276116, 0.0284045208, 0.0198082235, -0.0182506032, 0.00905917585, -0.00994084775, 0.00258623669, -0.0187649112, 0.0046177553, 0.00913999602, 0.0102126962, 0.0111751882, -0.00852282532, 0.0011985224, -0.00266154623, 0.0196025, 0.00578964362, -0.00333749456, -0.0115645928, 0.00523125147, 0.00136108056, 0.00777340494, -0.00693214312, -0.0118070524, -0.00310789258, 0.0149369873, -0.00129679206, -0.00117923575, 0.0178097673, -0.0072150128, -0.0238492172, 0.00620843796, -0.0244810823, -0.0127842389, 0.0214246213, 0.0136291739, 0.0175893493, -0.00298482575, 0.0097571658, 0.0141361356, -0.0011379075, 0.0177509896, -0.0186032709, 0.0233202148, -0.0113662165, -0.00418426655, 0.0165313426, 0.000797178072, -0.0332096331, 0.00523492554, -0.00162833731, 0.00426508673, -0.0115425512, -0.0174424034, 0.00259174732, -0.0233936869, -0.012343403, 0.0011415811, 0.00506226439, 0.0194849428, 0.0220417902, -0.0184710212, -0.0125858625, 0.0134675344, 0.00271848752, 0.0172807649, -0.0211160351, 0.00162558211, -0.00118107267, -0.00436427444, 0.0176040437, 0.016399093, -0.0202931426, 0.0061423122, 0.0047536795, -0.0214980934, 0.00656845374, -0.0142536918, 0.0113662165, 0.0216891225, -0.0304176714, -0.00624517398, 0.00388670247, 0.0334153548, 0.00553983683, 0.000244526105, -0.015958257, 0.00626354199, -0.0288012736, -0.00202968158, -0.00352852326, -0.0109400759, 0.0188971628, 0.0245251656, -0.00889018923, 0.00913264882, 0.0278902128, -0.0238933, -0.00731052738, 0.0165754259, 0.0049447082, -0.0128724054, 0.0103890309, -0.00513206376, -0.0212482866, 0.0239961632, -0.0211307295, -0.00529370364, 0.000251873367, -0.00304911449, 0.00731420098, 0.0247161947, -0.0196465831, 0.00907387, 0.000757227361, -0.011682149, 0.0222622082, 0.00850813091, 0.0111604938, 0.0206164215, -0.00290216901, -0.0103229051, 0.0327687971, 0.0177509896, 0.00730685377, -0.0186473541, 0.0101612657, 0.0112045771, -0.0146871796, 0.0169721786, -0.00654641166, 0.00510267448, 0.00877998, -0.0104551557, 0.0148782087, -0.0185591877, -0.0326512381, 0.00509900087, -0.0598948933, 0.00927959383, -0.00445244182, 0.0111164097, -0.0083538387, 0.00916938484, 0.0110723265, -0.0123874862, 0.0241871923, 0.024025552, 0.0231291857, 0.0087505905, -0.0103963781, 0.00141985866, -0.0103596421, 0.0058227065, 0.0092281634, 0.000797637331, -0.00844935328, 0.00158517214, 0.00816281, 0.00319605973, -0.00343668251, 0.000571249751, 0.0168987066, 0.00401895307, -0.00633701496, 0.00187538902, -0.014407984, -0.00145567663, 0.00651334925, 0.0007526353, 0.0171632078, -0.0268909857, 0.0157672279, -0.00996288937, 0.00707174139, -0.009360414, -0.0137320356, 0.000204804979, 0.00693949033, 0.017427709, -0.0197200552, -0.0100584039, -0.0112119243, 0.00916203763, 0.00442305254, 0.000765952223, 0.00655008527, 0.00646559196, -0.00711582461, -0.00560228853, 0.000554259226, 0.007350937, 0.00781748816, 0.00127658702, -0.0104184197, -0.023364298, 0.0158407, 0.0115645928, -0.00435692724, 0.00303074624, -0.0084860893, 0.00265970943, 0.00783218257, -0.0236728825, 0.00786157232, -0.00331912632, 0.0104257669, 0.028375132, -0.0199845564, -0.00315197604, -0.00754563976, 0.00299768359, -0.0136438683, 0.0148267783, -0.00271848752, 0.00958083197, 0.0096322624, 0.0187943, -0.0201315023, 0.0115205096, 0.0189265516, -0.00390507071, 0.0259799249, -0.00762645947, -0.00563535094, -0.00327871647, -0.00320340693, 0.00803790614, 0.00907387, 0.0259505343, -0.0159141738, -0.025539089, -0.016986873, 0.0071635819, -0.00908121746, -0.00689173304, 0.0118217468, -0.00309870834, 0.0224826261, 0.0111898826, -0.00794239156, 0.00800117, 0.0203078371, -0.0225854889, 0.00674478803, -0.0287424959, -0.00701296329, 0.0224679317, 0.0218066778, -0.00406671036, -0.000888559676, 0.0111751882, 0.0252598915, -0.0102714747, -0.00946327578, -0.00642150827, 0.00309503474, -0.00806729589, -0.000187355225, -0.0230557136, -0.0162227582, -0.0160905067, -0.00508063287, -0.00331177912, -0.0195143316, -0.0125344321, -0.0179420169, -0.0175746549, 0.00265970943, -0.0157084502, -0.00315564964, 0.000490429869, 0.002404392, 0.00930898264, -0.0206017271, 0.0341500826, -0.0130046569, -0.00147863675, -0.0046912278, -0.00471694302, -0.0047463323, 0.00567208743, -0.0467873737, -0.0345909186, 0.00415855134, -0.0197053608, 0.0189265516, -0.0146063603, -0.0149075976, -0.00282869651, 0.0244663879, -0.0232614372, -0.0210866462, -0.014665138, 0.00448550424, -0.0106167961, 0.000285854476, 0.0163697042, 0.0118878726, 0.0123507502, 0.0307703391, -0.00828036573, 0.0188383833, 0.00988206919, 0.0100804456, 0.0212482866, 0.0204547811, -0.000495481072, 0.00690642791, 0.00679989252, -0.00130597607, -0.0107490467, -0.0158553943, -0.0282134917, 0.00148414727, -0.0325042941, 0.000673652219, -0.0119246086, -0.0109547703, -0.00280665467, -0.00733991619, -0.00688438583, 0.00248337514, -0.00941184442, -0.00933837239, 0.0145843178, 0.0180889629, 0.000382516911, -0.000320065184, 0.00157874322, -0.00703500491, -0.00500716036, -0.00011405479, -0.0113735637, 0.0036093432, -0.00379118812, 0.000846772105, 0.00837588, 0.021262981, -0.000281492044, -0.009764513, -0.00378016708, -0.00685132341, -0.0104698511, 0.00978655554, -0.00423569744, -0.0115939816, 0.0194702484, 0.0151794469, -0.0156937558, -0.00266889343, 0.00183222385, 0.0115572456, 0.0270085409, -0.0147092221, -0.00740971556, -0.00522390427, -0.0022776518, 0.0139451064, 0.000156244147, 0.0173689313, 0.0207045879, 0.0229822397, -0.0125638209, 0.00513573736, -0.00013351356, -0.0246427227, 0.000591454736, 0.000893610937, 0.00366261089, -0.00268358807, 0.0186767448, 0.00226112036, -0.0104184197, 0.00817015674, -0.00484184688, -0.0136365211, -0.00146026863, -0.000391471374, -0.00125454529, 0.0113809109, -0.00212152232, -0.0106535321, 0.0119539974, -0.00498879189, 0.00750522967, -0.00897100847, 0.0115645928, 0.00691377511, 0.000731971115, -0.000845853705, 0.00163201091, 0.00883141067, 0.000720950251, -0.0175599605, 0.0262003411, -0.0036166904, -0.00724072848, -0.0126887243, -0.0168105382, 0.0120201232, -0.0102347378, 0.0071488875, 0.0112119243, -0.0113221332, 0.0102494331, -0.00301972544, 0.00256603188, 0.00151537312, -0.0138936751, 0.00665662065, -0.00133169151, -0.00891957805, 0.0258917566, 0.0143932896, 0.0142169548, 0.0109915063, -0.00445244182, -0.0046912278, -0.0109694647, -0.00799382292, 0.00219499506, 0.00952205341, -0.00440468453, 0.00807464309, -0.0172954593, 0.0221299585, 0.0115058152, -0.00338157802, -0.023070408, 0.00928694103, -0.00671907235, -0.0281106308, -0.0189118572, 0.000318917155, 0.0103449468, -0.00619006949, -0.0133499783, 0.012490348, -0.0127181131, 0.0004513975, -0.000574004953, 0.00275338697, -0.00472061709, 0.00488593, -0.0289482176, -0.00772197405, -0.0206458103, -0.0402336158, 0.0158847831, -0.00714521389, 0.0153851695, -0.0102420859, 0.00152731244, -0.014701874, -0.0134748816, 0.0128871007, 0.00217846362, -0.0107343523, 0.0215421766, 0.0181330461, 0.00224458892, -0.00761911226, 0.00932367705, 0.0412034541, -0.00172844378, -0.00609455537, -0.0227177385, 0.000712684589, 0.00745012518, -0.000509257196, 0.0048161312, -0.0146210548, -0.000562524889, -0.00385363982, 0.000787075609, 0.0140993986, -0.0249660015, -0.0190734956, -0.0100584039, 0.00868446566, -0.0223650709, 0.00278828642, -0.00792035, -0.00181661092, -0.0177362952, 0.0378824919, 0.00898570381, -0.0106388377, -0.000973512419, -0.00724440208, 0.0311230086, -0.00816281, -0.00505491719, -0.00513941096, -0.00340545666, 0.00615700707, -0.00186804181, -0.0182652976, 0.0311230086, -0.00524594635, -0.0221887361, 0.000900039799, -0.00272950833, 0.0100437095, 0.00334300497, -0.0233496036, -0.0122038051, -0.011167841, -0.0131809907, 0.0236728825, 0.0653024763, 0.0123360557, -0.00157690642, -0.0244223047, -0.000178630347, 0.0083685331, 0.00684765, 0.0354138091, -0.0250394735, 0.0113956062, 0.00255133724, 0.022512015, -0.0010800478, 0.00450754631, -0.00700561563, -0.0248190556, -0.00195437204, 0.00309136114, 0.00686601782, -0.00288747461, 0.000518441258, -0.0241724979, -0.0024099024, -0.00652437, 0.00644355034, -0.00641783467, -0.00406303676, -0.00562065654, -0.00540391216, -0.00517982105, -0.00888284203, 0.0247602779, -0.00375628844, 0.0269497633, -0.0247161947, 0.00496307667, 0.0108519085, 0.0157084502, -0.00497042388, -0.0369420424, 0.022071179, 0.0268909857, -0.00764115434, -0.0278902128, 0.00918407924, -0.0184122417, 0.00273501896, -0.00623782678, -0.00775136286, -0.030329505, 0.0245104712, -0.0176187381, -0.0117482748, -0.00268909847, 0.0122772772, 0.00973512419, 0.0136291739, 0.00887549482, 0.0244663879, 0.0226148777, 0.00138404081, -0.00911795441, -0.00565739302, -0.00433121203, -0.0126299458, -0.0427904613, -0.00490797218, 0.00158058014, 0.00340178306, -0.00850813091, -0.0103008635, -0.00833179709, 0.0124756536, -0.0267734285, 0.00616068067, 0.0123580974, -0.0108886445, 0.0126593355, -0.00478306878, -0.0278755184, -0.0149737233, -0.000750339299, -0.00667866273, -0.0135850906, 0.00513941096, -0.0194114707, -0.0176628213, -0.0057529076, -0.00385731342, 0.0079644341, 0.00769993244, 0.0285808556, 0.00874324329, 0.000158080962, 0.00805994775, 0.0110723265, -0.0112045771, 0.0264060646, 0.00743543077, 0.0059549571, 0.0326512381, -0.00337974122, -0.00277175521, -0.0156349763, -0.00235296111, 0.0289188288, -0.0072848117, 0.0110943681, 0.0183828529, 0.00418794, 0.00534513406, 0.00079166767, 0.00373424683, -0.0155174211, 0.0149663761, 0.000383664912, 0.01127805, 0.0178685449, 0.0197641384, -0.00753829256, -0.0128062805, -0.0140332738, 0.00716725551, -0.00908856466, 0.000781105948, 0.0144006368, 0.00363873225, -0.00158609054, 0.0289629139, -0.0049447082, -0.0071488875, -0.0237904396, -0.0233202148, -0.00782483537, 0.0370595977, 0.0086256871, 0.00526798796, 0.0047426587, 0.0193820819, -0.00201682397, 0.00484919408, 0.00245582289, 0.0189118572, 0.00204988662, -0.00805260055, -0.0127842389, 0.0318871252, -0.0048785829, 0.0442011394, 0.00550677394, 0.00697255321, -0.0424084067, -0.00571984472, -0.0121891107, 0.0139818424, 0.0190294124, -0.0144667616, -0.014297775, 0.00160445867, -0.0326512381, 0.0209103115, -0.00271297712, -0.0060174088, -0.00528635597, 0.00372322579, -0.00109566073, -0.00512471655, -0.014077357, -0.0226001833, 0.0129973097, 0.0228059068, 0.000937694509, 0.00368281594, 0.00566106662, -0.0121817626, -0.0234818552, -0.0117335804, 0.00116178603, 0.0178538505, -0.00688438583, -0.00986737479, -0.00133995723, -0.012380139, 0.0510487892, 0.00773666846, 0.00450019911, -0.00870650727, -0.01850041, 0.0121376794, -0.0133205885, -0.0168105382, 0.0116380658, -0.0157525335, -0.00252745859, 0.0164431762, -0.0130120041, 0.017501181, -0.0210719518, 0.00514308456, 0.00243194425, 0.00389772328, -0.0101245288, -0.000657120894, 0.0128944479, 0.0115498984, 0.0266999565, -0.00334300497, -0.000232242412, -0.00194702484, 0.0250835586, -0.0211013407]
06 Sep, 2021
jQWidgets jqxTabs disabled Property 06 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTabs represents a jQuery Tab widget that is used for breaking the content into multiple sections. The <li> elements are used for tab title and <div> elements are used for tab content. The disabled property is used to enable or disable the jqxTabs widget. It accepts Boolean type value and its default value is false. Syntax: Set the disabled property. $('selector').jqxTabs({ disabled: Boolean }); Return the disabled property. var disabled = $('selector').jqxTabs('disabled'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtabs.js”></script> Example: The below example illustrates the jQWidgets jqxTabs disabled property. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href=" jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxtabs.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTabs disabled Property </h3> <div id='jqxTabs'> <ul style='margin-left: 20px;'> <li>GeeksforGeeks</li> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ul> <div> A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, ... </div> <div> HTML stands for HyperText Markup Language. It is used to design web pages using a markup language. HTML is the combination of Hypertext and Markup language. Hypertext defines the link between the web pages. </div> <div> Cascading Style Sheets, fondly referred to as CSS, is a simply designed language intended to simplify the process of making web pages presentable. CSS allows you to apply styles to web pages. More importantly, CSS enables you to do this independent of the HTML that makes up each web page. </div> <div> JavaScript is a lightweight, cross-platform, and interpreted scripting language. It is well-known for the development of web pages, many non-browser environments also use it. JavaScript can be used for Client-side developments as well as Server-side developments. </div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxTabs').jqxTabs({ theme: 'energyblue', width: 550, height: 150, disabled: true }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtabs/jquery-tabs-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtabs-disabled-property?ref=asr5
PHP
jQWidgets jqxTabs disabled Property
Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0233214553, 0.00505727669, -0.00718326587, 0.0559199527, 0.0915678516, 0.0200000443, 0.0104653062, 0.00650323555, 0.026771713, 0.00332498946, 0.00330530456, 0.0217466485, -0.0140444124, -0.0459270887, -0.00813888758, 0.00434503471, -0.0381389558, -0.00494274544, -0.013922723, 0.0299785919, -0.00505011855, -0.00527918153, -0.0553759299, 0.0105082551, -0.0301503893, 0.0418898575, -0.00401575724, 0.0296922643, -0.0143593736, -0.00880460069, -0.0210021939, -0.0139441974, 0.0111095449, -0.0150179295, -0.0243379213, -0.0172656085, -0.00778813474, -0.00855406374, -0.0391411036, 0.00285075791, -0.0184968207, 0.00282749371, -0.0231353417, -0.00273443712, 0.0024194757, 0.0333859026, -0.0194989704, -0.010501097, -0.00904798, 0.00803867262, -0.00269327732, 0.0118539995, 0.0133500658, 0.0532857329, 0.0321833231, -0.00175555155, -0.0124123394, 0.0192699078, -0.00189513667, 0.0118683157, 0.00258232513, -0.0461847857, -0.0139441974, -0.0235505179, -0.00473157829, 0.0366214141, 0.0179814287, 0.00761633785, -0.0253114384, 0.00253758626, -0.0222190898, 0.0319256261, 0.0240229592, -0.00240158, 0.00434145564, -0.000570867443, -0.028504001, 0.0281174574, 0.00473515736, 0.0178955309, -0.0133214332, -0.0242233891, -0.040429581, -0.00294918334, -0.0096635865, 0.00445956597, 0.0133142741, -0.0364209823, 0.0559772179, 0.000391912123, -0.0277595464, -0.00545813655, 0.00866859499, -0.0103937238, -0.0179814287, 0.00283107301, -0.0183393396, 0.00652828952, -0.0304653514, 0.00765212858, 0.029835429, -0.0148461321, 0.00758054666, -0.0374517664, 0.00576236099, -0.00212240987, 0.0493344, 0.00484253047, 0.0289334934, 0.0178955309, -0.00575878145, -0.00881891698, -0.00890481565, 0.0115605127, -0.0321833231, 0.037738096, 0.0049821157, -0.0167645328, 0.00970653538, 0.0162920915, -0.00850395579, 0.0135791283, -0.00893344916, 0.0494489297, -0.0107516348, 0.0460129865, -0.0109950136, 0.00177792099, 0.0400859863, 0.00911240373, 0.00584110105, 0.0422048196, -0.00969221909, -0.0137008177, 0.0170365442, 0.0419471227, -0.0031281386, 0.00469936617, -0.0526844412, -0.011066596, -0.0169220138, -0.0112741841, -0.00534002623, 0.0409449749, -0.0186399836, 0.0375949293, 0.0200286768, 0.0156908017, -0.00220651878, 0.0251253247, 0.00614174595, -0.00576951914, 0.00459557213, 0.0124194985, 0.0391697362, 0.0391697362, -0.010758793, 0.0177809987, -0.00816036202, -0.0147172846, 0.0395133309, -0.00442735432, 0.0305512492, 0.0185827184, -0.0345884822, 0.00638512522, 0.0293773022, -0.00168217986, -0.0438368917, 0.0378239937, 0.00349320751, -0.049105335, -0.0469006076, 0.0154617382, -0.00361668668, -0.00100393931, 0.0208160803, -0.0275304839, 0.0283178873, -0.0388261415, -0.024624249, 0.00275233248, 0.00782392547, -0.00326056569, 0.00844669063, -0.0139585137, -0.00747317355, 0.00978527591, -0.0558054224, 0.00424481975, -0.0491626, -0.00154259475, 0.0253687035, 0.0418612249, 0.00866143685, -0.0163923055, -0.0223193057, 0.00573730702, 0.00149696111, -0.0157910157, 0.0139012476, 0.02366505, 0.0117179928, 0.0252684895, 0.00798140652, 0.0471296683, 0.0245383512, -0.0353615694, 0.0490767024, 0.00653544767, -0.0093772579, 0.0225054193, 0.0219184458, 0.0231782906, -0.00808162149, 0.0147172846, -0.0295491, -0.0327559784, -0.0458698235, 0.0101360288, 0.0180959608, -0.0139441974, -0.0227201656, 0.0329850428, -0.0900789425, 0.0119756889, -0.0086542787, -0.0314961337, -0.00555477245, 0.022133192, -0.00628848933, -0.0186543018, -0.0215748511, -0.00594489509, 0.0116822021, 0.0479886532, 0.00273622666, 0.00978527591, 0.0113600828, 0.0120759038, 0.0018879784, 0.000111008208, -0.0147316009, -0.0320115238, 0.0264567528, -7.78455578e-05, -0.00081379927, -0.00880460069, 0.0304367188, 0.00108446914, 0.00579815172, -0.0226629, 0.0102577182, -0.00388690922, 0.0281890389, 0.0201861579, 0.000725216349, -0.0334718, -0.008325, -0.0131854266, 0.0469292402, 0.0353043, -0.000802614552, -0.0111381784, -0.00479242299, 0.0350179747, 0.0312384386, -0.00606300589, 0.0216893833, -0.0217466485, 0.0184825044, -0.0154474219, 0.015705118, 0.0357910618, 0.0062920684, 0.0205727015, -0.027487535, -0.00455620186, 0.0237795804, 0.0129492059, 0.0199284628, 0.0105368886, 0.010350775, 0.0524840131, 0.0453258, -0.00110862812, 0.0350179747, -0.00830352586, -0.0192699078, 0.026313588, -0.0181961749, -0.00737295859, 0.0218898132, 0.00214388454, 0.0325555503, -0.0221904572, 0.0181675423, 0.00152827834, 0.0030064492, 0.0127058262, -0.0145383291, 0.000977990683, -0.0361346565, 0.0084896395, -0.00245526666, 0.0294345692, 0.0549464375, 0.0153615233, -0.0108804824, -0.0345025808, 0.0115390383, 0.0148747647, -0.0256836656, -0.0294345692, -0.0290480256, 0.00939873233, -0.0128203584, 0.0179384798, -0.0215891674, -0.0249105785, 0.0204724874, -0.0134932296, -0.0367932096, 0.0341303572, 0.0469292402, -0.0302076545, -0.0212598909, -0.0212455746, -0.00676451065, -0.0261704233, -0.064137578, 0.0310666412, 0.00994991511, 0.0213601049, 0.00816752, -0.0537438579, -0.00489621703, -0.00574446516, -0.00939157419, 0.0185540859, -0.0053436053, -0.0334718, 0.0278883949, -0.00365605694, 0.0381675884, -0.0284037851, -0.0205297526, 0.0134717552, 0.0314102359, -0.0116249369, 0.00130368944, 0.00995707326, -0.0190265272, 0.00331246271, 0.0139585137, 0.0106442617, -0.0148031823, -0.0403436832, -0.0468433388, -0.0187402, 0.0320974216, 0.00118378934, 0.0303221866, 0.0216321163, 0.0100501301, -0.0283322036, -0.00308876857, -0.0243951865, -0.0355047323, 0.0202863738, -0.0316965617, -0.0295777321, -0.0205440689, 0.0274159517, -0.0399714559, 0.0137580838, -0.0316679291, -0.00466715451, -0.00751612289, -0.00280780881, -0.0571511649, 0.0344739482, 0.0275734328, 0.0395992287, -0.00122763333, -0.0201002602, 0.0035111031, -0.0185397696, -0.0062920684, 0.0236221, -0.0051038051, 0.0369077437, -0.00256442954, -0.0341303572, -0.000697925687, -0.0117609426, 0.00985685829, -0.000627685746, 0.0138940895, -0.0247530974, 0.0122763338, -0.0123837069, 0.00405154796, 0.00886902492, -0.017494671, -0.0216607507, -0.0373658687, -0.00667861197, 0.0228776466, -0.0180673283, 0.0216178, -0.0304367188, 0.0117323101, 0.0481318198, -0.0210165102, 0.0279456601, 0.019785298, 0.0453830659, 0.00487474259, -0.0409736075, 0.0357910618, 0.00507159345, -0.023965694, 0.0115891453, -0.0214889534, -0.0212312564, -0.0454403311, -0.00902650505, 0.0421475545, 0.0180959608, 0.0178382639, 0.0151897259, 0.00167591637, -0.042892009, 0.0166643187, 0.0334431678, 0.0467001759, 0.0213457886, -0.0287473798, -0.00896208175, -0.0281747226, -0.0412313, 0.00881175883, -0.0036274239, -0.00812457, 0.0143021075, -0.0318969935, -0.0196564514, 0.0239513777, 0.0152756246, -0.0243379213, -0.0356478952, -0.0420330204, -0.037938524, -0.0014915925, -0.00503938133, 0.0186972506, 0.0105512049, 0.0252398569, -0.0172799248, -0.0127845667, 0.0181675423, -0.0203722715, -0.0147745498, 0.0086113289, 0.00428776909, -0.00997139, 0.0299785919, -0.0226342659, 0.00425555697, -0.0244667698, -0.00340551953, 0.0482177176, 0.0407445431, -0.00478884391, 0.0275448, -0.0126342447, -0.00964927, -0.0330136754, -0.00559056364, 0.0460129865, 0.0149320308, 0.0797138512, -0.00915535353, 0.0157337505, 0.00242126524, 0.0286185313, -0.0122047514, -0.0305512492, 0.0112026017, -0.00120794831, 0.0138726151, -0.0331568383, 0.00809593778, 0.0205870178, 0.0151181445, -0.0375376642, -0.0273586866, 0.0124982381, 0.00826773513, 0.0307516791, 0.0245097186, -0.0152183594, 0.0403150506, 0.0284037851, -0.0211883076, -0.023607783, 0.00463852147, -0.0322978534, -0.0273873191, -0.0244095027, -0.0417753272, -0.0384252816, -0.008310684, -0.0143092657, -0.0281031411, -0.0602435134, -0.00186471432, 0.00977811776, -0.00327309244, 0.041718062, -0.0055690892, -0.00473873643, 0.00349320751, 0.0055476143, 0.0616178885, -0.00198998302, -0.037938524, -0.0307803117, 0.00763065415, -0.0220759269, 0.00181102764, 0.0369650088, 0.0469006076, -0.0253973361, 0.0415462628, -0.0148031823, -0.025497552, -0.0015819649, 0.0228060633, 0.00876165181, 0.0138081908, -0.0447531417, 0.00206335471, 0.021159675, 0.00691483309, -0.00612742966, -0.00309592672, -0.00141911558, 0.0175519362, 0.0216321163, 0.0115676709, 1.13384958e-05, -0.00775950216, -0.0172799248, -0.0306085143, -0.00110415427, -0.00390122551, 0.00289728632, -0.0342735201, -0.00778097659, -0.0122333849, 0.0334431678, 0.0155905858, 0.0109950136, -0.0196707677, 0.0162061919, 0.00398712419, 0.016979279, -0.00798856467, -0.00923409406, -0.00618111622, -0.00345920608, 0.0192412734, -0.00743738236, 0.0131138442, 0.0149177145, -0.0135862865, 0.00364889856, 0.00859701261, 0.00374374492, -0.0310093742, 0.0227631144, 0.0131997429, 0.00070508389, -0.000277157029, 0.00267538172, -0.0184395537, -0.0520258844, 0.0176521502, 0.0240802262, 0.0313816033, 0.00399786141, 0.0026234847, 0.0409736075, 0.0235362016, -0.0229349118, 0.00666071661, 0.00808162149, -0.0249535274, -0.00260379957, 0.0174517203, 0.0178668983, 0.0216893833, 0.0222906731, 0.00930567551, -0.0159771293, 0.0141947344, 0.00898355618, 0.00411955127, -0.0110093299, -0.0250680596, 0.0454117, -0.0284610521, 0.00239621149, -0.0295777321, 0.00639228337, -0.0032891985, -0.00116678863, 0.000614711491, -0.0110164881, -0.0115891453, 0.0485899448, -0.0145741198, 0.0393129028, -0.0443809144, -0.0225054193, -0.0056299339, 0.00689335819, -0.0215462185, -0.0119542144, 0.0101360288, -0.0027612804, 0.00826773513, 0.0286328495, 0.0232498739, -0.0102004521, 0.0314388685, -0.0188260972, 0.0150036123, 0.0485040471, 0.0260129422, -0.0202863738, 0.0638512522, -0.0113815572, 0.0261704233, 0.0108160581, 0.00155064766, 0.0059091039, 0.00462778425, -0.0139513556, -0.00437724683, 0.0082319444, 0.0159198642, -0.01229065, 0.0286185313, -0.0163493566, -0.0127845667, -0.000971727306, 0.0357051603, -0.0411454029, -0.0218039136, 0.0564639792, 0.00746601541, 0.00405154796, -0.00902650505, 0.0448963083, 0.0198139306, -0.00206156517, 0.019685084, 0.0142448423, -0.0272298399, 0.0302649215, 0.0132212183, 0.00508233067, -0.00842521526, 0.000699715223, 0.0148747647, 0.0247674137, 0.0100071803, 0.00596637, 0.00293486705, 0.00703294342, 0.0079456158, 0.0293773022, -0.0174803548, -0.0444381796, -0.00388333015, 0.0217466485, 0.0328418761, 0.0103650913, 0.0183966048, 0.0394560657, 0.0195419192, -0.0109305903, 0.00936294161, 0.00674303574, 0.0073013762, -0.0256550331, 0.0222047735, 0.0195991844, -0.0318683609, -0.0035289987, 0.0138940895, -0.00326951337, 0.0103221415, 0.0153615233, 0.0140945194, -0.0171797089, -0.0118396832, 0.0163064077, -0.0162061919, -0.000714031688, 0.0346457474, -0.00624911906, -0.00667145383, -0.00578025635, -0.00919114426, -0.0182104912, -0.0121403281, 0.000200765484, 0.0133357495, -0.0206729174, -0.0123264417, 0.0207301825, -0.0414603651, -0.00285433698, -0.00134305959, 0.00224946812, -0.0026002205, 0.00267896079, 0.0461847857, 0.0421189219, -0.0198711976, -0.0387688763, 0.018811781, 0.014073045, 0.00675377296, 0.010909115, -0.00397638697, 0.0133858565, -0.00648891926, -0.015705118, 0.0202434231, 0.00901218876, 0.0082319444, 0.0258125123, -0.00167860079, 0.0259270445, -0.0205727015, -0.00632070145, -0.020343639, 0.013407331, -0.0522835813, 0.00121868565, 0.0256693494, -0.00560488, 0.017695101, 0.021159675, 0.0143951643, -0.0125984531, 0.0242233891, -0.0333, 0.0211883076, -0.00515033351, 0.00360058062, -0.0420330204, -0.0210451428, 0.0122119095, -0.0337867625, 0.00172333955, -0.00145132747, 0.0519972518, 0.0218898132, 0.00297065801, 0.0207588151, -0.0239943266, -0.0274159517, -0.000254116545, 0.00276664901, -0.0267287642, 0.00135648123, 0.0230064932, -0.0316392966, 0.0224624705, -0.0225054193, 0.0187688321, -0.0124552893, 0.0227487981, 0.0117251519, -0.00297423708, 0.00407660194, 0.0289191771, 0.00370795396, 0.0175089873, -0.0202434231, -0.00908377115, 0.0172226578, 0.0107874256, -0.0188976806, -0.00289012818, -0.0206299666, 0.0187402, 0.0149463471, 0.0135147041, -0.0417466946, -0.0353615694, -0.0125411879, -0.0241231751, -0.00678598508, -0.0187974647, -0.0028453893, -0.0323837511, 0.00594847417, -0.0252684895, -0.00702578528, -0.00297602662, -0.000527023396, 0.00559056364, 0.0147172846, 0.0175089873, 0.0205297526, -0.0180959608, 0.0074445405, -0.0245240349, 0.0616178885, -0.0155046871, 0.0103937238, 0.0124552893, 0.0024606355, -0.0140444124, 0.0096779028, -0.0334145352, 0.0103293005, -0.0267144479, 0.000257024541, 0.00374016585, 0.0218325462, 0.0199427791, -0.00967074465, 0.00531139364, 0.0184825044, -0.0274732187, 0.000258366723, -0.0102577182, 0.0506228767, -0.00258769374, -1.38131127e-05, 0.0222763568, 0.0156478509, 0.0312384386, 0.0114674559, 0.0168217979, 0.0199714117, -0.022333622, 0.0231353417, -0.0261990558, 0.0159914456, 0.00741590792, -0.0216893833, -0.000316079793, -0.020343639, 0.00613100873, 0.0420043878, -0.00206156517, -0.029778162, 0.00464567961, -0.0402005203, -0.0305512492, 0.0364782475, -0.0179241635, 0.0251969062, 0.00357910618, 0.0120186377, -0.00952758081, -0.00712957932, -0.0350752398, -0.00906945486, -0.00946315657, -0.023965694, 0.0513959639, -0.00490337517, -0.0299785919, -0.0124266567, 0.00479242299, 0.0281890389, -0.0304080844, -0.0294918343, 0.00582678476, -0.00266822358, -0.00394417485, 0.0101718195, 0.00355047313, -0.0327559784, 0.00887618307, 0.0384252816, -0.00647102389, -0.0333, -0.00400859863, 0.0128346747, 0.00483179325, -0.0115819871, 0.0160773452, -0.00345920608, 0.021975711, -0.011424507, 0.00185397698, 0.00990696531, -0.00225125765, 0.0198855139, 0.0399428234, 0.00798140652, 0.00938441604, -0.0291339234, 0.00404796889, -0.0197566655, -0.0229635444, 0.00793129951, 0.0241661239, -0.0261990558, 0.0104151983, 0.0101360288, 0.0457552932, 0.0340444557, -0.0092555685, -0.0118611576, -0.00787403341, 0.0190981105, -0.0405727476, 0.0102076102, 0.0024803204, -0.00914103724, 0.027687965, -0.00378311519, -0.0151038272, -0.0303221866, 0.0285469498, -0.00488548, -0.0284610521, -0.00686472561, 0.0444668122, 0.0454403311, -0.0185827184, -0.0187688321, -0.00334288506, 0.00619185343, -0.0335290655, 0.0247674137, -0.0227774307, 0.0152899409, 0.0134860715, 0.0146886511, 0.013822508, 0.0087759681, 0.00603079377, -0.0386829786, -0.021975711, 0.00622764463, -0.0130995279, -0.0144739049, -0.0042734528, -0.047215566, 0.00070508389, 0.0141446274, 0.0289907586, -0.0151181445, 0.00528991874, -0.0134860715, 0.0194560215, -0.00111757591, -0.0159341805, -0.0111095449, 0.0670581311, 0.0125053963, 0.00030221077, -0.011474614, 0.0262420066, -0.0562062822, 0.0190981105, -0.00251790113, 0.0168074816, -0.0185254533, -0.0198855139, 2.78778807e-05, 0.00998570584, 0.0202720575, 0.0205870178, -0.00570151582, -0.021675067, 0.00994991511, 0.0259843096, -0.0325841829, -0.0205297526, 0.0142233679, 0.0187688321, -0.0177380498, 0.0215748511, -0.011216918, -0.0116177779, 0.0109377485, -0.0260558929, -0.0211024098, -0.010300667, 0.0263851695, 0.0282463059, 0.03467438, -0.0125626624, 0.0240659099, 0.0148747647, -0.000304224028, -0.0267860293, -0.0226629, -0.00060889544, 0.012440973, 0.042061653, 0.00463852147, -0.00710452534, 0.0260272585, 7.04077247e-05, 0.0175948851, 0.0294632018, 0.0133715402, -0.00651039416, -0.0396564938, 0.00274159526, 0.0142376842, -0.0089119738, -0.0292914044, -0.00343236281, 0.00930567551, 0.00694346568, 0.0131854266, -0.008310684, 0.019627817, 0.00884755049, -0.0210165102, -0.011524722, -0.0409736075, -0.00318003586, -0.01361492, 0.00491053332, 0.0106084701, 0.00217788597, 0.0306944139, 0.00995707326, 0.0137151349, -0.00132516399, 0.0059305788, 0.00860417075, -0.0367359444, 0.0142162098, -0.00197029789, -0.00974232703, -0.0265712831, 0.0105798375, 0.0156049021, -0.0131782684, -0.0439800546, 0.00780245103, 0.0124839218, 0.00153543649, -0.0141303111, -0.00923409406, -0.000812009675, -0.00567288324, 0.0218182299, 0.0119398981, -0.00502148597, -0.0022995756, 0.0176807847, -0.00697209872, 0.00122137, -0.0112240771, 0.025798196, 0.0400573537, -0.00482105603, 0.0113386083, 0.0174660385, 0.00299392221, -0.0302076545, 0.0144023225, 0.00911240373, -0.0167502165, -0.00748749, -0.0126270866, 0.00176449935, 0.00301181781, -0.025039427, -0.0195562355, -0.0308662113, 0.00254116533, -0.000156697744, 0.0223049894, 0.00818183646, -0.0191840082, -0.0273014214, -0.00103167736, 0.0809164271, -0.0138081908, 0.00635649217, 0.00515749166, -0.0254546031, -0.0260415766, -0.0100214966, 0.0200859439, 0.00838226639, -0.00142269465, 0.00633143866, 0.00545813655, -0.00490337517, 0.000927883259, -0.0122190686, -0.00533286808, -0.0170938112, 0.00064960774, 0.016979279, -0.0289478097, -0.012440973, 0.00484968862, -0.00251253252, 0.000524786417, 0.0201861579, 0.0214889534, -0.0193558056, 0.00196135021, -0.0272584725, 0.0114960885, 0.00306550437, 0.0305512492, 0.0260272585, -0.00247495179, 0.0211883076, 0.0147745498, -0.0245097186, 0.00478168577, -0.0123765487, -0.00851827208, -0.00496779941, -0.00667145383, -0.0136507107, 0.00486042583, 0.00109610124, -0.0177666824, -0.0122333849, -0.00876881, -0.0378239937, 0.0240086429, -0.00945599843, 0.000737295835, -0.0266571827, -0.00583752198, 0.00347710145, 0.0170938112, -0.00125447672, 0.00666071661, 0.0175948851, -0.0181675423, 0.0122691756, -0.00904082227, 0.014380848, -0.0364496149, 0.029320037, 0.0128919398, -0.00429492723, 0.0289334934, -0.015705118, 0.027129624, 0.0237652641, 0.0124982381, -0.00350752403, 0.0035898434, -0.0181675423, 0.0164209381, 0.013206901, 0.00193808589, 0.0118468413, -0.0270007756, -0.022691533, 0.0119613726, 0.00181192241, -0.0122834919, -0.0218039136, 0.0137222931, -0.0128704654, -0.00416965876, -0.00123389682, -0.00292770867, 0.00462778425, -0.00921261869, -0.0272012055, 0.0100071803, -0.00551898172, -0.00787403341, 0.0180530101, -0.000811114907, -0.000365068816, -0.0073586423, 0.0215891674, 0.0185254533, 0.0258984119, 0.0242949724, 0.00582320569, -0.00799572282, 0.00571583258, 0.00481031835, -0.0266571827, 0.0337581299, 0.0370509066, 0.0124624474, -0.0126127694, 0.0132498508, 0.00388333015, 0.000315185025, -0.00997139, 0.0152756246, -0.00329098804, 0.0312384386, -0.0207588151, -0.0104939388, -0.00119631621, 0.0140372543, -0.00471368292, -0.00560488, 0.0128919398, 0.00905513857, -0.008310684, 0.00851827208, -0.0271582566, 0.0138582988, -0.0179671124, -0.00387975108, -0.0302362889, 0.0235791504, -0.0165354703, 0.0110236472, -0.0169935953, 0.0261131581, -0.0221904572, 0.00924841, 0.000848248135, 0.0285898987, 0.0108661661, 0.0210594609, -0.00770939467, -0.0092555685, -0.00543666212, -0.00500359, -0.0231926069, 0.00233178772, 0.0112598678, 0.00423050346, 0.0153042572, -0.0129348896, -0.0115461964, 0.00316214026, -0.0182534419, 0.00970653538, 0.0328418761, 0.0395133309, 0.0397996604, -0.0183393396, -0.0109019568, -0.019627817, -0.0016866537, -0.0292055048, 0.0219184458, -1.31350398e-05, 0.0147745498, -0.0163064077, 0.0306657813, -0.02050112, 0.00697209872, 0.0160630289, 0.00888334122, -0.020859031, -0.00654260581, -0.000734164147, -0.00921977684, 0.00246958318, -0.012440973, 0.0266858153, 0.0120902201, 0.00176092016, -0.00388690922, -0.0110451216, -8.96454221e-05, -0.0092555685, -0.0243951865, 0.00100572885, 0.0181961749, 0.0219041295, 0.0340158232, 0.0034090986, 0.0183107071, 8.36616e-05, -0.0017072336, 0.0250966921, -0.00675019389, 0.0192555916, 0.0204581711, 0.0329277776, 0.0124839218, 0.00055565621, -0.0104653062, -0.0104796225, 0.0113386083, -0.021517586, 0.0255261846, -0.022491103, -0.00342341489, -0.00544382026, -0.00959916227, -0.00685040886, 0.0119041065, -0.0173085574, 0.000998570584, 0.0154903708, 0.00240694894, -0.00843237434, -0.00585183827, -0.00369363744, 0.00389406737, 0.00204366958, -0.00468862895, -0.00975664333, 0.0121260118, 0.0210880935, -0.00486400537, 0.0188260972, 0.0244095027, 0.0104080401, 0.010658578, 0.0135576539, -0.0137509257, -0.00668219104, -0.00599500258, -0.00365426741, -0.00929851737, 0.00133500656, -0.0138081908, 0.015246992, 0.022433836, -6.35850593e-05, 0.00876881, -0.00226378464, -0.0185540859, 0.0322405882, 0.0023783159, 0.011574829, 0.0140157798, -0.0182820745, 0.0326987132, 0.00669292826, -0.0299785919, -0.02366505, 0.0115605127, -0.0440373197, 0.00448819902, -0.0048997961, -0.0343021527, -0.0149177145, -0.0256836656, 0.0114101898, -0.0173515063, -0.000385648687, -0.0168361142, -0.0226629, -0.00559414271, -0.0138654569, 0.0394560657, -0.00685756747, 0.0227487981, -0.0260272585, 0.0283751525, -0.0105154132, 0.0127845667, -0.00972801074, -0.0216178, 0.0456407592, 0.0130064711, -0.000126834566, -0.0222334061, 0.0142591586, 0.0229349118, 0.0221904572, 0.0124338148, 0.0102362437, 0.0314388685, 0.00793845765, -0.00176539412, -0.00469220802, 0.0251539573, 0.0404868461, 0.0135719702, -0.0248246789, -0.0138153499, -0.0118396832, 0.00465641683, -0.0198282469, 0.0203293227, 0.0254259687, -0.00254116533, -0.00422334531, -0.00676093157, -0.00715105375, 0.0267573968, -0.00885470863, -0.00884039234, -0.0312384386, -0.0189406294, 0.00456336048, -0.0211167261, -0.0283465199, 0.0114173479, 0.00662134634, 0.0227487981, -0.000587868155, -0.0118468413, -0.0167359, -0.0229205955, 0.00734432554, 0.0169076975, 0.000847800751, -0.00670366548, -0.00244631898, 0.0175948851, 0.00770939467, 0.0213887375, -0.0148031823, -0.0209449288, 0.0278597623, -0.00566214602, 0.0122834919, -0.00990696531, -0.033242736, -0.00531497272, 0.0223622546, -0.0111453366, 0.0222763568, -0.00843953248, 0.0108590079, 0.00648534, -0.00561203854, -0.0101288706, -0.00081379927, -0.0145598035, -0.0105941538, 0.0066141882, -0.00250716391, 0.0279886089, 0.0222477242, 0.0204724874, 0.0225913171, -0.00986401644, -0.00708663, 0.0196707677, 0.0124123394, 0.00516465027, 0.0254689194, 0.0208303966, -0.00171528663, -0.00427703187, -0.0184681881, -0.0062920684, 0.000461257296, -0.00777381845, 0.00359163294, -0.0179814287, -0.00492485, -0.00675019389, 0.0148031823, 0.0173085574, 0.0143665317, 0.0140945194, 0.00999286398, -0.0136793433, 0.00141016778, -0.0148318158, 0.0111381784, -0.0126127694, -0.0122691756, -0.0028865491, -0.00521833682, 0.00652828952, -0.00121600134, -0.0219041295, 0.0279027112, 0.0364782475, 0.0162777752, -0.0112455515, -0.000762349577, -0.0239227451, 0.00243916083, -0.0416321605, 0.00820331089, -0.0190122109, -0.00641017919, 0.0104724644, 0.012340758, -0.0136936596, 0.00859701261, 0.0456693918, 0.0113672409, 0.00451683206, -0.00942020677, 0.0271439403, 0.0120186377, 0.00408733916, 0.0191124268, -0.0149749797, -0.0170079116, 0.00902650505, 0.0306371488, 8.4836e-05, 0.0345884822, 0.00730853481, 0.00781676732, -0.0131854266, 0.0033303583, -0.0229921769, -0.00750180613, 0.0267001316, -0.0191410594, 0.0174087714, -0.00309950579, -0.0137795582, 0.0121618025, -0.00670366548, -0.024423819, 0.0185540859, 0.00701146899, -0.00230494421, 0.00129563641, -0.0232212394, -0.00270759384, -0.00386185548, 0.00326056569, -0.0341876224, 0.00881891698, 0.02498216, -0.0060522682, -0.0118468413, -0.00982106663, 0.0210451428, -0.0074803317, -0.00293844612, 0.000413386762, 0.0220472943, -0.0138010327, -0.00940589048, 0.0223479383, -0.0160487108, 0.00111668115, 0.00733716739, -0.0100286556, 0.00496422034, -0.00140479917, 0.0204724874, -0.0247101486, 0.00688262098, 0.0144023225, 0.0210880935, 0.0107015269, -0.0041625, 0.0122548593, -0.0182248075, 0.0112598678, 0.0145311709, -0.0485040471, 0.00514317537, -0.00176181493, 0.00363637181, 0.00286149536, -0.014073045, 0.00921261869, -0.0173944551, -0.000593684206, 0.0123837069, 0.0246528834, -0.011524722, -0.00343594188, 0.0310666412, 0.0253687035, 0.0140945194, 0.00030892159, 0.0117681008, -0.00260558911, 0.0197996143, 0.0062312237, 0.00219041295, -0.00948463101, 0.0132641671, 0.00596279092, -0.0204724874, 0.0152183594, -0.0202434231, -0.010909115, 0.00758770481, 0.0113457665, -0.0177237336, -0.0103436168, 0.0158339646, 0.0229349118, -0.0103865657, -0.012032955, 0.00230315467, 0.0191983245, 0.00962779578, -0.0140086208, -0.0119470563, 0.0353615694, 0.00637080893, -0.00740159117, -0.00437366776, -0.00030668464, 0.00942020677, 0.0156478509, 0.0128704654, 0.00180208, 0.0190694779, -0.02814609, 0.0203722715, -0.0041768169, -0.0130780535, -0.00420187041, 0.0155046871, -0.00599858165, 0.00422692439, 0.0171653926, -0.00246958318, -0.00880460069, -0.0195991844, -0.0403436832, 0.0141088357, -0.0122834919, -0.00636723, 0.0120615875, -0.0127273016, 0.0238941126, -0.0282319896, -0.0156478509, -0.0153185744, -0.00591984158, 0.00507159345, -0.0203579552, -0.00129116257, -0.00639944151, -0.00647818204, 0.00369005837, -0.0395133309, 0.00542950397, 0.018153226, -0.00236936822, -0.000439558964, -0.00532571, -0.0140157798, 0.00123658113, 0.00507875159, 0.000548498, 0.000411373505, 0.00248211017, 0.0126342447, 0.0170365442, 0.00395849114, -0.0011524721, 0.00228704885, -0.0059914235, -0.00268969825, -0.0172226578, 0.0222334061, 0.0147316009, 0.0175089873, 0.0155619532, -0.00856838, -0.00405154796, -0.0123693906, -0.0056657251, 0.0294345692, -0.00314066559, 0.000239576417, 0.0121188536, 0.00716894958, 0.0140802031, -3.58190227e-05, 0.0110880705, -0.00696851965, 0.000307355745, 0.0144237978, -0.0068862, 0.0144739049, 0.0030440297, -0.0156335346, -0.0130995279, -0.0104080401, 0.0215891674, -0.0223049894, -0.00194703368, -0.007902666, -0.00110773335, -0.00856122188, -0.00475305272, -0.0150179295, -0.0107516348, -0.00482463511, 0.00432356028, -0.0172369741, -0.00068360928, -0.00715463283, -0.0265712831, -0.00125895056, -0.00464210054, 0.00389764644, -0.0106299454, 0.0038904883, 0.00536865927, 0.00663208356, 0.00546887424, 0.0149033973, 0.0188404135, -0.00104509899, 0.0109377485, 0.0182534419, 0.0177237336, 0.0141589437, -0.0113457665, -0.0161346104, -0.00515391259, -0.00940589048, 0.0180100612, -0.00283465208, 0.00307624158, 0.0290193912, 0.00412670942, -0.0184538718, -0.008325, -0.00364353, -0.0188404135, 0.0101073952, 0.00167054776, -0.0369650088, -0.00770223606, -0.00443451246, 0.00482463511, 0.00199356209, -0.0146886511, 0.00346815377, -0.0035289987, 0.0125411879, 0.0189978946, 0.00106031017, -0.00287044304, 0.0215605348, -0.0217895973, 0.0122548593, 0.0163493566, -0.00246600411, 0.00300465943, 0.00842521526, 0.0130279465, 0.00947747286, 0.0313816033, 0.0223193057, -0.0152040422, 0.0011703677, 0.0126270866, -0.0137795582, -0.00789550785, 0.0192985404, -0.00217430689, -0.0175662525, 0.00574804423, 0.00896208175, 0.0191553757, 0.0364209823, 0.00299213268, 0.00875449367, 0.0053436053, -0.00997854769, -0.0218182299, -0.0179384798, -0.00346099562, 0.0149033973, -0.000453428, 0.0146385441, -0.0156049021, -0.0101575032, -0.016678635, 0.00662850449, 0.0221904572, -0.00132963795, -7.14143534e-05, 0.0103794076, -0.00739443302, -0.00511812186, 0.0183393396, 0.00450967345, 0.00659987144, 0.0226199497, -0.00864712056, -0.0266285483, 0.0195848681, -0.00607732218, 0.0226485841, 0.0139513556, 0.00146564399, -0.00403007353, -0.0158912316, -0.00477452762, 0.00889765751, -0.00572299073, -0.00365247764, -0.0115819871, 0.00318540446, 0.00441303756, 0.0332713686, 0.00101646618, 0.00765928719, -0.000612027128, 0.00355047313, -0.0141231529, -0.0036274239, -0.0222620405, -0.00216178014, 0.00805298891, -0.00674303574, 0.0206872337, -0.0229778606, -0.015246992, 0.0149320308, -0.00601647748, -0.0163923055, -1.30651351e-05, -0.00671798224, -0.00972801074, -0.0189978946, -0.00869006943, -0.0151181445, 0.0278311297, 0.0268432964, -0.0124481311, -0.0112097599, 0.000439558964, -0.00337867602, 0.0185827184, -8.5339314e-05, -0.00209198752, 0.0184968207, -0.00566214602, 0.0251682736, 0.0215319023, -0.0256263986, 0.0159198642, -0.018153226, 0.0007967985, 0.0225913171, -6.00618732e-05, 0.00570151582, 0.00675377296, -0.00128310954, 0.0181102771, -0.0237079989, 0.00764497044, 0.00963495392, -0.00740159117, -0.000427479477, -0.0250251088, 0.0132426927, 0.0020347219, 0.000333751639, 0.0172226578, -0.00511812186, -0.000242260736, 0.0290766582, -0.00483537233, -0.00828205142, 0.00415176293, -0.0125555042, 0.0126843518, -0.00498569477, -0.0130780535, 0.0145454872, 0.00379743148, -0.0162061919, 0.0191124268, 0.0149033973, 0.0124624474, -0.0188547317, -0.0256263986, 0.0058482592, 0.0260272585, 0.000580709951, 0.00345920608, 0.00539371278, 0.0183536559, -0.0010799953, -0.0065318686, 0.00165802089, -0.00355942105, -0.00851111393, 0.0015730171, 0.0196421333, -0.00500359, 0.0143164247, -0.00743022421, 0.0127201434, 0.0156764854, -0.0066750329, 0.0175519362, -0.00701504806, 0.00319256261, 0.0123693906, 0.0105297305, -0.0287187472, 0.0282176714, -0.0116034616, -0.00334288506, -0.0151324607, 0.0287187472, -0.033958558, 0.00160701864, -0.0113529246, -0.000599500258, -0.000704189122, 0.0107301604, -0.00525412755, -0.0128704654, -0.00539729185, 0.00767360348, -0.0232212394, -0.0123980232, 0.009076613, 0.00289728632, -0.00078650855, -0.00316035072, 0.00656408072, 0.0229205955, 0.0184109211, 0.000780245115, 0.0201002602, 0.00574446516, -0.0201861579, -0.00807446335, -0.00680388045, 0.0144595886, -0.0269005615, -0.00451325253, 0.0178668983, 0.0112527097, -0.0179241635, 0.0184968207, -0.0110880705, 0.0238797963, 0.00699715223, 0.0228919629, -0.00261632656, -0.0292484555, 0.009076613, 0.0243665539, 0.0163350403, -0.00855406374, -0.00479958113, -0.00446672458, 9.00368832e-06, 0.0125912949, -0.00571941165, 0.00396922883, -0.00387975108, 0.023507569, 0.0102362437, 0.000515838678, 0.000940410129, 0.0424625129, -0.0313529707, -0.0280029252, 0.00737295859, -0.000634396565, 0.00806014705, -0.0160343945, -0.0137437675, -0.00915535353, -0.000881802232, 0.0144452723, -0.00176360446, -0.00894776545, 0.023808213, 0.0111453366, -0.0102863507, 0.0148031823, 0.024624249, -0.00795993209, 0.00202040537, 0.0212455746, -0.00435577193, 0.000959200435, -0.00413386757, -0.0174517203, 0.0247244649, 0.0154331056, -0.0300072245, -0.0116607277, -0.0139513556, -0.0180386938, -0.00495348265, 0.00565856649, 0.00770223606, 0.00662134634, 0.0184968207, -0.0210451428, 0.0288189612, 0.0217323322, -0.0146313859, -0.00338225532, -0.000328382972, 0.00532928901, -0.0256693494, 0.00192198, -0.00163654622, 0.0155333206, 0.012390865, -0.0200573113, -0.0136077609, -0.0174087714, 0.0082462607, -0.00893344916, -0.0104151983, 0.0315247662, 0.00592342066, 0.0228776466, 0.00420902856, -0.0117036765, -0.0107802674, -0.0089119738, 0.0134144891, -0.0198139306, -0.0124696055, 0.00879744254, -0.00535434252, -0.0230208095, -0.00364353, 0.00817467831, -0.00506801438, -0.0142877912, -0.0126056112, 0.00299750129, 0.000794561522, 0.00469578709, -0.00316750887, 0.00932715088, -0.00241052802, -0.00645670714, 0.00964211207, 0.00919114426, 0.00111578626, 0.0231639743, -0.00666787475, -0.00610595476, -0.00120615878, -0.00271833106, 0.027788179, -0.00843237434, 0.0177523661, 0.00200429931, -0.015805332, -0.000575341284, 0.0171653926, -0.0439227894, 0.00251432206, 0.0019148218, 0.00398354512, -0.0135791283, -0.0041159722, 0.0111095449, -0.00538297556, 0.0158196483, 0.0228203796, 0.014788866, -0.0259699933, 0.00280780881, -0.00856838, -0.021975711, -0.0111381784, 0.0131997429, -0.00460630935, -0.0093199918, -0.0156335346, 0.0165354703, 0.00075832312, 0.0209449288, -0.00588762946, 0.0137580838, 0.00232999795, 0.00315677165, -7.0631424e-05, 0.0142949494, -0.00861848705, 0.0280745085, 0.00868291128, 0.0117824171, 0.00770223606, 0.00926272664, -0.00226915325, -0.0106227873, 0.0340158232, -0.00881891698, -0.00114262966, 0.00437008869, 0.00464567961, -0.0176092014, -0.00775234355, 0.00666429568, -0.00335899112, -0.0121618025, 0.00180834334, -0.00189155759, 0.00998570584, 0.0200573113, 0.00450967345, -0.00884039234, -0.0135218631, 0.0137294512, 0.00836795, 0.000486758421, 0.0017045493, 0.00906229671, -0.00754475547, -0.000653634255, -0.0146743348, -0.00312098046, -0.00920546055, 0.0122978082, 0.000307579438, 0.00773802726, 0.000567735697, 0.0129492059, 0.00304939831, 0.0230780765, 0.0223193057, -0.0024803204, 0.00778813474, -0.000339791382, 0.00875449367, -0.0248676296, 0.00874733552, -0.0138081908, -0.0182248075, 0.000968148175, -0.00991412345, 0.00297781616, 0.00255190255, 0.00180208, -0.0162205081, 0.00916967, 0.0231210254, -0.021317156, 0.0055476143, 0.0138940895, -0.0174660385, -0.00396564975, -0.020443853, -0.0251110084, 0.0129492059, -0.00626701489, -0.011267026, 0.0138439825, -0.0257695634, -0.0286328495, 0.00242484431, 0.003811748, 0.0114960885, -0.0144667467, 0.00160164991, 0.00699715223, 0.00669650733, -0.00254653394, 0.0130279465, -0.00460630935, 0.0207158662, 0.0167072676, -0.00415892107, 0.0126270866, -0.0165927354, 0.0238368455, -0.0118038915, 0.0268719289, 0.00858269632, 0.0189263131, 0.0177380498, -0.00341267767, 0.0114101898, 0.00535792159, -0.0135075459, -0.0121116946, -0.00615248317, -0.00302434457, 0.0152756246, 0.00265748636, -0.0172369741, 0.0133572239, 0.0162061919, 0.00242305477, 0.000271340978, 0.00455620186, -0.0117466263, -0.0304367188, 0.00589478761, 0.00765212858, 0.0164638888, -0.00192913821, 0.0318110958, -0.00885470863, 0.0210451428, -0.00242663384, 0.0176807847, 0.0172799248, 0.00117126247, -0.00630638469, 0.017494671, 0.00192198, -0.0172942411, -0.0336149633, -0.0147602335, 0.0256550331, 0.0125555042, -0.0155762695, -0.00633501774, 0.0116392532, 0.0195848681, -0.00253221765, -0.00090640859, -0.013564812, 0.000221121649, -0.0183536559, 0.00293486705, -0.00236578914, -0.00188618887, -0.00625627721, -0.0190265272, -0.0180673283, 0.0167788491, -0.00176807842, 0.00546171609, 0.0257266145, 0.0172083415, -0.00682893442, 0.00229599653, -0.00296886847, -0.0174517203, -0.00716537051, -0.00627775211, -0.0021796755, -0.0199141465, 0.00172065524, -0.00399428234, -0.00707947183, 0.0188547317, 0.00034180464, -0.00642449548, 0.00594131602, -0.0150608784, 0.0153758395, -0.000785166398, -0.00527560245, 0.0107373185, -0.00596994907, -0.00656766, 0.0055476143, -1.83289376e-05, -0.0171940252, -0.00923409406, 0.0116678858, 0.0119184228, -0.00647102389, 0.00181729114, -0.00295455195, 0.00545813655, -0.00483537233, 0.00282033556, 0.00161865074, 0.00675019389, 0.00131353189, 0.0139799882, 0.00811741222, -0.00200966815, -0.0150751946, 0.00807446335, 0.00153454172, -0.00277201761, 0.00713673746, -0.000819167879, -4.86814351e-05, 0.00447388273, 0.0182963908, 0.00575162331, 0.00017425773, -0.0142376842, 0.0195132867, -0.0246385671, 0.00507517252, 0.0153328907, 0.00517538749, -0.00656766, -0.00779529288, 0.0120687457, -0.00352005078, -0.0207588151, 0.0210880935, 0.0116034616, -0.00727990177, -0.00145311712, -0.0134789133, 0.0125555042, 0.00473515736, -0.020801764, -0.00990696531, -0.00789550785, 0.0125841368, 0.0142018925, -0.0250966921, 0.00231926073, 0.0142591586, -0.00392985856, -0.0236936826, 0.0135433376, 0.0086113289, 0.00373658678, 0.0241661239, -0.00429492723, -0.00778097659, 0.00123568636, 0.0128919398, -0.00900503062, 0.00213851593, 0.0269435104, -0.00278633414, -0.00139316707, 0.0051861247, -0.0159341805, 0.0164925214, 0.00506085576, -0.00416607969, 0.00100930792, 0.0102362437, -0.000259485183, -0.0200859439, -0.0042376616, -0.00509664696, -0.000701504818, -0.0123336, -0.0175089873, 0.00349678658, 0.0019756665, 0.00853974745, 0.0207731314, -0.00734432554, 0.0143665317, 0.00507517252, -0.0046206261, -0.00455620186, 0.00309950579, 0.0170079116, -0.00241231755, 0.00869006943, -0.00395849114, 0.0103650913, 0.00489263795, 0.00013410463, -0.00693272846, -0.0115175629, -0.00785255898, -0.0122763338, 0.00377953611, 0.00753043918, 0.0061668, -0.0159914456, 0.0137294512, 0.0100930789, -0.0153901558, 0.00204903819, 0.0109305903, -0.000827220909, -0.0182677582, 0.0187402, -0.0376521945, -0.00961347856, 0.0105941538, 0.020801764, 0.0138654569, 0.00349857612, 0.0052827606, 0.0159484968, -0.00051718083, 0.00627417304, -0.0187831484, 0.00817467831, 0.00226915325, -0.0038904883, 0.0133214332, 0.015347207, -0.0187545158, 0.0197566655, -0.00261990563, -0.000448283041, -0.00958484598, -0.0180673283, 0.00590552483, -0.00671440316, -0.000270446209, 0.0024194757, 0.0206013341, 0.00554403523, 0.0146385441, -0.0136793433, -0.017795315, 0.0209162962, -0.0149033973, 0.0102577182, -0.0241947565, 0.000138354822, 0.0198282469, 0.00327309244, -0.00837510824, 0.00819615275, -0.00613458781, -0.00144506409, -0.0110594379, -0.0143164247, 0.00465283776, -0.0125197135, 0.00391554227, 0.0262563229, -0.0196707677, -0.00551182358, 0.0161059778, 0.0136507107, 0.01733719, -0.00841805711, 0.0068790419, -0.0160630289, -0.0375949293, 0.00280244, -0.00573014887, -0.016521154, 0.00368290022, -0.00425197789, -0.00930567551, 0.0133500658, 0.0164352544, -0.0204152204, -0.00904082227, 0.0279886089, 0.0169076975, -0.0214030538, 0.00221725623, 0.0188833643, -0.0139298812, 0.00686830468, -0.0250823759, 0.000151888307, 0.00347173284, -0.00221367716, -0.00555119338, 0.0255691335, -0.0219470784, 0.00987833273, -0.00615964178, -0.00648891926, 0.0110880705, 0.000100550511, 0.00675735204, 0.00173586642, 0.00181192241, 0.000147526283, 0.0319828913, 0.0227201656, 0.00255906093, -0.000244273979, 0.0185970347, 0.000392806891, 0.00021552929, 0.0341876224, -1.04856625e-07, 0.00107373181, 0.00273443712, 0.00432713935, 0.00244631898, -0.00716537051, -0.0323837511, -0.00238010543, -0.0654546916, -0.0104581481, -0.00834647566, -0.00914819539, -0.0131711103, 0.00436293, 0.00406228518, -0.00735148368, 0.0431210697, 0.000612027128, 0.0123049663, 0.0148747647, -0.00501790689, 0.00192019041, -0.0181102771, -0.00117394677, 0.011317133, -0.00179850077, 0.00320329983, -0.00761633785, 0.00113457663, 0.0139656719, -0.00500359, -0.00529349782, 0.0169506464, 0.0163636729, -0.00894060731, 0.00585899642, -0.0039728079, -0.00137885066, 0.00576594, -0.00405512704, 0.0121045364, -0.0236936826, 0.0237079989, -0.000901487365, 0.0040336526, -0.0219041295, -0.00410523452, 0.00616322085, -0.018153226, 0.015146777, -0.0118396832, -0.0191983245, -0.0128418328, 0.0022763114, 0.00452041114, -0.00617753714, -0.00122852821, -0.00622764463, -0.0130351046, -0.0139012476, -0.00221188762, 0.0145096956, 0.0186972506, 0.0205440689, -0.0093199918, -0.00220115017, 0.0154187893, -0.00311740139, 0.0167645328, -0.0168361142, -0.00594131602, -0.00191303215, 0.0186399836, -0.00689693727, -0.0042376616, -0.0137437675, 0.0119542144, 0.0477595925, -0.00833931752, -0.00370437489, -0.00515391259, -0.0070579974, -0.000695688766, 0.0152613083, -0.0057050949, 0.00952042174, 0.00594847417, 0.0235934667, -0.00479242299, 0.015246992, 0.0170365442, -0.00678598508, 0.00356121059, -0.000980675104, -0.0036685837, 0.0089549236, 0.0175233036, 0.00608448032, 0.0239800103, 0.00854690559, -0.023049444, -0.0304367188, -0.00242126524, -0.00881175883, -0.00647818204, 0.00646028668, 0.0100000221, -0.00795993209, 0.00545455748, 0.00229241746, -0.015347207, 0.00139495661, 0.0158482809, -0.0442377515, 0.000776666042, -0.0228060633, 0.00101915048, 0.0123550743, 0.000515391293, 0.0108017419, 0.0121689606, 0.0151610933, 0.0299785919, -0.00226736371, 0.00284002069, 0.000603526772, 0.00104599376, -0.0189978946, 0.0108590079, 0.00227273232, 0.00626343582, -0.0160773452, -0.00380458985, 0.0180816445, 0.00055789313, -0.00480673928, -0.00998570584, -0.0222906731, -0.00974948518, -0.00189155759, 0.00280959834, 0.00521833682, 0.0006858462, -0.0125053963, -0.000380951096, 0.0117537845, -0.0313816033, 0.00766644534, -0.00516822934, -0.00609879661, 0.00141374685, 0.0220043436, -0.0275734328, -0.0369936414, -0.00944168214, -0.00173228735, 0.00954905525, -0.00410165545, 0.0127630923, 0.00572657, 0.0274159517, -0.00954905525, -0.00785255898, -0.00709378812, -0.00422334531, -0.00991412345, 0.0040944973, 0.0102434019, -3.070202e-05, 0.0114388233, 0.0201002602, -0.00339478208, 0.0164782051, 0.0014039044, -0.00132784841, 0.0113099748, 0.0019756665, 0.00520759914, -0.00183071278, 0.0195562355, 0.00968506094, -0.0180816445, -0.016621368, -0.0273730028, 0.0189263131, -0.0175233036, 0.0260988418, -0.00479242299, 0.00321761635, -0.00693272846, -0.0211167261, -0.00472799921, 0.00287581165, -0.027487535, -0.00419471227, 0.00595205324, 0.0163064077, 0.00874733552, -0.000640212616, 0.0273014214, -0.00207230239, -0.0125984531, 0.00584110105, -0.00147548644, 0.00380458985, -0.0156621691, 0.0069756778, 0.000814246654, 0.0143235829, 0.00795277394, -0.0182104912, -0.00180565903, 0.00399070326, -0.0147745498, -0.00214925315, 0.00470294524, -0.0185970347, 0.000804851472, 0.0204152204, -0.0133500658, -0.00734432554, -0.000774429063, 0.0157194342, 0.0273157377, -0.0189549457, 0.00139495661, -0.0201002602, -0.00853974745, 0.0232498739, 0.0215891674, 0.00373658678, -0.00186829339, 0.0207588151, -0.00319435215, 0.0197137166, 0.0207874477, -0.00842521526, 0.00675735204, 0.00998570584, 0.0166929513, 0.017637834, 0.0142591586, 0.00140300964, 0.00568362046, -0.00576951914, -0.00742306607, -0.00258411467, 0.0146528604, 0.00738727488, -0.00134663866, 0.0030672939, -0.00151754101, -0.0152326757, 0.0138296662, -0.012848991, 0.028045876, 0.00456693955, 0.00273622666, -0.00442019617, 0.00214388454, -0.0208303966, 0.0069398866, 0.00945599843, 0.000189245227, -0.0113887154, 0.0359342247, -0.00834647566, -0.0011471035, -0.00317108794, -0.00495706173, -0.00104151992, -0.00882607512, 0.0201575253, -0.00177255226, -0.000656765944, 0.0121474862, -0.00869006943, 0.0101861358, 0.0105225714, -0.0210308265, 0.00254474441, 0.0140300961, -0.0061668, 0.0199714117, 0.00299929082, 0.00916967, -0.0233930368, 0.00847532321, -0.0122548593, -0.00637080893, -0.02050112, -0.0036274239, 0.00783108454, 0.00816752, -0.0133214332, -0.00816036202, 0.014380848, -0.000972622074, 0.0101431869, -0.0175948851, 0.0101073952, 0.0125053963, -0.0206013341, -0.020343639, 0.0247674137, -0.0137222931, 0.000512259547, 0.00265927589, 0.019785298, -0.0397996604, 0.000590552518, -0.000192153253, 0.00939157419, -0.0101145534, -0.0116034616, -0.0212885235, -0.00457051862, -0.0120687457, -0.00530423503, -0.00306371483, -0.00947747286, 0.00703294342, -0.0006858462, -0.000253221748, -0.00846816506, -0.0157194342, 0.00679314323, -0.0133715402, -0.0134574389, 0.0105512049, -0.0152756246, -0.00633859681, 0.00306192529, 0.0259270445, 0.0337581299, 0.001873662, 0.000943094434, -0.0259270445, 0.00757338852, -0.00412313035, -0.00709020905, 0.019627817, -0.0186399836, -0.00521117821, -0.008310684, -0.000583394314, 0.000506890879, -0.0308375787, -0.0177380498, -0.0211024098, 0.00401933631, -0.0184825044, -0.0170938112, -0.00771655282, -0.0167215839, -0.00911956187, 0.05629218, -0.000448059349, -0.00531497272, -0.00906229671, -0.0174660385, 0.0187115669, -0.0156192193, 0.00567288324, -0.00196850835, -0.00750180613, 0.0320974216, -0.00527918153, -0.00569435768, 0.0105798375, 0.00497495756, -0.0319256261, 0.0131854266, 0.0144381141, 0.00037916156, 0.00661776727, -0.0273586866, -0.0102791926, 0.00211346219, 0.00292055053, -0.00111757591, 0.0684325099, 0.0316679291, -0.00752328103, -0.0116106197, 0.00985685829, 0.0043342975, -0.0018969262, 0.0334431678, -0.0245383512, 0.0239084288, 0.00813888758, 0.0132283764, -0.00329814618, 0.00558698457, 0.00318003586, -0.00232999795, 0.0203722715, -0.00521117821, -0.00551540265, -0.00291876099, -0.0065318686, -0.0257695634, 0.00244452944, -0.0181675423, -0.00224588905, -0.0133715402, 0.0132140592, -0.00733000925, -0.0330709405, 0.0134574389, -0.0257122982, 0.0306657813, 0.0204868037, 0.0175089873, -0.00459557213, 0.0107945837, 0.0172226578, 0.0122978082, 0.00629564747, -0.0138582988, 0.0242090728, 0.0131854266, -0.00186471432, -0.0231782906, 0.00527560245, -0.0103364587, -0.00171349698, -0.0149177145, -0.000487653189, -0.044409547, 0.00876165181, -0.00325161777, -0.0119398981, -0.0121904351, 0.0144667467, -0.0065318686, 0.0210594609, -0.00358626433, 0.00685040886, 0.000818720495, 0.0100930789, -0.00421260763, 0.00238905335, 0.00405870611, 0.00780245103, -0.031725198, 0.00311561185, 0.0137580838, 0.00024158966, 0.0130637372, -0.0146886511, -0.00871870201, 0.0123765487, 0.000742217118, 0.000578920415, 0.0205870178, -0.00884039234, 0.00103794073, 0.00207051286, -0.0222334061, -0.0183393396, 0.0077451854, -0.00343594188, -0.00980675, 0.00144327455, -0.0267860293, -0.0152040422, -0.00632785959, -0.00710810488, 0.00439156312, 0.0152183594, 0.0110451216, -0.00460273027, 0.0175089873, 0.0180959608, 0.0100143384, -0.00842521526, 0.0139943045, 0.00371511211, 0.011882632, 0.0327559784, -0.00850395579, 0.00557624735, -0.00543308305, -0.00615964178, 0.0206013341, -0.00618827436, 0.00133321702, 0.0220472943, 0.0101288706, -0.00781676732, 0.0026234847, 0.0068790419, 0.00547603238, 0.0187688321, -0.00165265228, -0.00657481793, 0.0234646201, 0.0205870178, 0.000456559705, -0.00534002623, -0.00194524415, 0.0100214966, 0.00390480482, -0.01397283, 0.0143164247, 0.0173944551, 0.0178239476, 0.0306944139, 0.0154187893, 0.00633143866, -0.0168074816, 0.0105225714, -0.00385111803, 0.0138511406, 0.0295491, 0.00805298891, 0.00438440498, 0.0223193057, -0.00316750887, -0.00934862532, 0.00693272846, 0.0117179928, 0.0118038915, 0.0131210033, -0.00553687708, 0.00958484598, -0.00320866867, 0.0386257134, 0.00573730702, 0.00352541939, -0.0330709405, -0.0151181445, -0.0212742072, -0.0112956585, 4.31170447e-05, 0.01025056, -0.0180386938, -0.00388690922, -0.00927704293, 0.00540802907, -0.00219220249, 0.0103579331, 0.00324088056, 0.00678240601, -0.00908377115, 0.0059305788, -0.0108947987, -0.0230637603, 0.00450967345, 0.0201861579, 0.0116535695, 0.0136721851, 0.0208447129, -0.0148461321, -0.0150465621, 0.00243200269, -0.0187402, 0.00239084288, 0.00254653394, -0.00202756352, 0.00969221909, 0.0146313859, 0.049821157, 0.00909808744, -0.00682893442, -0.014380848, -0.00370437489, -0.00588047132, -0.0133214332, -0.0175233036, 0.0229921769, -0.0112097599, -0.00181371195, 0.0131424777, -0.00468505, 0.00827489328, -7.85166412e-05, 0.00600216072, 0.0138797732, 0.0137867164, -0.0185540859, -0.00500001106, 0.00067555625, 0.0182963908, 0.0248676296, 0.00720116124, -0.000706426043, -0.00508590974, 0.0115390383, -0.00479600206]
15 Nov, 2021
jQWidgets jqxSortable disabled Property 15 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSortable represents a jQuery plugin that allows you to reorder elements in an HTML list or div tags using the mouse. The disabled property is used to check whether the jqxSortable widget is disabled or not. It accepts boolean type values and its default value is false. Syntax: Set the disabled property: $('Selector').jqxSortable({ disabled : boolean }); Return the disabled property: var disabled = $('Selector').jqxSortable('disabled '); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder: <link type=”text/css” rel=”Stylesheet” href=”jqwidgets/styles/jqx.base.css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/globalization/globalize.js”></script><script type=”text/javascript” src=”jqwidgets/jqxsortable.js”></script> Example: The below example illustrates the jqxSortable disabled property in jQWidgets: HTML <!DOCTYPE html> <html lang="en"> <head> <link type="text/css" rel="Stylesheet" href="jqwidgets/styles/jqx.base.css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/globalization/globalize.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsortable.js"> </script> </head> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>jQWidgets jqxSortable disabled property</h3> <div id="sortable"> <div class='gfg'><li>C</li></div> <div><li>C++</li></div> <div><li>Python</li></div> <div><li>HTML</li></div> <div><li>CSS</li></div> <div><li>JavaScript</li></div> </div> <script type="text/javascript"> $(document).ready(function () { $("#sortable").jqxSortable({ disabled: true }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsortable/jquery-sortable-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxsortable-disabled-property/?ref=next_article
PHP
jQWidgets jqxSortable disabled Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0396242589, 0.0163643695, -0.00749513088, 0.0501923934, 0.0666567, -0.00565257808, 0.0161645, 0.00960001349, 0.0203367881, 0.00750137726, -0.0219357498, 0.0200369842, -0.0252336077, -0.027007455, 0.00702043949, 0.0108991694, -0.027931856, 0.0288562551, -0.0221231282, 0.0121733425, 0.00446272595, -0.0145530459, -0.0356268547, 0.0175386071, -0.0444960967, 0.018475499, 0.00969994906, 0.0135037275, 0.0100247376, -0.0143656675, -0.012966577, -0.0205241665, -0.000941575854, 0.0178259201, -0.0273322444, -0.0149902618, 0.00598361297, 0.0053652646, -0.0203742646, 0.00877554901, -0.0224729013, -0.0129915606, 0.00274509168, -0.00687053706, 0.000900977233, 0.0436466485, -0.0379253626, 0.00685804477, -0.0109678749, 0.0170889, 0.00227508461, 0.0210363343, -0.0135536958, 0.0241093375, 0.0190251414, -0.0121296206, 0.0124169337, 0.0268325694, -0.0165017806, -0.00053090509, -0.010318297, -0.0544146523, -0.0310798101, -0.0216859132, -0.0181132331, 0.00875681173, 0.0260330886, 0.00269512413, -0.0233723167, 0.030155411, -0.0230475273, 0.0359766297, 0.000989981927, 0.00468758, -0.0193624217, -0.00966247357, -0.02650778, 0.000900977233, -0.00367261423, 0.024571538, -0.0225978196, -0.0403737724, -0.0483685806, 0.0120858988, -0.000535979925, 0.0103557725, 0.0101683941, -0.0355269201, 0.0546644889, 0.0256083645, -0.0289561898, -0.0216984041, -0.000656995107, -0.00893794373, 0.0129166096, -0.00314951665, -0.0186129082, 0.0113738617, 0.00184255303, -0.00257801288, 0.0607105605, -0.00931894593, -0.00287781795, -0.0157647599, -0.0193624217, 0.00565570081, 0.0612602048, 0.0108741857, 0.0216359459, 0.0303302966, 0.0144905867, -0.0217608642, 0.0149527863, 0.00594613748, -0.0309798755, 0.0423225053, -0.0306301024, -0.0215859767, 0.0241842903, -0.00522473082, 0.00881927088, 0.014253241, -0.0261330232, 0.0449957699, 0.00739519624, 0.0352271162, -0.0131664472, 0.0305551514, 0.0259831212, 0.0125293611, -0.00168015854, 0.0544646196, -0.0204617083, -0.016614208, 0.0202993136, 0.0319792256, 0.0260580722, 0.0169265047, -0.0627592281, 0.0165392552, -0.0429221168, -0.0146404896, 0.0233598258, 0.0357018076, -0.0164143369, 0.0361765, 0.00245777844, 0.0553640351, -0.0180132985, -0.0145030785, -0.0109678749, -0.0441213399, 0.011105286, 0.0165267643, 0.0415230244, 0.0351521634, 0.00361640076, -0.00373507361, -0.00998726208, 0.0100247376, 0.0237970408, 0.00339779281, 0.0236971062, 0.0221730955, -0.0348273776, -0.0175760817, 0.0113801071, -0.0146779651, -0.0259581376, 0.00975616276, 0.00752636092, -0.0364763029, -0.032453917, 0.0108679403, 0.00507170521, 0.00165673625, 0.0292310119, -0.0230350364, 0.0209488906, -0.0431469716, -0.0320791602, 0.00757008232, 0.000788159901, -0.000201041272, 0.000340013503, -0.00201587798, -0.00200807047, 0.0302553456, -0.0382251702, 0.0334033, -0.0586119257, -0.00511542708, 0.0469944738, 0.0177884437, 0.000350553513, -0.00740144216, -0.0363014191, -0.00983735919, -0.000594926, -0.0136661222, 0.000420039636, 0.0286813676, 0.0219482426, 0.0258831866, 0.0085756788, 0.0236221552, 0.0192125197, -0.0287063513, 0.0636086762, -0.0121233743, 0.0184505135, 0.0208614487, 0.012498131, 0.0232598893, 0.00486558909, -0.000528562872, -0.00692050438, -0.0380252972, -0.0578124449, -0.00111568149, -0.00274040736, -0.00141939044, -0.0623594895, 0.0478938892, -0.0969869941, 0.00295433076, 0.0120109478, -0.0130165443, 0.0179258548, 0.00690801255, -0.0199620333, -0.0113676153, -0.0272323098, -0.0137910414, 0.0212237127, 0.0497676693, -0.00828836579, 0.000209043894, -0.00400989503, 0.017188834, 0.00755134458, 0.00452830829, -0.0180757586, -0.0309299082, 0.0304052476, 0.00718908, -0.00109538215, -0.0179883149, 0.0241717976, -0.00695173396, 0.00143422454, -0.0220481772, -0.0125418529, -0.027931856, 0.0351271816, -0.00303084357, 0.0177509692, -0.0340029113, -0.0127667068, -0.022560345, 0.00763254194, 0.0168765374, -0.00252492237, -0.00418478157, 0.010137165, 0.0292310119, 0.00850697421, -0.0122795235, 0.0177759528, -0.0218233243, 0.000684321101, -0.0081946766, 0.0313296467, 0.0113051562, -0.0104994299, 0.0210113507, -0.00273259985, -0.0223854575, 0.019699702, -0.0213236474, -0.00246090139, -0.00370072108, 0.00882551726, 0.0518663079, 0.0689052418, -0.0192125197, 0.0210738108, 0.00479063811, -0.0148403598, 0.0457952507, -0.0334782526, -0.000657775847, 0.00133428944, 0.0210738108, 0.0320291929, -0.0283315964, 0.0109366458, 0.00660196133, 0.00494678644, 0.0403487906, -0.0179258548, -0.00445023412, -0.0369260125, -0.0012452848, -0.0175261144, 0.0207864977, 0.0260830559, -0.0214235839, -0.0157147907, -0.0602608547, 0.019125076, 0.00343526853, -0.0038287628, -0.0323789679, -0.00117033347, 0.00587743195, -0.000787379162, 0.0217608642, -0.0131539553, -0.0130415279, 0.000209629448, -0.00111021625, -0.0409484, 0.0228726417, 0.0442212746, -0.030655086, -0.0134412684, -0.0214985348, -0.0205616429, -0.0315045342, -0.0476190671, 0.0266077146, 0.012210818, -0.00815095473, 0.00284190383, -0.0281816926, -0.0316794217, -0.0209988598, -0.0100871976, -0.00193311926, 0.00628341828, -0.00960001349, 0.0110803023, 0.0106118564, 0.0669065341, -0.0432718918, -0.0107367756, 0.0183380879, 0.0438964851, -0.0109803667, 0.000803384348, 0.00768875517, -0.00252492237, 0.00855694152, 0.00913156848, -0.0183380879, -0.0158022344, -0.0339279585, -0.0364763029, -0.0431969389, 0.0204367246, -0.0018987665, 0.0316794217, 0.0241842903, 0.00204866915, -0.0210363343, -0.00042589521, -0.0254334789, -3.44014807e-05, 0.0279818233, -0.0119422423, -0.0347274393, -0.00777619844, 0.0259081703, -0.0434217937, 0.0200494751, -0.0294308811, -0.0307550207, 0.00739519624, 0.0148778353, -0.0444711111, 0.0555639043, 0.00114847266, 0.0311547611, -0.0101309186, -0.0227227397, 0.0345775373, -0.0227602143, 0.00113754231, 0.0381252319, -0.011136516, 0.0350272469, -0.0287063513, -0.0394243896, 0.00506545929, 0.00665817456, 0.00794483908, 0.0165517479, -0.00743891764, 0.00685804477, 0.0110927941, -0.018475499, -0.000419258897, -0.00805102, -0.0273322444, -0.0266826674, -0.0288312715, 0.00727027701, 0.00628029509, -0.00357892504, 0.00097749, -0.00674561784, 0.00437528268, 0.055863712, -0.01676411, 0.0191750433, 0.0395243242, 0.0298556052, 0.0180008058, -0.0554639697, 0.0219357498, 0.0090128947, -0.0083758086, 0.00568693085, -0.0390746184, -0.019200027, -0.0637585819, 0.0155773805, 0.0357767604, 0.010318297, -0.00054105476, 0.0218732916, 0.0128291659, -0.0422475561, 0.0217108969, 0.0534652695, 0.0457202978, 0.0119859641, -0.0248713437, 0.0287813041, -0.00818843115, -0.019412389, -0.0110678105, 0.0012679263, -0.0224604104, -0.00871933624, -0.0165517479, -0.00442525046, 0.0154149858, 0.0148028843, -0.013965928, -0.0349023268, -0.013753566, -0.0228851344, -0.00364763057, 0.00891296, 0.0587618276, 0.0045345542, 0.0145905223, -0.0215734858, -0.0121920798, 0.0246964563, -0.00753885275, 0.0117860939, 0.0216609295, -0.00925024133, -0.0130665116, 0.0190001577, -0.000348016125, 0.00198464817, -0.0441463217, -0.0109991049, 0.00469694892, 0.0531154945, -0.0133163491, 0.0425223783, 0.00355081842, 0.0221980792, -0.0403987579, -0.00745140947, 0.0240593702, 0.00674561784, 0.0380252972, 0.0102558378, 0.032453917, -0.00776370661, 0.0541648157, 0.00212674355, -0.0188002866, 0.020012, 0.00180820038, -0.00955004618, -0.0213236474, 0.013466252, 0.0231474638, 0.0177259855, -0.0317543708, -0.0154524622, 0.0119609805, 0.0139409434, 0.0278569032, 0.00404112507, -0.0158022344, 0.0243217, 0.0136161549, -0.0128791332, -0.0156773161, 0.00677684788, -0.010743021, -0.0356518403, -0.0160395801, -0.000839298533, -0.0324789025, -0.0230850037, -0.0121171288, -0.0245215707, -0.0240094028, -0.0330035612, 0.0166516826, 0.0203617737, 0.0460700728, 0.00210800557, -0.00472505577, 0.0116112074, 0.0273322444, 0.0623594895, -0.0110615641, -0.0374256894, -0.0354020037, 0.0344026536, -0.0238719918, 0.00691425847, 0.024496587, 0.0345025882, -0.0073639662, 0.0327037536, -0.025358526, -0.0437965505, -0.00683930703, 0.0213236474, -0.00964998174, 0.0213736147, -0.039749179, 0.00740768807, -0.00840703864, 0.00861315522, -0.0090128947, -0.00307300384, -0.0131039871, 0.00257957424, 0.00689552072, 0.0155523969, -0.0238095336, -0.0114050908, -0.0160895474, -0.0305301677, -0.0181132331, -0.0279818233, -0.00365387648, -0.0523160137, -0.00294964644, 0.00593676837, 0.00937516, 0.0196122602, 0.0256083645, -0.00399428047, 0.00969370268, 0.00448146369, 0.0106056109, -0.00231099874, -0.0166516826, 0.0129915606, -0.00598361297, 0.00776995253, -0.0177259855, 0.0181257259, 0.00786364172, -0.0185379572, 0.0236721225, -0.00177697069, -0.00391932903, -0.031579487, 0.0119484877, -0.00161457621, -0.00167547411, 0.00465947296, -0.00677684788, -0.0111302696, -0.0418228321, 0.0231224801, 0.0232973658, 0.0428721495, 0.0113363862, 0.00968121085, 0.01239195, 0.0190876, -0.0330785103, 0.0105681345, -0.0069267503, -0.0353770182, -0.00960001349, 0.0300304927, 0.00508419704, 0.00609604, 0.0358766951, 0.0334282853, -0.0151026892, 0.0119734723, 0.0226852633, 0.00517164031, -0.0298056379, -0.0117611103, 0.0365512557, -0.0307050534, -0.0118235694, -0.0421975888, -0.0100871976, 0.00623032777, -0.00522160809, 0.00352271157, -0.00196434883, 0.00188783614, 0.0307550207, 0.0122482935, 0.0416729301, -0.0179008711, -0.0137035977, 0.00609916309, 0.0110678105, -0.0228976253, -0.00283409655, 0.00815720111, -0.0225478522, 0.0083758086, 0.0143781602, 0.014040879, -0.0149278026, 0.0352770835, -0.0276320502, 0.0297806542, 0.034877345, 0.0066331909, -0.0278319195, 0.0291810445, -0.0031448321, 0.0308549572, -0.00448146369, -0.00556201208, 0.0314295813, 0.00676435558, -0.00218139542, 0.0141533054, 0.00707665272, 0.011711142, -0.0104432162, 0.0323789679, -0.00448146369, -0.0286064167, 0.0228101816, 0.0216609295, -0.0550642312, -0.0185879245, 0.040024, 0.0276820175, -0.0108741857, 0.00647704257, 0.040623609, 0.0152026238, -0.00928147, 0.0349522941, 0.00212518196, -0.0240218956, 0.0188752376, -0.00240624929, -0.00272791553, -0.0132913655, 0.0115799773, 0.0276570339, 0.0258831866, 0.0303302966, 0.00315420097, 0.00788862538, 0.0109553831, 0.0251586568, 0.0120546687, -0.00422225706, -0.0200869516, -0.0050279838, 0.0194748491, 0.0205241665, 0.00156460865, -0.017476147, 0.0303302966, 0.0426472947, -0.00689552072, -0.0101184268, 0.00936891418, 0.00148965733, -0.0328036919, 0.0138909761, 0.00504672155, -0.00565257808, 0.00345088332, 0.014540554, -0.0196497347, -0.00259675062, 0.00667066686, 0.0313046649, -0.0121546043, -0.0170389321, 0.00916904397, -0.0166641753, 0.00798856094, 0.0146779651, -0.000284580747, 0.00123669661, -0.0102058705, -0.0137285814, -0.00174105645, -0.0199995078, -0.0164892878, 0.0187753029, -0.00936891418, -0.00561510259, 0.0235472042, -0.0461700074, 0.0126417875, -0.000601562322, 0.0212112218, 0.00310891797, 0.00454704603, 0.0553640351, 0.0375506058, -0.0183131043, -0.0171388667, 0.00933768414, 0.0100247376, 0.0214360747, 0.0224104412, -0.00535277277, -0.000578920823, -0.0340029113, -0.0130790034, 0.0333283506, -0.0183630716, -0.0242217649, 0.0155399051, -0.00767001742, 0.030230362, -0.0112489425, 0.0121546043, -0.00655199355, 0.0197121948, -0.0315545, 0.0130415279, -0.00852571148, 0.0152276084, 0.0211237781, -0.00570879132, 0.0103307888, 0.00652701, 0.0183755625, -0.0274821483, 0.0225853287, -0.0114113372, 0.0240218956, -0.0461200401, -0.0155274132, 0.0115987156, -0.0216484368, -0.0158771854, -0.0161395147, 0.0184879899, 0.00210488262, -0.0103745107, 0.0225853287, -0.0132164145, -0.00739519624, 0.00836331677, -7.88550242e-05, -0.0174511634, 0.0299805235, 0.0258082356, -0.0111490078, -0.00730150705, -0.0048281136, 0.0251586568, -0.00206896849, 0.0302803293, 0.00933143776, -0.00533403503, 0.0147779, 0.00161301473, 0.00211737445, 0.0225978196, -0.0148028843, -0.0162269585, 0.0387498289, -0.00205491506, -0.0203118045, -0.00570879132, 0.00311516388, 0.0103058051, 0.0256333482, 0.0140908463, -0.0138535006, -0.0292559955, 0.0118048312, -0.0113114016, -0.0130415279, -0.00671438826, -0.0101121813, -0.0388997309, 0.00822590664, -0.0179383475, -0.0121296206, 0.0137910414, -0.00390371401, 0.0179633312, 0.0299555399, 0.0101059349, -0.0131039871, -0.00592427654, -0.00105712574, -0.0167391263, 0.0452206247, 0.012785444, 0.000230123944, 0.0084320223, -0.019125076, -0.00698921, 0.0062521887, -0.0245215707, 0.00142875931, -0.0258332193, -0.0125793284, 0.0169265047, 0.0280567743, 0.0100996895, -0.00678933971, 0.0144531112, 0.00764503377, -0.0257332828, 0.00960001349, -0.000137313138, 0.0314295813, -0.00623345049, -0.00548706064, 0.033028543, 0.016401846, 0.0189376976, 2.61304867e-05, 0.0289561898, 0.0208614487, -0.0169389956, 0.0247214399, -0.0155149214, -0.00432219217, 0.00225946982, -0.0107367756, -0.0241717976, -0.0147903925, -0.00521536218, 0.0321541131, -0.00336031709, -0.0259831212, -0.00724529335, -0.0451956391, -0.0301803946, 0.0380003154, -0.00888797641, 0.0271823425, 0.00245621684, -0.00110006658, -0.0128166741, -0.00538712554, -0.0518163405, -0.00514978, -0.0248463601, -0.022560345, 0.0641083568, 0.000279896311, -0.0373507366, -0.0037600575, 0.0116174528, 0.0379253626, -0.0192499943, -0.00182849972, 0.0136911059, -0.00976865459, 0.000633182412, 0.00424724072, -0.0123732118, -0.048418548, 0.0205366593, 0.0255459044, 0.00988732744, -0.0341778, -0.00468758, 0.00743267173, 0.0120983906, -0.0266326983, 0.0219982099, -0.0237470735, 0.0175011307, 0.0241468139, 0.00454704603, 0.0327287391, -0.0217483714, 0.0111802369, 0.0224479176, 0.00710788276, 0.00899415743, -0.0185254663, 0.0176635254, -0.0465697497, -0.0073639662, 0.0146904569, 0.0279568397, -0.0180882495, 0.00185660645, -0.00445023412, 0.0149153108, 0.00465947296, -0.00165361329, -0.0117298802, -0.0174886398, 0.0255833808, -0.0255583972, -0.00898791105, 0.00591490744, 0.00680183154, 0.0218857825, -0.00957503, -0.00750762317, -0.0275571, 0.0305051841, -0.0148903271, -0.0336781219, -0.0157397762, 0.0572628, 0.0106555782, -0.0181632, 0.00344151445, -0.0100372294, 0.0223854575, -0.0391495675, 0.0102683296, -0.0336531401, 0.0266077146, 0.0107555129, 0.0220981445, 0.0329286084, 0.0086318925, 0.0158896782, -0.0273322444, -0.010530659, 0.0211737454, -0.0247339327, -0.0165517479, -0.00267638639, -0.0391495675, 0.010137165, 0.0193249471, 0.0465197787, -0.00821966, -0.00465635024, 0.0113988454, 0.0060054739, -0.0205866266, -0.0175011307, -0.00735772029, 0.0589616969, 0.0238719918, -0.00884425454, -0.00465322705, 0.0457702689, -0.0344276354, 0.0236471388, -0.0166391917, -0.00309174159, -0.0198745895, -0.0157023, 0.00707040681, 0.0213236474, 0.0185379572, -0.0160145964, -0.0267076511, -0.0115862237, 0.00883176271, 0.0366012231, -0.0296557359, 0.000975147763, 0.0222105719, 0.0187128447, 0.00303708948, 0.00299961399, -0.0117860939, -0.0279068723, 0.00511855, -0.0215110257, -0.0321541131, -0.00343839149, 0.00569942268, 0.0157147907, 0.0130914953, -0.00399115728, 0.045270592, 0.0167516172, 0.0170889, -0.0245965216, -0.00288562546, -0.0155274132, 0.0203242972, 0.0246589817, 0.0204492155, -0.0196747184, 0.0457452834, -0.00594613748, 0.0234347768, 0.0282566436, 0.00355081842, -0.0143531756, -0.0340278968, 0.0033915469, 0.02127368, 0.00538712554, -0.0254834462, -0.00557138072, 0.00198308681, -0.00705791498, -0.00238907314, -0.0074639013, 0.0295058321, -0.0127042476, -0.0259081703, -0.011711142, -0.0392744876, -0.000477033871, -0.0236846134, 0.0362014845, 0.00825089, -0.00598673616, 0.0178259201, -0.0108304648, 0.0117923394, -0.020774005, -0.0185129736, -0.00422225706, -0.0328036919, 0.0283815637, 0.000615225348, 0.00188783614, -0.0387498289, 0.0200619679, -0.0205366593, -0.0113238934, -0.0418977812, -0.00457203, 0.0277070012, 0.0240968466, -0.0182881206, -0.00810098741, 0.0218108315, 0.0039974032, 0.0098560974, 0.00372882769, 0.00829461217, -0.00667691277, 0.0112364506, -0.0133163491, 0.0181507096, 0.018263137, 0.0204242319, 0.0298056379, -0.0164393205, 0.0147029487, 0.00919402763, 0.00184099155, -0.000372609502, 0.0280567743, 0.00426597893, -0.0261330232, -0.00576812774, -0.010137165, -0.00818218477, -0.0130290361, -0.0220231935, -0.0196872111, -0.0187753029, -0.0100809513, -0.00467508798, 0.0538150407, -0.00745140947, -0.0115737319, -0.0159521382, 0.00523722265, 0.0401739031, -0.0125480983, 0.00656448584, 0.00262329588, -0.00953755435, -0.0197871458, 0.0236721225, 0.016614208, 0.0112302052, -0.00767626334, -0.00607730215, 0.00456890697, 0.00537775643, 0.0272822771, -0.0214610584, -0.0070266854, -0.0202868208, 0.00502173789, 0.0066331909, -0.0271323752, 0.00915655214, 0.0114175826, -0.0116736665, -0.00558699574, 0.0183006115, 0.0135412039, -0.029580785, 0.00472817849, -0.0277070012, 0.0122295553, -0.0104931835, 0.0293809138, 0.0236221552, -0.0107180374, -0.00141548668, 0.00422850298, -0.0186004173, -0.00713911233, -0.02650778, 0.00811972562, -0.0170764066, -0.022710247, 0.00510918116, 0.00992480293, -0.0139784198, 6.97300929e-05, -0.00733273663, -7.20723183e-05, -0.0226477869, 0.016976472, -0.0238844845, 0.0108429566, -0.0231474638, 0.00876930356, 0.0108866775, 0.00116174528, -0.0213361401, 0.0121296206, -0.00019245311, -0.0251211803, 0.000234613224, -0.00270137028, -0.00605544122, -0.044196289, 0.0103370352, 0.00570566859, 0.00124216184, 0.04154801, -4.71617459e-05, 0.0069704717, 0.0264078453, 0.013753566, 0.000316005666, 0.00252960669, -0.00475003943, 0.00995603204, 0.00190501253, -0.000659727666, 0.000526611053, -0.0269574877, -0.0245090779, 0.00116564904, -0.00793859269, -0.00841328502, 0.00578998867, 0.0196122602, 0.0010766444, -0.00633650878, 0.0150527218, 0.00163643691, -0.00395680452, 0.00462824339, -0.0348523594, 0.0123794582, -0.0112739261, 0.00949383248, 0.0194498654, 0.00449707871, 0.0136036631, -0.0136411386, 0.0325288698, 0.00611790083, 0.0227227397, 0.0329785757, 0.0086881062, 0.000838517793, -0.0129166096, -0.010137165, -0.030005509, 0.0349273123, 0.0501174442, 0.000414964801, 0.00150371064, 0.0234722514, -0.0255084299, 0.0122045716, -0.012604312, 0.00309330295, -0.00576812774, 0.0234597605, -0.0103432806, -0.0235097278, -0.0143906521, 0.0134287765, -0.0255708881, -0.00589929288, 0.0164767969, 0.01063684, 7.70495608e-05, 0.00111412, -0.0155399051, 0.0219482426, -0.0149153108, 0.00491555687, -0.0227851979, 0.033378318, -0.0181007423, 0.0190126486, -0.0272323098, 0.0329785757, -0.00538400235, 0.00377254933, -0.0137410741, 0.00345088332, 0.00874432, 0.0184505135, 0.0132663818, -0.0174261797, -0.0162519421, 0.0145905223, -0.0184005462, 0.0161145311, 0.00598049024, -0.00678309379, -0.00587118603, -0.0336781219, 0.015115181, 0.00351958862, -0.0178633966, 0.0178883802, 0.0192874707, 0.0258582029, 0.017113883, -0.0218358152, -0.00117345643, -0.00858192518, -0.00392245175, -0.0156773161, 0.0336031727, 0.0028075513, 0.0155773805, -0.0213236474, 0.0214985348, -0.0145530459, 0.0164643042, 0.0160520729, -0.00654574763, -0.0119797178, 0.0259831212, -0.00624594279, -0.0173887033, 0.0108616939, -0.00214079674, 0.0424724109, -0.0135661876, -0.00631464785, 0.00530280545, -0.013965928, 0.00981862191, -0.0142657328, -0.0211862363, -0.0103994943, 0.0288562551, -3.0326979e-05, 0.0222355556, 0.00217358791, 0.0141408136, 0.0137035977, -0.00100247376, 0.0360765643, -0.0110053504, 0.0131414635, 0.018625401, 0.0281816926, 0.00504359882, 0.00805102, -0.00151620258, 0.00318386918, 0.00225166231, -0.00361640076, 0.00618036, -0.0280317906, -0.00528719043, -0.00811972562, -0.00869435165, -0.00199089409, -0.00264515658, -0.0295558, -0.0153400348, 0.00448458688, 0.00676435558, 0.00705791498, -0.00555264298, 0.000868186, -0.00611477764, 0.00053988368, -0.0257332828, -0.00572752953, -0.0219232589, 0.0199245568, 0.00247963914, -0.0132913655, 0.0268325694, 0.0173012614, 0.00592739973, 0.00811347924, -0.0136411386, 0.00503422972, -0.000104814724, 0.00723280152, -0.0115425019, -0.00186441385, 0.00327599677, 0.00976865459, 0.000649968395, -0.000126968298, 0.000840079272, 0.0104182325, -0.00821966, 0.0236971062, 0.00531217409, 0.00579311186, 0.0097998837, -0.0261330232, 0.0182256605, 0.0152151166, -0.0320541784, -0.0115549937, -0.0132039227, -0.04154801, 0.010349527, 0.00786364172, -0.0155149214, -0.0165142715, -0.0164268296, -0.0190251414, -0.0141907819, 0.00461575156, -0.0139034679, -0.0347274393, -0.0120296851, -0.00812597107, 0.035102196, 0.00112973491, 0.0304552168, -0.0153400348, 0.0316544361, -0.00395680452, 0.00200650911, -0.00632401695, -0.0162269585, 0.0259081703, 0.0190876, 0.00491867959, -0.0289312061, 0.00327287382, 0.0171013903, 0.0320791602, 0.011105286, 0.00950632431, 0.0285314657, -0.00379441, -0.0297306869, 0.0111615, 0.0185129736, 0.0363264, 0.0097749, -0.0165142715, -0.00712662051, -0.014253241, 0.00497801602, 0.0061522536, 0.0309299082, 0.00242498727, 0.0139409434, 0.00108601328, 0.00561510259, 0.00480625266, 0.0134287765, -0.0101496568, 0.00262173428, -0.0191000924, -0.00279193628, 0.0248088837, -0.0092377495, -0.0252086241, 0.00414418289, -0.0142407492, 0.00710788276, -0.0251336731, -0.0164767969, -0.0106493318, -0.018837763, 0.00352895749, 0.00707665272, 0.0108804321, -0.020699054, -0.0175136235, -0.00678309379, 0.00441588135, 0.0143531756, -0.00348211289, -0.00953130797, 0.00256864377, 0.01417829, -0.00233442103, 0.00198152522, -0.0211612526, 0.0013538081, 0.0319542438, -0.0136911059, 0.0408734493, -0.00798231456, -0.00406610873, -0.00979363825, -0.0111490078, -0.0203492809, -0.00485622045, -0.0043877745, -0.00850072782, 0.0104994299, -0.00832584128, 0.0150527218, 0.00206272257, 0.00633026287, 0.0348273776, 0.00481249858, -0.0151526565, 0.018912714, -0.00265764864, 0.00792610087, 0.0287813041, 0.0228226744, 0.00842577685, -0.00423162617, -0.0257582664, -0.00943761878, -0.0143406838, -0.0183255952, 0.00594301429, -0.00215172721, 0.00290904776, -0.00364138442, -0.00702043949, 0.0146654733, 0.0117798476, 0.0131914308, 0.00240781088, -0.00639584521, 0.021136269, -0.0118547995, 0.00691425847, -0.0142657328, -0.0149777699, 0.0133038573, 0.0114737963, -0.00725153927, -0.00466571888, -0.0040879692, 0.0587118603, 0.0375006385, 0.0041879043, 0.00691425847, -0.00267014047, -0.000988420448, 0.0203742646, -0.0424973927, 0.0235721879, -0.00229226099, -0.00133975467, -0.00439402042, -0.0066894046, -0.0134412684, 0.00688927481, 0.0274071954, 0.033803042, 0.00132570136, -0.0380752645, 0.00503110653, 0.00134209695, 0.00180976186, 0.00873182807, -0.011636191, -0.00242498727, 0.0111552533, 0.0343776681, -0.0158397108, 0.0490181558, -0.0137285814, -0.00252336077, -0.0192250106, -0.00520287035, -0.0334782526, -0.0106493318, 0.0246215053, -0.0245340616, 0.0121608498, -0.012679263, -0.00922525674, -0.0127167394, -3.53530122e-05, -0.0250961967, 0.00470007164, -0.0141033381, 0.00332284137, -0.0159146618, -0.018987665, 0.00952506252, -0.0100497212, 0.0246714726, -0.0144780949, 0.00194873405, 0.0234722514, -0.000790111721, 0.000408328488, -0.021061318, 0.030730037, -0.0101496568, -0.00773247704, 0.012104637, 0.0102620833, -0.00805726554, -0.00804477371, 0.0202743299, 0.000172544169, -0.00973742455, 0.0152650839, -0.00620222092, 0.0162269585, -0.0108429566, 0.00554639706, 0.00595550612, 0.0140158953, 0.00847574417, 0.00572440634, 0.0167266335, 0.00971244089, 0.0128541496, -0.0048843273, 0.0128791332, 0.0237720571, -0.0236346461, 0.0118298149, -0.0140783545, -0.0083758086, 0.0136661222, -0.0130415279, -0.00185192202, -0.0190001577, 0.00143266306, 0.0115175182, 0.0434967428, 0.00628966419, 0.0152900675, 0.0204492155, 0.0258831866, 0.00418165838, -0.0065332558, 0.0100309839, -0.0226602796, 0.0232723821, 0.0105556427, 1.57246486e-05, -0.00373507361, 0.0263079107, 0.00431282353, -0.0273072608, 0.0210738108, -0.0287563205, -0.0151651483, 0.0138784843, 0.0246339981, -0.0154649541, -0.0193499308, 0.0196247511, 0.0108991694, 0.000660898804, -0.00173324905, -0.0122670308, 0.00845700596, -0.00529968226, -0.0129166096, -0.00387873035, 0.0206740703, -0.00747639313, -0.0122982608, -0.0174511634, -0.00245621684, 0.00199401728, 0.0243841596, -0.00336031709, -0.00230787578, 0.0181132331, -0.0221855883, 0.00964998174, -0.0113738617, -0.00329473475, 0.00171138823, 0.0107742511, -0.0112739261, -0.000379831385, 0.0101621486, -0.0044346191, -0.014040879, -0.00946884882, -0.0324039496, 0.00630840193, -0.0144156357, -0.000865063048, 0.0168765374, -0.0203617737, 0.0216984041, -0.0264078453, -0.0192125197, -0.0172762778, 0.000317762315, 0.00937516, 0.00361640076, 0.00596799795, -0.0138784843, 0.00546207698, -0.00996227842, -0.0288562551, -0.00441275863, -0.00148653437, -0.0165267643, -0.0138909761, 0.014328192, 0.00572752953, 0.0137160895, -0.00271073915, 0.0045408, 0.0119734723, 0.000788159901, 0.00952506252, 0.00896917377, -0.00282004313, 0.0202993136, -0.0170889, -0.0105369054, 0.00534965, -0.0115737319, 0.0185629409, 0.0103682643, 0.0200244915, 0.00740144216, 0.0102058705, -0.0035352034, -0.00547144562, 0.00855069514, 0.0279068723, -0.00833208766, -0.0226977561, 0.0234847441, -0.00577437412, 0.0308799408, 0.00983111374, 0.0106930537, 0.00489681913, 0.00272323098, 0.0140034035, -0.0169889629, 0.00618972909, 0.0175760817, -0.010349527, -0.022710247, -0.0107242838, 0.0287063513, -0.00866936799, 0.00277163694, -0.0170264393, 0.0121983262, -0.00197840226, 0.00906286296, -0.00938765146, -0.0152775757, 0.00168015854, 0.0138784843, 0.00357267912, 0.00566194672, -0.0103870025, -0.0343526825, 0.00700170174, -0.00281067425, 0.0197746549, -0.0142032737, 0.0112302052, 0.00386936148, 0.00282004313, 0.0113738617, -0.00434093, 0.0187877957, -0.00324789016, 0.0084320223, -0.00372570474, 0.0280817579, 0.0183505788, -0.0163268931, -0.0137285814, 0.000674952171, -0.0196622275, 0.0282566436, 0.00200650911, -0.00645205891, 0.0213861074, 0.0138909761, -0.0125231147, -0.00177072478, -0.00811347924, -0.0170389321, 0.00595550612, 0.00285439566, -0.0456453487, -0.00549018336, 0.00361015485, 0.0043440531, 0.00206896849, -0.00688927481, -0.00740768807, 0.0148153761, 0.00810723379, 0.0228726417, -0.0100372294, -0.00187690579, 0.0366012231, -0.0132289063, 0.0140533708, 0.0110365804, 0.00653950172, -0.0119235041, 0.01325389, 0.022847658, 0.0110240886, 0.0137285814, -0.00318855373, -0.0125543447, 0.002874695, 0.0113238934, -0.0291810445, -0.00435029902, 0.0153775103, 0.0118110776, -0.0303053129, 0.0126480339, 0.022422934, 0.0142657328, 0.0219357498, -0.000503969495, 0.00233285944, -0.00655199355, -0.0222980157, -0.0264578126, -0.025146164, -0.000830710342, 0.0183630716, -0.00969370268, 0.0115050264, -0.0225478522, -0.0122233098, -0.0145530459, 0.00856943335, 0.0250837058, 0.0109991049, -0.00925024133, 0.00931270048, -0.00410670741, 0.00683930703, 0.0107867429, -0.0146779651, 0.0102495914, 0.025071213, -0.0143032083, -0.0209988598, 0.0117548639, -0.00334157934, 0.0291810445, 0.0146779651, -0.014328192, -0.000339232764, -0.0172762778, -0.0168765374, 0.000930645445, -0.0172887687, 0.00120390544, -0.0123232445, -0.00109225919, -0.0016223836, 0.0259081703, -0.00937516, 0.0114113372, -0.00966247357, -0.00735772029, -0.0186129082, -0.00161145313, -0.0241468139, -0.0151776401, 0.0138285169, 0.000282628898, 0.00925648678, -0.0281567089, -0.00137254584, 0.0192999635, 0.000184840857, -0.00820092298, -1.7127546e-05, 0.0113863535, -0.0150652137, -0.00582121871, -0.00603045756, -0.00633650878, 0.026432829, 0.0349522941, -0.0013147709, -0.00399115728, 0.00964373536, -0.0161645, 0.0151276728, -0.0121920798, -0.00811972562, 0.0144780949, -0.00316200848, 0.0321291275, 0.0245590471, 0.000899415754, 0.0081384629, -0.0146904569, 0.00668315869, 0.0242592413, 0.00232973648, -0.0108054811, 0.00238907314, -0.00712662051, 0.00192218879, -0.03452757, 0.00475316215, 0.0108804321, -0.003491482, -0.00688927481, -0.0267326348, -0.00166454364, 0.00525283767, -0.00205179211, 0.000550814089, -0.00383813167, 0.00426597893, 0.0117298802, 0.00297931465, 0.00654574763, -0.00137410732, -0.00781992, 0.00332596432, 0.0136786141, 0.00325725903, 0.0182006769, -0.0119110122, -0.0254459698, 0.0231224801, -0.00850072782, 0.0133413337, -0.0238969754, -0.019125076, -0.00328536588, 0.011998456, 0.00570566859, -0.00219544885, 0.00366949127, 0.00656448584, 0.00700794766, -0.0106305946, -0.000451659726, 0.0174886398, -0.0148903271, 0.00771998521, -0.00291060936, -0.00331034954, 0.0202868208, -0.0101996241, 0.0233848095, 0.00436591404, -0.00481249858, 0.00601484254, -0.022422934, -0.000222121336, -0.0170139484, 0.024933802, -0.0309798755, 0.0234347768, -0.00742642581, 0.00935017597, -0.0107992347, 0.032304015, -0.0218607988, 0.00978739187, -0.006105409, -0.00372258178, -0.0141408136, 0.00789487176, 0.00821966, -0.0174511634, -0.00538712554, 0.0125106229, -0.00921276491, -0.000196552, -0.003491482, 0.00154821307, -0.0084320223, -0.00148575357, 0.0131914308, 0.0157772508, 0.0277319849, 0.000527782133, 0.0138285169, -0.00416916655, -0.014040879, -0.00216109608, -0.00340716168, -0.0056681931, -0.0167391263, -0.0110053504, -0.0026607716, 0.0190126486, -0.0187503193, 0.0129041178, -0.00838205498, 0.0318792909, 0.0026607716, 0.0167890936, 0.00647079665, -0.00845076051, -0.00813221745, 0.0340278968, 0.0258831866, -0.00755134458, -0.00388809922, 0.00391308311, 0.00133194728, 0.00450020144, -0.00786364172, -0.00173949497, -0.00677684788, 0.0199495405, 0.00466884207, 0.00940639, -0.00513416482, 0.0454704612, -0.0447709151, -0.0231849384, 0.00200650911, 0.0117611103, 0.00791360904, -0.00974991638, -0.000265062175, -0.0152650839, 0.00123825809, 0.000282824098, -0.010924154, -0.00369447493, 0.0220731609, 0.00593052246, -0.00217202655, 0.00691425847, 0.0202368535, 0.000381002494, 0.00820092298, 0.00828211941, 0.00475003943, -0.000147365208, 0.0181382168, -0.0167266335, 0.00971244089, 0.0171388667, -0.0170014556, -0.018912714, -0.0160395801, -0.00273728441, 0.0113426317, 0.0148903271, 0.0102683296, -0.00636773836, 0.0121483579, -0.0447959, 0.0171638504, 0.0144031439, -0.0128416577, -0.0116486829, -0.0197496712, 0.0223729666, -0.0164143369, 0.00019274588, 0.0162144676, 0.0172762778, 0.000104326762, -0.0315545, -0.00552765932, -0.0274821483, 0.00494054053, -0.0162894186, -0.0059055388, 0.0198121294, 0.00637398427, 0.0207240377, 0.00178790104, -0.00661445316, -0.000940795115, -0.0135536958, 0.00790111721, -0.0102683296, -0.00435654493, -0.00194717257, -0.00512479572, -0.019274978, 0.00221574819, 0.00710163685, -0.0146779651, -0.00366949127, -0.015689807, 0.00673937192, 0.00188002875, -0.0173512287, 0.00321041443, 0.00795108452, -0.00314639346, -0.00403487869, -0.00764503377, -0.0164643042, 0.0015833464, 0.00880677905, 0.00881302543, -0.000321080472, 0.0030745652, 0.00129056792, 0.0273072608, -0.00613663858, 5.38712557e-05, 0.00196903339, -0.0136536304, -0.00451893965, 0.00722030969, -0.0422225706, -0.00189252058, -0.00601796573, -0.00328224292, -0.0105056753, 0.000794405816, 0.0155399051, 0.00397241954, 0.0168640446, 0.00680807745, -0.00411295332, -0.0299805235, -0.00636461563, -0.0039505586, -0.0149777699, 0.00211737445, -0.00548706064, 0.00713286642, -0.00200182456, -0.00620846683, 0.00725153927, -0.00682056928, 0.0179508384, -0.00350085087, 0.0197621621, 0.00695798, 0.00990606472, -0.00836331677, 0.024858851, -0.0074639013, 0.024421636, 0.0187877957, 0.0181632, 0.0256083645, 0.0107992347, 0.00352583453, -0.0110115968, 0.0234097932, -0.0100559676, 0.00341028464, -0.0185379572, 0.00307924976, -0.030005509, -0.0168890283, 0.0142407492, 0.00320104556, -0.0101184268, 0.00973117817, 0.0110990396, 0.00263266475, 0.0133413337, 0.00429096259, 0.00823839847, -0.0204617083, 0.0119672259, 0.011030335, 0.0112926643, -0.00432219217, 0.001038388, -0.0149402944, -0.00157241605, -0.0160395801, 0.00537463371, -0.00226103119, 0.0176510345, 0.00405986281, 0.00716409599, -0.00180976186, 0.00281379721, 0.00435029902, 0.0215984695, 0.0105431508, -0.0161395147, 0.00145842764, -0.00828211941, 0.0256583318, -0.0272822771, -0.000585557136, -0.00599922799, -0.00956253801, 0.0101184268, -0.00987483561, -0.0134912357, -0.000137410738, -0.000365778018, -0.00390371401, 0.00891296, 0.0249213111, -0.0178509038, -0.00233754399, 0.0337280892, -0.0284814984, -0.0175386071, -0.0054214783, -0.0140658626, 0.0119859641, 0.00878179539, -0.00012452848, 0.0263828617, -0.0169389956, -0.0256083645, -0.000710085616, -0.0163019095, 0.0230974965, -0.00107117917, 0.0202743299, 0.000762395386, -0.0143781602, -0.00666442094, 0.00978739187, -0.00891296, 0.0344776027, 0.007520115, -0.00368822902, 0.0107242838, -0.00450332463, 0.0267576184, -0.0157272834, 0.0111677451, 0.00258425879, 0.0214860421, 0.00285908021, -0.00958127622, 0.0090378793, 0.000952506263, -0.0141283218, 0.00665817456, -0.00145452388, -0.00979363825, 0.016401846, -0.0052746986, -0.0056026103, 0.00467508798, 0.0328536592, -0.00254366, 0.00174261793, 0.00447834097, -0.0083883, -0.0352271162, 0.0160770565, 0.0184879899, 0.0117298802, 0.000958752178, 0.0199495405, 0.00665817456, 0.0281317253, 0.00602108845, -0.00389746809, 0.0297556706, -0.00998726208, -0.0157647599, 0.00780742802, 0.0146904569, -0.0209738743, -0.0288562551, -0.0172762778, 0.0189252067, 0.00131164794, -0.00370384404, -0.00292466255, 0.00518100942, 0.0234222841, -0.00905661657, -4.51366941e-05, -0.0124044418, 0.00546207698, -0.00503110653, 0.00724529335, -0.00235784333, -0.00638335338, 0.00662694499, -0.00678933971, -0.0164268296, 0.0012452848, -0.00228445348, 0.0264827963, 0.0175011307, 0.00757632824, 0.0166766662, -0.012285769, -0.00269668573, -0.0227602143, 0.00740768807, -0.00748263905, -0.00631152513, -0.0203492809, 0.00288874842, -0.00193311926, 0.0101996241, 0.0224604104, 0.0181756932, -0.0205491502, 0.00197059498, -0.012104637, 0.0142782247, 0.00494678644, -0.0115737319, 0.00466884207, 0.00960626, 0.00312609435, -0.00943761878, -1.48219142e-05, -0.0139034679, 0.00239844201, 0.0109616295, 0.0176635254, -0.00367573719, 0.00646455074, -0.00716409599, 0.00110475114, -0.00683930703, -0.0106993, 0.00444711093, 0.0026841939, -0.00400989503, -0.00767001742, 0.0141907819, 0.00207989896, -0.00119922101, 0.0122670308, 0.00391620584, 0.00205803802, 0.00246558595, 0.00311204093, -0.00188783614, 0.0299055725, 0.0123857046, -0.00337905483, 0.00673937192, -0.0184005462, 0.0161395147, -0.0241593067, 0.00568693085, 0.0193124544, -0.0170889, 0.00633026287, -0.00704542315, 0.00997477, -0.00418478157, -0.0386249088, 0.0197121948, 0.0216984041, -0.0164643042, -0.0132663818, -0.019125076, -0.00238751154, 0.00575251319, -0.0278069358, -0.0168140773, -0.0143656675, -0.00364763057, 0.0138035333, -0.021348631, -0.00191906583, 0.000674952171, 0.0038069021, -0.0248463601, 0.00665817456, 0.00508107431, 0.0109866131, 0.0102121159, -0.0165142715, -0.0203367881, -0.000299610052, 0.00407547737, -0.00788862538, 0.00447834097, 0.0169265047, -0.00638023, 0.010006, 0.0119172586, -0.0311547611, 0.0174261797, 0.00499675423, 0.0130165443, 0.00155133603, 0.00915030576, -0.0108367102, -0.0106181027, 0.000566038536, -0.0160645638, -0.0130040525, -0.0144281276, -0.0175136235, 0.00435654493, -0.000324593828, 0.0184005462, 0.01411583, 0.00522473082, 0.0199995078, 0.00502173789, -0.00232192921, -0.00458764471, 0.00171607267, 0.00723904744, -0.0229725763, 0.0194998328, 0.00122498546, 0.0108741857, 0.00740768807, 0.0096187517, -0.0150527218, -0.00366949127, -0.00446584914, 0.00262485747, -0.00494366372, -0.0146654733, 0.00255459058, -0.0222105719, -0.00540274056, 0.0168515537, -0.0218857825, -0.0102558378, 0.0114550591, -0.012466901, -0.00674561784, 0.0217358805, -0.0266077146, -0.0119484877, 0.00294652348, 0.0160895474, 0.00615537632, 0.0179758221, 0.0164268296, 0.01682657, -0.0122732772, 0.00802603643, -0.01325389, -0.00729526114, 0.0141533054, -0.0234597605, 0.00295433076, 0.0175261144, -0.0052184849, 0.0122607853, -0.0108179729, 0.00325725903, -0.00533715775, -0.00413481379, 0.0225228686, -0.0179633312, 0.000849448203, 0.00720781786, 0.0130415279, 0.00165829773, 0.00602108845, -0.0290311407, -0.00462199748, 0.0174886398, -0.00796357635, 0.00573377544, -0.0234472677, -0.0103307888, 0.0234597605, -0.0031666928, -0.0112676807, -0.00108054804, 0.00787613355, -0.00085257116, 0.0018300612, -0.0199120641, 0.0160520729, 0.00349460496, -0.00324789016, 0.0196872111, 0.00525908358, -0.00443774229, 0.0225103777, 0.0045907679, 0.0218982752, -0.00326975086, 0.022273032, -0.0218982752, -0.0309299082, 0.00226259278, -0.0213361401, -0.0107242838, -0.0059961048, -0.00548706064, -0.0170139484, 0.0179758221, 0.0203242972, -0.0167016499, 0.000466493831, 0.0174136888, 0.0160895474, -0.015689807, 0.00445960322, 0.0115987156, -0.0317793563, 0.00357580208, 0.00339466985, 0.0165517479, -0.00208770623, 0.00778869027, 0.000920495775, 0.0162394512, -0.0158646945, 0.00886299275, -0.0161645, 0.0113988454, 0.00278569036, -0.00536838779, 0.000709695218, -0.00607105624, 0.00839454681, -0.00907535478, 0.0287563205, 0.031379614, -0.00639584521, -0.00506545929, 0.00371009, -0.00529968226, 0.00334782526, 0.0366761759, 0.00861940067, -0.000197723115, 0.000370072084, 0.0117298802, 0.0149652781, -0.00576812774, -0.0249712784, 0.0065332558, -0.0421975888, -0.00886299275, -0.00787613355, -0.00990606472, -0.0100434758, -0.00300586, 0.0109866131, -0.0246714726, 0.0337031074, -0.00121639727, -0.00227196165, 0.0216234531, 0.0158022344, 0.00132570136, -0.0163144022, -0.00283565791, 0.0219732262, -0.0132663818, 0.000621080922, -0.00969994906, 0.00563384034, 0.0133788092, -0.0114737963, -0.0128291659, 0.0111427614, 0.00958752166, 0.00184255303, 0.00881302543, -0.0102371, -0.00435029902, -0.0190626159, 0.00136473845, 0.0192874707, -0.0180507749, 0.0222605392, 0.0109741213, 0.00284971134, -0.0277319849, -0.00827587396, 0.00601796573, -0.0144531112, -0.00638023, 0.000643332081, -0.02127368, -0.0214485675, 0.00109225919, -0.00357267912, -0.00655199355, -0.00536214188, 0.000640599465, -0.0154149858, -0.0221481118, -0.000243201386, 0.0109866131, 0.0292809792, 0.019699702, -0.0104182325, -0.000525830314, 0.0128041822, 0.000729604159, 0.00703293132, -0.0424474254, -0.015252592, 0.0007690317, 0.0292559955, -0.00437216, -0.0119235041, -0.00680807745, -0.00707665272, 0.036026597, -0.0199495405, 0.0103807561, -0.0150777055, -0.0220356863, 0.00777619844, 0.0135911712, -0.00218451838, 0.00811972562, -0.00413169106, 0.011348878, 0.00183318416, 0.00770749291, 0.00562134851, 0.0080135446, 0.00206428394, 0.0107180374, 0.0199245568, 0.0140783545, -0.000554327387, 0.0089254519, 0.0238844845, 0.00264203362, -0.020911416, -0.0146030141, 0.0274321791, -0.0143656675, -0.00747014722, -0.00201587798, 0.0116924047, -0.00331971841, 0.00723280152, -0.0010376072, -4.22577068e-05, 0.0125231147, 0.0287063513, -0.0350272469, -0.00916904397, -0.0127604604, -0.00514353393, -0.00260299654, 0.00188159023, 0.0154524622, 0.0158147272, 0.0101808868, 0.0224104412, -0.00158178492, 0.00711412868, 0.00558699574, 0.00563071715, -0.0322790295, 0.00691425847, 0.0146654733, -0.00272479234, -0.0236346461, 0.0045345542, 0.032453917, 0.0158022344, -0.00386936148, -0.0125980666, -0.0135287112, -0.00235784333, 0.00436279085, 0.00222667842, 0.015689807, 0.00170982676, -0.0107367756, 0.0100809513, -0.00279505923, -0.0251211803, -0.00422538025, 0.0092377495, -0.0203367881, 0.00836331677, 0.0283315964, -0.0158147272, -0.0252835751, 0.004690703, -0.00984985102, 0.0154899377, -0.0120734069, 0.00319636101, -0.00197840226, 0.021348631, -0.0121733425, 0.00194248813, -0.0194748491, -0.00602421165, -0.00969370268, -0.00855694152, -0.00764503377, -0.00444711093, 0.0176635254, 0.0164767969, 0.00360390893, 0.0202493463, -0.000389981025, 0.0050279838, 0.00735772029, 0.00843826868, 0.00675810967, -0.00124216184, 0.00365075353, 0.017051423, -0.00820716843, -0.00319323805, -0.0326537862, 0.0177259855, -0.0217608642, 0.0277569685, 0.0108304648, 0.0044439882, 0.00394119, -0.0173137523, -0.00501549197, 0.0120109478, -0.0271073915, -0.00998726208, -0.0158522017, 0.0232598893, 0.0194248818, -0.00685804477, 0.0177010018, 0.00065504323, -0.000668706256, -0.00124294253, 0.00447834097, -0.00360078597, -0.0194623563, 0.0167766, 0.00123201218, 0.0100497212, -0.00285751862, -0.00393494405, 0.00533715775, 0.00640209112, -0.0165642388, 0.00805102, 0.00319011509, -0.01153001, -0.00433156127, 0.0279068723, -0.00574314408, -0.0019752793, -0.00493117189, 0.00855069514, 0.0272822771, -0.0173762124, 0.00900040288, -0.0175136235, 0.000902538712, 0.0218358152, 0.00846949778, 0.0115674855, -0.0116112074, 0.0135412039, 0.00559948757, 0.00580872642, 0.000971244066, -0.00831334945, 0.00940014329, 0.0036819831, 0.00228913804, 0.0164518133, -0.00203617732, -0.000200260532, 0.00297775306, -0.00772623112, -0.00475628534, -0.0134787438, 0.0191375688, 0.0076575256, 0.0090816, -0.0109991049, -0.00713286642, -0.0171513576, 0.019274978, -0.00735772029, 0.0284814984, 0.00984985102, -0.00129291008, -0.00469694892, 0.00893169828, -0.0147404242, 0.019274978, 0.00652076397, 0.001168772, -0.0113301398, 0.0233723167, 0.00373819657, -0.0198496059, -0.000918934296, -0.00191750436, 0.0034446374, -0.00927522499, 0.010349527, -0.00932519231, -0.00969370268, 0.00207833736, -0.000963436614, 0.00154587079, 0.00135849253, -0.00998726208, 0.00229226099, 0.00498113921, -0.000157222079, 0.0155274132, 9.14445045e-05, 0.00174105645, -0.0322790295, -0.00738270395, -0.0122420471, 0.024284225, -0.0222105719, 0.00617723726, 0.0186378919, 0.00768250925, -0.0217858478, -0.00203461573, 0.0137910414, -0.00702043949, 0.0181881841, -0.00673312601, 0.00741393398, 0.0102995597, -0.0248963274, -0.0195872765, 0.0308549572, -0.0125418529, -0.00403800188, -0.0106680701, 0.0076575256, -0.0371508673, 0.0146654733, -0.0097998837, 0.022635296, -0.00504047563, -0.00262329588, -0.00976240821, -0.0141408136, -0.00759506598, 0.0159396455, -0.0022454164, -0.00632089376, 0.00891920645, 0.00896292739, 0.0198371131, -0.00593676837, -0.0140283871, 0.00494366372, -0.0140908463, -0.0186004173, 0.00338217779, 0.0122482935, -0.0117298802, 0.00630840193, 0.00692050438, 0.0195123255, 0.000374951749, -0.00397554226, -0.0285564493, 0.00688302889, -0.00340091577, 0.00814470928, 0.00294964644, 0.00221887114, -0.0148528516, -0.00931894593, 0.0131164799, 0.0108117266, -0.0283565801, -0.023072511, -0.0145905223, 0.00194561109, -0.00197059498, -0.0233723167, -0.0123232445, -0.000709304877, -0.00555888889, 0.0498176366, 0.00516227167, 0.00125699595, -0.0352021307, -0.00573689817, 0.0103682643, -0.0128041822, 0.00148419209, 0.00115940312, -0.00390371401, 0.0349273123, -0.0164143369, 0.00158490788, 0.00673312601, -5.68966316e-05, -0.0319792256, -0.00373819657, 0.00531217409, 0.00177384773, 0.0167016499, -0.0262579434, -0.000502408, 0.00834457949, 0.00338530098, -0.0178509038, 0.00650827214, 0.0415979773, -0.0120546687, -0.00520287035, 0.0146904569, -0.00508419704, -0.0033447023, 0.0318043381, -0.0106305946, 0.0200619679, 0.00879428722, -0.00502173789, -0.0133663174, -0.000271503319, 0.00806975737, -0.0135786794, 0.026857553, -0.0175011307, -0.00310267205, 0.00999350846, -0.0126855094, -0.0138285169, 0.0142282574, -0.0340778641, 0.00888797641, 0.00187222124, 0.0289312061, -0.00720157195, -0.0332533978, 0.0201868862, -0.00948134065, 0.0260830559, 0.0259831212, 0.00233285944, -0.00185036054, 0.000662850682, 0.00529655907, 0.0154649541, 0.00294027757, -0.0140658626, -0.00033259645, 0.0147279324, -0.0060054739, -0.00564320898, 0.00573377544, -0.00945011154, 0.00714535825, -0.0151776401, 0.014540554, -0.0228976253, 0.0024687089, -0.0148528516, -0.0101559022, -0.000563305919, 0.0147279324, 0.0103307888, 0.0216359459, 0.0173137523, 0.0178009365, -0.0150277382, 0.00223917048, 0.00216578064, 0.00371633586, -0.00374444248, 0.00948758703, -0.0310048591, 0.0152026238, -0.00215485017, -0.00449707871, 0.0188252702, -0.0192999635, -0.00680183154, 0.0103620188, 0.00858817063, -0.00579935778, 0.00889422186, -0.00230787578, -0.00574626727, 0.0168640446, -0.0164767969, -0.0253835116, -0.00621783594, -0.00679558562, -0.0239094682, -0.00363513851, -0.024496587, -0.00872558169, -0.00920027308, 0.000642551342, 0.0125480983, 0.0121171288, 0.0147029487, -0.0131539553, 0.0239719283, 0.0168640446, 0.0128541496, -0.010530659, -0.00140767929, 0.00942512695, 0.00659571541, 0.0248088837, -0.0113301398, 0.00861315522, -0.00973117817, -0.018625401, 0.00013663, 0.00117111427, 0.000681198086, 0.00918778125, 0.0159646291, -0.0213611238, 0.00864438433, 0.00750137726, -0.0126355421, 0.0107992347, -0.000868966745, -0.00250306143, 0.0303802639, 0.0063864761, -0.00489369594, -0.00981862191, -0.00915655214, -0.00239844201, 0.000329083094, -0.00388185331, 0.0246090144, -0.00397866545, -0.00118516758, 0.0210863017, 0.0124856392, -0.000110377514, 0.00181600777, 0.0107180374, 0.00081978, 0.0192999635, 0.0196872111, 0.00218764134, -0.00341965351, 0.0278069358, 0.0102371, -0.0126292957, 0.0251336731, 0.0132788736, 0.00910033844, 0.0218607988, -0.012966577, -0.00421601115, 0.00935017597, 0.0378254279, 0.0134412684, 0.00390996, -0.0299055725, -0.0159646291, -0.00395992771, 0.000709695218, 0.00760755828, 0.0155523969, 0.00173168757, -0.00544646196, -0.0089254519, 0.00271854643, -0.00470944075, 0.0158646945, -0.00234066695, 0.0069267503, 0.00879428722, 0.0170889, 0.000767470221, -0.0125918202, -0.0072640311, 0.0097998837, 0.020199379, 0.0159146618, 0.0128041822, -0.0116549293, -0.00981237553, -0.00293247, -0.00419415, 0.00352583453, -0.00485309726, -0.000479376089, 9.48602537e-05, 0.0203118045, 0.0218982752, 0.00660820724, 0.00156617013, 0.00455953786, -0.00318386918, -0.0181632, -0.0148403598, -0.0177010018, 0.0331284776, -0.0103932489, -0.00755134458, 0.00887548458, -0.000524659175, 0.019699702, 0.00172388018, -0.00861315522, 0.0120359315, 0.0210863017, -0.03452757, -0.00390996, -0.00608354807, 0.0105993645, 0.0210863017, -0.00664568273, 0.00650202623, -0.000369096175, 0.011317648, 0.00103448424]
14 Nov, 2021
jQWidgets jqxSortable scrollSpeed Property 14 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSortable represents a jQuery plugin that allows you to reorder elements in an Html list or div tags using the mouse. The scrollSpeed property is used to set or return the speed of the page while scrolling. It accepts number type values and its default value is 20. Syntax: It is used to set the scrollSpeed property $('Selector').jqxSortable({ scrollSpeed : number}); It is used to return the scrollSpeed property. var scrollSpeed = $('Selector').jqxSortable('scrollSpeed ') Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link type=”text/css” rel=”Stylesheet” href=”jqwidgets/styles/jqx.base.css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/globalization/gloōbalize.js”></script><script type=”text/javascript” src=”jqwidgets/jqxsortable.js”></script> Example: The below example illustrates the jqxSortable scrollSpeed property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link type="text/css" rel="stylesheet" href="jqwidgets/styles/jqx.base.css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/globalization/globalize.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsortable.js"> </script> </head> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>jQWidgets jqxSortable scrollSpeed property</h3> <div class="gfg"> <div id="sort1"> <div><li>C</li></div> <div><li>C++</li></div> <div><li>Python</li></div> <div><li>HTML</li></div> <div><li>CSS</li></div> <div><li>JavaScript</li></div> </div> </div> <script type="text/javascript"> $(document).ready(function () { $("#sort1").jqxSortable({ scrollSpeed: 50 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsortable/jquery-sortable-api.htm 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 scrollSpeed Property
https://www.geeksforgeeks.org/jqwidgets-jqxsortable-scrollspeed-property?ref=asr10
PHP
jQWidgets jqxSortable scrollSpeed Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable scrollSpeed Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0348051749, 0.0228173472, -0.0113598295, 0.0429552272, 0.0334654413, -0.0036772911, 0.0255805496, 0.0394384228, -0.0177933443, 0.015658142, -0.00983867235, 0.0471977182, 0.00457044737, -0.0175979659, 0.0314837508, 0.0249525476, -0.0317349508, -0.019119123, -0.0363402888, 0.0310371742, -0.00225207908, 0.00157523423, -0.0333258882, 0.0140811643, -0.0546220765, 0.00435413606, 0.0301440191, 0.0327955745, -0.00845009368, 0.0246873926, -0.021952102, -0.00208461238, 0.0159791205, -0.0114854295, -0.0177793894, 0.00766858226, 0.0210310351, -0.00972005073, -0.014185831, -0.0112342294, -0.0356146, 0.036200732, 0.00214566803, 0.0150301419, -0.00681380415, 0.026320193, 0.0103759617, 0.0255805496, -0.0266272165, 0.0343586, 0.00618929276, 0.0395779796, -0.0141928084, 0.0140183643, -0.00149673421, -0.0586691909, 0.0109620951, 0.0327118412, -0.0239337925, -0.00288531277, 0.056603767, -0.060567148, -0.0325443745, -0.0202913899, -0.00162146206, -0.00718013756, -0.0130065857, 0.0308138859, -0.0465836711, 0.0233895257, -0.0317907743, 0.0242268592, 0.022063747, 0.0226080138, 0.0109341843, -0.00956653897, -0.00271435711, -0.0104108509, -0.00556478091, 0.0267807264, -0.0203472115, -0.0124832522, -0.0606787913, -0.012573963, 0.00886876136, -0.016286144, 0.0181143228, -0.0301161073, 0.061460305, -0.012197163, -0.00352901313, -0.0196494348, 0.0298090838, 0.0266830381, 0.0258457046, -0.00867338292, -0.00134147855, 0.0217567235, -0.0192168113, -0.00158744538, 0.0242408141, 0.0360053554, -0.0128251631, -0.0300881956, 0.00120366737, 0.0144440085, 0.0166071206, -0.0120017854, 0.0182678327, -0.0271156617, 0.0577760339, -0.035307575, 0.0123157855, -0.00327781308, -0.0414201133, 0.0234453473, -0.031427931, -0.0279250834, 0.0119808521, -0.00372962444, 0.0181422327, 0.017584011, -0.0281204619, 0.0582226142, -0.0160907656, 0.011869207, -0.00817098282, 0.0266830381, 0.0177235659, -0.0319024175, -0.0101387175, 0.0487607419, -0.00969911739, -0.00090711168, 0.02746455, 0.00918973889, 0.013732275, -0.0218265019, -0.0348051749, -0.00455998071, -0.0533381663, -0.00652422616, 0.0227475688, 0.0105294734, -0.010522495, 0.0329072215, 0.00259747938, 0.0507982522, -0.0354471318, 0.0104108509, -0.0117854737, -0.0538126528, 0.00811516, 0.0212124567, 0.0161605421, -0.00227301242, -0.0350842886, 0.0397175364, -0.00530311419, 0.00838729367, -0.00153860089, -0.00685915956, 0.0253851712, 0.0132856965, -0.00729876, 0.00163716206, 0.0230266806, -0.00840125, -0.0552640334, 0.0191609897, 0.019119123, -0.0136555191, -0.0133066298, -0.00482862536, -0.00810818281, -0.00789187104, 0.0168304108, -0.024631571, -0.0128600523, -0.044406604, -0.0237942357, -0.0160070322, 0.0092246281, 0.00898040552, -0.0155185871, -0.0120087629, 0.00921067223, 0.0165373441, -0.0283995718, -0.00763369352, -0.0383219793, 0.0329909548, 0.0372613557, 0.0443507805, -0.0308417957, -0.00978285074, -0.0192307662, 0.00468558073, -0.0357820652, -0.014374231, -0.0045111361, 0.0155604538, 0.00107893953, 0.0161884539, 0.0343306884, 0.0213799234, 0.00172176771, -0.0340794884, 0.0531148762, -0.00142085087, 0.0132298749, 0.0113388961, 0.0281623285, 0.0183655228, 0.00211426802, 0.00877107214, 0.0133973416, -0.0201797448, -0.0340236649, 0.00612649275, -0.00957351644, 0.00263760169, -0.0244082808, 0.0275482833, -0.078039512, -0.035670422, -0.00443089148, -0.0126088522, -0.0136345858, 0.0185469445, -0.0241431259, -0.00773836, -0.0288601071, 0.00361798, 0.0369543321, 0.0467232279, -0.00848498289, 0.0164815206, -0.0196075682, 0.0174723659, 0.0179049894, -0.0209054351, -0.00148103421, -0.0173886325, 0.0216729902, -0.0298928171, -0.00296032405, -0.0215753019, 0.016300099, 0.00677193748, -0.0163280107, -0.013606675, 0.00557524757, -0.043262247, 0.0145556536, 0.0175142325, 0.0108644068, 0.0131600965, 0.0203472115, -0.00390755804, 0.0346377082, 0.0318745077, -0.0149464086, 0.0233755689, 0.00779418228, 0.00690800417, 0.0294462405, -0.023738414, 0.0244361926, -0.0466394946, 0.0137462309, -0.00981076155, 0.0241012592, 0.00615789276, -0.012636763, 0.0215473901, -0.0196075682, -0.0386290029, 0.0349726416, -0.0490677617, 0.00308766845, 0.0213520136, 0.0288601071, 0.0602880381, 0.00573922554, -0.0210170802, 0.0307859741, -0.0423411801, -0.0143881869, 0.0241012592, -0.0389081128, 0.002035768, -0.00119494519, 0.047504738, 0.0249246377, 0.0110318735, 0.010334095, -0.0127553856, -0.0152255204, 0.0122041404, -0.00970609486, 0.0017863122, -0.012385563, -0.017709611, -0.0107039176, 0.016286144, 0.00547755882, -0.0290554836, -0.0145556536, -0.0300881956, 0.0458579846, 0.00865942705, 0.014625431, -0.0340794884, 0.0126786297, -0.0176677443, 0.00826867204, 0.0268086381, -0.0108574284, -0.00230615702, -0.00799653772, 0.00701267086, -0.0458579846, 0.00312081305, 0.0311767291, -0.0193982348, -0.0110109402, -0.00658702618, 0.00350459106, -0.0179887228, -0.0173886325, -0.00261492375, -0.00458440278, 0.00275622378, 0.00981076155, 9.87792228e-05, -0.0090850722, 0.000963806116, -0.0264876597, -5.713059e-05, -0.0162721872, 0.00428086938, 0.00233755703, 0.0125948964, 0.0477838516, -0.0280227717, -0.0246594809, 0.0124204522, 0.064028129, -0.0119250296, 0.00125948968, 0.0154906763, 0.0432343371, 0.0329909548, 0.0390755795, -0.0173607208, -0.00211252342, -0.00269691274, -0.0157976989, -0.0437925607, 0.000846928277, 0.00346621312, 0.0185050778, -0.00227824575, 0.0157976989, -0.0187423229, -0.0141579192, -0.0161884539, -0.0122390296, -0.00425295811, -0.00951769482, -0.0247013476, -0.0100410283, 0.0555710569, -0.0335212648, 0.00452160276, 0.00547058089, -0.0203890782, -0.0188679229, 0.0193982348, -0.00870827213, 0.0211008135, 0.00731271552, 0.0296695288, -0.0143881869, 0.00476233615, -0.00872222707, -0.029139217, 0.0347493552, 0.00212299, -0.0420899801, 0.040164113, -0.0419783369, -0.0256503262, -0.0077244048, 0.0102294283, -0.00120802852, -0.00603927, -0.0146672977, 0.0164815206, -0.00364589109, -0.0201937016, 0.0275622383, -0.0491794087, 0.0113528511, -0.00520542543, -0.0324885547, -0.0387964696, 0.00974796154, 0.0143323643, -0.0101875616, -0.00229569036, -0.0028678684, 0.033381708, 0.0104108509, 0.030032374, 0.030032374, 0.0480629615, 0.00259050145, -0.0288601071, 0.00580900349, -0.00967120565, -0.036814779, 0.0164815206, -0.0492073186, -0.00399129139, -0.0490956753, 0.0153790312, 0.0410293564, 0.0131182298, -0.0187004562, 0.00658004824, 0.00646840408, -0.0274785049, 0.0290554836, 0.027729705, 0.0580551475, -0.00258526811, -0.0186027661, -0.0079058269, -0.00712780422, 0.00288531277, 0.0211845469, -0.00426691351, -0.0153650763, 0.00608811481, -0.0105294734, -0.00361100212, -0.00476233615, 0.0285391286, -0.0073685376, -0.0422574468, 0.00242826808, -0.00537289213, 0.0339120217, 0.00284867943, -0.0154348537, -0.0120785404, 0.00445182482, -0.0187562779, -0.00521938084, -0.00801747106, 0.00110074505, -0.00556478091, 0.0194819681, -0.0214636568, -0.00706151547, 0.0136345858, -0.00208112341, 0.00175229553, -0.0516914092, -0.0171793, 0.0177654326, 0.0756391585, 0.0329909548, 0.0315674841, 0.00714524882, 0.00703709293, -0.0157837421, -0.00136938971, 0.0137392525, -0.010334095, -0.00333886873, 0.0281902384, 0.00254514604, -0.0101666283, 0.0304510407, -0.0100061391, -0.00430878, 0.0176119208, 0.0163698774, -0.00664284825, -0.0395779796, -0.00168775104, -0.00597298145, 0.0158674754, -0.0423411801, -0.0435692705, 0.0267807264, -0.00692893751, 0.00606369274, 0.00727782678, -0.0139067192, 0.00690451544, -0.0088896947, 0.0146114752, -0.0320698842, -0.0172211658, 0.0133833857, -0.0361449122, 0.00276145712, -0.00293241278, -0.0303673074, -0.0082477387, -0.0120855188, -0.033632908, -0.0101526724, -0.0133484965, 0.0127065405, -0.00703709293, 0.0315395743, 0.00909205, 0.0023323237, 0.000659400423, 0.0370101556, 0.0289159287, -0.00590669224, -0.0249246377, -0.00543918088, 0.0361728221, -0.0360332653, 0.00670913747, 0.00305801304, -0.00811516, -0.0165792108, 0.0235569924, -0.0150999203, -0.0129926298, -0.0138299642, 0.00542522548, -0.0112481844, 0.00856173877, -0.0492073186, -0.00847102702, 0.0075569381, 0.00942698307, -0.0131949857, -0.00968516152, 0.000924556109, -0.00425295811, 0.0128670298, 0.0224405471, -0.000349543261, -0.0167048108, -0.0173607208, 0.00921067223, -0.00359704671, -0.0407781564, -0.014248631, -0.0317349508, 0.00442391355, 0.0208775233, 0.0272970833, 0.0159930754, 0.0066986708, -0.0298369955, 0.00830356, 0.0105922734, -0.0342190415, 0.0099293841, 0.012901919, -0.0027073794, 0.0173188541, -0.00565200346, 0.00593809225, 0.0133066298, 0.0373171791, -0.0401082896, 0.0218823235, 0.0160070322, -0.00514262542, -0.0123506738, 0.0169978775, 0.0298369955, -0.00863849372, 0.0106411176, -0.0256363712, -0.0169001874, -0.0406665131, -0.0186865, -0.00625209277, 0.0318465978, 0.0122529855, 0.0068800929, -0.015016187, 0.0159093421, -0.0372055322, 0.0150859645, -0.0160349421, -0.0239477474, 0.0218823235, 0.0341074, 0.0284972619, -0.00264806836, -0.00182469, 0.00242129038, 0.00816400535, 0.0246036593, 0.0140462751, -0.0187144112, -0.0403315797, 0.0239477474, 0.0340515748, -0.0187283661, -0.0371776223, 0.00979680568, -0.00974796154, 0.00579853682, -0.0275064167, -0.011994807, 0.0181980561, 0.00773138227, -0.0082128495, 0.0169001874, 0.0367031321, 0.019119123, 0.00127780635, 0.00279634609, 0.00659400411, -0.0359216221, -0.00470302487, 0.0138788084, -0.0177375227, -0.008408227, 0.0168722775, 0.0273808166, -0.0237105023, 0.0219241902, -0.0236407258, 0.0175421443, -0.00148365088, 0.0118203629, -0.0118901404, 0.0636373684, -0.00644398155, 0.0077244048, -0.00119843404, 0.0260131713, 0.0384615324, 0.0189237446, 0.0130833415, 0.0164396539, 0.0102922283, 0.0178770777, -0.0018665567, -0.00298300176, 0.0141997859, -0.0167048108, 0.0131391631, 0.0259573497, -0.0316233076, -0.0135787642, 0.0485095419, 0.0320140645, 0.0106132068, -0.0008408227, 0.0521938093, 0.0318465978, -0.012511163, 0.0420620702, -0.00608462607, 0.000936767203, 0.0331863314, 0.0236686356, -0.0106411176, -0.0186306778, -0.00459835818, 0.00141997868, 0.0196773447, 0.0217846353, 0.00117488403, 0.0120296963, 0.00926649477, 0.0115063628, -0.00118622289, -0.0218683686, -0.0185888112, -0.00814307202, 0.0324327312, 0.0225242805, 0.00483909203, 0.00701267086, 0.0227754805, 0.050574962, 0.00820587203, -0.0205007233, 0.00732667092, 0.0206402782, -0.0132368524, -0.0289717503, 0.00490538077, -0.00488444744, -0.0213380568, 0.0254270379, -0.00251723477, 0.011290051, 0.00944791641, 0.039131403, -0.00768253813, -0.0299207289, 0.0353354886, 0.0107318284, -0.00353075773, 0.0391593128, 0.019119123, -0.0152952978, 0.00146620639, -0.00241082371, -0.0290275738, 0.0144579643, 0.0159093421, 0.0315953977, -0.0135648083, -0.0359216221, -0.00963631645, -0.0201378781, 0.0339399315, -0.00890365, -0.00709640421, 0.00833844952, 0.00833844952, 0.0105643617, 0.0381824225, -0.00853382703, -0.0163280107, 0.0339120217, 0.0101108057, 0.00681031542, 0.0143881869, -0.0202355683, -0.0173328109, -0.0354750454, 0.000786308781, 0.0195796564, -0.0234174356, -0.030423129, 0.0160488989, 0.00110161735, 0.0190493446, -0.0145137869, 0.0255247261, -0.0130624082, 0.030283574, -0.0462487377, -0.000876147766, -0.021952102, 3.93863083e-05, -0.00095421169, -0.0067265816, 0.00911298301, 0.00855476, 0.0419783369, -0.0138299642, -0.00104841171, 0.0141160525, 0.0201239232, -0.0485653616, 0.00137636752, 0.0238081925, -0.0247990377, -0.00585087, -0.0139695192, 0.030423129, -0.00990147237, -0.0125320964, 0.0263620596, -0.0101038283, -0.000105429928, 0.0151557429, -0.00909902807, 0.0174165443, 0.0173049, 0.00513564749, 0.0210589468, 0.0158953872, 0.0133415191, 0.0296416171, 0.0307580624, 0.014374231, 0.00917578302, 0.0135089858, 0.0178212561, -0.0037017134, 0.024505971, 0.0322373509, -0.00439251354, -0.0245338809, 0.0203890782, 0.0122041404, -0.00718711549, -0.00257829041, -0.00565200346, 0.00488793617, 0.0229569022, -0.00141125638, -0.0144440085, -0.0257201046, 0.0113249402, -0.0063602482, -0.0151557429, -0.0233197473, 0.00345051312, -0.0268505048, -0.0156023204, -0.00837333873, -0.0130484523, 0.0228871256, -0.018225966, 0.0134322299, 0.013983475, -0.0199704114, -0.013857875, 0.0367031321, -0.0143463202, -0.0269621499, 0.033632908, 0.00676844874, 0.00741040427, 0.0358658, 0.00414829142, 0.0136624975, 0.0122529855, -0.0547058098, 0.00736156, -0.00344353542, -0.00792676, 0.0352238417, 0.0326839313, -0.0243105926, 0.00881991629, 0.0180585, -0.00644747075, -0.0179887228, 0.0177375227, 0.0225103255, 0.0149324536, -0.0199843682, 0.0204588566, 0.0427877605, 0.0050170254, 0.0114505403, -0.0107457843, 0.0251897927, 0.0231522806, -0.0170257874, 0.0146533418, -0.0160209872, 0.0358378887, 0.0146393869, -0.0126856072, -0.0368706, 0.0121832071, 0.00471698074, -0.00550547, 0.00667773746, -0.00210205675, -0.0120785404, -0.0320419744, -0.0451322943, 0.00964329485, 0.0020096011, 0.0232918356, 0.0182538778, 0.00166071206, -0.00586133683, -0.00909205, -0.0418108702, -0.000372439099, -0.00621371483, -0.0303673074, 0.024771126, -0.0184911229, -0.0503516756, -0.0309813526, -0.0107876509, 0.0447136275, -0.0349447317, -0.00122460071, 0.0094200056, -0.00789187104, -0.00931533892, -0.0194540564, -0.0185329895, -0.0490956753, -0.0239756592, 0.036200732, -0.0138160083, -0.00444484735, 0.00988751743, 0.0242687259, 0.0138788084, -0.0288321953, 0.0236407258, -0.0230825022, 0.0120087629, 0.00970609486, -0.00887573883, 0.0425923802, -0.00433669146, -0.00375055778, 0.0174863208, 0.0118273403, 0.00248757936, -0.0208635684, 0.013090319, -0.027855305, -0.0128181856, 0.0073685376, 4.05038445e-05, -0.00349586876, -0.0124274297, -0.0269900616, 0.0167745873, 0.0197192114, 0.00175229553, -0.0122808963, -0.0377079323, -0.0186446328, -0.00631489279, -0.0012577452, 0.0162024107, 0.0171932541, 0.0440437607, -0.031707041, -0.0327955745, -0.0191470329, 0.0236686356, 0.0135020083, -0.0531986095, 0.0157279205, 0.0291950405, -0.00356564648, -0.0130833415, -0.000170192463, -0.00467511406, -0.00832449365, -0.0290833954, 0.00785000436, -0.0296695288, 0.0259015262, 0.00579504808, 0.00887573883, 0.0408898033, 0.00702662626, 0.0215892568, -0.0139764976, -0.00956653897, 0.0201797448, -0.0195657015, -0.00598693686, -0.00561711472, -0.0229289923, -0.00868036, 0.015141787, 0.0136136524, -0.0095874723, -0.00622069277, 0.0202913899, -0.0243943259, -0.0220358353, -0.00106323953, -0.000936767203, 0.0468069613, 0.0203890782, -0.0224963687, 0.0284833051, -0.00123157853, -0.0248269476, 0.0262225047, -0.0307859741, -0.00978285074, -0.0203332566, -0.00076450326, -0.00673704827, 0.0414201133, -0.00678589288, -0.000406673847, -0.0355587788, -0.0090850722, 0.0254968163, 0.0277576167, -0.0109272068, 0.0339399315, -0.017709611, 0.0174165443, 0.0232081022, 0.024757171, -2.25551344e-06, -0.0321257077, -0.0377637558, -0.00899436139, -0.0125320964, 0.00246664602, 0.00104230619, 0.0216032136, 0.00257131271, 0.00126123405, 0.00731969345, 0.00560664805, 0.0074034268, -0.0456905179, 0.00198343443, -0.00461929152, 0.0090850722, 0.0337166414, 0.012573963, 0.00442042481, 0.014625431, 0.0142276976, 0.00412735809, 0.0416434035, -0.0154767204, 0.0242687259, -0.0473093614, 0.00110772287, 0.0173467658, 0.00444833608, -0.0134182749, 0.00232185703, 0.00192586787, -0.00259747938, -0.0115063628, 0.000785872689, 0.0138160083, -0.0106690284, 0.00679984875, -0.0123018296, -0.0320977978, 0.00213171239, -0.0235569924, 0.0326839313, 0.0173467658, 0.0149882752, 0.0137811191, 0.0131112523, 0.00160314539, -0.0202634782, -0.0102782724, -0.0067126262, -0.0255247261, 0.0118203629, -0.00741738221, 0.0056868922, -0.0164954774, 0.00232185703, -0.010585295, 0.016816454, -0.0341632217, 0.0181701444, 0.0420899801, 0.014625431, -0.0107039176, 0.00151941204, -0.00330572412, 0.0095525831, 0.0200262349, -0.0145416977, 0.00120541186, -0.0192726329, 0.0216729902, -0.0144719202, 0.016286144, 0.0240175258, 0.00592064811, 0.0182957444, -0.0142835202, -0.00382033573, -0.00626255944, 0.00764764892, -0.00453904737, 0.0327955745, 0.0165094323, -0.00166071206, 0.000997822848, -0.00224335701, -0.00769649353, 0.012964719, -0.0144021418, -0.00918276142, -0.0304789525, 0.00202181237, 0.00556129217, 0.0355029553, -0.018225966, -0.0135368975, -0.0105504068, -0.00731969345, 0.052891586, -0.000756217109, 0.00142259535, -0.0242547709, -0.0137532083, -0.00904320553, 0.0283158384, 0.00893156137, 0.020528635, -0.00864547212, 0.00289229071, 0.0111923628, 0.0192168113, 0.0121552963, -0.00530660339, -0.00359704671, 0.0116040511, 0.0111714285, 0.00526473671, -0.0172909442, -0.00118186185, 0.0290833954, -0.0066951816, 0.00877805, 0.0160209872, 0.00850591622, -0.0275343284, -0.0211287234, -0.0349726416, 0.000600525353, 0.0380149558, 0.0156720988, 0.016286144, -0.0155883646, -0.0178631227, 0.0161884539, -0.0171234775, -0.0128251631, -0.0364240222, -0.0118482737, -0.011555207, -0.0107876509, 0.00635327026, -0.00365635776, -0.00483909203, -0.00279285712, -0.0341353081, -0.00346272439, 0.0223847255, 0.0379033126, -0.0366473123, 0.00362495775, -0.0429273136, 0.0105643617, 0.00554733677, 0.0117296511, -0.00227999035, -0.0276320167, 0.0268365499, -0.0297532622, 0.000538161432, -0.0101945391, -0.00712431548, 0.000611864263, -0.016690854, 0.00355343544, -0.00793373771, 0.00676495954, -0.0110876951, 0.0298090838, 0.0281065051, 0.0289438404, 0.0065626041, 0.00570782553, -0.0158535205, 0.000180550109, -0.00921067223, 0.0211845469, 0.00472046947, -0.0199285448, -0.0324048214, -0.0144021418, -0.0199983232, 0.0139625417, -0.0170537, 0.00839427207, -0.0179329, -0.0135299191, 0.00467162486, 0.00838729367, -0.0171793, -0.00245269039, -0.026571393, 0.00153511204, -0.0164675657, -0.00880596, 0.0312325526, -0.010271295, -5.05616626e-05, -0.0160488989, 0.0129298298, 0.00188225671, -0.00116092851, 0.00273529044, 0.00114871736, -0.016551299, -0.00145312306, 0.00932929479, -0.0259992164, 0.0524171, 0.0189377, 0.0027004017, -0.0046960474, 0.00906413887, 0.00655562617, -0.00564153679, -0.00218927907, 0.0112412069, -0.00831053872, 0.0201937016, -0.0168443657, 0.017960811, -0.00910600554, -0.00191365671, -0.0147649869, -0.0127553856, -0.0107946284, 0.0262922831, 0.0159093421, -0.00368078, -0.027073795, 0.0114016961, -0.00895947218, 0.00845707208, -0.0016816454, 0.0143881869, -0.0121343629, 0.0295020621, -0.02759015, 0.029390417, 0.00481466949, 0.00575667, -0.025036281, -0.00414131349, 0.0358937122, 0.0389639363, 0.0058718035, -0.00106323953, 0.00960142817, 0.0171095207, -0.019635478, 0.0017618899, 0.00279460172, -0.0162303206, 0.0122320522, -0.0267946832, 0.0109620951, 0.0124692963, -0.0207100566, -0.000139664669, -0.00258701271, 0.0274785049, 0.000816836604, -0.0343027748, 0.020277435, -0.0207519233, 0.00643002614, -0.035419222, 0.0276320167, 0.00553687, 0.000620150357, -0.00224510138, 0.0283577051, -0.0144440085, 0.0377916656, 0.000190798732, 0.0129228523, 0.00872920547, 0.0434018038, -0.0178910326, -0.0126786297, 0.00379940239, -0.0147091644, 0.0211705901, -0.0167606324, -0.00181596773, -0.00588227, -0.00713129295, 0.0073685376, -0.0215753019, -0.0205425899, 0.0236546807, 0.0294183288, 0.0138857858, 0.00815702695, 0.0229987688, 0.0162721872, -0.0132438298, -0.00433669146, 0.0368985124, -0.00810120534, 0.0136206308, 0.0199983232, 0.0125948964, -0.00325164641, 0.0182957444, -0.0288601071, 0.000625819841, 0.0136276083, 0.00820587203, 0.0119878296, -0.0208356567, 0.00038574051, 0.00290450174, 0.00349935773, -0.0155185871, -0.00352726877, -0.0293066837, -0.0208635684, -0.000641519844, -0.00885480549, 0.00544267, -0.0193005446, 0.0106411176, 0.00928045, 0.0085477829, -0.045299761, -0.00107545068, -0.0145277418, 0.0237244591, 0.0195377897, 0.0207658783, 0.0428156704, 0.0200262349, 0.0130484523, 0.00430180272, 0.0148208085, -0.00913391635, -0.011038851, 0.0202634782, 0.00335980207, 0.0131880082, -0.00828262698, 0.0213938802, 0.000206171651, -8.92938042e-05, 0.0157697871, -0.0178073, -0.0154488096, 0.028748462, 0.0107527617, 0.0117296511, 0.0186167229, -0.0282181501, 0.0135299191, 0.000286961294, -0.0171095207, 0.00120453956, -0.0158953872, -0.026180638, 0.000927172776, 0.0142765418, -0.0232918356, 0.014185831, -0.0218404569, -0.00523333671, -0.00503446953, 0.00732667092, -0.0202216115, 0.000400132179, -0.0103131616, 0.0189377, -0.0180166326, -0.0198866781, 0.0365077555, -0.024771126, 0.0211985018, 0.00166768988, -0.0103061842, -0.0149045419, -0.016565254, -0.0006288726, -0.0101526724, 0.0114226295, -0.0154208979, 0.0135229416, -0.00505889207, 0.0208496135, -0.00789884944, 0.0113040069, 0.0227615256, -0.00884782709, -0.0172769874, 0.0160488989, 0.00632535946, 0.0234034806, 0.00348191313, -0.0191470329, -0.00824076, -0.0308138859, -0.0067126262, 0.0113388961, 0.0205565449, -0.0130624082, 0.0102992058, 0.0125948964, 0.0313441977, -0.0101247616, 0.0180305894, -0.00634978153, -0.016676899, -0.0152952978, -0.0160768088, 0.0239198375, 0.0075569381, -0.00515658082, 0.0136555191, 0.000766247686, -0.0144719202, -0.0332700647, -0.00704058213, -0.00235151243, -0.0487886518, 0.0116249844, 0.00457742484, -0.0057182922, -0.012448363, -0.0356146, 0.00494375871, -0.0117924511, 0.000846928277, -0.0149882752, -0.0141648976, -0.00341039104, -0.0161326323, 0.00861058291, -0.0073685376, -0.00952467229, -0.00431226939, 0.0157000087, -0.0155883646, 0.00727782678, -0.00978982821, 0.0193284564, 0.00558222551, 0.00357960211, -0.0110737402, -0.0121692521, -0.00677193748, -0.00494026951, 0.00328304642, -0.00295683509, 0.0399408229, -0.00466813613, 0.0139136976, 0.0323489979, 0.0130484523, -0.0144579643, 0.0058857589, -0.00608113687, -0.00603578147, 0.018993523, 0.0305905957, -0.00204972341, -0.000985611696, -0.0365914889, -0.0102782724, -0.0107806735, 0.00454951404, 0.0127135189, -0.0132926749, 0.0204169899, -0.0167885441, -0.00540080341, 0.0160488989, 0.0234593023, 0.0326560214, -0.0130205415, -0.0022032347, 0.00121675071, -0.0257201046, 0.000294811296, -0.00521240337, -0.0231941473, 0.00743133761, 0.027199395, 0.00120802852, 0.00378893572, 0.0107457843, 0.0149184978, 0.0213799234, 0.0151557429, 0.0164117441, 0.0128600523, 0.00718013756, 0.0190633, -0.0338282883, 0.00561711472, -0.0103061842, 0.0100689391, -0.00624860357, 0.00996427238, 0.00667075953, 0.00952467229, 0.0276459716, 0.0213101469, 0.00512518082, -0.0442949608, -0.00886876136, -0.0099224057, -0.00499958079, 0.0252316594, -0.026306238, -0.00376800238, 0.022970859, 0.0163419656, 0.0126646738, 0.0581667908, -0.00212299, -0.0113319177, 0.0146812536, -0.0215055235, -0.0217846353, -0.0177933443, -0.0058578481, -0.035670422, 0.0201657899, 0.0114296069, -0.0153371645, -0.00179677887, -0.00474838074, -0.0173607208, 0.00464720279, -0.0227615256, 0.00221195677, -0.0169978775, -0.0218683686, 0.0105783176, -0.00773138227, 0.0250781476, -0.0374567322, 0.020528635, 0.013983475, 0.00707895961, -0.00138508971, 0.00330921309, 0.0169699658, 0.00597298145, 0.00451811403, 0.00108678953, -0.00421109144, -0.00240733474, -0.00890365, 0.00617882609, 0.00337724644, -0.00598693686, -0.00107545068, 0.0293066837, 0.00663587078, 0.00868733879, 0.00245269039, 0.00372264674, 0.00259573478, -0.00801049359, 0.000646317, 0.00514262542, 0.00397035806, 0.0192028563, -0.0115691628, 0.00443786941, 0.015267387, -0.0226359256, 0.0015857009, -0.0111993402, 0.0183376111, 0.00306150177, -0.00988751743, 0.00160576205, -0.00863849372, -0.00821982697, 0.00827564951, 0.00210729, 0.0116528962, 0.0247850809, 0.0176537875, 0.0118552512, -0.0119599188, -0.0035080798, 0.00947582815, 0.00118447852, 0.0123088071, 0.0136136524, -0.00553687, 0.00440995814, 0.0237802807, 0.0125809405, -0.0226777922, 0.0174305, -0.0158674754, -0.0025311904, -0.0110528069, 0.00678938208, -0.00406106934, -0.0204867683, 0.0105364509, 0.00962933898, -0.00877107214, -0.00698475959, -0.000473616965, 0.00784302689, -0.0025381681, -0.00709640421, -0.0027073794, 0.0130484523, 0.0203751232, -0.00130920636, -0.0305347741, -0.0104666734, -0.00169647322, 0.0117017403, 0.00879898295, 0.011680807, 0.00521938084, -0.0315674841, 0.010648095, -0.0195517447, -0.00489142537, -0.00121587852, 0.0182678327, -0.0224265922, 0.0137601858, 0.00791280437, -0.00413433602, -0.00879200548, -0.00483560283, -0.0324327312, 0.0185469445, -0.00788489357, 0.000631489267, 0.0132996524, -0.0240175258, -0.0088896947, -0.0222451687, -0.00278239045, -0.0078779161, 0.0173049, 0.00809422694, -0.0150859645, -0.0119180512, -0.00477280281, -0.00161186769, -0.00635327026, -0.0171653442, 0.0216729902, 0.00131095084, 0.00053031143, -0.000422155805, 0.028999662, -0.00133537303, 0.0205146782, -0.000619278173, 0.0110528069, 0.00219625677, 0.00604973687, 0.00575318141, 0.0161186755, -0.00704407087, 0.00945489481, -0.0106620509, -0.013669475, 0.00968516152, -0.0067300708, 0.0147231203, 0.00709989294, 0.000295029342, 0.0433738939, 0.0157000087, -0.00174270105, -0.00473791407, 0.00261841272, 0.0172211658, 0.000793722691, 0.0040366468, 0.00245966809, 0.00144701754, -0.000699522672, 0.00369124673, 0.0232360139, -0.00460184738, -0.00603229273, 0.0035482021, -0.00669169286, -0.0271156617, 0.0203611683, -0.0101177841, -0.0058543589, -0.0106341401, 0.00794071611, -0.00282425736, 0.00911298301, -0.0153371645, 0.00312255742, 0.00278239045, -0.00151330652, -0.00744529348, -0.0189656112, -0.0211287234, 0.0115482295, -0.0126995631, -0.013215919, 0.00759880478, -0.0366752222, 0.00774533814, 0.0134461857, 0.0150440978, -0.0101666283, 0.0360890888, 0.0134112965, -0.00430529146, 0.00607415941, -0.00604973687, 0.019119123, 0.00229743472, -0.0106969401, 0.0159930754, 0.00354645774, 0.00718013756, -0.0140602309, -0.0241291709, -0.00923160557, -0.00543569215, 0.0293345954, -0.00678240415, -0.0115203178, -0.0123646297, -0.00214915676, -0.00684171543, 0.00242129038, -0.0158116538, -0.0162024107, -0.0026829571, 0.0101945391, -0.0267528165, -0.00946885, -0.00525427, 0.00283472403, -0.0216032136, -0.00766858226, -0.0199425016, 0.0241849925, -0.0150999203, 0.0141509417, -0.00771742687, -0.0117017403, 0.0317349508, -0.00412386935, 0.00649282616, 0.0189097896, -0.00341911311, -0.0158535205, -0.00474489154, -0.00276669045, -0.00218230137, 0.00623115944, -0.0130414749, -0.0169281, 0.0206821449, 0.0108155617, -0.0203472115, -0.0519147, 0.0145416977, 0.0161047205, -0.0128809856, 0.0118133845, 0.0198029447, 0.0172211658, 0.0312046409, -0.000886614434, -0.012511163, -0.00157523423, -0.00887573883, -0.00633233692, -0.0200681016, -0.0136904083, 0.00213520136, -0.0295857955, 0.00798956, -0.0158535205, 0.000883997767, -0.0189516563, -0.000172700107, -0.0036842688, -0.00275099045, -0.00718711549, 0.00272307941, 0.0147928977, -0.00943396147, 0.015267387, -0.00435064686, -0.000556042, 0.0411689132, -0.00192063453, -0.0281065051, -0.0206821449, 0.0100898724, -0.00307196844, -0.00911298301, -0.00358658, -0.022328902, -0.0126646738, -0.000651114271, 0.00406804681, -0.00951769482, 0.000777150446, -0.0264737047, 0.0119250296, -0.0167048108, 0.0235849023, -0.00822680537, 0.0388243794, -0.011101651, 0.0103550283, -0.00447624736, -0.00462975819, -0.0128600523, -0.00414829142, 0.0114924069, -0.0178073, -0.00206716801, -0.00867338292, -0.0200681016, 0.0145277418, -0.0140811643, -0.00593809225, -1.05007439e-05, 0.0227196589, -0.0101805842, 0.00520193623, -0.00399826886, -0.0201797448, 0.00891062804, 0.0329072215, -0.0138020525, -0.00132403418, -0.0131740524, -0.00819889363, 0.00996427238, 0.0112342294, -0.0211008135, 0.0215194803, 0.0175142325, 0.0115272962, 0.0208077449, -0.016942054, 0.000346708548, -0.00394244678, 0.0046925582, 0.00271959044, -0.00324815745, -0.00395291345, 0.0135368975, -0.0046786028, 0.0079058269, -0.00815004949, 0.00410293601, 0.00144876202, -0.0048460695, -0.0124623189, -0.0121483188, 0.00556478091, -0.0127902748, -0.00385522447, 0.00910600554, -0.00724293757, 0.00322896871, -0.0171793, -0.00997822825, 0.0246176142, -0.0115272962, -0.00395640219, 0.00747320428, 0.0183376111, 0.00347842439, 0.0146952085, 0.0163977873, -0.0249944143, -0.00156476756, -0.0157837421, 0.0172769874, -0.0167606324, 0.00661493745, 0.00927347224, 0.0134740965, -0.00164239539, 0.0186167229, 0.00714524882, -0.00566944806, 0.00339120207, -0.012511163, 0.00693242624, 0.00581598142, -0.0318186842, -0.00441693608, -0.00326560205, -0.00431226939, 0.0181561895, 0.00697429292, -0.00180026772, 0.0134671191, -0.00146271754, -0.000468819722, -0.00719409343, -0.0131042749, -0.0230825022, 0.00564851472, -0.016300099, 0.0109481402, -0.0205984116, -0.00298823509, -0.0190493446, 0.0183655228, -0.0283437502, 0.00240035704, 0.00325513538, 0.000308766845, 0.00627651485, -0.0115900962, -0.00140515086, -0.00659749284, -0.000264719594, -0.00153075089, -0.0133554749, -0.0196075682, 0.00380638, 0.00129176187, 0.0108923176, -0.00904320553, 0.00837333873, 0.0128181856, 0.00645095948, 0.0130763631, -0.0118831629, 0.0035412244, -0.0169281, -0.0114924069, -0.00778720481, -0.0159930754, -0.00544615882, -0.000686003186, -0.0102433842, 0.0268505048, -0.00548453676, 0.0174584109, -0.00995729491, 0.00745924888, 0.0224126354, 0.0131880082, -0.00240907911, -0.033605, -0.00427040271, -0.00270563504, 0.0405269563, 0.0106550734, -0.00489840284, -0.00581947, 0.0119110737, -0.0121832071, 0.00167641207, -0.0165094323, 0.011038851, 0.00535544753, -0.0103899175, -0.00376451341, -0.00174531771, 0.0178073, -0.0249106809, -0.0171234775, -0.00442391355, -0.0102364058, 0.0130484523, 0.00878502708, 0.00789187104, -0.00491235871, -0.000913217198, -0.00651027076, -0.00708593754, 0.000352378, 0.00621720357, 0.0336608216, -8.86941489e-05, 0.0241570808, -0.0109620951, -0.0157976989, 0.0105294734, 0.00855476, 0.00290624611, -0.028999662, 0.00459138071, -0.0191470329, 0.0129228523, 0.00898738299, -0.0105015617, -0.0159232989, -0.0357820652, -0.00201657903, -0.00131182303, 0.02079379, -0.0023462791, 0.00509726955, 0.00661493745, -0.00930836145, 0.026041083, 0.0117366295, -0.0170816109, -0.0125320964, -0.0204449017, 0.0231662355, -0.0210729018, 0.00120977301, 0.000506325334, 0.0121901855, -0.00596949225, -0.0185190327, -0.0307301525, -0.0261666831, 0.019509878, -0.00935022812, 4.54918663e-05, 0.0101387175, 0.0141718751, 0.0332142413, 0.0119738737, 0.00749413762, -0.00780813815, -0.00533451419, -0.0102782724, -0.014625431, -0.0341632217, -1.09641123e-05, -0.0277715717, -0.0119459629, -0.00140166201, -0.00969911739, -0.00380289112, 1.2401917e-05, -0.00571480347, 0.00978285074, -0.00778720481, -0.0129786748, -0.00731271552, 0.0277715717, -0.00623464817, 0.0033650354, 0.00553687, -0.00070562819, -0.00773836, 0.0159093421, 0.00262190169, 0.00812911615, 0.0136415642, 0.00517402543, 0.0353634, -0.0181422327, 0.0148208085, 0.0123646297, -0.013983475, 0.0127065405, -0.00204797904, -0.0214776136, -0.00736156, -0.0108016068, 0.0218544137, 0.00893156137, 0.00483211409, 0.0151557429, -0.00775231561, 0.0110248951, 0.00322896871, 0.0139276525, -0.0288042836, 0.00628698152, 0.0090571614, -0.010648095, 0.00961538311, 0.000196577195, 0.0011618007, -0.00875711627, -0.0277715717, 0.0322373509, 0.00754298223, 0.0110248951, -0.0210031234, 0.0100200949, -0.00985960569, -0.0122460071, -0.0268505048, 0.0230545923, -0.0125530297, 0.0119878296, -0.00130658969, 0.0172351208, 0.0159232989, 0.0116319628, 0.00870827213, 0.0160070322, -0.00901529472, -0.0245757475, -0.010396895, 0.00824076, -0.0135927191, -0.0235849023, -0.00744529348, 0.00832449365, -0.00455649151, -0.0111156069, 0.00219276804, 0.0105643617, 0.00895947218, 0.0280925501, 0.0020096011, -0.00245792372, -0.00453206943, 0.0106829843, 0.0326839313, 0.00781511609, -0.0074034268, 0.00036742384, -0.0303393956, -0.0101038283, 0.00593809225, 0.00854080543, -0.00710687088, -0.0028608907, -0.0120994737, -0.00709291548, 0.00102050067, 0.0118552512, 0.0153790312, 0.00547755882, 0.0144300535, -0.0152255204, 0.00449718069, -0.00668471493, 0.038238246, -0.0150440978, 0.00196599, -0.0055194255, -0.00601135939, 0.0232499689, -0.00849893875, -0.00339992438, 0.00727084884, 0.0161047205, -0.0254549496, -0.00310511305, -0.00412038, -0.0203193016, -0.00478326948, 0.0249944143, -0.0217567235, -0.00264283502, -0.00844311621, -0.0215892568, 0.00918973889, 0.0100270724, -0.011743607, -0.000570869772, -0.0299486406, -0.0185888112, 0.00299521303, -0.0235430356, 0.0305626858, -0.0231383257, 0.0154069429, 0.0106062284, 0.0152952978, 0.00351505773, 0.010585295, -0.00300742406, 0.0150440978, 0.00722200423, -0.0132368524, 0.013920675, -0.00541824754, 0.0102573391, -0.0167466775, 0.0121273855, 0.00587529223, 0.0319303311, -0.0175700542, -0.0101875616, 0.0163559206, -0.00653469283, -0.00111993402, 0.0157139655, 0.00849893875, 0.00278413505, -0.000169538296, -0.0144579643, 0.00457393611, -0.00987356156, -0.00143567869, -0.00712431548, 0.0100061391, 0.0126018738, -0.0208077449, -0.0147370752, -0.00115133403, 0.00217357907, 0.00773138227, -0.00901529472, -0.00108678953, -0.00923160557, 0.0380149558, 0.0045425361, 0.00165198988, 0.0151696978, -0.00237419037, -0.0326839313, -0.00167990103, 0.0353913084, -0.00886876136, -0.0237802807, -0.00248583476, 0.0318745077, 0.0145696085, -0.00251025707, 0.0031714018, 0.000176734131, 0.0183097, 0.00599042606, 0.00527520338, -0.00174095656, 0.0202216115, 0.00656958157, -0.0186027661, 0.0089176055, -0.00458440278, 0.0114714736, -0.017709611, -0.0242268592, 0.000337550213, 0.0139416084, 0.0232639257, -0.0113319177, 0.0128670298, 0.00884782709, -0.00231487909, 0.00133886188, -0.0133694299, -0.00279460172, -0.00503446953, 0.0233895257, -0.00553687, 0.008408227, -0.0203193016, 0.0180445444, 0.0188260563, 0.00529264752, 0.00604624813, 0.00103271171, -0.0150999203, 0.00165460655, -0.00785698276, -0.0174863208, -0.00278587942, 0.028999662, -0.00615091482, -0.00359006878, -2.0061123e-05, -0.00522635877, 0.0145416977, 0.0104387617, 0.0241291709, -0.00777324894, -0.0107736951, -0.0149045419, -0.000569997588, -0.0159512088, -0.00678240415, 0.0143044535, 0.00579853682, -0.0080732936, -0.00893853884, -0.0042076027, -0.0117645403, 0.00600438146, 0.00664982619, 0.000819889363, -0.00640909281, -0.00582295889, 0.00871525, -0.00226952368, 0.0211705901, 0.0176119208, -0.0287205502, -0.00657655951, -0.00229045702, 0.00227650139, -0.029390417, -0.0125460522, -0.00306499074, -0.0187283661, 0.00948280562, 0.00389011344, 0.0113807628, -0.00360751338, -0.0129437856, 0.00291322405, 0.0212124567, 0.00526124751, -0.00471349154, -0.00683473749, 0.0226219688, 0.0135159642, -0.0271435715, -0.00727782678, -0.00824076, -0.0150440978, 0.000976017269, -0.00358658, 0.0191749446, 0.0100619616, 0.00642653741, -0.0130484523, -0.00725689344, 0.0175142325, 0.0160907656, -0.00890365, -0.00204797904, -0.0237105023, 0.00345225772, -0.0119599188, -0.00571131473, -0.00861058291, 0.0225661471, -0.00344876875, 0.00228871242, 0.0159651656, -0.0287205502, 0.0136624975, 0.00490886951, 0.0143463202, 0.0160349421, 0.0180305894, -0.0255386829, 8.30792196e-05, 0.000999567215, -0.000371784932, -0.0281623285, -0.0026672571, 0.010208495, -0.00865245, 0.0247990377, 0.0105573842, 0.00347319106, -0.0117017403, 0.0209891684, -0.00566944806, -0.0281623285, -0.0194121897, 0.0158256087, 0.0118273403, -0.0207100566, 0.00319059077, -0.00600089272, 0.0016580954, 0.00744529348, 0.029390417, -0.00505191414, 0.00965725072, -0.00400175806, 0.0149464086, -0.0160070322, 0.0119180512, 0.00800351612, -0.015532543, -0.0106969401, 0.0109411618, -0.0225103255, -0.00737551553, 0.0155744096, -0.00623115944, -0.0285670403, 0.0062102261, -0.0256921928, -0.0119389845, -0.00335980207, 0.0149743203, -0.000139773692, -0.00228522369, -0.00546011422, 0.00641607074, -0.0206402782, 0.0266411714, -0.0187702328, 0.0160628539, 0.00581947, -0.0204867683, 0.00195726776, -0.00611253688, -0.00505191414, 0.00749413762, 0.00808027107, 0.00330921309, 0.00359355775, -0.00651375949, -0.0020026234, -0.0371776223, -0.00313825742, 0.0196215231, 0.00215787906, -0.00223289034, -0.00106847286, -0.037093889, -0.0195936114, 0.0195657015, 0.0122808963, 0.00745924888, -0.0360890888, 0.0080453828, 0.0210729018, -0.00215090136, 0.00383429113, 0.0154488096, 0.00347144646, 0.00726387091, 0.00380986906, -0.0126018738, 0.00782907102, 0.0114505403, -0.00410293601, 0.0304510407, -0.00279460172, -0.0171932541, 0.00482513616, 0.0161186755, 0.00483211409, 0.0216450803, -0.000435675262, 0.00377498, -0.0259992164, 0.00313476846, -0.0150859645, -0.0144719202, 0.0109620951, 0.0113249402, -0.0222451687, 0.0020113457, 0.031707041, -0.0158256087, 0.0115621844, 0.00062189484, 0.00512169208, -0.0130065857, -0.019635478, 0.00327432412, -0.0243385043, 0.0131461415, -0.00806631614, 0.00272133504, -0.00408549141, -0.00352901313, -0.000405147468, -0.00510773621, -0.0175002776, 0.0147649869, -0.00664982619, 0.00174444553, 0.0195796564, -0.00234279037, -0.00444135815, -0.00179677887, 0.0275761951, -0.0154208979, 0.0235569924, 0.0320140645, -0.00729876, -0.00747320428, -0.00164239539, -0.000144243837, -0.00603229273, 0.0183097, -0.013795075, -0.00586482557, 0.0017706122, 0.0166350324, 0.0251060594, -0.000422155805, -0.0213380568, 0.015141787, -0.0660377294, 0.0113947177, 0.00629395945, 0.00978285074, -0.0126786297, 0.0166629441, 0.0236546807, -0.0269063264, 0.0228033923, 0.00222416804, 0.0117087178, 0.0274785049, 0.019635478, 0.0153511204, -0.0208914801, 0.00496120285, 0.0289159287, -0.0135020083, -0.0113388961, -0.00111818954, 0.00814307202, 0.00537638087, 0.0151976096, 0.00223289034, -0.00786396, 0.000575667, 0.00890365, -0.00844311621, -0.00115656736, -0.0174723659, 0.0212961901, 0.00527171418, 0.0104527175, -0.0183934327, 0.0230127256, 0.00599740352, -0.00139991753, -0.0183376111, -0.00920369476, -0.00648584822, 0.0204867683, -0.0110737402, 0.00235849037, -0.0108644068, -0.0142276976, 0.00924556144, -0.00410642475, 8.03535222e-05, 0.00143742305, -0.00132054521, -0.0138997417, 0.00248234603, -0.00798956, 0.00837333873, 0.0121204071, 0.0132298749, -0.0434576273, -0.0102503616, 0.0303393956, 0.00880596, -0.00801747106, -0.0381824225, -0.0211845469, 0.0015298787, 0.0310929958, -0.00761973811, -0.0215892568, -0.00815702695, -0.00917578302, 0.00734062679, -0.00571131473, 0.0139136976, -0.0177514777, -0.0119599188, 0.0126856072, 0.00996427238, 0.0210310351, 0.000894900528, -0.00962236151, 0.00592762558, 0.000677280943, 0.000569997588, 0.0110179177, 0.0309255291, 0.0226080138, 0.0145835644, 0.00256607938, -0.00361449108, 0.0116738295, 0.0201378781, 0.0112481844, -0.00433320273, -0.0217846353, 0.00681031542, 0.0181422327, -0.00556129217, -0.0082477387, -0.0164536107, 0.0122669404, -0.010396895, 0.0243943259, -0.00134147855, -0.00222765701, 0.00785000436, 0.0470302515, -0.0191470329, 0.0241152141, -0.0100619616, -0.00826169364, -0.00257305708, 0.0188260563, 0.0217288136, -0.00139206753, 0.0114575177, 0.0268923715, -0.00667773746, 0.00128565636, -0.0183655228, 0.00179852336, -0.00816400535, -0.00439600274, 0.00986658409, -0.00852685, -0.0114226295, 0.00454602484, 0.0134461857, 0.00811516, -0.000139119526, -0.00393895805, -0.015532543, -0.00339817978, -0.00638467073, -0.00767556, -0.00252595707, 0.016676899, -0.0180305894, -0.0033650354, 0.00562060345, -0.00150981755, -0.0213380568, 0.0145835644, -0.0124902297, 0.0226777922, 0.00907111634, -0.0138369417, -0.00507982541, 0.0181282777, -0.0080732936, 0.000976017269, -0.0153511204, 0.00355517981, -0.00252770144, 0.0216032136, -0.0159791205, -0.00556827, -0.0235709473, -0.000466203055, -0.00541475881, -0.0114156511, 0.000558658678, 0.00931533892, -0.00249630143, 0.0231522806, -0.0135787642, 0.00826867204, -0.00138596189, 0.0114993844, 0.0198169015, 0.0193982348, -0.00426691351, 0.00248583476, 0.00161448435, -0.0154906763, -0.00866640545, 0.00344004645, -0.0227475688, 0.00882689375, -0.0223568138, 0.00859662704, 0.0148068536, 0.00189097889, 0.00257654605, 0.0108853402, 0.00714176, 0.000134431335, -0.0164396539, -0.0145277418, -0.00496818079, 0.0184492562, 0.0123436963, 0.0120715629, 0.0261248164, -0.00496120285, 0.00210380135, -0.0156860538, -0.018993523, -0.00429133605, -0.0099293841, 0.0155883646, 0.0122669404, 0.00724293757, -0.000419539138, 0.0122739188, 0.00816400535, -0.000410598848, -0.0378474891, 0.0162721872, -0.011806407, -0.0172769874, 0.0182678327, 0.0150859645, -0.0108016068, -0.00751507096, -0.000816400512, 0.00414131349, 0.0149045419, -0.0239198375, -0.00217706803, -0.0203611683, 0.0160209872, 0.0233197473, -0.00248060143, 0.00951769482, -0.00768253813, 0.0339399315, -0.00473791407, -0.00265679043, 0.00103271171, -0.0187841896, 0.0297532622, 0.00430878, -0.011290051, 0.00550895883, 0.00428784685, 0.00198692339, -0.000304841844, 0.00865942705, 0.00124640635, -0.0132089416, -0.00189970119, 0.0217706803, -0.00171566219, -0.0101177841, -0.010396895, -0.00711035961, 0.0135787642, -0.0328793079, 0.0314558409, 0.00542522548, 0.00518798083, -0.00730573758, -0.00552291423, 0.00893853884, 0.0292229503, 0.00757787144, -0.00509726955, -0.0144579643, 0.0270598382, -0.00223637908, -0.000700394856, -0.0151976096, -0.0125320964, -0.00541475881, -0.019384278, 0.0108923176, -0.013153119, 0.000645008695, -0.0131949857, -0.00599042606, 0.00956653897, 0.00233406806, -0.00889667217, -0.0130484523, -0.00424249144, -0.00716618216, 0.0298928171, 0.0270877499, -0.00501004746, -0.0275064167, -0.019635478, 0.00467511406, 0.0145416977, -0.0181841, 0.00227475702, 0.024757171, 0.00424598, -0.0171793, -0.0184073895, 0.0183655228, 0.000625819841, 0.00322199077, 0.00742436, 0.0169141442, 0.00486700283, -0.0240035709, -0.0300602838, 0.0150999203, 0.00195377902, -0.00373311341, -0.0153929871, 0.0155046312, -0.0182678327, -0.000387484964, -0.0063776928, 0.0117924511, -0.00659400411, -0.00135107304, -0.0235290807, -0.00635327026, -0.0283297952, -0.0188400112, 0.00616138149, -0.0134461857, 0.0304510407, -0.0075569381, 0.0142625859, -0.0100270724, 0.0111784069, -0.00543918088, -0.0100131175, -0.00177933439, 0.0104457401, 0.0195377897, -0.0158953872, -0.00117924518, -0.00548802549, 0.00337550207, 0.00609509274, -0.0246176142, -0.023096459, -0.00565200346, 0.00578109222, -0.0023707014, -0.0218544137, -0.00966422819, 3.23540116e-05, -0.00187527889, -0.00379591342, 0.00503795873, -0.0139067192, -0.0204309449, -0.0125181405, 0.0117784962, -0.00595902558, -0.00607067, -0.00940605, 0.0106550734, -0.009754939, 0.0293066837, 0.00215090136, -0.00572527, -0.0207240116, -0.00505191414, 0.0131252082, 0.00312255742, 0.0150580537, -0.0174025875, -0.015658142, 0.00796862692, -0.0084152054, 0.00910600554, 0.0195377897, -0.00856871624, -0.0391034894, -0.00743831554, 0.00527520338, 0.000866553281, 0.0126646738, -0.0138857858, -0.00524729211, 0.0193982348, -0.00856871624, -0.0030056797, 0.0582226142, 0.0311488193, 0.0214357469, -0.0146114752, -0.00996427238, -0.0180166326, 0.00423900271, 0.0327397548, -0.00859662704, 0.00384824676, -0.00617533689, 0.0218823235, 0.00174008438, 0.0132298749, 0.0138857858, 0.00692893751, 0.0128949415, 0.0101456949, 0.00154732319, 0.00898738299, -0.00734760426, -0.00459835818, 0.0137671642, -0.0273668617, 0.0192726329, -0.00577062555, 0.00778022688, -0.000731794862, -0.011680807, 0.0277855285, -5.53861428e-05, -0.00202530134, 0.011618007, 0.010334095, -0.00633233692, 0.000862192188, -0.00886876136, 0.0312325526, -0.00155778986, -0.0333537981, 0.0169001874, 0.0308976192, 0.0191330779, 0.00192063453, 0.00849196, 0.000499783608, 0.0153092537, 0.000477105845, 0.00315919076, 0.00764067145, 0.0263899714, -0.0399966463, -0.00770347146, -0.00641955948, 0.0046960474, -0.00127431739, 0.02746455, 0.0201239232, 0.0280506834, 0.00944791641, -0.00412386935, 0.00763369352, -0.00212996802, 0.00148801203, -0.0170537, -0.036814779, 0.00118360622, -0.00365286879, 0.0102922283, 0.00274924608, -0.0221893471, -0.0147091644, 0.012573963, 0.00394244678, -0.00476931408, 0.0193145014, -0.00640211487, -0.0126437405, 0.00285042403, -0.00619627, -0.024771126, 0.0045425361, 0.00397035806, -0.0266411714, -0.0063916482, -0.00139381189, -0.0129996082, -0.0234313924, -0.0147649869, 0.0134880524, 0.00331793539, 0.0194959231, 0.0133345416, 0.00107806735, 0.0140741859, 0.0181701444, -0.00974796154, 0.0121064521, 0.000554733677, 0.00797560439, 0.0160488989, -0.00816400535, 0.000131378547, -0.0179049894, -0.00819889363, 0.023626769, 0.00951769482, 0.0186446328, 0.00410293601, 0.00702313753, -0.0154906763, 0.0055508255, -0.000711733766, -0.00747320428, 0.0175002776, 0.0123646297, 0.00227301242, 0.0232081022, 0.0177654326, -0.00937116146, 0.0120157404, -0.00349935773, -0.012511163, -0.00771742687, 0.00622767024, 0.0151976096, 0.00120541186, 0.00544267, 0.0272831284, 0.00492282538, -0.000457480841, -0.0202634782, -0.00488793617, -0.00540429214, 0.0256921928, 0.0165094323, -0.0108992951, 0.00357262441, 0.0108923176, 0.00765462685, 0.00727782678, 0.027980905, 0.015267387, 0.0148766311, -0.00886876136, -0.0093920948, 0.0185469445, 0.0122320522, 0.040164113, -0.00301091303, 0.00414829142, -0.0163559206, -0.0228592139, 0.0222730804, 0.00363891339, 0.0323210843, -0.00110946735, -0.00862453878, 0.00854080543, -0.009754939, 0.00449718069, 0.00192063453, 0.0191609897, -0.0105155176, -0.00486002536, 0.000624075357, -0.011869207, 0.00276145712, 0.00970609486, -0.00372613547, 0.0097619174, 0.0153232096, 0.00356739108, 0.0060253148, -0.0190074779, -0.0187423229, -0.00283123506, 0.0057217814, 0.00947582815, -0.0163559206, -0.0040366468, -0.00101439503, 0.0107318284, 0.0593390577, 0.00832449365, -0.00980378408, -0.00440646941, -0.0108434735, 0.0129786748, -0.00458440278, -0.0252037477, -0.00237419037, -0.00582993682, -0.00875711627, 0.0139764976, 0.00390406908, 0.0220218804, -0.0170118324, 0.00125076738, -0.0108783618, 0.0363961123, -0.0183934327, -0.000108864304, -0.00137549522, 0.0082477387, 0.02066819, 0.00806631614, 0.00558571424, -0.00915485, 0.0188539661, -0.00549849216]
14 Nov, 2021
jQWidgets jqxSortable scrollSensitivity Property 14 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSortable represents a jQuery plugin that allows you to reorder elements in an Html list or div tags using the mouse. The scrollSensitivity property is used to set or return the value of the scroll sensitivity. It basically defines how close one has to move the mouse to one of the edges to start scrolling. It accepts number type values and its default value is 20. Syntax: It is used to set the scrollSensitivity property $('Selector').jqxSortable({ scrollSensitivity : number }); It is used to return the scrollSensitivity property. var scrollSensitivity = $('Selector').jqxSortable('scrollSensitivity') Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link type=”text/css” rel=”Stylesheet” href=”jqwidgets/styles/jqx.base.css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/globalization/gloōbalize.js”></script><script type=”text/javascript” src=”jqwidgets/jqxsortable.js”></script> Example: The below example illustrates the jqxSortable scrollSensitivity property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link type="text/css" rel="stylesheet" href="jqwidgets/styles/jqx.base.css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/globalization/globalize.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsortable.js"> </script> </head> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>jQWidgets jqxSortable scrollSensitivity property</h3> <div class="gfg"> <div id="sort1"> <div><li>C</li></div> <div><li>C++</li></div> <div><li>Python</li></div> <div><li>HTML</li></div> <div><li>CSS</li></div> <div><li>JavaScript</li></div> </div> </div> <script type="text/javascript"> $(document).ready(function () { $("#sort1").jqxSortable({ scrollSensitivity: 90 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsortable/jquery-sortable-api.htm 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 scrollSpeed Property/jQWidgets jqxSortable scrollSensitivity Property
https://www.geeksforgeeks.org/jqwidgets-jqxsortable-scrollsensitivity-property?ref=asr10
PHP
jQWidgets jqxSortable scrollSensitivity Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxSortable scrollSensitivity Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable scrollSpeed Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.036367856, 0.0316660926, -0.0150966262, 0.0257888883, 0.0727923587, 0.0126041248, 0.0251516011, 0.0424008407, -0.0168102197, -0.00598341879, -0.0297400691, 0.0375008136, -0.00752707, -0.0192602351, 0.0163570382, 0.00808646623, -0.0327990502, -0.000708096894, -0.0258738603, 0.0166969243, 0.00940352678, -0.00222342438, -0.0244859904, 0.0191611014, -0.0450916104, -0.0012046498, 0.0369626582, 0.025888022, -0.00523283612, 0.0325441323, -0.025888022, 0.00723675033, 0.00195788802, -0.0204215143, -0.0164420102, -0.0228290446, 0.0173766986, -0.00531072682, -0.000550987897, -0.000110750778, -0.0293152109, 0.0269643292, 0.0142893959, 0.0270493012, -0.0104231862, 0.0103240525, 0.00691102585, 0.00423441967, -0.0399366654, 0.0238487031, 0.00229954463, 0.0451482572, -0.0165269822, 0.00478319451, -0.00930439308, -0.0444118381, 0.0127669871, 0.0334221721, 0.00139583601, 0.0105718868, 0.0393701866, -0.0373025462, -0.0264403392, -0.0328273736, 0.0213278793, -0.00858213473, 0.0166402776, 0.0169235151, -0.0449783169, 0.0184813291, -0.0215119831, 0.0232114159, 0.0288337059, 0.0184105188, -0.00146930106, 0.010217838, -0.00764036551, -0.00705618551, -0.0121438615, 0.0174616687, -0.0157622378, -0.0209455062, -0.0384638235, -0.00291381869, 0.0145867961, 0.00537799578, 0.0265111476, -0.0337903835, 0.0676374137, 0.00121615641, -0.0140344808, -0.000376397773, 0.0170509741, 0.0252224114, 0.0416361, -0.0131351976, -0.0136237843, 0.0215119831, -0.0119668376, -0.00382018276, 0.024372695, 0.0232539028, -0.00225351844, -0.0311845876, -0.0166827627, 0.0148417111, 0.0104444297, 0.00210481812, -0.00405385485, -0.00302534411, 0.0407863818, -0.0442985408, 0.0012046498, -0.0149691682, -0.0611229241, 0.00980714243, -0.0353481956, -0.00560812745, 0.00460262969, -0.00522575527, 0.00935396, 0.0195576362, -0.00857505389, 0.0477823801, -0.02813977, 0.0178582035, 0.00147018617, 0.0257039182, 0.0297117457, -0.0254914891, 0.00697121397, 0.05523156, -0.00861753896, -0.00373167056, 0.0280548, 0.00864586327, 0.027530808, -0.0177732315, -0.0500199646, 0.00967968442, -0.046706073, -0.00399366673, 0.0207330771, 0.0166969243, -0.00798025168, 0.0407580584, -0.0255339742, 0.0655414462, -0.0461395942, 0.0172067545, -0.0129227685, -0.0218518712, 0.00605422864, 0.00507705472, 0.0393418632, 0.0024978118, -0.00975049473, 0.0526540838, -0.00791652314, 0.0136733511, -0.00931855477, -0.0114499265, 0.0237637311, 0.0105364816, -0.0191611014, 0.000782447052, 0.0237354077, -0.00846883934, -0.0377840512, 0.019090293, 0.0180281475, -0.025972994, -0.0197559036, -0.00963719841, -0.00689686369, -0.036707744, 0.0197275802, -0.0189911593, 0.00148169277, -0.0418060422, -0.0233530365, -0.000391666108, -0.00569663942, 0.0285221431, -0.0108622061, -0.0134680029, 0.0141336145, -0.00377415656, -0.0105364816, 0.008051062, -0.0352065787, 0.0270209778, 0.025760565, 0.0286212768, -0.00106126023, -0.0245001521, -0.0251232777, 0.0193310454, -0.00127634464, -0.0155922938, -0.019090293, 0.00731464103, -0.00523283612, 0.0183397103, 0.0219226796, 0.0114145223, -0.00301649282, -0.0462245643, 0.0623691753, -0.00180476194, 7.49033716e-05, 0.0104302671, 0.0385771208, 0.0185379777, -0.00270315981, 0.0221634321, 0.0209030211, -0.0152665693, -0.01337595, 0.02813977, 0.00865294412, 0.00388745195, -0.00471238466, 0.0136308651, -0.0884271413, -0.00828473363, 0.00328379939, -0.0088228872, -0.00430168863, -0.00888661575, -0.0209738296, -0.00487878779, -0.0232397411, -0.002565081, 0.0345551297, 0.0394551605, -0.00433001248, 0.0209879912, -0.017532479, 0.0333938487, -0.00742085557, -0.0359429978, -0.00429460779, -0.0120234853, 0.0182405766, -0.0281680953, -0.0135883791, -0.0102036763, 0.00523637654, 0.00360421324, -0.0204923246, 0.00611441676, -0.0138999419, -0.0428823493, 0.0163145531, 0.0148700345, 0.0232397411, 2.99558178e-05, 0.0123775341, -0.0155781321, 0.044241894, 0.023593789, -0.00413528597, 0.00405739527, 0.0123208864, 0.0365094766, 0.0261571, -0.0277432371, 0.0377274044, -0.0470176339, 0.00939644594, -0.0151391113, 0.0501615852, 0.00181803876, -0.0150824636, 0.0136308651, -0.00484338263, -0.0337054133, 0.0166402776, -0.050048288, -0.00306605967, 0.0309863202, 0.0346967466, 0.0475557894, 0.0201524384, -0.0104939956, 0.0218518712, -0.00981422327, -0.040729735, 0.0150116542, -0.0300799571, -0.0195434745, -0.00714115705, 0.0439869799, 0.0331389345, 0.0110038258, 0.0101116234, 0.00618522661, -0.0229989868, 0.0088795349, -0.0172067545, -0.0163995251, -0.0251232777, -0.0155639695, 0.0088228872, 0.0346967466, 0.00807938538, -0.0322608948, -0.0379823186, -0.0240186471, 0.0488020368, 0.00029098356, 0.0191469397, -0.0397950448, 0.00560458703, -0.0211154502, 0.0183397103, 0.0330539644, -0.00597633794, 0.00714469794, 0.00528240297, 0.0112091741, -0.0338187069, 0.0183113851, 0.00853256788, -0.0307597294, -0.0130148213, 0.00444684876, 0.0117898136, -0.0382089093, -0.0338753574, 0.00401844969, -0.0242735613, -0.0116269514, 0.0120234853, 0.00817143824, -0.00593385193, -0.00165694673, -0.0203931909, 0.00727215502, 0.000198156486, 0.00650387025, -0.0156772658, 0.00885829236, 0.0566760749, -0.0263412055, -0.00274387538, 0.002586324, 0.0585171282, 0.00723675033, 0.00129139167, -0.00513724284, 0.00487170648, 0.0284654945, 0.0247975532, -0.015323217, -0.00739961257, -0.0175466407, -0.0139636705, -0.0177449081, -0.0169518404, 0.00955930818, 0.0141902622, 0.0209030211, -0.000259561784, -0.031382855, -0.00634808885, -0.0248966869, -0.00651449151, -0.00899991114, -0.028097285, -0.0322608948, 0.00919817854, 0.0604431517, -0.036056295, -0.0087804012, 0.00642597955, -0.0139849139, -0.0138928611, 0.0164278485, -0.0102249188, 0.045714736, -0.0158330463, 0.032374192, -0.0127457445, 0.0258030519, 0.0116057079, -0.0331106111, 0.0429956429, 0.0295418035, -0.0491136, 0.0474141687, -0.0485188, -0.0405881144, 0.00324485404, 0.0128732016, -0.0115419794, 0.00364315859, -0.0313262083, 0.0119172707, 0.00226059929, -0.0228856914, 0.00936812162, -0.0309579968, 0.0116977608, -0.00944601279, -0.0327140763, -0.0335921161, -0.0114640892, 0.0190761313, -0.0210871249, -0.00817143824, 0.00772533705, 0.0429673195, 0.0157055892, 0.0360846184, 0.0329689905, 0.0579789728, 0.00545588648, -0.0466211, 0.0219934899, -0.013071469, -0.0259021837, 0.0343285389, -0.0670709386, -0.0106002102, -0.0767577067, 0.0166544393, 0.0441002734, 0.015847208, -0.0338470303, 0.0229565017, -0.00960179418, -0.0347250737, 0.0243302099, 0.0281114466, 0.038747061, 0.00987795182, 0.0032271517, -0.010911773, 0.00485754479, -0.0209738296, -0.00592677109, -0.00718364306, -0.0189486723, -0.00670921803, -0.00823516678, -0.00243231282, 0.00318466569, 0.0199683327, 0.011081716, -0.0481222644, 0.00907072145, 0.00062445295, 0.0145301484, 0.00682251342, 0.0044326866, -0.0288337059, 0.0165128205, -0.0315244757, -0.030561462, -0.0139919948, -0.0144310147, -0.0089220209, 0.000685083738, -0.0168527067, -0.0104302671, 0.0315528, -0.00767577, 0.0104585914, -0.043902006, -0.0268085487, 0.0120588904, 0.0571292564, 0.0225316435, 0.016796058, -0.00876623951, 0.0201524384, -0.017787395, -0.00675878488, 0.0140344808, 0.00535321236, -0.006840216, 0.0179431755, 0.00949558, -0.013637946, 0.011903109, -0.000635074393, 0.00041667078, -0.00511245942, 0.0151107879, 0.00294922362, -0.00930439308, -0.00866710581, -0.0124483434, 0.0173200499, -0.0527673811, -0.0386337675, 0.0423725173, 0.0255198125, -0.00433001248, 0.00585950166, -0.00963011757, 0.016102124, 0.00126218272, 0.00186406507, -0.0237778947, -0.00447871303, 0.0374441631, -0.0386054441, 0.0205914583, -0.0170084871, -0.0225033201, -0.00648616767, 0.00386974961, -0.0236929227, -0.0211296119, -0.0242735613, -0.00915569253, -0.0149691682, 0.0296267737, 0.0089361826, 0.00624895515, 0.00895034522, 0.0379539952, 0.0375857837, -0.000369095505, -0.0255906228, -0.0302499, 0.0327707231, -0.0354048461, -0.00791652314, 0.00108692877, 0.00866002496, -0.0192460734, 0.0227865577, -0.00764744636, -0.0173058882, -0.0196426082, 0.0105435625, -0.0191894267, 0.0157339126, -0.0488586873, -0.00732172187, 0.01030281, 0.0231830925, -0.0171784312, -0.023027312, 0.00853964873, 0.0112091741, 0.016753573, 0.0163712, -0.00627373857, -0.00732172187, -0.00208357512, -0.0162579045, -0.0225741286, -0.0205064863, -0.017532479, -0.0277007502, 0.0108622061, 0.00162862288, 0.0436470918, 0.017532479, 0.0229706634, -0.0329689905, -0.00856797211, 0.00785987545, -0.0206197817, -0.0103382152, -0.00158082636, -0.00715885963, 0.00220749201, 0.00108515855, 0.0152099216, 0.0343851857, 0.0323458649, -0.0135317314, 0.0295418035, 0.0164420102, -0.011081716, -0.0167818964, 0.00733588403, 0.0178157184, -0.0174616687, 0.00186052464, -0.0264969859, -0.0271484349, -0.0323175415, -0.0104869148, -0.00950974133, 0.0386054441, 0.0140911285, -5.20838475e-05, -0.023636274, 0.0113932788, -0.0217244122, 0.0205631331, -0.0114428457, -0.0255481359, 0.0260862894, 0.0233671982, 0.0309863202, -0.0105152391, 0.00306782988, -0.00667027291, 0.0018215793, 0.0290886201, 0.00767577, -0.0195151512, -0.0205914583, 0.0259871557, 0.0441002734, -0.0105860485, -0.0390303023, 0.00194726652, -0.0079519283, 0.00430876948, -0.0251232777, -0.00626311731, 0.031694416, 0.0149833309, 0.00489294948, 0.0103240525, 0.0503032021, 0.00590552809, -0.000557183754, 0.00599758094, 0.0116269514, -0.0385771208, -0.00362014538, -0.000226148448, -0.0216536038, 0.000257348962, 0.0259021837, 0.0127882296, -0.0122359144, 0.0149550065, -0.0292019155, 0.00555147976, -0.0033528388, -0.00556210103, -0.0282105803, 0.0522292256, -0.0107701542, 0.00392993772, -0.000825375435, 0.047923997, 0.0293152109, 0.0122713195, -0.00349091762, -0.00191009138, -0.00410696212, 0.00638349354, 0.0216536038, 0.00345728314, 0.0247550681, -0.00558688445, 0.0237070844, 0.0289470013, -0.0130856307, -0.0103807, 0.0467627198, 0.0514361598, 0.00141884922, -0.00680835173, 0.0419476591, 0.0404464938, 0.00890785921, 0.0317227393, -0.00899283, -0.0068260543, -0.00707742851, 0.0246984195, -0.00921234, -0.0149691682, -0.0215544701, -0.0118039753, 0.0231547691, 0.00846175756, 0.000452518172, 0.000147151382, 0.0217385739, -0.006298522, -0.016017152, -0.0130643882, -0.0146292821, 0.00727215502, 0.0224749949, 0.0250099823, -0.0088370489, 0.0146009577, 0.0160879623, 0.0513511859, -0.00182866026, -0.0351216048, 0.000290319731, 0.00430876948, -0.0148983588, -0.0393701866, 0.00544172479, -0.00106391555, -0.0420609564, 0.0394551605, -0.00292621041, 0.00908488315, 0.00115508307, 0.0365094766, -0.0109188538, -0.0148841972, 0.0352915488, 0.0247409064, 0.00232786848, 0.0439586565, 0.00733588403, -0.00350153912, 0.00197559036, 0.00486108521, -0.025760565, -0.00407509785, 0.0022836125, 0.0427124053, 0.00101346371, -0.0425991081, -0.0106072919, -0.0128944442, 0.0258596987, -0.000449420244, 0.000883350905, 0.00483984221, 0.004025531, 0.0286779236, 0.0223050527, -0.0169235151, -0.0265111476, 0.0342718884, 0.00936812162, 0.00824224763, 0.00861753896, -0.0125191528, -0.0148700345, -0.033025641, 0.0127669871, 0.0188212153, -0.016102124, -0.0447517224, 0.0116127888, 0.00765452767, 0.00436187675, -0.00659946306, 0.0441569239, -0.012080133, 0.0287062488, -0.0393418632, 0.000646138447, -0.0223617, 0.00480443751, 0.00232609827, 0.00474070897, 0.0228007194, 0.0124271009, 0.0330539644, -0.0116977608, -0.00316519313, 0.0108126393, 0.0356880836, -0.0332239084, 0.00520805269, 0.0255056508, -0.0218943562, 0.00887245405, -0.0130360639, 0.0471592546, -0.0167394113, -0.0183397103, 0.0245709624, -0.00517972885, -0.00577098969, -0.00335460901, -0.0067410823, 0.00390161388, 0.0112516601, -0.00297931768, 0.0246134475, -0.00885829236, 0.00401844969, 0.0124625051, 0.0352065787, 0.00981422327, 0.0131706027, 0.0149550065, 0.0107843159, -0.0138503751, 0.0333655253, 0.0231122822, -0.011386198, -0.0263836905, 0.0336204395, 0.00931147393, -0.0211579353, -0.00750582712, -0.00159587339, 0.0102886483, 0.0272617303, 0.00626311731, -0.0167818964, -0.0381239355, 0.0141406953, -0.0126678534, -0.0263128802, -0.0321759246, -0.00550899375, -0.021427013, -0.0129510919, -0.010911773, -0.0116198706, 0.0133830318, -0.0299100131, 0.0130643882, 0.0116127888, -0.0104161054, -0.0126749342, 0.046706073, -0.0162437428, -0.023593789, 0.0166544393, 0.00224289694, 0.00128431071, 0.0409280024, 0.000452296896, 0.00426982436, 0.00767577, -0.052909, 0.021427013, -0.0112162549, -0.00498500234, 0.0162012577, 0.00991335697, -0.0325724557, 0.0121863475, 0.0046876017, -0.00866002496, -0.0162154194, 0.00870959181, 0.0329973139, 0.00329088024, -0.0258738603, 0.0314395, 0.0410696194, 0.00574620627, 0.0114924125, -0.00916985516, 0.021172097, 0.0214836597, -0.0100266524, 0.017787395, -0.00834138133, 0.0256047845, 0.0139778331, -0.00875915866, -0.0391719192, 0.0243160482, -0.000695705181, -0.00831305794, 0.00948141795, 0.0117685702, -0.0352349021, -0.0296834223, -0.0387187377, 0.00853256788, 0.0224466715, 0.0162012577, 0.0225741286, -0.0176032893, -0.00219864096, 0.00303773559, -0.0469609872, 0.0137158372, -0.00737128872, -0.0205064863, 0.00900699291, -0.0159605034, -0.050218232, -0.0108763687, -0.00814311393, 0.0328273736, -0.0233955216, -0.0121438615, 0.00697829481, 0.00638703397, -0.00408925954, -0.0327707231, -0.00348560698, -0.049396839, -0.0195434745, 0.0259871557, -0.00374937314, 0.00193133426, 0.000728897227, 0.0174616687, 0.0166827627, -0.0325158089, 0.0162154194, -0.0320059806, 0.00650032936, 0.00727215502, -0.00950974133, 0.0323175415, -0.0194585025, -0.0148841972, 0.0218660329, -0.0100620566, -0.0129723353, -0.0341302715, 0.0235229786, -0.0176740978, -0.0284230094, 0.0150541402, -0.00473008724, -0.0020800347, -0.0119385142, -0.00799441431, -0.0125474771, 0.0139849139, 0.0078882, -0.0189911593, -0.0439869799, -0.0061002546, -0.0148841972, 0.00758371782, 0.00428398605, 0.0219226796, 0.0627090633, -0.0206197817, -0.0311845876, -0.0222342424, 0.0209030211, -0.00865294412, -0.0443551913, 0.0165694673, 0.0225316435, 0.0124200201, -0.0171217825, 0.0152665693, -0.00564353215, 0.00987087097, -0.0184813291, -0.0145301484, -0.0162437428, 0.0391719192, -0.00945309363, 0.0212429073, 0.0277998839, 0.0213986877, 0.0171076208, -0.0382089093, -0.0115278177, 0.0122713195, -0.0056364513, 0.0105506442, -0.0345551297, -0.024372695, -0.00945309363, 0.0229848251, 0.00742085557, -0.0162154194, -0.00633392669, 0.00553377718, -0.0220076516, -0.0235796273, 0.0078103086, -0.00806522369, 0.0360279717, 0.0116977608, -0.0238062181, 0.021299554, 0.014501825, -0.0299383365, 0.0201241132, -0.0196142849, -0.0228290446, -0.00198444165, 0.00706680724, 0.00782447, 0.0332239084, -0.0115207369, -0.00671629887, -0.0337054133, -0.0270209778, 0.0300516319, 0.0375574604, -0.0234663319, 0.0164844953, 0.00252790586, 0.0166261159, 0.0151249496, 0.0232114159, -0.00627373857, -0.0299383365, -0.0392568931, -0.0214694981, -0.0148417111, 0.00922650285, -0.0105294008, 0.0131493593, -0.00549837248, 0.0169801638, -0.00348206656, 0.0010798478, 0.00497792102, -0.0354614928, 0.00296692597, -0.0175041556, 0.0114499265, 0.0323458649, -0.00118871767, -0.00177024223, 0.0120588904, 0.00904239714, 0.00427336479, 0.0299949851, -0.0117898136, 0.0126820151, -0.0346117765, -0.000301826309, 0.013765404, 0.000228139965, -0.00333690667, 0.000265536335, 0.00694289, 0.00759787951, -0.00312270736, 0.00611795718, 0.028961163, 0.00378831849, -0.000823162671, -0.0160596371, -0.0456014387, 0.00312447757, -0.0184105188, 0.0457997061, 0.0176032893, 0.00352101191, 0.0156631041, 0.000569132855, -0.000351614377, -0.020690592, 0.00115242775, -0.0177732315, -0.0209171828, 0.00965844188, -0.0157055892, 0.0121297, -0.00938228425, 0.00488232821, -0.0103948629, 0.00809354801, -0.0251657646, 0.00989211351, 0.0288195442, 0.023721246, -0.0126749342, 0.00106480066, 0.00226059929, 0.0156489406, 0.0225741286, -0.00298108789, 0.00414236682, -0.00992751867, 0.0162579045, -0.0307880528, 0.0195717979, 0.0161587708, -0.00111702282, 0.031382855, -0.00726507418, -0.0131281167, 0.00213491218, 0.00950266048, -0.0181131195, 0.0262845568, 0.0155639695, 0.00203400827, 0.0211012885, -0.00473362766, 0.00159144774, 0.0196142849, -0.0234380066, -0.00880872551, -0.0268510338, 0.00484692305, -0.00421671709, 0.0230131485, -0.015323217, -0.0265819579, -0.00789528061, -0.0236929227, 0.0605564453, 0.00577807054, -0.0188778639, -0.00331566366, -0.0108976113, -0.00473362766, 0.0232822262, 0.0162295811, 0.0196142849, -0.0136521086, 0.0146009577, 0.0248542018, 0.0158896949, 0.0167394113, -0.0176740978, -0.0108976113, -0.0117402468, 0.0142539907, 0.0157764, -0.000759876508, 0.0107559916, 0.0237778947, -0.00810771, -0.0031173965, 0.0244010184, 0.0114570074, -0.0336204395, -0.0315811224, -0.044241894, 0.00245355582, 0.0281256083, 0.0178865269, 0.0174191836, -0.0115065742, -0.00611441676, 0.0207755622, -0.0078103086, -0.00977881812, -0.0439586565, -0.00704910466, -0.0145584727, -0.0055373176, -0.00475133024, 0.0100691384, -0.00486462563, 0.00494959718, -0.0356031135, -0.00135600555, 0.00814311393, 0.0370759554, -0.0287770573, 0.0148700345, -0.0292868875, -0.0107135065, 0.00056337961, -0.00211898, -0.00964428, -0.0142327473, 0.0236646, -0.037359193, -0.012512072, -0.00121173076, -0.0149833309, -0.0123421289, -0.0188778639, 0.0176882613, -0.00300941174, 0.00350685, -0.0179573372, 0.0230981205, 0.0434205, 0.0308447015, 0.00595509494, 0.00650387025, -0.0134750837, 0.000710752269, -0.00729339803, 0.0175041556, -0.00102851074, -0.0288903527, -0.0333938487, 0.000336788595, -0.0133405458, 0.00751998927, -0.0144451763, 0.0279131792, -0.012122619, -0.0116694365, 0.0137299988, 0.00690040411, -0.00663486775, -0.00346436398, -0.0158047229, 0.0124908295, -0.0248400401, -0.00113915093, 0.0344135091, 0.00122854812, -0.0105081582, -0.0136521086, 0.0119172707, -0.0131847644, 0.00581701612, 0.0133688692, -0.00133476267, -0.0281964187, -0.000759876508, 0.00407509785, -0.0272192452, 0.0335354693, 0.00619230745, -0.0121297, -0.00732880272, -0.00134095852, 0.0032855696, 0.0130643882, -0.0104090245, -0.00272617303, -0.00798733346, 0.03186436, -0.00177112734, 0.0178865269, 0.00318820635, 0.00127722975, -0.0118039753, -0.00944601279, -0.0162154194, 0.0038485066, 0.00976465642, -0.0160029903, -0.0313545316, 0.00792360399, -0.0142327473, 0.0164278485, -0.00964428, 0.00836262479, -0.0186795965, 0.0309296735, -0.0164561719, 0.0226024538, 0.00611441676, 0.00643306039, -0.0282389037, -0.00954514649, 0.0230981205, 0.0334221721, -0.00310854544, -0.00490003033, 0.00196319865, 0.0108338827, -0.0309296735, 0.00487524737, 0.0174899939, -0.0145726344, 0.00946725532, -0.0299949851, 0.00801565684, 0.00458138715, -0.0268510338, 0.00515494542, 0.0141265327, 0.0219651666, -0.00263589062, -0.0245143138, 0.0170084871, -0.0215403084, 0.00840511, -0.0329406671, 0.0258738603, 0.00143566646, 0.00529656466, 0.00482922094, 0.0173058882, -0.010692263, 0.025024144, 0.000866976159, 0.0180423092, 0.0221634321, 0.0425991081, -0.0269360058, -0.00373167056, 0.0130077405, -0.00609671418, 0.0199258476, -0.0160313137, 0.0145301484, 0.00132148585, -0.0112658218, 0.0210446399, -0.0196850933, -0.0199258476, 0.0140344808, 0.0217952225, 0.00573204458, 0.00224643736, 0.0190761313, 0.00793776661, -0.0151391113, 0.00809354801, 0.0320626274, 0.00114269136, 0.0112020932, 0.0222200807, 0.0209738296, 0.00308553223, 0.0181980897, -0.0215969551, 0.00708450936, 0.00740669342, 0.00111790793, 0.0176032893, -0.0234096833, -0.00413174555, -0.00556918234, 0.00863878243, -0.00941768847, -0.00828473363, -0.00585950166, -0.0161446091, 0.00205348106, -0.00637995312, 0.00109577994, -0.00912736915, 0.0122996429, 0.011945595, 0.00416006939, -0.026709415, -0.0134680029, -0.0107843159, 0.016017152, 0.00997708552, 0.00958055072, 0.0424858145, 0.0211579353, 0.016711086, 0.0121297, -0.000956815958, -0.00601528306, -0.00852548704, 0.0190194827, -0.00488232821, 0.0150683019, -0.00867418665, 0.0178440418, -0.0101470286, -6.67713248e-05, 0.0286212768, -0.0113366311, -0.0187079199, 0.0188070536, 0.0231122822, -0.00261464785, 0.0400216356, -0.0245001521, 0.00878748298, 0.0140628042, -0.00046999933, 0.00282530673, -0.0172350779, -0.0349799879, -0.00252436544, 0.00550545333, -0.0147284158, -0.010217838, -0.0295134783, -0.0050310283, -0.00543818437, 0.00817143824, -0.00930439308, -0.00912736915, 0.00131086435, 0.0188070536, -0.00722966949, -0.00554793933, 0.0163570382, -0.0182264149, 0.0219368413, 0.00751290796, -0.00300233089, -0.0124625051, -0.0091202883, 0.00804398116, -0.0122217527, 0.013071469, -0.0110463118, 0.00644722208, -0.00630206242, 0.0220643, -0.0144947432, 0.016017152, 0.021951003, -0.0131068733, -0.0113083078, 0.00288372464, 0.0152948927, 0.00957347, 0.0089786686, -0.0187362432, -0.000597456761, -0.0319493338, 0.000936458178, 0.026015481, 0.0105364816, -0.0249958206, 0.0116198706, 0.0204073526, 0.0245143138, -0.0271909218, 0.00422025751, -0.00631622458, -0.0131422784, -0.00457430584, -0.0179998223, 0.0112091741, 0.00225705886, 0.011343712, 0.00720134564, -0.0094318511, -0.00186052464, -0.01263953, -0.0113366311, -0.0207614, -0.0516910739, 0.00353694404, 0.000603652617, -0.00275449688, -0.0151249496, -0.0350932814, 0.00112675922, -0.0368493609, 0.0103098908, -0.0104869148, 0.000521336333, 0.00366440136, -0.0179290138, -0.00466281828, 0.0026323502, 0.00325016468, -0.00286248163, 0.0166261159, -0.0145301484, 0.0148417111, -0.0150258159, 0.0191894267, 0.000669151545, 0.00912736915, -0.0232255775, -0.0237354077, -0.00983546581, -0.0108409636, 0.0147709018, -0.00477257324, 0.0499916412, -0.0116623556, 0.0301366039, 0.0331955813, -0.00384496618, -0.00735712657, 0.00251020351, 0.0154931601, -0.0206622668, 0.0108551253, 0.00692164712, 0.0115207369, -0.000180122152, -0.0341869183, -2.4327e-05, -0.0111100404, -0.00885829236, -0.0020906562, -0.013290979, 0.012165105, -0.00299170939, -0.00230131485, 0.016753573, 0.0350932814, 0.0408430286, -0.00460262969, -0.0131422784, -0.00798733346, -0.025024144, -0.00853964873, -0.01380789, -0.0334505, -0.000947079621, 0.0142610716, -0.00536737451, -0.00584888039, 0.00537445536, 0.0274175126, 0.0261995848, 0.00499208318, 0.00790236145, -0.00666673249, -0.00802273769, 0.0261287764, -0.0191186164, 0.00635516969, -0.00476903282, 0.00967968442, 0.01380789, 0.00977173727, -0.00423087878, 0.0141052902, 0.0220218133, 0.0249533355, -0.00081254117, -0.0259163473, -0.0116977608, -0.00499208318, 0.00380248041, 0.0022836125, -0.0305897854, -0.00829181448, 0.01454431, -0.00140822772, 0.00294922362, 0.0671275854, 0.00576744927, -0.0151107879, -0.00208888575, -0.0144522581, -0.0144805815, -0.0318926834, -0.00936104078, -0.0216960888, 0.00938228425, 0.00718718348, -0.0216536038, 0.00262703956, 0.00093822839, -0.0217952225, 0.00936104078, -0.0129086068, 0.0100903809, -0.0151107879, -0.0314678252, 0.00748458412, -0.00989919435, 0.019090293, -0.0170651358, 0.0172350779, 0.0153373787, -0.00113561039, 0.0113012269, -0.00526116, 0.0183680337, -0.0105435625, 0.0154789984, -0.00544880563, -0.00761912251, -0.00517972885, -0.004567225, 0.0135812983, 0.0118393805, -0.00330150174, -0.00210304768, 0.0215261467, 0.0225882903, 0.0106568588, 0.00680835173, 0.00725799333, 0.00602944521, -0.00687916158, 0.00172952667, 0.0195151512, 0.00431231, 0.0159605034, -0.00414236682, 0.00365378, 0.024372695, -0.0215403084, 0.00974341296, -0.00489294948, 0.00589844724, 0.00187114603, -0.0214128494, 0.0015648941, -0.00334929838, -0.00607547117, 0.00325547555, 0.000562494446, 0.0113224695, 0.0166827627, 0.0184105188, 0.0270493012, -0.0159605034, 0.00173306721, -1.56694095e-05, -0.00448579388, 0.0142185856, -0.00109046919, 0.00687562069, 0.000652334245, 0.0248258766, 0.00441852445, -0.0150824636, 0.0278990176, -0.0278565325, -0.0184105188, -0.00655343663, 0.00927607, -0.00528594339, -0.0255198125, 0.00856089126, 0.00702078082, 0.000453624583, -0.00460617, -0.00987087097, 0.0138999419, 4.13794114e-05, -0.00758371782, -0.00639057439, 0.00607901206, 0.0101328669, 0.000786872697, -0.035716407, -0.0174758323, -0.0123775341, 0.026879359, -0.00950974133, 0.00176758692, 0.00262172869, -0.0254773255, 0.0107276682, -0.0103311334, -0.0243160482, -0.0138008082, 0.0144876624, -0.00962303672, 0.00686499942, 0.00343604013, -0.00846883934, -0.0147567391, 0.00556564145, -0.0207047537, 0.00730756, -0.0107418299, -0.000443888246, 0.0128944442, -0.0262703951, 0.000581524568, -0.0154081881, -0.000384142564, -0.00827057194, 0.00675524445, 0.0052292957, -0.0112091741, -0.00525407912, 0.00285186036, 0.0093752034, -0.00737128872, -0.021172097, 0.023721246, -0.00745626027, 0.0109613398, -0.00359536195, 0.030391518, -0.000460705545, 0.00701724039, 0.00314395013, 0.0158047229, 0.00224466715, 0.00713761663, 0.000377282879, 0.0255056508, -0.00324485404, 0.0124979103, 0.00154453632, -0.00947433617, -0.00461325143, -0.0169376787, 0.00871667266, 0.0206764303, -0.000142504505, 0.0294568315, 0.00531780766, -0.00471592555, -0.0130077405, -0.000585950213, 0.0177307464, -0.00723321, 0.00585242081, -0.000882465742, 0.00690748543, -0.0019012402, 0.00763328467, 0.0166827627, 2.72727939e-05, -0.00810062885, 0.0125403963, 0.00323423254, -0.0277573988, 0.00472654682, -0.00377415656, -0.00890077837, -0.0135883791, 0.006319765, -0.0049743806, 0.0199116841, -0.0183963571, 0.00393701857, -0.0125049911, -0.00320059806, -0.00796609, -0.0212853923, -0.0280548, 0.00737836957, -0.0154506741, -0.0138928611, 0.00268368726, -0.0337337367, 0.0050735143, 0.00918401685, 0.0187220816, -0.0135104889, 0.0289470013, 0.0129156876, -0.00381310191, -0.010649777, -0.00905656, 0.0182972234, -0.00434063422, -0.0100691384, 0.0209738296, -0.00019605433, 0.00751998927, -0.0106710205, -0.0247267429, -0.00208711554, -0.00401844969, 0.0251516011, 0.00634808885, -0.00735712657, -0.0152948927, 0.00305543817, -0.0108551253, -3.13388191e-05, -0.0147567391, -0.0112799834, 0.000832013844, 0.00754123181, -0.0189345106, -0.0196284465, -0.00247479859, -0.00226591015, -0.00999832805, 0.0030696, -0.0298816897, 0.0246842578, -0.00429814821, 0.0163428765, -0.0106214536, -0.0115490602, 0.0289186779, 0.00353517383, 0.000691722147, 0.0281539336, -0.000354933582, -0.0276299417, -0.00708805, 0.00528948382, -0.0123492097, 0.0118535422, -0.0110533927, -0.0268227104, 0.0144664198, 0.0176740978, -0.0151107879, -0.0318077132, 0.0162720662, 0.0124129383, -0.0139495088, 0.0169801638, 0.0180847943, 0.00369980629, 0.0189486723, 0.00567185599, -0.0148700345, 0.00812895223, -0.00934687909, -0.00520805269, -0.0139070228, -0.0146434437, 0.0266102813, -0.0248258766, 0.00663486775, -0.00234911148, -0.00227830186, -0.0112162549, -0.00114446157, 0.00909904484, -0.00661362521, -0.00822808594, 0.0115348985, 0.0114570074, -0.0118889473, 0.0138786994, 0.00597987836, 0.00590552809, 0.0343002155, -0.00513724284, -0.0363112092, -0.0212145839, 0.00652157236, 0.00629498158, -0.00393701857, -0.00831305794, -0.014459339, -0.010649777, -0.00418839324, 0.00181272812, -0.0171076208, 0.00490003033, -0.0163570382, 0.0181272812, -0.0140628042, 0.0319210067, 0.00368918478, 0.0290886201, -0.0101965955, 0.00269784918, -0.00948141795, -0.00104886852, -0.0204215143, -0.0153515404, 0.0226024538, -0.0135883791, 0.00266598491, -0.00996292382, -0.0158896949, 0.0315811224, -0.0091202883, -0.00590198766, -1.13682745e-05, 0.0224891584, -0.0141477762, 0.00358297024, 7.47512468e-06, -0.0123138055, 0.0103311334, 0.0245284773, -0.010260324, -0.000231237893, -0.0184954908, -0.0103736194, 0.0155639695, 0.0175608024, -0.0077536609, 0.0130431447, 0.00734296488, 0.00327317789, 0.0150683019, -0.0263128802, -0.000579754356, -9.62569247e-05, 0.00536383409, -0.00365378, -0.00143832178, -0.00143124082, 0.0142964767, -0.0164136868, -0.00238805683, -0.000175475259, 0.0123704532, 0.00662070606, -0.00461325143, -0.00310323457, -0.00528240297, 0.00980714243, -0.00646138424, -0.00982130412, 0.0079094423, -0.0102744857, 0.00749874627, -0.00905656, -0.00726507418, 0.00346259377, -0.0101611903, -0.00973633211, -0.00724029075, 0.0104019437, 0.00756247481, 0.0138716185, 0.00217031711, -0.0194301791, -0.000991335604, -0.00810771, 0.0125616388, -0.00858921558, 0.004609711, 0.0102886483, 0.0166261159, 0.000514255371, 0.0137299988, 0.0013170602, -0.00470530381, 0.00659592263, -0.0183963571, -0.00195965823, 6.53883253e-05, -0.0317793898, 0.00511954073, -0.00158171146, -0.0055585606, 0.0135246506, -0.0115632219, -0.0093752034, 0.0142185856, 0.00038856818, 0.000457165064, -0.016796058, 0.0114782508, -0.0233813599, 0.00689686369, -0.0188353769, 0.0158613697, -0.0174899939, 0.00463449443, -0.0135812983, 0.016102124, -0.0295134783, -0.00108869898, -0.00511600031, -0.00784571376, 0.00841219071, -0.0154506741, -0.00863878243, -0.00963719841, -0.00450703688, 0.00331743388, -0.00897158775, -0.0203931909, -0.00998416636, -0.00196496886, 0.00896450691, -5.81413951e-05, 0.00930439308, 0.003983045, -0.00446455088, 0.0161446091, 0.00873791613, -0.00745626027, -0.00658530137, -0.0104869148, -0.0169235151, -0.0295984503, -0.00833430048, 0.00134007342, -0.028309714, 0.0126961777, -0.00756247481, 0.00315103121, 0.00892910175, 0.0108622061, 0.0117048416, 0.017702423, -0.00317758485, -0.0179856606, 0.00578161096, -0.00305366796, 0.0386620909, 0.00798025168, -0.0056576943, 0.00147549692, 0.00582055654, -0.0147709018, -0.0121934284, -0.00337762223, 0.0170651358, 0.00980006065, -0.0164703336, -0.00799441431, -0.00494959718, 0.0197983887, -0.0263128802, -0.0148700345, -0.00401490927, 0.000329707633, 0.00389453303, 0.00554793933, -0.00273856474, -0.0107701542, 0.00406801654, -0.0033634603, 0.00240044855, 0.00258809421, 0.0103098908, 0.0184246805, -0.0149550065, 0.0163287148, -0.0182547383, -0.0179714989, 0.00663486775, 0.0231830925, 0.00876623951, -0.0182972234, 0.00176139106, 0.000112742302, 0.0104444297, -0.000944424246, -0.00528594339, -0.014459339, -0.0251232777, -0.00313332886, 0.0169235151, 0.0126890969, -0.000960356439, 0.0178582035, 0.0156914275, 0.000467786507, 0.0314111784, 0.0142823141, -0.00737128872, -0.0212429073, -0.0187787302, 0.0254065171, -0.0119739184, 0.00310146436, 0.00426982436, 0.00593031151, 0.00155073218, -0.0128590399, -0.0231972542, -0.0273183789, 0.0203365423, -0.000361572, -0.00383080426, 0.0135175698, 0.0152240833, 0.0237637311, 0.00863878243, 0.0219651666, -0.00670213718, -0.00304304645, -0.0105081582, 0.00437957933, -0.0141619379, -0.000713850197, -0.0224891584, -0.0171076208, 0.0133617884, -0.014331881, -0.0171076208, 0.00249604159, -0.00110374601, 0.00371396821, -0.00168792601, -0.0214978214, 8.34779858e-05, 0.0169235151, 0.00504165, -0.00429814821, 0.00737128872, -0.00447517261, -0.0150399785, 0.0145584727, 0.00547358906, 0.00868834928, 0.0185804628, 0.0039441, 0.0388886817, -0.00550545333, 0.0089220209, 0.0120447287, -0.00467343954, -0.00126306782, -0.0105364816, -0.0063764127, -0.00399012584, -0.011513656, 0.0198125504, 0.00719426433, 0.00545234606, 0.0108905304, -0.00587366382, 0.00562937045, 0.00473362766, 0.0177165847, -0.0249674972, 0.00812895223, 0.0094318511, -0.0197134186, 0.00242523197, 0.00182334951, -0.000890431867, 0.0024978118, -0.0187928919, 0.0270351395, 0.00087051664, 0.0234096833, -0.0151815973, 0.00413882639, 0.0018118429, -0.0207472388, -0.015238245, 0.0289470013, -0.0127669871, 0.00921942201, -0.00470176339, 0.0108480444, 0.00832722, 0.00302180345, 0.0136237843, 0.00712699536, -0.00360421324, -0.016583629, -0.0124341818, 0.00343249971, -0.00934687909, -0.0292019155, -0.0111029595, 0.00939644594, -0.000692607253, -0.00577453, 0.0104444297, -0.008008576, 0.00157197507, 0.0144805815, 0.0135600558, 0.00206410256, -0.0114570074, 0.0227015875, 0.0290319733, 0.0111737689, -0.00322007062, -0.00133210735, -0.0142823141, 0.00260756677, 0.00299524982, 0.00151001662, -0.00214553368, 0.0146576054, -0.0169093534, -0.0136875128, -0.0091202883, 0.00578515185, 0.0172209162, 0.00570018, 0.0258313753, -0.0112729026, 0.00689686369, -0.0194301791, 0.0344418325, -0.0179573372, 0.00306251901, -0.00699953781, -0.00528594339, 0.0140344808, -0.00646846509, -0.000525319367, 0.00335814944, 0.00560812745, -0.00594447367, 0.000249161589, -0.0106781013, -0.0184813291, 0.000941768871, 0.0243443716, -0.00809354801, -0.00252613565, 0.0103877811, -0.0180847943, 0.0121863475, 0.00643660082, -0.00543464348, 0.0026535932, -0.0261146128, -0.0185521394, 0.00235265191, -0.0297967177, 0.0264686625, -0.00389807345, 0.0142610716, 0.0175183173, 0.0135458941, 0.0104302671, 0.0120730521, -0.00308730244, 0.00430876948, -0.00399012584, -0.0117119225, 0.00630206242, 0.00428752694, 0.0135104889, -0.0177732315, 0.0143248, 0.0118039753, 0.0291452687, -0.0185096525, -0.0152948927, 0.0195293128, -0.0133051407, -0.0116269514, 0.012512072, 0.00936104078, 0.00465573696, -0.00704910466, -0.00850424357, 0.0168102197, -0.0100337332, 0.00434417464, -0.001293162, 0.00182511972, 0.0253923554, -0.00975049473, -0.00466281828, -0.0128094731, -0.00691810669, 0.0138362134, -0.0017445737, 0.00518326927, -0.000996646355, 0.0344701558, 0.0114074415, -0.00584179955, 0.0249674972, 0.00492835464, -0.0231547691, 0.00671983976, 0.0257180799, -0.00243408303, -0.0261004511, -0.0110038258, 0.0244010184, 0.00802981853, -0.0136450268, -0.0033315958, 0.00533551024, 0.0149974925, 0.00105329417, 0.00311562628, -0.0090211546, 0.0179573372, 0.0165128205, -0.0128944442, 0.0154223507, -0.0112516601, 0.021427013, -0.0232255775, -0.0239903238, -0.000240310386, -0.00355995726, 0.0307597294, -0.0101824338, 0.0208888594, 0.0211579353, 0.00428752694, -0.00717302179, -0.0207614, -0.0116269514, -0.0128802825, 0.0225316435, -0.00316696335, 0.00247125817, -0.0184671674, 0.00798733346, 0.00761912251, -0.00286956271, 0.000333690667, 0.00755539397, -0.0150541402, 0.00142061943, -0.00778906606, -0.00885829236, -0.00659592263, 0.0258738603, -0.00686854, -0.0112091741, -1.80896623e-05, -0.00539215794, 0.0216394421, 0.0169518404, 0.0219651666, -0.0101965955, -0.00549837248, -0.00469468255, -0.00697475439, -0.0236079507, -0.00249604159, 0.000342320593, 0.000689066772, -0.00824932847, -0.00145690935, 0.00863878243, -0.00487170648, 0.0110958787, 0.00408925954, 0.00808646623, -0.00965844188, -0.0118039753, 0.0239761602, -0.00292089977, 0.0228998531, -0.00141265336, -0.0175183173, -0.0223617, -0.0111596072, 0.00621709088, -0.0218801945, 0.00849716272, -0.000662513135, -0.0168243814, 0.00318112527, 0.00134449895, -0.00136839726, 0.00677294703, -0.0166119542, -0.00114534679, 0.00882996805, 0.0066065439, -0.00874499697, -0.0125899632, 0.0133971935, 0.00929023139, -0.0232539028, -0.0143885287, -0.0125262346, -0.00113118475, -0.0018906187, -0.0112729026, 0.0183255486, 0.000774481, 0.00746334111, -0.0136521086, -0.0192035884, 0.000222829243, 0.00930439308, -0.00674816361, 0.0131989261, -0.0149833309, -0.00779614691, -0.00989211351, -0.00679773046, -0.0100054089, 0.0329406671, -0.00519035, 0.00829889532, 2.0053526e-06, -0.0128519591, 0.006298522, -0.0103877811, 0.0109684207, 0.004609711, 0.016753573, -0.0237778947, 0.00451411773, 0.0208322108, 0.00462741312, -0.0191752631, 0.00545588648, 0.00537445536, -0.00364669901, 0.0110109067, 0.00297754747, 0.000732437707, -0.0167252496, 0.0257180799, -0.00237566512, -0.0248117149, -0.0176599361, 0.00569663942, 0.0116906799, -0.0176316127, 0.00686499942, -0.00600112136, 0.0100549757, 0.00462033227, 0.0137795657, -3.31920419e-05, 0.0156489406, 0.00550191291, 0.0288053825, -0.00295453425, 0.0036236858, -0.00904947799, -0.0117827328, -0.0238628648, 0.012469586, -0.0275024828, -0.0105294008, 0.0204923246, -0.00971509, -0.0170792975, 0.012469586, -0.0308730248, -0.00113472529, 0.00950266048, 0.0308447015, 0.00269607897, 0.00527178124, -0.00141442358, 0.0139849139, -0.0109825833, 0.0225882903, -0.0123350481, 0.0201949235, 0.00246063666, -0.0187645685, -0.00585950166, -0.0149974925, -0.00626665773, 0.00599758094, -0.00103736192, 0.00834138133, -0.0135175698, -0.0160313137, 0.020039143, -0.0254914891, 0.00357765961, 0.0082068434, -0.00772533705, -0.00305897859, -0.000999301788, -0.0263553672, -0.00298108789, 0.0178157184, 0.0147992251, 0.00921942201, -0.0397100747, -0.00248896051, 0.0237495694, -0.00951682217, -0.00519743143, 0.00255622971, 0.00268191705, -0.0105294008, 0.00580993528, -0.0186937582, 0.0268085487, 0.00621709088, -0.00228892313, 0.0238628648, -0.00161711627, -0.00578161096, 0.00294922362, 0.0327707231, 0.00450349646, 0.0211296119, -0.00183574122, 0.0003682104, -0.0301366039, 0.0063976557, -0.00610733591, -0.00972925127, 0.0026323502, 0.0152099216, -0.019132778, 0.00754123181, 0.0207755622, -0.0215827934, 0.00986379, 0.00090592145, 0.00693226885, -0.0132626547, -0.0201666, 0.000459377858, -0.0178298801, -0.0010355917, -0.0165128205, 0.0111029595, -0.00233140914, -0.0058913664, -0.000891759526, -0.0101895146, -0.0198267139, -0.00180741737, -0.00848300103, -0.00273856474, 0.0109896641, -0.0100833, -0.00260579656, -0.00318643614, 0.0174899939, -0.0174758323, 0.0298816897, 0.0366510972, -0.00997708552, -0.00959471334, 0.00606839033, -0.00560104661, -0.00264651212, 0.0146717681, -0.00544526521, -0.0154789984, 0.0122996429, 0.0207330771, 0.0311845876, -0.00272440282, -0.00977881812, 0.0192177501, -0.0674108267, 0.0151249496, -0.00185344368, -0.00351393083, -0.0145301484, -0.00234380085, 0.0197559036, -0.0195293128, 0.0201241132, -0.002857171, 0.00100549764, 0.0278706942, 0.0354331695, 0.0133901127, -0.0278282072, -0.0089361826, 0.025194088, -0.0157480743, 0.00259871571, 0.0103240525, 0.012512072, -0.00313155865, 0.00861045811, 0.00289965677, -0.00612857845, 0.00773241837, 0.0102674048, -0.0170226488, -0.0186087862, -0.0247125812, 0.0161729325, 0.0122713195, 0.00677294703, -0.016753573, 0.0140415616, 0.00146487541, -0.00599049963, -0.0191186164, -0.0100266524, -0.0164844953, 0.00618522661, -0.0182264149, 0.00866710581, -0.0130643882, -0.0209738296, 0.000208999219, -0.0130856307, -0.00634100754, -0.00623833388, -0.00920525938, -0.0209738296, 0.00388391153, -0.0201807618, 0.0135034081, -0.00262526935, 0.0114994934, -0.0372175723, -0.00650741067, 0.0232680645, 0.011428684, -0.000504076481, -0.0454315, -0.0193027221, 0.00307668094, 0.0196709316, 0.00685791858, -0.0131706027, -0.00401844969, -0.0147425774, 0.00559750618, -0.0164703336, 0.0135529749, -0.0138220517, -0.00948849879, 0.00155604293, 0.0148275495, 0.0187504068, 0.00492481375, -0.0106851822, 0.000790413178, 0.010954259, -0.000690837041, 0.0154365124, 0.0306747574, 0.0182972234, 0.0145159867, 0.00865294412, -0.0081501957, 0.0159180183, 0.0217244122, 0.000756336, -0.0176316127, -0.0316094458, 0.00176316127, 0.0148700345, -0.00936812162, -0.00972217, -0.0191752631, 0.0178440418, -0.0023615032, 0.0202374086, 0.00483630178, -0.00197382015, 0.0154365124, 0.0550332926, -0.015847208, 0.0258596987, 0.00265536341, -0.0126607725, 0.00194018555, 0.021384526, 0.0248117149, -0.00254029757, 0.012207591, 0.0179148521, -0.0152240833, -0.00180122152, -0.00856797211, 0.00240221876, -0.0072473716, -0.00827765279, 0.00871667266, -0.0090211546, -0.0215544701, -0.000483718701, 0.0261995848, 0.00886537321, -0.000430168875, -0.00960179418, -0.021299554, -0.00238805683, 0.0145301484, 0.000440569042, -0.00301472261, 0.0157480743, -0.0148983588, 0.00331212324, -0.00100992317, 0.00489649, -0.0152099216, 0.0207189154, -0.0105789676, 0.026879359, 0.00523283612, -0.00844759587, -0.00198621186, 0.0128519591, -0.0053284294, 0.00186406507, -0.017574966, 0.000355818687, -0.00970800873, 0.00807938538, -0.016796058, -0.014331881, -0.0144805815, -0.00725799333, -0.010260324, -0.016583629, -0.00114180625, 0.00964428, -0.00712699536, 0.0248542018, -0.010996745, 0.00342895929, -0.00187822699, 0.00904947799, 0.0250383057, 0.00993459951, 0.00539569836, 0.0038485066, -0.00453536073, -0.0143248, 0.0034519725, 0.00618522661, -0.0264969859, -0.000587277871, -0.0210163165, 0.00757663697, 0.022772396, -0.00104798342, 0.00521867396, 0.0113012269, 0.00870959181, -0.000203909774, -0.0317793898, 0.000261774578, -0.00114623189, 0.0176599361, -0.00114180625, 0.00125156122, 0.0219793282, 0.00138255919, 0.00167022354, -0.0112233358, -0.0014958547, -0.00862462, -0.0126607725, 0.00950266048, 0.0100620566, 0.0182405766, -0.000531957776, 0.0159605034, -0.00334398751, 0.00477611367, -0.0208038874, 0.0119739184, -0.00405739527, -0.0104090245, 0.022687424, 0.0142256664, -0.00605422864, -0.0102107571, -9.75846051e-05, -0.00369272544, 0.00439374149, -0.0300516319, -0.0139990756, -0.000569132855, 0.00349268806, 0.0380106419, -0.000585950213, 0.0146434437, 0.00784571376, 0.0478390269, 0.00131971564, 0.0127953114, 0.00361129409, -0.00834138133, 0.0179290138, 0.0081501957, -0.00609317375, 0.00459908927, 0.00688978285, 0.0120730521, -0.00410696212, 0.00178263395, 0.000212539715, -0.0082068434, 0.00277042901, 0.0214836597, -0.0156772658, -0.0186087862, -0.0122429952, -0.00270493026, 0.0116127888, -0.0267235767, 0.031212911, 0.00136485673, 0.0110604735, -0.00921234, -0.00757663697, 0.00725799333, 0.0417493917, 0.00790236145, -0.00215969561, 0.00391577603, 0.0264969859, 0.00730756, 0.0071694809, -0.0218093842, -0.0101965955, -0.00267483597, -0.00292621041, -0.000356703822, -0.0115632219, -0.00734296488, -0.0147425774, -0.0132201696, 0.00699953781, -0.00122677791, -0.0103594577, 0.000291647419, -0.012122619, -0.00873083435, 0.023678761, 0.0207755622, 0.00217916816, -0.0254206788, -0.00481505878, 0.00164101459, 0.00866710581, -0.0213137176, -0.00946017448, 0.0175608024, -1.8546054e-05, -0.02900365, -0.0120518096, 0.0217527375, -0.00608255249, 0.00435479591, -0.0034785259, 0.00203400827, -0.00288549485, -0.0236646, -0.0258738603, 0.0152948927, 0.0127669871, 0.00220395159, -0.0104656722, 0.00754123181, -0.0138220517, -0.0143602053, -0.00809354801, 0.0147142531, -0.00653219409, 0.00827765279, -0.0224466715, -0.00454952242, -0.0273325406, -0.0198975224, 0.0142256664, -0.0240469705, 0.0325724557, -0.0202657338, 0.0187645685, -0.00451411773, 0.00481151836, -0.000678002776, -0.0141690187, 0.00533197, 0.0101399478, 0.0126324492, -0.00794484746, 0.00662424648, 0.0129794162, 0.0089220209, 0.00562583, -0.0308730248, -0.0246842578, -0.00266952533, 0.00514786458, 0.00484692305, -0.0158896949, -0.0138432942, 0.00152948929, 0.00459200842, -0.00284831971, 0.00412466424, -0.016017152, -0.0118818656, -0.0180281475, -0.000624010398, -0.00548067, 0.000992220826, -0.0196284465, 0.00880164467, -0.0100903809, 0.0270634629, -0.00679773046, -0.010954259, -0.0163570382, 0.0115703037, 0.000891759526, 0.00605068821, -0.00468406081, -0.0256897546, -0.0155356461, 0.0259163473, -0.000647466106, 0.0089361826, 0.0212004203, -0.0066631916, -0.0410696194, 0.00770409405, 0.0147284158, 0.00348206656, 0.00825641, -0.0125191528, -0.00176493148, 0.0170226488, -0.00972217, -0.00295099383, 0.0591402538, 0.0242452379, 0.0222200807, -0.0217952225, 0.0119739184, -0.0105294008, 0.00362545624, 0.0351782553, -0.0188353769, 0.00713053579, -0.00268545747, 0.0172634032, -0.00533197, 0.00598341879, 0.0174333453, 0.00550899375, 0.03367709, 0.010911773, 0.00980006065, 0.0139636705, -0.0111737689, -0.00301649282, 0.00658176048, -0.0235371403, 0.0156064555, -0.00185167335, -0.00609317375, -0.00538861752, -0.00602590479, 0.0288478676, -0.000365776301, -0.000786872697, 0.0179148521, 0.00812187139, -0.0101187043, -0.00568247773, 0.0168102197, 0.0302215759, 0.0117260851, -0.041381184, 0.0179856606, 0.0136450268, 0.00608609291, -0.00480443751, 0.00918401685, 0.00165517651, 0.00536737451, -0.0191894267, -0.00798733346, -0.00483276136, 0.0131706027, -0.020039143, -0.00839802902, 0.00274387538, 0.00414944766, 0.00618168572, 0.0304481667, 0.0159180183, 0.0239903238, 0.0192743968, -0.0116694365, 0.00528240297, -0.00924774539, -0.0046451157, -0.01337595, -0.0314395, -0.00304304645, -0.00219333, 0.00554085802, -0.000115065748, -0.0374724865, -0.0124129383, 0.0115065742, -0.00566477515, -0.00249073096, 0.00650741067, 0.00756247481, 0.00252082502, -0.00263589062, -0.00815727655, -0.0289753247, 0.0078882, 0.000249161589, -0.0273325406, -0.0153515404, -0.00655697752, -0.00760496082, -0.0345268063, -0.0104161054, 0.0102107571, 0.00486462563, 0.00987087097, 0.00678710872, -0.00119314331, 0.0209596679, 0.00857505389, 0.00805814285, 0.00505935214, -0.0162154194, -0.00444684876, 0.00756955566, -0.0118464613, 0.000338780112, -0.0299949851, 0.00211543939, 0.0249958206, 0.00800149515, 0.0260862894, 0.00927607, -0.000107431573, -0.0242452379, 0.00638349354, 0.00156046858, -0.00799441431, 0.0219934899, 0.0144876624, 0.00536029367, 0.0174616687, 0.00885829236, -0.0163287148, -0.000863878231, -0.00356172747, -0.0174899939, -0.0124412626, 0.00580993528, 0.00791652314, 0.0147284158, 0.00533197, 0.0254631639, 0.012165105, -0.00286071142, -0.0197700653, 0.00594093278, -0.00554085802, 0.0214553364, 0.0109400973, -0.0223333761, 0.00522221485, 0.016753573, 0.00256685121, -0.00857505389, 0.023027312, 0.00967260357, 0.0145867961, -0.00802273769, -0.0107984776, 0.0150541402, 0.0160737988, 0.0461112708, -0.00297754747, 0.000717390678, 0.000875827332, -0.0152665693, 0.00622417172, -0.00436541717, 0.0257322416, 0.0170226488, -0.00930439308, 0.0144522581, -0.0191894267, -0.0078103086, 0.0053284294, 0.0228007194, -0.00302357366, -0.00553377718, -0.0100337332, -0.0125049911, 0.0027314839, 0.0111454455, 0.00841219071, 0.014154857, 0.00979298, -0.00133564777, 0.0090353163, -0.0148275495, -0.0170651358, 0.0013267966, 0.0131989261, 0.00789528061, -0.0161446091, -0.000493012485, -0.00885121152, 0.0112870643, 0.0572708771, 0.00225528865, -0.0193310454, 0.00957347, -0.0121013764, 0.0226166155, -0.00665965118, -0.0309863202, -0.0138928611, -0.00918401685, -0.00422733836, 0.0129935779, 0.0149833309, 0.0244718287, -0.016102124, -0.00667735375, -0.0193027221, 0.0256897546, -0.0119314324, -0.00462033227, 0.00116127892, 0.0100620566, 0.0226732623, -0.00180830248, -0.00225528865, -0.0156631041, 0.0167394113, -0.0109400973]
14 Nov, 2021
jQWidgets jqxSortable scroll Property 14 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSortable represents a jQuery plugin that allows you to reorder elements in an Html list or div tags using the mouse. The scroll property is used to enable or disable if the page scrolls when coming to an edge. It accepts boolean type values and its default value is true. Syntax: It is used to set the scroll property $('Selector').jqxSortable({ scroll : boolean}); It is used to return the scroll property. var scroll = $('Selector').jqxSortable('scroll') Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link type=”text/css” rel=”Stylesheet” href=”jqwidgets/styles/jqx.base.css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/globalization/gloōbalize.js”></script><script type=”text/javascript” src=”jqwidgets/jqxsortable.js”></script> Example: The below example illustrates the jqxSortable scroll property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link type="text/css" rel="stylesheet" href="jqwidgets/styles/jqx.base.css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/globalization/globalize.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsortable.js"> </script> </head> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>jQWidgets jqxSortable scroll property</h3> <div class="gfg"> <div id="sort1"> <div><li>C</li></div> <div><li>C++</li></div> <div><li>Python</li></div> <div><li>HTML</li></div> <div><li>CSS</li></div> <div><li>JavaScript</li></div> </div> </div> <script type="text/javascript"> $(document).ready(function () { $("#sort1").jqxSortable({ scroll: false }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsortable/jquery-sortable-api.htm 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 scrollSpeed Property/jQWidgets jqxSortable scroll Property
https://www.geeksforgeeks.org/jqwidgets-jqxsortable-scroll-property/?ref=next_article
PHP
jQWidgets jqxSortable scroll Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable scrollSpeed Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSortable scroll Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.024033349, 0.016067775, -0.0141412821, 0.0513731614, 0.0653094947, -0.00498019066, 0.0214100387, 0.0236097928, -0.00780844688, 0.00276848045, -0.00678713247, 0.0369722806, -0.0149747301, -0.0119551904, 0.023022281, -0.00130140781, -0.0259735044, -0.00555745559, -0.0453340821, 0.0203716438, 0.000745491532, 0.00249351119, -0.040278744, 0.0104317572, -0.0604454428, 0.0117775705, 0.0191419683, 0.0201530345, -0.00778112095, 0.0237327609, -0.0181855522, -0.0093045542, 0.00485380739, -0.0119483583, -0.0521382913, -0.00702965166, 0.0159174819, -0.0279136617, -0.0207132213, 0.00702965166, -0.0170105286, 0.0241153259, 0.0135879274, 0.00383249251, -0.00838912744, 0.039595589, 0.000206227036, 0.0137518849, -0.0380926505, 0.0346495584, 0.00278385147, 0.0374095, -0.00338502671, 0.0177756604, -0.0166006349, -0.0367536694, 0.00592977414, 0.0172018111, -0.027981976, 0.00746003864, 0.0258368738, -0.0612652265, -0.026642995, -0.0251400564, 0.00197943789, -0.00111610244, -0.00466935569, -0.00144316221, -0.0438857973, 0.0136630749, -0.0175707135, 0.024894122, 0.020316992, 0.017912291, -0.00494261738, 0.0204672851, -0.0101106754, -0.00328767742, 0.0205765907, 0.0319989212, -0.0175024, -0.0174340829, -0.0663478896, -0.00247472432, -0.0137382215, -0.00559161324, 0.04200029, -0.0298128296, 0.0711572915, 0.00342430803, -0.0164230149, -0.0152206654, 0.0274081267, 0.0156032313, 0.0332012698, 0.00534909358, -0.0273944642, 0.0111422371, -0.00411941716, 0.00760350097, 0.0272578336, 0.0258778632, -0.0139773255, -0.0199890789, -0.0193879027, 0.0187320746, 0.0470829532, 0.01048641, 0.0151386866, -0.0100423601, 0.0516737476, -0.0198524483, -0.000606725924, -0.00730974507, -0.054952886, 0.0271485299, -0.0380653255, -0.0216696355, 0.013902178, -0.00470009772, -0.00907228142, 0.00840279087, -0.018745739, 0.041617725, -0.0200300682, 0.0147014679, -0.0118390545, 0.0167645924, 0.0557726696, -0.0164503418, -0.0183768347, 0.0340483822, -0.00979642477, -0.00234834105, 0.033747796, 0.0215193424, 0.0136015909, -0.0265063643, -0.0608280078, 0.00311688893, -0.0611559227, -0.0100901807, 0.016545983, 0.0195518602, -0.0218882449, 0.0341303609, 0.00167031086, 0.0514824651, -0.0436125323, -0.00632258784, -0.0127613116, -0.04200029, 0.00922257546, 0.0211641025, 0.0432572924, 0.000666501874, -0.00541057764, 0.0363984294, 0.00521246297, 0.0108279865, -0.0144008808, -0.0169695392, 0.0327367261, 0.0263150819, -0.0221615061, -0.00802022498, 0.0340210572, -0.00188379642, -0.0453340821, 0.0180079322, 0.0078562675, 0.00328938523, -0.0181309, -0.0135059496, -0.0112515418, -0.0239377059, 0.0308512226, -0.0128842797, -0.00755568035, -0.060718704, -0.0355513208, -0.0297308508, 0.0214920156, 0.0169832017, -0.0159038194, 0.0137313902, 0.0129116056, 0.028337216, -0.0381746292, -0.00331329554, -0.0516190939, 0.00955048949, 0.0606094, 0.0318896174, -0.0120986523, -0.0285558254, -0.0274627805, -0.00618595723, -0.0172291379, -0.0187047496, -0.000246148818, 0.0136084221, 0.000845829723, 0.013990988, 0.0140183149, 0.0225577354, -0.00138253241, -0.0414537676, 0.0606094, -0.0105478931, -0.000317239523, 0.00445757806, 0.0362618, 0.0178986285, 0.00194869598, 0.0158355031, 0.00884684082, -0.0253586657, -0.0413717888, 0.0225030836, 0.00416723778, -0.00195040391, -0.0316163562, 0.0198797733, -0.0908867717, -0.0244705658, 0.00771963689, -0.0065377811, -0.0176253654, 0.00840962213, -0.0165869724, -0.0139704933, -0.0293209571, -0.00313055189, 0.0535046, 0.0479300655, -0.00790408906, 0.00925673265, -0.00021124394, 0.0265473537, 0.00372318784, -0.00897664, -0.0216696355, -0.00354898372, 0.0346495584, -0.00452589337, -0.00118868751, -0.0304413307, 0.0103907678, 0.0132600134, -0.0176800191, 0.00379150314, -0.00275994116, -0.0482579805, 0.037846718, 0.000803559553, 0.0059024482, 0.0116067817, 0.0092499014, -0.00176936819, 0.027121203, 0.0527394675, -0.00427654246, 0.00689985277, 0.0162044056, -0.00392471813, 0.0197704695, -0.0136972321, 0.0260008313, -0.0350048, 0.0226943661, -0.0310698319, 0.0391037203, 0.00679738, -0.00492212269, 0.0228583235, -0.0197021533, -0.0392676778, 0.0175707135, -0.0448695384, 0.0143325655, 0.00601175288, 0.0274081267, 0.0515371189, 0.0216833, -0.0180352591, 0.0249624364, -0.0110944165, -0.0290476959, 0.0354146883, -0.0341850109, -0.0093045542, -0.00287607708, 0.0353327096, 0.0396502428, -0.000900055049, 0.0104659153, 0.0269025937, -0.0247438289, 0.0262194406, -0.0274491161, -0.0164776687, -0.0295668934, -0.0110534271, -0.0171471592, 0.0273534749, 0.0192102827, -0.0196338389, -0.00913376547, -0.031397745, 0.0435852073, -0.00400328077, 0.00775379501, -0.035523992, -0.00135520624, -0.00909960736, 0.0123445876, 0.0147697832, -0.0231315847, 0.00195723539, -0.00386665016, 0.000624231703, -0.0346768834, 0.0126588382, 0.0319989212, -0.0386391766, 0.000991426874, -0.00920891203, 0.0100423601, -0.0250580795, -0.0344309472, 0.00292560575, 0.0101448325, -0.0154802632, 0.0126588382, -0.0200847201, -0.0113403518, -0.00918841735, -0.0233228691, -0.00381541369, -0.0240060221, 0.00337990304, 0.0273808017, -0.00187354907, 0.06285014, -0.0568383895, -0.0211231131, 0.0152343279, 0.0611559227, 0.008969808, 0.00123223849, 0.0225304104, 0.0237464234, 0.0116204452, 0.0385571979, 0.000397296593, -0.0204809494, -0.00714578805, -0.0174750723, -0.023227226, -0.0143872174, -0.00323302508, 0.0207268838, 0.00391105516, 0.0174614098, -0.0157671887, -0.028309891, -0.01048641, -0.0155759053, 0.00951633137, -0.0134171396, -0.0412624851, -0.0133419922, 0.0474928468, -0.03178031, 0.00501776394, 0.00258915266, -0.0195108708, -0.017584376, 0.0124880504, 0.00329621672, 0.017584376, -0.00307248393, 0.0363984294, -0.00592977414, -0.0125222076, 0.00944801606, -0.0295942202, 0.0236097928, 0.00985107664, -0.0401694402, 0.0533952937, -0.0262194406, -0.0190053359, -0.00482648099, 0.00563601824, 0.0021655974, 0.0137450527, -0.0285011735, 0.0210138094, 0.0202213507, -0.0208635144, 0.00490845973, -0.0379286967, -0.00725509273, -0.00810220279, -0.0189780109, -0.0117229177, -0.0103634419, 0.0214100387, -0.00791775156, -0.000651130918, 0.0036685355, 0.0432846211, 0.019606512, 0.050170809, 0.0408525914, 0.0464817807, 0.0170651805, -0.0210547987, 0.0226123892, -0.00879218802, -0.0321902037, 0.0108006606, -0.0528487712, -0.0271348655, -0.0447329059, 0.0143735548, 0.0267386362, -0.00171642378, -0.00443708338, 0.0218882449, 0.012180631, -0.0353053845, 0.014168608, 0.0302500464, 0.0491324179, -0.0143325655, -0.0159038194, 0.00411258545, -0.00805438217, 0.0201666988, -0.00148585939, -0.0178849641, -0.0135742649, -0.00279751443, -0.0159857981, -0.00584779587, 0.00362413051, 0.0331466198, -0.00583071727, -0.0533133186, -0.00455322, 0.000365273765, 0.00633283518, 0.0108074918, 0.0201666988, -0.0115999505, 0.0159994606, -0.00800656155, -0.0168465711, -0.012044, -0.0276677255, 0.00855991617, 0.0193605758, -0.0280093029, -0.00886733551, 0.0213963743, -0.00408184342, -0.011763907, -0.044350341, -0.0127681429, 0.009475342, 0.0664572, 0.0134103075, 0.0368083231, 0.000494859472, 0.0145785008, -0.00763082737, -0.00293585309, 0.00685544778, 0.00113830494, -0.000335599267, 0.0188960321, 0.0248258058, -0.0144145433, 0.0356333, 0.00164554652, -0.00599125819, 0.0105410619, 0.0193742402, 0.000290340337, -0.0153846219, -0.00388031313, -0.00301953941, 0.0205765907, -0.0275720842, -0.0249487739, 0.0113540152, 0.0131028881, 0.0126998276, 0.0137040634, -0.00610056287, 0.0212870706, 0.016696278, -0.00215876568, -0.0235004891, 0.0010016741, 0.0194015652, -0.0357426032, 0.00029653142, -0.0127886375, -0.0223527905, -0.00735756569, -0.01550759, -0.0401421115, -0.0320809, -0.0290476959, 0.0195245333, -0.0137792109, 0.024388589, -0.00117417052, 0.00502118, 0.00994671788, 0.0331739448, 0.0396502428, -0.00793141499, -0.0287197828, -0.0291843265, 0.0356059708, -0.0315617025, 0.0133351609, 0.00206483225, 0.022188833, -0.00581705384, 0.0149883926, -0.00585121149, -0.0299221333, -0.0124812182, -0.00226636254, -0.0198661108, 0.00812269747, -0.0491324179, -0.00695108902, 0.012774975, 0.0207542107, -0.0110056065, -0.000775379478, 0.0125768604, 0.00562577089, 0.014851762, 0.0156305581, -0.00399986515, -0.0170378536, -0.0180762485, -0.00520563126, -0.0255909394, -0.0308512226, -0.011880043, -0.0397048965, 0.00529444125, 0.0095095, 0.0345675796, 0.0165869724, 0.0179806054, -0.0289110653, 0.0234321728, 0.00964613073, -0.019100979, 0.00293243746, -0.000982033438, -0.00274457014, 0.00371635635, 0.0146058267, 0.0142505867, 0.033747796, 0.0448968634, -0.0159857981, 0.0360705182, 0.0144691961, 0.00309981, -0.0191692933, 0.00899713486, 0.0191146415, -0.0209181663, 0.00936603732, -0.0235414766, -0.00269674929, -0.0272168443, -0.00540033029, -0.0116477711, 0.0360158645, 0.0185817815, -0.00123480032, 0.000482904288, 0.0041467431, -0.0454160608, 0.018117236, -0.00743271271, -0.0293209571, 0.00808854, 0.019128304, 0.0277906936, -0.00567359151, 0.0192649346, -0.00450539868, 0.00625085644, 0.0218609199, 0.0207815357, -0.00827982277, -0.0515917689, 0.014824436, 0.0229403023, -0.0163273737, -0.0381746292, -0.0053115203, -0.0107596712, 0.0120713264, -0.0307965707, -0.0173794311, 0.0231179222, -0.0124129029, 0.0280912817, 0.00872387271, 0.0342669897, 0.015712535, -0.0125017129, -0.0124402298, 0.0131507097, -0.0435305573, -0.00336453202, -0.00441317307, -0.0234731622, -0.00750785926, 0.0207405463, 0.0153709585, -0.0286378041, 0.0237737503, -0.0271348655, 0.0094616795, 0.0220795292, 0.0195245333, -0.00631917221, 0.0506080277, -0.00294268457, 0.0182538684, -0.00926356483, 0.0339117497, 0.0333652273, 0.0116477711, 0.0205765907, -0.000832593592, 0.00468301866, 0.00941385794, -0.007337071, -0.00201530359, 0.000966662541, -0.0164366793, 0.00644897111, 0.012624681, -0.0272031818, -0.0133351609, 0.0482306518, 0.0262467656, -0.00146707264, -0.0166006349, 0.0418363325, 0.0379560217, 0.000568298507, 0.0405520052, -0.00424921606, -0.00428679, 0.00595368491, 0.0143598914, -0.0134308022, -0.0219702236, -0.0127271535, 0.0195245333, 0.0208908413, 0.0327367261, -0.00240640901, 0.0242929459, 0.0201257095, 0.0228856504, -0.0218472555, -0.015712535, -0.0107186818, -0.00739855506, 0.0250307526, 0.0285831522, -0.00338502671, 0.0147697832, 0.0181309, 0.0435032286, -0.0155212525, -0.028309891, 0.015712535, 0.00996038131, -0.0273671392, -0.0207542107, 0.00471034506, -0.00366170402, -0.0298674814, 0.0167645924, -0.0226260517, -0.00138509413, 0.0117844017, 0.0376827605, -0.0121601364, -0.0143872174, 0.0347588621, 0.00161992828, -0.00190087524, 0.0372182168, 0.0207542107, -0.010336116, -0.0073643974, -0.00622353051, -0.0294302627, 0.00256011868, 0.00151403947, 0.0321902037, -0.00839596, -0.0234458353, 0.00584779587, -0.0197158158, 0.028993044, 0.00605615787, 0.0124948816, 0.00815002434, 0.0111217424, 0.0402514189, 0.031752985, -0.0164776687, -0.0270255618, 0.033802446, 0.0131780356, 0.0128706163, 0.0186227709, -0.0136562428, -0.0040066964, -0.0431479886, -0.0108621446, 0.021355385, -0.0100970119, -0.0315890275, 0.0114291618, 0.00845061149, 0.00876486208, -0.018923359, 0.0236507822, 0.00603224756, 0.0285831522, -0.0532040112, 0.00525686797, 0.00481281802, -0.00045728602, 0.0156305581, -0.00218267622, 0.012119147, -0.000881268294, 0.0219702236, -0.0271075405, 0.000156484908, 0.0103839366, 0.0191829558, -0.0581500456, -0.0149337407, 0.0247028396, -0.027954651, 0.00538666733, -0.0192239452, 0.0367809981, -0.00657193875, -0.0156988725, 0.0235141516, -0.0219702236, -0.00122369907, 0.00261818664, -0.0064933761, 0.0169968642, 0.0124607245, 0.00123138458, -0.00905861799, 0.0184588134, 0.00472400803, 0.0265883431, 0.0195245333, 0.0231725741, 0.0149610667, 0.00390080782, 0.0185817815, -0.00180864951, 0.0151523501, 0.0217106249, -0.0186091084, -0.0250170901, 0.0221478436, 0.0157398619, -0.0215056799, -0.00860773679, -0.0164913312, 0.0147697832, 0.0329280086, 0.00351824169, -0.00817735, -0.0221478436, 0.00596734788, -0.00838229619, -0.027654063, -0.0235551409, -0.00307931541, -0.0392130241, -0.0138748521, -0.0204809494, -0.00846427493, 0.015712535, -0.0245388821, 0.0159994606, 0.00635333, -0.0217789412, -0.00533201499, 0.0186364334, -0.0219838861, -0.0167782549, 0.0360431895, -0.00723459804, -0.0101516647, 0.016696278, -0.0120713264, 0.00674272748, 0.0143052386, -0.0434212498, 0.0112515418, -0.0144555327, -0.0143872174, 0.03172566, 0.0225850623, 0.00292731379, 0.0164366793, 0.00843011681, -0.00694767339, -0.0144008808, 0.0114701511, 0.0201257095, 0.0116477711, -0.01586283, 0.0309058744, 0.0489138067, 0.0123377563, 0.0244569033, -0.024894122, 0.0164366793, 0.0324634649, -0.015029382, 0.0115931183, -0.0283645429, 0.0304959826, 0.00832764432, 0.00585121149, -0.0325181186, -0.00269674929, 0.0139090102, -0.00457713, 0.00734390272, -0.00830715, -0.0141002927, -0.0373548456, -0.0526301637, 0.00377100869, -0.00522271032, 0.0097554354, 0.00696816808, -0.00157296145, -0.00367878284, -0.0110397646, -0.0431206636, -0.000634479045, 0.00382907665, -0.0313430913, 0.0278863348, -0.0146604786, -0.0503074415, -0.0259188525, -0.0114633199, 0.0511545502, -0.0277906936, -0.001195519, 0.0205629263, -0.00587512227, -0.0182128791, -0.00539349858, -0.0175024, -0.0401421115, -0.00167714246, 0.0289383922, -0.00910644, -0.0304686558, 0.00637040846, 0.0287471097, 0.0101038432, -0.0225714, 0.0130482363, -0.0168465711, 0.00737122865, 0.00197431422, -0.00273261499, 0.0382292829, -0.0103839366, -0.00259769196, 0.0182128791, -0.0027121203, 0.00175228936, -0.0279683135, 0.0110465959, -0.0327367261, -0.029703524, 0.00669832248, 0.00125956465, -0.00160284946, -0.00378467166, -0.0298128296, 0.0179942697, 0.0190326627, 0.00754884863, -0.0157671887, -0.0323268361, 0.010336116, -0.0220931917, 0.00321423821, 0.0142369233, 0.0227626823, 0.0232135635, -0.0125905229, -0.0263560712, -0.0280093029, 0.0188140534, 0.0116614345, -0.0274901055, -0.00269845733, 0.0372182168, 0.0191966202, -0.00725509273, -0.000740367861, -0.0109236278, 0.000870594056, -0.0283918697, -0.00140046515, -0.0262194406, 0.0348135121, 0.0100013707, 0.0107186818, 0.0352234058, 0.014851762, 0.012180631, -0.0302500464, -0.014851762, 0.00740538631, -0.016873898, -0.00574532291, -0.0142369233, -0.0330373161, -0.00270870444, 0.0102541372, 0.0206312425, -0.00865555741, -0.00720044039, 0.0133351609, -0.0153163066, -0.0190736521, 0.0092499014, 0.00149781455, 0.0330646411, 0.0298128296, -0.0149474032, 0.0256455913, 0.00648654485, -0.0340483822, 0.0130072469, -0.0238284022, 0.00986474, -0.0112857, -0.0174614098, -0.00966662541, 0.0277770311, 0.0120713264, -0.0111832265, -0.0305506345, -0.00605615787, 0.0189780109, 0.0285558254, -0.00970761478, 0.0299767852, 0.00123309251, 0.0143052386, 0.0240060221, 0.0333105773, -0.0157671887, -0.0224620942, -0.0209454931, -0.00538666733, -0.0205356013, 0.0287471097, 0.000562320929, 0.0264517125, -0.00775379501, -0.00110329327, 0.0105615566, 0.00799289905, 0.0213690493, -0.039896179, 0.00371635635, -0.0255226232, 0.0155622419, 0.0237054341, -0.00382566079, -0.0117980652, 0.0256592538, 0.0120098423, 0.0125222076, 0.0379833467, -0.000526028394, 0.0272031818, -0.0255772751, -0.00301953941, 0.0226943661, -0.00104010152, -0.0134512968, -0.0085872421, -0.00198626937, -0.0018223126, 0.00402377546, -0.00721410336, 0.0269572455, -0.00651045516, 0.00155929837, -0.0229403023, -0.0327367261, 0.00709796743, -0.0246755127, 0.0459079295, 0.0141412821, 0.0188960321, 0.017912291, -0.00254987134, 0.0116546024, -0.0268342793, -0.000561893918, -0.0157945137, -0.022871986, 0.0208498519, -0.0105615566, -0.00169678312, -0.0132326875, 0.00877169427, -0.0154392738, 0.00268137828, -0.0316163562, 0.0107323453, 0.0383385867, 0.0112652052, -0.0121533051, -0.00102046086, 0.00639431877, 0.0176253654, 0.022011213, -0.00911327079, -0.00156698388, -0.00106401194, 0.0227353554, -0.0139704933, 0.0154256113, 0.00879902, 0.010247306, 0.0260554831, -0.00255328696, -0.000384273968, -0.00147475814, 0.0156032313, -0.0125495344, 0.0326274224, 0.0148790879, -0.0138816833, 0.00273773866, -0.0109851118, -0.0103907678, 0.00533201499, -0.0163273737, -0.0138475262, -0.0239240434, 0.00424921606, 0.00610397849, 0.0326547474, -0.012474387, -0.0186910853, -0.0192512721, -0.00171898562, 0.0552261472, -0.00283167232, -0.00793824624, -0.0139226727, -0.00266600749, -0.0147014679, 0.029348284, 0.0133351609, 0.0273124855, -0.0211367756, 0.024088, 0.0159311444, 0.0174067561, 0.0217926037, -0.0154529372, -0.00913376547, -0.000513219216, 0.0114018358, 0.0114291618, -0.0199344251, 0.00991256069, 0.03178031, -0.0120166745, 0.0148380985, 0.0309878532, 0.0087307049, -0.0207132213, -0.0121669676, -0.039896179, 0.00681104278, 0.0104522519, 0.019961752, 0.0208771788, -0.0192785989, -0.00985790789, 0.013902178, -0.0120508317, -0.0235688034, -0.0444596447, 0.00302637112, -0.0174204204, -0.00370952464, 0.0105342306, 0.00646946579, -0.00935237482, 0.00888099801, -0.0241836421, -0.00368903019, 0.0034072292, 0.0383112617, -0.0371362381, -0.00576923322, -0.0345675796, -0.00370269315, 0.00638407143, 0.00173521042, -0.00294610043, -0.0271485299, 0.0158764925, -0.0390217416, -0.0135332756, -0.00940019544, -0.00329621672, -0.0110602593, -0.0139226727, -0.00116477709, -0.0192239452, 0.0034430949, -0.00273090694, 0.0248667952, 0.0324634649, 0.0182265416, -0.00406134874, 0.00474791834, -0.0121123157, 0.0110602593, -0.00884001, 0.0197158158, -0.00265234429, -0.0135537703, -0.0242929459, -0.00501434831, -0.0166006349, -0.00316470955, -0.0107118506, 0.0128842797, -0.0312884413, -0.0162317324, 0.00183768349, 0.0117434124, -0.0158491656, -0.00746687036, -0.0264243856, 0.0105205672, -0.0194835439, -0.00321765407, 0.0363711044, 0.00279751443, 0.0070433151, -0.0148107726, 0.0152206654, -0.00513731595, 0.000890661671, 0.01550759, -0.00529785734, -0.00962563604, -0.000506814686, 0.00314763072, -0.0200573932, 0.0506900065, 0.0241973046, 0.000689131324, 0.000707491068, 0.0150840348, -0.000716030481, 0.00346358935, -0.0107801659, -0.00659243343, 0.000560613, 0.0111422371, -0.0137108956, 0.0131438775, -0.0107050193, 0.00622353051, -0.00823200215, -0.00389397633, 0.00607323647, 0.0145921633, 0.0119756851, -0.0138611896, -0.0220248755, 0.00267283898, -0.0111354059, 0.0166416243, -0.00575557025, 0.0214100387, -0.00364804082, 0.0279683135, -0.0357426032, 0.0302773733, 0.00137313898, -0.00285387458, -0.0259461794, 0.00692717871, 0.0280639548, 0.0344309472, 0.00161053496, -0.000381071703, 0.0024730165, 0.0181445628, -0.0247848164, -0.00365487253, 0.00777428923, -0.0180079322, 0.00357289403, -0.022366453, 0.00475475, 0.0132395197, -0.00798606686, 0.00132958789, 0.00629526144, 0.0248804595, 0.00228002551, -0.0204946119, -0.00120491243, -0.0151660126, -0.00823200215, -0.0359612107, 0.0308238957, 0.000580680673, 0.0110329324, -0.0070159887, 0.0175297242, -0.0107665025, 0.0214510262, 0.0195518602, 0.0134376334, 0.012979921, 0.0430386849, -0.0103429472, -0.0039622914, -0.001919662, -0.0244432408, 0.0176800191, -0.0111285746, -0.0175297242, -0.00334916124, -0.00765132159, 0.0110670906, -0.024060674, -0.0240196846, 0.010069686, 0.0274901055, 0.00669149077, 0.00619620411, 0.0157398619, 0.0130755622, 0.00459762476, -0.00317154126, 0.0391857, -0.0114633199, 0.018745739, 0.0145921633, 0.0336931422, 0.00353190466, 0.0183904991, -0.0227216929, 0.00753518566, 0.00251912931, -0.00404768577, 0.0151113607, -0.0280093029, 0.00208532671, -0.0163137112, 0.00248838752, -4.47252205e-05, -0.0119346958, -0.0178849641, -0.00488113333, 0.00610397849, -0.00849160086, 0.0194562189, -0.0188550428, 0.00713895634, 0.00223049684, 0.00845744275, -0.0269845724, -0.0109099653, -0.0177893229, 0.00935237482, 0.0207815357, 0.00845061149, 0.0298128296, 0.0287197828, 0.00961197261, -0.00122882274, 0.00211265287, 0.00267454679, -0.0122011257, 0.0286378041, -0.00208874256, 0.00907911267, 0.00105547253, 0.0253176764, 0.0021655974, -7.65345685e-05, 0.0168875605, -0.0082251709, -0.00925673265, 0.0268206149, 0.0129935835, 0.00133898132, 0.0161224287, -0.0319169424, 0.0132121928, 0.00786993094, -0.0282825641, -0.00849843211, -0.0111968899, -0.0446509272, 0.0048503913, 0.0117502445, -0.0175297242, 0.0058341329, -0.0238284022, 0.00195381977, -0.0129867522, 0.00250375853, -0.0224620942, -0.0149064148, -0.00303320261, 0.0249761, -0.00338331889, -0.00624402519, 0.0205219388, -0.0137313902, 0.0208908413, 0.00686227903, -0.0051988, -0.0126793329, -0.0178986285, 0.00038299305, 0.00300587644, -0.00386665016, -0.0166689511, 0.00848477, 0.000517915934, 0.0266976468, -0.00684178481, 0.02097282, 0.0176117029, -0.00933188, -0.0190736521, 0.0107596712, 0.0112242159, 0.0228583235, 0.00174033409, -0.0229539648, -0.000442342047, -0.0298948064, 0.00619962, 0.0122421151, 0.0145101855, -0.0106162094, 0.019305924, 0.0108963018, 0.0289657172, -0.0217789412, 0.00466594, -0.00519196829, 0.00575898588, -0.0214510262, -0.00821150746, 0.0289110653, 0.0060424949, -0.0043311948, 0.00337477936, -0.00403060718, -0.00391447078, -0.0175160617, -0.0168875605, -0.0131643722, -0.0523295738, 0.00312030455, 0.0136494115, -0.0146604786, -0.0100560226, -0.0279273242, 0.00667441171, -0.033802446, 0.00347042084, -0.00222708122, -0.00446441, -0.00756934332, -0.00327401422, 0.00613130489, 0.00118100201, -0.011347183, 0.000959831, 0.0217789412, -0.0075215227, 0.0214783531, -0.012269441, 0.0161087643, 0.000325565459, -0.00562918652, -0.014824436, -0.0147424573, -0.00585121149, -0.00350799435, 0.00119978876, -0.00289827958, 0.0465091057, -0.00869654678, 0.0247848164, 0.0357152782, 0.0051988, -0.00916792266, 0.00812269747, 0.0112720365, -0.000704502279, 0.0219975505, 0.0115384664, 0.00261135516, 0.0149610667, -0.0265610162, 0.00896297675, -0.00460445601, -0.00591611117, 0.0240470115, -0.00855308492, 0.0180625841, -0.0111285746, 4.6886762e-05, 0.0125905229, 0.0172154736, 0.0376007818, 0.0082934862, 0.00221341802, 0.0136494115, -0.0321082249, -0.00171300792, -0.00623036223, -0.0149610667, 0.0141139561, 0.0224620942, 0.00227661, -0.0127613116, 0.0111900577, 0.0223527905, 0.0409619, 0.00695108902, 0.00429020543, 0.00264892867, -0.00352507317, 0.0214100387, -0.0353053845, 0.00564626558, 0.000406903448, 0.00680079544, -0.00695108902, 0.0072687557, -0.0101516647, 0.0170105286, 0.0219428986, 0.0257685594, 0.00690668402, -0.0304140039, 0.00476841303, -0.00146109506, -0.00885367207, 0.0115316352, -0.0344856, -0.0154666007, 0.00789725687, 0.0103634419, -0.0161907431, 0.0694084167, -0.00218950771, -0.0131165516, 0.000259598426, -0.0125222076, -0.0217516143, -0.0127203222, -0.00164896226, -0.0207952, 0.0195655227, -0.00228685699, -0.0198661108, -0.00257719751, -0.00761716394, -0.022667041, 0.0156715456, -0.0167372655, -0.00273261499, -0.00510657392, -0.022844661, 0.0134786228, -0.00974860415, 0.0245798714, -0.0347861871, 0.0191146415, 0.018923359, -0.00417065341, 0.000485893077, -0.00784943625, 0.0109167965, -0.0118253911, 0.00713212509, -0.00257719751, -0.00707747275, -0.00867605209, -0.0097007826, 0.0194288921, -0.00030293598, -0.00129372242, 0.000588793133, 0.0100013707, 0.0339117497, 0.00929089077, 0.00691351574, -0.00599125819, 0.00530468859, -0.00485722302, -0.00136630749, 0.0119278645, -0.00129201449, 0.0245798714, -0.00753518566, 0.000108397282, 0.0203716438, -0.0238010753, 0.0149337407, -0.0164093524, 0.0135332756, 0.00705697807, -0.0118937064, 0.00452247774, -0.0095095, -0.0087443674, 0.0124333976, 0.00833447557, -0.00270016515, 0.0152889807, 0.0186091084, 0.0108553125, -0.00863506272, -0.00350116286, 0.0221068542, -0.0103497794, 0.0226123892, -0.00208020303, -0.00336794788, -0.00543790357, 0.0254816338, 0.0087512, -0.0231315847, 0.0193605758, -0.0272168443, -0.0172291379, -0.00547206122, 0.00995355, -0.0090244608, -0.0257548951, 0.0108621446, 0.00831398088, 0.000943606079, -0.0149883926, 0.00314592291, 0.0124129029, -0.00737806037, -0.00516122626, -0.0114223305, 0.0071116304, 0.0149610667, -0.00347725255, -0.028309891, -0.013307835, -0.00598442648, 0.0112310471, 0.0106571978, 0.0021075292, 0.0051988, -0.0299221333, 0.0145648373, -0.00794507749, -0.00567359151, -0.00600492116, 0.0260008313, -0.0185271297, 0.00322619337, 0.00284362747, -0.00630892487, -0.0163820256, -0.000678457, -0.0333105773, 0.0150703713, -0.00920208078, -0.00940702669, 0.0216423105, -0.0285011735, 0.0111422371, -0.0171471592, -0.0101380013, -0.0120166745, 0.000950437621, 0.0131712034, -0.00809537154, -0.00169507519, -0.00115538377, 0.0147971101, 0.00387006579, -0.0248258058, 0.0225987248, 0.00176936819, 0.00477866037, -0.0185134653, 0.0315890275, 0.0040066964, 0.00434827339, -0.00221854169, -0.00212802389, 0.00731657632, 0.00685203169, 0.0183768347, 0.0188550428, 0.000799289846, 0.0137928734, -0.012044, -0.0134581281, 0.00830715, -0.00743954396, 0.0202623401, 0.0162044056, 0.00271382811, 0.0298948064, 0.0105069047, -0.00611764146, -0.0104590831, 0.000274755876, 0.0175297242, 0.00358997285, 0.00620986754, 0.00791775156, -0.00868288428, 0.0169422124, 0.00534226233, 0.0233228691, 0.00299050543, 0.00104095554, 0.00287436927, -0.00582047, -0.0111149112, 0.0114701511, -0.0145785008, -0.00772646861, -0.00402719108, 0.0127886375, -0.00734390272, 0.00738489162, -0.00110329327, 0.000354812975, -0.000655827578, 0.00208191108, -0.00116904685, -0.0153846219, -0.030359352, 0.00516122626, -0.0109304599, -0.00027795817, 0.00302637112, -0.0471922606, 0.00827982277, 0.0112105524, 0.0219428986, 0.000818503555, 0.0373001918, 0.00993988663, -0.00851209555, 0.00755568035, -0.00716628274, 0.00426971074, -0.00214681053, 0.000987157109, 0.0194152296, 0.00698524667, 0.02661567, -0.01586283, -0.0255226232, -0.00744637568, -0.00858041085, 0.0296488721, -0.00147902779, -0.0234595, -0.00585462758, 0.00859407429, -0.00778795267, -0.00381541369, -0.0192102827, -0.0244569033, 0.00661634374, -0.00330646406, -0.024388589, -0.0123650823, -0.0118390545, 0.00553012965, -0.0129321, -0.00387006579, -0.0167782549, 0.0247165021, -0.00795191, 0.0215739943, -0.0177210085, -0.0100901807, 0.0361798219, -0.00337990304, 0.0134991175, 0.0223801155, -0.00155759056, -0.0149200773, -0.00299221324, -0.000248710654, -0.00188038067, 0.0135469381, -0.016873898, -0.0176390298, 0.00695450511, 0.0126929963, -0.0181309, -0.0325454436, 0.0131848669, 0.00837546494, -0.0188960321, 0.00756934332, 0.0234321728, 0.0147697832, 0.0318896174, 0.00388714462, -0.0128842797, 0.00259256829, -0.0114223305, -0.0173384417, -0.0191829558, -0.0149610667, 0.00942752138, -0.0253450032, 0.00883317739, -0.0142505867, 0.000359723141, -0.0195108708, 0.00842328556, 0.014523848, 0.0012023506, -0.00974860415, 0.00383590814, 0.00670515373, -0.00672564842, 0.0144828586, -0.00475133397, 0.0085052643, 0.0265336912, 0.00671540108, -0.0346495584, -0.0160267856, 0.00848477, 0.00705014635, 0.0053285989, -0.00830031745, -0.0135196121, -0.0184451509, -0.00973494072, 0.00480257068, -0.0127544804, 0.00137655472, -0.0242656209, 0.0078562675, -0.000336666708, 0.026943583, -0.0097554354, 0.0257412326, -0.0215193424, 0.000943606079, -0.0087443674, 0.00317324908, -0.0312611163, -0.001875257, 0.016901223, -0.0181035735, 0.0123514198, -0.00834130682, -0.0164230149, 0.0218199305, -0.00772646861, -0.000782211, -9.13317854e-06, 0.0214783531, -0.0165869724, 0.00352165755, -0.00582388556, -0.0161770806, 0.0209045038, 0.0306599401, -0.0159721337, -0.00550621888, -0.00133641949, -0.0129867522, 0.0126656704, 0.00825249683, -0.0090244608, 0.0218745824, 0.00864872616, 0.0231042597, 0.01568521, -0.0268752668, -0.00255157915, -0.00755568035, 0.00770597393, 0.000229710437, -0.00563601824, -0.0176936816, 0.00925673265, -0.0119756851, 0.00397595484, -0.0146604786, 0.012713491, 0.00783577282, -0.00476841303, -0.00307589956, -0.0145785008, 0.007084304, -0.00304515776, -0.012713491, 0.0102814632, -0.0150840348, -0.000340295956, -0.00303832628, -0.00463519804, 0.0127818063, -0.0150157185, -0.00576923322, 0.00535250967, 0.0110670906, 0.00494261738, 0.0219019093, 0.015179676, -0.030741917, 0.00394521281, -0.0118322223, 0.0183631722, -0.00966662541, -0.00033538579, 0.00797923561, 0.00819784496, -0.00309639424, 0.00800656155, 0.00257207383, -0.0048094024, 0.00726192398, -0.00722093508, 0.00678371638, -0.000578118837, -0.0205219388, -0.00600833725, -0.00347896037, -0.00820467621, 0.0103224525, 0.00378808752, -0.0017557051, 0.0149200773, 0.0103292847, 0.00653436547, -0.01568521, -0.00156527595, -0.0251673833, 0.007084304, -0.0199071, 0.0109714493, -0.0185134653, 0.00112464186, -0.0256455913, 0.00987157132, -0.0318896174, -0.00318008056, 0.00381199783, -0.0125631969, 0.0022339127, -0.000190108869, -0.00349433138, 0.000430386863, 0.000393667346, 0.00491870707, -0.0194288921, -0.0241289902, 0.00364804082, -0.00259769196, 1.81062424e-05, -0.00139875722, 0.00764449034, 0.0109782806, 0.00824566558, 0.0133829815, 0.000989719, -0.0056496812, -0.00576923322, -0.0110670906, -0.0135264434, -0.0106298719, -0.0188960321, 0.000680164958, 0.00221512606, 0.0206312425, -0.00715261931, 0.0133488234, -0.000118911448, 0.0157671887, 0.0206722319, 0.0132121928, -0.00687252637, -0.0178986285, -0.00377442432, 0.0128296269, 0.035496667, 0.00771280564, -0.00509974267, 0.00386665016, -0.00219463138, -0.0122831045, 0.000564882765, -0.00941385794, 0.00570433354, 0.00426971074, -0.018089911, -0.00214851857, -0.00152770255, 0.0274491161, -0.0267249737, -0.0252083726, -0.00795874093, -0.00656169141, 0.00509632658, -0.00352507317, 0.00502118, -0.0160814393, 0.00417748513, 0.000373813178, -0.00267454679, -0.00289827958, 0.00944801606, 0.0205765907, -0.0179806054, 0.0174614098, -0.00745320739, -0.0168602336, 0.00692717871, 0.0212050918, 0.000455151167, -0.0113881724, 0.00635333, -0.0208908413, 0.0111422371, 0.00960514136, -0.00761033269, -0.0243339352, -0.0220248755, -0.000281587418, 0.00696133636, 0.0129662575, -0.00020451915, 0.00294268457, 0.011613613, -0.0165733099, 0.0271895193, 0.0191966202, -0.00860090554, -0.00551305059, -0.0169968642, 0.0234868247, -0.0202076863, 0.00330817187, 0.00326547492, 0.0109372912, -0.00468301866, -0.0128227957, -0.0264243856, -0.0312884413, 0.0176936816, -0.0112447105, -7.59474788e-05, 0.0243612621, 0.00889466144, 0.0284738466, 0.0039213025, 0.020644905, -0.00748053333, -0.00417748513, 0.00507241627, -0.0109099653, -0.0175297242, -0.000584096415, -0.0207952, -0.00914059673, 0.00436193636, -0.00996038131, -0.0105410619, -0.00863506272, -0.00808170903, 0.00163786102, -0.00364804082, -0.0128774475, -0.00566676026, 0.00981691945, -0.0104249259, 0.000789896527, 0.0109782806, -0.0110261012, -0.00769914268, 0.0120166745, 0.00414332747, 0.0108348178, 0.0106230406, 0.00104010152, 0.0281186067, -0.00512023736, 0.00134325097, 0.00916792266, -0.00502459565, 0.00596051617, -0.00717994571, -0.0212870706, -0.000423768797, -0.0161634181, 0.0171881486, 0.00373685081, 0.000406049483, 0.00319886743, -0.00636699283, 0.0128432903, 0.00786993094, 0.0111217424, -0.0259735044, -0.00411600107, 0.000404982071, -0.00896297675, 0.00886050425, 0.00529785734, -0.00147561205, -0.00845061149, -0.0186637603, 0.033802446, -0.0039657075, 0.0183358453, -0.0168192443, 0.00669490639, 0.00142864522, -0.0088126827, -0.0196475014, 0.0237737503, -0.018773064, 0.0142642502, 0.0111285746, 0.00981691945, 0.0145648373, 0.0146604786, 0.00662659109, 0.00425604777, -0.00795874093, -0.0132463509, -0.0100560226, -0.00660951249, -0.0176936816, -0.0125290398, -0.00897664, 0.0130892256, 0.00479232334, -0.00512706861, 0.00348579185, 0.00650362344, 0.00965979416, 0.0323814861, 0.0157671887, 0.000296958373, -0.0141822714, 0.0087307049, 0.0267113112, 0.0147561207, -0.00452930899, 0.00562577089, -0.0267796256, -0.00241494854, 0.00499385362, 0.00937286951, -0.00378467166, 0.00880585145, -0.0137518849, -0.00140900456, -0.00159857969, 0.00863506272, 0.0192239452, 0.0107391765, 0.00812269747, -0.0133351609, 0.00972127728, -0.0168192443, 0.0258095469, -0.021177765, 0.0129730897, -0.00803388748, -0.00879218802, 0.0160541125, -0.0125836916, -0.00420139544, 0.00745320739, 0.0112105524, -0.0185271297, -0.00161138887, 0.00383590814, -0.0139295049, -0.00310664158, 0.0237464234, -0.0254816338, 0.00061569229, -0.0116819283, -0.0297308508, 0.00675297482, 0.0142369233, -0.00747370161, 0.0115521299, -0.0298401546, -0.017761996, 0.0132326875, -0.0264243856, 0.0267523, -0.0157808512, 0.0163820256, 0.0046249507, -0.00183426775, -0.00486063864, 0.0121123157, -0.00610397849, 0.0172564629, 0.00549255591, -0.0112857, 0.0135606015, -0.00105888827, 0.0218882449, -0.0188687053, 0.0150430454, 0.0102268113, 0.0278316829, -0.0093182167, -0.00916109141, 0.012296767, -0.0166552886, -0.01395, -0.00104607909, 0.0164366793, 0.00896297675, 0.00882634614, 0.0020392139, 0.00804072, -0.0057624015, 0.00911327079, -0.000313610246, 0.00865555741, 0.0184314884, -0.018745739, -0.0258778632, -0.00404768577, -0.00121259782, 0.0156715456, -0.0130482363, 0.00132958789, -0.00424921606, 0.0422462262, -0.000199715723, -0.00124419376, 0.0114564877, -0.00540374592, -0.0274217911, -0.00454297243, 0.0276677255, -0.00720044039, -0.0235278141, -0.0093182167, 0.035496667, 0.0103429472, 0.000415869843, -0.00211777654, 0.00537983561, 0.0217379518, -0.00819101278, -0.00332183507, -0.00598442648, 0.0114769824, -0.00545839826, -0.00872387271, 0.00632258784, -0.01075284, 0.0200710557, -0.0107733347, -0.0243066102, 0.0121738, 0.00442342041, 0.0209318306, -0.00103583187, 0.00904495548, 0.00976226665, -0.00432436308, 0.0113676777, -0.0181445628, 0.00246789283, -0.00176595233, 0.0174340829, -0.0119346958, -9.30796959e-05, -0.0174750723, 0.00599125819, 0.0276813898, 0.00636016112, -0.00927722733, -0.00467277132, -0.0150840348, 0.0117707383, -0.00460445601, -0.00970761478, -0.00443366775, 0.0245935339, -0.0034294317, -0.0044439151, -1.95205848e-05, -0.00794507749, 0.017761996, 0.0121533051, 0.0241699796, -0.0108826393, -0.004484904, -0.0129457628, -0.0036685355, -0.0231589116, 0.00499726972, 0.00585121149, 0.0163820256, -0.00463861367, -0.0157808512, -0.00254987134, 0.00101704511, 0.00715261931, 0.00281117763, 0.0109987753, -0.00131336309, 0.00350457872, 0.00620986754, -0.00842328556, 0.0299767852, -0.00509974267, -0.0183768347, -0.0097007826, -0.014523848, 0.017912291, -0.0214373637, 0.00645580282, 0.00609373115, -0.017051518, 0.000705783197, 0.00677688513, 0.00454297243, -0.000940190337, -0.0306052864, 0.012119147, 0.0172974523, 0.00569067057, -0.00836863276, -0.0125700282, 0.0128979422, 0.00961880479, -0.0189643484, -0.0160814393, -0.0148790879, -0.00834130682, 0.0164503418, -0.0143872174, 0.0187320746, 0.00991939195, 0.002643805, -0.0204946119, 0.00823883433, -0.00143803854, 0.0170925055, -0.00177278393, 0.0245798714, -0.0252220351, 0.000788615609, -0.00735073397, -0.00450198306, -0.00232272269, 0.0181718897, -0.0061552152, 0.0046522771, 0.00817735, -0.0251537208, 0.00203579804, -0.00266771531, 0.00624744082, 0.0163956899, 0.0213143956, -0.0301953945, 0.000126169951, -0.00306052878, -0.00485722302, -0.0242246315, -0.00630209316, 0.002643805, -0.00412283279, 0.01586283, -0.000196299952, 0.00443366775, -0.00964613073, 0.0171744842, 0.0042150584, -0.02643805, 0.000442342047, 0.0148380985, 0.0164640043, -0.026110135, 0.0169558749, 0.00206312421, 0.0111559005, 0.00784943625, 0.0237464234, -0.00241494854, 0.00447807275, -0.00632941909, 0.0224484317, -0.0153982854, 0.0151386866, -0.00270016515, -0.0120508317, -0.00450539868, 0.0133556556, -0.0261238, -0.0114564877, 0.0240060221, -0.0127954697, -0.0127544804, 0.0113198571, -0.0285831522, -0.0147971101, 0.00616546255, 0.0251400564, 0.00953682605, 0.00148585939, -0.00529102562, 0.007084304, -0.0149064148, 0.0159174819, -0.0141276186, 0.0113676777, 0.0040784278, -0.0296488721, 0.00290511129, -0.00733023928, -0.00696475245, 0.0114838146, 0.00554720825, -0.00275481748, 0.00260110782, -0.0186910853, 0.00969395135, -0.0336111635, -0.00548572466, 0.0172291379, -0.00307077612, 0.00196748273, 0.00480257068, -0.0336111635, -0.0167645924, 0.0285285, 0.0117434124, 0.0136699062, -0.0352780595, -0.00195040391, 0.0196475014, 0.00390422344, -0.0007659861, 7.8522653e-06, 0.00631575612, 0.012979921, -0.000557624211, -0.0125631969, 0.0115043083, 0.00364804082, -0.00264892867, 0.0332559235, -0.00774013158, -0.0155485785, 0.00942069, 0.0119756851, 0.00490845973, 0.0159174819, 0.00434485776, -0.0120576629, -0.026287755, 0.00545156654, -0.0186091084, -0.00942069, 0.00218950771, 0.00429362105, -0.0134444656, 0.00735756569, 0.0325454436, -0.0235824659, 0.0117775705, -0.00550280325, 0.0107801659, -0.00798606686, -0.00889466144, 0.00725509273, -0.0129594263, 0.00145170162, -0.000851380348, 0.00423896872, -0.0164093524, -0.00479915505, 0.00509632658, -0.00356264669, -0.0235414766, 0.0123514198, -0.020316992, 0.000761716394, 0.00993988663, -0.00167628843, 0.00108792225, 0.0108553125, 0.0159038194, -0.0125973551, 0.0218472555, 0.0315617025, -0.00589220086, -0.00849843211, 0.00385640282, -0.00555404, 0.00269674929, 0.0169148855, -0.00957098417, -0.00654461281, 0.00730974507, 0.018117236, 0.0224894211, 0.00137484691, -0.0183631722, 0.0264243856, -0.0741085187, 0.00535934092, 0.00501434831, -0.00510657392, -0.00795191, 0.0148790879, 0.0288017616, -0.0167645924, 0.0261784513, 0.00248155603, 0.00141498214, 0.0189916734, 0.0131985303, 0.024238294, -0.028337216, -0.00750102801, 0.0395136103, -0.00970761478, -0.0123650823, -0.00228514918, 0.0166416243, 0.0125700282, 0.013041405, 0.00411941716, 0.0087307049, 0.00989889726, 0.0152616547, -0.00707064103, -0.00457029836, -0.0199207626, 0.0106845247, 0.00691351574, 0.0143598914, -0.0139158415, 0.0208088625, 0.00765815331, -0.00305882073, -0.0229129754, -0.0069032684, -0.00590928, -0.00222878903, -0.0156032313, 0.00424238481, -0.0148380985, -0.0251400564, 0.00743954396, 0.00165920961, -0.00199822476, -0.00149866845, -0.0034652974, -0.0220795292, -0.0061722938, -0.00778795267, 0.00814319216, 0.0147424573, 0.0138338627, -0.0281732604, -0.00634308252, 0.0288837403, 0.00241153268, -0.00675297482, -0.0370815843, -0.0165596455, 0.00254133181, 0.022366453, 0.00114001276, -0.0232682154, -0.0080133928, -0.0188003909, 0.017734671, -0.0152753172, 0.0135674328, -0.00788359437, -0.0127613116, -0.00220146286, 0.00269845733, 0.0195791852, 0.0051988, -0.0112105524, 0.00353532052, 0.00440975744, -0.00587853789, 0.0164913312, 0.0321902037, 0.00984424539, 0.00762399565, 0.00597417913, -0.00924307, 0.0146878054, 0.0141412821, -0.00339869, -0.00855308492, -0.0297308508, 0.0012476095, 0.0275720842, -0.00375734549, -0.0125222076, -0.0156305581, 0.0118868751, -0.00907228142, 0.0100013707, 0.00225269934, 0.0113403518, 0.0131643722, 0.0504167452, -0.0257412326, 0.0178849641, -0.00476841303, -0.00198797742, 0.000864616421, 0.0220931917, 0.0163273737, 0.00942069, 0.00869654678, 0.0190463252, -0.0114564877, 0.00642164517, -0.0131507097, -0.000107329855, -0.0216149837, -0.0019418645, 0.000225013762, 0.00146878057, -0.0150157185, 0.00838912744, 0.0161497537, 0.0141276186, 0.00264722062, -0.0108689759, -0.0141276186, -0.00825249683, -0.00227661, -0.00261135516, -0.00655144406, 0.0119961798, -0.0223118011, 0.00500751706, -0.00447124103, -0.0012706659, -0.0198797733, 0.0190599896, 9.17987854e-05, 0.0259735044, 0.0155759053, -0.00838912744, -0.0101038432, 0.01568521, -0.00981008727, 0.0164913312, -0.0175980404, 0.00426629512, -0.00996721257, 0.0222981386, -0.017761996, -0.00715945102, -0.00348920771, -0.00394862844, -0.0033167114, -0.0104249259, 0.00120149658, 0.0224484317, -0.00352848903, 0.028309891, -0.0168465711, 0.0183631722, -0.00565651292, 0.00267967046, 0.0123719145, 0.00664708577, -0.00861456897, -0.00342260022, 0.00188550435, -0.00836180151, -0.00492212269, 0.00934554264, -0.022011213, 0.0133214975, -0.0193332508, 0.0048503913, 0.012891111, 0.00438584713, 0.00222366536, 0.00523978891, 0.00847793743, 0.00272919913, -0.026110135, -0.00398961781, -0.00585462758, 0.0251127314, 0.0173930936, 0.00665733311, 0.0230905954, -0.00725509273, -0.00188038067, -0.0156578831, -0.0154119479, -0.00531835156, -0.0203716438, 0.0215330049, 0.00932504795, 0.00623719348, -0.00806121435, 0.0110875852, 0.0060595735, 0.0141959349, -0.0316436812, 0.00458396133, 0.0037812558, -0.0127818063, 0.00744637568, 0.0180352591, 0.000385768362, -0.00725509273, 0.00966662541, 0.00336282421, 0.0168602336, -0.0300587639, 0.0116272764, -0.00796557218, 0.0152070019, 0.0308512226, 0.00815685559, 0.0171334948, -0.00543107232, 0.0339664035, -0.00227319403, 0.00484014396, 0.00638748752, -0.0151660126, 0.0208635144, -0.000310407981, -0.00583071727, 0.00398278609, 0.00698866276, -0.00336965569, -0.00625768816, -0.000384273968, 0.00538325123, -0.0155759053, 0.000639602658, 0.0203579813, -0.000971786154, -0.0189643484, -0.0172018111, -0.0159174819, 0.0213827118, -0.0319715962, 0.0232408904, -0.00230052019, 0.00136886933, -0.00579314353, 0.0066060964, 0.00591611117, 0.0379833467, 0.00716628274, -0.00731657632, -0.0133898128, 0.0234731622, -0.00296317926, -0.00320399087, -0.018745739, -0.0030417419, -0.000988865, -0.0138543574, 0.0172428, -0.0195791852, -0.00709796743, -0.0224347692, -0.019128304, 0.00327743, 0.00632941909, -0.00511340564, -0.019100979, 0.00499726972, -0.0101448325, 0.0282825641, 0.0176936816, 0.000521758688, -0.0322175287, -0.00548230857, -0.0054242406, 0.0222161599, -0.024033349, -0.000643018459, 0.0240470115, 0.00748736504, -0.0291843265, -0.0147834467, 0.0202350132, -0.00109560776, 0.00666074874, 0.00432436308, 0.0195791852, 0.0197021533, -0.021177765, -0.0335838385, 0.0265063643, -0.000195446017, 0.00084156, -0.00321765407, 0.012296767, -0.0285558254, 0.000143996, -0.00263868133, 0.0257822219, -0.00234321738, -0.00107340526, -0.0136835696, -0.00569067057, -0.0266566593, -0.0156168938, 0.000289272895, -0.019606512, 0.023678109, -0.0094616795, 0.0179806054, -0.0109509546, 0.00401694374, 0.00808170903, -0.0144145433, -0.0133214975, 0.00893565081, 0.015890155, -0.0172154736, 0.00489138067, 0.00664025405, 0.0168875605, 0.0093182167, -0.0214510262, -0.0290476959, -0.00597076351, -0.000404982071, -0.00663683843, -0.0215739943, 0.00218438404, -0.0109372912, -0.0116614345, -0.00322107, 0.00394179719, -0.017939616, -0.0224894211, -0.0103976, 0.00846427493, -0.00191624626, -0.00476158131, -0.00908594485, 0.008348139, -0.000404128135, 0.0388577841, -0.00345846568, -0.00849843211, -0.0236507822, 0.000173030028, 0.00702965166, -0.0144008808, 0.00713895634, -0.0156168938, -0.00601175288, 0.0199207626, -0.00612105755, -0.00277702, 0.00983741414, -0.00163700711, -0.0407159626, -0.0022202495, -0.00252425298, -0.00533884624, 0.00887416676, -0.0141276186, -0.00143889256, 0.00916109141, -0.00940702669, -0.00882634614, 0.0584779605, 0.0336931422, 0.0213963743, -0.016545983, 0.000957269163, -0.00256865798, 0.00653436547, 0.0311518107, -0.000763851276, 0.0133624868, 0.000201423609, 0.0184724759, -0.0119620217, 8.18717e-05, 0.0116341077, 0.00596734788, 0.0271075405, 0.000935920631, 0.0109919431, 0.0110670906, -0.0131028881, -0.00819101278, 0.0173930936, -0.0296761971, 0.0132053616, -0.00609031552, 0.0033389139, -0.00670515373, -0.0248258058, 0.0255909394, -0.00486405473, -0.00672223279, 0.0251263939, 0.00905861799, -0.00201359554, 0.00983741414, 0.00316641759, 0.0277906936, 0.00730291335, -0.0331192911, 0.0124060716, 0.0160951018, 0.00957098417, -0.00409892248, 0.00938653201, 0.00522271032, 0.00540374592, -0.0165049937, -0.00272407546, 0.00373001932, 0.0181718897, -0.0367809981, -0.0110670906, -0.00182572834, -0.000926527253, 0.000766413112, 0.0197294801, 0.0187184121, 0.0241289902, -0.00206654, -0.00495286472, 0.00720727164, -0.0061722938, -0.0106981872, -0.00346700521, -0.0336931422, -0.00197260641, 0.00627818285, 0.00960514136, 0.00572482822, -0.0202486757, -0.0102541372, 0.0145511748, 0.00252596079, 0.00656852312, 0.0140866302, -0.00854625273, -0.0113130258, 0.00436193636, -0.0108553125, -0.0283645429, 0.0109304599, -0.00762399565, -0.0253586657, -0.0114223305, -0.0173384417, -0.0123924082, -0.02132806, -0.00159516395, 0.00511340564, 0.00613472052, 0.0206039157, 0.0136289168, 0.000425476668, 0.0197977945, 0.0106571978, -0.00357289403, 0.0144555327, 0.00805438217, 0.000922257546, 0.0175980404, -0.0135196121, 0.0109987753, -0.025631927, -0.00441317307, 0.0260418206, 0.00853259, 0.012952595, 0.0143598914, 0.0114906458, -0.0215466693, 0.00459420867, 0.0119278645, -0.000638748752, 0.00655827578, 0.00284533529, 0.00325010391, 0.0305779614, 0.0181035735, -0.00632258784, -0.00138167839, -0.0100560226, -0.0138475262, -0.00601175288, 0.00496652769, 0.0181718897, 0.00261647883, 0.000444903853, 0.0246755127, -0.00124590157, 0.00462153507, -0.0248531327, -0.00543448795, 0.00309297862, 0.0221205186, 0.0258778632, -0.0142232608, 0.00241665635, 0.00981691945, 0.00556770293, -0.0152753172, 0.0278590098, 0.00682470575, 0.0177210085, -0.00459762476, -0.00145938713, 0.0128842797, 0.0129116056, 0.0316983312, 0.00579655915, 0.00164554652, -0.00492553832, -0.0123924082, 0.000780930102, -0.00808170903, 0.0225167461, 0.00626110379, -0.0152479913, 0.0151386866, -0.012952595, -0.00263526547, 0.00127151993, 0.0210274719, -0.0131097203, -0.0181035735, -0.00656852312, -0.0130277416, -0.0056770076, 0.00203238241, -0.0132531822, 0.0102678007, 0.0238284022, 0.003542152, 0.00472742366, -0.0173111148, -0.0185407922, -0.00291023497, 0.00612447318, 0.00211948436, -0.0198114589, 0.00135264441, -0.0106162094, 0.0149474032, 0.0595710054, 0.00488454895, -0.0125836916, -0.000522612594, -0.00272578327, 0.00717311399, 0.00068827736, -0.0264927018, 0.00166945695, -0.00394179719, -0.0134512968, 0.0104590831, 0.00747370161, 0.0212050918, -0.00996038131, -0.00190599891, 7.03968544e-05, 0.0223527905, -0.0205219388, 0.00627135113, 0.000158619761, 0.0162453949, 0.0157945137, 0.00828665495, 0.00430045277, -0.00717311399, 0.00657877047, -0.00378808752]
14 Nov, 2021
jQWidgets jqxSortable revert Property 14 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSortable represents a jQuery plugin that allows you to reorder elements in an Html list or div tags using the mouse. The revert property is used to specify if the sortable items should be reverted to their position in the animation. It accepts number/boolean type values and its default value is false. Syntax: It is used to set the revert property $('Selector').jqxSortable({ revert : boolean/number }); It is used to return the revert property. var revert = $('Selector').jqxSortable('revert') Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link type=”text/css” rel=”Stylesheet” href=”jqwidgets/styles/jqx.base.css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/globalization/gloōbalize.js”></script><script type=”text/javascript” src=”jqwidgets/jqxsortable.js”></script> Example: The below example illustrates the jqxSortable revert property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link type="text/css" rel="stylesheet" href="jqwidgets/styles/jqx.base.css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/globalization/globalize.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsortable.js"> </script> </head> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>jQWidgets jqxSortable revert property</h3> <div class="gfg"> <div id="sort1"> <div><li>C</li></div> <div><li>C++</li></div> <div><li>Python</li></div> <div><li>HTML</li></div> <div><li>CSS</li></div> <div><li>JavaScript</li></div> </div> </div> <script type="text/javascript"> $(document).ready(function () { $("#sort1").jqxSortable({ revert: 2000 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsortable/jquery-sortable-api.htm 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 revert Property
https://www.geeksforgeeks.org/jqwidgets-jqxsortable-revert-property?ref=asr8
PHP
jQWidgets jqxSortable revert Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSortable revert Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0301431865, 0.0146933487, -0.0161044914, 0.060635522, 0.033518292, 0.00186940131, 0.0250805281, 0.0186067261, -0.02745183, -0.00979071669, 0.0117910486, 0.0215890389, 0.0172246788, -0.0401521213, 0.0297212973, -0.0136095323, -0.0216472298, 0.00749942707, -0.0559220128, 0.0110636549, -0.0163227096, 0.0157407951, -0.0284265373, 0.000670565874, -0.0521395653, 0.0115582822, -0.00453529833, 0.0172246788, -0.0148315532, 0.0276264045, 0.00692842295, 0.000113996197, 0.0259243045, -0.0190577097, -0.0405012704, 0.0178938806, 0.00656472612, 0.0143005559, -0.0449529178, 0.00228583394, -0.0172974169, 0.0307832919, 0.0311615374, -0.0159153696, -0.0163954496, 0.031743452, 0.00593553111, -0.00304596033, -0.0100962212, 0.0540016927, 0.0205124971, 0.0147951832, 0.00240403553, 0.021458108, 0.0173410606, -0.058918871, -0.00572458655, 0.0226510335, -0.0416941941, -0.00173574267, 0.0128966868, -0.0205415916, -0.038959194, -0.0167009551, -0.015944466, 0.00985618215, 0.0146642532, 0.00212762598, -0.0290084518, 0.0205706879, -0.0310742501, 0.0090560494, 0.0128966868, 0.0393374413, -0.0203088261, 0.00949975941, 0.00719028478, 0.00914333574, -0.0110709285, 0.0339256339, -0.0133622186, -0.0225201026, -0.0567657873, -0.0144605823, 0.00173574267, -0.000370061432, 0.0162645187, -0.032558132, 0.0752415806, 0.00683022477, -0.0117546786, -0.0347694084, 0.00923789758, -0.00444437424, 0.022825608, 0.0176756624, 0.00149479357, 0.0280337445, -0.0491427034, -0.00618284475, 0.0135440668, -0.00172119483, -0.0157553423, -0.0115655567, 0.0077176448, 0.0127221122, 0.0306378137, -0.00800132845, 0.00740122888, 0.0157553423, 0.0525469072, -0.00351331057, -0.00413523195, -0.0171955824, -0.0515867472, 0.00199305825, -0.0454766415, -0.0367479175, 0.0180393588, 0.0241931081, -0.00569912791, 0.0330818556, 0.00658291113, 0.0676766932, -0.0178065933, -0.00500810426, 0.000858778949, 0.0475424379, 0.0439636633, 0.0149115669, -0.0332855247, 0.0230438262, -0.0180975497, -0.0142278168, 0.0160753969, 0.0585988201, 0.0356713757, -0.00307687442, -0.0727975443, 0.0012656647, -0.0302304737, -0.0245713517, 0.0336346738, 0.0355840884, -0.0129330559, 0.0234075226, 0.011376434, 0.053332489, -0.00812498573, 0.00723756524, -0.00845958665, -0.0315979719, 0.0119510749, 0.0195668843, 0.010081674, 0.0198578425, -0.0285720155, 0.0152316196, 0.0154061941, 0.00454984652, 0.00682658795, -0.00451711379, -0.0164536405, 0.0507720672, -0.0434108451, -0.00329509261, 0.0354386121, -0.00397520559, -0.049317278, 0.0279464573, -0.00313688442, -0.0270299427, -0.00969615486, 0.000689205306, -0.0275391173, -0.00629559066, 0.0260988791, -0.00976162, -0.0118637877, -0.0423633978, -0.0199451298, -0.0264189318, 0.0148097314, 0.00715391478, -0.00112382299, 0.00176211074, -0.020978028, -0.00170391926, -0.0241058208, 0.0122493068, -0.0269135591, 0.0253278408, 0.0611592457, 0.0462040342, -0.0132603832, -0.0183303151, -0.030317761, 0.0161044914, -0.0315397829, 0.00198396575, 0.0211526025, -0.0184757952, -0.00944884121, 0.018184837, 0.0165554751, 0.0309578665, 0.00195487, -0.0668038204, 0.0501901507, -0.038959194, 0.0328490883, -0.0254296772, 0.0115728304, 0.0288629737, -0.0146206096, 0.0298231337, -0.0182866715, -0.0391628668, -0.0630213693, 0.00345693761, -0.00223855348, -0.0183303151, -0.0368352048, 0.0274663791, -0.0812353045, -0.00145751471, 0.00134295027, 0.0166718587, 0.00901967939, 0.0316270702, -0.00513539789, -0.0109399986, -0.0169191733, -0.00192577427, 0.0389882922, 0.0528378636, -0.0278737191, 0.0370388776, -0.0188394915, 3.87848486e-05, 0.00758671388, 0.0362823866, -0.0164536405, -0.0222436935, 0.0135367932, 0.0148024578, -0.00618284475, 0.00653199339, 0.0144169386, 0.00754307071, -0.00457894197, 0.00790676754, -0.0358459502, -0.0211089589, 0.0215599425, -0.00294230669, 0.0243822299, 0.00641924748, -0.0147151705, -0.00112745992, 0.0281355809, 0.0690732896, 0.00724120205, 0.019144997, 0.0285429209, 0.035147652, 0.0158135351, -0.0194214061, 0.0166136678, -0.0156971514, 0.0183885079, -0.00866325665, 0.0261134263, 0.014613335, -0.0176320188, 0.00633196, -0.0188540388, -0.0166718587, 0.0207161661, -0.0451274924, -0.00106744992, 0.02800465, 0.0286593027, 0.0411413759, 0.0172246788, -0.0376207903, 0.0196541715, -0.0215017516, -0.0320926, 0.0274227355, -0.0146569787, -0.0237421244, 0.00601554429, 0.0197851025, 0.0172974169, -0.00657563703, 0.0164390933, 0.0148388268, 0.00349330716, 0.0102562485, -0.00689205341, -0.0293866973, 0.00114382629, 0.00426979968, -0.0513539799, 0.0216472298, 0.0304632392, -0.0124457022, -0.0399484523, -0.0236111935, 0.0407631323, 0.00311688101, -0.0111436686, -0.0473969616, -0.000229356257, -0.0137477368, -0.00603372883, -0.0155080296, -0.0366315357, 0.0105544794, 0.0200178698, 0.00333146215, -0.0321798883, 0.0153480023, 0.035089463, -0.0105763013, -0.0188249443, 0.00617193384, 0.0149988541, -0.00201306143, -0.0402103104, -0.00638651475, 0.0214435607, 0.00671747886, 0.0129694259, -0.0101544131, -0.0237566717, -0.0245568044, -0.0214290116, -0.00892511848, -0.00772491889, -0.0322380811, 0.0247604735, -0.00241494644, 0.0557474382, -0.0495791398, -0.0128312213, 0.00478988606, 0.0330818556, 0.021938188, 0.00141387107, -0.0222145971, 0.0147588141, 0.0157553423, 0.0366315357, -0.00971070305, -0.0165845715, -0.0198869389, -0.0129330559, -0.0507429689, 0.00689205341, 0.000617375248, 0.0169773642, 0.0138641195, 0.0108818067, -0.021050768, -0.0260115918, -0.00765945343, -0.0243822299, 0.016279066, -0.00243858667, -0.0334019102, -0.0144387605, 0.0268699154, -0.042916216, 0.00915788393, -0.00842321664, -0.0243531335, 0.00506629562, 0.0107145058, -0.025546059, 0.0303759519, 0.00120474549, 0.0181993861, 0.00891057, -0.0235093571, 0.0117401313, -0.0487935543, 0.00856142119, -0.00883055665, -0.0180830024, 0.00474987971, -0.0411413759, 0.00113928, -0.00755761843, 0.00252769236, 0.00128839572, 0.0384936631, -0.000283001544, 0.00594644202, 0.0290811919, -0.0244986136, 0.0326745175, -0.0111509422, -0.0223600753, 0.015871726, -0.05571834, -0.0218363535, 0.0141914468, 0.0318598337, 0.00438981969, 0.00149933982, -0.029910421, 0.0503065325, 0.00611374248, 0.0417523868, 0.040675845, 0.065349035, 0.00318416511, -0.0475133434, 0.0147806359, 0.0134931495, -0.0174283478, 0.0125548113, -0.0312779211, -0.0350021757, -0.0104308231, 0.0105035622, 0.0282519627, 0.0012347505, -0.000474624248, 0.0036060533, 0.00082650088, -0.019625077, -0.00547727291, 0.0184321515, 0.0370679721, -0.0338674411, -0.0159590133, 0.0101980567, 0.00936155394, 0.0209198371, -0.00961614214, 0.00170755619, -0.00768854935, 0.0162499715, -0.00825591572, -0.0270590372, 0.0362241976, 0.0354386121, 0.0269135591, -0.048648078, -0.0190140661, -0.00590279838, 0.0226801299, 0.0313652083, 0.011580104, -0.0108308895, 0.0324126557, -0.00319689442, -0.0295321755, 0.0102344267, -0.0210798625, 0.00613192702, 0.00628831657, -0.029910421, 0.00303141237, 0.0256915372, -0.0135440668, -0.00182939461, -0.0507720672, 0.00680840295, 0.0220109262, 0.0473096743, 0.032558132, 0.024251299, -0.00087014446, -0.00441527832, -0.0186067261, 0.00734667433, 0.0346821211, 0.0095724985, 0.0337219611, -0.00739031797, 0.0206870716, -0.0183448642, 0.0410831831, -0.00305323419, 0.0178938806, 0.00296412851, -0.00884510484, 0.0149261141, -0.0216035862, 0.0253423899, 0.00949975941, 0.0119728968, -0.0527796708, -0.02711723, 0.0331400484, -0.00753579661, 0.0221709535, -0.0257351808, -0.025546059, 0.0612756275, -0.0149697578, 0.00464804424, -0.0313070156, 0.0269863, 0.0135440668, -0.0569112673, 0.00402612286, 0.00511721335, -0.0300268028, -0.00896148756, -0.0138350241, -0.0547872782, -0.0224037189, -0.00399702741, 0.00638287794, 0.00319689442, 0.0519940853, -0.0119947186, -0.00206761598, 0.017850237, 0.000843776448, 0.0540598854, 0.00448801788, -0.0244258735, -0.0184903424, -0.000266635179, -0.0237421244, 0.00132294686, 0.00869962573, 0.0153770987, 0.00371698081, 0.0281937718, -0.0119438013, -0.0295612719, -0.0154789332, 0.0125693595, -0.0141332559, 0.0186067261, -0.0628467947, 0.0127948513, -0.0143223777, 0.0227819644, -0.00306778215, 0.00981981214, -0.00727757206, 0.00829228573, 0.00492445379, 0.0165554751, -0.00846686, 0.00151934312, -0.0160899442, 0.00276591373, 0.00186212733, 0.00019560066, -0.0147006223, -0.0344784521, 0.0158571787, 0.00678658113, 0.0142496387, 0.0128021259, 0.0147297177, -0.0162063278, 0.0140168723, 0.0316561647, -0.0176756624, -0.0220691189, -0.0149406623, 0.00763763161, 0.00474987971, -0.016351806, -0.00178847869, 0.012634825, 0.0205706879, -0.0201924425, 0.017166486, -0.00356786512, -0.0401521213, -0.0323253684, -0.00735031115, 0.0071866475, -0.0256042518, 0.00565912155, -0.0279755536, -0.00454620924, -0.0348857902, 0.00235675485, -0.00617557066, 0.00625922112, 0.00449165469, -0.00123020425, -0.00664110249, 0.02697175, -0.0171228424, 0.0248477608, -0.00320780533, -0.014649705, -0.0206143316, 0.037329834, 0.0386682376, 0.0138422977, 0.00824864209, 0.0100962212, 0.00127112016, 0.0225782935, 0.00709936069, -0.00996529125, -0.0451274924, -0.00735031115, 0.0277718827, 0.00288957055, -0.0349148884, -0.0105326576, -0.0152316196, -0.000468259561, -0.0301140901, -0.0119438013, 0.00771037117, -0.0124384286, 0.0179084279, 0.0249932408, 0.0309869628, 0.0103944531, -0.0153480023, 0.00516085699, 0.00859779119, -0.0155371251, 0.00727393478, -0.0143514732, -0.0215599425, -0.0256915372, 0.0151297851, 0.0220982134, -0.0202069916, 0.016831886, -0.0254587717, 0.0163663533, 0.00945611577, -1.45265594e-05, -0.000401430269, 0.0605191402, -0.0182139333, -0.0140459687, 0.00254224031, 0.0233202353, -0.000652835646, -0.0088014612, -0.0282810591, 0.00262770895, 0.035089463, 0.0106344931, 0.00773219299, 0.00394974649, 0.00820499845, -0.00819772482, 0.023640288, 0.0212107934, -0.0285574682, -0.0284410864, 0.0402685031, 0.0249641445, 0.0114855431, -0.0330527611, 0.0267826281, 0.0102417, 0.00555001246, 0.0228692517, -0.0171810351, -0.0113546122, 0.0233784262, 0.00355695421, -0.0237857681, -0.00805224571, -0.0043170806, 0.0198869389, 0.025065979, -0.0136168059, -0.0133840404, 0.0313652083, 0.0429453105, 0.017573826, -0.0205270443, -0.00866325665, 0.00114109856, -0.000224582735, 0.0158862732, 0.00779765844, 0.00271499623, -0.00109745492, 0.0345948339, 0.0301140901, 0.0172101296, -0.0167009551, 0.0139077632, -0.00827046391, -0.0234220698, -0.014409665, 0.0242803954, -0.0154061941, -0.0136677241, 0.00884510484, -0.0354386121, -0.0177629497, 0.0035969608, 0.00057373161, 0.0221855, 0.00169028062, 0.0308123883, 0.00554273836, 0.00640469976, 0.031947121, 0.00726302387, 0.0244549699, -0.00995801669, -0.019959677, -0.0360205248, -0.0162063278, 0.010489014, 0.0307832919, 0.00797950663, -0.0129112341, 0.00356422807, -0.0276264045, 0.0182866715, 0.0082340939, -0.0143951168, 0.00371152535, -0.00577914109, 0.0399484523, 0.02711723, -0.0077176448, -0.0567657873, 0.0343911648, -0.00329509261, 0.00609192066, 0.00726302387, -0.0161481351, -0.0160463, -0.00534634199, 0.00243858667, 0.0310451537, -0.0086923521, -0.0465240888, 0.00983436, 0.0200615134, 0.000166959537, -0.0101762349, 0.0222000498, -0.0013956863, 0.0303759519, -0.0250077881, 0.012838495, 0.000406658422, 0.0105399312, 0.0264189318, 0.0195377897, 0.0195668843, 0.0149406623, 0.0299686119, -0.0366897285, 0.0106999585, -0.0194941461, 0.023843959, -0.0255169645, -0.0115655567, 0.0251096226, -0.0341583975, 0.00755761843, -0.00516813062, 0.0173701569, -0.00743396161, 0.00687386841, -0.00599372247, -0.0118055968, -0.0209343843, 0.0129403304, -0.00132021913, -0.00904877484, 0.00168664369, 0.000113882546, -0.00110927504, 0.0105472058, -0.00173392426, 0.0285138246, 0.036049623, 0.00458985288, 0.0122711286, 0.00649926066, -0.0126130031, -0.015871726, 0.0111945858, -0.00325144897, -0.005568197, -0.0252405535, 0.0424506851, 0.0189558752, -0.0169919115, -0.00221127621, -0.0121765668, -0.00425525196, 0.0188976824, 0.0211671498, -0.0012056547, -0.0189413261, 0.00690660113, -0.00960886758, 0.00199669506, -0.0229274426, -0.00993619487, -0.0110636549, 0.00593189383, -0.0355549939, -0.0155953169, 0.0257788245, -0.00985618215, 0.0355840884, -0.0183739588, -0.0207743589, 0.0057973261, 0.00992164761, -0.0204979479, -0.0129330559, 0.0345075466, -0.0278446227, 0.0191595443, 0.00835047755, -0.017573826, -0.00746305706, 0.026026139, -0.0472514816, 0.0032841817, 0.00404430786, -0.0210362189, 0.0109981894, 0.029357601, -0.00100198458, -0.0104962885, 0.00227856, 0.00913606212, -0.0125402641, 0.0156098641, 0.00805952, -0.0145115005, -0.0378826521, 0.0178211406, 0.0155516732, 0.045505736, 0.0264189318, -0.0237275753, 0.000486899022, 0.0465240888, 0.00867780391, 0.0239748899, -0.0427416414, 0.0314233974, -0.00234220712, 0.00190577097, -0.0158571787, 0.0132021923, 0.0133476704, -0.00553182745, 0.010081674, 0.00224400894, -0.0133985877, -0.0375044085, -0.0281210318, -0.0114273522, -0.0070920866, 0.0165700242, 0.00534634199, 0.0121329231, 0.0144751305, 0.00278228, -0.0271899682, 0.00587006565, 0.0095724985, -0.0241058208, 0.0485607907, -0.0227237735, -0.0289939046, -0.0248041172, 0.00754307071, 0.036718823, -0.028950261, -0.00250587054, 0.0139441332, -0.0131730959, -0.00469896197, 0.0158280823, -0.0186503697, -0.0510048307, 0.00159571948, 0.0340420157, 0.0217199698, -0.0159153696, 0.0038588224, 0.0051463088, 0.0127293859, -0.0177774969, 0.025953399, -0.010765424, 0.0114637213, -0.00150297675, -0.0023112928, 0.0316852592, -0.0023022003, 0.0287174955, 0.0255315118, 0.000180598159, 0.0188394915, -0.0319180265, 0.00509539153, -0.0410540886, -0.0268553682, 0.0266516972, -0.00620466657, -0.00174483517, 0.00230038189, 0.0186940134, 0.0277573355, 0.00371698081, -0.00290593691, -0.0188103952, -0.0608682856, 0.015464386, -0.0332855247, 0.0272627082, -0.00955795, 0.00264225691, 0.0309869628, -0.0115946522, -0.0402103104, -0.0195959806, 0.0366024412, 0.0211962461, -0.00464804424, 0.00693206, 0.0605191402, 0.034274783, -0.0254151281, -0.0239166971, -0.0165409278, -0.00570640201, -0.0372134522, -0.0179229751, -0.00697570341, 0.0179957151, 0.00288229669, 0.0214435607, -0.00150206755, -0.0131730959, 0.00413523195, -0.0265935063, -0.0211526025, 0.0117255831, -0.0245713517, 0.0122493068, -0.00679749204, -0.0329072811, 0.0367479175, 0.00503719971, 0.0365442485, -0.0171082951, -0.00117201277, 0.0326454192, -0.0181557424, -0.0188103952, -0.0200469643, 0.0130567132, 0.0576095656, 0.0170210078, -0.00820499845, 0.0064228843, 0.0105617531, -0.032558132, 0.0177047569, 0.00617920794, 0.0315688774, -0.000428252912, -0.00732485252, -0.00101653242, 0.0343620703, -0.0188685879, -0.0137040932, -0.0136386277, -0.00348057784, -0.00711754523, 0.0395120159, -0.0257642772, 0.0187813, 4.07738153e-05, 0.00188213063, 0.0112164076, 0.0262007136, 0.00763763161, -0.0176029224, -0.00460076379, -0.0290084518, -0.00891057, 0.0260406863, 0.00861961301, 0.00968888123, 0.0115946522, -0.0127293859, -0.000604645815, 0.0131949177, 0.0250950754, -0.0170064606, 0.00462258561, -0.00212217052, 0.00300777215, 0.037475314, 0.0402685031, -0.0109036285, 0.0198287461, 0.0246731881, 0.0125693595, 0.0314233974, 0.00248586736, 0.0140314205, -0.0508011617, -2.58423588e-05, 0.0247022826, -0.00308960397, -0.0331109501, -0.0135877104, 0.0153625505, -0.00726666115, -0.00139295857, -0.00866325665, 0.00904877484, -0.00995801669, 0.00284774555, -0.00966705941, -0.0296049155, -0.00736122206, -0.0287029464, 0.0228983462, 0.0116455695, -0.0060264552, 0.0124384286, -0.00943429396, -0.00552455336, -0.00804497208, -0.0102926176, 0.00860506482, -0.0138277505, 0.0133985877, -0.0228837989, 0.00594644202, -0.0202360861, 0.0189995188, -0.0167736933, -0.0158862732, -0.0324126557, 0.0057973261, 0.0169191733, 0.000229810874, -0.0274372827, 0.000687841442, -0.00741941342, -0.000217536115, 0.0184321515, -0.00465168152, 0.0189267788, 0.00189667847, 0.0201487988, 0.00207307143, 0.00974707305, 0.00716846297, 0.014817005, 0.00834320299, -0.00606646156, 0.000241403715, -0.00800860208, 0.0229419898, 0.00386245945, 0.0289066173, 0.00393156195, -0.00262589054, 0.00687750569, -0.0243822299, 0.00526632881, -0.00525905471, -0.0015584405, -0.00565912155, -0.0224910062, -0.00232765917, 0.0264771227, 0.02793191, -0.0103362612, -0.00404067105, -0.0224910062, -0.00142114505, 0.0680258423, 0.00371334376, 0.00224764599, 0.00549545791, -0.00194941461, -0.0324999429, 0.0177629497, -0.00124293368, 0.00617193384, -0.0138786677, 0.00157662539, -0.0206143316, 0.0257933736, 0.000986527419, -0.0219090916, -0.0136240805, -0.00951430667, -0.0196978152, 0.00618284475, -0.024731379, -0.00648107613, 0.00751397479, 0.00318780192, -0.00263498281, 0.0241349153, 0.0131658223, 0.00043870919, -0.0096306894, -0.015187976, 0.016759146, 0.0214290116, 0.00729212, 0.0274081863, -0.00675021159, -0.00202215393, 0.0218799971, 0.00569185428, 0.000792858889, -0.0357877612, 0.0147369923, -0.0188831352, -0.0254151281, 0.0329363756, 0.0154352896, -0.0116746658, 0.0164099969, -0.0108017931, -0.0133840404, 0.000587824848, 0.0232038517, -0.0189995188, 0.000609646668, -0.0460876524, 0.00495354971, 0.0121183759, 0.017646566, -0.0103435358, -0.018592177, 0.0326745175, -0.0108818067, -0.0188831352, -0.00180666358, -0.0189413261, -0.0251532663, -0.00561184064, -0.00533179427, -0.0280191973, 0.0321798883, -0.043730896, 0.0147806359, 0.013558615, 0.0051463088, 0.00329145556, 0.00753579661, -0.0126566468, 0.00029232126, -0.00304050487, 0.0127803041, -0.00976162, 0.00772491889, -0.0286011118, 0.00514267199, -0.0121038277, 0.00816862937, 0.00139204925, -0.012634825, -0.00617557066, -0.0228837989, 0.0265498627, 0.019959677, -0.0209343843, 0.00503356289, -0.0345366448, -0.00976889487, -0.0154934814, -0.0115873786, 0.0190868061, -0.00844503846, 0.00907059666, -0.0170064606, 0.0312488247, 0.00183666858, -0.0101544131, 0.0275682136, 0.00362060103, 0.0137768323, 0.00643743249, -0.00431344332, -0.00474260561, 0.0304632392, 0.0381736122, -0.00911424, -0.0145405959, 0.0093688285, -0.0164245442, -0.000443482713, -0.00972525124, -0.00789221935, -0.00433890196, 0.0327327065, -0.0204543043, 0.00185758108, 0.00340783852, 0.0171519388, -0.0086923521, -0.00583733292, -0.00712845614, 0.0191740915, 0.0124384286, 0.00278773555, -0.0161481351, -0.00511357607, -0.0209489334, 0.0138204759, -0.00501537835, 0.023553, -0.000936519122, 0.00847413391, -0.0256624427, 0.025211459, 0.00427343696, -0.00157207914, -0.0205270443, -0.00601190701, 0.0199305825, 0.00131021754, -0.00721574342, -0.00130112516, -0.0125329895, 0.0229856335, -0.0071866475, -0.00783402752, 0.00633559749, 0.00727757206, -0.00290775555, -0.0379699394, -0.0106053967, -0.0208325498, -0.000652835646, -0.0162936151, 0.00101107697, 0.0159153696, 0.0239457935, -0.00694297068, 0.000306869129, 0.00212398893, -0.0109472722, -0.0449820124, 0.0201342516, 0.00252041849, 0.00981981214, -0.00947066303, 0.0271608736, -0.00162117823, 0.0320053138, 0.0176029224, 0.00522995926, 0.0166573115, 0.0255751554, -0.00744850934, 0.0148970187, 0.00205124961, -0.0115728304, 0.0340129212, -0.0166573115, -0.00811771117, -0.00773946662, -0.0144023914, 0.018184837, -0.0227237735, -0.0211962461, -0.00254405872, 0.0201197043, 0.0099943867, 0.0218363535, -0.00388064422, 0.0188831352, 0.0132749313, -0.00101289549, 0.0408795141, -0.0185339861, 0.0106199449, 0.0046298597, 0.0134058623, -0.000556001381, 0.0235966444, -0.0188394915, -0.00308596692, 0.0147006223, -0.0211671498, 0.00603009202, -0.0276555, -0.00370607, 0.00276409532, -0.00318052806, 0.012431155, 0.0119947186, -0.026840819, -0.0208034534, -0.0111436686, 0.000252996542, 0.0134567795, -0.00724483933, 0.00511357607, -0.000509175472, 0.0077176448, -0.0186358206, 0.000867416733, -0.00793586299, -0.00254042167, 0.0230583735, 1.31200759e-05, 0.041345045, 0.00943429396, 0.0138859414, 0.0175156351, -0.00344420807, -0.00826319, -0.0311906338, 0.0107508758, 0.00192395574, 0.0187958479, 0.00418251241, 0.0247604735, -0.00494627561, -7.23983831e-05, 0.0124238804, -0.0216326825, -0.0266080536, 0.0218945444, 0.0155662205, 0.000269817538, 0.0246731881, -0.0213999171, 0.0181557424, 0.00528451381, -0.0210071243, -6.50676229e-05, -0.0365442485, -0.0307541974, -0.0174865387, -0.00386245945, -0.025211459, -0.00432799105, -0.044545576, -0.0120165404, -0.0109109022, -0.000697843148, -0.00648834975, -0.0196687207, -1.52155944e-05, 0.000651471782, 0.0104817403, -0.000523723313, 0.0277282391, -0.0363114849, 0.0125329895, -0.00394247286, -0.00418251241, -0.0167736933, -0.0195086934, 0.0136968195, 0.0127221122, 0.0237275753, -0.0329363756, 0.00141932652, -0.000708754058, 0.0180248115, 0.00505538471, 0.000765127, 0.0260697827, 0.00101562322, -0.0215162989, 0.0144605823, 0.0159008224, 0.0160899442, 0.0264480282, -0.00770309707, 0.02881933, -0.0167736933, -0.00154752959, 0.0133258486, 0.0153480023, 0.0154934814, 0.0140968859, 0.0114709949, 0.0197414588, -0.0157407951, 0.0034860333, 0.0240767244, 0.00360241625, -0.0145987878, -0.00614283793, 0.0252405535, -0.000296867482, -0.0191013534, 0.0121838413, -0.00630650157, -0.0220982134, -0.0116892131, -0.000470532657, -0.013114905, -0.0421015359, 0.0070848125, 0.0185630824, -0.000924244348, -0.0139732286, -0.0203088261, -0.00783402752, -0.00779038435, -0.00755034434, -0.00541908154, 0.000231743019, 0.0318016447, 0.0136604495, 0.0190431625, 0.0119510749, -0.0187085606, 0.0241494644, 0.00488081, 0.000346421148, 0.0210944116, -0.0110200113, 0.000797859742, 0.0077176448, 0.00650653476, -0.00518995244, 0.00232038531, -0.013725915, -0.0113691604, 0.0108308895, -0.00728484569, 0.0245422572, 0.00386245945, 0.0201342516, 0.0183594115, 0.0160753969, 0.00950703304, 0.00880873483, -0.000751943036, -0.0190868061, 0.0221855, 0.0199451298, -0.0176029224, 0.00314961374, -0.0182430279, -0.0137695586, 0.0092088012, 0.00293685123, 0.00680476613, 0.00423343, 0.0240330808, 0.0252260063, -0.0173701569, 0.0132894795, 0.0173701569, 0.0143951168, -0.00952158123, -0.00787767116, 0.00344238966, -0.0208180025, 0.00284774555, -0.014409665, -0.019479597, 0.00956522487, -0.0101907831, 0.0097761685, -0.00091787969, -0.000724665762, 0.0336928666, 0.0365151539, 0.0092088012, 0.0108745331, -0.000684659113, 0.0125548113, 0.00608100975, -0.0374462157, 0.00690660113, -0.011209134, -0.00315325079, 0.00736849615, -0.014373295, 0.0038588224, 0.0152316196, 0.0203815661, 0.0302595701, -0.002853201, -0.0288629737, 0.0204106607, -0.000887874688, 0.0203233734, 0.021938188, -0.0303759519, -0.00532815745, -0.0096816076, 0.00903422758, -0.0049608238, 0.0316852592, -0.00845231209, -0.0207743589, -0.0149843059, 0.00349148875, -0.0107872458, -0.0172537733, 0.0101835085, -0.024178559, 0.0141914468, 0.00970342942, -0.0130567132, -0.0150134014, 0.00266226, -0.0128239477, -0.00283319759, -0.0175156351, -0.00660836976, -0.00333146215, -0.000142069039, 0.0227383208, -0.00427707378, 0.0430907905, -0.0156971514, 0.0370970666, 0.000556910643, -0.00271135918, -0.0141550777, -0.00354058784, 0.0188249443, -0.0120674577, 0.0121765668, -0.00842321664, -0.000356877426, -0.00877236575, 0.00121383788, 0.00282410532, -0.00568458, -0.00331327738, -0.00337146875, 0.00596098974, 0.0167736933, -0.00100562151, 0.0140459687, -0.00796495844, -0.00106472219, -0.0181411933, 0.00207670848, 0.00384063763, 0.0232911389, 0.0186212733, -0.0114055304, 0.00653199339, 0.00566639518, -0.0286884, 0.0287320428, -0.0075067007, -0.00351876603, 0.0063392343, 0.000656018034, 0.010729054, -0.00431344332, 0.00983436, -0.0025822469, 0.0272918046, -0.00344784511, 0.0170937479, 0.0215017516, 0.0125766331, -0.00080058747, 0.00460076379, 0.0173847042, -0.00187667517, 0.00708117569, 0.00216217712, -0.00820499845, 0.00942701939, 0.0160608478, 0.0101253176, -0.00687023159, 0.0250514317, -0.0154498378, -0.0153189069, 0.00859051757, 0.00903422758, -0.00768127525, -0.0192904752, 0.0208034534, 0.00385154854, -0.00912878849, 0.00272408873, 0.0126057295, 0.00801587664, 0.00157844392, -0.00571003882, -0.0198578425, 0.0105399312, 0.0118055968, -0.00329145556, -0.0248623099, -0.015260715, -0.00346057443, 0.00434981287, 0.002733181, 0.00157480687, 0.00920152757, -0.0228837989, 0.0101398649, 0.0115291867, 0.00168118824, -0.0012365689, 0.0281064846, -0.0244840644, 0.000461212941, 0.00955795, -0.00951430667, -0.0130203431, -0.00681567704, -0.0258952081, 0.00824864209, -0.00639378885, -0.000233220533, -0.0090051312, -0.00826319, 0.0110200113, -0.025618799, -0.0117837749, -0.0233929753, -0.0011256414, 0.00891784392, -0.00822682, 0.00464077061, -0.0267389845, 0.00437890878, -0.0147515396, -0.0114273522, 0.0161917787, -0.0143078296, -0.015871726, -0.0179666188, 0.0155516732, -0.00943429396, 0.0140823377, 0.00913606212, -0.0103653576, 0.0262589045, -0.00548091, 0.011820144, 0.0095724985, 0.00280410191, 0.00390246604, -0.0118856095, -0.000697388488, 0.0125402641, -0.00352604, 0.0188976824, 0.0147588141, 0.00223127962, 0.0244840644, -0.00967433304, -0.00953612849, 0.00256042508, -0.00810316391, 0.00441164151, -0.00557547109, 0.00196214393, 0.00896876212, 0.00273863645, 0.0177047569, 0.00453166151, 0.0211526025, -0.0165991187, -0.00220582075, 0.00639742566, -0.0146569787, -0.0191886406, 0.00356604648, -0.0251241717, -0.0169773642, -0.00957977213, 0.0235820971, -0.0166136678, 0.0201197043, -0.02963401, -0.00216217712, 0.00788494572, 0.00193122972, 0.00123111345, -0.0301722828, -0.00297503942, 0.0199014861, -0.0090051312, 0.00912878849, -0.00777583662, -0.0530997254, 0.0115873786, 0.0143151041, 0.0268117245, 0.0106781367, 0.00309142238, -0.00426252605, 0.010489014, 0.000786494231, -0.0122129368, 0.00727029797, -0.000938337587, -0.00620830338, -0.000229242607, 0.00744487252, 0.0175592788, -0.0193486661, -0.0106490403, 0.00493172789, -0.00843049, 0.00907787122, 0.00131840073, -0.00892511848, 0.00175301835, 0.00585915474, -0.00154662039, -0.0161917787, -0.0149843059, -0.0120820059, 0.00804497208, -0.00837229937, -0.0332273357, -0.00426616287, -0.0147151705, -0.00892511848, -0.0087069, -0.00882328302, -0.00453893561, 0.0326454192, 0.00145115, 0.00927426666, -0.0123074977, -0.00227310462, 0.0268262718, -0.00144205755, 0.00133385777, 0.00369152194, -0.0212689862, -0.0023694844, 0.00736485887, 0.0233784262, 0.00578641519, 0.0136459023, -0.020847097, -0.0211962461, 0.00059919036, 0.0131585486, -0.0242803954, -0.0187522043, 0.0146424314, 0.0192468315, -0.0151443323, 0.0172828697, 0.0221855, 0.00763763161, 0.0194650497, 0.00411704695, 0.0112673249, -0.00155934982, -0.0434108451, -0.018257577, -0.0169482678, 0.00865598209, 0.00813953299, -0.0210071243, 0.0173410606, -0.00454984652, -0.0134131359, -0.00309869624, -0.00536089, -0.00136840902, -0.00483716652, -0.0222000498, 0.0152898114, 0.0108381631, -0.017166486, 0.0151297851, 0.00588461338, 0.00265680463, 0.0126566468, -0.0012356597, -0.0199887734, -0.0187813, 0.00262407213, 0.0195814334, -0.0102780703, -0.00420069741, -0.0123220459, 0.00104744663, -0.0223164316, -0.00613920111, -0.000456212118, 0.0023603919, -0.0185776297, 0.0161481351, -0.000802860537, 0.0247604735, 0.0014866105, 0.0197705552, -0.0182284806, -0.00428071059, 0.00647743884, 0.00571731292, -0.0149261141, -0.0187085606, -0.00225673825, -0.0269426554, 0.0102707958, -0.0104162749, -0.00147842732, 0.0217781607, 0.00259861327, -0.00848140847, -1.12731786e-05, 0.00618648157, -0.00497173471, -0.000848322641, -0.0124893459, -0.0113691604, 0.0192031879, 0.0233202353, 0.00534270518, -0.00572094973, 0.00130021584, -0.00140023243, 0.0445164815, 0.0157262478, -0.00226764916, 0.00691023795, 0.000765127, 0.0215599425, 0.013558615, -0.0145769659, -0.00616102293, -0.00120929163, 0.0117474049, 0.023843959, -0.0111582158, 0.00140114175, -0.00270226691, -0.0175447315, -0.00272045168, -0.0204834, 0.00954340305, 0.00137022755, -0.0012347505, -0.00442982651, -0.024047628, -0.0126420986, 0.00540089654, -0.0111436686, 0.0142205432, 0.00534997927, -0.00796495844, 0.0168755297, -0.00514994608, 0.017166486, -0.00986345578, 0.00492081698, 0.0176902097, -0.00154207426, 0.0102344267, 0.0194941461, 0.00261134258, -0.0308123883, 0.00566639518, 0.0159008224, 0.0134640532, -0.0391919613, -0.015057045, 0.00973979849, 0.0226946771, -0.000390519388, 0.0109763676, -0.00862688664, -0.00536089, -0.00685568387, -0.0159153696, 0.000228901641, 0.020439757, -0.0239457935, -0.0137040932, 0.0072121066, -0.00260588713, 0.0202651825, 0.00436436106, 0.0282665119, -0.00660836976, -0.00140296016, -0.0115873786, -0.00532815745, -0.0125184422, 0.00573186064, 0.000131385445, -0.00752124889, 0.018664917, -0.00925244484, 0.00433890196, -0.0143005559, 0.0211235061, -0.0148970187, 0.0104744667, 0.00520450063, -0.00260043168, 0.00672838977, -6.92728645e-05, 0.00646652794, 0.00544090336, 0.000376880751, -0.00780493207, -0.00557183428, -0.0173992515, 0.00391701376, 0.00838684663, -0.00421524514, 0.0116673913, 0.00732848933, 0.00370425126, 0.0101689612, 0.017239226, 0.00155934982, -0.00660473295, -0.015464386, -0.0263752881, -0.0281355809, 0.00528087653, -0.0177484, -0.00340238307, -0.00685568387, 0.0146278832, -0.00359877921, 0.0129257822, -0.00192213734, 0.0291393828, 0.0114782695, 0.0120165404, -0.00330236647, -0.0205270443, 0.00159753801, -0.000418023934, 0.0377371758, 0.0090560494, 0.0162499715, 0.0025731544, 0.0121256495, -0.00706662796, -0.00920152757, -0.000333009841, -0.00949975941, 0.00230583735, -0.0238148626, 0.00308960397, 0.0112745995, 0.0230729207, -0.029910421, -0.00756489253, 0.000973798044, -0.0149406623, 0.00458621606, -0.00785584934, 0.0119001577, -0.0226364862, -0.000786494231, 8.71593602e-06, -0.0122129368, 0.00119929, 0.0140677905, 0.0204252098, -0.0170210078, 0.0222000498, -0.00328236306, -0.0148097314, 0.00271681463, 0.0101398649, 0.0199160334, -0.00932518486, 0.00755034434, -0.00192031881, 0.00600463338, 0.0117328567, 0.00997983851, -0.0218945444, -0.0308123883, -0.00647016522, 0.0122420322, 0.020643428, 0.00961614214, 0.0160172042, 0.00348421489, -0.0265207663, 0.018184837, 0.0218799971, -0.0188685879, -0.014409665, -0.00803769846, 0.0294594355, -0.0153334551, 0.000919698155, 0.0119510749, 0.0163663533, 0.00140568789, -0.0375044085, -0.0214144643, -0.0134713277, -0.0004823528, -0.0133913141, 0.0105835749, 0.0236984808, 0.0125402641, 0.0361951, 0.00137295516, 0.00471714698, -0.00315688783, -0.0167009551, -0.00524814427, -0.0169046242, -0.00469896197, 0.00103835424, -0.0133113, -0.0281064846, -0.0137040932, -0.00912151393, -0.0216617789, 0.0220836662, -0.0067538484, 0.00907787122, -0.00303323078, -0.0159590133, 0.00181211904, -0.00109745492, 0.00101198617, 0.00990709942, -0.015057045, 0.00225310144, -0.00168482517, 0.029357601, -0.00223491644, 0.0159008224, 0.00978344213, 0.00135749811, 0.0240621772, -0.0134640532, 0.0131730959, 0.00573186064, -0.0112382295, 0.00526996562, 0.00663382886, -0.0156098641, 0.0063210493, -0.0210216716, 0.012707564, -0.00256588054, -0.00254405872, 0.0104380967, -0.00457166787, 0.00825591572, 0.00202215393, 0.0057973261, -0.0222873371, -0.00728120888, 0.0100889476, -0.0325872302, 0.0032150792, 0.00174574438, 0.00747033115, -0.00412068423, -0.0033860167, 0.0128021259, -0.00174210744, 0.0090560494, 0.000708299398, 0.0207743589, 0.00397156831, 0.000652381044, 0.0119510749, 0.0302595701, -0.0382318, 0.00389882922, -0.00017184671, 0.00656108931, 0.0300268028, 0.00262770895, 0.00808861572, 0.0136968195, 0.0058155111, -0.010321714, 0.00791404117, 0.000861506676, 0.00421160832, -0.00470259879, -0.00389155513, -0.00249314122, 0.0161626842, -0.00512448698, 0.0105326576, 0.0029532176, 0.0157262478, 0.0244695172, -0.0166718587, 0.00197851029, -0.0164099969, 0.0104090013, 0.0232620444, 0.00213671848, -0.00428798469, 0.0141187077, -0.00520813745, 0.00124838913, 0.00613920111, 0.0137695586, 0.00672838977, 0.0133694923, -0.0156826042, 0.00248223031, 0.00795041118, 0.00769582298, 0.0329654738, 0.0201487988, 0.0344202593, -0.011412804, 0.00878691301, -0.0114418995, 0.0259679481, -0.0285574682, -0.000609192066, -0.00585188065, -0.0142423641, 0.0113036949, -0.0140896123, -0.00189122313, 0.00372789172, 0.00803769846, -0.00567366928, 0.0103653576, -0.00540817063, -0.0169482678, 0.0205415916, 0.0220400225, -0.0208761934, -0.000236402891, -0.00518631563, -0.0250077881, -0.000356877426, 0.0095724985, -0.00899785757, 0.00533906836, -0.0325872302, -0.0315397829, -0.00135931664, -0.00392428786, 0.00521177426, -0.0132967532, 0.0131512741, -0.00991437305, 0.00289320759, 0.000846049574, 0.00647016522, 0.00171573937, 0.0296776537, 0.00907059666, -0.00846686, 0.0144751305, -0.002793191, 0.0114637213, -0.0162354223, -0.000271408702, 0.00652108248, 0.0164536405, -0.0090560494, -0.012060184, 0.0147733614, -0.0233056881, -0.00229492644, 0.000341874955, 0.00365151535, -0.00227492326, 0.0117474049, 0.0171228424, 0.00418251241, -0.0240621772, 0.0108454367, 0.00598644838, 0.015871726, 0.0169773642, -0.0133985877, -0.0260406863, -0.0053754379, 0.0106344931, 0.0119365267, 0.00092515361, 0.0125766331, -0.0173265133, 0.0359914303, -0.00324053806, 0.0155662205, 0.00926699303, -0.00954340305, -0.0221709535, 0.0218509, 0.0187522043, -0.00384063763, -0.0203379225, 0.00987072941, 0.00671020476, 0.00445892196, -0.0149697578, -0.00526269199, 0.00221855, 0.0110200113, -0.0113473386, 0.00229674485, -0.00313324737, 0.0230874699, -0.00787767116, -0.0235675499, 0.0282228682, -0.0162208751, 0.0077176448, -0.0105035622, -0.016759146, 0.0170064606, 0.014409665, 0.00388428126, -0.000429162174, 0.00567730609, -0.00189849699, 0.00160390267, 0.00170301, -0.00337510579, -0.00256224349, 0.0110491067, 0.0262152608, -0.00676475931, -0.0112818731, -0.00732485252, 0.00229674485, 0.0203379225, 0.00493172789, -0.00536452699, -0.0109472722, -0.0370970666, 0.0201924425, -0.00197669188, -0.00594644202, 0.0196105279, 0.0213126298, -0.0176029224, 0.00956522487, -2.21627706e-05, -0.0201633479, -0.00123293197, -0.011820144, 0.021254437, -0.00821227208, 0.00216581416, -7.60921757e-05, -0.0133113, -0.0110927504, 0.00334055466, -0.00904877484, 0.0113255167, -0.00368970353, -0.00847413391, 0.0120383622, -0.00485535152, 0.0112455031, 0.0148097314, -0.00224400894, -0.00212944439, -0.00532452, 0.00497900834, -0.0173410606, 0.0223164316, -0.00130385289, 0.00452438742, -0.0179375242, -0.0306087174, 0.0240039844, -0.0126566468, -0.00437890878, -0.00240403553, -0.00227856, -0.00282046827, 0.0223164316, 0.0163954496, 0.0046116747, -0.0331982374, 0.0125911813, 0.00436799787, 0.00184667017, -0.00704844296, -0.0176029224, 0.00401884923, -0.00232402212, -0.0121401977, -0.00735394796, -0.00744123524, 0.0049353647, 0.0123438677, -0.018257577, -0.0110491067, -0.00683022477, 0.00883055665, -0.00673930068, -0.00782675389, -0.00113291538, -0.00596826337, -0.0106635885, 0.0130567132, -0.0114346258, 0.00661928067, -0.00270044827, -0.0138204759, -0.00411341, 0.00751397479, -0.0077540148, 0.00118928833, 0.0122420322, -0.0255169645, 0.00205670507, -0.0110272849, 0.00295503601, 0.00983436, 0.0284701809, -0.0115364604, 0.023160208, 0.00344420807, 0.0166427623, -0.0116382958, -0.00841594301, 0.00856869575, -0.00519722654, 0.0132458359, 0.0165845715, 0.0117110349, -0.0206143316, 0.0162645187, 0.00234584394, -0.0182721242, -0.0116601177, 0.00605555065, 0.0186067261, -0.015187976, 0.0286302082, 0.00808861572, 0.00737577, -0.0125475377, 0.00670656795, -0.019072257, -0.000721938035, -0.0193777625, 0.0166427623, -0.0141769, 0.0119438013, -0.00118746993, -0.00830683392, 0.001255663, 0.0210944116, -0.00755034434, 0.002631346, 0.00367333717, -0.00929608848, 0.000903331791, 0.0379117504, -0.0391628668, -0.00773219299, 0.00788494572, 0.0266807936, -0.00128748652, 0.00106744992, 0.00796495844, 0.0294739846, -0.0176029224, 0.00992164761, -0.0018184837, 0.00990709942, 0.00676839659, -0.0098852776, -0.00165482017, 0.00595735246, 0.00275682122, 0.00850323, 0.00245677144, -0.0171810351, -0.00527723972, -0.00671384204, -0.00126475538, -0.0368061103, -0.0107363276, 0.0149406623, 0.00709572341, 0.0104090013, 0.00491354289, -0.0325290374, -0.00424070423, 0.024178559, 0.0126857422, 0.00967433304, -0.0324999429, -0.00313506601, 0.0112018595, -0.005484547, 0.000985618215, 0.0073975916, 0.00549182063, -0.00771037117, -0.00715391478, -0.0148824705, 0.000440073054, -0.00181666529, -0.00281319441, 0.00908514485, -0.00363696739, -0.00639742566, -0.0042916215, 0.0112309558, 0.0129766995, 0.0162208751, -0.0015366188, 0.00984163396, -0.00960159395, 0.00631377567, -0.0248914044, -0.00529542472, 0.0220400225, -0.00633196, -0.000728757353, 0.00881600939, 0.0206288788, -0.0149843059, 0.00462258561, 0.0219527353, 0.00819045, -0.00446983287, -0.010932724, -0.00410977332, -0.0328199938, 0.0252696499, -0.00759398798, 0.00783402752, -0.00618284475, 0.0074048657, -0.0035878683, 0.000509630074, -0.0132167395, 0.0155080296, -0.0226073898, -0.00445528515, 0.0154498378, -0.00784130208, -0.0121474713, -0.00332237, -0.00102835253, -0.0110854767, 0.0379990377, 0.0266080536, -0.00529178744, -0.00585188065, 0.00241676485, 0.000770127866, 0.00138477539, 0.0194941461, 0.00563366245, 0.00323508261, 0.00218581734, 0.00235493644, 0.0336346738, -0.00276955077, -0.0239748899, 0.0160026569, -0.0652908385, -0.00296776555, -0.00425888877, 0.0192031879, 0.000973798044, 0.0100307567, 0.0182430279, -0.0119583486, 0.0210653152, 0.00303323078, -0.00781948, 0.0087069, 0.0280191973, -0.0121183759, -0.0140386941, 0.00619375566, 0.0248332135, -0.0117328567, -0.00116201106, -0.00963796396, 0.0133476704, 0.00235311803, 0.00186030881, -0.00310051464, 0.0187522043, -0.000273227168, -0.00116473879, 0.00982708577, -0.0104308231, -0.0157698914, -0.00888874847, 0.00145205925, -0.00159299176, -0.0213708207, 0.00597917428, -0.00876509119, 0.0113255167, -0.0229274426, -0.0168173369, -0.0101471394, -0.0194941461, -0.0103799049, 0.00753579661, -0.00717573659, -0.0174719915, 0.00766672753, 0.00575731928, -0.00966705941, -0.00282774214, -0.00220763916, -0.0171228424, -0.00770309707, -0.00356422807, 0.000830137811, 0.0104671922, 0.00609555747, -0.0173847042, -0.0177484, 0.0448656306, 0.00522268517, -0.0141041595, -0.0299686119, 0.00643379521, 0.00760126207, 0.0242658462, -0.0106417667, 0.00443346333, -0.00735394796, -0.00826319, 0.0239457935, -0.0112455031, -0.00309687783, -0.00234220712, -0.0162354223, -0.00735758524, 0.00578641519, 0.00311324419, -0.000246177224, 0.0082340939, 0.0172974169, -0.00124384288, 0.00137386448, 0.0138568459, 0.0106563149, 0.0210216716, 0.00289684464, 0.00182939461, -0.000295276288, 0.00559001882, 0.00401884923, -0.000405067258, 0.00353876944, -0.015260715, -0.0103071658, 0.015798986, -0.00608828338, -0.0163081624, -0.0186794642, 0.0073030307, -0.00244040508, -0.00730666751, 0.0134640532, 0.00534270518, 0.0267535318, 0.0226655807, -0.0194505025, 0.0128166731, -0.000532815757, -0.00888874847, 0.00502992608, 0.0223164316, 0.0177774969, 0.0157262478, -0.0149552105, 0.0305505265, 0.00109109026, -0.00897603575, -0.0147297177, 0.00214762939, -0.0187813, -0.00148115505, 0.00784130208, -0.0216617789, -0.0158135351, 0.00465531833, 0.0164681878, -0.0105108358, 0.00173937972, -0.00954340305, -0.00888874847, -0.00973979849, 0.000484171294, -0.00280955737, 0.00457894197, 0.0232765917, -0.018184837, 0.00694297068, -0.00342784193, -0.00117201277, -0.0139877768, 0.000710117922, -0.00811043754, 0.0154061941, 0.00133931322, -0.00971070305, -0.0140095986, 0.018737657, -0.0203233734, 0.0246295445, -0.00811771117, -0.0139077632, 9.93915e-05, 0.0125184422, -0.0178065933, -0.0284556337, -0.0177920442, 0.00138841232, -0.0164390933, -0.000113200615, -0.00652471976, 0.019959677, 0.00868507847, 0.00979799, -0.0129985213, 0.0267971754, -0.0015866271, 0.0071102716, 0.00399339, 0.0270590372, -0.0114346258, 0.0168173369, 0.00768854935, 0.0136022586, -0.0130712613, -0.00165391096, -0.0187085606, 0.0057973261, -0.0234802626, 0.00341874943, 0.0110418331, 0.00853959937, -0.00434981287, 0.0121620195, 0.0011856514, -0.00053736195, -0.0111800376, -0.00587006565, -0.00697206659, 0.0148606487, 0.0127948513, 0.00639015203, 0.0176756624, -0.0155662205, -0.00370970671, -0.00476079062, -0.00212398893, -0.00214217394, -0.0214290116, 0.00397520559, 0.00658291113, 0.0169919115, -0.0101325912, 0.0160317533, 0.0133113, -0.00636469293, -0.0145842396, 0.00912878849, -0.011580104, -0.0154789332, -0.0048408038, 0.0197851025, -0.0200469643, -0.0125111677, -0.0174138, 0.0132749313, 0.00678658113, -0.0152898114, 0.00453166151, -0.0109618204, -0.00493900198, 0.0320635065, -0.00818317663, 0.0186794642, 0.0082340939, 0.0267680809, -0.000545545132, -0.0100234821, 0.00782675389, -0.0171228424, 0.0128312213, 0.0145260477, -0.000926517474, 0.00568458, -0.0127875777, -0.000221741357, -0.00373152853, 0.000596008031, -0.00333328056, -0.00655745249, 0.0242803954, 0.0144023914, 0.013485875, -0.00288957055, -0.00512448698, 0.00231674826, 0.00763035752, -0.0167009551, 0.0343038775, -0.0123656895, -0.00195123302, -0.00308778533, -0.00568094337, 0.0013365855, 0.0152752632, -0.00309142238, 0.0108818067, -0.0281646755, 0.0436145142, 0.00592098292, -0.00410977332, 0.0139150377, 0.00283319759, -0.000357332057, -0.00954340305, 0.0150279496, -0.0109472722, -0.0113400649, -0.013965955, -0.0148461014, 0.0204979479, -0.00501174107, -0.0100671258, -0.00961614214, -0.00334964693, -0.00689569, 0.00573549746, 0.0101398649, 0.0185485333, -0.00855414756, -0.00841594301, -0.0060264552, 0.0107945194, -0.0216326825, 0.00673566386, -0.000525541778, -0.00818317663, -0.0251823626, -0.0152316196, 0.00773946662, 0.00124111515, 0.0149988541, -0.011172764, 0.00708117569, 0.00602281792, -0.0120892795, -0.0241931081, 0.0221564062, -0.0128312213, -0.00157480687, -0.00853959937, 0.0152025241, -0.0355549939, 0.00883783121, 0.00445892196, -0.0186503697, -0.0252841972, -0.0172974169, -0.0142423641, -0.00603372883, 0.0065683634, -0.0115073649, -0.0170646515, -0.00434617605, 0.00880873483, -0.00428434787, 0.0212689862, -0.0157116987, -0.0142641859, 0.0237421244, 0.00969615486, -0.0192031879, 0.00265680463, 0.0187958479, -0.00337874284, 0.0152170714, -0.00956522487, 0.0172537733, -0.0205270443, -0.00967433304, -0.0206870716, 0.0118055968, -0.0162499715, -0.00941974577, -0.0129766995, -0.00221855, -0.00453893561, -0.0117837749, -0.0012565722, -0.00941247214, -0.0214144643, -0.0291393828, -0.00923789758, 0.00012808945, -0.0095724985, 0.00603736611, -0.0147151705, 0.00615738612, -0.00112655072, 0.0254587717, -0.0105472058, -0.00542635564, -0.0296922028, 0.00328781852, 0.0132021923, -0.0027840985, -0.00268953736, -0.0276555, -0.0101180431, 0.00652108248, -0.00846686, 0.00608464656, 0.00741941342, -0.00890329666, -0.0227383208, 0.00219309144, -0.00693206, 0.00824864209, 0.0088742, -0.00680112932, -0.0175592788, 0.013725915, -0.0183739588, -0.00463349652, 0.0556310527, 0.0306960046, -0.0015266171, -0.020643428, 0.0102998922, -0.0195668843, 0.00848140847, 0.0386100449, -0.00680112932, 0.00886692666, -0.0025222369, -0.00325326738, -0.00694297068, -0.00453893561, 0.0104817403, -0.0202651825, 0.00767400116, -0.00413159514, -0.00470259879, 0.0104526449, -0.00780493207, -0.0179957151, 0.00653563067, -0.0337219611, 0.00314415828, -0.000651471782, 0.00281501282, -0.00585188065, -0.0187231079, 0.00911424, -0.00256042508, 0.0146351568, 0.00500446744, 0.0186940134, -0.00996529125, 0.00865598209, 0.0095724985, 0.0136095323, 0.0130858086, -0.0258079208, 0.00729939388, 0.0311906338, -0.00811771117, -0.0150861414, 0.012096554, -0.00808134209, 0.0086341612, -0.00683022477, 0.00894694, -0.0161772314, 0.00447347, -0.0238730535, -0.0125911813, -0.0156535078, 0.011580104, 0.00766672753, 0.0121256495, 0.010932724, 0.00971070305, 0.00710663432, 0.000824682356, 0.0138713941, 0.0210362189, 0.00233311462, -0.005568197, -0.0425961614, 0.0117110349, -0.00181302824, 0.00866325665, -0.00696115568, -0.0281210318, -0.00695024477, -0.00742668752, -0.00572822383, -0.000259133929, 0.0168464333, 0.0110782031, -0.0160753969, 0.0100234821, -0.0146351568, -0.020847097, -0.00844503846, 0.00550273154, -0.00700843614, -0.00891784392, -0.0111072985, -0.0189122315, -0.0071102716, -0.00565548427, 0.0107872458, -0.00458257878, 0.0191740915, -0.00222400553, 0.00412068423, 0.0181120988, 0.0136095323, -0.0207743589, 0.0225491989, 0.00536089, 0.015944466, 0.0172101296, -0.00844503846, 0.0116819395, -0.0145551441, -0.00488808425, 0.0262152608, -0.0140823377, 0.0280628409, -0.00805224571, 0.000748306047, -0.00886692666, 0.000476897345, 0.00405885559, 0.00637560384, -0.00111836754, 0.00864143483, 0.0135440668, 0.0220836662, 0.00852505211, -0.00447710697, 0.0061101052, -0.00406612968, -0.0118055968, -0.00382245285, -0.00376426126, 0.0232765917, 0.0178356878, -0.00642652158, 0.0238730535, 0.00756489253, 0.015944466, -0.0118055968, -0.00739031797, 0.000751488376, 0.0177629497, 0.0285865646, 0.00200033211, -0.0181702897, 0.0134131359, -0.00145478698, -0.00196032552, 0.0204834, 0.0136313541, 0.00152388937, 0.0132894795, -0.0142132686, 0.00891784392, 0.0164099969, 0.024324039, -0.00647380203, 0.00696115568, -0.011616474, -0.0109836413, 0.0111145722, 0.00488808425, 0.0220982134, 0.0118419658, -0.00855414756, 0.0151734278, -0.0225201026, 0.00132021913, -0.00531360926, 0.00596462656, 0.00101016776, 0.0008215, -0.00220582075, 0.00643379521, -0.00809588935, 0.00239130622, 0.000737849798, 0.012671195, 0.0432653651, -0.0030732376, -0.000271181372, -0.0141623514, -0.0128821386, -0.019072257, 0.00701207342, -0.00222946098, -0.023160208, -0.00229856349, -0.00218763598, 0.0139514068, 0.05490366, -0.0046044006, 0.0055936561, 0.0159153696, -0.00348239625, 0.0139004895, -0.0125839077, -0.0248477608, 0.018737657, 0.00564093655, -0.0131003568, -0.0207452625, -0.0127221122, 0.00422251923, -0.00656472612, 0.00580823701, -0.0149552105, 0.0252260063, -0.0263752881, -0.00430980651, 0.00446255924, 0.0106053967, 0.00320598693, 0.0105399312, 0.00500810426, -0.0193923097, 0.0174719915, 0.00094652077]
14 Nov, 2021
jQWidgets jqxSortable opacity Property 14 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSortable represents a jQuery plugin that allows you to reorder elements in an Html list or div tags using the mouse. The opacity property is used to shoe the opacity of the element while dragging. It accepts number/boolean type values and its default value is false. Syntax: It is used to set the opacity property $('Selector').jqxSortable({ opacity : boolean/number}); It is used to return the opacity property. var opacity = $('Selector').jqxSortable('opacity'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link type=”text/css” rel=”Stylesheet” href=”jqwidgets/styles/jqx.base.css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/globalization/gloōbalize.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxsortable.js”></script>< Example: The below example illustrates the jqxSortable opacity property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link type="text/css" rel="Stylesheet" href="jqwidgets/styles/jqx.base.css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/globalization/globalize.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsortable.js"> </script> </head> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>jQWidgets jqxSortable opacity property</h3> <div id="sort1"> <div><li>C</li></div> <div><li>C++</li></div> <div><li>Python</li></div> <div><li>HTML</li></div> <div><li>CSS</li></div> <div><li>JavaScript</li></div> </div> <script type="text/javascript"> $(document).ready(function () { $("#sort1").jqxSortable({ opacity : 0.2 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsortable/jquery-sortable-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxsortable-opacity-property?ref=asr7
PHP
jQWidgets jqxSortable opacity Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.044087939, -0.00411432795, -0.00801426917, 0.044642821, 0.0495863222, 0.00246859668, 0.0146791656, 0.0267856941, -0.0297366586, -0.00762332929, -0.0349576, 0.0204423778, -0.0067973109, -0.00837368146, -0.00635592733, -0.0172896348, -0.00790077075, 0.0108328201, -0.0179958493, 0.019925328, -0.0163690355, -0.0135946218, -0.0382112302, 0.0140233953, -0.0276432391, 0.0242382772, 0.0266091395, 0.0346044935, -0.00462507224, 0.0261047017, 0.0160537604, -0.00307392306, 0.0139098959, 0.0132919587, -0.0264073648, -0.0256507061, -0.004552559, -0.00164415478, -0.0234942306, -0.0154358232, -0.0103031602, 0.00280436361, 0.00383373396, 0.0283494536, 0.00713150157, 0.0123083033, 0.00498448452, -0.010801293, -0.00901053566, -0.00689189322, -0.013090183, -0.00766116241, -0.0131280161, 0.0138720637, 0.0014660249, -0.0325362943, 0.0223214105, 0.0341504961, -0.0313508622, -0.00821604487, 0.012510079, -0.0334695056, -0.0264578089, -0.0122767761, -0.0203162674, -0.00890964828, 0.0249444917, -0.00148967048, -0.0679983348, 0.0284755621, -0.02415, 0.00414900808, 0.041868411, 0.042145852, -0.00281855115, 0.0177436303, 0.00189795042, -0.0246292185, 0.00129025953, 0.0554882549, -0.00826018304, -0.00761702377, -0.0248057712, 0.0160915926, 0.0033734336, -0.0195217766, -0.00355313974, -0.0321327448, 0.0562953539, 0.0411621965, -0.0188155621, 0.00265776133, 0.00998158, 0.0237338394, 0.0397245437, -0.00996266399, -0.0205937084, 0.0060627223, -0.0135946218, -0.00137459533, 0.0253480431, 0.0195596088, -0.00149361137, 0.0169869717, 0.0222331341, 0.0171509143, 0.0550342575, -0.0290052239, 0.0133045698, 0.0117660323, 0.0418179668, -0.00370131875, -0.00634016329, 0.00108139042, -0.0212747, 0.0406829789, -0.0309977569, -0.0237212274, 0.035310708, -0.0011594207, 0.0225610193, -0.0146539435, -0.0255876519, 0.0508221947, -0.0204045437, 0.0184750669, -0.00152435061, 0.0244652759, 0.0509735271, -0.00617937371, -0.0131784603, 0.0455760323, -0.000757446163, 0.00548892329, 0.0345792696, 0.0239482261, 0.0258272588, -0.00188061036, -0.0546811521, 0.00673425617, -0.0451220386, -0.00622035936, 0.025322821, 0.0199757703, -0.00270820502, 0.0366474688, -0.00805840734, 0.0457021445, -0.048527, -0.00357520906, 0.000492221792, -0.0613901839, 0.0078503266, 0.0194335, 0.00861959532, 0.0274414644, -0.0110345958, 0.0407334231, -0.0101896608, 0.0016504603, -0.0112426765, -0.0326876268, -0.00177026447, 0.0348314904, 0.000360791862, -0.0172265805, 0.0253102109, 0.00128080125, -0.0356638134, 0.0201144926, 0.0104418807, -0.0147422198, -0.0243769977, 0.0230276249, -0.0511753038, 0.00083153561, 0.01252269, -0.0328894, 0.00305027748, -0.0532687232, -0.033822611, -0.00660184119, -0.00245598587, 0.0077116061, -0.00216750987, -0.0212368686, -0.00257579, 0.0158015415, -0.0390687734, 0.00861959532, -0.0352098197, 0.0353611521, 0.0454751439, 0.00115075067, -0.00233145244, -0.0137207322, -0.0304680951, -0.0134180682, -0.0100698564, -0.0277693477, 0.00445167115, 0.00100336, -0.0126424944, 0.00110740052, 0.0209720377, 0.00273973262, 0.0248688255, -0.0782384351, 0.0886298716, -0.0176301319, 0.0367988, 0.00918708928, -0.000206504585, 0.0271388, 0.00570330955, -0.00180967373, -0.00778727187, -0.0176175199, -0.033267729, -0.00684144953, -0.000430349231, -0.00630548317, -0.0297871027, 0.0591706559, -0.0628026128, -0.0302663203, 0.0249571037, -0.0272901319, -0.0190930031, 0.0120560843, -0.0231663454, -0.00602488918, -0.0137585644, -0.0170248058, 0.040102873, 0.0439618304, -0.0157258753, 0.0282233432, 0.017932795, 0.0029462371, -0.00523039838, 0.00642844, 0.0129010193, -0.0183867887, 0.038715668, 0.00274603791, -0.00701800315, -0.0149692176, 0.00196888717, 0.0115642566, 0.00896639749, -0.00262308097, -0.0333686173, -0.0201775469, 0.00920600537, -0.0155241, 0.0124091916, -0.0211990345, -0.0120686954, -0.00111685868, 0.0300141014, 0.0386652239, 0.0212494787, 0.0285007842, 0.0208207052, 0.00125085027, 0.0222709663, -0.0233555101, 0.0176175199, 0.00225736294, -0.0121884989, -0.0102148829, 0.0364709161, 0.0233176779, -0.0169869717, 0.0366222486, -0.00829171, -0.00612893, 0.0187146738, -0.0366726927, 0.00476379273, 0.00400713459, 0.0308212023, 0.0566989072, 0.0444410481, -0.0201271027, 0.0180715155, -0.0158267636, -0.0131784603, -0.0118921418, -0.0505699776, -0.0200766586, 0.010233799, 0.0175670758, 0.0107319327, -0.0191308372, 0.0126803266, -0.0147422198, 0.0251714885, 0.00916817319, -0.0307959802, -0.00728913862, -0.0220691916, -0.0270631351, 0.000225618074, 0.065425694, 0.0367988, -0.00360673643, -0.000370250113, 0.004552559, 0.0493593253, 0.0113561759, -0.00120750011, -0.0586662181, -0.00259313, -0.0242887214, 0.0150070507, 0.0134811234, -0.0120308623, -0.00737111, 0.0309977569, 0.00714411261, -0.0228762943, 0.0323345177, 0.0107382378, -0.00951497443, -0.0210477039, -0.0109210974, -0.0296862163, 0.0156123769, -0.0329146236, -0.00199726177, 0.0192443356, 0.0404307581, 0.00443590758, -0.0349828228, 0.00628341408, -0.00650095334, 0.0101959668, 0.0165834203, 0.00726391701, -0.0139603401, 0.0190173369, 0.0148431081, 0.0430033952, -0.0673930049, -0.00211076066, -0.00998788513, 0.0592715442, 0.0264073648, 0.000857545761, 0.0209972598, 0.00994374696, 0.0348819345, 0.0226240736, -0.0197992176, -0.00206504576, -0.0166464765, -0.00666489592, -0.00576005923, 0.025322821, 0.0183615666, 0.0507717505, -0.00692342082, 0.00668381248, -0.00880876, -0.0376311243, -0.0122641651, 0.00418999372, -0.00253638066, -0.0551351458, -0.032435406, -0.0149566066, 0.0605326407, -0.0299888793, -0.00358466734, -0.00410802243, 0.0101707447, -0.0192317236, 0.0288034473, -0.0400524288, 0.0222961884, 0.0208080951, 0.0254489314, -0.0186263975, 0.0137459533, 0.0164573118, -0.0225357972, 0.0268361364, 0.0338478349, -0.00877092686, 0.0232294, -0.0399515405, -0.0133045698, -0.00155666622, 0.00954650156, -0.00786924362, 0.0257137604, 0.00990591384, -0.00221007201, -0.00381481741, -0.0312247537, 0.0325615145, 0.00365087483, -0.00796382502, -0.00787554868, -0.0472406819, -0.00164888392, 0.0210098699, -0.00560872722, -0.0233681221, -0.00609740242, -0.000686115411, 0.0354872607, 0.0276936833, 0.018210236, 0.0452481471, 0.0429277308, 0.0269874688, -0.0392201059, 0.0508978628, 0.001708786, -0.0110345958, 0.00127213122, -0.0114759794, -0.0208837613, -0.0277189054, 0.0162681472, 0.0465092435, 0.00214544078, 0.00754766352, 0.00371392979, -0.00311017968, -0.050923083, 0.0143134473, 0.0320823, 0.0200136043, -0.016785197, -0.0231159013, 0.0125794392, -0.0163059793, 0.00232829968, -0.00349323777, 0.0348819345, -0.0493593253, -0.0132793477, -0.027037913, -0.00674056169, 0.0032851568, 0.0178697389, 0.00333560072, -0.0436843894, -0.010517546, -0.0226240736, 0.0258524809, 0.00422782637, 0.0245661624, 0.00506330328, 0.0297114383, -0.0244400539, -0.0308968686, 0.00655770255, -0.0396993235, 0.0113183428, -0.0266343616, -0.0214134213, -0.00315431808, 0.020757651, 0.00470389053, 0.00204455294, -0.0326624028, 0.00964739, 0.00811515749, 0.0672416762, 0.0202658232, 0.0423476249, 0.00684775505, 0.025877703, 0.0148935514, -0.0167347528, 0.00968522206, -0.0265586954, 0.00602173666, -0.00400082907, 0.0286773387, -0.0143765016, 0.0607344136, 0.0118921418, -0.0040638838, 0.0167599749, 0.0188912284, -0.0142882252, 0.0145530552, 0.0122515541, -0.00319372723, 0.00483315298, -0.0366474688, -0.0176679641, 0.0272901319, 0.0114633683, 0.00652617542, 0.0241878349, -0.0373032391, 0.0257137604, 0.012812742, -0.00533443876, -0.00477640377, -0.00583887752, 0.0192569457, -0.0264073648, 0.00448635127, -0.00738372095, -0.00952127948, -0.00284534926, -0.00352476514, -0.0139603401, -0.0106247393, -0.0421710722, 0.0207072068, 1.89041348e-05, 0.0195217766, -0.00756027456, -0.010233799, 0.0214638654, 0.0172644127, 0.0693098754, 0.0128947133, -0.0544289313, -0.0101455227, 0.0238473378, -0.0300393235, 0.0119047528, 0.00391255226, 0.00467236293, 0.0169869717, 0.0380346738, -0.0020776568, -0.000576163526, -0.0352098197, 0.0247048829, -0.00312121422, 0.0050097066, -0.0204045437, -0.000742864737, -0.0132541256, -6.4138585e-05, 0.00368870771, -0.00410486944, -0.0043224087, 0.0191686694, 0.00619198475, 0.024490498, -0.0094393082, 0.0072828331, -0.0188786164, -0.00968522206, -0.019345222, -0.0194461104, -0.0226745177, -0.0564971305, 0.00485522207, 0.00805840734, 0.0158015415, 0.0147800529, 0.0214890875, -0.00411748048, 0.026155144, 0.0285764504, -0.039825432, 0.000219706679, -0.00920600537, 0.00987438671, 0.000611631898, 0.0185507312, -0.0287530031, 0.0307707582, 0.0303672068, -0.0276684612, 0.0211359803, 0.0106814886, -0.0135946218, -0.0481738932, 0.00880245492, 0.0122641651, -0.0103851315, -0.0110661229, -0.0080331862, -0.00779988291, -0.0439870507, -0.00144474383, -0.00512005249, 0.0401280969, 0.012535301, 0.0140486164, -0.0049182768, 0.0195722207, -0.027037913, 0.0235068426, 0.00957803, -0.0155114885, -0.017062638, 0.0289800018, 0.0149439955, -0.00279805833, 0.0310986433, 0.030165432, 0.0117723374, 0.0014140046, -0.000135863462, 0.00442014402, -0.025612874, 0.00366033311, 0.0484008901, -0.0374545716, -0.0170374159, -0.00622666487, -0.0230150148, 0.0204171557, -0.00322525483, -0.00706844684, 0.0243139435, -0.00838629249, 0.0208711494, 0.0433312804, 0.0339739434, -0.00233618147, -0.0011231642, 0.00161893282, 0.011078734, -0.0105112409, -0.0416666344, 0.0237212274, -0.00671533961, 0.00126897846, 0.00932581, 0.00841782056, -0.0026892887, 0.0422215164, -0.0256759282, 0.00970413908, 0.00313855428, -0.00312436698, -0.0205180421, 0.0369501337, -0.00764855137, 0.0308212023, -0.0107256267, 0.00925014447, 0.0181093477, -0.001564548, -0.0155367106, 0.00255056797, -0.00183174293, 0.00814037863, -0.000319806219, 0.0113940081, 0.00450842036, -0.0130649619, 0.0104418807, -0.00600912562, -0.00515158, -0.0404055379, 0.0225988515, 0.040935196, -0.0141242826, 0.0184624549, 0.0331416205, 0.0226745177, -0.00820343383, 0.00491197174, -0.00709997443, 0.0117975594, 0.0222457461, 0.00950236339, -0.000574587146, -0.0135441786, -0.0152971027, 0.00968522206, 0.0113246478, 0.0338478349, -0.0160537604, 0.0276432391, 0.0292322207, 0.021337755, -0.00463453028, -0.0143765016, -0.0135189565, 0.0155871548, 0.0174031332, -0.00200672, 0.0132415146, -0.00741524855, 0.027592795, 0.0309220906, -0.00288002961, 0.00130129408, 0.0171761364, 0.0220691916, -0.0259533692, -0.0286016725, 0.00374545716, 0.00290840422, 0.00740894303, 0.0474172346, -0.023052847, -0.00641267654, 0.0022920433, 0.0288034473, -0.00602488918, -0.00467236293, 0.0226366855, 0.0266343616, 0.0177436303, 0.0417170785, 0.0127244657, 0.0179454051, 0.00118227815, -0.0110472068, 0.00486783311, 0.000283549714, -0.00184593024, 0.0096978331, -0.0215395316, -0.0152340475, 0.0197487734, -0.0399263203, 0.0365970246, 0.0333686173, 0.0226240736, 0.00239450741, -0.00175292441, 0.0450211503, 0.0130271288, 0.0008323238, 0.0060375, 0.0146665545, 0.0113561759, 0.0197992176, 0.0144521678, -0.0460048057, -0.0152214365, -0.0260542575, -0.0314013064, 0.0114192301, -0.0242130551, -0.0163438134, 0.0120813064, 0.0123587474, 0.0405568704, 0.0186894517, 0.0214638654, -0.0138846738, -0.0102148829, -0.039547991, 0.0308212023, 0.0017009041, -0.0120434733, 0.0137963975, 0.0246796627, 0.0245661624, 0.013657677, 0.02845034, -0.0230780691, 0.0262055881, 0.00897900853, 0.0295096617, -0.0200388264, -0.0143512804, 0.0120813064, -0.021917861, 0.0112363715, -0.0031748109, 0.00986808166, -0.0211359803, -0.0298627689, 0.0242761113, -0.00762963481, 0.00902945176, -0.0101644387, -0.0176805761, 0.000245519768, 0.022762794, 0.0199631602, -0.00268298318, 0.0185381211, 0.0106499614, 0.0243139435, -0.0110093737, 0.0245283302, 0.0124659408, -0.00380535913, 0.0141621158, 0.0024607149, 0.0302158762, 0.0106121283, -0.023607729, -0.0114381472, 0.0335199498, 0.0420449637, -0.0280467905, 0.0266091395, 0.021615196, 0.00781249395, 0.0197992176, 0.0158267636, -0.0198874939, -0.0371266864, 0.00279648183, -0.00427827053, -0.0311238654, -0.00189795042, 0.000407097774, -0.0287025608, -0.01422517, -0.0256759282, -0.013947729, 0.0243643876, -0.00151410419, 0.0216782521, -0.00534389727, -0.0219809152, -0.0100698564, 0.0301149879, -0.0203793216, -0.0191056151, 0.0525625087, 0.00898531359, -0.00752244145, 0.0058924742, 0.00583887752, 0.0152844917, -0.0130649619, -0.021337755, -0.000761387113, -0.00628341408, -0.0327380709, 0.0419440754, 0.0282737873, -0.0138720637, 0.00733327726, -0.0075918017, 0.00586725213, -0.0170248058, -0.00243391655, 0.0189921167, 0.0209594257, -0.000405127299, 0.0127812149, 0.0422467366, 0.027315354, 0.0222079121, -0.0249192696, 0.0195596088, 0.0199757703, -0.0066270628, 0.00746569224, -0.0366726927, -0.0166212544, 0.0046408358, -0.0125668282, -0.0196604971, 0.0181219596, -0.0115075074, 0.0214008112, -0.00575690623, -0.0011531153, -0.00979872141, -0.0171761364, -0.0403298698, 0.0222079121, -0.0270126909, 0.0042152158, -0.00773052266, 0.011665144, -0.00626449753, 0.00588932121, -0.0476946756, 0.010813904, 0.00778727187, -0.0196226649, 0.0189038385, -0.0242382772, -0.0206693746, -0.0201523248, -0.00330722611, 0.030442873, -0.00965369493, 0.0231159013, 0.014792664, -0.0115453396, -0.00478586182, -0.000364338717, -0.0192443356, -0.037252795, -0.0180589035, 0.0460552499, 0.0174157452, -0.0238599498, 0.000217736218, -0.0263064764, 0.0111165671, -0.0264325868, 0.0200766586, -0.0172265805, 0.00345225213, 0.0107823769, -7.28086306e-05, 0.0215016976, -0.0253606532, 0.0167221427, 0.0230402369, -0.00341757201, 0.0154862674, -0.0263569206, -0.0127055487, -0.0413135253, 0.00294308434, 0.0135694, 0.00936994795, -0.00017014952, -0.00912403408, -0.0171635263, 0.043255616, 0.0166969206, 0.00193578342, -0.0246166065, -0.0210477039, 0.0107697658, -0.00173085521, 0.00434132526, 0.029055668, 0.0113057317, 0.00552675594, -0.00497502647, -0.0140233953, -0.0180841256, 0.0202658232, 0.0192191135, -0.0323597416, -0.0227880161, 0.0393966585, 0.019925328, 0.00271451054, 0.00279017631, -0.00221795379, 0.0156123769, -0.0367231332, -0.0154988784, -0.0311490875, 0.0360421427, -1.3928714e-05, 0.0183741786, 0.0334442854, -0.00674056169, 0.0368492454, 0.00950236339, -0.00213282974, 0.0138216196, -0.0180715155, -0.0022762795, 0.00625819201, -0.0485522225, 0.0186894517, 0.0147548309, 0.0175166335, -0.0393462144, -0.00219588447, -0.0091997, -0.0416918546, -0.013367625, -0.00648203678, -0.0131280161, 0.0322084092, 0.0346044935, 0.00704953028, -0.0104166586, 0.0334695056, -0.0223844666, 0.0299132131, -0.0269118026, 0.0137585644, -0.0112742046, -0.00379274832, 0.0129262405, 0.0300897658, 0.0123902746, -0.00622666487, -0.0254110973, -0.00724500045, 0.0105806012, 0.0375050157, -0.0139729511, 0.0174788, 0.00291943876, 0.0155997658, -0.0180210713, -0.00504438672, -0.0125857443, -0.0233933423, -0.0405316465, -0.0197361633, -0.0122011099, -0.00378329, 0.0265586954, 0.0292574428, 0.00136434892, -0.0102653271, 0.0314013064, -0.000226997407, -0.00211706595, -0.0367231332, 0.0103977416, 0.0115705617, 0.0245157201, 0.0314265303, 0.0339739434, -0.00568439299, 0.0168860853, 0.00135252613, 0.0312247537, 0.0395984352, -0.00686036609, 0.0263064764, -0.0585148856, 0.00295727164, 0.0131154051, -0.0169491395, -0.0182354581, -0.00168356404, 0.00271451054, -0.00841151457, -0.00870156661, 0.000963950763, 0.0111796223, -0.0245031081, -0.0222079121, -0.0309725348, -0.0379590094, 0.00177656987, -0.022762794, 0.0357647, 0.0134180682, 0.00560872722, 0.00904836878, -0.0090862019, 0.00515158, -0.0206819847, -0.00314013078, 0.0106877945, -0.00114286889, -0.00588932121, -0.0104671028, 0.0166086424, -0.0187903401, -0.0119930292, -0.0251336563, 0.0131910713, -0.00971675, 0.00172770245, 0.0224349089, 0.00941408705, -0.0132541256, -0.000143449739, -0.00687297666, -0.010536463, 0.0107949879, -0.00861329, 0.00478901481, 0.0117155882, 0.0106814886, -0.00867003947, 0.027592795, 0.00808993541, 0.0301906541, 0.0319057442, 0.0201649349, -0.0103031602, 0.00954019651, -0.0161294267, 0.0127559928, 0.0433817245, -0.00928167161, -0.00784402154, -0.0107760709, -0.0112678986, -0.00334190624, 0.0148809403, -0.0197487734, -0.0096978331, -0.0377320126, -0.007970131, 0.015070105, 0.029585328, 0.0213125329, -0.0112678986, -0.0222709663, -0.00443590758, 0.0602299757, -0.00189637416, -0.00138878275, -0.0175166335, -0.0132793477, -0.0356638134, 0.00841151457, 0.00877092686, 0.0228762943, -0.0202532131, 0.0105616841, 0.0118669197, 0.0222079121, 0.0126424944, -0.0224349089, -0.00766116241, 0.00258524809, 0.0102716321, 0.00954650156, -0.0256507061, -0.0140107842, 0.0172013585, -0.00835476536, 0.00822235, 0.0158898178, -0.0136450659, -0.0285764504, -0.0137207322, -0.0244400539, 0.00699908659, 0.0047196541, 0.00547315972, 0.0282485653, -0.000895378646, -0.0175418537, 0.017365301, -0.0105427681, -0.0287025608, -0.0357394777, 0.0152844917, -0.0216530301, -0.0150322719, 0.0119804181, -0.00152198609, -0.00289736968, -0.0075918017, 0.00349008502, 0.00746569224, -0.00235982705, 0.0146665545, -0.0249949358, -0.00945191924, -0.028172899, 0.0235446747, -0.00268140668, 0.00610370794, 0.000690844492, -0.00353737618, 0.0225231871, -0.0297618806, -0.0175292436, 0.00420891028, -0.0290808883, -0.0394218825, -0.0149187734, 0.00458723912, -0.0230654571, 0.0270631351, -0.0249571037, 0.0202532131, 0.0380598977, 0.0143008363, -0.000261677545, -0.0154358232, -0.0243769977, 0.0165708102, -0.017655354, 0.0299888793, 0.0200009923, -0.012510079, -0.0324101858, -0.00546370121, -0.0229645707, 0.0342513844, 0.00344279385, -0.00130602322, -0.0271388, -0.0095591126, 0.0161294267, 0.0244400539, -0.0156754311, 0.00129341229, -0.0181724038, 0.00682883849, -0.0346801579, 0.0101707447, 0.0239608362, 0.00178602815, 0.0104923239, -0.0285007842, 0.024490498, 0.0101644387, 0.0189416725, 0.0275171287, 0.00323786563, -0.0107382378, -0.0162429251, -0.00245283311, -0.0111228731, 0.0225736294, 0.0216025859, -0.0077431337, -0.00245283311, 0.0234185643, -0.00137459533, 0.0143008363, -0.0132415146, -4.33009373e-05, 5.53700265e-05, 0.0214008112, -0.00720086182, -0.00206977502, -0.00499709556, 0.0363195837, -0.00707475236, -0.0145530552, -0.0148809403, 0.0102842432, 0.00421836833, -0.00256160251, -0.0264073648, 0.0251841, 0.00378329, 0.0124154966, -0.0249444917, 0.0219683032, -0.00689189322, -0.000254583894, -0.0252975989, 0.0243013334, 0.00221480103, 0.0181471817, 0.000922965119, -0.00130602322, 0.0132162934, 0.0308464244, -0.0158772077, -0.0167221427, -0.00687297666, 0.0109841516, -0.0177688524, 0.00964739, 0.0104986299, -0.00310229789, -0.0112111494, -0.027315354, 0.00721347285, 0.00390939973, -0.00568124047, 0.000645917957, 0.00628656708, 0.023330288, 0.0145530552, -0.0270883571, -0.00528399507, 0.00289421692, -0.00687928218, -0.0305689834, 0.00146208389, 0.00444851862, 0.032435406, -0.0141999489, 0.00283589121, -0.00287845312, 0.0211990345, 0.0292826649, -0.00629917765, -0.00954650156, 0.0185255092, -0.00752244145, -0.0252345446, 0.000236455628, -0.00973566622, 0.0287025608, -0.0132289045, -0.0302158762, -0.0238473378, -0.00153538515, 0.015347546, -0.00914925616, -0.0170500278, -0.00962847285, 0.0172013585, 0.00606587483, -0.0112300655, -0.00442329654, -0.0156754311, -0.007970131, -0.00338289188, 0.0414648578, -0.0273405761, 0.0062897196, 0.0258272588, 0.0114948964, 0.0242382772, 0.0342009403, 0.016230315, 0.0131280161, 0.00820973888, -0.0160789825, 0.0193073899, -0.0340748318, -0.0135441786, -0.0215899758, 0.00714411261, 0.0106941, -0.00303609017, -0.0252849888, -0.00275549619, -0.00698647555, -0.0048110839, 0.0138216196, -0.00318269269, 0.00104119291, 0.00493404083, 0.0147169977, -0.014515223, 0.00645681471, -0.00853762403, 0.0154232122, -0.00384319201, -0.00750983087, 0.058313109, 0.00462822476, 0.008827677, 0.0241121687, -0.0138594527, -0.0124911629, 0.0110156797, 0.000914295088, -0.00164100202, 0.0183237344, -0.00180336821, 0.0190299489, -0.00582626648, -9.90650515e-05, 0.0112994257, -0.0245283302, -0.0147674419, 0.00963477883, -0.0148304971, 0.0161168147, 0.0226366855, -0.0374545716, 0.011665144, 0.0183741786, -0.0151709933, -0.0195848309, -0.00617937371, -0.0256507061, -0.00989330374, 0.00648203678, -0.0156249879, 0.00329776783, -0.0347053818, -0.0126172723, -0.0140233953, -0.0117849484, 0.00593030686, -0.00950866845, 0.00445482414, 0.000690450426, 0.0235698968, -0.000292219745, 0.0223592445, -0.0109904576, 0.0151583822, -0.0127118547, -0.0240112804, -0.00621405384, -0.00817821175, -0.000154090245, 0.0098365536, -0.00151568057, -0.0329650678, 0.000837841071, -0.00944561418, 0.0325615145, -0.0223340224, 0.00386526133, 0.0189795047, -0.0175544657, -0.0132036824, 0.00661445223, 0.0170121938, 0.0240869466, 0.0204171557, -0.0152340475, -0.0288034473, -0.0216908623, 0.0221322458, 0.00337028084, 0.0165960323, -0.00640952401, -0.0041553136, 0.00240869471, 0.048703555, 0.00401344, 0.0135820108, -0.0148431081, -0.0134559013, 0.00301559735, 0.00829801615, 0.0185507312, -0.0214260332, -0.013670288, -0.00465029385, 0.00296830619, -0.00194208883, -0.0296862163, -0.0204549879, -0.0127749089, -0.0384130031, -0.00586725213, 0.00837998744, 0.00062976015, -0.000247096119, -0.0169743616, -0.0287530031, 0.00426881202, -0.020757651, 0.0134559013, 0.0102968542, 0.00434447778, 0.00418684073, 0.00403866218, -0.0064000655, -0.0305185392, 0.00542902108, 0.02504538, -0.0187398959, 0.00138247723, -0.018765118, 0.00607218035, -0.0041521606, 0.0123587474, -0.00131232874, -0.00566862943, -0.0145908883, -0.00949605834, 0.0205810983, -0.0051168995, 0.0108328201, 0.00996266399, 0.00659553567, 0.0450211503, 0.0106184343, -0.0114948964, 0.00735219335, -0.0143260583, 0.00690450426, 0.0123083033, 0.0135441786, 0.00294466061, -0.0118921418, -0.0068855877, -0.0146917766, -0.00771791162, -0.00487729115, -0.0130523508, -0.0115831727, 0.035033267, 0.00307234679, -0.019925328, 0.0101203006, 0.0315526389, 0.0226366855, -0.0134559013, 0.00476694526, 0.00198149821, -0.0141873378, 0.0250958242, -0.0215016976, -0.025877703, 0.00665228488, 0.0144143347, -0.000621484185, 0.00674056169, -0.00657661911, 0.0277441274, 0.0389678888, -0.0172770247, 0.00802688, -0.000164829282, -0.0109021803, 0.00992483087, -0.0250201579, 0.00518310722, -0.0104671028, -0.0130271288, 0.00866373442, -0.00408595335, -0.0210981481, 0.00604695873, 0.0521085151, 0.0151079381, 0.00504753925, -0.0283494536, -0.0185381211, -0.00127055484, -0.00537227187, 0.0135946218, -0.0230906792, 0.00548892329, 0.0146287214, 0.016217703, -0.0112678986, 0.0509987473, -0.0125416061, -0.00208238582, -0.0186137874, -0.00123902748, -0.0206567626, -0.00650725886, 0.0150196617, -0.0218800269, -8.29072524e-05, 0.00326308771, -0.0118921418, -0.00243234029, 0.00620774832, -0.00631494168, 0.0151457712, -0.00138957088, -0.00115390343, -0.0271135792, -0.0145656662, 0.00989330374, -0.0115201185, 0.0325362943, -0.0145782772, 0.0220313594, 0.0134054571, -0.00135252613, -0.00562133826, -0.00219430821, 0.0211864244, -0.00766746793, 0.0049182768, 0.00960955676, 0.00667120144, -0.00764855137, -0.0085060969, 0.0177057963, 0.00644420413, -0.0152844917, -0.0187398959, -0.0111228731, 0.00439176895, 0.00558665814, 0.00534389727, 0.00849348586, -0.000197341928, 0.0028421965, 0.000661681639, 0.000893014076, -0.00269401772, 0.00596498745, -0.00173716061, 0.0152592696, 0.00913034, -0.011665144, 0.0115453396, -0.00955280755, -0.00046936443, 0.00716933468, -0.0148809403, 0.0109147914, -0.0151205491, -0.00335451704, 0.0155871548, 0.011684061, 0.00899792463, 0.0163816456, 0.0221196357, 0.0258146487, -0.00349008502, -0.00365402759, -0.00357520906, 0.00219115545, 0.0246922728, 0.0163690355, -0.00434763078, 0.019635275, 0.0115012014, 0.0219304711, -0.0124974679, 0.0165203661, -0.0280720126, -0.00700539211, 0.00102700561, 0.00966000091, -0.00261835195, 0.00926906057, 0.0150574939, 0.014212559, -0.000840993831, -0.00634016329, 0.00442644907, 0.000774786284, 0.0118732248, -0.00880245492, 0.0192821678, 0.00897900853, 0.000205519347, -0.0078314105, -0.026155144, -0.00444851862, -0.0268865805, 0.00841151457, 0.00732697174, -0.00749722, 0.0154358232, -0.0348062664, -0.00599966757, -0.00958433468, -0.000217145076, 0.00911142305, 0.0305942055, 0.00510113593, 0.00591769628, 0.0166843086, -0.00926275458, -0.00285165478, -0.00424989592, -0.0281224549, -0.0105049349, -0.0218800269, -0.00608794438, 0.0203036554, -0.0112489825, -0.0132667366, -0.0319561884, -0.0232294, -0.00389994145, 0.0245409403, 0.0122011099, -0.00630863616, -0.00679100538, -0.00539749395, -0.0118038645, -0.00641267654, -0.021615196, 0.0208080951, -0.00111607055, -0.0119173639, 0.00223529385, 0.021060314, -0.00501916464, 0.00735219335, 0.00496241543, 0.0192821678, 0.0297114383, 0.0118353926, 0.0126172723, 0.0062298174, -0.0124470238, 0.0230654571, -0.00121065276, -0.0166212544, -0.0131406272, -0.00457147555, 0.00136750168, 0.0341000557, -0.00670272857, 0.0239986703, 0.0102968542, -0.0187525079, -0.0156375989, 0.00875201076, -0.00153223251, -0.00593030686, 0.00257579, 0.0136198439, -0.00690450426, 0.0254489314, 0.00130681146, 0.0271135792, -0.00634962181, 0.00139745278, 0.00993113592, -0.0202910453, -0.0016567657, 0.0241878349, -0.0077431337, -0.0208207052, 0.000285323127, 0.00997527502, -0.00336712808, 0.00362880575, -0.0125920502, 0.0190551709, -0.00349323777, 0.00854393, -0.0193956662, -0.0268361364, 0.0129892956, 0.0188407842, -0.0147043867, 0.0142756142, 0.0337217264, -0.0408847556, 0.018487677, -0.0012595203, 0.00325993495, -0.00112474058, 0.0129073244, 0.0133045698, 0.0134811234, -0.00481423642, -0.0195596088, 0.0375554599, 0.00637484342, -0.0120813064, 0.0073458883, 0.0302158762, 0.0162681472, -0.0191560593, -0.0155493217, 0.00225421018, -0.00248278398, 0.0186642315, 0.0142377811, -0.0062897196, 0.00287530036, 0.0113309538, -0.00301402109, 0.00141321647, -0.015070105, -0.0197235513, 0.00280594, 0.00211391319, -0.0398758762, 0.00522094034, -0.00518310722, 0.00109794224, -0.00445167115, 0.00596498745, -0.0169365276, 0.0280467905, -0.0225988515, 0.0144269457, -0.00629287213, -0.00921861641, 0.0342766084, 0.00699278107, 0.0131784603, 0.0131280161, -0.00778096635, -0.00851870794, -0.000525325595, 0.00892225932, -0.0121002225, 0.0259533692, -0.00724500045, -0.0126551054, 0.00400398206, 0.00477640377, -0.019357834, -0.0218421947, 0.00778096635, 0.0180589035, -0.0280972328, 0.00182543742, 0.0294339955, -0.00629287213, 0.010536463, 0.0100761624, 0.00219115545, -0.00795752, -0.0241247788, -0.0225610193, -0.0135189565, -0.00563079678, 0.0137963975, -0.0110219847, 0.0134559013, -0.0210855361, -0.0189921167, -0.0208963715, -0.00640321849, 0.0143512804, -0.000420891, 0.000941093371, 0.00622666487, -0.00813407358, -0.00528399507, 0.00855023507, 0.00787554868, 0.00445167115, 0.0198748838, -0.0151836034, -0.0235446747, -0.00468182145, 0.0209342055, 0.0276684612, 0.0181093477, -0.0230276249, 0.00837368146, -0.0144269457, -0.0171635263, -0.00337658636, -0.00568754598, -0.00672164513, -0.027895458, 0.00323156, -0.0191182252, 0.00882137101, -0.00601543114, 0.0202406012, 0.00902945176, 0.000878826715, -0.0022463284, 0.0215521418, -0.00452733692, -0.013077572, -0.00425620144, -0.0148809403, 0.0138972849, -0.0166086424, -0.0121002225, 0.0222961884, -0.00747830328, -0.00036690032, -1.81405794e-05, -0.00152356236, -0.00801426917, 0.0110661229, -0.0103914365, -0.0169491395, 0.0373536833, 0.0141747268, -0.0131784603, -0.00458723912, -0.00924383849, -0.0125416061, 0.0199883822, 0.0022463284, -0.0180967376, 0.0222835783, -0.00957803, 0.0260542575, 0.0197866075, -0.0113309538, -0.00466921041, -0.0124281077, 0.0141999489, 0.0174914114, 0.0118669197, 0.00146917766, 0.00375491544, -0.0224222988, 0.00285796029, -0.0299384352, 0.0109967627, 0.01422517, -0.0161294267, 0.0115012014, -0.0164699219, -0.00690450426, 5.83257206e-05, -0.00479532, 0.00493088784, -0.0054353266, -0.0051484271, 0.00831693225, 0.0120497784, 0.00497187348, -0.000533207436, 0.00146050763, 0.0100446353, 0.016217703, 0.0067973109, 0.000392319285, -0.00839259848, -0.0307455361, 0.00907989591, 0.00649464782, 0.0162807573, -0.00950866845, 0.00309599238, 0.0174535774, 0.0178319067, -0.00781249395, 0.0154862674, -0.00331037864, 0.0221322458, 0.0064883423, -0.0098176375, 0.000320988504, 0.0172896348, -0.0181597918, -0.00653878599, -0.0370257981, -0.00467866845, 0.0104860188, -0.00492458232, 0.0074530812, -0.00401344, 0.00100336, -0.0111859273, -0.0267352499, -0.0122704701, -0.0122830812, 0.0239986703, -0.0208711494, -0.00164730754, -0.0106625725, 0.0103283813, 0.00516734365, 0.00963477883, -0.00515158, -0.00682253297, 0.00277283625, 0.00622666487, -0.00821604487, 0.00300771557, -0.00205085846, -0.0127055487, -0.00659553567, -0.0134811234, -0.00236928533, -0.00463137729, 0.00352476514, -0.00863220636, -0.0058640996, -0.00287845312, 0.0208711494, 0.000979714445, 0.00763594033, 0.00124375662, -0.00177184085, 0.014212559, -0.0073143607, -6.66509295e-05, -0.0123713585, -0.0199631602, -0.0266343616, -0.00588932121, -0.011942585, 0.0151836034, -0.0201397128, 0.0268613584, -0.0179454051, 0.0352098197, -0.00319372723, 0.0109589305, -0.00858176313, -0.0140233953, -0.0111859273, 0.0013375507, 0.0380346738, 0.0134559013, 0.0129136294, -0.0136198439, 0.0131658493, -0.0256507061, 0.00325678219, -0.0031606236, -0.0120623894, 0.0123398313, 0.011400314, 0.00756658, 0.00799535308, 0.0248688255, -0.0248309933, -0.0200514365, -0.00450211531, -0.00448319875, -0.000528084231, -0.0112300655, -0.00511374697, 0.00146129576, -0.0034837795, 0.00159686361, -0.00314643607, -0.012516384, 0.0106247393, 0.0237086173, -0.0169743616, 0.00802688, -0.00651987, -0.00324732391, -0.00442644907, 0.00626449753, 0.0246922728, -0.0101329116, 0.0162681472, -0.0175796878, 0.0160285383, 0.00952127948, 0.000860698463, -0.027037913, -0.0286268946, -0.000843358401, 0.0106121283, 0.0234311763, 0.00419629924, 0.00481423642, -0.00791338179, -0.0304176509, 0.0178445186, 0.0027476144, -0.0241121687, -0.0156375989, -0.0216025859, 0.0142630031, -0.0108769592, 0.00291313324, -0.0005304488, 0.00646312, -0.0136828991, -0.0317039713, -0.012819048, -0.0164573118, 0.0148557192, 0.00218169717, 0.0018412011, 0.029333109, -0.00470073801, 0.0218295828, 0.011091345, 0.0226240736, 0.0123524414, -0.00144868484, -0.00124296837, -0.0118606137, -0.00498763751, -0.00662075728, -0.00776205, -0.012232638, -4.3547243e-05, -0.00924383849, -0.0154862674, 0.000571434444, -0.0116147, 5.05916505e-05, 0.00128710677, -0.0118227815, -0.00182386104, 0.0261803661, -0.00246386766, -0.00152592699, -0.00303609017, -0.0151962144, -0.00916817319, -0.00300929183, 9.81290868e-05, 0.0159780942, 0.00714411261, 0.0128821023, 0.0257642046, -0.00753505249, -0.00282958569, -0.000602173677, -0.0273657981, -0.00353107066, 0.0174661893, -0.0178697389, -0.000125912615, -0.0147169977, 0.00411748048, 0.00208553858, 0.00223529385, 0.0256885383, 0.0149692176, 0.00409541139, 0.0124154966, 0.000331629, -0.0178445186, 0.000424043741, -0.00130996411, -0.0283746757, 0.0191434473, 0.0094203921, 0.0158772077, -0.0067847, 0.0014297684, 0.00817190669, -0.00714411261, 0.0226366855, -0.013670288, 0.0151457712, -0.00995005295, 0.00672795065, -0.0135315675, 0.0367735773, -0.0124091916, 0.0177562404, 0.0201397128, 0.0164699219, 0.00928797666, 0.000767692574, 0.0161546487, 0.00780618843, -0.0090420628, -0.0180841256, -0.012819048, -0.00749722, -0.0229897927, -0.0272144657, 0.0038305812, -0.00456832256, 0.00284850202, -0.0251588784, 0.00564656034, -0.00716933468, -0.00808993541, 0.0168608632, 0.0187020637, 0.00947083626, -0.0160789825, 0.0104671028, 0.00502547, -0.00608794438, -0.00113262248, 0.0186011754, -0.0184624549, -0.00530606415, -0.0114759794, 0.015070105, -0.00521778734, 0.0140864495, -0.0068855877, 0.00714411261, 0.00106877938, 0.0155871548, 0.0249571037, 0.0188533943, 0.014805275, -0.00280121085, 0.000647888402, -0.00510428892, 0.0231663454, -0.0243896097, -0.00342703029, 0.00561503274, -0.00855654106, -0.000428772881, -0.0131280161, 0.00173716061, 0.00582311396, 0.0285260063, -0.00376752624, -0.00901053566, -0.00671533961, -0.00776205, -0.00676578376, 0.00706214132, -0.0163816456, -0.0127433818, -0.00935733691, -0.00768638402, 0.0219809152, 0.0106625725, -0.00723869493, 0.0143008363, -0.0435078368, -0.0231159013, -0.0187020637, -0.0136955101, 0.0145782772, -0.00421836833, 0.00424989592, 0.00961586181, 0.00484891655, 0.0152971027, 0.00743416464, -0.00950236339, 0.0367988, 0.0164699219, -0.00434447778, 0.0166212544, 0.0110219847, 0.0157006532, -0.0066585904, 0.0111165671, -0.00568754598, 0.012238943, -0.0160033163, -0.0102022719, -0.000644341577, -0.0143134473, -0.00155193708, 0.00624558143, 0.00516419066, -0.0073458883, 0.00672795065, -0.0114885904, -0.00522094034, -0.0184372328, 0.0186390094, -0.00863851234, 0.0205937084, 0.0208837613, -0.028147677, -0.0235068426, 0.00655139703, 0.0109778466, 0.00181282649, 0.0117345043, 0.0206063204, -0.00911142305, 0.0263316985, -0.00833584927, 0.0245031081, 0.0317544155, -0.0209342055, -0.0141368937, 0.0016346965, 0.0162429251, -0.0111922333, -0.0220061373, -0.020505432, 0.0160789825, 0.00747199776, -0.0121948048, -0.00358466734, -0.00186957582, 0.00471019605, -0.012800131, 0.00954019651, -0.00300456281, 0.0124596348, 0.0136955101, 0.000465029385, 0.00447689323, -5.72912286e-05, 0.00204140018, -0.00921231136, -0.00332298968, 0.0180336814, -0.00312121422, 0.0314769745, 0.0191812795, -0.00238347263, 0.0189416725, -0.0171509143, 0.0016504603, -0.0116273109, -0.00993113592, -0.00715041813, 0.00193105428, -0.0141621158, 0.00564971287, -0.00938255899, 0.0120371673, 0.0274162423, 0.0214008112, 0.00394723238, 0.00254741521, -0.0292574428, 0.0004216792, -0.000522961, -0.0223970767, -0.00437285285, 0.0228636824, -0.00513581606, -0.0140486164, -1.45937456e-05, -0.0143638914, -0.00349008502, -0.0186894517, 0.0131154051, -0.0164573118, -0.00445797667, -0.00419629924, -0.00939517, -0.0177057963, 0.00208711508, 0.000125715567, 0.00285638403, -0.00340811373, -0.00518310722, -0.00172297331, 0.000993901864, 0.0202406012, 0.00959064, 0.0240617245, -0.000245322706, 0.020505432, 0.0176805761, -0.0140233953, 0.00795121491, 0.00516419066, -0.00174661889, -0.00725130597, -0.0201271027, 0.00562764378, -0.046938017, -0.0037265406, 0.0112552876, -0.0112363715, 0.00652617542, -0.000350545452, 0.0223214105, 0.00593030686, -0.0199001059, 0.00524931494, 0.0102716321, -0.0207198188, -0.0155493217, -0.0240869466, -0.00212652422, -0.00777466083, -3.12564771e-05, -0.0067847, -0.0249571037, 2.1946038e-05, 0.00558665814, 0.000223056471, 0.0135189565, -0.000479216746, 0.0172644127, -0.0249444917, 0.00422782637, 0.0285764504, 0.0155367106, -0.00155430159, 0.00979872141, -0.0106499614, 0.0178066846, -0.0067973109, 0.00520517631, -0.00407964783, 0.0194461104, -0.00727652758, 0.00246386766, 0.00757919112, -0.0263064764, 0.0277189054, -0.00433501974, 0.0047511817, -0.0100320242, 0.0179454051, -0.0137837864, 0.0124281077, 0.0104040476, -0.0172391906, -0.0255498178, 0.0066585904, 0.00251115882, -0.005403799, 0.0141873378, 0.0137963975, -0.000118326338, -0.0201397128, 0.0287782252, 0.00725130597, -0.000541483401, -0.00574114267, 0.00655770255, 0.00128631864, -0.00825387798, 0.012819048, 0.0011751845, 0.0092249224, -0.00513266353, 0.012812742, -0.0200262144, 0.000995478127, -0.00646312, 0.0014218865, -0.0123083033, -0.0197235513, -0.000129557971, -0.0191686694, 0.0107256267, 0.0211359803, -0.0295348838, -0.00200672, 0.00490566622, -0.0187272858, -0.0193326119, 0.00972305518, -0.0131154051, -0.00849979185, 0.0181724038, 0.0240995567, -0.000136750168, 0.00205716398, 0.000779515365, 0.00920600537, -0.0165960323, 0.0185507312, -0.00447689323, -0.0046408358, 0.0114759794, -0.0190047268, 0.00292889704, -0.00392831629, -0.00194839435, 0.0201271027, -0.00979241543, 0.0118921418, -0.00589562673, 0.0160411503, 0.0166086424, -0.0177436303, -0.0134559013, 0.0133297918, 0.00124375662, -0.00106799125, 0.0103031602, -0.0154862674, 0.00242918753, 0.0358151458, 0.0178192966, 0.00848718081, -0.0489557721, -0.00523355138, 0.00358466734, -0.00667120144, 0.013947729, -0.00182386104, 0.00964108389, 0.00776205, 0.000730253814, -0.0244148318, 0.0164825339, -0.00849348586, 0.00667120144, 0.0153223248, -0.00382427569, -0.00251273508, 0.00899162, 0.00865742844, 0.0149692176, 0.00352161238, 0.0131154051, -0.00359412539, -0.0210477039, 0.0175796878, -0.00548892329, 0.00517049618, 0.00297145895, 0.00287687685, -0.0175544657, 0.00966630597, 0.0158267636, -0.00686036609, -0.00466290489, 0.0167095307, -0.000655770244, -0.00325362943, 0.00716933468, -0.00933211576, -0.0188660063, 0.0127559928, -0.00147627131, -0.00297461171, -0.00669642352, 0.00950236339, 0.0123713585, 0.00352476514, -0.0134306792, 0.00631809421, -0.0229141265, 0.0163438134, 0.0209846478, 0.00909881201, 0.00257263728, 0.0108517371, 0.0271135792, -0.00440122746, 0.0312499758, 0.0113309538, 0.000116552917, -0.012819048, -0.00669642352, -0.00313382526, -0.00909881201, 0.0163438134, -0.000974985363, -0.0115327286, -0.00320160924, 0.0236455631, 0.0356133692, -0.0123335253, -0.00197834545, 0.0176679641, -0.0396741, 0.00448950427, -0.00619198475, -0.00265460857, -0.0152340475, 0.00652617542, 0.0165455882, -0.0382112302, -0.000766116253, 0.019042559, 0.00254110969, 0.0197613854, 0.0237842835, 0.000982079073, -0.0155114885, 0.00920600537, 0.0146917766, -0.0257389825, -0.00975458231, 0.00960325077, 0.0108832642, 0.011375092, -0.00952758547, -0.0301149879, 0.00987438671, -0.00104592205, 0.00715672364, -0.00187745772, -0.00872678868, -0.0052083293, -0.00280278735, -0.00718194572, 0.0180841256, -0.0148304971, 0.0145404441, 0.000616755104, -0.00016000164, -0.0205937084, -0.0143260583, 0.00473226514, 0.000634095166, -0.000684539031, -0.00150543416, -0.0105679901, -0.0109210974, -0.0131910713, 0.00264672656, 0.00497502647, 0.00463453028, -0.015082716, -0.0194082782, -0.0172265805, -0.00645050965, -0.00274288515, 0.0160159282, 0.0015361734, -0.027592795, -0.0243139435, 0.0471902378, 0.0203036554, 0.005403799, -0.0257515945, -0.020227991, 0.0169617496, 0.0239103921, -0.01225786, -0.0108391261, -0.0118984468, -0.024477886, 0.0370762423, -0.0116273109, -0.00469758501, -0.00566862943, -0.00121065276, -0.000818136439, 0.0205558762, 0.00151410419, 0.00625188649, 0.00938255899, 0.0153979901, -0.000685721287, -0.00634016329, -0.00467551593, 0.00642528757, 0.0174914114, -0.0023346052, 0.00269086496, -0.0103472983, 0.00505069224, 0.00654509151, -0.00831693225, -0.000401580473, -0.0142503921, -0.00136356079, 0.0102968542, 0.00466290489, -0.00770530058, -0.0224475209, 0.00958433468, -0.015347546, 0.00947083626, 0.00400082907, 0.00568754598, 0.0150196617, 0.0454247035, -0.00213913526, 0.0183994, -0.00513896905, -0.0163942575, -0.000332417199, 0.0279711243, 0.0208963715, 0.0137459533, -0.00033005263, 0.0182480682, -0.014805275, 0.0149061624, 0.00251115882, -0.00362880575, -0.00426881202, -0.00137538358, 0.00349639053, -0.00603434769, -0.0395227708, -0.00133203331, 0.00407334231, -0.00750983087, -0.00768638402, -0.0298123248, -0.0188533943, 0.0198622718, -0.00653878599, 0.00157952355, 0.00625188649, 0.021035092, 0.00443275459, -0.00371077703, 0.0111417891, -0.00697386451, -0.0132793477, 0.0283494536, 0.00643789861, 0.0154106012, 0.0266848058, -0.0205684863, -0.00410802243, 0.0160915926, -0.00869526155, 0.0136828991, -0.0110661229, 0.00110030686, -0.00645366218, 0.0258524809, -0.0221574679, -0.0070243082, -0.0140738385, 0.00199253275, -0.0194965545, 0.00281224563, -0.00482369494, 0.0235572848, 0.00940147601, 0.0109841516, 0.00120355911, 0.0266343616, -0.00594291789, 0.0109778466, 0.016230315, 0.0229141265, 0.0090420628, 0.00195942889, -0.000691238616, 0.00667750696, -0.0113309538, 0.00484261103, -0.0425746217, 0.00826018304, -0.024175223, 0.0134054571, 0.00140927557, -0.0107634598, 0.014805275, -0.00984286, -0.00636223285, 0.00828540511, -0.0147674419, -0.0162807573, -0.0052083293, 0.0185759533, 0.0169995837, -0.00689189322, -0.00882137101, 0.00298249372, 0.00447689323, -0.00166149484, -0.00211864244, -0.00477325078, -0.0191434473, 0.00450211531, 0.0029304733, 0.0146665545, 0.00822235, 0.00624873396, -0.00591139076, -0.0120686954, -0.0204928201, 0.0087646218, -0.00712519605, -0.0195469987, -0.00496556796, 0.00772421714, -0.0132919587, -0.0145026119, -0.00344594661, -0.00780618843, 0.00652617542, -0.0103599094, 0.0091618672, 0.00420260476, -0.00399767654, 0.0226997398, -0.00219115545, 0.0215016976, -0.000125617051, 0.0230402369, -0.0111859273, -0.0126046613, 0.0048709861, -0.0177184083, 0.0131280161, 0.00387787214, -0.0145404441, 0.0106121283, -0.0120434733, 0.00621405384, -0.0122515541, -0.0102716321, 0.00744047, 0.00747830328, 0.00226997398, 0.0103094652, -0.0230780691, -0.00895378646, 0.0025048533, -0.00583887752, 0.0249192696, -0.00127686036, 0.0150448829, -0.010252716, 0.013090183, -0.00655139703, -0.00528399507, 0.010826515, 0.0212620907, 0.000937940669, -0.00145577849, 0.000681386271, 0.0168608632, 0.00542271556, -0.004549406, -0.006690118, 0.000373796938, 0.000335175835, -0.0141368937, 0.000848087482, -0.0103725204, -0.0109147914, -0.0181345697, -0.00218485, -0.0147548309, -3.84856139e-06, -0.0129640736, -0.0074530812, 0.00136828993, 0.0136828991, 0.0163942575, 0.013935118, 0.00145262573, -0.00601227814, -0.0253732651, 0.00152119785, 0.0195848309, -0.0159024298, 0.00568124047, 0.0102022719, 0.0100950785, -0.00257263728, -0.00830432121, 0.0195091646, -0.00106799125, 0.0190299489, -0.00674686721, 0.0206441525, -0.000927694258, -0.0330659561, -0.0179075729, 0.0120876115, -0.0093005877, 0.0127055487, -0.0250958242, 0.00851870794, -0.0148431081, 0.0127686039, -0.00841151457, 0.0178445186, -0.0114066191, 0.0213251449, -0.0166716985, -0.00583572499, -0.00538803544, -0.00583887752, -0.00521148182, -0.00939517, 0.0144017236, 0.0080457963, 0.0174157452, -0.00835476536, -0.0085060969, 0.00113813975, -0.00569069851, -0.00289579318, 0.00984286, 0.0409856401, 0.00233145244, 0.00604380574, 0.0121948048, 0.00105695659, -0.0196731072, -0.0161042046, -0.0187272858, -0.00636538537, -0.00770530058, 0.0185885653, 0.000120198274, -0.00118700729, -0.00171824417, -0.00339865545, -0.00576636428, 0.00976719335, -0.0245409403, -0.0229519587, -0.00760441273, 0.00816560071, -0.00913664512, -0.00813407358, -0.00400398206, 0.00157952355, -0.000717642833, 0.0174283553, 0.00358782, -0.00230150134, -0.0118227815, 0.0112678986, 0.030165432, 0.00509483041, 0.00209972588, -0.00426881202, -0.0052083293, 0.0285260063, -0.00350900157, -0.00244968035, 0.0163690355, -0.0170374159, -0.0147422198, -0.0169995837, -0.00587986317, 0.00851240288, 0.0195469987, -0.00819082279, -0.00547631225, -0.00013724278, 0.00240396545, -0.0131658493, 0.00679100538, 0.0292069986, 0.0125731342, -0.023330288, 0.012812742, 0.0118858358, 0.0160663724, 0.0352602638, -0.0119236689, 0.0145908883, 0.00776835531, -0.00993113592, -0.0144647788, -0.00674056169, 0.0148431081, -0.0134306792, 0.00946453, -0.0119362799, 0.0160033163, 0.0106625725, -0.00817821175, -0.0259029251, 0.00684775505, -0.0247174948, 0.0113561759, 0.0250832122, 0.00340496097, 0.0016504603, -0.00911772903, 0.0151583822, -0.00907989591, 0.0169995837, 0.0239356142, 0.0106436554, -0.0112174544, 0.0120245563, 0.000955280731, 0.00809624, 0.00139272364, -0.0195343867, 0.0117786424, 0.00558035262, -0.0112111494, -0.000993901864, 0.0208459273, -0.0205180421, 0.016507756, -0.0251714885, 0.0100950785, -0.0113246478, -0.000538724707, -0.0198874939, -0.0148935514, -0.00272239232, 0.0041521606, 0.0229771808, 0.00601543114, 0.0184624549, 0.0232798439, 0.0119236689, -1.61578009e-05, 0.0046124612, 0.00942669716, 0.00743416464, -0.0223466326, -0.0318553, -0.00706844684, -0.0227501839, -0.00181440287, -0.00412063347, -0.0130145177, -0.00538803544, -0.00641582906, 0.000672322174, 0.00306446501, -0.00388417765, 0.000544636103, 0.00559611665, 0.00194839435, -0.0139603401, -0.0154358232, 0.00553621445, 0.0151079381, -0.0330659561, -0.0098176375, -0.0186390094, -0.0141621158, -0.000705425919, -0.00161578, 0.0177940745, -0.00562764378, 0.0281981211, 0.000605720503, 0.00616361, 0.0187525079, 0.00414585508, -0.0136198439, -0.00133124518, -0.00890964828, 0.0038305812, 0.0223844666, -0.0169239175, 0.00554567249, -0.0295601059, -0.0094203921, 0.0105616841, 0.00168829318, 0.017062638, 0.00877092686, -0.00624558143, -0.00616361, 0.00274446164, 0.0047795563, -0.00514527457, -0.0130397398, 0.0113057317, 0.00125873205, 0.0113183428, 0.00642213458, -0.0129640736, -0.0124091916, -0.020467598, -0.00172454969, -0.0195974428, 0.000217539171, 0.0172139686, -0.00329461507, 0.00601227814, 0.0109210974, -0.00186642306, -0.00460300269, 0.0014439557, 0.000901684107, 0.00357520906, 0.0266595837, 0.0187525079, -0.0208837613, 0.00778096635, 0.0115075074, -0.0106751835, -0.00814037863, 0.0244274419, 0.00711258501, 0.00494349888, -0.00209814962, -0.0228132382, 0.0142882252, 0.0146917766, 0.0510239713, -0.0143260583, 0.00991852488, -0.0255876519, -0.00592715433, 1.28572747e-05, -0.0019152906, 0.0111733163, 0.000433502, -0.00372338784, 0.00309283962, -0.00391885778, 0.0139729511, -0.00594291789, 0.0144143347, -0.00339235, -0.00243076379, 0.0200136043, 0.00583887752, 0.0107886819, 0.00682883849, -0.00815929566, 0.0228384603, 0.0208459273, -0.00326624047, 0.00613208255, -0.0210981481, -0.0322336294, -0.0177562404, 4.53452922e-05, 0.0109210974, -0.0140486164, 0.00216278085, -0.00701169763, 0.00590508524, 0.0183111243, -0.00384634477, -0.00139272364, 0.00353737618, 0.00193420704, 0.0130397398, -0.0135441786, 0.000397048396, -0.00547000673, -0.00517995469, -0.0054952288, 0.0115327286, 0.00342387753, 0.0245535523, 0.00716302916, -0.0142630031, 0.0014660249, 0.0407334231, -0.0198622718, 0.000395669078, 0.0107067106, -0.00837998744, 0.0051768017, 0.00481738942, 0.00965369493, -0.00849979185, 0.013947729, -0.000463847129]
31 Aug, 2021
jQWidgets jqxTooltip opacity Property 31 Aug, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported framework The jqxTooltip is a jQuery widget that is used to display a popup message. The jqxTooltip widget can be used in combination with any HTML element. The opacity property is used to set or return the opacity of the tooltip element. It accepts the Number type value and its default value is 0.9. The opacity value must be between 0 and 1. Syntax: Set the opacity property. $('Selector').jqxTooltip({ opacity: Number }); Return the opacity property. var opacity = $('Selector').jqxTooltip('opacity'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css”> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”.jqwidgets/jqxbuttons.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script> Example: The below example illustrates the jQWidgets jqxTooltip opacity property. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css"> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src=".jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxtooltip.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTooltip opacity Property </h3> <br><br> <input type="button" id="jqxBtn" style="background: green;" value="GeeksforGeeks" /> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxBtn').jqxButton({ width: 150, height: 50 }); $("#jqxBtn").jqxTooltip({ theme: 'energyblue', content: 'A computer science portal', position: 'top', width: 200, height: 30, opacity: 0.4 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtooltip/jquery-tooltip-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtooltip-opacity-property/?ref=next_article
PHP
jQWidgets jqxTooltip opacity Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0533168875, -0.00577538088, -0.00633845711, 0.0371938199, 0.0619322658, 0.0059046112, 0.0184738338, 0.0316799805, -0.0218338314, -0.0216738321, -0.040541511, -0.0176122952, 0.00933537818, -0.00991999358, 0.000959230121, -0.00816614833, -0.0174030643, 0.0178830642, -0.00211846014, 0.0123323, -0.0242707524, -0.00798153318, -0.0438892022, 0.0124984533, -0.0207753703, 0.0298338253, 0.0133784525, 0.0281845964, -0.0239876769, 0.0234584454, 0.016615374, 0.00830768701, 0.0200861394, 0.00464615086, -0.0106092235, -0.0356430523, 0.00206769095, -0.00396307418, -0.0333292075, -0.024319984, -0.00897230208, -0.0216369089, 0.00189999875, 0.0190276802, 0.016492296, -0.0126892226, 0.0165169127, -0.0284307506, 0.000649614958, -0.00328922854, -0.00825230218, -0.017846141, 0.00940922461, 0.0506584272, 0.00283999811, -0.02040614, 0.0125107607, 0.031089209, -0.016073836, -0.00558461156, 0.0133292219, -0.00866461, -0.0244184453, -0.0102769164, -0.0309661329, -0.0160615277, 0.0262399819, 0.00995691679, -0.0609476529, 0.016221527, -0.00657845708, 0.0107815312, 0.031630747, 0.0211446, 0.0259692129, 0.00404615095, -0.0117230695, -0.0201599859, -0.00285692117, 0.0561230406, 0.00383999734, 0.0174892191, -0.0242953692, 0.0110646077, -0.00335076707, 0.00082538405, -0.0233969074, -0.025132291, 0.0355199762, 0.0366276689, -0.0276430584, 0.0128738377, -0.0104307625, 0.0171446037, 0.00846153311, -0.0307692103, -0.0204676781, 0.00457538152, -0.0390892029, 0.0213169083, 0.0242215227, 0.0166769121, 0.0149784517, 0.0209230632, 0.0234584454, 0.0134399906, 0.0404430479, -0.0406892039, 0.00429845881, 0.0146092214, 0.0190030634, -0.016763065, -0.0188307557, 0.00267076748, -0.0126522994, 0.0479261205, -0.0154338358, -0.0198769104, 0.00878768601, -0.026486136, -0.00242307526, -0.00513230404, -0.011796915, 0.0585845746, -0.00623384211, 0.0239384454, 0.0113415308, 0.0138707599, 0.0455138162, -0.0347322859, 0.0172061417, 0.0592245758, -0.00704614911, 0.0139076831, 0.0425599702, 0.022030754, 0.0259692129, -0.000518461165, -0.0241476763, 0.00655384175, -0.0396307409, -0.0179446042, 0.00734768715, 0.0208861399, 0.010713839, 0.0263630599, -0.0152492207, 0.00848614797, -0.0377599746, 0.00130769145, -0.0138830673, -0.0429292023, -0.002144614, 0.0161599889, -0.00426768931, 0.0231630616, -0.0244799834, 0.0476799682, -0.0263138283, -0.01044307, -0.012972299, -0.0297599807, 0.0120307608, 0.0178707577, 0.00173692196, -0.0263138283, 0.0212430619, 0.00366768986, -0.0441845842, 0.0253292136, 0.00579691911, -0.0181907564, -0.0153969126, 0.021612294, -0.0741414875, 0.0130584529, -0.00455692, -0.0411076657, -0.00645538047, -0.0405661277, -0.0404430479, 0.00688614929, -0.0251815207, 0.00308615179, -0.00140922982, -0.0370707437, -0.00455692, 0.00409538206, -0.047015354, 0.00223846012, -0.0358645916, 0.0381292067, 0.0269784443, 0.00250922912, 0.0181415267, -0.0192122944, -0.0181661416, -0.000365961285, -0.0162338354, -0.0511999652, 0.0138092218, -0.00938460883, -0.0352245905, -0.0150646055, 0.0248861369, 0.0215507541, 0.0118399924, -0.0739445686, 0.0639507249, 0.00846153311, 0.0454399697, -0.00251846, -0.00446153525, 0.00285076723, -0.00654153386, 0.00104999926, -0.0192246027, -0.0250953678, -0.0177107565, -0.0167015269, 0.0146830669, -0.00259538298, -0.00884922501, 0.0420430489, -0.0808368698, -0.00980922394, 0.0299569033, -0.0318030566, -0.0261907522, 0.0123938378, -0.0059353807, -0.00150769134, -0.0289476737, -0.011046146, 0.0263384432, 0.0562707298, -0.00538768852, 0.0354461297, 0.0343630537, 0.0015269221, -0.00387692056, -0.0146338362, 0.00739691826, -0.0186461415, -0.000223846, 0.0168738347, -0.00907691661, -0.00327692088, -0.011316915, 0.00550153479, -0.00736614875, -0.00332922861, -0.0167876817, 0.00438153557, -0.00890461, -0.00383384363, 0.0185476802, -0.00981537811, 0.00659691868, -0.00154461432, 0.04622766, 0.0234092157, 0.0134892222, 0.0247261375, 0.033255361, 0.0105230696, 0.044036895, -0.0352492072, 0.0119630685, 0.00331384386, 0.00818461, -0.0137230679, 0.0543999635, 0.0347322859, 0.00783999451, 0.0380553603, -0.0288984422, -0.0104984548, -0.00746461051, -0.0268061366, 0.0262645986, 0.0142276827, 0.03810459, 0.0570584238, 0.022030754, -0.00588922668, -0.00608614972, -0.00609538052, -0.0129969139, -0.0114646079, -0.039187666, -0.0266092122, 0.0210215244, 0.00115230691, 0.0255753677, -0.020135371, -0.00114999921, -0.0282830577, 0.00651076483, 0.00459384313, -0.0469415076, 0.00373845897, -0.0288738273, -0.0196799859, 0.0122092227, 0.0709907189, 0.0472615063, -0.00345230545, -0.00460307393, 0.00220307545, 0.0617845729, 0.0206030626, -0.0188307557, -0.0487876609, -0.0124061452, -0.00373845897, 0.0125723, 0.0157907587, 0.00919383951, -0.0104246084, 0.0181415267, 0.00196922943, -0.0178584494, 0.0314830542, 0.0368738212, -0.00438461266, -0.021883063, 0.000946153188, -0.0236307532, 0.0300553646, -0.0397045873, -0.0105907619, 0.00219076779, 0.0391138196, -0.00342769, -0.0347076692, 0.0181538332, -0.0157046057, -0.0135999909, 0.0426338166, 0.0253784452, -0.0120246075, -0.00274307514, 0.00533538125, 0.0250338297, -0.0770953298, 0.00283384416, -0.030941518, 0.0345107466, 0.033772286, 0.000799999456, 0.0452184305, 0.00232615229, 0.0190769099, 0.0170215275, 0.00222153706, -0.00412615109, -0.0259938277, -0.0187076796, 0.00678768754, 0.0298092104, 0.0199876782, 0.0378584377, -0.00491076615, 0.00965537783, -0.026215367, -0.0515938103, 0.0175630655, -0.0112184538, 0.0014784605, -0.0593722686, -0.0358153619, -0.0156430658, 0.0611938052, -0.0122030685, 0.00199230644, -0.0238769073, 0.0079569174, -0.0327630565, 0.0330830552, -0.0473599695, -0.00258922903, 0.0338215157, 0.0296369027, -0.0133046061, 0.0193476789, 0.0052184579, -0.0401722789, 0.0257722903, 0.033255361, -0.0269538276, 0.0269538276, -0.0164430663, -0.0212061387, -0.00139461446, 0.0252799839, -0.0135876834, 0.0052276887, 0.0392615125, -0.0167138353, -0.018510757, -0.0168492198, 0.0317784399, -0.00326461322, 0.0129230684, -0.0237661377, -0.0571568832, -0.007163072, 0.0128246071, -0.0105292238, -0.0179199874, -0.0309169032, -0.00512922741, 0.0319507495, 0.0295138266, 0.0150646055, 0.0217969082, 0.0480245836, 0.0206522942, -0.0393107422, 0.0552368872, -0.00922460947, -0.0245045982, -0.00765537936, 0.00300769019, -0.0018230757, -0.0404676646, 0.0174522959, 0.0661661103, -0.0129846064, 0.0145599898, -0.0020092295, -0.00644922629, -0.0550399646, 0.0255015213, 0.0164061431, 0.0275938269, 0.01270153, 0.00751384115, -0.0160246044, -0.0295138266, -0.000120384531, 0.0150276823, 0.0289722886, -0.0562707298, -0.0117661459, -0.0223630611, -0.0130461454, 0.0148184514, 0.0226707533, 0.00755691808, -0.0350030549, -0.0230399836, -0.0108923, 0.0115323, 0.00414768932, -0.00419384334, 0.00364922825, 0.0276430584, -0.0344122835, -0.0442338176, 0.0131815299, -0.028233828, -0.000788461, -0.0399015099, -0.0190769099, 0.00638153404, 0.0234953687, 0.00161076814, -0.00958153233, -0.0249599833, 0.0200861394, 0.0104492242, 0.0646399558, 0.0219199844, 0.00413230481, 0.0155199897, 0.00979691651, 0.00526461191, -0.0170215275, 0.0369476676, -0.0148430672, 0.0234584454, 0.00812922511, 0.0306215174, 0.0117107611, 0.0585845746, -0.0129476832, 0.00520307338, 0.0236922912, 0.0278153662, -0.0182892177, -0.00938460883, 0.00458768941, -0.00722461054, 0.0037907667, -0.0261907522, -0.0178092197, 0.0346338227, -0.00531999627, 0.00745230261, 0.0350522846, -0.0424615107, 0.042953819, 0.00977230072, -0.00654153386, -0.0318276696, -0.00566768833, 0.0114399921, -0.0186953712, 0.00728614908, -0.0239138305, 0.00655999547, 0.0105538387, 0.00242153672, -0.0125476839, -0.0263876747, -0.0162461437, 0.0208861399, -0.0067384569, 0.0135384528, -0.00438461266, 0.0106523009, 0.0173292197, 0.0385969, 0.0767014846, 0.00363999745, -0.0382768959, 0.00127538375, 0.0185599867, -0.0181784499, 0.00352615141, 0.0217722934, -0.0186215267, 0.0100738397, 0.0330830552, 0.0136984522, -0.00126692222, -0.0401230492, 0.0347815156, -0.0111938389, -0.00045999969, -0.0261907522, -0.00678768754, 0.00130999915, -0.00396307418, 0.0108492235, -0.0112430695, 0.002686152, 0.0306953639, 0.012159992, 0.0193476789, -0.00702153379, -0.00338769, -0.0142030669, -0.0208738316, -0.00534153497, -0.00759384083, -0.027839981, -0.0253538284, -0.00619076518, -0.00171692192, 0.0159630664, 0.00301692099, 0.0134276832, 0.00871999376, 0.0365292057, 0.0348061286, -0.0345107466, -0.0049661505, 0.00879999436, 0.00531691965, 0.00563076558, 0.0223507546, -0.00644307258, 0.0161599889, 0.0157661438, -0.0171322953, 0.0215753708, 0.00864614826, 0.00529845804, -0.048664581, 0.0178338345, 0.0263138283, 0.00703384122, -0.00267076748, -0.00157153746, -0.00505845807, -0.0509538129, 0.00775384111, 0.00433845865, 0.0340184383, -0.00210307562, 0.00795076415, -0.0150892204, 0.0164676812, -0.0135384528, 0.0197784491, 0.00778461, -0.0160492193, -0.0106461467, 0.0285538267, 0.0206892174, 0.0170830656, 0.0141538363, 0.00892922468, -0.00517845806, -0.00259692129, -0.0125415297, 0.0201230627, -0.0438153557, 0.00561230397, 0.0615876503, -0.0124369143, -0.0189907569, -0.00847999472, -0.021218447, 0.030670749, 0.00122999912, -0.00280153658, 0.0336738229, 7.95672531e-05, 0.0367261283, 0.0266584437, 0.0408861265, 0.000184038334, -0.0170953739, -0.00692922622, -0.00472615054, -0.00614153454, -0.0388676673, 0.0333292075, -0.0035199977, 0.0197292175, 0.0135999909, 0.0373415127, 0.0102646081, 0.0265353676, -0.0259938277, 0.0103138397, 0.0193353724, -0.00407999707, -0.0228184462, 0.0335999765, -0.00877537858, 0.0214030631, -0.00755076436, 0.0199138336, 0.00705230283, 0.000749230268, -0.031606134, 0.00423999736, -0.0108738393, 0.00571384234, -0.0102830697, 0.0271753669, 0.00386153581, 0.00830768701, 0.0114646079, 0.0244061369, 0.00785845611, -0.0216492154, 0.0185846034, 0.00594153441, -0.00661538029, 0.00821537897, 0.0369476676, 0.0364061296, 0.0112369154, -0.0233969074, 0.0147199901, 0.0203322936, 0.028652288, 0.00476615084, 0.0127753764, -0.0201107562, -0.0232984461, -0.0103015313, 0.00630153436, 0.0211076774, 0.00408307416, 0.0347815156, 0.011378454, 0.0221292153, 0.0177107565, -0.0122522991, -0.0263630599, 0.0415261276, 0.0112123005, 0.00178153731, -0.00423999736, -0.00129692222, 0.0242830608, 0.00361845922, 0.00555999624, 0.0141784521, 0.0165415276, 0.0077169179, -0.021883063, -0.0181907564, -0.0258215219, -0.00163384504, -0.00457230443, 0.0507076569, -0.0101599935, 0.00344922836, 0.00144615292, 0.0185476802, -0.0100984545, 0.000982307, 0.0158153735, 0.0222522933, 0.0130830677, 0.0459815077, 0.00387076661, 0.00310153631, 0.00435692025, -0.00570768863, -0.00813537929, 0.00968614686, 0.00571076525, 0.0271015204, -0.0268553663, -0.0267815199, 0.00731691811, -0.0307199787, 0.0244061369, 0.00299999793, -0.00213384465, 0.00479076616, -0.00196615257, 0.0433968939, 0.00909537822, 0.00136846059, -0.00218922924, 0.0262399819, -0.00290615181, 0.0188676789, 0.00486768922, -0.0453661233, -0.00699076476, -0.0165169127, -0.0337969, 0.016615374, -0.00584614975, -0.0185846034, 0.0182522945, 0.00477230456, 0.0386215113, 0.0165661424, 0.00347076682, -0.0435445867, -0.021612294, -0.0333045945, 0.0139199905, 0.0168615263, -0.0237907525, 0.000580384221, 0.0226584468, 0.0171692185, 0.0100307623, 0.0278645959, -0.034855362, 0.0287015196, 0.0151753742, 0.0151015287, -0.0164553728, 0.000928460911, 0.0196430646, -0.0196922943, 0.0135876834, 0.000267307507, -0.0106338393, -0.0274707507, -0.0288738273, 0.0172676798, -0.00512922741, -0.000854614831, -0.0204676781, -0.0111138383, -0.0280369036, 0.0112738386, 0.0241353679, 0.00231999834, 0.0200246014, 0.0146092214, 0.00563691929, 0.015679989, 0.0143138366, 0.0189046022, 0.0033753824, -0.0192369092, 0.00689845672, 0.0374645889, 0.0013407683, -0.0200861394, -0.00731691811, 0.030941518, 0.0585845746, -0.0215015244, 0.0426092036, 0.03081844, 0.00812307186, 0.0425107405, 0.019323064, -0.0139692212, -0.0293907486, -0.00503384275, -0.00479076616, -0.0198276788, -0.00119230687, 0.00595384231, -0.0308676716, -0.0202092174, -0.0238276757, -0.0131569142, 0.0116922995, 0.0162707586, 0.000859230175, -0.00699076476, -0.00953845493, -0.00136538374, 0.0199384484, -0.0245169066, -0.0349538215, 0.0726153329, 0.00561230397, 0.00747076422, 0.0263876747, 0.0174769107, 0.00441230461, -0.0124246068, -0.030276902, -0.0152615281, -0.0134892222, -0.0125661455, 0.0275938269, 0.0205661394, -0.00798153318, -0.0132184522, -0.0167261418, 0.00280922884, -0.0159753747, 0.000809230201, 0.0230892152, 0.0381784365, 0.0187569112, 0.00347692077, 0.0349538215, 0.0262645986, 0.0252799839, -0.011378454, 0.0417476632, 0.0208492167, 0.00156230666, 0.01270153, -0.0314338244, -0.0108738393, 0.0260184444, -0.0314584412, -0.00742768729, 0.0177230649, -0.0169476811, 0.0193722937, 0.00768614886, 0.00402461272, -0.0147199901, -0.00768614886, -0.029587673, 0.0154584516, -0.031089209, -0.00351384375, 0.00114922994, 0.00902768597, 0.0238153692, 0.00997537747, -0.059175346, 0.0178707577, 0.00163230661, -0.0146092214, 0.0268799812, -0.0280861352, -0.0103630703, 0.0074461489, -0.0357661285, 0.0256984439, -0.0282830577, 0.00529845804, 0.00311692106, -0.00599691924, -0.000452307402, 0.00751999486, 0.0130584529, -0.0242092144, -0.0163322967, 0.0496984273, -0.0080923019, -0.035963051, -0.00678153383, -0.0210830625, 0.00510461209, -0.0194092169, 0.0183507577, -0.0159876812, 0.00443999702, -0.023926137, 0.0117046079, 0.0411815122, -0.0131322993, 0.00812922511, 0.0417722799, 0.0063323034, 0.0184861422, -0.0314338244, 0.0102707623, -0.0210830625, -0.00177538337, 0.0365292057, 0.00178153731, -0.0136246067, -0.00298307487, 0.00260922895, 0.039187666, 0.0431753546, -0.00385538209, -0.0297107492, -0.00911384, 0.00780307176, -0.00052999967, -0.000671922637, 0.0168246049, 0.00241230614, 0.0211076774, 0.00969230104, -0.0107815312, -0.000364615145, 0.031901516, 0.0341661312, -0.0183261409, -0.0269538276, 0.037833821, 0.00198615249, -0.0186092183, 0.00297692115, -0.00259845983, 0.00292922882, -0.0264615212, 0.0066030724, -0.0171076804, 0.0210584477, 0.00232461374, 0.0111138383, 0.0241353679, -0.0149415284, 0.0456122756, 0.00852307118, 0.00255845976, 0.0324676707, -0.0190399867, 0.0039999974, -0.00145076821, -0.0449476615, 0.0164184496, 0.0148553746, 0.0148430672, -0.0319507495, -9.13460899e-05, -0.0212922934, -0.0156553742, -0.00491076615, -0.0121230688, -0.0147692207, 0.0407630503, 0.0237415228, 0.0159261432, -0.0134030683, 0.0347569, -0.0305722877, 0.0231015235, -0.0248369072, 0.0333045945, 0.00593845733, 0.00339076691, 0.00932307076, 0.027963059, -0.00856614765, -0.00863384, -0.00283692125, -0.0245538298, 0.00754461, 0.0186953712, -0.0182030648, 0.00469845859, 0.000204807555, 0.00122769154, -0.0198892169, -0.00711999508, -0.00568922702, -0.0202584472, -0.05080612, -0.0236307532, -0.00817230251, -0.0119446069, 0.031335365, 0.0191507563, -3.19711326e-05, -0.0206399858, 0.0148799904, -0.0145230675, -0.0173169114, -0.0260430593, -0.00258461363, 0.00400307402, 0.0134153757, 0.0308430567, 0.0481476597, 0.00521230418, 0.00602153456, 0.0186338332, 0.0308922864, 0.0279138274, 0.00628615, 0.0279138274, -0.032147672, -6.33172676e-05, 0.00759999501, -0.0237538293, -0.014658452, 0.00439692, -0.00496307341, -0.00323384395, -0.00104923011, 0.0032399979, -0.00254922896, -0.00988307, -0.0243076757, -0.0246646, -0.0441353545, 0.0158399902, -0.00817845576, 0.0156430658, 0.00519076595, -0.0137722986, 0.0134646064, -0.00337845925, -0.00158153742, -0.0152246049, 0.00990153197, 0.0261415206, 0.00200153701, -0.00734153343, 0.00034192286, 0.0110892234, -0.0114830695, -0.0206892174, -0.0115999924, 0.0173292197, 0.00122615299, 0.00982768554, 0.00789537933, -0.00520922709, -0.00399692031, -0.0117907617, -0.0139322979, -0.0172307584, -0.00462461216, 0.00630768808, 0.00320615177, 0.00210615247, -0.00297076721, -0.0136738373, 0.0232738312, -0.00591691909, 0.0111938389, 0.0425599702, 0.0295630563, -0.0209846012, 0.00945845526, -0.0185476802, 0.00750153325, 0.032959979, -0.000156346054, -0.0103199929, 0.000788461, -0.00579691911, -0.00127384532, 0.0318276696, -0.00466153538, -0.0093723014, -0.0380061269, -0.010473839, 0.0051138429, -0.003310767, 0.0303507484, -0.000433461246, -0.037833821, -0.00234307535, 0.0622768812, -0.00784614868, -0.00843076315, -0.00726768747, -0.036775358, -0.0468430445, -0.0119015304, 0.0193846021, 0.0224984456, -0.00417845882, 0.00277845957, 0.0190276802, 0.00967383943, 0.00186461408, -0.0199876782, -0.00713845668, -0.00335384393, 0.0153846052, 0.0169230662, -0.0212799851, -0.0195692182, 0.0123569146, -0.00636922661, -0.00748307211, 0.0100061474, -0.00822153315, -0.0455138162, -0.00817845576, -0.00105999934, 0.0040092282, 0.00189076795, 0.0102646081, 0.0372676663, 0.0180061422, -0.00515999645, 0.0304245949, -0.0117538385, -0.0163815282, -0.0240984447, -0.00800614804, -0.0292184427, -0.0144738369, 0.0122153768, -0.00982153229, 0.00659076497, -0.0258707516, 0.00276307506, 0.00136769144, -0.00870768633, 0.0151261436, -0.0201846026, -0.0127630681, -0.00297538261, 0.0233722925, -0.0111753773, 0.0169846043, -0.0020707678, 0.000508845784, 0.0257230587, -0.0285784416, -0.0127753764, 0.00369538204, -0.0281353649, -0.0173538346, -0.0148184514, 0.00853537861, -0.016344605, 0.035692282, -0.0353230536, 0.0287015196, 0.0427322797, 0.0116061457, 0.000250384444, -0.0241353679, -0.0290953647, 0.02040614, -0.0105723, 0.0261907522, 0.0296369027, -0.0115630692, -0.0258953664, 0.00723076425, -0.0174153727, 0.0383261293, -0.0088307634, -0.00798153318, -0.0259199832, -0.0109230699, 0.0117599918, 0.0210830625, -0.0170584507, -0.0172922965, -0.0152615281, -0.000317115162, -0.0233969074, 0.00197076797, 0.0237046, 0.00142076833, -0.0116615305, -0.0170461424, 0.0220184475, 0.0136984522, 0.0265845973, 0.0152492207, 0.00872614793, -0.00719999522, 0.00498153502, 0.00713230297, -0.0120923, 0.016492296, 0.0131446067, -0.0217476785, -0.0103446087, 0.01769845, -0.00572307315, 0.0128861452, -0.0157169122, 0.00953230169, 0.00806768704, 0.0121969152, -0.00909537822, -0.00843691733, -0.0073107644, 0.0270030592, 0.00930460915, -0.00800614804, -0.0202338323, 0.0125169149, -0.00301999808, 0.00398153579, -0.0233969074, 0.0282830577, 0.00840614829, 0.00126461452, -0.0309907477, 0.0103630703, -0.0121538378, 0.0056553809, -0.00878153276, 0.0242338292, -0.0152984513, 0.0329107456, 0.0149169127, -0.000854614831, 0.0121107614, 0.0317784399, 0.00063346111, -0.0121969152, 0.00253384444, 0.00742153358, -0.0202584472, 0.0135999909, 0.0131076835, 0.0117353769, 0.00791384093, -0.0183138344, 0.00626768824, 0.000783076393, -0.0120923, -0.0010676916, 0.00572922686, 0.0153353745, 0.0185353719, -0.0187199879, 0.00761230243, -0.00207384466, -0.00818461, -0.011286146, 0.00972307, 0.00165846047, 0.0291692112, 0.00655384175, 0.0052184579, 0.0114892228, 0.025009213, 0.0282092113, 0.00875691697, -0.00843691733, 0.0100923013, -0.0115384534, -0.0237169079, 0.0163199883, 0.00737845665, 0.00523999659, -0.00569230365, -0.0276922882, -0.0229784455, 0.00314307492, 0.0191753712, 3.67307439e-05, -0.0212430619, -0.00688614929, 0.0201846026, 0.00499691954, 0.00460922765, 0.0049569197, -0.0246522911, -0.0225107539, -0.00592922699, 0.032418441, -0.0228676777, -0.0133784525, 0.031335365, 0.00990768522, 0.00320307468, 0.0255261362, 0.0161476806, -0.000291730568, 0.0157907587, -0.0165661424, 0.0294892117, -0.0248861369, -0.0164307579, -0.0160492193, 0.00486153504, 0.00383076654, 0.00307384413, -0.0149046052, -0.00583384233, 0.00259076757, -0.0132061448, 0.00948922429, -0.0208615251, 0.0143999904, 0.0129476832, 0.0136615289, 0.000484999677, 0.00792614836, 0.00559999608, 0.0139815295, -0.0158646051, 0.014387683, 0.0436922796, 0.0017861526, 0.0107999928, 0.00478153536, -0.0151015287, -0.0282584429, 0.00188153714, 0.00740307197, -0.0100492239, 0.0283076726, -0.00859691761, 0.0131938374, -0.00835076347, -9.74999348e-05, -0.00647999579, -0.029046135, -0.00634461129, 0.00290153641, -0.0198153704, 0.014116914, 0.0196553711, -0.0349784382, 0.013784606, 0.0146215288, -0.00747691793, -0.0161107592, -0.0100184549, -0.00371999759, -0.00417538173, -0.00765537936, -0.0191015247, -0.00351384375, -0.0214646012, -0.016492296, -0.0149415284, -0.00897845533, 0.00919383951, 0.00933537818, 0.000865384, 8.09614867e-05, 0.0497722737, -0.010806147, 0.0191507563, -0.0199999865, 0.0247507524, -0.0037907667, -0.0201107562, -0.00573538058, 0.00300769019, 0.00369538204, -0.00343999779, -0.0126769142, -0.0394338183, 0.000179999872, -0.00765537936, 0.0162461437, -0.0277907513, 0.00378768984, 0.0166276805, 0.00185384485, -0.00322153629, -0.000325576693, 0.0131938374, 0.0292430576, 0.0195815247, -0.00999383908, -0.0366769, -0.0172799882, 0.00493230438, -0.011618454, 0.0200369097, -0.00703384122, -0.0138953757, 0.00836922508, 0.0388184339, -0.000780768692, 0.0229169074, -0.0170830656, -0.0264122896, -0.00602461118, 0.0127138374, 0.00498768874, -0.0238030609, -0.0183015261, -0.00268922886, -0.00383999734, -0.000624999579, -0.0228799842, -0.00564615, -0.010744608, -0.0299815182, -0.00672614947, 0.00356922834, -0.00722461054, 0.0159384515, -0.00992614683, -0.0247507524, -0.00306153647, -0.00852922536, 0.00988922454, -0.0177846029, -0.00139846059, -0.00255999831, 0.0167138353, 0.0136122983, -0.0269045979, 0.00735999504, 0.0070092259, -0.0151630668, 0.00183846033, -0.0169846043, 0.0126522994, 0.0015084605, 0.0240369067, 0.000719230273, -0.000135576833, -0.0362584367, -0.0141415289, 0.02040614, 0.00376615138, 0.0122522991, 0.013784606, -0.00518153515, 0.0445538163, 0.00751999486, 0.004830766, 0.00581230363, -0.00726153376, -0.000211538325, -0.00414768932, 0.0152738355, 0.0128492219, -0.00640614936, 0.0062153805, -0.0158399902, -0.0172061417, -0.0214646012, -0.0144246053, -0.0138092218, 0.0223261397, 0.00972922426, -0.00350769, 0.0154584516, 0.0289722886, 0.0170953739, -0.0239138305, 0.0154953739, -0.00684922608, -0.00264769047, 0.0264369044, -0.0212676786, -0.0249353684, 0.00390769, 0.00386153581, -0.00158922968, 0.00423999736, -0.0164676812, 0.00948922429, 0.0363322832, -0.0212430619, 0.0199999865, -0.00883691758, -0.0210830625, 0.0106153777, -0.0249230601, 0.00751384115, -0.0484676585, -0.0287999809, 0.0137599912, 0.00908922497, -0.0137969134, 0.00432307413, 0.0451692, 0.0164307579, 0.00780922547, -0.0187199879, -0.0270769056, 0.0106461467, -0.00856614765, 0.00160461431, -0.0133661451, 0.00863384, 0.0175138339, 0.0121722994, 0.00878153276, 0.0350276679, -0.0149169127, -0.00985845458, -0.0158646051, -0.00569230365, -0.0162092205, 0.00369538204, 0.0082892254, -0.0244922917, 0.00124922988, 0.015138451, -0.00918768626, 0.0103938393, 0.0106646083, -0.00329538248, 0.00972922426, 0.0164430663, -0.00627384195, -0.0210338328, -0.0269538276, 0.0039692279, -0.00735999504, 0.0172184501, -0.0165415276, 0.011649223, 0.0217722934, -0.00686153397, -0.00346153602, -0.00734153343, 0.0186707564, -0.00587076508, 0.0130215297, 0.000183076801, 0.00456307363, -0.00511076581, -0.0081538409, 0.0229169074, 0.0106646083, -0.0103815319, -0.0233476758, -0.0295630563, -0.00387384347, 0.0103815319, 0.0108615309, 0.00955691654, -0.00988307, 0.00545230415, 0.0233107544, 0.00350461295, -0.0061969189, -0.0036461514, -0.00233230623, 0.00495076599, 0.0100123007, -0.00467999699, 0.0166892204, -0.00718153361, -0.00255999831, -0.000456538168, -0.0164307579, 0.0086953789, -0.0135507602, -0.00410153577, 0.00759999501, 0.00433538156, 0.0189046022, 0.00722461054, 0.029046135, 0.0228922926, 0.011919992, 0.000819230219, -0.0211199857, -0.000244038296, 0.0335507467, 0.0258461367, 0.00186153722, 0.0169353727, 0.0169722959, 0.0260184444, 0.00781538, 0.0166769121, -0.0263630599, -0.0146707594, 0.00132692221, 0.00753845647, -0.00288307504, 0.0196307562, 0.0108861467, 0.0102276858, -0.00704614911, -0.0244430602, 0.00478768907, 0.00694153365, 0.00560615025, -0.00359999761, 0.0104246084, 0.0222153701, 0.00659691868, -0.00191999867, -0.0233599842, -0.00732922601, -0.0329107456, 0.0113723, 0.0203446019, 0.00970460847, 0.00214307546, -0.0328122862, -0.00121615303, -0.00475076586, -0.00711999508, 0.00371999759, 0.0256245974, 0.0166276805, 0.00465538166, 0.0104123009, -0.00906460918, 0.00661538029, -0.00256615202, -0.0258461367, -0.0167753734, -0.0301538259, -0.00581845781, 0.024049215, -0.0115199918, -0.00756307179, -0.034584593, -0.010775377, -0.00527076563, 0.0206522942, 0.00337230554, -0.0133907599, -0.00753230276, -0.0143507598, -0.0158276819, -0.00894153211, -0.0135507602, 0.021883063, -0.000147980667, -0.0147446059, -0.00015682682, 0.00283076731, -0.0326153636, 0.0151138362, 0.0117599918, 0.0128615294, 0.0207138322, 0.0212799851, 0.0203322936, 0.00270922901, -0.00853537861, 0.0223753694, -0.00129692222, -0.0255753677, -0.00732922601, -0.00279384432, 0.00575076556, 0.0280369036, -0.0066030724, 0.0280861352, -0.00206461409, -0.0151138362, -0.0199138336, 0.00124538376, -0.00218769093, -0.0146338362, 0.004289228, 0.0218584463, -0.0127138374, 0.0140799908, -0.00515692, 0.0145353749, -0.0134769138, -0.00942768622, -0.00207384466, -0.0037907667, -0.00701538, -0.000886153255, -0.0165661424, -0.0177107565, -0.00891691726, 0.0130461454, 0.00145999901, 0.0100615313, -0.0159261432, 0.0202461407, -0.00410768948, 0.00516922725, -0.01811691, -0.0158522967, 0.0230030622, 0.0198276788, -0.0176122952, 0.0212553702, 0.0331322849, -0.0361353606, 0.0114153773, 5.97115e-05, -0.00152076816, -0.0120307608, 0.00935999397, 0.0170584507, 0.00894768629, -0.00291538262, -0.00100230705, 0.0444553532, 0.00355076673, -0.0111446083, 0.016886143, 0.029046135, 0.0139815295, -0.00701538, -0.0132676838, 0.011919992, -0.00158615282, 0.0197292175, 0.00384922815, 0.00477845827, -0.00988922454, 0.00348615157, 0.00154307589, -0.00248307525, -0.0240738299, -0.0166030657, -7.2019182e-05, 0.0107630696, -0.0324922875, -0.00318153622, -0.000714230293, -0.000740768737, 0.00301692099, 0.00988307, -0.000261153677, 0.00852922536, -0.0234338306, 0.0203692168, -0.0183999874, -0.0102092242, 0.0157292206, -0.00471691974, 0.0251199827, 0.00503076566, -0.00609230343, -0.0107261464, 0.00111923006, 0.0137599912, -0.00476615084, 0.032147672, 0.0153230662, -0.0103569161, -0.00406153593, 0.00213384465, -0.00509845791, -0.0212676786, 0.0185599867, 0.0153353745, -0.0141046057, -0.00906460918, 0.0172430649, 0.00292461342, 0.0170830656, 0.00506768888, -0.00447999686, -0.00657230336, -0.0200246014, 0.00814153254, -0.0117107611, -0.0138707599, 0.0148553746, -0.00846768636, 0.0158399902, -0.0161230657, -0.0124122994, -0.0120430691, -0.00374461291, 0.0137476828, -0.005913842, -0.0053846119, 0.024467675, -0.0118399924, -0.0147076827, 0.0100123007, 0.0203938317, -0.00375384372, 0.0192984492, -0.0241722912, -0.0182153732, 0.00356922834, 0.0135876834, 0.0141538363, 0.0263876747, 0.000406538195, 0.0202338323, -0.000750384119, -0.0128615294, 0.00129922992, -0.00158307585, -0.00498461211, -0.0217353702, -0.000303076726, -0.0116369156, -0.00140615285, -0.00828307122, 0.00611384213, 0.0227569081, 0.0223876778, -0.00140230672, 0.0150646055, -0.00980922394, -0.00355076673, -0.0032399979, -0.00824614801, 0.0133169144, -0.0185722951, -0.020135371, 0.0212553702, -0.0149784517, 0.00451384299, -1.86898906e-05, -0.00992614683, -0.0145107592, 0.0192369092, -0.0152492207, -0.0210707542, 0.0392861292, -0.00322153629, -0.00989537779, -0.00217999844, -0.0123876836, -0.00999383908, 0.0257969052, -0.0042799972, -0.012972299, 0.0203446019, -0.0117415302, 0.00955691654, 0.0152369132, -0.0118953763, 0.000259038294, -0.0162461437, 0.00606461149, 0.0212061387, 0.0178215262, 0.00323384395, 0.0196061414, -0.0272492133, 0.00294769043, -0.033255361, 0.0153599894, 0.0110092238, -0.00346769, 0.0146215288, -0.0287015196, -0.00155307585, -0.00163538347, 0.0102215316, 0.00160153734, 0.00748922583, 0.0119938385, 0.00901537854, 0.0055199964, -0.00825845636, 0.00224307552, 0.00312307477, 0.0108799925, 0.00871999376, -0.00513845822, -0.00169999886, -0.00971691683, -0.0184861422, 0.0136984522, 0.00425230479, 0.00865230151, -0.00510461209, -0.00844922476, 0.0194707569, 0.0182646029, -0.00651691854, 0.0169107579, 0.00225999858, 0.0302276723, -0.00552615, 0.0126646068, -0.00409230497, 0.017033834, -0.0211569089, -0.00208615256, -0.028381519, -0.00959999394, 0.0100369165, -0.00165230653, 0.00373230525, -0.00302769034, -0.00352307456, -0.0075692255, -0.0147815282, -0.0161722973, 0.0118953763, 0.0216369089, -0.011255377, 0.00376307429, -0.0144122979, 0.00124769146, -0.00634461129, 0.00787691772, -0.0197169092, -0.00215846, 0.00289230584, 0.0141538363, -0.00654768804, 0.0162953734, -0.00561230397, -0.0139199905, -0.0120184533, -0.0184738338, -0.00158307585, -0.00947691686, 0.00395999756, -0.00399076659, -0.00536922738, -0.0212799851, 0.0172922965, -0.00244769058, 0.00136769144, 0.00251076743, 0.00923076272, 0.0155815277, -0.00849230215, 0.00258153677, 0.00178307574, -0.010110762, -0.041353818, -0.00322461314, -0.0204307549, 0.0129476832, -0.0176615268, 0.033501517, -0.0200122949, 0.0182769112, 0.00333845918, 7.10576423e-05, -0.0114153773, -0.00613845745, -0.0130092222, -0.00167230656, 0.0153230662, 0.00331999781, 0.0144369137, -0.00527691934, 0.0174153727, -0.0158153735, 0.00503384275, -0.00112384534, -0.0185599867, 0.00319384411, 0.0146707594, -0.00413845852, 0.0033753824, 0.0310645942, -0.0259692129, -0.0290953647, -0.0118830688, -0.00785230286, 0.000309615163, 0.000760384079, -0.018387679, 0.000458076625, 0.00120153767, 0.00724922586, -0.00434153574, -0.00967999361, 0.0259938277, 0.0234584454, -0.0131199909, 0.0019353833, 0.00460615056, -0.00347384391, -0.00364922825, 0.00975999329, 0.0269784443, -0.0146953743, 0.0139692212, -0.0140799908, 0.0286276732, 0.00312769017, 0.00486153504, -0.0161107592, -0.0210215244, -0.00336307473, 0.00569230365, 0.0172430649, -0.00130230677, 0.0170092192, -0.00935999397, -0.0199015252, 0.0296615176, 0.0168615263, -0.0308430567, -0.0277169049, -0.0210584477, 0.00532615045, -0.0224369075, 0.00437538186, -0.0236676764, 0.00209538313, 0.000295769045, -0.0321230553, -0.0115076844, -0.00285845972, 0.0105599929, 0.0100123007, 0.0124922991, 0.0363569, 0.00136307604, 0.0139569137, 0.00788922515, 0.0138953757, 0.00686153397, 0.00871384051, -0.00280461344, -0.0166276805, -0.00499691954, 0.00443384331, -0.000431922788, -0.0259692129, -0.000822307135, -0.0214030631, -0.0119938385, 0.0123138381, -0.0104615316, -0.006892303, 0.00202153716, 0.00427692, 0.00184615259, 0.00681845704, 0.00292922882, 0.00497230422, 0.00682461075, 0.00547999609, -0.0105169164, -0.0107876854, -0.00154846045, 0.0092369169, 0.00886768661, 0.00937845558, 0.0286276732, -0.00237384462, 0.00291999802, 0.0109230699, -0.0327630565, -0.0025415367, 0.0131815299, -0.0194584485, -0.00605538068, -0.00511691952, 0.0108553777, -0.000784230244, 0.00165230653, 0.016886143, 0.0172553733, -0.00138692209, 0.0223876778, 0.00476615084, -0.0148061439, -0.00555076543, -0.011378454, -0.034338437, 0.0120184533, 0.0142769134, 0.00356922834, -0.00230615237, -0.00902768597, 0.0149538359, 0.0040092282, 0.0142892208, 0.00350769, 0.00491999649, -0.00833230186, 0.0105599929, -0.0180553719, 0.0357169, -0.0120923, 0.0209969096, 0.0249353684, 0.00886768661, 0.0133415293, -0.000771153311, 0.0117353769, 0.00437230477, -0.00705230283, -0.0158153735, 0.000331153627, -0.00699691847, -0.015138451, -0.0180430654, -0.00156461436, 0.00114384538, -0.00735384133, -0.0237538293, 0.00975999329, -0.0100676855, -0.00720614893, 0.017427681, 0.0113969157, 0.00364922825, -0.00715076458, 0.0109169157, 0.0103815319, -0.00199230644, 0.00111999922, 0.0222892165, -0.0116553772, -0.0137230679, -0.00697845686, 0.00913845561, -0.0164553728, 0.0183015261, 0.00458461232, -0.00785230286, -0.00917537883, 0.00671999529, 0.0202461407, 0.0257722903, 0.0273722894, 0.0147569133, -0.00926153269, -0.0154830664, 0.0122584533, -0.0143999904, -0.00742153358, 0.00436307397, -0.0112799928, 0.000784230244, 0.00315076718, 0.00442153541, 0.00431384332, 0.0177107565, -0.00949537847, -0.0053538424, -0.0093723014, 0.000828460965, -0.00763076404, 0.005913842, -0.00453230459, -0.0085599944, -0.00342769, -0.00723076425, 0.0207384471, -0.0066338419, -0.00917537883, 0.0183261409, -0.024590753, -0.0113907615, -0.0141661447, -0.00317845936, 0.020676909, -0.0111507615, -0.00172922958, 0.0015084605, 0.0189292189, 0.0126892226, -0.00171076809, -0.00645538047, 0.0178953726, 0.0129230684, 0.006079996, 0.0143999904, 0.00481538149, 0.000157211427, 0.000754614884, 0.0186953712, -0.0017584603, 0.0052492274, -0.0132922987, -0.0131322993, -0.00800614804, 0.00143076829, -0.0011730761, 0.00790768676, -0.000254999817, -0.0148307588, 0.00219999859, -0.00542768883, 0.00340922852, -0.017969219, 0.0187446028, -0.0109230699, 0.0239876769, 0.0114707612, -0.0194953717, -0.0229415223, 0.00273076748, 0.0156430658, 0.00658461079, 0.0067569185, 0.0181661416, -0.00351384375, 0.00922460947, -0.00868307147, 0.0169846043, 0.0208246019, -0.0137353754, -0.0170092192, 0.0142030669, 0.014326144, -0.0144122979, -0.0181292184, -0.0149046052, 0.00720614893, 0.00454461249, -0.0124492226, -0.00275845965, -0.00424615107, 0.0164799895, -0.0151507594, 0.00706461072, -0.000541922695, 0.00479076616, 0.0191138331, -0.00179846038, 0.0115076844, -0.0057692267, 0.0013707683, -0.00511691952, 0.0121415304, 0.0109969154, -1.77764305e-05, 0.0197169092, 0.0157292206, -0.013784606, 0.0015523067, -0.0120923, -0.0137969134, -0.0191507563, -0.0261907522, -0.00363999745, 0.00547691947, -0.0197538324, 0.00285076723, -0.00515384274, 0.0161476806, 0.0240615215, 0.0168984495, 0.000164711426, 0.0103199929, -0.0378584377, -0.00288769044, 0.00237846, -0.0164553728, -0.00146999897, 0.0153353745, -0.00257076742, -0.010566147, -1.44350861e-05, -0.021218447, -0.00577230379, -0.00866461, 0.0142769134, -0.0202215239, -0.0232122913, -0.00217999844, -0.00835076347, -0.020947678, -0.000941537844, 0.00281845964, 0.0224122927, -0.00512615032, 0.00284461351, -6.63941828e-05, 0.00639384193, 0.00651076483, 0.00691076461, 0.0161599889, -0.00525230402, 0.0135384528, 0.0144984517, -0.00892922468, 0.0075815334, 0.00174615264, 0.00681230333, -0.000183461409, -0.0182153732, 0.00198615249, -0.0400738195, -0.00422153575, 0.00688614929, -0.00826461, 0.00102923007, -0.00838153251, 0.0140184518, -0.00205538329, -0.011015377, 0.000296538259, 0.0180184487, -0.0233107544, -0.00378768984, -0.0267076734, 0.0123938378, -0.0118461456, -0.00257076742, 0.00182615267, -0.011015377, 0.00425230479, 0.00837537926, -0.00212153699, 0.0176492184, 0.0055199964, -0.00802461, -0.0203322936, 0.0015176913, 0.0308922864, 0.00742153358, 0.0028261519, 0.00876307115, -0.00439692, 0.00985230133, 0.000909999362, 0.00803691801, -0.0022799985, 0.0182153732, -0.0073107644, 0.00216922932, 0.0115446076, -0.0226830617, 0.0276922882, 0.00402153563, -0.00265538273, 0.00640614936, 0.00767999468, -0.00838768668, 0.0105784545, 0.021612294, -0.0194092169, -0.00484307343, 0.00552307302, -0.00527999643, -0.00347692077, 0.0247876756, 0.0139815295, 0.00036538436, -0.0134399906, 0.0229046, 0.00914460886, 0.00341845932, -0.00224153697, 0.0119507611, 0.00506768888, 0.00369538204, 0.0177353732, -0.00338153611, -0.00169692189, -0.0221784469, -0.000208269092, -0.0230399836, -0.00140615285, -0.00889230147, -0.00544307334, -0.00873845536, -0.00955691654, 0.00270461361, -0.0162830651, 0.0166276805, 0.0140922982, -0.0260676742, -0.00259999814, 0.00852307118, -0.0115015311, -0.0279384423, -0.0101784552, -0.0144984517, 0.000903076318, 0.0186461415, 0.0272245966, 0.00420615124, -0.000810768688, 0.00989537779, 0.0166892204, -0.0111938389, 0.0177476797, -0.0124922991, -0.00241384446, 0.005643073, -0.00658461079, 0.000456538168, -0.00871384051, -0.00766768726, 0.0147692207, -0.00930460915, 0.00735999504, -0.0205415245, 0.0185230654, 0.0107692238, -0.0164061431, -0.00691076461, 0.017156912, 0.00838768668, -0.000470768922, 0.0113538383, -0.000918460893, -0.00659691868, 0.030941518, 0.0116061457, 0.0147569133, -0.0358645916, 0.00686153397, 0.0121230688, -0.00658461079, 0.0163199883, 0.00839999411, 0.00718768733, 0.0163938347, 0.00786461, -0.00872614793, 0.0205046013, -0.00443076622, 0.00273999805, 0.0149538359, -0.0147199901, -0.0162953734, 0.0125661455, 0.00824614801, 0.0099138394, -0.000527691969, 0.00639384193, 0.00793230254, -0.0242707524, 0.0209230632, 0.00778461, 0.00195692177, 0.000906153233, 0.00684307236, -0.0112984544, 0.0122646075, 0.0135261444, -0.00715076458, -0.00753845647, 0.0175384507, -0.000569999625, -0.0112492228, 0.00263845967, -0.00331692095, -0.00342769, 0.0209846012, -0.0129969139, -0.0124369143, 0.000113942231, -0.000674999552, 0.00186922948, 0.0149169127, -0.00779076386, 0.0156307593, -0.00707691815, 0.0146461437, 0.031876903, 0.0195446014, 0.00809845608, 0.00764922565, 0.0158892199, 0.00654768804, 0.0231015235, 0.0102276858, -0.000736538, -0.00108230696, -0.000320961321, -0.00207846, -0.0110399928, 0.0340922847, -0.00600307295, 1.46153752e-05, 0.00724307215, 0.0166646037, 0.0252799839, -0.0126399919, 0.00125999912, 0.00793230254, -0.0258215219, 0.0126399919, -0.00984614715, -0.00141153752, -0.0184984487, 0.002686152, 0.0108861467, -0.0147446059, 0.00515692, 0.0119876843, 0.0104246084, 0.0133784525, 0.00721230265, -0.00164307584, -0.0242092144, 0.0119384537, 0.00343999779, -0.0145353749, -0.00519999629, 0.00838768668, -0.00161999895, 0.0151630668, -0.011378454, -0.0248369072, 0.00683076447, -0.00554768834, 0.000803845585, -0.00871384051, -0.0135507602, 0.0029523056, 0.00519384257, -0.00253076758, 0.0112184538, -0.0235815234, 0.00883691758, -0.00965537783, 0.00176153728, -0.0159138348, -0.0148922978, -0.00112076849, 0.00846153311, 0.0078215329, -0.0114153773, -0.00989537779, -0.0119446069, -0.00342769, -0.00691691833, -0.00733537972, 0.00668307254, -0.001072307, -0.0293415189, -0.0120061459, -0.00811076351, 0.00210461393, 0.012972299, 0.00284922891, -0.0218215231, -0.0306953639, 0.0466215089, 0.0149661442, -0.00234307535, -0.0198153704, -0.0234461389, 0.0155322971, 0.00342153618, -0.00248769065, 0.000283845962, -0.0215630624, 0.00107769156, 0.039458435, -0.0200492181, -0.00732922601, 0.0106338393, 0.00593845733, 0.00196461403, 0.0113107618, -0.00971691683, 0.0135261444, 0.00846153311, 0.0152615281, -0.00246922905, -0.00803076383, -0.00229076762, -0.00642461097, 0.0107076848, -0.0196799859, -0.00471999682, -0.00629230356, 0.0177599881, -0.00145692215, -0.00111615309, -5.71634228e-05, -0.0121476846, -0.00738461036, 0.0102707623, 0.00391692063, -0.00807999447, -0.0227076765, 0.0156430658, -0.00199846015, 0.00334153627, 0.00853537861, 0.00592307281, 0.014658452, 0.0334030539, 0.00245384453, 0.0294892117, 0.00251846, -0.00859691761, 0.00411999738, 0.022966139, 0.00647999579, 0.0191138331, 0.00903384, 0.027839981, -0.0159138348, 0.00789537933, 0.00378461275, -0.0100184549, -0.0012123069, -0.00409538206, -0.00739076408, -0.00321538234, -0.0416738167, -0.0038646129, -0.00952614751, -0.0219322927, -0.00895999372, -0.0127876839, -0.020676909, 0.00317230565, -0.000381538208, -0.00211076788, 0.0240738299, 0.0185353719, 0.00583076524, 0.00503076566, 0.0242953692, -0.00230769068, 0.000645384192, 0.0244184453, 0.0232492145, 0.0124738375, 0.0284307506, -0.029858442, -0.0107323006, 0.012190761, -0.0113846073, 0.00559384236, -0.0103569161, 0.000879230152, 0.00197384483, 0.0121784536, -0.0125538381, -0.00579384202, -0.0157907587, -0.0059046112, -0.0153107587, 0.00423999736, -0.0131322993, 0.00692922622, 0.00509538129, 0.00370153598, -0.0016923066, 0.0239507537, 0.00400307402, 0.016073836, 0.0276184436, 0.0224369075, 0.000264999835, -0.00469845859, 0.0134153757, 0.00300615188, -0.0270030592, 0.000118461459, -0.0440122783, 0.00298922881, -0.00726768747, 0.0273969043, -0.00487999665, -0.0132676838, 0.0060707652, -0.0024846138, -0.0180430654, -0.00583384233, -0.0255753677, -0.0138461441, 0.004393843, 0.0149661442, 0.0044061509, -0.00530461175, 0.0039999974, 0.0155076822, 0.00479999697, -0.0023369214, -0.00154461432, -0.00616922649, -0.0230522919, 0.000920768594, 0.00386768975, 0.0179076809, 0.00697845686, -0.00208153715, -0.0185722951, -0.0166892204, -0.0117230695, -0.0071446104, -0.0124553759, -0.0248861369, 0.00380922831, -0.000399999728, -0.0150522972, -0.0120923, -0.00285230577, -0.0227815229, 0.00314769, -0.00471384311, 0.00298307487, 0.0104923006, -0.00331999781, 0.0212553702, 0.0103692235, 0.00777230226, 0.00934153236, 0.0174153727, -0.0173907578, -0.00761230243, 0.0167138353, -0.0105107622, -0.00675076479, 0.0015476913, -0.0204307549, 0.00748307211, -0.00976614747, 0.0130953761, 0.00421538157, -0.000694614893, 0.00970460847, 0.00743999518, -0.00474153506, 0.0103692235, -0.0160492193, 0.00543691963, 0.00595999602, -0.000126634535, 0.0205046013, -0.0035723052, 0.0143630672, -0.00585230393, 0.00938460883, 0.00135153753, -0.000704999547, 0.00280461344, 0.0108184544, 0.000787691795, -0.00511076581, -0.0053538424, 0.00478768907, 0.0055292272, -0.000448461244, -0.00377230509, 0.00113923, -0.00197846023, -0.0107876854, 0.00515999645, -0.0109784538, 0.00817230251, -0.00697230315, -0.00128384528, -0.011649223, 0.000785384094, -0.00798153318, -0.0075692255, -0.00147153751, 0.0119999917, 0.0264369044, 0.00199384475, 0.00343384384, 0.00832614861, -0.0174892191, 0.00300769019, 0.0222522933, -0.0140307602, 0.00613538036, -0.00269692135, 0.00799384061, 0.0102153774, 0.00336615159, 0.0144861443, -0.0105353771, 0.00721230265, -0.0169353727, 0.0158153735, -0.00742768729, -0.0288738273, -0.0194215253, -0.00293845963, -0.0109292232, 0.00543691963, -0.0219692159, 0.0162707586, -0.0170707572, 0.00179384497, 0.00167692197, 0.0221292153, -0.0160492193, 0.000636538, -0.0303261336, -0.00280769053, -0.0100430697, -0.00985230133, -0.00321538234, -0.00734768715, 0.013513837, 0.0101476852, 0.00961845461, -0.011649223, -0.00958768558, 0.00524615031, -0.00452615088, -0.0030446134, 0.0123815304, 0.0252799839, 0.00443076622, 0.00503692, 0.0205907561, -0.00242153672, -0.00649230322, -0.015679989, -0.00962460879, -0.00322153629, -0.00485845841, 0.0412307419, 0.0119999917, 0.000177211419, -0.0131199909, -0.00233384455, -0.0153846052, -0.0101046087, -0.0308922864, -0.0254276749, -0.00126307609, 0.0102399932, -0.00953845493, -0.0165292192, 0.000254807528, -0.00478461199, 0.000703845697, 0.0306215174, 0.00734768715, -0.00143615284, -0.0020046141, 0.0140676824, 0.036750745, 0.00949537847, -0.00857230183, 0.00283999811, 0.00292615197, 0.0219076779, -0.0127753764, -0.0125907604, 0.0117907617, 0.00494461227, -0.0161107592, -0.011889223, 0.00592615, 0.00419076625, 0.0148799904, -0.00419692043, -0.00777230226, -0.011046146, 0.00392922806, -0.00779691804, 0.0102276858, 0.0259938277, 0.00488615036, -0.0217230618, 0.0212922934, 0.00472922763, 0.00519999629, 0.0339692086, -0.0212799851, 0.0226215236, 0.00607691891, -0.0192861408, -0.0127999913, 0.00116692227, 0.0223876778, -0.00657845708, -0.00895384047, 0.00384307443, 0.0128861452, 0.00617230358, 0.00177538337, -0.040541511, -0.00519691966, -0.0173784494, 0.00310922856, 0.0211569089, 0.00332922861, -0.0074461489, -0.00770461, 0.0188184492, 0.0039784587, 0.0135876834, 0.0259199832, 0.0137230679, -0.0165784508, -0.00247384445, 0.00836922508, 0.0118153766, 0.00247999839, -0.0212430619, 0.0184122957, 0.0117107611, -0.0141415289, -0.00332307466, 0.0179322958, -0.0190769099, 0.0104246084, -0.0114092231, 0.00477538118, -0.0265107509, 0.00135307596, -0.0135261444, -0.00934153236, -0.0117661459, 0.0170092192, 0.0174646042, 0.0097784549, 0.00346461311, 0.00783999451, 0.0222892165, 0.00415999722, 0.00213846, 0.0131569142, 0.0149784517, -0.011015377, -0.0402953587, -0.00882460922, -0.0209969096, -6.48076457e-05, 0.00582768861, 0.00335384393, -0.00987076294, -0.00371076679, -0.0101969158, 0.0118830688, -0.00377230509, 0.00532615045, 0.014116914, -0.00568922702, -0.0197907556, -0.0262892134, 0.00174769119, 0.00508922758, -0.0289969034, -0.00727384118, -0.0140799908, -0.016615374, 0.00468307361, -0.00890461, 0.0184246022, -0.0119261462, 0.0199138336, 0.0159015283, -0.00988922454, 0.0263876747, -0.00104461471, -0.0171692185, -0.0124553759, -0.0102769164, 0.00184461416, 0.0149415284, -0.00708922604, 0.00859076343, -0.0237415228, -0.0152246049, 0.00919383951, -0.00751999486, 0.0120923, 0.0200984478, -0.00566768833, 0.00192769105, -0.0100123007, 0.00503692, -0.00173230655, -0.00528922724, 0.0105538387, -0.00184461416, -0.00242615212, 0.00571999606, -0.00706461072, -0.007433841, -0.0178953726, 0.0105415313, -0.0217107553, -0.01020307, -0.00753845647, 0.000969230139, 0.00381230516, 0.0127507607, -0.0015061528, -0.000814614818, 0.00738461036, 0.00347076682, 0.000805384072, 0.0271753669, 0.0181292184, -0.0104676848, 0.00817230251, 0.0116676847, -0.00427384349, -0.00394461257, 0.0145846056, 0.0100492239, -0.0131815299, -0.00447999686, -0.0253292136, 0.0234953687, 0.0106092235, 0.051889196, -0.0196799859, 0.0144492211, -0.0207507554, -0.0189661402, -0.0103630703, 0.00983999297, 0.0102461474, 0.00580307283, -0.00255692145, 0.00647999579, -0.0147938365, 0.0156553742, -0.00751999486, 0.0173784494, -0.00301384414, -0.00400615111, 0.00813537929, -0.00018874988, 0.0175507572, 0.00827691704, 0.00840614829, 0.0265845973, 0.0188922957, -0.0143753747, 0.00419692043, -0.0173415262, -0.032443054, -0.00683691865, -0.00476307375, 0.0106030693, -0.0111199925, -0.00366768986, -0.0071446104, 0.000773845648, 0.018781526, -0.0108861467, -0.000214422937, -0.00597230345, 0.00111076853, 0.0165784508, -0.0179199874, 0.0054030735, -0.0102830697, -0.00367384357, -0.00265384442, 0.0125476839, 0.00937845558, 0.0144369137, 0.0120246075, 0.000767691818, -0.00561845768, 0.0352245905, -0.0197046027, 0.00847384054, 0.0107938386, -0.0109169157, 0.00573538058, 0.00574768847, 0.00747076422, -0.00389230507, 0.0107507622, 0.00463076634]
31 Aug, 2021
jQWidgets jqxTooltip height Property 31 Aug, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTooltip is a jQuery widget that is used to display a popup message. The jqxTooltip widget can be used in combination with any HTML element. The height property is used to set or return the height of jqxTooltip. It accepts the Number/String type value and its default value is ‘auto’. Syntax: Set the height property. $('Selector').jqxTooltip({ height: Number/String }); Return the height property. var height = $('Selector').jqxTooltip('height'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css”> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”.jqwidgets/jqxbuttons.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script> Example: The below example illustrates the jQWidgets jqxTooltip height property. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css"> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src=".jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxtooltip.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTooltip height Property </h3> <br><br> <input type="button" id="jqxBtn" style="background: green;" value="GeeksforGeeks" /> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxBtn').jqxButton({ width: 150, height: 50 }); $("#jqxBtn").jqxTooltip({ theme: 'energyblue', width: 200, height: 30, position:'top', content: 'A computer science portal' }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtooltip/jquery-tooltip-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxtooltip-height-property?ref=asr10
PHP
jQWidgets jqxTooltip height Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0307554975, 0.00131677196, -0.00339706265, 0.0219273102, 0.0962033868, -0.00782606937, 0.0444511175, 0.0421844199, -0.0161531977, -0.0177279543, -0.013516671, -0.0255778842, 0.0096215317, -0.0104148751, 0.00971100666, 0.00742044952, -0.0198514927, 0.00341197522, -0.00952609163, -0.0209013298, -0.0164156575, -0.0096573215, -0.0461928956, 0.0197679829, -0.0032896928, 0.019541312, 0.0184676144, 0.0128724519, -0.0201616716, 0.00166274142, -0.0120731434, 0.00620359136, 0.0132064912, -0.000767247053, -0.0350025706, -0.00137567625, 0.00810642354, 0.0317576155, -0.0483402908, -0.0255063046, -0.00152181846, 0.0227981973, -0.00239047036, -0.0163798667, 0.0272958018, -0.0201258827, 0.0274866819, -0.0144591397, -0.0103910156, 0.0139461504, -0.0039905794, 0.0191595536, -0.00314951548, 0.0716753379, -0.0233708378, -0.009907851, 0.0239434764, 0.0408959836, 0.00218915194, 0.00457216613, 0.020865541, -0.0190163925, -0.0348116904, -0.0199588612, -0.0300158374, -0.0141131701, 0.0198037717, 0.0169047862, -0.0250529647, 0.0250768252, 0.0171791762, 0.0174654964, 0.00910854246, -0.00765308412, 0.0307554975, -0.01429212, -0.0263414029, -0.0255301651, -0.0184556842, 0.0372215472, -0.0197799131, 0.0116734887, -0.0419219621, -0.0139938705, 0.0119538428, -0.000955144293, 0.0044379537, -0.0198753513, 0.0151391486, 0.0145068597, -0.0240866356, 0.0231083781, -0.00599779934, 0.00156581029, -0.0232753977, -0.0039219819, -0.016618466, 0.0204122011, -0.037078388, 0.00984820165, 0.0424946, 0.012645782, -0.00235318928, -0.00159265276, -0.00108413724, 0.0199588612, 0.03662505, -0.0159981083, -0.0111426041, -0.00156133657, 0.0110412, -0.0380566455, -0.0235497877, 0.00246950658, -0.0375317261, 0.0461451747, -0.00855976343, -0.0107489154, -0.0142563302, -0.0369590893, -0.00793343876, -0.00028203227, -0.0140535207, 0.0378180481, 0.0152823087, 0.00784992892, 0.00461093849, 0.00385040208, 0.051776126, -0.0675237, 0.0122103374, 0.0530645661, 0.0119061237, 0.0130394716, 0.020459922, 0.0426139, 0.031280417, 0.00841660332, -0.0219153799, 0.013838781, -0.0500104912, -0.0190760437, -0.00351338019, 0.0145187899, 0.0104268054, 0.0425900407, -0.00889976788, 0.0123713929, -0.0324495547, 0.00130782439, -0.0154731879, -0.0287989788, 0.00375197968, 0.0245519057, -0.0065793856, 0.0253154244, -0.0408482626, 0.0301589984, -0.031280417, 0.0219273102, -0.00285872235, -0.028966, 0.0197441224, 0.0143517703, -0.0168212764, -0.0119419135, -0.00240389165, 0.0103373304, -0.0403949246, 0.0175609346, 0.0293000396, -0.00341495778, -0.00941872224, 0.0156044178, -0.0670465082, -0.00185511238, 0.0117152436, -0.0232992582, -0.0165946074, -0.0356706493, -0.00760536455, 0.0154016083, -0.0203286912, 0.00227266178, -0.0122282328, 0.00371618988, 0.0160219669, 0.0267231632, -0.0122401631, -0.010593825, -0.0504399687, 0.0384145454, 0.00485848589, 0.0160696879, 0.00610218663, -0.0544961654, 0.00478094071, 0.00851800852, -0.0104447007, -0.0377226062, 0.00535954488, -0.0216409899, -0.0576456785, -0.0134928115, 0.0349548496, 0.0242775157, 0.0238480363, -0.0487936325, 0.0543530025, 0.0348594114, 0.0295386389, -0.0106534753, 0.0205076411, -0.0137552712, -0.0098720612, 0.010045046, -0.00157028402, -0.0148766888, -0.0268186033, -0.0119419135, 0.046479214, -0.000359577156, -0.00290644215, 0.0232992582, -0.101452582, 0.0123713929, 0.0109636551, -0.0169167165, -0.0210087, 0.044474978, -0.00421724888, -0.0157833677, -0.0436398797, 0.0228339881, 0.0390587635, 0.0363864489, -0.00403233431, 0.0184556842, 0.0247427858, 0.0066628959, -0.0133854412, -0.0105103152, -0.00641833106, -0.000732202723, 0.000532375532, 0.00978258625, -0.0100987311, -0.0044558486, -0.0156402085, 0.00848221779, -0.0125503428, 0.0202929024, 0.0419219621, 0.00835695304, 0.031232696, 0.00592920184, 0.0140415905, -0.00375496224, -0.00139580807, -0.0130036818, 0.0271765012, 0.0265084226, 0.0190521833, 0.000413075672, 0.0387247242, 0.0202213209, 0.0741567761, -0.00752781937, -0.00315249804, -0.0378180481, 0.0198872816, -0.0272480827, 0.0572162, 0.0317576155, -0.0187062137, 0.0348832719, -0.0209013298, -0.0265800022, 0.0214859, 0.0109934798, 0.0263175424, -0.0110471649, 0.0462883338, 0.0494855717, 0.0128366621, 0.000241768561, -0.00124220946, 0.00548480963, -0.00397566706, 0.00675833551, -0.0413254611, -0.01397001, 0.020459922, 0.026937902, 0.0432104, -0.0138626406, -0.0255063046, 0.00815414358, 0.00968118105, -0.00735483458, -0.0515852496, 0.00563691696, -0.0361478478, -0.0228578486, 0.00771869905, 0.0436160192, 0.012967892, -0.00474813348, -0.0269856229, -0.00176712882, 0.0623699538, 0.0177518148, -0.0189925339, -0.0252915639, -0.0256494638, -0.00801098347, 0.031328138, 0.0128485924, 0.0061320113, -0.00509708514, -0.000698649674, -0.000724746496, -0.0148170395, 0.0423037224, 0.0675714239, 0.000267865398, -0.0112917293, -0.0260073636, -0.010319436, 0.0180262048, -0.0326165743, -0.0108741801, -0.00383548974, -0.0136001809, 0.00720571, -0.0246473458, 0.00739062484, -0.059125, -0.0371499695, 0.0478392318, -0.00169554888, -0.00796922855, -0.0110829547, -0.0105103152, 0.0363625884, -0.0530645661, -0.00622745138, -0.02173643, 0.0342629105, 0.0133496514, 0.000788124511, 0.0382713862, 0.00949030183, 0.025387004, 0.010546105, 0.0151749384, -0.00832712837, -0.0245041866, -0.0122401631, -0.0299203973, 0.0134928115, 0.0148528293, 0.00641833106, -0.0108980397, 0.0210325606, -0.0433774181, -0.0335232541, -0.0123236729, -0.038175948, 0.00444093626, -0.0196844731, -0.0553074032, -0.00880432781, 0.0436637402, -0.00603358913, 0.00532972, -0.0365296081, -0.0108920746, -0.0285365209, 0.0276775621, -0.0347401127, 0.0287989788, 0.000615885365, 0.032282535, -0.00185511238, 0.00380864716, 0.0193742923, -0.0400847457, 0.0125742024, 0.0295386389, -0.0363864489, 0.028083181, -0.000930538692, -0.0383668281, -0.00318530551, 0.0237525962, -0.0049181357, -0.0245041866, 0.033737991, -0.0152942389, -0.0104387356, -0.0187181439, 0.00711623486, -0.0117331389, 0.0215097591, -0.0489129312, -0.020316761, 0.0215813406, -0.00321513042, -0.033737991, -0.00376092712, -0.0231083781, -0.0243968163, 0.00557130203, 0.0366966277, 0.0107548796, 0.0281070415, 0.0303975977, -0.011870333, -0.0181574337, 0.0205672905, -0.0292523187, -0.0356706493, -0.0287751202, -0.0171314552, 0.00765308412, -0.042470742, 0.0336425528, 0.0491515324, -0.0242297966, -0.0223448593, -0.00324793789, -0.00608429126, -0.00178353256, 0.00246950658, 0.0118524386, 0.0473143123, 0.0284172203, 0.00372812, -0.0321632363, -0.0256256033, -0.00618569646, 0.0267231632, 0.0271765012, -0.0462644771, -0.0122998124, -0.0107548796, -0.0207223818, 0.00336723775, 0.0171791762, 0.00386233209, -0.0244564656, -0.0294909179, 0.00617973134, 0.00597692141, -0.00546393218, -0.00478392327, -0.0047719935, -0.00777238421, -0.00797519367, -0.0299203973, 0.00725939497, -0.0193265732, 0.0332130753, 0.0282263402, -0.0111485692, 0.00557428459, 0.00704465527, 0.0135643911, -0.0221301187, -0.0310418159, 0.00715799, -0.00433058385, 0.0339765921, 0.00482567819, -0.0140893105, 0.0185988434, -0.00530586, 0.0143517703, -0.009406792, 0.0491038114, 0.0214381795, 0.0242655855, 0.0208297502, 0.0221420489, 0.00629903097, 0.0320677944, -0.0255540237, 0.0183841046, 0.0393212251, 0.0405619442, -0.0125026228, -0.0101046963, 0.00573235704, 0.0103731202, 0.0280116014, -0.00785589404, -0.0227743387, 0.0259119235, -0.00560709229, 0.00616780156, 0.0305407569, -0.0356229283, 0.0634197891, 0.00282144104, 0.00918012206, -0.0479108132, 0.0113752391, -0.0272719413, -0.0196009632, 0.011184359, 0.00293477578, -0.0259119235, -0.0141370306, -0.023740666, -0.0357183702, -0.0249098055, -0.00861344766, 0.0321155153, -0.0165110976, 0.014483, -0.0011326028, 0.018813584, 0.00583674433, 0.0441409387, 0.0387485847, -0.0297772381, 0.00717588514, -0.0133138616, 0.013516671, -0.0194100831, -0.00187449867, 0.0182290152, -0.038581565, -0.00990188587, 0.0220943298, -0.00960363634, -0.00962749682, -0.0204837807, 0.0261266641, -0.00605148403, -0.00796922855, -0.0299919788, -0.0142563302, -0.00368338241, 0.0159861781, 0.0285126604, 0.00729518477, -0.0102776811, 0.0173461959, 0.0238480363, -0.017537076, 0.00539533515, -0.0126338527, 0.0056488472, -0.0193027128, -0.00956188142, -0.00640043616, -0.0222494192, 0.00206239591, -0.0170718059, 0.00430075917, 0.00820782874, 0.0139461504, 0.000565928582, 8.44652095e-06, 0.0192430634, 0.0273673814, -0.0230606571, 0.0212711599, 0.00699693523, 0.00953802187, 0.0203764122, 0.0118405083, 0.0302544385, 0.0127531523, 0.0189090241, -0.0189090241, 0.025387004, -0.00309284823, -0.00663307076, -0.0235855766, 0.0323541164, 0.0193742923, 0.0285126604, 0.00746220443, 0.0107369851, -0.0287274, -0.0496764518, 0.00638850592, 0.0142444, 0.0521101654, -0.0261505228, 0.00521042, -0.0222852081, 0.0193027128, -0.0335232541, 0.00545498496, -0.000725119316, -0.0136240413, 0.000686346844, 0.0315667354, 0.0230606571, 0.0325688533, -0.00682395045, 0.0139938705, -0.00684184534, -0.0110173393, 0.00045818591, 0.0247905049, -0.04292408, -0.0120313885, 0.046025876, -0.00377882225, -0.0232276767, 0.00501357531, -0.0179069042, 0.0234901365, -0.00511498051, 0.00868502818, 0.0309702363, -0.00208178209, 0.0188970938, -0.00404426455, 0.0271765012, 0.0194578022, -0.0199350026, -0.0114766443, -0.016892856, -0.00816607382, -0.018312525, -0.00755167939, -0.0131110521, 0.00416654674, 0.0428286418, 0.0444511175, 0.0108741801, 0.0188851636, -0.0287274, 0.0225595981, 0.0165588167, 0.00480480073, -0.0252199844, 0.0291568786, -0.0123713929, 0.0121387579, -0.00464374619, 0.0516329668, 0.00316144549, -0.000537222077, -0.0135524608, 0.0122520933, -0.000462286844, 0.0103731202, -0.00843449775, 0.0405142233, -0.0145307193, 0.00578305963, 0.0219392385, 0.0423753, -0.0131826317, -0.0271526426, 0.0245041866, -0.000345223903, 0.0125503428, -0.00564586464, 0.0214739703, 0.0207701, 0.0369352289, -0.013015612, 0.0134928115, 0.00021772219, 0.0124310423, 0.00388320955, 0.00814221334, -0.0143040502, 0.00536551, 0.00541323, -0.00777238421, 0.0334993936, 0.024384886, 0.00766501436, -0.00634078635, 0.0131110521, 0.00395180704, -0.015890738, -0.00577411195, 0.0384861268, 0.0290614385, 0.0193981528, -0.00366548728, -0.00429181149, 0.0315905958, 0.0081601087, 0.0146380896, 0.00476602837, 0.0390110463, 0.0245757662, -0.0073607997, -0.00108264596, -0.045524817, 0.0155328382, 0.000289115676, 0.0460974537, -0.0113394493, 0.0196606126, -0.00148453726, 0.0237764567, -0.0113752391, 0.00029396225, 0.0141728204, 0.0222136285, 0.0130871916, 0.0427332, 0.022237489, -0.0144233499, -0.0120671783, -0.0167496968, -0.0307554975, 0.0223090686, 0.0120910378, 0.0265561435, -0.00940082688, -0.0314951576, 0.0156759974, -0.0211757198, 0.0315428749, -0.00424707402, -0.0206150115, 0.00391005212, -0.00360285491, 0.0184079651, 0.00658535073, -0.0125264823, -0.0148766888, 0.0515375286, 0.00432760129, 0.0125384126, 0.0132184215, -0.0267947428, -0.00259178877, -0.0343106315, -0.00915029738, 0.00814817846, 0.00154493283, -0.0169286467, 0.0136479009, -0.0154493283, 0.020865541, 0.00863134302, -0.0140535207, -0.0266038626, 0.00776641909, -0.0259596445, 0.0124429725, 0.0239911973, -0.000187244819, -0.00945451204, 0.0165588167, -0.00391303468, -0.0208774712, 0.0281070415, -0.0356706493, 0.0243252367, -0.00242626038, 0.017763745, -0.0161054768, -0.00343285268, 0.00994960591, -0.0145784393, 0.00129514886, -0.00696114544, -0.0308747962, -0.0105162803, -0.0223687179, -0.0075934343, 0.010229961, -0.000613275683, -0.00451251632, 0.00320916553, -0.0284410808, -0.0113812042, 0.0350502916, 0.0145187899, 0.00684781047, 0.00518954266, 0.0195055231, 0.0399893038, 0.00538042234, 0.0301589984, 0.0231680274, -0.0149959894, 0.00229652179, 0.0275105424, -0.0125384126, -0.0183960348, -0.0290614385, 0.00756360963, 0.0560232028, -0.00104983849, 0.0224164389, 0.0308270771, 0.0246234853, 0.0569776, 0.00436040899, -0.0221420489, -0.00926363189, 0.01433984, 0.00239196164, -0.013743341, -0.0056667421, 0.0240866356, -0.0343583524, -0.00825554878, -0.00188046356, -0.0122759528, 0.00432760129, 0.0185988434, 0.0231203083, -0.00540726492, -0.0260073636, 0.0257449038, -0.0131349117, -0.0255540237, -0.0310656764, 0.0457872748, 0.0109278644, -0.00176712882, 0.0261505228, -0.00221897685, -0.0044558486, -0.0159981083, -0.0292523187, -0.00946047716, -0.0133496514, -0.00333741284, -0.00835098792, 0.011458749, 0.000697531214, -0.027438961, -0.0223209988, -0.00146216853, -0.0250768252, 0.0327120125, 0.00632289099, 0.0306123365, 0.000302536908, -0.00311372569, 0.00976469088, 0.0116496291, 0.0173461959, -0.00012880654, 0.0526350848, 0.0356706493, 0.0147693194, 0.020459922, -0.0334516726, 0.00391601725, 0.0336664133, -0.0158668775, -0.00885801297, 0.0133615816, -0.00647798087, -0.00417847652, 0.0341913328, 0.00659131585, -0.0212830901, -0.0273435209, -0.0266038626, 0.0140535207, -0.00409794925, 0.000901459367, 0.0326642953, -0.0229532886, 0.0236213673, 0.0082615139, -0.0684781075, 0.0223329291, -0.0177160259, -0.0138507104, 0.0467655361, -0.0134450914, -0.0180142745, 0.0282979198, -0.0268663224, 0.0367682092, -0.0364818871, -0.00177160255, 0.00526410528, 0.00655552605, -0.0018789724, -0.00368338241, 0.0276537016, -0.01456651, -0.0198514927, 0.0391064845, 0.000809001969, -0.00696711, 0.00255301641, 0.0142563302, 0.0175012853, -0.0324495547, 0.0154970484, -0.0171195269, 0.0190521833, -0.024384886, 0.0217483602, 0.0519192889, -0.0185034033, 0.00825554878, 0.0367920697, 0.0150556387, 0.00728921965, -0.0409675613, 0.00699693523, -0.0182051547, -0.0131468419, 0.0453100763, -0.0133138616, -0.0233946964, 0.0064481562, 0.00787378941, 0.00675833551, 0.0229174979, -0.00911450759, -0.0167854857, -0.0196248218, -0.00394882448, -0.0141608901, -0.0174774248, 0.0155328382, -0.00137269369, 0.020865541, 0.00419935398, -0.00961556658, 0.0207939614, 0.0299442578, 0.00640640082, -0.0169644356, 0.00400847429, 0.0304453168, 0.0220943298, -0.032831315, 0.0151272193, 0.00575621706, -0.00317039317, -0.0383191071, 0.00577411195, -0.0123713929, -0.0103611909, 0.0258642044, 0.0226788986, 0.0208774712, 0.00904292706, 0.0546870418, -0.0168570671, 0.00663307076, 0.0578842796, -0.0135286013, -0.0113931345, 0.011232079, -0.0410630032, 0.0208416805, 0.0144949295, -0.000307383481, -0.00136598304, 0.011094884, -0.00934714172, 0.0262459628, -0.0155089786, -0.00352232764, -0.0188493729, 0.0436637402, -0.000553253, 0.00482269563, 0.011232079, 0.0150079187, -0.0429718, 0.0218438, -0.0216052, 0.0434012786, 0.0106833, 0.0174297057, 0.00932328217, 0.0288944189, -0.00892959256, -0.00461690361, 0.00703272503, -0.0320200734, 0.0202571116, 0.0221420489, -0.0277968608, 0.00994960591, -0.0059172716, -0.0091264369, 0.00962749682, -0.00888187252, -0.0127531523, -0.0127531523, -0.0610815138, -0.0159503873, -0.01397001, 0.00464672828, 0.000192930194, 0.0213308092, 0.00196397351, -0.0151272193, 0.0132900011, -0.0259596445, 0.0126099922, -0.0141131701, 0.00267082499, -0.0169763658, -0.00167914515, 0.00900117215, 0.038128227, 0.00780817401, 0.0087267831, 0.0199350026, 0.0255301651, 0.0276059806, -0.00156431901, 0.0125622721, -0.0142563302, -0.00283933594, 0.0182409436, -0.021593269, -0.0174893551, 0.0230487268, -0.00436339155, 0.00745624, 0.00635868125, 0.00514182262, -0.0146858096, -0.0152345886, -0.0240866356, -0.00478392327, -0.0255540237, 0.00665693078, -0.0125861326, 0.0181812942, -0.00149050227, -0.0187420044, 0.00649587577, -0.0103075057, -0.00214143191, -0.00439321622, 0.0065793856, 0.01073102, 0.00437532132, 0.00363267981, 0.00821975805, 0.000507024291, -0.0012250602, -0.0107250549, -0.0105103152, -0.0121387579, 0.000207469871, -0.00297503965, 0.00446181372, 0.00490322337, -0.00120865647, 0.0065793856, 0.00119001581, -0.0310418159, 0.00577709451, 0.0015285291, -0.0179426949, -0.0173461959, -0.0133496514, -0.00140922924, 0.00702676037, -0.0161531977, -0.0114527838, 0.0418265201, -0.00554744201, -0.0167258363, 0.00690149516, -0.0262936838, -0.0111783948, 0.0140654501, 0.00100882922, -0.0263891239, 0.0162844267, -0.00792747363, -0.000464896526, 0.0180262048, 0.00807063375, -0.023740666, -0.0219153799, -0.0143040502, -0.00568165444, -0.0107489154, 0.0204718523, 0.00918012206, -0.0322586745, 0.00230546924, 0.0728206187, -0.0236452278, 0.00156879285, -0.0215455499, -0.0329744741, -0.0432581194, 0.00475111604, 0.0215574801, 0.0196486823, 0.0069313203, -0.00929942168, 0.0220824, 0.0125264823, -0.00219362578, -0.0316144563, 0.00439918134, -0.00803484395, 0.000505905831, 0.0253392849, -0.0171314552, -0.0129798222, 0.0116794538, -0.00882222224, -0.00607236149, 0.0317576155, -0.00124146394, -0.027582122, -0.00966328662, 0.00170151389, 0.00913836714, -0.00697904034, -0.00259328, 0.0323063955, 0.0149005493, -0.0102776811, 0.0256971847, -0.0159861781, -0.000523428, -0.0255778842, -0.0118822632, -0.0177876055, -0.0128485924, 0.0181335751, -0.0160100367, -0.00173283007, -0.0172746163, -0.0361717083, -0.0110650593, -0.0110531291, 0.00428882893, -0.029729519, -0.0154851181, -0.00272152736, 0.012466833, -0.0201974623, 0.0110412, -0.00338215032, -0.0312088355, 0.0131587712, -0.0595067553, -0.00981241092, 0.00507024303, -0.00754571427, 0.00931135193, -0.0176921654, 0.00656745583, -0.00511199795, 0.0262698233, -0.0349071324, 0.0182170849, 0.0317098945, 0.00221599429, 0.000946942426, 0.00220257323, -0.0108085647, 0.0102359261, -0.00532972, 0.00021809501, 0.0185988434, -0.0243013762, -0.0167139061, -0.00562796975, -0.0209729113, 0.032831315, -0.0146977399, -0.00249485765, -0.026436843, -0.0145784393, 0.00518059544, 0.0114110289, -0.0158072282, -0.0193862226, -0.0212473, 0.0149005493, -0.00409794925, 0.00388619211, 0.0146261593, -0.00416356418, -0.00870292261, -0.011643664, 0.0155566987, 0.0145187899, 0.019087974, 0.0225595981, -0.00376092712, -0.00283337105, 0.03607627, 0.01100541, -0.0106236497, 0.011279799, -0.00165528513, -0.00258135, -0.0224045087, 0.0167019758, -0.00632885611, 0.00166125013, -0.0334516726, 0.0160100367, 0.0118643688, 0.000702750578, -0.0171433855, -0.0223687179, -0.0167377666, 0.00873274822, 0.00750395935, -0.00594411418, 0.00494199572, -0.00278416, 0.0100689055, -0.0220824, -0.0138745708, 0.0305884778, 0.00673447549, -0.000782159506, -0.027582122, 0.0200543012, -0.0128366621, 0.0124906925, -0.00341495778, 0.0262698233, -0.0169763658, 0.0263652634, 0.0200423729, -0.0116854189, 0.0170718059, 0.0273196623, 0.024158217, 0.00599779934, -0.00114975218, 0.0131229814, -0.0264845621, 0.00286170468, 0.027773, 0.00258582388, 0.00217722193, -0.0354797691, 0.0141608901, 0.00413075695, -0.011416994, -0.0117391031, 0.0201258827, 0.0166781172, -0.0106117204, -0.000708715583, 0.00776045397, -0.00138611498, 0.00204002718, -0.00478690583, 0.0158668775, 0.00202362332, 0.0445942767, -0.00207879953, -0.00626324117, 0.00280652847, 0.00537147513, 0.0174774248, -0.00102746976, 0.00615587132, 0.0116078742, 0.0110650593, -0.0240269862, 0.0127173625, 0.0208894014, 0.00229204795, -0.0234782062, -0.0242059361, 0.00929345656, -0.0108383894, 0.0172388256, 0.00926363189, -0.0222732797, 0.00814817846, 0.0436160192, 0.00340601034, 0.0274628215, 0.0115482239, -0.00513287541, -0.0168809257, -0.00408900157, 0.0150556387, -0.0229055677, -0.00893555768, 0.0314474367, 0.00776641909, -0.0184795447, -0.00492111826, 0.00275880867, -0.0137075512, -0.0103552258, -0.00867309794, 0.0180739239, -0.0174893551, -0.00863730814, -0.016892856, 0.0037072422, 0.00935310684, 0.00461988617, -0.0118345432, 0.00328372791, 0.0034925025, -0.0132184215, -0.00447672606, -0.0269617625, 0.0171553157, 0.0023994178, 0.0187777933, -0.0247905049, 0.0166781172, 0.00298547838, 0.0286319591, -0.0165826771, 0.0345730931, 0.033236932, 0.0169167165, 0.00538937, -0.010868215, -0.0063646459, -0.0197202619, -0.00117957708, 0.0162009168, -0.0351695903, 0.00891766232, -0.0072415, 0.0243968163, -0.0112857642, -8.9987494e-05, -0.00623938115, -0.0112499744, -0.00200721971, 0.000213434862, -0.00324793789, 0.00833905861, -0.00752185425, -0.0112141846, 0.0250052456, 0.00879239757, -0.0149363391, 0.000999136129, -0.0200781617, -0.0111962892, 0.0177398846, 0.00260521, -0.0223687179, -0.0134212309, -0.00820186362, -0.0344537906, -0.00476006325, 0.00863134302, -0.00202958845, 0.00750992447, 0.00484357309, 0.0107489154, 0.0443079583, 0.000572266406, 0.030636197, -0.0303260181, 0.0231918879, 0.030636197, 0.0131349117, -0.00959767122, -0.0140893105, 0.00165081141, -0.0116973482, -0.0104625951, -0.0343583524, 0.0151391486, 0.00435146131, 0.0175609346, -0.0212830901, 0.0179188345, 0.0148170395, 0.0206150115, -0.019541312, 0.00558621483, 0.0115840137, 0.0300396979, 0.0215455499, -0.00330460537, -0.0102717159, -0.0301589984, 0.00335232541, -0.0133138616, 0.00619762624, -0.00627517141, -0.0159623176, 0.00450953376, 0.01073102, -0.0103254, 0.0210325606, 0.00755167939, -0.00897731259, -0.0175609346, -0.00789764896, 0.0144710699, -0.00311670825, -0.00507620769, 0.00182677864, -0.000369083864, -0.0160100367, -0.0155924885, -0.0051507703, -0.00293775834, -0.00422619656, -0.015843017, 0.0204002708, -0.0208774712, 0.0169644356, -0.0193504337, -0.00369829475, -0.0124549028, -0.00701483, 0.0173342656, -0.0372215472, -0.00262012263, -0.004223214, 0.00789764896, 0.0163321476, -0.0347162522, 0.00331057026, -0.0212115105, -0.0112619046, 0.0121984081, -0.0086253779, 0.0205792207, 0.00127278012, 0.0215216894, 0.00869695749, -0.00135778124, -0.0412538834, -0.0210683513, 0.00966328662, -0.00793940388, 0.0174297057, 0.00502252299, -0.0157952979, 0.0290375799, 0.00419040676, 0.0141847497, 0.0054698973, -0.00283337105, -0.00470936112, -0.00804677419, 0.0234543476, 0.0225834586, 0.0116794538, -0.0150794992, -0.0165468864, -0.0262936838, -0.00792150851, 0.0228817072, -0.00122207764, 0.00801098347, 0.0201139525, -0.00328074535, 0.00459602615, 0.0314235762, 0.00889380276, -0.0104983849, -0.00212651957, -0.0154016083, -0.00929942168, 0.00660324562, -0.0142324697, -0.0130991219, 0.0372931287, 0.00168063643, -0.00345074758, 0.00473620323, -0.0168212764, -0.00252915639, 0.00903696194, -0.0108324252, 0.0124906925, -6.40770595e-05, -0.0122103374, 0.0266515836, -0.0175490063, 0.0247905049, -0.0402517654, -0.0188613031, 0.017441636, 0.0101643456, -0.0141251, 0.00724746473, 0.0247189254, 0.0199230723, 0.00299591711, -0.0262221042, -0.0347639695, 0.0111127794, -0.0184676144, 0.00810045842, -0.0123356031, 0.000548033626, 0.0166781172, 0.00770676928, 0.00470936112, 0.0246950649, -8.26244577e-05, -0.0266038626, -0.0310656764, -0.0142682604, 0.00264249137, -0.0231680274, -0.011870333, -0.0351934507, 0.000514107698, 0.0137672005, -0.00264994754, 0.0200423729, 0.00762325944, -0.00316741061, -0.0185869131, 0.0228697788, 0.00477497559, -0.0169525072, -0.031829197, -0.00625727605, 0.0175967254, 0.0153658185, -0.0278684404, 0.00451549888, 0.0170479454, -0.0087267831, -0.00635868125, 0.000817203836, 0.0125145521, 0.00821379386, -0.00983030628, -0.00360882, -0.000296571932, -0.00787378941, -0.00918608718, 0.0194935929, 0.0119896336, 0.0066807908, -0.0142801898, -0.0307793561, 0.0107608447, 0.00989592075, 0.0148528293, 0.00115944527, 0.0158549473, 0.0229174979, -0.00199081586, 0.0122401631, 0.000804528245, -0.014483, -0.00479883561, 0.00455725379, 0.0299681183, -0.00304811075, 0.0165468864, 0.000526783348, -0.00422023144, -0.00403829943, -0.0150794992, -0.0024501204, -0.0199588612, -0.0189806037, 0.0093053868, 0.00960363634, 0.00962749682, 0.0164395161, 0.00696114544, 0.00413075695, 0.0125861326, 0.0101941703, 0.00755167939, -0.0176444445, 0.0235020667, 0.0163560063, -0.00280951103, 0.0011974721, 0.0187300742, 0.0124787623, 0.00983627141, 0.0102478554, -0.0147812497, -0.00993767567, 0.0146023, 0.00265143882, 0.0100569762, 0.00181633991, 0.0197560526, 0.0278684404, 0.00225029304, -0.0295386389, -0.00052790175, 0.0154135386, 0.00654359581, 0.00352531, 0.000823914481, 0.0336186923, 0.0125622721, -0.0171433855, -0.00041233006, -0.00949626695, -0.0065793856, 0.0148886191, 0.0217960794, 0.0160816181, -0.00190581486, -0.0204957109, 0.00456321845, 0.00339109777, -0.003904087, -0.00745027466, 0.0288705602, 0.00022890656, 0.00288854726, 0.0182170849, -0.00501059322, 0.0243133064, -0.0060186768, -0.0148886191, 0.00203704461, -0.0142682604, -0.0117212087, 0.002773721, -0.0163321476, -0.00134659687, -0.0201974623, 0.0117391031, -0.00912047178, 0.0163560063, -0.0127173625, -0.00974083133, 0.00218616938, -0.0162247773, -0.00273047504, 0.00237854035, -0.0220466089, 0.0230964478, -0.00508217281, -0.0109278644, -0.002351698, 0.00710430508, -0.0239315461, 0.0232515372, 0.00394584192, 0.00459006103, 0.0192549936, 0.0238122474, 0.0149244089, 0.00567270722, -0.00114304153, 0.012007528, -0.0100987311, -0.00777238421, -5.11684448e-05, -0.00797519367, 0.0209132601, 0.0190283228, 0.00276477356, 0.0111366399, 0.00285424851, -0.00368039985, -0.0160816181, -0.0231799576, 0.00347162504, -0.0154135386, -0.0112261139, 0.0284888, -0.019087974, 0.0236690864, -0.000733693945, 0.0159026682, -0.00344478269, -0.024384886, -0.00115720835, -0.0033582903, -0.0164156575, -0.0177756753, -0.00886994228, -0.0049360306, -0.0293238983, 0.0179665554, 0.00481076585, 0.0173461959, -0.0155089786, 0.00439321622, -0.0105580352, 0.00351039763, -0.0132542113, -0.00883415248, 0.00041195724, 0.0143159796, 0.00187300739, 0.00675833551, 0.00239047036, -0.0304691773, 0.00709834, 0.00509112049, 0.0157595072, -0.00337320287, -0.00287512597, 0.0133615816, -0.0126338527, 0.0100331157, 0.0115899788, 0.0390110463, -0.0121387579, -0.00496287318, 0.0150079187, 0.0210444909, 0.0287512597, -0.00354917, -0.0180858541, 0.018264804, -0.00092830183, 0.0298965387, -0.00820782874, -0.00175818126, -0.0226550382, 0.00805273838, 0.00435742643, 0.00963942613, -0.0130871916, -0.00149348483, -0.00603060657, 0.00570551446, -0.0274151023, -0.02118765, 0.00714009488, 0.0142444, 0.00606341381, 0.00373110222, -0.00115348026, -0.000829133845, -0.0169644356, 0.0375555865, -0.033236932, 0.00205493951, 0.00986609608, -0.0161054768, 0.0259119235, 0.000167485778, -0.0141131701, -0.00167168886, -0.00528796529, 0.0154851181, 0.006483946, 0.0184795447, 0.0291091595, -0.0175490063, -0.00730115, 0.0207820311, -0.00287810853, -0.0156044178, 0.00950819626, 0.0321870968, -0.024384886, -0.00386829698, 0.0245757662, 0.00730711455, 0.025888063, 0.00964539126, -0.0160935484, -0.0105759306, -0.0235736463, 0.00757553941, -0.0239554066, -0.000272152742, 0.0149005493, -0.0205672905, 0.0145187899, -0.0113513796, -0.000846283219, -0.00980644673, -0.0136717604, 0.0156759974, -0.0133854412, -0.0302544385, 0.0198992118, 0.00860151835, -0.0210683513, 0.00660324562, 0.00164782896, -0.00501655787, 0.0180739239, -0.0296102185, -0.0100629414, -0.0125861326, 0.00241283909, 0.00535059767, 0.0185272638, -0.0123833222, 0.00687763561, 0.0035551351, 0.00071691745, 0.00699097, -0.0157833677, -0.00873871241, -0.0184198935, 0.00546393218, 0.00282889721, 0.00882818736, -0.00638850592, 0.00599183422, 0.00874467753, 0.0173223354, -0.0157595072, 0.00399952708, -0.0100748707, -0.000626696914, 0.00870292261, -0.0137194805, 0.0113394493, -0.016666187, -0.0170598757, 0.0214262493, -0.0119061237, 0.00209072954, -1.60658656e-05, 0.0157356486, -0.0153896781, 0.0245996248, 0.00139580807, -0.0162367076, 0.0258164834, -0.0121685825, -0.0117271738, -0.0169644356, 0.00767694414, 0.00196844735, 0.0164633766, -0.0121805128, -0.0130991219, 0.0278684404, -0.00640640082, 0.00765308412, 0.0227266178, -0.00971697178, 0.00220257323, -0.01040891, 0.00977662113, 0.0179784857, -0.00233380287, -0.00404426455, 0.031781476, -0.0325211361, -0.000659877202, -0.0288228393, 0.00946644135, 0.0103850504, 0.00748009933, -0.00454830611, -0.0292046, 0.0149959894, -0.016391797, 0.000753825821, 0.00640043616, -0.000119299832, 0.0187897235, 0.00425900426, -0.0170718059, 0.0181335751, 0.00410093181, -0.00788571872, -0.00764115434, 0.0179188345, 0.00208178209, 0.0238480363, 0.00606043171, -0.0125026228, 0.0199230723, -0.0129917515, 0.00251871767, 0.00585762179, -0.0153777488, 0.00910257734, 0.00582481455, -0.00717588514, -7.54012217e-05, 0.0096573215, 0.0288467, -0.00746220443, 0.0138745708, 0.0148647595, 0.00964539126, -0.0218438, -0.0167854857, -0.00102672423, -0.0145545797, 0.0204718523, 0.00280354614, 0.00446479628, -0.00201169355, -0.00581586687, 0.0183483139, 0.000407856307, -0.000312043616, 0.0163560063, 0.0109815495, -0.0136359707, 0.00595306186, 0.00267828116, -0.00596499164, -0.0161770582, 0.0373647064, -0.0247905049, 0.00238003163, -0.00696711, 0.0026574037, -0.00714009488, 0.0125145521, 0.00475708069, -0.0106355799, -0.0204360615, -0.00615587132, -0.023287328, -0.00136672868, 0.00295565347, 0.0051000677, 0.015568628, -0.031280417, 0.00320618297, -0.00110576034, 0.000198522379, 0.00277968612, 0.0211518612, 0.00737272948, 0.00876853801, 0.00567569, -0.00661517587, -0.00632289099, -0.0282502, -0.00856572762, -0.02858424, 0.020960981, -0.0091264369, 0.0105341757, 0.00701483, 0.0107668098, 0.0157237183, -0.0113931345, -0.00939486176, 0.00191625359, -0.00397864962, 0.00820782874, 0.0161412675, -0.00172984763, 0.00102374167, 0.00770676928, 0.00197888608, -0.0129798222, 0.00724746473, -0.00494497828, -0.0175251458, 0.0106117204, 0.00317934062, -0.00226818817, 0.00586656947, 0.0322109535, -0.0231680274, -0.0260073636, -0.00529691251, -0.00431268895, 0.00136747432, 0.00322109554, -0.0253154244, -0.0167258363, 0.0100092562, -0.00525814, -0.0163321476, -0.000498822425, 0.0316860341, 0.00604253635, 0.00183870865, -0.00810045842, 0.00284380978, 0.00280056358, -0.0057174447, 0.00189835858, 0.0204479918, -0.0192669239, -0.00448269118, -0.00546691474, 0.0212234408, -0.0123713929, 0.0125145521, -0.00194011349, -0.0141847497, -0.000467879028, 0.00352829252, 0.0153300287, -0.00586358691, 0.0235855766, 0.00664500054, -0.0130752614, 0.0349548496, 0.0299919788, -0.00328671047, -0.0194578022, -0.0207223818, 0.0335471146, -0.0194697324, 0.01397001, -0.016618466, 0.00056406454, 0.0108861094, -0.0248620845, -0.02201082, 0.00249933149, -0.00111470779, -0.0106236497, 0.00771869905, 0.0245996248, -0.00139953615, 0.00595902652, -2.39415203e-06, 0.00966328662, -0.00585463922, 0.0257926248, -0.0136359707, -0.0231799576, -0.0275582615, 0.00746220443, -0.0117033133, -0.0232753977, -0.00750992447, -0.0335471146, -0.0146738794, 0.0103075057, 0.00363267981, -0.00954398699, 0.00935310684, 0.0068955305, 0.0022353807, 0.000349138427, 0.0136956209, 0.00502550555, -0.000199081594, 0.00675833551, -0.018539194, 0.00920994673, 0.00134734251, 0.0013205, 0.00412777439, -0.00993767567, 0.0292046, 0.000785887649, 0.000668451888, 0.00915029738, -0.0224045087, 0.00030514659, -0.0113096237, -0.0197799131, -0.00410093181, -5.61082e-05, 0.0168809257, 0.0046347985, -0.00569656724, 0.00826747809, -0.00504638301, 0.00154791528, 0.0282024797, 0.00861941278, -0.0159503873, 0.00605744915, 0.00284380978, -0.0125861326, 0.00236213673, 0.0107906703, 0.00116913836, 0.00615587132, -0.018264804, 0.0113812042, 0.00323004299, 0.00832116324, 0.0230010077, -0.00629306631, -0.0086253779, -0.00188642857, -0.0158191584, 0.0338334329, -0.0122759528, 0.012741222, 0.00601271167, 0.00481971307, 0.0219273102, 0.0131468419, 0.00812431891, 0.00663903588, -0.0214501098, -0.00694325, 0.00504041789, -0.0163798667, -0.00628113607, -0.0101524154, -0.00377882225, -0.00261714, -0.00998539571, -0.00702079525, 0.0160816181, 0.00821379386, 0.012645782, 0.0229890775, 0.00926959701, 0.0157356486, -0.00573235704, 0.0127292918, 0.0362910107, 0.00946644135, -0.00570551446, 0.00510603283, -0.0250052456, -0.0167377666, -0.00156581029, 0.000829879486, -0.010319436, 0.00508217281, 0.00429777661, -0.0102359261, 0.000397790369, 0.00248889276, -0.00586060435, 0.0232515372, 0.0076113292, -0.00492111826, -0.0107906703, -0.0229294281, 0.0320439339, -0.0036416275, 0.00513585797, 0.0134570207, -0.0218318701, 0.0230487268, 0.00238450547, 0.00367443496, 0.00337320287, -0.00444391882, -0.0141131701, -0.000151361659, 0.00177458499, -0.0109278644, -0.00536551, 0.0183363836, 0.0137075512, -0.00806466863, -0.0066807908, -0.0247666445, 0.0238718968, 0.000393316644, -0.00727132475, 0.0114229592, -0.0240269862, -0.00186107738, -0.000737422088, 0.00308390078, 0.0262698233, -0.0213308092, -0.00260819262, 0.0116257686, 0.019815702, -0.00872081798, -0.0206030812, 0.00728921965, 0.000975276111, 0.0195771027, 0.0119717382, 0.0160816181, -0.0270094816, -0.0048674331, -0.00454532355, 0.00776045397, 0.018264804, 0.0106117204, 0.00176116382, -0.0162367076, -0.00692535518, 0.00813624822, -0.000432461908, 0.0037072422, -0.00690149516, -0.0122640226, 0.009907851, -0.00019386223, 0.020459922, -0.0202690419, 0.0069313203, -0.00948433671, 0.0247189254, 0.0219869595, 0.00345969526, -0.0234185569, -0.00609622151, 0.0179546252, 0.00675833551, -0.00171493506, 0.0117927883, -0.00855379831, 0.00399952708, -0.00193265732, 0.0120433178, -0.00547586242, -0.00873871241, -0.00880432781, 0.00397864962, 0.0270094816, -0.0266277231, -0.0164991673, -0.00986013096, 0.0180739239, 0.0124549028, -0.0196128935, -0.0021921345, -0.0134570207, 0.0289898589, 0.000684482802, 0.0107190898, 0.00608727382, -0.00875660777, 0.0207462404, -0.0272242222, 0.0111426041, 1.9397874e-05, -0.00516568264, -0.00740255462, 0.0101762759, 0.00208923826, 0.0206030812, 0.0102717159, 0.0024933666, -0.0121864779, 0.00407110667, 0.00402935175, -0.0172149651, -0.019863423, -0.0184795447, -0.00609622151, 0.00845835824, -0.0260312241, -0.0071222, -0.00243371655, 0.0138865, 0.00287959981, 0.0119657731, -0.00965135638, 0.0146142291, -0.0286319591, -0.000948433648, 0.0113990987, -0.00543709, 0.00313758571, 0.0188613031, 1.62289707e-05, -0.0168809257, -1.59027604e-05, -0.000713934947, 0.00822572317, 0.00747413468, 0.0262221042, -0.00777238421, -0.0334278122, -0.00510901539, -0.00216529192, -0.0140773803, -0.00610516872, 0.0081601087, 0.0262221042, -0.0109696193, 0.0161770582, -0.012741222, 0.0187777933, -0.00710430508, 0.00294968835, 0.00139357115, -0.0123713929, -0.000724746496, 0.0203048307, 0.00589639414, 0.0130871916, -0.0124310423, 0.00242178654, 0.00765308412, -0.0145068597, 0.00196397351, -0.00740851974, -0.00635868125, -0.00118479645, -0.00626324117, -0.00469444832, -0.0210444909, 0.00873871241, -0.00380268227, -0.00654956093, -0.00374004967, 0.00910854246, -0.0356467888, 0.00380864716, -0.000185287558, 0.0212592296, -0.0197321922, -0.0213069506, -0.00475409813, -0.0127054323, 0.0031554806, 0.0145307193, -0.019863423, -0.00136523752, 0.0111604994, -0.016117407, -0.0141847497, 0.00529989507, 0.0120970029, 0.00620955648, 0.00371320732, 0.0062334165, -0.0114706792, 0.00582481455, -0.000275880855, 0.0139819402, 0.000801545742, -0.00274837, -0.00721167494, 0.00957381167, 0.010092766, -0.0266993027, 0.00713413, 0.00994364079, 0.0148051092, 0.0214859, 0.00342987012, -0.00998539571, 0.0107011953, 0.0109815495, -0.0103015406, 0.0212473, -1.32231753e-06, 0.00310776057, 0.00891169719, 0.00674044061, 0.0266993027, 0.00505533, -0.0180858541, -0.00403531687, 0.00283038849, 0.00436637411, -6.92498215e-05, -0.00216081832, 0.00157624902, -0.00524322782, 0.016618466, -0.00975276157, 0.0162844267, -0.0214381795, -0.00483462587, -0.0109219, 0.00281100231, -0.0137791308, 0.00883415248, 2.38832683e-07, -0.00245310273, 0.00376987481, 0.00196844735, 0.00666886056, 0.0152942389, -0.0212473, 0.011458749, -0.00523129757, -0.00260073645, -0.0185034033, -0.0164275877, -0.0192430634, -0.0111664645, 0.0197799131, 0.0111008491, -0.00362969749, -0.00543709, 0.00941872224, 0.0119717382, -0.0167019758, -0.00705062, -0.0177279543, -0.000560709217, -0.0207581706, -0.0113573438, 0.00831519812, -0.00472427346, -0.00820782874, 0.00443497114, -0.00860151835, -0.001500941, 0.00384741952, -0.00825554878, 0.00417251186, -0.0122401631, 0.00251871767, 0.0205553621, 0.00957381167, -0.00422917912, 0.00878046732, 0.00827940833, -0.0187181439, 0.0154254688, 0.0173223354, 0.00941275712, -0.0416595, -0.00906082243, 0.0112201497, -0.00922784209, 0.0141728204, 0.00972293597, 0.00640640082, 0.0131707015, 0.0271765012, 0.00873274822, 0.0232038181, 0.00145247544, -0.0142205404, -0.00429181149, -0.0256733242, -0.00577709451, 0.00921591185, 0.0174177755, 0.0149005493, -0.00608429126, -0.00517761288, 0.0014360717, -0.0225357376, 0.0237287376, -0.00558024971, 0.00184616493, 0.00200572843, 0.0152226584, -0.0260789432, 0.00286617852, 0.0163321476, 8.57001505e-05, 0.00578604173, 0.0147335296, 0.0125861326, -0.0122640226, 0.0121864779, -0.00609920407, -0.0134212309, 0.0205792207, -0.012192443, 0.000100752441, 0.00225029304, -0.0131349117, -0.00345969526, 0.00400250917, -0.0125503428, 0.024110496, 0.0163321476, 0.00811835378, 0.039130345, 0.0103611909, 0.00397864962, 0.0103254, 0.00260670134, 0.0120850727, 0.0222255588, 0.0224522278, -0.00308688311, -0.00458707847, 0.00707448, -0.00266486, -0.00423216168, 0.0403472036, 0.015890738, 0.00840467308, -0.00793940388, -0.017763745, 0.0127531523, -0.00022294157, -0.0145903695, 0.00867309794, -0.028966, 0.0274866819, -0.0161889866, 0.00863134302, -0.00491515314, 0.0091562625, 0.0140535207, 0.00541323, 0.0145068597, -0.00270512374, -0.0028602134, 0.00857169274, 0.00961556658, 0.0170837361, -0.0345253721, 0.00543709, 0.0121566532, -0.00501357531, 0.00441111112, -0.00164633768, 0.0224045087, 0.0101703107, 0.00273494865, -0.00774255907, 0.00783799868, 0.00258880644, 0.00451251632, -0.00202213228, -0.0282263402, -0.0073786946, -0.00347759016, 0.0295147784, 0.0159861781, -0.0191476233, 0.0202571116, 0.00847028848, 0.0128008723, -0.00829133857, -0.0218557287, -0.00949626695, 0.00191923603, 0.00370425987, -0.00863134302, -0.0119061237, -0.0162367076, 0.00393391214, -0.015890738, -0.0104745254, 0.0106892651, 0.00501357531, -0.0193981528, -0.0159384571, -0.00687167048, 0.00852993783, 0.00943065155, 0.00673447549, -0.0150914285, -0.00966328662, 0.0367204882, 0.0142205404, -0.000843300717, -0.0278684404, -0.0225953888, 0.00811238866, 0.00098795176, -0.0138865, -0.00425900426, -0.0169047862, 0.000817203836, 0.0225953888, -0.0282979198, -0.0164991673, 0.01095769, -0.0077306293, -0.00680605555, -0.00133243, -0.02109221, 0.0120373536, -0.00574726937, -0.000595007907, -0.00347162504, -0.00527007, 0.00139729935, -0.00536551, 0.011232079, -0.0162844267, 0.00595306186, 0.0243968163, 0.0204837807, -0.0218080096, -0.00144501927, 0.00473322067, -0.0119777033, -0.0113752391, 0.01077874, -0.00329267536, -0.00119821774, -0.0108801443, 0.0123594627, 0.0116496291, -0.00640640082, 0.00704465527, 0.0291568786, -0.000806765107, 0.026436843, 0.0125861326, 0.0125264823, 0.004223214, 0.0110233044, 0.0109696193, 0.0141131701, 0.0193623621, 0.0227743387, 0.00296310964, 0.0135405315, 0.000179229362, -0.00156879285, 0.0167139061, -0.00971697178, -0.000429852225, 0.00158221403, -0.00477497559, -0.0170718059, -0.0382475257, -0.0054191947, -0.00917415693, -0.00788571872, -0.00769483903, -0.0032598679, -0.0243133064, -0.00311372569, 0.0142205404, 0.00200423715, 0.0291807391, 0.0115720835, 0.00375496224, 0.00734887, 0.011416994, -0.00994960591, -0.0109755844, 0.00820782874, -0.00155835412, 0.0171314552, 0.030731637, -0.0375078693, -0.0192669239, 0.0111008491, -0.0178114641, 0.00835695304, -0.0230248682, -0.0109278644, 0.00821379386, 0.00740255462, 0.00191476231, -0.00979451649, -0.0123594627, -0.00551761733, 0.00141295744, 0.000738913368, -0.000285014743, 0.00152181846, -0.00953802187, 0.0119836684, -0.00555638969, 0.00836291816, 0.00597692141, 0.00229503051, 0.0192311332, 0.0069134254, -0.000520445523, 0.0106355799, 0.0178353246, 0.00165379397, -0.02913302, -0.00827940833, -0.0405380838, 0.00179844501, -0.0210444909, 0.0184437539, 0.00789764896, -0.00950223207, -0.010182241, -0.00619762624, -0.0084762536, -0.0141489599, -0.0383668281, -0.0207939614, 0.00207134336, 0.0175847951, -0.000697158393, 0.00582779665, 0.0165707469, 0.00868502818, 0.00333144795, -0.00971697178, 0.00328074535, -0.00651973579, -0.00953802187, 0.00551463477, 0.00456620101, 0.0143517703, 0.00206985208, 0.0182409436, -0.0132303517, -0.0131229814, 0.0151272193, -0.0167854857, -0.0279638804, 0.000750097679, 0.0293716192, -0.000331802672, -0.0179904141, -0.00678816065, 0.0156879276, -0.031328138, 0.000378217752, -0.00656149071, 0.0298965387, 0.00582183199, -0.0112201497, 0.0285126604, 0.0211518612, 0.0106057553, -0.00699693523, 0.0246234853, 0.0110352347, -0.0081601087, 0.0196486823, -0.0160816181, -0.016666187, 8.07603938e-05, -0.0114647141, -0.0140654501, -0.0192788523, 0.0169644356, 0.00702676037, 0.0168093462, 0.0133735109, 0.00307793566, -0.00271407119, 0.0123356031, 0.0150317792, 0.00194309605, -0.00175669009, 0.00220853812, 0.0119717382, -0.0130871916, 0.0132064912, -0.0137314107, 0.00545498496, -0.00184616493, 0.00767097948, -0.00301977713, 0.0278923, 0.00374899735, -0.0113633089, -0.0318769142, -0.00779624423, -0.011094884, -0.0166542567, -0.0170956664, 0.00703869, -0.00470041344, -0.000663605344, 0.0057025319, -0.00236362801, 0.0119419135, 0.00842853356, -0.000133373484, -0.00287661725, -0.00153747655, 0.00304811075, -0.00312267314, -0.00287959981, -0.0139461504, 0.0175609346, 0.00262459624, 0.00158668775, -0.00965135638, -0.00230994308, -0.0022532756, 0.0372215472, -0.00294670579, 0.00716992, 0.00332846539, 0.0123236729, 0.0061499062, 0.00153598539, 0.0135405315, -0.0214023907, -0.00789764896, -0.00461392105, 0.0155209079, -0.0126815727, -0.0245757662, -0.018038135, 0.00869099237, -0.0132064912, -0.00274986122, -0.0304214582, 0.0132064912, -0.0139103606, 0.00142488733, -0.00774852419, 0.0241343565, -0.00289898599, -0.00585762179, -0.0321870968, -0.00229950435, -0.0233708378, -0.00987802632, 0.0051507703, -0.0137075512, 0.0259119235, 0.00926363189, 0.00678816065, -0.00898924284, -0.0207939614, 0.00231739925, -0.0158788078, -0.0110173393, 0.0109696193, 0.00959170703, -0.0121685825, 0.00902503263, 0.00758746918, 0.0118166488, -0.000786633289, -0.0159145985, -0.00497480296, -0.00544603728, 0.000139711294, 0.0279638804, 0.0054013, -0.00113483961, -0.0194578022, -0.0102418903, -0.00432461873, -0.0190283228, -0.0239792671, -0.0256017447, -0.00817203894, 0.00459006103, -0.0164395161, -0.0141966799, -0.0152107291, 0.00576516427, 0.00367741729, 0.0312088355, 0.00282293232, -0.00951416139, -0.0244087465, 0.00681798533, 0.0425423197, -0.00471830834, 0.00833905861, -0.00623938115, -0.00528498273, 0.00946047716, -0.0231441669, -0.0126815727, 0.00951416139, 0.0157595072, -0.0199350026, 0.00294968835, 0.00690149516, -0.00804080907, 0.0104387356, -0.00852397271, -0.00342092267, -0.0123833222, -0.0100808358, 0.0054162126, 0.00910257734, 0.0238718968, 0.00500164554, -0.00780220889, 0.0159265269, -0.00710430508, -0.00610815128, 0.0267231632, -0.0125742024, 0.0197321922, 0.00203704461, -0.00460199127, -0.02081782, -0.00661517587, 0.00201467588, -0.00199379842, -0.00151659909, 0.00542814238, -0.00456023589, -0.00301082944, -0.00427988172, -0.0251006857, 0.00878643245, 0.00123773573, 0.00048130026, -0.0042560217, 0.0118584037, 0.000508888334, -0.0217125695, 0.0201497413, 0.0118643688, 0.00261117518, 0.0227743387, -0.0038563672, -0.0168451369, -0.0179307647, 0.00335530774, 0.0289421398, -0.00925766677, -0.0330221951, -0.0027692474, 0.0201974623, -0.0176921654, -0.00288854726, 0.00191923603, -0.0175847951, 0.0112678688, 0.00678816065, -0.00119299837, -0.0266038626, 0.0142444, -0.0221420489, -0.013468951, -0.01429212, 0.00711623486, 0.0231799576, 0.0263414029, 0.0129440315, -0.00138760614, 0.0121268276, 0.0120671783, -0.00605744915, 0.0081601087, 0.00487041567, -0.0109457597, -0.0372454077, 0.00384443719, -0.0161293373, 0.000881327491, 0.0107668098, -0.00536252744, -0.0145784393, -0.00645412086, -0.0115243634, -0.000735185225, 0.000922336825, 0.0218318701, -0.0046526934, -0.00140922924, -0.0189328827, -0.0222016983, -0.00162546022, -0.0174654964, -0.00866713282, 0.00115795399, -0.0182170849, -0.00470041344, -0.00313162059, -0.00810045842, 0.0038742621, -0.0105162803, 0.0195293818, 0.0331892148, -0.00725939497, 0.0191595536, -0.00615587132, -0.0219869595, -0.0174535662, 0.010182241, -0.00596200908, 0.0213785302, -0.0114647141, 0.0100092562, -0.0177876055, 0.00549077475, 0.00627517141, 0.0015285291, 0.00664500054, 0.00351338019, 0.00595902652, 0.00142190489, -0.0260073636, 0.0178233944, -0.000861941313, 0.000742268632, 0.00978258625, -0.00471532578, -0.00441111112, -0.00915029738, 0.00266784243, 0.0143159796, -0.0202690419, 0.0127292918, -0.0117868232, -0.00895345211, -0.0104625951, -0.0113334842, -0.00840467308, 0.0164395161, 0.00998539571, 0.000450729684, 0.00287065213, 0.00296460092, -0.0127531523, 0.0244803261, 0.0130514018, 0.00329864048, 0.00697307521, 0.024158217, -0.00103119796, -0.0169167165, 0.0154016083, 0.000977513, -0.00484357309, 0.00508813793, 0.00207283464, 0.0183005948, 0.0147812497, 0.0465985164, -0.0134331612, 0.00342092267, -0.0129321022, -0.0245280452, -0.00227266178, 0.0061499062, 0.00939486176, 0.00605148403, -0.00592920184, 0.026937902, -0.0245041866, 0.0201736018, -0.00512392772, 0.0218318701, -0.0125264823, -0.00394584192, -0.0108801443, -0.00600972911, -0.00507620769, -0.00101181166, 0.00510901539, 0.0289898589, 0.00923380721, -0.0229055677, 0.00908468198, -0.0112440092, -0.0233231168, -0.00806466863, -0.000190600127, -0.00748606445, -0.0171791762, -0.00721167494, -0.00663307076, 0.00808852911, 0.0170718059, -0.00828537345, 0.00190879731, -0.0071639549, 0.0189925339, 0.0231083781, -0.00561007485, -0.00125935883, -0.00653763069, -0.00886994228, -0.00122356892, 0.00824958365, 0.0112619046, 0.0138865, -0.00334636029, 0.0103910156, -0.00581288431, 0.0220466089, -0.0293477587, 0.00861344766, -0.0154970484, -0.00220555556, 0.00941275712, -0.0109815495, -0.0102180308, -0.00479287095, 0.01456651, -0.00469743088]
01 Sep, 2021
jQWidgets jqxTooltip name Property 01 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported framework. The jqxTooltip is a jQuery widget that is used to display a popup message. The jqxTooltip widget can be used in combination with any HTML element. The name property is used to set or return the name of the tooltip’s group. This property is used to display one tooltip at a time. By default, all tooltips are used in a single group. It accepts String type value and its default value is ”. Syntax: Set the name property. $('Selector').jqxTooltip({ name: String }); Return the name property. var name = $('Selector').jqxTooltip('name'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css”> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”.jqwidgets/jqxbuttons.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script> The below example illustrates the jQWidgets jqxTooltip name property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css"> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src=".jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxtooltip.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTooltip name Property </h3> <br><br> <input type="button" id="jqxBtn" style="background: green;" value="GeeksforGeeks" /> <br><br> <input type="button" id="jqxBtn1" style="background: green;" value="Geeks" /> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxBtn',).jqxButton({ width: 150, height: 50 }); $("#jqxBtn").jqxTooltip({ theme: 'energyblue', content: 'A computer science portal', position: 'top', width: 250, height: 30, name: 'tooltipGroup' }); $('#jqxBtn1').jqxButton({ width: 150, height: 50 }); $("#jqxBtn1").jqxTooltip({ theme: 'energyblue', content: 'Welcome GeeksforGeeks', position: 'top', width: 250, height: 30, name: 'tooltipGroup' }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtooltip/jquery-tooltip-api.htm 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 jqxTooltip name Property
https://www.geeksforgeeks.org/jqwidgets-jqxtooltip-name-property?ref=asr10
PHP
jQWidgets jqxTooltip name Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTooltip name Property, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0358019918, 0.0109018935, -0.00899370201, 0.0322304331, 0.0831827447, 0.0198307894, 0.0235031582, 0.0129973041, -0.00442844443, -0.0173537415, -0.0156687722, -0.0320288129, 0.00990819372, -0.023272736, 0.027074717, 0.0158415902, -0.0250873175, 0.00933933724, -0.0240360126, 0.0164752528, 0.0148766926, -0.00832403544, -0.0525076687, -0.0144014452, -0.0182610322, 0.0315967686, -0.00344014517, 0.0305022597, -0.0194707531, 0.0298109911, -0.00379118044, -0.000451395288, 0.0337857902, -0.000349010021, -0.00957696047, -0.0235175602, -0.0118955933, 0.0410153158, -0.0472079366, -0.00943294633, 0.00997300074, 0.00110081048, -0.0141278179, -0.00395319657, -0.000802430499, 0.0175121576, 0.0212997366, -0.0307038799, -0.0185490604, 0.0203204397, 0.00340414164, 0.0338433944, -0.0157263782, 0.0781710446, -0.01026823, -0.021991007, -0.00724752713, 0.00730873318, -0.0314239524, -0.00265526632, 0.00510171195, -0.0242520329, -0.0441260263, -0.0176561717, 0.0472079366, -0.00158145872, -0.00262466329, 0.00965616852, -0.00260306126, 0.0170369092, 0.0144662512, 0.0343042426, -0.00818722136, 0.0069558979, 0.00285148621, -0.0343042426, 0.00188838947, 0.00112691312, -0.0284284521, 0.024396047, 0.0041044117, 0.012817286, 0.00259946077, 0.000350135146, 0.0205220599, -0.014135018, -0.00506570842, -0.0423402488, 0.0548983067, 0.00052745291, -0.0253177397, -0.000678218, -0.00757516, 0.00589379156, -0.0208676942, -0.0139982048, 0.0339874104, 0.0112619298, -0.0564824678, 0.0310207121, -0.00265706657, 0.0157263782, 0.00384158548, -0.0318271928, -0.00805040821, 0.0222934373, 0.0385094658, -0.000635913806, -0.0147614814, -0.00236543734, 0.0483600534, -0.0413609482, -0.0362052321, 0.00523492508, -0.0123348376, 0.0326048732, -0.016806487, -0.0165184569, -0.0260954183, -0.0209973063, -0.00725112762, -0.0100594098, -0.00488929078, 0.0274347533, -0.0170945153, 0.0457389876, 0.0122844325, 0.0185490604, 0.0494833663, 0.0052745291, 0.00702070445, 0.0377029814, 0.0131629212, 0.0148910945, 0.0188082866, 0.019456353, 0.0199748036, -0.0183330402, -0.0160576105, -0.00834563747, -0.0445292667, -0.0189523, -0.012903695, 0.0140270079, -0.00689829234, 0.0110891126, 0.00801440421, 0.00792079512, -0.0342754386, -0.00324752578, -0.0263834465, -0.0423114449, 0.00314851594, 0.0359460078, 0.0099658, 0.0162880346, -0.00572817493, 0.0297821891, -0.019398747, -0.0133357383, 0.0079856012, -0.035974808, 0.025850594, 0.0220630132, -0.0280396137, -0.0356003717, 0.0255049597, -0.00285508647, -0.0754059628, 0.0309055, 0.00707831, -6.60441292e-05, 0.0107218754, 0.0144014452, -0.0722376481, -0.0133357383, 0.00379118044, -0.0395175666, -0.0173681434, -0.0261530243, -0.0203780439, 0.0288892984, -0.0157119762, 0.00292349327, -0.0190963168, 0.00324032502, 0.0178433899, 0.0190387107, -0.0140558099, -0.00438163942, -0.0323456451, 0.015481553, 0.0539478138, 0.0284716561, 0.0511827357, -0.011629167, -0.0179009959, 0.0165616609, -0.0122196265, -0.0333825499, 0.0209685043, -0.0473807529, -0.0222070273, -0.00306390738, 0.0290333126, 0.0615805797, -0.0328064933, -0.0417065844, 0.0351395272, 0.0204356499, 0.0183906443, -0.0212565325, 0.0315391645, 0.0100882119, -0.00472727418, 0.00960576348, -0.00401440263, -0.0480144173, -0.0121476185, -0.0346210748, 0.00179568015, -0.00380558195, 0.020666074, 0.0226822756, -0.0976417959, -0.000946895, 0.00532133412, -0.00255805673, -0.0331809297, 0.0121836225, -0.00479928171, 0.00020803338, -0.00818722136, 0.00605940819, 0.0362052321, 0.0389991142, 0.00970657356, 0.0161152165, 0.007733576, 0.012932498, 0.0303006396, -0.0114275469, -0.00494689634, 0.00536813866, 0.0112475287, 0.00476327771, 0.00134473492, -0.0229703039, -0.0116651701, 0.0184050463, -0.0211125184, -0.00823042542, 0.0124140456, 0.010297033, 0.00334653584, 0.0145094562, 0.00511611346, -0.00897930097, 0.0470063165, -0.011650769, 0.00802880526, 0.0485904738, -0.0291341227, 0.0162880346, 0.0407560878, -0.00298109907, 0.0697029904, -0.0430603214, 0.0161872245, -0.0233159401, 0.0268442929, -0.0285292622, 0.0604860708, 0.0305310637, -0.0149054956, 0.012903695, -0.0411017239, -0.0189379, 0.00451125251, -0.00212601339, 0.0472367406, 0.00149955042, 0.0345058627, 0.056684088, -0.00160846137, 0.00431683334, 0.0226966776, 0.0214437507, -0.00446084747, 0.036147628, -0.0273627453, 0.0111611197, 0.0259802062, 0.0287452843, 0.0422250368, 0.0180882141, -0.00390279153, -0.0179153979, -0.0203060377, 0.0100810118, -0.0168352891, -0.0213141385, -0.0531701334, -0.0102034239, -0.00378397969, 0.0493105464, 0.0326048732, 0.00115031539, -0.0312799402, -0.0189234987, 0.0368100926, 0.0249577034, -0.0199892055, -0.0204644538, -0.0208100881, 0.000322232343, 0.00144014449, 0.0132925333, 0.0262106303, -0.00523492508, -0.00841044355, -0.00649505155, -0.0348803, 0.0177857839, 0.0532277413, -0.0130909132, -0.0160288084, -0.00487488927, 0.0111899227, 0.00126372685, -0.049829, -0.0174977556, 0.00262286328, 0.00599100115, 0.012903695, -0.00188838947, 0.0160000045, -0.0313375443, -0.0261242203, 0.0344770588, -0.00718632108, -0.0247128792, -0.0116939731, 0.0131989243, 0.0387110859, -0.0454797633, 0.00457965955, -0.0278956, 0.0429739133, 0.00209721038, 0.00142304273, 0.0310495161, 0.0152943349, -0.0158991944, 0.000138388888, 0.00531053264, 0.00226462726, -0.00403960515, -0.0212709345, 0.00976418, 0.0104266461, 0.0151503198, 0.0324320532, 0.00499010086, -0.0121548194, -0.0434347577, -0.0323168412, 0.0166336689, -0.0389415063, -0.00078397867, -0.0222790353, -0.0462862439, -0.0362052321, 0.0281692259, 0.00937534, -0.0037947807, -0.0115571599, -0.00669307169, -0.0256345719, 0.0191971269, -0.0207668841, -0.010383442, 0.0294797588, 0.0395175666, -0.0488785058, 0.00856165867, 0.0325184613, -0.0389991142, 0.00770477299, 0.0018703877, -0.042397853, 0.0503186472, -0.016792085, -0.0239928067, 0.00569577143, 0.0215445627, -0.000884338748, -0.0143582411, 0.0560216196, -0.0027110721, 0.00115391577, -0.0165184569, 0.0160576105, -0.011636368, -0.00933933724, -0.0352259353, -0.051585976, -0.00351215247, 0.0148046855, 0.024396047, -0.00836003851, -0.0275643654, -0.0171953253, 0.0119387982, 0.0330657177, 0.0362340361, 0.0123204365, 0.0750027224, 0.0138541898, -0.041188132, 0.0350243151, -0.0315391645, -0.0281548258, 0.0309631061, -0.0250153095, 0.00387038826, -0.0543798581, 0.00291989301, 0.0505490713, -0.0242808368, -0.000412691414, -0.00558416033, 0.00336633786, 0.00352475373, 0.0215733647, -0.0100810118, 0.0337569863, 0.000401665311, 0.0189811047, -0.0390855223, -0.0124212466, 0.00654905709, 0.0558488034, 0.0091233151, -0.0540630259, 0.00507290894, -0.0179153979, -0.0110819116, 0.0133861434, 0.0624446645, 0.00128442887, -0.0229127, -0.0548983067, 0.00612061424, 0.0148334885, 0.0118523892, -0.0137173766, -0.00599100115, 0.0101962229, -0.0209829062, -0.0273627453, -0.00407560915, -0.0126300668, -0.0031521162, -0.0142790331, -0.004514853, 0.0134221464, 0.00388478977, -0.000226372707, 0.00720432308, -0.0461422279, -0.0198163874, 0.060658887, 0.0413609482, -0.0086552687, -0.0175697636, 0.0190819148, -0.0139982048, -0.0023690376, 0.0183330402, 0.0392007343, 0.00995859876, 0.00358055928, 0.0171233173, 0.0167632811, 0.00257785874, 0.0410441197, -0.0310495161, 0.00825922843, 0.0348514952, 0.028457256, 0.0211125184, -0.0449037068, 0.0107362773, -0.00951935537, 0.0388262942, -0.0366660804, -0.0133357383, 0.0539190099, 0.0176705737, 0.0196291693, 0.00406480767, -0.0262538344, 0.0639424175, 0.0219766051, -0.000558506057, -0.065728195, -0.00607740972, 0.00962736644, -0.0101458179, -0.0123492396, -0.00779118156, -0.00156075659, 0.00937534, 0.0156399701, -0.0374437571, -0.0299550053, 0.0147470795, -0.00275067589, -0.00282628369, 0.0128244869, 0.0160144065, 0.00962736644, 0.02572098, 0.0280540157, 0.0383078419, -0.019355543, -0.0259514041, -0.00747435, 1.4584276e-05, 0.00212601339, 0.00422322378, 0.0233879462, -0.016777683, -0.0262826364, 0.0200324096, -0.0212709345, -0.0347074829, -0.014106215, 0.0133357383, -0.00220702146, 0.00627182936, -0.0617533959, -0.0163456406, 0.0013582363, 0.0382502377, 0.00303690461, -0.0182034262, -0.000456570822, 0.0157983843, 0.0155823631, 0.00478848023, 0.00324392552, 0.00336453761, 0.0251881275, -0.00132133253, -0.005152117, 0.00472367415, -0.0385958739, -0.00703150546, 0.000953195617, 0.0052781296, 0.0140702119, -0.0034941507, 0.00379838119, 0.0124932537, 0.0197731834, 0.0244248509, -0.0140198069, -0.00366696785, 0.0341890305, -0.0111107146, 0.00793519616, 0.0227974877, 0.0329793096, 0.002572458, 0.0293645468, -0.00594779663, 0.000190481616, -0.00876327883, -0.0264410526, -0.0278811976, 0.0161152165, 0.00490369182, -0.00421602326, 0.0194275491, -0.0177137777, -0.00201800256, -0.0635967776, -0.00337353838, -0.00828083, 0.0217029769, -0.00967057049, 0.00631143339, -0.0145814633, 0.0320864208, -0.0300990194, 0.02072368, 0.0130477091, -0.0139910039, 0.0247272812, 0.0259514041, 0.0371269248, 0.0183474403, -0.00194959564, -0.0063078329, 0.0196291693, -0.0214149486, 0.0154239479, 0.0122484285, -0.0350819193, 0.00434923638, 0.0523636527, 0.01165797, 0.00333033409, 0.00600540265, -0.0243384428, 0.0172385294, -0.0147902844, 0.0247848872, 0.0464878641, -0.00186138682, 0.0302142315, -0.00884248689, 0.0377029814, -0.000478398, -0.0190675128, -0.00637263944, -0.00951935537, -0.00726912916, -0.0132565303, 0.0194131471, -0.00317551871, 0.0241944268, 0.0312223323, 0.0364932604, 0.00759676239, 0.0052925311, -0.0147254774, 0.0402664393, 0.0283708461, 0.00696309889, -0.0386246741, 0.0694725737, -0.015524758, 0.0253609437, 0.0279244017, 0.0334977619, 0.00192619325, 0.0119459983, -0.0151791228, 0.0122124255, -0.0153087359, 0.00924572814, -0.00306390738, 0.0191251189, 0.0135301575, -0.00324212527, 0.0285724662, 0.0683204532, -0.0136597706, -0.00324212527, 0.0263546444, -0.00203060382, 0.0120180063, -0.00824482739, 0.0249721054, 0.0350243151, 0.0336417742, -0.00769037148, 0.0223510433, 0.00291629252, 0.0162304286, -0.00196399703, -0.0145598613, -0.00217461819, -0.0118955933, 0.000389064051, 0.00918092113, -0.0121332174, -0.0134941535, 0.00807201, 0.0120396083, 0.0021854192, 0.000484248594, -0.0172817335, -0.00617101928, 0.0254473537, 0.014221427, 0.0152223278, -0.0278667957, -0.01415662, 0.0260810163, 0.000551755365, 0.0227974877, -0.0147398794, 0.0147038754, 0.000466246769, -0.0210837163, -0.0146534704, -0.0183042362, -0.0101890219, -0.00903690699, 0.0413897522, 0.00660306262, 0.0220486131, 0.000443969533, 0.0125652608, -0.0132349283, 0.00223402423, 0.0163744427, 0.0109522985, -0.00375157641, 0.0567704961, -0.0120324073, 0.00493249483, 0.0105706602, -0.00946174935, -0.0496561825, 0.00260666152, 0.0187218785, 0.0431467295, 0.00507290894, -0.0230279099, -0.00642304448, -0.0101890219, 0.0153519399, -0.00676507875, -0.010297033, 0.0132637313, -0.00422322378, 0.0161872245, 0.0377893932, -0.00639064144, -0.0294941589, 0.000231323211, -0.000520702219, -0.0183186382, 7.64514189e-05, -0.0263402425, -0.00918812212, -0.00649145152, -0.00805040821, 0.0130693112, -0.00110981136, 0.000912241521, 0.00307290838, -0.0104842521, 0.0137029747, 0.000844284717, -0.0135085555, -0.0260954183, -0.0125508597, -0.0328640975, -0.000163591409, 0.0097569786, -0.0211989265, -0.00385598699, 0.00702790497, -0.00553375529, -0.00274347537, 0.0117659802, -0.0447596908, 0.0251305215, 0.00122862333, 0.0190963168, -0.0277947895, -0.0196147673, 0.00551575329, -0.0186066665, -6.03623048e-05, 0.00155715621, -0.0104770511, -0.00178037863, 0.0160432104, -0.0161584206, 0.0136597706, 0.00203060382, 0.00485688727, -0.00182358292, -0.0293213427, 0.002252026, -0.00286588748, -0.0235319603, 0.0171665233, -0.0176417697, 0.0120972134, 0.015553561, -0.00976418, 0.00474167569, 0.00456525804, -0.0242088288, 0.0075895614, 0.0163456406, -0.0094113443, -0.0252745356, 0.00606660871, 0.0112115247, 0.032144025, -0.00316651771, 0.0239063986, 0.0157839842, 0.0104770511, 0.0148766926, 0.0145094562, -0.0486480817, -0.0279820077, -0.0148478895, -0.0267866869, -0.00284968596, -0.0215445627, 0.017987404, -0.0202916358, 0.000728173065, 0.0216165688, -0.0217029769, -0.00639784196, -0.00160396099, 0.000540954294, -0.025749784, -0.00869847275, 0.0297821891, -0.00991539471, -0.0316255726, -0.0391431265, 0.0573465526, -0.00801440421, 0.0214581527, 0.0180306099, -0.0174977556, -0.0116651701, -0.0101242159, -0.0461998358, -0.0165184569, -0.0168784931, -0.011593163, 0.0157839842, 0.0123420386, 0.0290189125, -0.017987404, 0.00332133332, 0.00153195369, -0.00508371, 0.00917372, 0.0117731811, 0.0473519526, 0.00799280219, 0.0302142315, 0.00828083, 0.0107146753, 0.00301530259, -0.00163636415, 0.0341314264, 0.0127092749, 0.0150207067, 0.0105202552, -0.0357443877, 0.010297033, 0.0417641923, -0.0110387076, -0.011549959, 0.0209829062, -0.0388262942, 0.0282988399, 0.00224122498, 0.0089072939, -0.0220774151, -0.0144230472, -0.0199316, 0.0232439321, 0.00132673315, -0.0198163874, -0.00204320508, 0.0202628337, 0.00142664311, -0.00240684161, -0.0397479869, 0.00499010086, 0.00244464539, -0.0274203513, 0.0312799402, -0.00268406933, -0.0278523955, -0.0117155751, -0.0350819193, 0.0408425, -0.0209108982, -0.0151647218, 0.00818722136, -0.00639784196, -0.00457245857, -0.00837444048, 0.0159279983, -0.0352835394, 0.00531413313, 0.0428587, -0.0108658904, -0.0381062217, 0.00585778756, 0.0349955112, 0.0107002733, -0.00882088486, 0.018073814, -0.0133213364, 0.0276363734, -0.0118091851, 0.00445004646, 0.0416777804, 0.00525652757, -0.00230063079, 0.0535157695, 0.0388551, 0.0081152143, -0.0254617557, 0.00822322536, -0.0123996446, -0.015380743, 0.0659586191, -0.010347438, -0.020579664, 0.0132925333, -0.00430243183, 0.0265130606, 0.0337857902, 0.00818002, -0.0155823631, -0.0107866824, 0.000283528439, -0.0202772338, -0.00858326163, 0.00209180987, -0.00511251297, 0.00842484552, 0.0307614859, 0.0188226886, 0.00584698655, 0.0262682363, 0.0191539209, -0.0165040568, -0.00677587977, 0.0447020866, 0.00574257597, -0.0342754386, 0.00367236859, 0.00486768829, -0.00846805, -0.0332385339, 0.00485688727, 0.0182322301, -0.000371062226, 0.0158847943, 0.00075877615, -0.00776237901, -0.0063042324, 0.025677776, -0.0105058542, -0.00568857091, 0.0331233218, 0.00420522178, 0.0222214293, -0.0148334885, -0.0397767909, -0.00756075885, 0.0117299771, 0.02580739, -0.00268766959, -0.00469487114, 0.00253285421, 0.032403253, -0.0246984791, -0.0237479825, -0.00774797751, 0.040007215, 0.00724032661, -0.00284428545, -0.0187650826, 0.00611341326, -0.033440154, 0.0148910945, -0.00524572656, 0.0294941589, 0.00645904802, 0.0117443781, -0.0107146753, 0.0233303402, -0.0181458201, -0.0166048668, 0.00351755298, -0.0269307029, 0.0274923593, 0.0110099046, -0.00289109, 0.0132781323, 0.0124644507, 0.0130261071, 0.0140990149, 0.00778398104, -0.0233879462, -0.0109955035, -0.0239352025, -0.0164464507, -0.0314815603, 0.0105706602, 0.0119243963, -0.00153465394, 0.00826642942, 0.0197875854, -0.00496849837, -0.0247992892, -0.000407965941, -0.0146534704, -0.0160576105, 0.0084032435, 0.0177569818, 0.0413033441, 0.00663186563, 0.0157983843, 0.00201260205, 0.0191251189, 0.0110891126, 0.0258937981, 0.00188838947, 0.004496851, -0.00375877717, -0.00668947119, 0.0228118896, -0.0121188164, -0.0123924436, 0.0220918171, -0.0166192669, -0.00766156893, -0.00511611346, -0.0136597706, 0.0144878533, 0.0073699397, -0.000273627462, 0.00165256578, -0.0493393503, -0.00834563747, -0.00131053152, 0.021818189, -0.00212961365, 0.000755175774, 0.011614765, -0.00445724744, -0.0106714703, -0.00972817652, 0.0254905578, 0.0243240409, 0.0117587801, 0.00309451041, 0.012925297, -0.00439604092, 0.0163600408, -0.020651672, -0.00394239556, -0.00285868673, -0.011535557, 0.0139405988, 0.00178307889, 0.00592259411, -0.0022664275, -0.0281548258, -0.0163168367, -0.0135733616, -0.00269307033, 0.00330333156, -0.00600540265, -0.0109811015, -0.00660306262, -0.0173393395, 0.000774077664, 0.00571017293, 0.00800000224, 0.047870405, 0.00622502482, 0.0119748013, 0.0236327704, 0.00327992905, -0.0167056769, 0.00819442235, 0.00357695902, -0.0160720125, 0.00262466329, -0.00380198145, -0.0226246696, 0.0222214293, 0.00871287379, 0.00138793921, -0.0143438391, -0.00094779511, -0.00164716528, 0.00329433056, -0.0112259267, 0.00349595072, -0.023272736, -0.00575337745, 0.0745994821, -0.00463726511, -0.0222502332, 0.00151935243, -0.0254473537, -0.0333825499, -0.00775517803, 0.0138181867, 0.0183618423, 0.000172592321, 0.00186138682, 0.0149487, 0.0106714703, -0.000349460053, -0.000220859656, 0.0138757918, 0.00484248577, 0.0167056769, 0.0237623844, -0.0146966744, -0.0139694018, 0.00962736644, 0.0144518502, -0.0161728226, 0.00805760827, 0.00702790497, -0.0242376328, 0.00958416145, -0.0133213364, 0.0144662512, -0.00551575329, 0.0136597706, 0.0382214338, 0.0100234058, -0.000662016449, 0.0315967686, -0.0138901938, -0.00672547473, -0.00784158707, -0.0219622031, -0.00669307169, -0.00282448344, 0.00784878712, 0.00317911897, 0.00595499761, 0.00843204651, -0.0255193599, -0.00766156893, -0.000472097367, 0.00832403544, -0.0275211614, -0.00843204651, -0.00345274643, -0.0111611197, -0.0213717446, 0.00781278405, -0.0187218785, -0.0258793961, 0.0175985657, -0.0369253047, -0.0393447466, -0.00481368322, -0.00795679819, 0.00574977696, 0.0142934341, -0.00519172102, -0.0279388037, 0.0318271928, -0.0398632, 0.020666074, 0.0172961354, 0.00248064892, 0.00340414164, 0.00733033568, -0.00804320723, 0.00111251161, -0.000167979349, 0.0204932559, -0.000912691583, -0.0191683229, -0.0276363734, 0.0183906443, -0.0109883025, 0.00293069403, -0.0127308778, -0.00813681632, -0.00672187423, 0.00313411443, 0.0106714703, 0.0129541, -0.0098865917, -0.0073699397, -0.0280108098, -0.0253033396, 0.0165616609, -0.0060378057, 0.0215301607, 0.015380743, -0.02580739, -0.00469127065, 0.00624662684, 0.00707471, -0.00780558307, 0.0153951449, 0.0101026138, 0.00114851526, 0.0335553661, 0.0111179156, -0.0210981164, 0.0181746241, 0.0132205263, -0.010325836, -0.0272043291, -0.00205220585, -0.00285148621, -0.000868137111, -0.0179298, 0.0189090967, -0.0200756136, 0.0143582411, -0.0147110764, -0.0254329517, 0.00304950587, 0.0143294381, 0.0143582411, -0.0182610322, 0.0016093615, 0.0202052277, 0.0148478895, -0.00679388177, -0.0350531153, 0.0204932559, -0.0109090945, 0.00451125251, -0.028356446, 0.0089721, -0.02321513, 0.0089721, 0.00103690405, 0.0301566254, -0.0150063056, 0.0022484255, -0.00789919216, -0.000635013741, 0.00931053422, 0.00349955121, 0.00172187272, 0.00208640937, 0.0201332197, 0.0131845232, -0.0100090047, -0.00871287379, 0.0100018037, 0.00594779663, 0.0225958675, -0.00668947119, -0.00780558307, 0.00650945306, -0.0254041497, 0.0268586949, 0.0104770511, 0.0165904649, 0.0166336689, 0.00448605, 0.0118667902, -0.00430243183, -0.0151215177, -0.0213141385, 0.0176129676, 0.012817286, 0.0169649031, 0.0109667005, 0.0098865917, 0.000428893021, 0.000244824565, 0.00563096488, 0.0256201699, 0.0204068478, 0.0130765121, -0.00679028127, -0.0135229565, 0.0237623844, 0.0105634602, 0.00441044243, 0.0079495972, -0.0079784, -0.00202520331, -0.0018028809, 0.00838884152, 0.0114707509, -0.0267866869, -0.00492169382, 0.0287308823, 0.021918999, 0.0335265622, 0.0249289013, -0.00900810398, -0.0072115236, 0.000117574295, 0.00511611346, -0.00439964142, -0.0238343906, 0.0199748036, 0.0170225073, -0.0111107146, 0.0132133262, -0.00521692354, -0.00740234274, -0.00854005665, 0.000792529492, 0.0216741748, -0.0259802062, -0.00576417847, -0.0273915492, 0.00800000224, -0.01804501, 0.0227686837, -0.00227722852, -0.00892169494, 0.020478854, 0.00986499, 0.0118163852, -0.0160288084, 0.0121548194, 0.00419802126, 0.0187794846, -0.00897930097, 0.003539155, -0.010318635, -0.00220522122, 0.00532493414, 0.0159135964, 0.0391431265, 0.0303870495, 0.0207668841, -0.0294653568, 0.00764716743, -0.0307614859, -0.0133861434, 0.0272907391, -0.0268010888, 0.0212421305, -0.00914491713, 0.0145598613, -0.0261098202, -8.70837393e-05, 0.000279703061, -0.0186786745, 0.00318271946, 0.0161584206, -0.00474167569, 0.00888569187, 0.00792799518, -0.0131053152, 0.0172529314, 0.00263726455, 0.0127956839, 0.00162466301, -0.0148910945, -0.0242376328, -0.0162880346, -0.00221602246, 0.0101098148, -0.00834563747, -0.0175409596, -0.016734479, -0.0209973063, -0.010289832, -0.0108010834, -0.0052601276, 0.00402880413, 0.0160432104, 0.0340738185, -0.016777683, 0.0354563594, -0.00946174935, 0.0378181934, 0.0015805586, -0.011571561, -0.0155967651, -0.00924572814, 0.00378037943, -4.67765676e-05, 0.0123636406, -0.0324896611, -0.00302430335, -0.011600364, -4.78173e-07, 0.000894239754, 0.0120396083, 0.0188082866, 0.0131845232, -0.0169793032, -0.0199027974, 0.00686588883, 0.0216597728, 0.00407200865, -0.0182754342, -0.0137533797, -0.0241512228, 0.00251665246, -0.0251161195, 0.0176417697, -0.0201188195, -0.009000903, 0.0324608572, 0.0164032467, -0.00825922843, 0.0209829062, 0.00363996532, -0.0187218785, -0.0247416832, 0.0183762442, 0.00923132617, -0.0106138652, -0.00968497153, 0.0133573404, -0.00455805752, 0.00987939164, -0.0131773222, 0.00480288174, -0.0302142315, -0.0226534735, -0.000169216975, 0.00298829982, -0.011549959, 0.00961296447, -0.0188658927, -0.0095049534, -0.0201620236, 0.00434563588, -0.00482088374, -0.0388262942, 0.00337893912, 5.25427713e-05, -0.000694869726, 0.00389919127, -0.0165184569, 0.000459946139, 0.0023060313, -0.0217605829, 0.0182178281, -0.00608101, 0.0107506784, -0.00263186404, 0.0302718375, -0.00563096488, -0.0136093656, -0.0266858768, -0.00563096488, -0.00428082934, -0.00207020761, 0.002252026, 0.000353960524, 0.00834563747, 0.0182322301, 0.00793519616, 0.0178433899, 0.011535557, 0.0121332174, 0.00179568015, -0.0145022552, 0.0288748965, -0.0164464507, 0.0079712, -0.00325292628, -0.00694869738, -0.0287164822, -0.00446084747, 0.0084032435, -0.0152511299, 0.00133573404, 0.021803787, -0.00505850744, -0.00699910242, 0.0138181867, 0.00963456649, -0.0125364577, 0.0162016265, 0.00729793217, -0.0174833536, -0.00479208073, -0.0377893932, -0.0250873175, 0.0307902899, 0.0031467157, 0.00200360105, 0.00736633921, -0.00750315282, -0.00724392664, 0.0207956862, 0.0145526603, 0.0225094594, 0.0034167429, 0.00726192864, -0.00250225118, -0.0255481638, 0.00571737345, -0.0524500646, -0.0243384428, 0.0265274625, 0.00962016545, -0.0112187257, 0.00613501575, 0.0250729155, 0.0306750778, -0.0137029747, -0.0369253047, 0.000196332199, 0.0233303402, -0.0230855159, -0.00241044187, -0.00176147674, -0.0314815603, -0.00807201, 0.0191251189, 0.0213285405, -0.000982898637, -0.00317191822, -0.014192624, 0.00597659964, -0.00344194542, 0.00542574422, -0.00124932535, -0.00290729175, -0.0501746349, 0.00705310749, 0.00786318909, -0.0156687722, 0.0233303402, 0.0139910039, -0.0120396083, -0.0238343906, 0.0155391591, -0.00446804846, -0.00927453, -0.0225526635, 0.00599100115, -0.0246120691, -0.00427002832, -0.00973537657, 0.00356975826, 0.0082376264, 0.00121152156, 0.00325292628, -0.019269133, 0.0280828178, -0.0133573404, 0.00309091015, -0.0184914563, 0.00445004646, -0.00340954214, -0.0147182764, 0.0086552687, -0.00482088374, 0.00140234071, 0.00108370872, -0.0251161195, 0.00120522093, 0.0119820023, 0.000679568213, -0.00976418, 0.00895769894, 0.0156399701, 0.0122988336, 0.0227398816, 0.000726372877, -0.0173681434, -8.64649264e-05, 0.000139626514, 0.0183906443, -0.0144878533, 0.0107074743, -0.0133141363, -0.0052601276, 0.0150927147, -0.0092889322, 0.00325112627, -0.0131845232, -0.0136957746, -0.00460846256, 0.00836003851, 0.0207956862, 0.0039747986, 0.0191395208, 0.0155967651, 0.00275427639, 0.0005171019, -0.00191359199, -0.00197299803, 0.0145094562, 0.024453653, -0.00757516, 0.023258334, 0.00713591604, 0.0169072971, 0.0140558099, 0.0188946966, -0.0247128792, -0.0211269204, 0.00980738364, 0.0207524821, -0.000982898637, -0.00308550964, 0.00831683446, 0.0179009959, -0.00820162334, -0.0246264711, 0.00136363681, 0.0145742623, 0.0218901969, 0.0084032435, -0.0113051347, 0.0343906507, -0.00694869738, -0.00760396291, -0.0168928951, -0.00949775334, -0.0206372701, 0.00294869579, 0.0285724662, 0.0126156658, 0.00976418, -0.0137821827, -0.00193879451, -0.000433843525, -0.00623582583, -0.0106786713, 0.0147902844, 0.00436723838, 0.0110963136, 0.0111035137, -0.00701350393, 0.00677948026, -0.00406480767, -0.0195427611, 0.00461926358, -0.0100234058, -0.0105346572, 0.0249577034, -0.00131143164, 0.0043708384, -0.0134293474, 0.012903695, -0.000595409714, 0.0166912749, -0.0237335805, -0.00939694326, -0.00208280887, -0.00576417847, -0.0111899227, -0.00110531086, -0.00542934472, 0.0108082844, -0.00155535608, 0.00832403544, 0.00580378249, -0.00757516, -0.0293933488, 0.00817282, 0.0195427611, -0.00378758, 0.0118307872, -0.000144802034, 0.010390643, 0.00364536582, -0.00790639315, 0.0269307029, 0.000100810117, -0.020608468, 0.0198451914, -0.0155823631, 0.0170801133, 0.0236903764, 0.016734479, 0.0173825435, -0.0092529282, 0.0132709313, -0.000168429397, -0.0296957791, 0.00484608626, -0.0265994687, 0.0135733616, 0.00753195584, -0.0254905578, -0.00977858156, 0.0027650774, 0.00960576348, -0.00705310749, -0.027089119, 0.00292889378, 0.00445724744, -0.0240936168, -0.0330657177, -0.00756075885, -0.0278523955, -0.0162880346, 0.000161116172, 0.000193406901, 0.00960576348, -0.0134365484, -0.00431323284, -0.00847525056, 0.00648065, -0.0108226864, -0.012882093, 0.00239784061, 0.0159712024, -0.0148046855, -0.00517731952, 0.0126876729, -0.0367812887, 0.0116723711, -0.0042304243, 0.0224806555, -0.00804320723, 0.0114203459, 0.0168208871, 0.00127542799, 0.0020594066, 0.0095409574, 0.0151359187, -0.00555175683, -0.00100000028, 0.0278091896, 0.00944014732, 0.0210117083, -0.0202916358, -0.0181458201, 0.0109667005, 0.019341141, 0.0312511362, 0.0070819105, -0.00344554568, -0.00334833586, -0.00407560915, -0.0132205263, -0.00531413313, -0.00495769735, -0.010246628, 0.00404320564, 0.0188946966, -0.0235751662, -0.0222502332, 0.00230963179, -0.000168654427, -0.00209901063, -0.00837444048, 0.00443924544, -0.00405760715, -0.00357875903, 0.024482457, -0.0213141385, 0.00130333076, 0.0118451882, -0.0247272812, 0.0250441134, 0.00301350234, -0.0214005467, -0.015495955, -0.00536813866, 0.00907291, 0.00743834628, 0.0151503198, 0.0122772316, -0.00974977855, 0.0213285405, 0.00920972414, -0.0123780416, -0.0294509549, 0.0248712953, 0.00402520411, -0.0147182764, -0.00158145872, 0.0184338503, -0.00379118044, 0.0344770588, -0.00344194542, -0.00626822887, 0.00578218, -0.00505850744, -0.00678668078, -0.0208100881, -0.0023870396, 0.0125004547, -0.0133645413, 0.0235175602, -0.00209901063, 0.0132277273, -0.00350135122, -0.0188514907, 0.00378037943, -0.0147758825, -0.00810801331, 0.0204644538, -0.00684068631, -0.0202484317, 0.0137605807, 0.0199460015, 0.00381998322, 0.0320576169, -0.0114635499, -0.0240360126, -0.00706390897, 0.00134923542, 0.0252745356, -0.00099189952, 0.0227974877, -0.00312691368, 0.011578762, -0.000576957886, 0.00267866882, -0.00587218907, 0.00136093656, -0.0187362805, 0.00479208073, -0.00731233368, 0.0164464507, -0.00105130544, 0.0140126059, 0.00574257597, 0.0113555398, -0.00285688671, 0.0170657132, -0.0202484317, -0.000651665381, 0.00168496906, -0.0301278234, 0.0195283592, -0.0155823631, -0.0188658927, 0.0312511362, -0.00126102648, 0.00291989301, -9.45798e-06, 0.00992259569, -0.00880648382, 0.0112259267, -0.0121692214, -0.0127956839, 0.0364356562, -0.0177425798, -0.00948335137, -0.00547974976, -0.0112619298, -0.00977138057, 0.032259237, 0.00251485244, -0.0110099046, 0.0243528429, -0.00524932658, 0.00659586163, 0.0136669716, -0.0236039683, -0.000110879875, -0.0152943349, 0.000632763491, 0.0137893837, 0.0106354672, 0.00151215168, 0.00585418753, -0.0211557224, 0.00510171195, -0.00612781476, 0.0282412339, -0.00128712913, 0.000798380119, 0.00781998504, -0.0301566254, 0.00839604251, 0.00442844443, 0.000250225101, 0.0133861434, 0.0134293474, 8.59023712e-05, -0.00359856104, -0.0209108982, -0.0143726422, -0.002252026, 0.00447524898, 0.00720072258, 0.00574617647, -0.00965616852, 0.0149775026, -0.00869127177, -0.0139622008, 0.0106210653, 0.00193879451, -0.00668947119, -0.0223942474, -0.0114923529, 0.00567056891, 0.0178865939, 0.000694869726, 0.0226678737, 0.00928173121, 0.0213573426, -0.0212421305, 0.00285688671, -0.00102520292, 0.0120900134, -0.0291629266, -0.000436768838, -0.00857606065, -0.0213717446, 0.0172817335, 0.00799280219, 0.0200900156, 0.0140054049, -0.0110531086, 0.0043708384, -0.00180828141, 0.0135877635, 0.0219045971, 0.0255481638, -0.00805040821, 0.00717912056, -0.00872007478, -0.0117731811, -0.0246840771, 0.019355543, -0.0260666162, 0.00455805752, 0.00424122578, 0.00252565346, -0.0034131424, 0.00609901175, 0.00617462, -0.00383438473, -0.00106750708, -0.01156436, -0.00926012918, -0.0145166563, 0.00938974228, -0.00835283846, 0.000525202719, -0.00669667171, 0.00267146807, 0.0149631016, 0.000423492485, 0.00283168419, 0.0406696796, 0.00563456537, -0.0225382615, -0.000409991131, -0.00216201693, 0.00453645503, -0.0304158516, -0.00523852557, -0.00812241528, 0.0225238595, -0.00308550964, 0.0179153979, -0.00856165867, 0.00821602438, 0.0320576169, -0.00754635734, -0.00880648382, -0.0108370874, -0.0160576105, 0.00267686858, 0.0135229565, -0.0119820023, -0.00640144246, -0.00340234139, 0.0137173766, 0.010333037, -0.0032151225, -0.0109955035, -0.00261386228, -0.00645904802, -0.0147758825, 0.00238883961, 0.00592979509, 0.0507506914, -0.0070999125, -0.0255481638, -0.00890009291, -0.0221350212, 0.00911611505, 0.0173105374, -0.0181746241, -0.0280396137, 0.00255985674, 0.0100738108, -0.0267434828, -0.00622502482, 0.0173393395, 0.0153663419, -0.0166480709, -0.000588209, 0.00106480683, -0.0110027036, 0.00273267413, -0.000112004986, 0.0122772316, -0.00910891406, -1.29739583e-05, -0.00345274643, 0.0298974, 0.00353555474, -0.00558056, 0.0022574265, 0.000531503349, 0.00268766959, 0.00293789478, -0.00012072461, 0.00468767, 0.0268442929, 0.0059261946, 0.00346174743, 0.0345346667, 0.0332961418, -0.0125508597, -0.0106426682, -0.00989379268, 0.00363276456, -0.0317119807, 0.0150927147, -0.00868407171, 0.00841764454, 0.0242952369, -0.0127092749, -0.0094113443, 0.0116723711, -0.00329253031, 0.0137173766, 0.00630063238, 0.043722786, 0.00615301728, 0.00452925451, 0.00613861578, -0.001445545, 0.00515571749, 0.0230279099, 0.00173627422, -0.0109594995, -0.00476327771, 0.00418001926, -0.0117659802, -0.0151215177, -0.00848965161, -0.0253177397, -0.0255049597, 0.0155103561, 0.0143582411, 0.00388118951, 0.00777678052, -0.00944014732, 0.00549055077, -0.0145022552, -0.0163024366, -0.00602340419, 0.00618542079, 0.010239427, -0.0097929826, 0.00179568015, 0.0020684076, -0.00493969582, -0.00599460164, -0.0217605829, 0.0143510401, -0.00470567215, 0.00324752578, -0.00165346591, -0.012918096, -0.00594059611, 0.00328352954, -0.0176417697, -0.000573357509, 0.00909451209, 0.0166192669, 0.0146246674, -0.0161296185, 0.00451125251, -0.00769037148, 0.00471647317, 0.0165904649, 0.0056561674, -0.0100378068, -0.00509451097, 0.0172097273, -0.027017111, -0.00251125195, 0.0171665233, 0.0169216972, 0.00291629252, -0.00995139871, 0.0214869566, 0.00405760715, 0.0127380779, 0.00663186563, 0.00356795802, -0.0130621102, 0.00011251129, -0.0276363734, 0.0256489739, -0.000340684172, 0.01813142, 0.0121836225, 0.00565256737, 0.0135805625, 0.0152799329, 0.00935373828, 0.00509451097, 0.00261746254, -0.0187362805, -0.00112511287, -0.0111323167, 0.00983618665, -0.00153285381, 0.0047524767, 0.00844644755, -0.0192547329, -0.0107074743, 0.00133303378, 0.00176147674, 0.0072259251, 0.0147614814, 0.021933401, 0.0042484263, -0.00681908429, 0.0208388902, 0.0191683229, -0.0107938834, 0.00151485205, 0.0159568, -0.0205076579, 0.001933394, -0.000830333331, -0.00779118156, -0.00910171308, 0.00763276592, 0.0155823631, 0.00545454724, -0.00467686914, 0.000581908389, 0.00883528683, 0.0286156721, 0.00745274778, 0.00765436795, -0.00115481589, -0.0184194483, 0.01026823, -0.00734113669, -0.0136957746, 0.00197299803, -0.0162592307, -0.00279388041, 0.00717912056, 0.00370477163, 0.014113416, 0.00716471905, 0.00148154865, 0.00598380063, 0.00781998504, 0.00650225254, 0.0144662512, 0.0241944268, 0.00726552913, -0.00774077652, 0.00170297083, -0.0195571631, 0.0189090967, -0.0161296185, 0.00155265583, 0.0231575239, -0.0048784893, -0.0198019873, 0.00195499626, 0.0112475287, 0.0246264711, -0.0214149486, 0.01804501, 0.00696669891, 0.00952655543, 0.0104626501, -0.0131773222, 0.0069775, 0.00182448304, 0.0100090047, -0.00181008165, 0.00920972414, -0.00510531245, 0.0115571599, -0.00150045054, -0.00328893, 0.00241404213, 0.0239063986, 0.00578578049, -0.0110027036, 0.00329433056, -0.000708371052, -0.00321692275, -0.0108802915, -0.0159424, -0.00265706657, 0.023071114, 0.015409546, 0.0122844325, -0.00887129, 0.0049829, -0.014185423, 0.021933401, -0.00699550193, -0.00162826339, -0.0184194483, -0.00856886, 0.0108514884, 0.0203060377, -0.0119604, 0.00955535844, -0.00189379, 0.00379118044, -0.00809361227, 0.016720077, 0.0152511299, 0.00362196332, -0.0149631016, 0.0197731834, 0.0188082866, -0.0197587833, -0.0146462694, 0.00559496135, 0.00860486366, 0.0111971237, -0.0136021646, -0.00294329529, -0.0145670613, 0.0198163874, 0.00612061424, -0.0143726422, -0.0118379882, 0.0105994632, 0.00563456537, 0.00241224212, 0.0102106249, -0.00122142257, 0.0145958643, -0.0149775026, 0.0113771418, 0.0162304286, -0.000560756249, -0.00323492452, 0.0161728226, -0.00814401731, -0.0159279983, 0.0140918139, -0.0145742623, -0.0225814655, -0.0130477091, 0.00796399917, 0.00931053422, -0.0164608508, 0.00804320723, -0.000684518658, 0.00691989437, -0.000854635728, 0.00365796709, -0.000495049695, 0.0220054071, -0.0221782252, 0.00115931628, 0.0154239479, 0.0073339357, 0.00145634613, 0.00834563747, -0.00207020761, -0.00841044355, -2.49071873e-05, -0.0284860581, 0.00162826339, 0.0221494231, 0.0370117128, -0.0036057618, -0.0124644507, 0.000512601458, 0.0125292568, -0.00690189237, 0.00401440263, 0.0117515791, 0.0379910134, -0.00242304313, 0.0126228668, -0.0186210684, -0.0186210684, -0.0195571631, 0.00734113669, -0.0140342079, -0.00457965955, 0.0139694018, 0.0110963136, 0.00454005552, 0.00293069403, -0.00843924657, 0.0186786745, -0.0041368152, -0.0215445627, -0.01545275, -0.0236759763, -0.000791179365, -0.00248064892, 0.0023060313, 0.00653105509, 0.0092529282, 0.0092889322, -0.00218721945, -0.0026480658, -0.00681908429, 0.0130261071, 0.00333213434, -0.000541854359, -0.0110819116, 0.0219766051, -0.0177425798, -0.0252169296, -0.00427362882, 0.00602340419, 0.00366516784, 0.0069378959, -0.00716831908, -0.011686773, 0.0159135964, -0.010347438, -0.00629343139, -0.00622142432, 0.00956255943, 0.00137713819, 0.00222862372, 0.00876327883, -0.0174689535, 0.0194851551, 0.00478488, -0.00875607878, -0.0100954128, -0.00834563747, 0.00269307033, 0.00117551791, 0.0140558099, -0.0362052321, 0.0137389787, 0.0100810118, 0.00525652757, 0.0327200815, 0.0169505011, -0.00379838119, 0.0131557202, -0.00344734592, -0.00907291, 0.0171521213, 0.0108802915, -0.00222142297, -0.00365616684, 0.0157407802, 0.0174689535, -0.00537533918, -0.0188802946, 0.0133213364, 0.00407200865, -0.0095409574, 0.00354635576, 0.00263546454, 0.0184482504, -0.016777683, 0.0160432104, -0.00671107322, -0.00430963235, -0.0176417697, -0.00255805673, -0.00517731952, -0.0134149464, -0.0134005444, -0.0016822688, -0.00946174935, 0.0150927147, 0.00557335932, -0.00962736644, 0.0306750778, 0.0122988336, -0.000192844353, 0.00033190829, 0.0210261103, -0.00993699674, -0.0347650871, -0.000924392778, -0.037472561, 0.00583978603, 0.00519892154, 0.0296381731, 0.00056345656, -0.00373357465, 0.0097569786, 0.0145382583, -0.016849691, 0.0179009959, -0.00359856104, 0.00125832623, -0.0181458201, -0.0175265577, 0.00738074072, -0.014178223, -0.0158559904, 0.00657786, 0.00914491713, 0.00491089281, -0.0165472608, -0.0184914563, -0.00106660707, -0.0328352936, 0.0138253868, 0.0209253, 0.0153375389, 0.00388118951, 0.00350675196, 0.00637263944, -0.0203492418, 0.0371269248, 0.0150063056, 0.0201476216, -0.0176561717, 0.00520612253, 0.0170369092, 0.0042448258, 0.0149919046, 0.0251593236, 0.00371197239, -0.00190099073, 0.00783438608, -0.00463366508, 0.00785598811, -0.00316291745, -7.72952553e-05, 0.0184914563, -0.0202916358, -0.0191683229, 0.00769757247, -0.00317011797, 0.000779928232, -0.000266651768, -0.0178721938, 0.00327812904, -0.024468055, 0.0212565325, -0.00147254777, 0.0106282663, 0.0174401496, -0.00308370939, -0.0117155751, 0.0243528429, 0.027045913, -0.0113051347, 0.00844644755, 0.0106570693, 0.00696309889, -0.0306174718, -0.00102340267, 0.0132853333, 0.00922412518, 0.0128244869, -0.0115067549, -0.003866788, 0.00740234274, -0.0144086462, 0.00121602206, 0.0150495097, 0.000180130577, 0.0213573426, -0.00311971293, 0.00953375641, 0.0268586949, 0.0138541898, 0.00248784968, -0.0153375389, 0.00688749086, 0.00152475294, 0.0179442, 0.0184914563, 0.00744554726, -6.28375565e-05, 0.00777678052, -0.0208100881, -0.0159424, 0.0422826409, 0.00271467236, -0.00205760635, 0.00655265758, 0.00252565346, 0.0210261103, 0.00625022734, -0.023071114, -0.00306930789, -0.0641152337, -0.00606300822, -0.0120684113, -0.00652385456, -0.0118811922, 0.00761116389, 0.0136885736, 0.00132943341, 0.0132421283, -0.000394239556, 0.00102520292, 0.004514853, 0.0107866824, 0.00184518518, -0.0288172923, 0.00403960515, 0.0121476185, 0.00482448423, 0.00729793217, -0.00803600624, 0.00432763435, 0.00586858904, -0.00472367415, -0.00090144045, 0.0135589605, 0.00186498708, 0.000700270291, 0.00486408826, -0.016849691, -0.0136309676, 0.019283535, 0.00999460276, -0.0129613, -0.0127092749, -0.00627182936, 0.0129613, 0.0111539187, -0.000437443901, -0.0124428486, 0.00581458351, 0.00964896847, 0.011549959, -0.00513771549, -0.0201476216, -0.0227542836, -0.000810981379, -0.02062287, -0.0173249375, 0.00903690699, -0.00139243971, -0.0187506806, -0.00456525804, -0.00560216233, 0.0278091896, 0.0184050463, 0.0119964033, -0.0094113443, -0.0220054071, 0.0358307958, 0.012874892, -0.00483888574, -0.0300126113, -0.0256201699, 0.0163600408, 0.0224518534, -0.00202520331, 0.000178105372, -0.0118019842, -0.00215841667, 0.0208100881, -0.0268586949, -0.00350855198, -0.000485148688, -0.00766876945, 0.0060522072, -0.000443744531, 0.00396399759, 0.0135373585, 0.00265886681, 0.0126444688, 0.0169793032, 0.0233879462, 0.0191971269, -0.00124572497, 0.000870837364, -0.019456353, -0.00202520331, 0.0114059448, 0.01415662, -0.0106282663, 0.0118523892, 0.00960576348, -0.00690549286, 0.00517731952, 0.00245364616, -0.00107920833, -0.0131701212, -0.01026823, 0.0126516698, 0.00313051417, 0.000812781567, 0.0122412285, 0.000820882386, -0.0136165665, 0.0187650826, -0.00466246763, 0.0293501448, 0.00782718509, 0.0130693112, 0.0149775026, 0.0124428486, -0.00424122578, 0.00180468103, -0.0041368152, 0.0151935248, 0.00164446502, 0.000883888686, 0.00345274643, -0.00198379904, -0.0204500519, -0.00645904802, 0.00368676987, -0.00317911897, -0.0385670699, -0.00429523084, -0.00981458463, -0.0138181867, 0.0177713837, 0.00682268478, 0.00250585144, -0.0123852426, 0.00376957818, 0.00259946077, 0.0212709345, 0.0151935248, -0.00481008273, 0.0125508597, 0.0236615743, -0.00242304313, 0.00175877649, 0.0211701244, -0.00099369965, 0.0198595934, 0.0186642725, -0.0184914563, -0.0171377193, 0.00669307169, -0.00503330491, -0.0140270079, -0.0201908257, -0.000965796877, 0.0253033396, -0.00229703053, -0.0081512183, 0.001135914, -0.0155679621, -0.00969217252, -0.0119676013, 0.00488569029, -0.0089649, -0.00396039756, -0.0178865939, -0.00715391804, -0.00475607719, 0.0149487, 0.0220630132, 0.0117227761, 0.0206804741, 0.0224374514, 0.000878488121, 0.00871287379, 0.0209685043, -0.00705670798, -0.00553735578, -0.015481553, -0.0105130551, -0.00247164792, -0.00293429452, 0.0424266569, -8.62961606e-05, 0.0107074743, -0.0123780416, 0.00223582424, -0.00337533862, -0.0159856044, -0.0222646333, -0.0132061252, 0.0240072086, 0.0131773222, 0.00373717491, 0.00392439356, 0.00600180216, 0.0111971237, -0.00322052324, 0.00561656337, 0.00522772456, -0.00949775334, -0.0158559904, -0.00369397062, 0.00557695935, 0.0224950574, 0.00380198145, 0.00866967, -0.00927453, -0.0106930733, -0.00987939164, -0.0166048668, 0.0137461796, -0.0056561674, 0.0111323167, -0.000267326832, -0.0123708416, -0.0203204397, 0.00481728325, -0.00470567215, 0.00505490741, -0.0113483388, 0.00608101, -0.00814401731, -0.00306930789, 0.033468958, 0.0228262898, -3.40627921e-05, -0.00837444048, 0.0171665233, -0.0134437485, -0.0138037847, 0.033728186, -0.0156399701, -0.00771917449, 0.00377677893, -0.00680108229, -0.00973537657, -0.00444644596, 0.00568497041, 0.0307038799, 0.0128316879, -0.000152002758, -0.00648425054, 0.0213285405, 0.0246840771, 0.0117515791, -0.00233303406, -0.0113051347, -0.00972817652, 0.00296129705, -0.000582358451, 0.0160720125, -0.00446444796, 0.00045814598, -0.00793519616, 0.00700270245, 0.00714671705, 0.0114347469, 0.016864093, -0.0253033396, -0.0268730968, -0.0018316838, 0.00454005552, 0.00648425054, -0.00391719304, 0.00108820922, 0.00480648223, -0.0162160266, 0.00171017158, -0.00621782383, -0.000571107317, -0.00408280967, -3.76069e-05, 0.0106642703, 0.00579658151, -0.0108946934, -0.0113267368, -0.00789919216, -0.00998740178, 0.0112403277, 0.00405760715, 0.0136525696, -0.00396759808, -0.0168352891, 0.00175607624, 0.00878488179, -0.0251593236, -0.00039716484, 0.00110531086, -0.000899640261, -0.0147758825, 0.00194959564, 0.00328352954, -0.0325472653, 0.0158415902, -0.00685508782, 0.00429163082, -0.00359496078, -0.0164752528, -0.0114347469, 0.00223222398, -0.000380288169, -0.0194131471, -0.0201188195, 0.0215733647, -0.00859766267, -0.00789919216, -0.00650225254, 0.0153951449, -0.0189811047, -0.0224662535, -0.0222934373, -0.00456885854, -0.0172817335, -0.0197587833, -0.0185346603, -0.032288041, 0.0127452789, 0.000526102784, 0.00108550896, -0.0108082844, -0.0109378975, 0.014120617, -0.00493609533, -0.00454005552, 0.00625382736, 0.00684068631, 0.000225810159, 0.0108586894, 0.00227182801, 0.0254329517, 0.000313456461, -0.0233159401, -0.00951215439, 0.00949055236, -0.00431323284, 0.00892889593, 0.00842484552, -0.000640414248, 0.00550855277, -0.00700990343, -0.00969937351, -0.0171089172, -0.0100306068, -0.0406120755, -0.015524758, 0.0041188132, 0.00591899408, -0.00210621138, -0.00358595978, 0.00568857091, -0.00577137899, 0.0212421305, -0.00972817652, 0.00473447517, -0.025864996, -0.00760396291, 0.0364356562, 0.00573177496, 0.0011215125, 0.00449325098, -0.0236327704, 0.0151215177, -0.0226534735, -0.0106426682, 0.0131197162, 0.015467152, -0.0357731879, 0.0108874924, 0.00702430494, 0.0072295256, 0.0130117051, -0.0147326784, -0.00146984751, -0.00287128799, -0.00372637389, -0.00633663591, 0.0631935373, 0.01415662, -0.0108298864, -0.034822695, 0.00998020172, -0.0140990149, -0.00540774269, 0.0332961418, -7.78578105e-05, 0.00460846256, 0.028385248, 0.00217101793, 0.00587578956, -0.000369037036, -0.0002900541, 0.0100090047, -0.00344554568, -0.00230063079, -0.00679748226, 0.0138541898, 0.00555535732, -0.0378469974, 0.00726912916, -0.0108370874, 0.00243924465, -0.00598380063, 0.0021854192, -0.00675787823, -0.00450405199, 0.0148910945, 0.00564176589, 0.016734479, 0.0290333126, 0.0083672395, -0.0145166563, -0.0117587801, -0.0212133285, 0.010347438, 0.00448245, -0.0152799329, 0.0112979338, 0.0137101756, -0.00875607878, 0.00191539223, 0.00163366389, -0.00994419772, -0.01156436, 0.0234743562, -0.0044068424, -0.0197443813, -0.00477767922, -0.00942574535, -0.00585058704, -0.015495955, 0.0172241274, -0.00037623776, 0.0225094594, -0.0117803821, -0.00381278247, 0.00532853464, 0.00393519504, -0.00186498708, 0.00837444048, 0.00821602438, 1.5765645e-05, -0.0291341227, 0.00110711111, 0.00136903732, 0.011621966, 0.00967777148, 0.00333033409, -0.0121692214, 0.00505130691, 0.00525292708, -0.00154455495, 0.0185634624, -0.00197659829, -0.00349235046, -0.00494329585, -0.0148910945, -0.012817286, -0.00265886681, -0.0120828124, -0.0196435712, -0.00180918153, -0.0146462694, -0.0255769659, -0.0190099068, -0.000595859776, 0.0119676013, -0.0149775026, 0.0196147673, 0.0226102695, -0.00179027964, 0.00255445624, 0.0011602164, -0.0214293506, -0.00693429587, 0.0188802946, 0.00453645503, 0.00929613318, 0.000914491771, 0.0102322269, -0.0218325909, -0.00319892098, 0.0244968571, -0.000457695918, 0.0079495972, 0.0239928067, 0.0073699397, 0.0054221442, -0.0119531993, -0.000437668903, 0.0113627398, -0.000236948777, 0.0191539209, -0.00581458351, 0.00214581541, 0.00393879507, -0.00102520292, 0.00916652, -0.0133069353, 0.00721512409, 0.0132781323, -0.0110171055, -0.00689469185, 0.0161728226, 0.00634023594, 0.0255769659, -0.0205220599, 0.0171953253, 0.0118667902, 0.00977858156, -0.00656345859, 0.0324608572, 0.0227398816, 0.0146678714, 0.00614581676, 0.0134437485, 0.0112043247, 0.00823042542, 0.0021224129, -0.00744554726, -0.0039856, -0.0171809234, -0.0209973063, 0.0282412339, -0.0177569818, 0.0370693207, -0.0134437485, -0.0134365484, -0.00920972414, -0.00803600624, -0.0248424932, -0.0094113443, 0.00327812904, -0.0120684113, -0.00285508647, 0.021947803, -0.00965616852, 0.000694419665, -0.0075895614, 0.0229559038, -0.00361836306, 0.0139910039, -0.000924392778, 0.0105922632, 0.0152799329, -0.00113681401, 0.0121836225, 0.0159135964, 0.0156687722, -0.0117875831, -0.00143294374, 0.00532493414, -0.0276507735, -0.00793519616, -0.00124842522, 0.00176687725, -0.0124860527, -0.00920252316, 0.00404680613, 0.0175841637, 0.0585562736, -0.0186930764, -0.0209541023, -8.38771666e-05, -0.00621062331, 0.00533213513, 0.00453645503, 0.00686228834, -0.00327632879, -0.0107578794, -0.00215661642, -0.0185634624, 0.014163821, 0.00262646354, -0.0112403277, 0.00360036129, -0.0125940638, 0.0121044144, -0.0123564396, 0.000216921762, 0.0118595902, -0.014228628, 0.0172529314, -0.00393879507, -0.0142718321, -0.00804320723, 0.0197155774, -0.0124212466]
31 Aug, 2021
jQWidgets jqxTooltip left Property 31 Aug, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported framework. The jqxTooltip is a jQuery widget that is used to display a popup message. The jqxTooltip widget can be used in combination with any HTML element. The left property is used to set or return the horizontal offset of jqxTooltip based on the position property. It accepts Number/String type value and its default value is 0. Syntax: Set the left property. $('Selector').jqxTooltip({ left: Number/String }); Return the left property. var left = $('Selector').jqxTooltip('left'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css”> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”.jqwidgets/jqxbuttons.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script> Example: The below example illustrates the jQWidgets jqxTooltip left property. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css"> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src=".jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxtooltip.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxTooltip left Property </h3> <br><br> <input type="button" id="jqxBtn" style="background: green;" value="GeeksforGeeks" /> </center> <script type="text/javascript"> $(document).ready(function() { $('#jqxBtn').jqxButton({ width: 150, height: 50 }); $("#jqxBtn").jqxTooltip({ theme: 'energyblue', content: 'A computer science portal', position: 'top', width: 200, height: 30, left: 200 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtooltip/jquery-tooltip-api.htm 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 jqxTooltip name Property/jQWidgets jqxTooltip left Property
https://www.geeksforgeeks.org/jqwidgets-jqxtooltip-left-property/?ref=next_article
PHP
jQWidgets jqxTooltip left Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTooltip name Property, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxTooltip left Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0279353671, 0.0148468548, 0.00195801421, 0.0312291645, 0.0511157773, -0.0120669389, 0.025830308, 0.0367023163, -0.0239357557, -0.0296937097, -0.0131008942, -0.02845544, 0.00968327, -0.0169395301, 0.00736770546, 0.0224498324, -0.0390302651, 0.0302880798, -0.0243072361, -0.013521906, -0.0210134387, 0.0037983926, -0.0477229171, 0.0154907554, -0.0229451396, 0.0255826544, 0.0110391751, 0.00752248894, -0.0125808213, 0.017855851, 0.0135342889, 0.00390674127, 0.0231927931, -0.00662474334, -0.0280591939, -0.0271676388, 0.0158746187, 0.0257560126, -0.036727082, -0.000765018573, -0.0057703373, -0.0104881451, 0.0016747599, 0.00570842391, 0.0177196413, 0.0116397366, 0.0226231888, -0.0374452807, 0.00495927082, 0.0138067082, -0.0171871856, 0.0293222293, 0.00424107397, 0.0440328754, -0.000197445988, -0.000357937359, 0.0164070744, 0.0262513198, -0.0173233952, 0.0236633364, 0.000869884563, -0.0340771861, -0.0271924045, -0.02441868, -0.0500756316, -0.0118316682, 0.00821592, 0.0153669287, -0.0388073772, 0.010290022, 0.00616348814, 0.0262017883, 0.0222269427, -0.0111691933, 0.0102281086, -0.0324426703, -0.0124322288, -0.00775156915, -0.034597259, 0.0400704108, 0.0132618695, -0.00884124637, -0.0525521711, 0.0120483655, 0.0253597666, 0.0114416126, 0.0191560332, -0.0290250443, 0.0263503809, 0.0201590322, -0.0283316132, -0.000192415522, -0.0347210839, 0.0103519354, -0.0143639296, -0.00734294, 0.0271428749, 0.00236819102, -0.060922876, 0.0347706154, 0.0267961584, -0.0102714477, -0.0271428749, -0.00141472323, 0.00952848606, 0.00229699048, 0.0317740031, -0.0127170309, 0.00340833771, -0.00416058674, 0.0300404262, -0.0195275154, -0.0016716643, 0.00939846784, -0.0376186371, 0.0459150448, -0.00596846035, -0.0505957045, -0.0175091345, -0.0280839596, 0.0046001724, 0.030461438, 0.022994671, 0.0322197787, 0.0206667241, 0.0123207849, -0.00673618773, 0.0147973243, 0.0411848538, -0.0167537909, 0.0107358, 0.0534437262, 0.0172367152, -0.00264680176, 0.0344981961, 0.050546173, 0.0243815333, 0.00633065449, -0.0173729248, 0.00993092358, -0.0464351177, -0.023613805, -0.00337738101, 0.0281087253, 0.00360955647, 0.0114849526, -0.0130265988, 0.00611705286, -0.0200971197, 0.00682286685, -0.0317492373, -0.0159241501, 0.00334642408, 0.0155526688, 0.0434632711, 0.00116319966, -0.0271428749, 0.031873066, -0.013918153, -0.0243443847, 0.0203571562, -0.0149211511, 0.0230442, 0.00900222175, -0.0227098688, -0.00333404145, 0.00589416409, -0.00991235, -0.0540380962, 0.0195894279, 0.00554744853, -0.0331361, -0.00718815625, 0.00623159297, -0.0396741666, -0.0144010782, 0.00781967398, -0.0351173319, -0.00376124447, -0.0520568639, -0.0286040325, 0.0130637465, -0.00887839496, 0.0111506199, -0.0366775505, -0.0316501781, 0.0114230393, -0.0249387547, -0.0184254553, 0.0176701099, -0.0672628134, 0.0223260056, 0.0226479545, 0.00733674876, 0.00131179206, -0.0341267176, -0.0155898165, 0.0280344281, -0.0218059309, -0.032467436, 0.0339533575, -0.0185864307, -0.0421259403, -0.0190198235, 0.0291736368, 0.00691573694, -0.0155155212, -0.060625691, 0.0313529931, 0.01372003, 0.0418287553, 0.00896507315, 0.0214220677, -0.0146487318, -0.0223755352, 0.0148592377, 0.00448563229, -0.00579510257, -0.0281830207, -0.0203200076, 0.0418287553, 0.0126551175, -0.0169147663, 0.00565889291, -0.0921768, 0.0160851255, 0.0108224778, 0.0097018443, -0.0289755128, -0.0417792238, -0.00206481502, -0.0316254124, -0.0320216566, 0.0222145598, 0.0414572731, 0.0661236048, 0.000768114231, 0.0256074201, -0.00181406527, 0.0256074201, 0.01482209, -0.0268456899, 0.00887839496, -0.00846976507, 0.0100733247, -0.00463422481, -0.0100114113, 0.0183263924, -0.0157755576, -0.0220412035, -0.019267479, 0.00490045268, -0.00217780704, -0.00223662495, 0.00421321299, -0.0131504256, 0.0195275154, 0.00809209328, 0.0256817155, 0.0234404467, 0.0196513422, 0.0315263495, -0.00449801516, -0.00855025277, 0.048540175, 0.0154040763, 0.0766736642, -0.0294460561, 0.00533075165, -0.0381139442, 0.0190817378, -0.0152926324, 0.0776147544, -0.00343619869, -0.0121783838, 0.0252607036, -0.0426212475, -0.0397732258, 0.0215211287, -0.0384854265, 0.00690954551, 0.0254835933, 0.0359345898, 0.0345724933, 0.038039647, 0.00551649183, 0.000463190314, 0.00430608308, -0.00315294461, 0.0241338778, 0.00178775203, -0.0156764966, 0.0395751037, 0.0226851031, 0.0264989734, -0.00652568182, -0.00781348255, -0.011293021, -0.0213601533, -0.00625326252, -0.0297927726, -0.00260191434, -0.0404914245, -0.0424974188, 0.0395998694, 0.00948514696, 0.0343991369, -0.0059777475, -0.0194656011, -0.00389435864, 0.061220061, 0.0134476097, -0.0136333508, -0.0374700427, 0.0176081974, -0.0163327791, 0.0350678, -0.0316501781, 0.00677333586, 0.0116706928, 0.000250362675, -0.00900222175, -0.0232918561, 0.0249882843, 0.0384111293, -0.0263999123, 0.00606442662, -0.00884124637, -0.0319968909, -0.0263503809, -0.0587930493, -0.018363541, -0.0185864307, 0.0162089523, -0.0109091569, -0.0227222517, 0.0295451172, -0.00986281876, -0.026424678, 0.0445777141, 0.0242205579, 0.0134104621, 0.00972041767, -0.00135435758, 0.0432156175, -0.0611209981, -0.00178310857, -0.0472523756, 0.0510662459, 0.0238862243, 0.000828866847, 0.0243691504, 0.0209639072, 0.0292974636, 0.0053524212, 0.00541433459, -0.033581879, -0.0359841213, -0.0255578887, -0.00633684592, -0.00734913116, 0.0261522587, -0.00768346433, 0.0199485272, 0.0052069244, -0.0208276976, -0.0271181092, 0.00714481669, -0.0343496054, 0.00260191434, -0.0457912162, -0.0545829348, -0.0251740254, 0.0334580503, 0.0155155212, 0.00335571123, -0.00714481669, -0.0129399197, -0.0085564442, 0.0229699053, -0.0203323904, 0.020480983, 0.0194903668, 0.0176205803, -0.0211248826, 0.0173357781, 0.00980090536, -0.0564651042, 0.0358355269, 0.022202177, -0.0391045623, 0.0501003973, -0.0113735078, -0.0399465859, -0.00841404311, -0.00934274588, -0.018660726, 0.00373338349, 0.0184006896, -0.0127665615, -0.0276134163, 0.00714481669, 0.0319225974, -0.019577045, 0.0038541148, -0.024208175, -0.0478962772, 0.00401818566, -0.000471316453, 0.0293469951, -0.0105067194, -0.0263008513, -0.00793730933, 0.0178187024, 0.0225860421, 0.0365537256, 0.0149706816, 0.0504718758, 0.0135838194, -0.0486640036, 0.0484906472, -0.0355878733, -0.0336314067, 0.00654425612, -0.00209422386, -0.000466672936, -0.0246911, 0.0146611147, 0.03813871, -0.00140698405, -0.0127789443, -0.00782586541, 0.0130018331, -0.0047580516, 0.0112558724, 0.00757821137, 0.0696898252, 0.0164689887, 0.00601489563, -0.0142401028, -0.0177939367, 0.0168404691, 0.0209762901, 0.00196420541, -0.0230813492, -0.0120978961, 0.000431846594, -0.00876695, 0.0153545458, 0.0265980363, 0.00835832115, -0.0304862019, -0.0323931389, 0.00468685105, 0.00372409658, 0.00949753, -0.0123703154, -0.0107110338, 0.0196513422, -0.0268952195, -0.0487630665, -0.0067299963, 0.0112868296, -0.00476114731, -0.0272171702, -0.0336561725, -0.00268085417, 0.00822830293, -0.0118688159, -0.0205181316, -0.0233661514, -0.0125436736, -0.00171036017, 0.0360584185, 0.00235580839, 0.00249820924, 0.00117867813, -0.00294089084, -0.0197132546, -0.010290022, 0.0352659225, 0.0212363265, 0.0246415697, -0.00118719123, 0.0492583737, 0.00395936752, 0.0339285918, -0.0337552354, 0.00143174944, 0.0256074201, 0.0287278593, -0.0212610923, -0.0127541786, 0.0141534237, -0.00833974686, 0.0228213128, -0.0217564013, -0.00141240156, 0.0237623975, 0.00209577172, 0.0154659897, 0.0432403833, -0.00406152476, 0.0753363371, 0.00930559728, 0.00226758164, -0.0504223481, -0.0044546756, -0.00551649183, -0.0183511581, 0.000567282375, -0.0448749, -0.00269633252, 0.00144335825, -0.00118022587, -0.0284306742, -0.0195275154, 0.000506529759, 0.0131256599, -0.0177196413, 0.0181901827, 0.0135962022, 0.0124446116, 0.00715100812, 0.0429432, 0.0431413203, -0.027340997, -0.0298175365, -0.01225268, 0.0245425068, -0.00936132, -0.0109772617, 0.0257312469, -0.00615420099, 0.00303840451, 0.0160727426, -0.0022753207, 0.00342072034, -0.0228708442, 0.033581879, -0.0267713927, -0.0170385931, -0.00827783346, 0.00869884528, -0.000759214163, 0.0209391434, 0.0097266091, 0.00153932418, -0.00772680342, 0.0106676947, 0.00701479847, 0.012011217, -0.00388507149, -0.00768965576, 0.00420392584, -0.0219421405, -0.0148468548, 0.00343000749, -0.0343743712, -0.00165928155, -0.0119431121, -0.0301394872, 0.0134847583, -0.00968946144, 0.000850536569, -0.0213353895, 0.0329132117, 0.0326655582, -0.0276629478, 0.0164194573, 0.0170138273, 0.00206945837, 0.00229853834, 0.00937370211, 0.0286535639, 0.00304459594, 0.0126489261, -0.0130389808, 0.0203323904, -0.0197875518, 0.00232485146, -0.0235766564, 0.0290002786, 0.00807351898, 0.00598393893, 0.0182025656, 0.0118935816, -0.0101290466, -0.0616163053, 0.023712866, 0.00969565287, 0.0289259832, -0.0186483432, 0.000289058604, -0.00499022752, 0.0229451396, -0.036008887, -0.00310650934, 0.0100671332, -0.0202085637, 0.0102590658, 0.0514624938, 0.0314025208, 0.0207410194, -0.0171748027, -0.0165309012, -0.018363541, 0.0147106452, -0.000561091, 0.0091570057, -0.0563165098, 0.00658140425, 0.0346963219, 0.00222424208, -0.00771442102, -0.0332103968, -0.0252235569, 0.0211991798, -0.00508309761, -0.000266808434, 0.0437109247, 0.0172614809, 0.012605587, 0.001122182, 0.0380644128, 0.0111568114, -0.0308576841, -0.00781348255, -0.0255331229, -0.0441814661, -0.0171252713, 0.00320092752, -0.0211125, 0.0119740693, 0.0245796554, 0.0439338125, -0.00827164203, 0.0436613932, -0.00734913116, 0.00566508435, 0.00332785, 0.0233909171, -0.0108596263, 0.0403675959, -0.00256321859, 0.0124879507, 0.0124879507, 0.0282573178, 0.00482925214, 0.0292231683, -0.010036177, 0.0189455282, 0.0222764742, -0.0118873902, 0.0109896446, 0.0218802281, 0.00645757699, 0.0100237941, 0.0224250667, 0.0362317748, 0.000369933114, -0.0119121559, 0.0180415921, -0.0110082189, -0.0040893862, -0.0104509974, 0.0197627861, 0.0293469951, -0.0079496922, -0.0123765068, 0.00790016167, -0.00657521281, 0.0245796554, -0.0116397366, 0.0130018331, -0.00850691367, 0.00378910569, -0.00209886744, 0.00188217009, 0.0236757193, 0.00497474894, 0.0186978746, 0.014834472, 0.00290838629, 0.00236354745, -0.00238366937, 0.0138067082, 0.0235395096, 0.00936132, 0.00320711872, -0.0225241277, -0.0165556669, 0.0363556035, 0.00736770546, 0.0124012725, -0.00682905782, 0.0177072585, -2.58537202e-05, -0.0107729472, -0.00326903234, -0.0214344505, -0.0101104733, -0.0142524857, 0.0308576841, -0.010389084, 0.00592202554, 0.00259881886, 0.0335075818, 0.0130637465, -0.00647615129, 0.014326782, 0.0279353671, -0.00530908164, 0.0449244305, 0.000448485836, 0.0103024049, 0.0152926324, -0.0298670679, -0.0230070539, 0.00338357221, 0.0119369207, 0.0403675959, -0.0113796992, -0.0410362631, -0.0145992013, -0.0216201916, 0.0122960191, -0.00889696833, 0.00368075701, 0.00490045268, -0.00351668638, 0.0351420976, -0.0138438568, -0.0030213783, 0.00802398846, 0.0333837532, -0.013212339, 0.00777014298, 0.0103395525, -0.038014885, 0.00377053162, -0.0214468334, -0.00547005702, 0.0194779839, -0.01170165, -0.0147849414, -0.00341762463, -0.00439585792, 0.0256321859, 0.0272914674, 0.0108224778, -0.035711702, -0.00864312332, -0.0234528296, -0.00328141497, 0.0030461438, 0.00369933108, -0.00520073343, 0.0399465859, -0.0130637465, -0.00633684592, 0.00298732589, -0.019069355, 0.000896197802, -0.0157012604, 0.0122217229, -0.0288269203, -0.00868646242, 0.0265732706, -0.00643900316, -0.0161222722, -0.00820972864, 0.00372100086, -0.00243165228, -0.0190322064, 0.00877933297, -0.015639348, -0.0180292092, -0.00539576076, 0.00508000189, 0.000560317072, 0.00477972161, 0.00983805396, -0.00528431637, 0.0369252041, -0.00340214628, -0.0105624413, 0.028554501, -0.0155526688, -0.000443842349, 0.0149459168, -0.0246787164, -0.0105562499, 0.0361079462, 0.00689097168, -0.0185245164, -0.001550933, 0.0100237941, 0.0193293914, -0.0211991798, 0.0357612334, 0.0237871632, -0.0062811235, 0.027836306, 0.0406647809, -0.0248768404, 0.00227841642, 0.0171376541, -0.00471161678, -0.0122836363, -0.0221402645, 0.00946657266, -0.0264494438, 0.000804101466, -0.00678571872, -0.0247034822, -0.0104695717, 0.00722530438, 0.012407464, -0.00343310297, 0.00056186493, 0.0238490757, 0.00662474334, -0.0108658178, -0.0378662907, 0.0563165098, 0.0108782006, 0.00770203816, 0.0303376112, 0.00112759951, -0.00464970293, 0.00393769797, -0.0349935032, -0.0268456899, -0.0145372879, 0.00122433924, -0.00242546108, 0.0034702511, -0.00378601, -0.0343743712, -0.0172119513, -0.000508464524, 0.00180168252, 0.00410796, 0.00668046577, 0.0225984249, -0.00393150654, 0.0150202131, 0.0179672949, 0.031179633, 0.0144877564, 0.00807351898, 0.0127541786, 0.0235766564, 0.0148097072, 0.018871231, -0.0357612334, 0.0112992125, 0.0186854918, -0.00892173406, -0.00708909472, 0.00871742, -0.00819734577, -0.00321640586, 0.00227686856, -0.0140048312, -0.0342257768, -0.0309072137, -0.0179177634, 0.00492521795, -0.00871122815, 0.0169023834, 0.0131008942, -0.0166051984, 0.0246787164, 0.0106243547, -0.0399465859, 0.0197380204, -0.00161129865, -0.0318978317, 0.0356374048, -0.00830879062, -0.0159489159, 0.0129894502, -0.0121040875, 0.0465341806, -0.0546324626, 0.000699235476, -0.015131657, -0.00247034826, 0.00145961053, 0.00189455284, -0.00530598592, -0.0290002786, -0.0184130725, 0.0294460561, -0.0243567675, -0.0482925214, 0.00492521795, 0.0157260261, 0.00250749639, -0.00419773487, 0.0377177, -0.0189826768, 0.0161346551, -0.0534437262, 0.0197627861, 0.0694917, -0.0108596263, 0.0309815109, 0.0470542535, -0.00774537772, 0.0247653965, -0.037024267, 0.0437356904, -0.0173976906, 0.00632446306, 0.0387083143, -0.017150037, -0.0143391648, 0.00268549775, 0.016741408, 0.0159117673, 0.0350678, -0.00160510722, -0.0240719654, -0.0212487094, 0.0234652124, -0.0169023834, -0.00037535053, 0.0200104397, -0.00302602188, 0.0360584185, 0.0133485487, -0.0147725586, -0.00432775309, 0.0165432841, -0.00731817447, -0.0149706816, -0.0266970973, 0.0378662907, 0.0187845528, -0.0447263047, 0.012915154, -0.00952848606, -0.0100052198, -0.0229575224, -0.00909509137, -0.00310960505, 0.00482615642, -0.00452897185, -0.00810447615, -0.00378910569, -0.0128532406, 0.03915409, -0.0203571562, -0.00973280054, 0.033581879, -0.0108720092, 0.0097018443, -0.0190074425, -0.0425469503, 0.0282325521, 0.0193046257, 0.0252235569, 0.0121845752, -0.00741723599, 0.0112806382, 0.0274400599, -0.0227346346, -0.0363803655, -0.0265485048, 0.0487135351, 0.0163451619, -0.00887839496, 0.0125746299, 0.0235518925, -0.0341019519, 0.0102095343, -0.0110577494, 0.041556336, 0.00434942264, -0.000499564456, 0.0257560126, 0.00538956933, 0.00301828259, -0.011348743, 0.0102095343, 0.00550720515, 0.00907032657, 0.0211248826, -0.0468066, 0.0138067082, -0.0135714374, 0.00352287758, -0.00474876491, -0.0136581156, -0.00720053911, -0.00382625381, -0.0392036214, -0.0373214521, 0.00632136734, 0.0322940759, 0.0135590546, -0.030263314, 0.021793548, -0.00626564538, 0.00906413514, -0.00595917366, -0.0101723867, -0.0161718037, 0.00975756627, 0.00283718575, 0.00764012476, 0.00994949788, 0.0430174917, 0.000274547638, 0.00667427434, 0.0264494438, 0.0218183137, 0.0325169638, -0.00917557906, 0.0308081526, -0.00256631407, -0.0124755688, 0.00529979495, -0.0129027711, -0.0194408353, 0.0155031383, -0.0319225974, -0.000295056467, -0.00714481669, 0.00565270148, 0.00256012287, 0.00853787, -0.0250130501, -0.0104571888, -0.0355135798, 0.0144134602, -0.00641423743, 0.0259789, 0.00438037934, -0.00306007429, 0.0158622358, -0.00180942181, -0.00651949039, -0.000274354155, -0.000350198185, 0.0116521185, 0.00252761832, 0.0252235569, 0.0198618472, -0.00166547287, -0.00796826649, 0.000382896251, -0.00909509137, 0.00153390667, -0.0097451834, 0.0261522587, 0.0289012175, -0.00342072034, -0.0223631524, -0.00829021633, 0.0136828814, -0.0211620312, -0.00167011644, -0.00512334146, -0.0104881451, -0.0154164592, -0.0014108537, -0.0150449779, 0.0137695605, 0.00682905782, 0.00205552788, 0.0101104733, 0.0162708648, -0.00546386559, -0.00702718133, 0.00391293271, 0.0057703373, 0.0219545234, -0.000302215223, -0.011447804, -0.00373647921, 0.000821901602, -0.0137447948, 0.0326903239, -0.00922511052, -0.00937989354, -0.0155898165, -0.0146982623, -0.00330927619, -0.01689, 0.00261584506, -0.00765250763, -0.0345477276, 0.0088288635, 0.0700860694, -0.0297184754, -0.0199609101, 0.00149908045, -0.00906413514, -0.033581879, 0.00536480406, 0.0197504032, 0.00901460461, 0.0177072585, -0.0114168478, 0.00524407253, 0.0255826544, 0.00238212151, -0.0330122747, -0.0072934092, 0.00317616202, -0.00672380487, 0.0223631524, -0.034300074, -0.00798064936, 0.0120855132, 0.00267156702, -0.01689, 0.0403675959, -0.0066990396, -0.0436613932, 0.00258334051, -0.00218090275, 0.0276877135, 0.00402747234, 0.005801294, 0.0317244716, 0.0177815538, -0.00785063, 0.0406895466, -0.0129646845, -0.010741991, -0.0109586874, -0.0114230393, -0.0258798394, -0.0063956636, 0.000351939496, -0.0122341057, -0.00122666103, -0.0208029337, -0.0389807336, 0.0158127062, -0.016741408, 0.0147601757, -0.0354640484, 0.0151564227, -0.0114106564, 0.0302880798, -0.00188836141, 0.00452897185, -0.00863693189, -0.0156641137, -0.00287123816, -0.0215211287, -0.019069355, -0.000710457331, -0.0205305126, -0.00257714908, -0.00124291331, 0.0171252713, 0.000378446217, 0.0427450724, -0.0249882843, 0.0389559679, 0.0301394872, 0.017360542, -0.00934893731, -0.00846357457, -0.0257807784, 0.0033433286, -0.0104509974, 0.0169271491, 0.00922511052, -0.000695752853, -0.022796547, -0.00472090347, 0.00100841594, 0.0286783297, -0.0152554838, -0.0115530575, -0.0163080133, -0.0122774448, 0.0146363489, -0.00021244066, -0.0238490757, -0.0114787612, -0.0116521185, -0.0144753745, 0.00413582101, 0.00731817447, 0.0170633588, 0.00700860703, -0.0203323904, 0.000300086947, -0.000621069688, 0.00614181813, -0.00596226892, 0.000721292163, 0.00635851547, 0.00223817257, 0.0198618472, 0.0104386145, -0.0115530575, 0.0194532182, 0.00124523509, -0.0179425292, 0.00828402489, 0.0101661952, -0.00520382868, 0.0192303304, -0.0107048424, 0.01220934, -0.000499177491, 0.000855954, -0.00930559728, -0.00710766856, -0.00934893731, 0.00332165882, -0.00975137483, -0.0104076574, -0.00870503671, 0.00975756627, 0.0256817155, -0.0150449779, -0.015428842, 0.0313282274, 0.000234497347, -0.000207023229, -0.0181778017, 0.0150202131, -0.0159241501, 0.0119864522, -0.00829640776, 0.0233909171, -0.0173110124, 0.0177196413, 0.0145001393, 0.00513572386, 0.00746676698, 0.0159612987, 0.0235766564, -0.00837070402, 0.00253845309, 0.00791254453, -0.0262513198, 0.00401509, 0.00228306, 0.0147106452, 0.0167042594, -0.031873066, -0.00195956207, 0.0153545458, -0.0128780063, 0.00678571872, 0.0147725586, 0.0189702939, 0.0119988341, -0.00489426125, 0.00113611261, -0.0105376765, -0.0276877135, -0.0237871632, -0.000503434043, -0.00980090536, 0.0340524204, -0.00835213, 0.0091570057, 0.00142787991, 0.0222517084, 0.024715865, -0.00521930726, 0.018871231, 0.0207410194, 0.00610776572, -0.0123888897, 0.0038231581, 0.0334828161, -0.00610776572, -0.0263503809, -0.0169395301, -0.00725006964, -0.0112992125, 0.0100299856, -0.0177196413, -0.0175462831, 0.00632136734, 0.0248768404, -0.0135590546, 0.0134476097, -0.000132630303, -0.00837689545, -0.0135095241, -0.00181561313, 0.0162089523, 0.00240224344, -0.0158374701, 0.0235766564, 0.0174100734, -0.0196389593, -0.0147106452, 0.00801160559, 0.00243784371, 0.0233537685, -0.0153545458, 0.00620063627, -0.0175586659, -0.0138314739, -0.0234899782, 0.00818496384, -0.00572080631, 0.0133237829, 0.00305697857, -0.000638095895, 0.00684763212, -0.00392222, 0.0246415697, -0.0155898165, 0.0143515468, -0.010290022, 0.00142865384, -0.0180415921, -0.0072934092, 0.00522549869, 0.011348743, -0.02845544, 0.0315015838, 0.035315454, 0.000842797395, 0.0265732706, -0.012661309, 0.00868027098, -0.019069355, -0.00667427434, 0.0102652563, -0.018066356, 0.0104881451, -0.00227686856, 0.0120483655, -0.0212115627, -0.000104865976, -0.0150449779, -0.0302385483, 0.00996807218, 0.00119028683, -0.0123269763, 0.0261522587, 0.00216852012, -0.0104386145, 0.00939227641, -0.000463964214, -0.0137571776, 0.00488497457, -0.0176453441, -0.0230813492, -0.00357550406, -0.0122588715, -0.000602108717, -0.0154412249, -0.0168652348, -0.025322618, -0.0109153483, 0.000914771808, -0.005801294, -0.00284647266, -0.0259789, 0.00192396168, 0.0382625386, -0.00790016167, 0.0385597236, -0.0237376317, 0.0195275154, 0.0270933434, -0.00406771619, -0.0140172141, -0.0110639408, 0.0173110124, -0.00601799134, -0.0173357781, -0.0206914879, 0.0107667558, 0.0196389593, 0.0383368321, -0.026028432, 0.00131720956, 0.028752625, 0.020877229, -0.00787539594, 0.0109648788, -0.00146502792, 0.0259541348, 0.00541743031, -0.0110329837, -0.0221774131, -0.0177567899, -0.00568365864, -0.00204933644, 0.0138810044, -0.00949753, 0.000724387821, 0.00478900829, 0.00821592, -0.0100980904, 0.0213601533, -0.00146425411, 0.00482306071, -0.00744200172, -0.0111258542, -0.00556602282, -0.010741991, -0.00749153225, -0.00548243942, -0.00618206197, 0.00553197041, -0.018561665, 0.0140915103, 0.00388507149, -0.017150037, -0.00725626107, 0.00730579207, -0.0162213352, -0.00316068367, 0.00117171276, -0.00861835759, -0.011305403, 0.0059158341, 0.00989996735, -0.0332103968, 0.0200104397, -0.00580438972, 0.0299166, 0.0142896334, -0.00314520532, 0.00260191434, -0.0088288635, -0.0171871856, 0.020580044, -0.00921272766, -0.0109524969, 0.00353835593, 0.0158498529, 0.00551649183, 0.0030213783, -0.0399961136, -0.0147106452, 0.0117697548, -0.00367147, 0.0298175365, 0.0151440399, -0.0154907554, 0.0359841213, 0.0295203514, 0.00188681367, 0.0208276976, 0.0124941422, -0.000841249537, -0.0110082189, 0.038435895, 0.00565270148, 0.00672380487, -0.0117759462, -0.0163823105, -0.00356931263, -0.00809828471, 0.010290022, -0.00481377402, 0.021075353, 0.022288857, 0.0200228225, 0.0204562172, 0.0204438344, -0.00255393144, -0.0351916291, 0.00336809386, 6.11395735e-05, -0.0091198571, -0.00418225629, 0.00775776058, -0.00123826985, 0.00551030086, -0.00409867289, -0.0142153371, -0.0102528743, -0.00593750365, 0.0187721699, 0.00492521795, 0.0108100958, 0.00828402489, -0.00357550406, -0.00806732755, 0.0131504256, -0.0245672725, 0.0130389808, -0.0298423022, -0.00595917366, 0.0237623975, 0.0157631747, -0.00346406, 0.0079311179, 0.0169890616, 0.0219545234, -0.000327367568, -0.0209762901, -0.0308081526, 0.0199609101, -0.0102033429, -0.00288052508, -0.0187969357, -0.0158003233, 0.0201590322, 0.0076153595, 0.00975756627, 0.00455373712, -0.00717577338, -0.0233661514, -0.0246539526, -0.0127913272, -0.0187597871, -0.00417606486, -0.00616348814, -0.0327893831, 0.00936751068, 0.00799303129, -0.00966469571, -0.00135977508, 0.0210258216, -0.0241338778, -0.0010827122, 0.00155712431, 0.00877314154, -0.0125127165, -0.0270933434, -0.00616039243, 0.0112125333, 0.00490974, -0.016852852, 0.00479829544, 0.012915154, -0.0131256599, 0.00640804647, -0.0024517742, 0.0148963863, 0.0119616864, 0.000151107612, -0.0105005279, 0.00703337276, 0.000193673142, -0.019663725, 0.0189579111, 0.0184749849, -0.00531217735, -0.010587207, -0.0181654189, 0.0171871856, 0.00480448687, 0.00408629049, 0.00380458403, -0.00118409551, 0.00942323357, 0.0113115944, 0.0290745758, 0.00534932548, -0.026028432, -0.0117573719, 0.0175215174, 0.0153793115, -0.0167661738, 0.005801294, -0.00801160559, -0.00393460225, -0.000538647349, -0.0252235569, 0.0152678667, -0.00409248192, 0.00272264564, 0.00669284817, 0.0322445445, 0.0149087682, 0.00791254453, 0.0199485272, 0.0218183137, 0.0105252936, 0.0113982735, -0.0121412352, 0.00198432733, 0.00885362923, 0.012661309, -0.00452587614, 0.0215582773, 0.0201961808, 0.0177939367, -0.00640804647, 0.0228336956, -0.032467436, -0.0213849191, -0.000195414454, 0.0191807989, -0.0108348606, 0.00376124447, 0.00962135661, 0.014524905, 0.00218709395, -0.0174224563, -0.00128625275, 0.0164194573, 0.00718196481, -0.00398413325, 0.00136983593, 0.0279601328, 0.021087734, -0.00403056806, -0.0147973243, -0.0104509974, -0.0161841866, 0.0279106013, 0.0128284749, 0.0236385707, 0.000431846594, -0.0391788557, 0.0156269651, 0.0113796992, -0.0226603374, -0.0173110124, 0.00887220353, 0.00870503671, -0.00813543238, 0.01422772, -0.00877314154, -0.00125065248, -0.00837070402, -0.0158622358, -0.00950372126, -0.00952848606, -0.00341452891, 0.0172243323, -0.0138314739, 0.00723149581, -0.0073553226, 3.54309632e-05, -0.000157202216, 0.0168157034, -0.00757202, -0.01165831, 0.000887684699, -0.0198618472, 0.00750391511, -0.00803637132, -0.01936654, 0.0151811875, -0.0137447948, -0.0122464886, -0.01936654, -0.0233661514, -0.0259541348, 0.0321950167, -0.000486020901, 0.0216449555, 0.00527193351, 0.00649472512, 0.0268704556, 0.0244310629, -0.0042658397, 0.0206543412, 0.00751629798, -0.0169766787, 0.00391912414, -0.00598084321, 0.0240967311, 0.0158993844, -0.00644519459, 0.0181158874, -0.000975911389, -0.00692812, -0.0133856963, 0.000974363531, -0.00706432946, -0.0194160715, 0.00327212806, 0.0220659673, -0.0100671332, 0.0197504032, -0.00816019811, 0.010698651, -0.0189331453, -0.0211001169, 0.00264834962, 0.00919415336, -0.0225365106, -0.0156021994, -0.00600870419, -0.0244682115, -0.00971422624, 0.0181406531, -0.0154536068, 0.0100299856, -0.0274400599, 0.0117202234, 0.000172680593, -0.00684144069, -0.014933534, -0.0264742095, 0.0125993956, 0.0183016285, -0.0227098688, 0.0198618472, 0.014326782, -0.038039647, 0.0100547513, 0.0202333294, 0.0104881451, -0.0208153147, 0.00366218295, 0.0115035269, 0.00136828818, -0.00568056293, 0.00228151213, 0.0352906883, -0.000896197802, -0.00474257348, 0.0315511152, 0.0231184978, 0.00954706, -0.0292726979, -0.0129770674, -6.8262043e-06, -0.00149908045, 0.0190817378, 0.005801294, 0.00420702156, -0.013113277, -0.0024037913, 0.000238560417, 0.00208338886, -0.00825926, -0.00540504791, -0.00428131782, 0.00883505493, -0.0250501987, -0.02904981, 0.00543290889, 0.0121288532, 0.0177196413, 0.00571461534, -0.000303376117, -0.00468685105, -0.0177815538, 0.0243691504, -0.0290250443, -0.00178775203, 0.0112249162, -0.0214344505, 0.0170014445, 0.0118626244, -0.0225488935, -0.00369933108, 0.0076586986, 0.0110206017, -0.000248234399, 0.0346467905, 0.0240348168, -0.0205057487, 0.00195491849, 0.0198123176, 0.00162832486, -0.0147106452, 0.00782586541, 0.00507071475, -0.0192179475, -0.00679190969, 0.0211001169, -0.00183883065, 0.0255331229, 0.0106057813, -0.00597465178, -0.000326013222, -0.01936654, 0.0195894279, -0.0146239661, -0.0179177634, 0.0157631747, -0.00140853191, 0.0217316356, -0.0279106013, -0.00549172657, -0.00782586541, 0.00358788669, -0.00213446748, -0.0105376765, -0.0232670903, 0.0160603598, 0.0154783726, -0.027539121, 0.0151688056, 0.0244805943, 0.0116645014, 0.00775776058, -0.00924368389, -0.0306100305, 0.00204624096, 0.00295946491, -0.00586011168, 0.00799303129, -0.0043927622, 0.00178156071, -0.00374576612, -0.0115902051, 0.00279229833, -0.0103643183, 0.00910747424, -0.0128656235, 0.00842642598, -0.0229451396, 0.00175215176, 0.00196420541, -0.00112140807, 0.015936533, 0.0235766564, -0.020988673, 0.00704575516, -0.00702718133, -0.00478281733, 0.00643900316, -0.0168776177, 0.00807351898, -0.0129399197, -0.00760297664, 0.00477353, -0.0097885225, -0.00812304951, -1.69415634e-05, 0.0119307293, 0.00173512555, 0.0097637577, -0.00200599711, -0.0239481386, 0.0156145822, -0.00443610176, -0.00512643717, -0.00592202554, 0.0165928155, -0.00076308375, 0.0127541786, -0.0166547298, 0.00715100812, 0.00645757699, 0.0146858804, 0.0169395301, 0.00358169549, -0.0101971515, 0.00413582101, -0.0155774346, -0.00500261, 0.0231061149, -0.00428131782, -0.000522008108, 0.0191807989, -0.033606641, 0.010091899, -0.0227098688, 0.0109153483, 0.00869884528, 0.00403675949, 0.0054793437, -0.0140667455, -0.00401818566, -0.0177320242, 0.0026282277, 0.00603037421, 0.0161965694, 0.0179177634, 0.00902079605, -0.0130389808, 0.0151811875, -0.00331237167, 0.000131469424, 0.00266847154, -0.00589726, 0.00453206757, 0.0309567451, -0.0102033429, -0.00680429256, 0.00693431078, -0.00182954362, 0.0254588276, -0.0205181316, -0.00244867848, 0.0116397366, 0.0206667241, -0.0197875518, 0.00984424539, 0.00279229833, 0.00916938763, -0.0192427132, 0.0157136433, 0.00874837581, 0.00801160559, -0.0256074201, -0.000300667394, -0.00838927832, -0.00659997808, 0.0107172253, 0.000261391018, 0.0125684384, -0.00262667984, -0.0119926436, 0.00814781524, -0.0133485487, -0.00164535106, 0.0131875733, 0.0082221115, -0.00380458403, 0.00414510816, -0.00713862525, -0.0178310852, -0.00477972161, 0.0372966863, -0.0185121335, -0.0069714589, -0.01422772, 0.0148716206, -0.000331430667, 0.0151811875, -0.00749153225, 0.00655663852, -0.00275050686, -0.00752868038, -0.0110701323, 0.00389126292, 0.00183109147, -0.00628421921, -0.0128160929, -0.0263751466, 0.0101785781, -0.00142942776, -0.0166051984, 0.0139676835, 0.0202952418, -0.00524716824, 0.0100795161, -0.000920189254, -0.0019719447, 0.0211991798, -0.0317492373, -0.0100176027, -0.0171748027, 0.0291984025, -0.0149954474, 0.020988673, -0.0186731089, 0.00695907651, 0.0125189079, -0.0191065036, -0.0181778017, -0.000798684, -0.0146858804, -3.16581099e-05, 0.00462493766, 0.00908890087, 0.0200971197, -0.000595143414, 0.0133485487, -0.0123641239, 5.49482247e-05, 0.00970803574, -0.0177567899, 0.0104262317, 0.0035012078, 0.00332475454, -0.000876075879, 0.0144134602, -0.0133237829, -0.00887839496, -0.0112868296, -0.0200352054, -0.00864312332, 0.00841404311, -0.0104571888, -0.00518215913, 0.00435561407, 0.0066680829, -0.0201837979, -0.00459398096, 0.0171005055, 0.0194160715, 0.0117449891, 0.00486640027, 0.0105376765, -0.0147477938, 0.00497784466, 0.002597271, 0.0207410194, -0.0179425292, 0.0230689663, -0.018561665, 0.0129646845, -0.0061232443, 0.00728102634, 0.00268240203, 0.00213601533, -0.00175989093, 0.00249201804, 0.014524905, -0.0175958145, 0.036429897, 0.00473947776, -0.0163451619, 0.0297184754, 0.0384854265, -0.00318235345, -0.00709528616, -0.00900222175, 0.0228708442, 0.00017742085, -0.00725006964, -0.0283563789, 0.017150037, 0.012915154, -0.0192055646, -0.0165804327, -0.0248396918, -0.00934274588, -0.0169271491, 0.000441907527, 0.0492088422, 0.0156145822, 0.00719434768, 0.00295946491, -0.00959659088, -0.0118873902, 0.00602418277, -0.0185740478, -0.00348572945, -0.00928083248, 0.00704575516, -0.0134228449, -0.0279106013, -0.000402824662, -0.0167290252, 0.00195027492, 0.00143639301, -0.00240688701, -0.00224591186, 0.0110701323, -0.0056867539, -0.00079945795, -0.0033495198, 0.00370242679, 0.010587207, 0.00908270944, 0.000211086313, -0.023502361, 0.00531217735, 0.0104881451, -0.00151378487, 0.013521906, -0.00681048399, 0.00590035552, 0.00202921475, 0.00587868597, 0.0156021994, -0.0170881227, -0.0061356267, 0.00512643717, -0.0100423684, 0.00328451069, -0.0106181633, 0.00804875419, 0.00515120244, -0.00300744781, 0.0147477938, 0.00066557, -0.0052069244, 0.0162956305, 0.00308948313, -0.00294863, -0.0176824927, 0.0075844028, -0.0219049938, 0.00533075165, 0.00964612141, 0.00468994677, 0.00218245061, -0.0105129108, 0.00703337276, 0.00230937311, 0.00871122815, -0.00223972043, -0.00180942181, -0.0112187248, 0.000450033695, -0.00530908164, 0.0328389145, -0.00713862525, 0.00728721777, 0.0143515468, 0.0151068913, 0.0111444285, 0.0217687842, 0.00462493766, 0.00330618047, -0.0132618695, -0.0136828814, 0.0097637577, -0.0133609315, 0.00967707857, -0.00812304951, 0.0113673173, 0.014834472, -0.00158808101, -0.0144134602, 0.0163080133, -0.000989841879, -0.00840785168, 0.0169766787, 0.00733674876, 0.0196761079, -0.0124569945, 0.0197256375, 0.0377177, 0.00778871728, 0.0177815538, -0.000681822305, -0.0114292307, -0.00574866775, 0.00676095299, 0.00290374272, 0.00482925214, 0.0122836363, 0.00217471132, -0.0217316356, 0.0082035372, -0.00736770546, 0.0149583, 0.0237623975, 0.00318235345, -0.00779490825, -0.014933534, -0.0304862019, 0.0223631524, 0.0121350437, -0.00765250763, 0.00283409, -0.0311548691, 0.0265980363, -0.00566818, -0.00679810112, 0.0186111946, 0.00365908723, 0.000953467737, -0.0179301463, 0.0066990396, -3.20934378e-05, 0.00577343302, 0.0203819219, -0.0031730663, -0.0149459168, -0.0105129108, -0.0363803655, 0.014425843, -0.00502118422, -0.00726245251, 0.0163946915, -0.0180911217, -0.00208958029, 0.00235580839, -0.00865550619, 0.0201837979, -0.00628421921, 0.0122217229, 0.00776395155, 0.0245672725, -0.00627493206, -0.0144506088, 0.0022753207, 0.00287897722, 0.00442681462, 0.0137447948, 0.012308402, 0.00571151963, -0.00520073343, 0.00125452213, 0.00856263563, 0.0253597666, 0.00389435864, -0.0091198571, -0.0201714151, -0.0143020162, -0.0127046481, 0.00559697952, -0.0105748242, -0.00352287758, -0.0368756764, 0.0120050255, -0.0031188922, 0.00480448687, -0.0183759239, 0.0290250443, -0.0153421629, 0.0174224563, 0.0276877135, -0.0018713352, -0.0168404691, -0.00277062878, 0.0160851255, 0.01422772, 0.00612943573, 0.00864312332, -0.00480448687, -0.000635774166, -0.0059282165, 0.0162832476, -0.00206636265, -0.0147354109, -0.0230194349, 0.0133980792, 0.0165556669, -0.0287773907, -0.021583043, 0.00274431542, 0.0139800664, -0.00796826649, -0.00100764201, -0.00495307939, -0.00334642408, 0.023502361, -0.0108658178, -0.0107358, -0.012407464, 0.000373802701, 0.0169147663, -0.00110128627, 0.0155031383, 0.00658140425, 0.000472477317, -0.000855180086, -3.94698509e-05, 0.0110577494, 0.00473947776, 0.00577652873, 0.0151811875, -0.0157755576, -0.00199516234, 0.000657830853, -0.00820972864, -0.033581879, -0.000367030909, 0.00171345589, 0.0108534349, -0.0268209241, 0.00309567456, -0.00848833937, 0.0217192527, -0.0067299963, 0.00996807218, 0.010940114, 0.00972041767, -0.0316501781, -0.0110267922, 0.00198123162, 0.00328141497, 0.00251833117, 0.0271181092, 0.00605204375, -0.0076153595, -1.51518761e-05, -0.0175462831, 0.00671142247, 0.00225519901, 0.0237995461, 0.000715487753, -0.00485401787, 0.0130885122, 0.0038541148, -0.0183387753, 0.00595917366, 0.0101290466, 0.043686159, -0.00823449437, -0.00884124637, -0.00496236607, 0.0107729472, 0.00702718133, 0.0151192741, -0.00548553513, -0.0180539731, 0.00112682558, -0.00403985521, 0.00209886744, 0.00933655445, 0.00113069511, -0.000707361614, 0.00288671651, -0.011645928, 0.0112001505, -0.0187721699, 0.00220721588, 0.00432775309, -0.0233166199, 0.00695907651, 0.000675244, 0.0150078302, -0.00342381606, -0.0165556669, 0.00196575327, 0.00991235, -0.0154659897, -0.00596536463, -0.00218554633, 0.0241834093, -0.00985043589, -0.0234775953, 0.00231401669, -0.00515120244, 0.00051310804, 0.0234033, -0.0151811875, 0.0122712534, 0.00741104502, -0.00649472512, -0.000604430446, 0.000451968488, 0.0118378596, 0.0088288635, -0.0125374822, 0.0289259832, -0.0199361444, 0.00327212806, 0.00513881957, -0.000908580492, 0.00171345589, 0.00040088984, 0.00382625381, 0.00177691714, 0.00452587614, -0.0189207625, 0.00206017145, 0.0106553119, -0.00623468868, 0.0190445893, 0.00611086143, -0.00717577338, 0.00553197041, 0.00292386464, -0.00373957492, 0.00618515769, -0.00707671186, 0.00372719206, -0.015738409, 0.0164070744, 0.0152431009, 0.00130869646, 0.00127696572, 0.0147106452, 0.0119307293, -0.00608609617, -0.00670523103, -0.00577343302, 0.0203571562, -0.00336190243, -0.00203695381, -0.00781348255, 0.00601489563, -0.0333094597, -0.00705813803, -0.0109029654, -0.000965076557, -0.024827309, 0.0106738862, -0.0235395096, 0.0178806167, 0.00455373712, -0.0136457337, 0.00312353554, 0.00490974, -0.0157260261, -0.00291767321, 0.0141286589, -0.000186224177, -0.0291736368, 0.00968327, -0.0278858356, 0.000390054978, 0.0195646621, 0.0370985642, 0.00523478584, 0.0131751904, 0.0115406746, 0.0122588715, -0.0137324119, 0.032170251, -0.01422772, 0.00702718133, 0.00757821137, -0.0176329613, 0.00739866216, -0.0150202131, -0.0182273313, -0.00182954362, 0.00558769237, 0.0104571888, -0.0243443847, 0.00616348814, 0.00940465927, -0.0128780063, -0.00681048399, 0.017855851, -0.00173048209, -0.000768501195, 0.0254340619, -0.0118811987, -0.00649472512, 0.0189083796, 0.00939846784, 0.0198989958, -0.0346715562, -0.00555054424, 0.0123269763, -0.018363541, 0.0207905509, 0.0205057487, -0.00275824592, 0.00819115527, 0.0106676947, 0.00998664647, 0.0134971412, 0.00971422624, -0.0106738862, 0.00881029, -0.00548243942, -0.00810447615, 0.0198989958, 0.00827783346, -0.000178871938, 0.0130761294, 0.00127000047, -0.00412653433, -0.0323931389, 0.00845119171, -0.0202333294, -0.0016716643, -0.00160665507, 0.0123950811, -0.00982567109, 0.00928083248, 0.0121969581, -0.0172614809, 0.00589726, 0.00800541416, 0.0166794937, -0.0274895895, -0.001626777, 0.00821592, -0.00910128281, 0.0198247, -0.00511405431, 0.00721911294, 0.00613253145, -0.0209391434, -0.0157631747, 0.00610157428, -0.0217564013, 0.0122588715, -0.0034702511, 0.0136085851, 0.0379653536, 0.0299908947, 0.0211248826, 0.000174131696, 0.0113425516, 0.0184130725, 0.0198494643, -0.00530289067, -0.00477043446, -0.00206017145, 0.00331237167, 0.00148747163, -0.0031978318, 0.0360584185, 0.00152152404, 0.00621921, -0.00393150654, -0.00710766856, 0.0198494643, 0.00896507315, -0.00809828471, -0.000682596234, -0.0177939367, -0.00894030835, -0.00656283, 0.00491283555, 0.00353835593, -0.0119307293, 0.0144506088, 0.0154536068, 0.0122279143, -0.0209639072, 0.00879171584, 0.0105191022, 0.00542362174, -0.00530598592, -0.0352163948, 0.00355383428, 0.0110391751, 0.00434632692, -0.0104819536, 0.00689097168, 0.0114849526, 0.0154783726, 0.000164941404, 0.00739866216, 0.00200599711, 0.00205243216, -0.00663093477, -0.0076586986, -0.0143886954, -0.00915081427, 0.00713243429, 0.0208524633, -0.00463422481, -0.0370985642, 0.00766489, -0.00875456724, 0.00914462283, -0.0189455282, -0.0151440399, 0.00321950158, -0.00119957386, 0.0198866129, -0.0164318401, -0.0210505873, -0.0192922428, 0.00620063627, -0.0173976906, -0.0067176139, -0.00965231284, 0.0132371048, -0.0312291645, -0.00356621714, -0.00990615878, 0.0203571562, -0.0066557, 0.0119678779, -0.0164689887, -0.0197875518, 0.0348449126, -0.0116521185, 0.000154977213, -0.0194903668, -0.000331817602, 0.000701557263, 0.0127417967, -0.0167290252, 0.00918796193, -0.00917557906, 0.00396865467, 0.0310805719, -0.0270685777, -0.0226851031, 0.00604585232, 0.0102590658, 0.016642347, 0.00236045173, -0.00742961885, 0.00673618773, 0.00773918629, -1.39426274e-05, 0.00697765034, 0.00401509, 0.015540286, 0.00398722896, 0.0113982735, -0.00953467749, -0.00550101371, 0.0056434148, 0.0174100734, 0.00433394453, 0.0144382259, -0.00234033, -0.00605823519, -0.0147477938, 0.0105129108, 0.00703956373, -0.00263287127, -0.0167785566, 0.0105067194, 0.0142772505, -0.0112868296, 0.0243320018, 0.0125870127, 0.00534313405, 0.0331113338, -0.000250362675, 0.0398722887, 0.00276134163, 0.00291457749, 0.00707052043, 0.0232175589, 0.00872361101, 0.0241586436, 0.000968946144, 0.0156021994, -0.0108905826, 0.00122666103, 0.00970803574, -0.0220783502, -0.00299506518, -0.0145620527, -0.00728102634, -0.0118502425, -0.0350925662, -0.00477353, -0.00128470489, -0.00942323357, -0.00980709679, -0.0182768628, -0.000131953129, 0.00143252336, 0.0149087682, 0.018561665, 0.0189826768, 0.0121598095, 0.0106305461, 0.012617969, 0.018660726, -0.0203076247, -0.00952848606, 0.0110887066, -0.0253473837, 0.0107358, 0.0253597666, -0.0257064812, -0.00479829544, 0.012308402, -0.0297184754, 0.00392222, -0.0140048312, -0.0045692157, 0.00258953171, 0.00701479847, -0.00106181635, -0.0109710703, -0.00712005142, -0.00534932548, 0.00440204935, -0.00436180551, -0.00694669364, 0.00807351898, 0.00824687723, 0.00859359279, -0.0100176027, 0.0175091345, 0.0139553007, 0.0228089299, 0.027241936, 0.0294212904, -0.0118069025, 7.06200735e-05, 0.0119678779, 7.49733663e-05, -0.0216697212, 0.00455373712, -0.0263751466, -0.00117093883, -0.0310310423, 0.0255826544, -0.00950372126, 0.00315294461, -0.00585701643, 0.0151564227, -0.0183511581, -0.00689716265, -0.0320216566, -0.0124260373, -0.00780109968, 0.0195646621, -0.00473019062, 0.00580438972, 0.0115654403, 0.00515120244, 0.0254340619, -0.0106243547, -0.00216852012, -0.00140156667, -0.029668944, 0.0100733247, 0.00349192088, 0.0244682115, -0.00391293271, 0.000745670579, -0.00786920451, -0.00474876491, 0.009429425, -0.0120978961, -0.00560626667, -0.013918153, 0.015540286, 0.0145992013, -0.0131628085, 0.00162213342, 0.0251864083, -0.0102962134, 0.0121102789, -0.00684763212, 0.0130885122, 0.0117078414, -0.00544529129, 0.0368261449, 0.0227222517, 0.0126241604, 0.0117511805, 0.0210134387, -0.0181035046, 0.00995568931, 0.00606752187, -0.0158870015, -0.0163575448, -0.0148963863, -0.0295203514, -0.00199980568, -0.00022404945, -0.00400889851, 0.0330865681, 0.0088288635, 0.00396865467, 0.00283718575, 0.013014216, 0.0112001505, 0.00165154238, 0.0101661952, 0.00146734971, -0.00174905616, -0.00208493671, -0.00282325526, 9.2725124e-05, 0.00511405431, 0.0187721699, 0.000428363972, -0.00996188074, 0.00120808696, 0.011645928, 0.00712624285, -0.00866788905, -0.0187474042, 0.00702718133, -0.0026282277, -0.00676095299, -0.00633065449, 0.000602882588, 0.00218090275, -0.00593440793, 0.0151192741, -0.0297680069, 0.00507690618, 0.00181870884, 0.00146038446, 0.000359098252, -0.000216116779, -0.0114973355, 0.00946038123, -0.00466208579, -0.0149583, 0.0039438894, 0.0118130939, 0.0224498324, -0.0113982735, -0.00187907449, 0.000100996382, 0.0177939367, -0.00236354745, 0.0205924269, 0.00754725467, 0.0185369, 0.000927154499, 0.0102281086, 0.0172243323, -0.0208648462, -0.0027009761, -0.0333837532, 0.00198897091, -0.00806732755, -0.03378, -0.0196018107, -0.0150573608, -0.0149087682, -0.0195151325, -0.0126117785, -0.00809828471, 0.00890935119, 0.0124260373, -0.0135838194, 0.0192922428, 0.00150062819, -0.011602588, -0.0179796778, 0.00346096419, -0.0302880798, -0.0263008513, -0.0029981609, -0.00843880884, 0.00243010442, -0.000564186659, 0.0140667455, -0.0239852872, -0.0075967852, 0.0276877135, -0.0171128884, 0.00495617511, 0.0207410194, 0.0327398553, 0.00694050221, 0.0184873678, -0.00223972043, 0.013521906, 0.0138562396, -0.00197504042, -0.0236261878, -0.00150681962, -0.00708909472, 0.0333094597, -0.000158363095, -0.00654425612, -0.0255083572, -0.0014108537, -0.00663712621, -0.0112372981, -0.0224003009, -0.0282325521, -0.00125684391, -0.000139111871, -0.0156517308, -0.0160479769, -0.00612943573, -0.000316919672, -0.00590035552, 0.0316254124, 0.00280313333, 0.00375195756, -0.0329875089, 0.00495617511, 0.0234033, 0.0110577494, -0.00908270944, -0.00332165882, -0.000617587066, 0.014524905, -0.0118935816, -0.0118750073, 0.000678726647, 0.00890935119, -0.0331113338, -0.00801779702, 0.01885885, 0.00801779702, 0.0270685777, -0.00754725467, 0.00448253658, -0.0088660121, -0.00425655255, 0.00798064936, 0.0102281086, 0.0249263719, -0.0069900332, -0.0125189079, 0.0192550961, -0.0128284749, -0.0119059645, 0.0316006467, -0.00097358966, 0.0270190481, 0.00646376843, 0.00169333396, -0.00368385273, 0.0115963966, 0.0241957922, -0.0162956305, -0.000267388881, 0.0124631859, 0.000903937, 0.00814162381, 0.00100918987, -0.0244558286, -0.000832736434, -0.018660726, -0.0109524969, 0.015540286, 0.00883505493, -0.0110639408, -0.0107358, 0.0113858907, 0.00505523663, 0.0161965694, 0.01936654, 0.0120421741, -0.0242700875, -0.0128903892, -0.015540286, 0.0267961584, 0.00741104502, -0.0376434028, 0.0112125333, 0.00973899197, -0.014524905, -0.00778252585, 0.00699622463, -0.0070519466, 0.00133733137, 0.00686001498, 0.0119183473, -0.0277372431, 0.00689097168, -0.0101723867, -0.0168404691, -0.0109091569, 0.0250254329, 0.0206048097, 0.0176205803, -0.00219018967, 0.00201528403, 0.0144877564, 0.00892173406, 0.0100547513, 0.00102466822, 0.00409867289, 0.00401199423, -0.0360336527, 0.00262203626, 0.000894649944, 0.000350585149, -0.00115081703, 0.00159272458, -0.0125993956, 0.00775156915, -0.00140853191, 0.0125312908, -0.00354145165, -0.00190074416, 0.0139800664, 0.00602108706, -0.0140667455, -0.0238862243, -0.0210010558, 0.00599941704, -0.025335, 0.00607990474, -0.0286040325, -0.00777014298, -0.00376434019, -0.0144629916, 0.00842023455, -0.00903936941, 0.0345724933, 0.0154040763, -0.0283068474, 0.00526574254, -0.00269323681, 0.00337738101, -0.00197039684, -0.0053679, -0.0251987912, 0.0171624199, -0.0180292092, 0.0279353671, -0.0111506199, -0.0040893862, 0.00505214091, -0.016233718, 0.00389126292, 0.0236014221, 0.00991235, -0.018450221, -0.0304862019, 0.00178465631, -0.00314056175, 0.000976685318, 0.0228956081, 0.019069355, 0.00462493766, 0.00670523103, 0.00431846594, 0.0134847583, -0.0210258216, 0.00587559026, -0.00682286685, 0.00163142045, -0.015032596, 0.00483544357, 0.00450420659, 0.0178434681, 0.0085750185, 0.00396865467, -0.00068143534, -0.00497784466, -0.00513262814, 0.0308329184, 0.0149583, 0.00971422624, -0.00945419, 0.0106243547, 0.0223383866, 7.36190123e-05, -0.00330308476, 0.00682286685, -0.0191065036, 0.00707671186, -0.00104401622, 0.0362317748, 0.0015261675, 0.0457169227, -0.0207410194, 0.00416368246, -0.0132494867, -0.0161965694, -0.00898364745, 0.0122774448, 0.0189331453, 0.013521906, -0.00233259075, 0.021991672, -0.0127170309, 0.00405533379, -0.00945419, 0.0224126838, -0.0182025656, -0.00483853929, -0.00629660208, 0.0124941422, 0.00613872241, 0.00723149581, 0.0161718037, 0.0176081974, 0.0139429178, -0.0219173748, 0.00377981854, 0.00146657578, -0.0299166, -0.00506761903, 0.00656902138, 0.0148468548, -0.0128903892, 0.00711386, -0.00828402489, 0.00786920451, 0.0150821265, -0.00795588363, -0.0111010885, -0.00292696035, -0.0101971515, 0.0222517084, -0.00272883708, -0.00346406, -0.0148097072, -0.00610157428, -0.0156145822, 0.00241617393, -0.00566198863, 0.00899603, -0.0135962022, -0.00035890477, -0.0180911217, 0.0166051984, -0.0214096848, 0.0202952418, 0.00403985521, -0.0179796778, -0.00290838629, 0.00254928786, 0.00243010442, -0.0108100958, -0.00746676698, -0.000317887083]
17 Nov, 2021
jQWidgets jqxToolBar height Property 17 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxToolBar is used to illustrate a jQuery widget that shows a toolbar where various tools can be spontaneously appended. Moreover, by default the jqxToolBar favor some widgets namely jqxButton, jqxToggleButton, jqxDropDownList, jqxComboBox as well as jqxInput. However, the custom tools can also be appended. The height property is used to set or return the height of the displayed jqxToolBar. It is of type number or string and its by default value is 35. Syntax: Set the height property. $('#Selector').jqxToolBar({ height: 50}); Return the height property. var height = $('#Selector').jqxToolBar('height'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxdropdownlist.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcombobox.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxinput.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxtoolbar.js”></script> The below example illustrates the jqxToolBar height property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="jqwidgets/jqxlistbox.js"></script> <script type="text/javascript" src="jqwidgets/jqxdropdownlist.js"></script> <script type="text/javascript" src="jqwidgets/jqxcombobox.js"></script> <script type="text/javascript" src="jqwidgets/jqxinput.js"></script> <script type="text/javascript" src="jqwidgets/jqxtoolbar.js"></script> </head> <body> <center> <h1 style="color: green"> GeeksforGeeks </h1> <h3>jQWidgets jqxToolBar height property </h3> <div id="jqxtb"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxtb").jqxToolBar({ width: "470px", theme: "energyblue", height: 70, tools: "button button | dropdownlist combobox | input", initTools: function (type, index, tool, menuToolIninitialization) { switch (index) { case 0: tool.text("Button1"); break; case 1: tool.text("Button2"); break; case 2: tool.jqxDropDownList({ width: 100, source: ["Java", "Scala", "C++"], selectedIndex: 2 }); break; case 3: tool.jqxComboBox({ width: 60, source: [4, 5, 8, 10, 15], selectedIndex: 3 }); break; case 4: tool.jqxInput({ width: 140, placeHolder: "Search..." }); break; } } }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtoolbar/jquery-toolbar-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtoolbar-height-property/?ref=next_article
PHP
jQWidgets jqxToolBar height Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0258077569, -0.00849163, -0.00676001748, 0.0215300713, 0.0921260417, -0.00221320638, 0.0405955166, 0.0349863656, -0.0256519467, 0.00468137395, -0.0114307683, -0.0165158305, 0.0264734887, -0.00330741564, -0.0132013336, 0.00872534513, -0.0258219205, -0.0132934023, -0.0230598394, -0.0137679139, -0.00407584105, -0.0100497277, -0.0554682612, 0.018527193, -0.0351280123, 0.0252836701, 0.0194337219, 0.00927067921, 0.00108181522, 0.0219975, -0.0305103771, 0.00822250452, -0.00165813416, -0.00329325115, -0.0255244654, 0.0038846198, -0.0110908197, 0.0396606587, -0.0493775196, -0.0242071655, -0.00912195165, 0.0276774727, -0.000314717938, 0.0125214364, 0.00443349499, -0.0225357525, 0.0281732325, -0.00555957435, 0.000660420803, 0.0176348276, -0.00138192601, 0.0276491437, 0.0106658842, 0.0627771541, 0.00541438814, -0.0257086046, 0.0302837454, 0.0507939719, -0.021756703, 0.0204535685, 0.0229323581, -0.0264876541, -0.0320401452, -0.0271533858, -0.00576141896, 0.00603054464, 0.00873242691, 0.0272525381, -0.01729488, 0.0461480096, 0.00144743698, 0.0290655959, -0.00531877764, 0.00839956105, 0.0231589917, 0.00973102544, -0.0118911155, -0.0314735658, -0.0137749966, 0.0346747451, -0.0234847758, 0.00525857834, -0.0188529771, -0.015708454, 0.00733013963, 0.00830040872, -0.0169832595, -0.0312752612, 0.010290524, 0.0186830033, -0.0105808973, 0.0190796088, 0.00663253665, 0.00714245951, -0.0319834873, 0.0224366, -0.024490457, 0.0166291464, -0.0304253902, 0.0240088627, 0.026190199, 0.0119052799, 0.00699019106, -0.0133075668, 0.0186546743, 0.00829332694, 0.0300287846, -0.00384920859, -0.00597034534, -0.016034238, 0.00931317266, -0.00868993346, -0.039377369, 0.0206235424, -0.0413320698, 0.0467995778, -0.009901, -0.013080935, 0.00347916037, -0.0229040291, -0.00723452913, -0.0152551886, -0.00654754974, 0.0216858815, -0.0039519011, 0.0215442367, -0.0366294496, 0.00481593702, 0.0400572643, -0.036997728, 0.00428830879, 0.032181792, 0.0236264206, 0.0163741857, 0.0052019204, 0.0467712469, 0.0247737467, 0.0331449769, -0.0293488875, -0.0020609377, -0.0405955166, -0.0286123324, 0.0015811146, 0.0191929247, 0.00657587871, 0.0583011657, 0.0103117712, 0.0363178328, -0.0299154669, 0.026515983, 0.00644485699, -0.0113528632, 0.011466179, 0.0350713544, 0.0333432816, -0.0195612032, -0.0388107859, 0.0446182415, -0.02983048, 0.0310769584, -0.00160767313, -0.0411337689, 0.0161758829, 0.0066962773, -0.0144690583, 0.0162750334, 0.006636078, 0.00103843643, -0.0590377226, 0.0271958802, 0.013109264, -0.00997182261, 0.00268771779, 0.0181305856, -0.0463463105, -0.0176914856, 0.0131234284, -0.0216008946, -0.0261477046, -0.0515305251, -0.00387399644, 0.0198586583, -0.0102692777, 0.00103135419, -0.00348270149, 0.0112324646, 0.0104959095, 0.0228332076, -0.0260768831, -0.0162750334, -0.0409354642, 0.0391507335, 0.00438391929, 0.0239238758, 0.0138245719, -0.0489525832, 0.00454327, 0.00925651472, -0.0172240566, -0.0242496599, -0.0185838509, -0.0268134382, -0.0368560813, -0.00781173306, 0.0272100437, 0.0202552639, 0.0116998944, -0.051643841, 0.0468279049, 0.0294055454, -0.0161758829, 0.00966728572, 0.0441649742, -0.00716724759, -0.0183713827, 0.0192354191, -0.0139591349, -0.026105212, -0.0229181945, -0.00697602658, 0.00648380956, 0.00122080464, -0.00307901273, 0.0275499932, -0.118868656, 0.0103542646, -0.0104180053, -0.00565164397, 0.00362965837, 0.0503123775, -0.0323234349, -0.012507272, -0.0337965451, 0.00513817975, 0.0490659, 0.0361761861, -0.00993641093, 0.0176348276, 0.0238247234, 0.0292072408, -0.000734784524, -0.00153685047, -0.0162183754, 0.000991516397, 0.0215584, -7.77942041e-05, 0.00701497868, -0.00276385201, -0.00307193049, 0.0179889407, -0.00275676977, 0.0303120743, 0.0394340269, 0.0121956524, 0.0389241, -0.00376776257, 0.0156659596, -0.00281165726, 0.0209068321, -0.0197736714, 0.0239097103, 0.028980609, 0.0140724517, 0.019802, 0.0331166498, 0.0192212537, 0.0501424037, 0.00790380221, -0.0131446756, -0.0462613255, 0.0177198146, -0.0200427976, 0.0585278, 0.0359212235, -0.0167424642, 0.0226349048, -0.0295188613, -0.00799587183, 0.0387824588, 0.0274366774, 0.0199011508, 9.70491e-05, 0.0434567481, 0.0705959722, 0.00146425737, -0.0035287363, -0.0103755118, -0.0110766552, 0.00104994513, 0.0275641568, -0.0469978787, -0.00392357213, 0.0288247988, 0.0246604308, 0.0300004557, -0.00594555773, -0.0106588015, -0.00857661758, 0.00511339214, 0.00436267257, -0.0224507656, 0.00575079536, -0.027804954, -0.0268984251, -0.0146744438, 0.0395473428, 0.0152268596, -0.0215725657, -0.0149010755, -0.00914319791, 0.0551283136, 0.0153118465, -0.041983638, -0.0166433118, -0.0263885017, 0.00557019794, 0.0248020757, 0.0364594758, -0.0342498124, 0.00169531605, 0.00145009276, 0.00308255386, -0.0268276017, 0.0662333, 0.0535135604, -0.0075638541, -0.0137395849, -0.0272100437, 0.00640236354, -0.00109509449, -0.00353935966, 0.00888823718, 0.0238247234, -0.0242921524, 0.00668919506, -0.0526353605, -0.00569059607, -0.0493491888, -0.0311902743, 0.023697244, -0.0187821537, -0.0151985306, -0.0151560372, -0.0140582863, 0.0302837454, -0.0706526265, -0.0136970915, -0.012096501, 0.0325783975, 0.0332866237, 0.00128720084, 0.00635278737, 0.010864187, 0.0220258292, 0.0276491437, 0.0229465235, -0.0182297379, -0.0152551886, -0.0268134382, -0.0276633091, 0.00143150182, 0.0153826699, 0.00749303121, -0.0109208459, 0.0327767022, -0.0494908355, -0.0232864711, -0.039604, -0.0319268294, 0.00320472289, -0.0159492511, -0.0667998791, 0.000921579136, 0.045128163, -0.0215867292, 0.0104321698, -0.0113174524, -0.0203260873, -0.0157367829, 0.0183997117, -0.0452414788, 0.0504256934, 0.0120540075, 0.0287681408, -0.0068414635, -0.0107508712, -0.00585702946, -0.0243913047, 0.0233714599, 0.0203260873, -0.0472245105, 0.0230598394, -0.00131641515, -0.0361761861, -0.0312186033, 0.0137820784, 0.0114732618, -0.0270825643, 0.0157226175, -0.0130384415, -0.00177676207, -0.0102126198, 0.0224507656, -0.0191787612, 0.0229748525, -0.0384991691, -0.00662545441, 0.0216433872, 0.00277447538, -0.0282298904, 0.0108216936, -0.0261760335, -0.0137820784, 0.031303592, 0.0164591726, -0.00163334631, 0.04192698, 0.0119548552, 0.0123302154, -0.024929557, 0.00597742759, -0.0257652625, -0.0332582928, -0.0046742917, -0.0244054683, -0.00472740876, -0.0495758206, 0.0225215871, 0.0391790643, -0.0378476, -0.016884109, 0.0195612032, -0.00501778163, 0.0181305856, 0.0250995308, 0.0102692777, 0.0473095, 0.0222524628, -0.00680251094, -0.0246037729, -0.032266777, -0.018555522, 0.0420969538, -0.00564810261, -0.0340515077, 0.0117848814, -0.0299721248, -0.0268984251, 0.00316045876, -0.00117122883, -0.00709996605, -0.0304820482, -0.0358928964, 0.0340231769, 0.00760634756, -0.0135766929, 0.0101772081, -0.00101984548, -0.0107862828, -0.0129817836, -0.0158500988, -0.00689812144, -0.0367427655, 0.0270683989, 0.0437683687, -0.00107473298, -0.0100001516, 0.0287681408, -0.011274958, 0.0056622671, -0.0336549021, 0.00102958363, 0.0416153632, 0.0473661572, 0.0107154595, -0.00419269828, 0.00866160449, -0.00568705518, 0.0224507656, -0.0015696059, 0.0384708382, 0.00248587341, 0.0403688848, 0.0214592479, 0.0075638541, -0.000972925511, 0.0210201479, -0.0275499932, 0.0170257539, 0.0204394031, 0.0226915628, -0.0147452662, -0.0124647785, 0.0143486597, 0.00969561469, 0.0349013805, -0.0317568555, -0.0240088627, 0.0333716124, -0.00702560227, 0.00989391748, 0.0353546441, -0.0511055924, 0.0342498124, 0.0211759582, 0.00474511459, -0.0567147397, 0.0114874262, -0.0217425395, -0.0296605062, 0.028980609, 0.00798170734, -0.0436833836, 0.0115794959, -0.0334565975, -0.0443349481, -0.0380742326, -0.0112324646, 0.0358362384, -0.0200994555, 0.0149010755, 0.00579328882, 0.00767008774, 0.00100391044, 0.0300004557, 0.0266151335, -0.0255527962, -0.0135341994, -0.00212999, -0.0125851771, -0.0220966525, -0.00267709442, 0.0173798669, -0.021813361, -0.0175923351, 0.0231164973, -0.0213884264, -0.00677064108, -0.0104109226, 0.0151843661, 0.00876075588, 0.0224932581, -0.0320684761, -0.0140512045, -0.00842789, 0.0207510237, 0.020170277, -0.0110199973, 0.0119265262, 0.0152126951, 0.00183076435, -0.0125285182, 0.00143858418, -0.00208218466, 0.0117565524, 0.00983726, -0.0199436452, -0.0264593251, -0.00706101349, -0.0134846233, -0.00513109751, 0.0151985306, 0.00778340409, 0.0267567802, 0.00176790927, -0.0320968032, 0.0109066805, 0.00542501127, -0.0135908574, 0.01773398, 0.0182297379, 0.00686625158, 0.0177764744, 0.0199294798, 0.0123018865, 0.00663253665, 0.0249720495, -0.0119194444, 0.0092423493, 0.0135766929, -0.00899447, -0.0319268294, 0.026544312, -0.000995942857, 0.0179039538, 0.000240575537, -0.000580745342, -0.0332299657, -0.0366011225, 0.00188388128, -0.000618812512, 0.0480460525, 0.000853855, 0.00500007579, -0.00571538415, 0.0187254958, -0.020113619, 0.0162608698, 0.0204110742, -0.013109264, 0.00527628418, 0.013491706, 0.0238813814, 0.0218558554, -0.024079686, 0.00466012722, 0.00560915, -0.0134775415, -0.000520988775, 0.00815876387, -0.0242921524, -0.00683792215, 0.0357795805, -0.000333087548, -0.0265018176, -0.00366861094, -0.00825791527, 0.0188671406, -0.00512755662, 0.000840133114, 0.0105738146, -0.0174931828, 0.0174081959, -0.0148160886, 0.0151843661, 0.00194408046, -0.0257652625, -0.0183855481, -0.00356768863, -0.0241221786, -0.0105171567, 0.00621822476, -0.0281165726, 0.00124736305, 0.0402555689, 0.0242071655, 0.0112678763, 0.0384141803, -0.025311999, 0.0162325408, 0.0149577335, 0.0307653397, -0.0214592479, 0.043570064, -0.0124647785, 0.00527274283, -0.00666794833, 0.0367427655, 0.0134421298, -0.018555522, -0.0291222539, 0.00374297448, -0.0131942509, 0.00954688713, -0.0055064573, 0.0167849567, -0.00600575656, -0.00039439337, -0.00312150619, 0.0423519164, -0.0186121799, -0.0265301466, 0.028980609, 0.0268134382, 0.0127055747, -0.0113245342, 0.0317851827, 0.0351563394, 0.0321534611, -0.00189804577, 0.00883866102, -0.0109420922, 0.0212042872, 0.012259393, -0.013491706, 0.00141556677, 0.00192106317, 0.00326492195, 0.00505673373, 0.0111191487, 0.00605533272, 0.0105667328, -0.0126914103, 0.00424935622, 0.00387045532, -0.0242354944, -0.0214875787, 0.0273516886, 0.0241221786, 0.029802151, 0.0170257539, -0.0152551886, 0.0124576958, 0.0153685054, 0.00379963266, 0.0127126575, 0.0317568555, 0.00328971, 0.00157403236, -0.00924943201, -0.0139803821, -0.000318259088, -0.00619697757, 0.0183147248, -0.00455035223, 0.0175215118, 0.0068520871, 0.0211051367, -0.0094619, -0.0053010718, 0.0196178611, 0.0183430538, 0.0108854342, 0.0487542786, 0.0243629757, -0.0187679902, -0.00679897, -0.0255952887, -0.0278757773, 0.00305953645, 0.00697602658, 0.0156942885, -0.0108712697, -0.0391507335, 0.00352165406, -0.0187821537, 0.0251703542, -0.000528956298, -0.0137183387, 0.00382087938, -0.00688749831, 0.0111262314, 0.00793921389, -0.0177198146, -0.0196178611, 0.0549016818, 0.00729472796, 0.00515234424, 0.0130101126, -0.000869790092, -0.00634924648, -0.0400572643, 0.00786839146, -0.00980893057, 0.0102480305, 0.00426352071, 0.0118061276, -0.00956813339, 0.0202977583, -0.0115794959, -0.00890948344, -0.0184563696, 0.024490457, -0.0200144686, 0.0201561134, 0.0200003032, -0.00192991598, -0.00486197183, 0.0112112183, -0.0125780944, -0.00899447, 0.0317851827, -0.045071505, 0.0108358581, 0.00790380221, 0.0142211784, -0.0146744438, 0.0111545604, 0.0170965772, -0.0202127714, 0.0161617175, 0.00798879, 0.0201561134, 0.00870409794, 0.00465658633, 0.0054073059, -0.00263637141, 0.00261866581, 0.0039625247, 0.015326011, -0.00954688713, -0.00827208, 0.019348735, 0.000144854363, 0.00633154064, -0.00505673373, 0.0271250568, 0.0252978336, 0.0250712018, 0.0435417369, 0.0315585509, -0.00586411171, 0.00362611725, 0.0339948498, 4.28255444e-05, -0.0169266015, -0.0469695516, 0.0213176031, 0.0451848209, -0.000438214862, 0.0122027341, 0.00394836, 0.019787835, 0.040198911, -0.00794629566, -0.0251136944, -0.0246604308, 0.0249153916, -0.00547458744, 0.00103755109, -0.0031622292, 0.0232439786, -0.0333716124, -0.00241682143, -0.0170399193, -0.0143628241, 0.00805253, -0.0101842908, 0.0199578088, -0.000186351972, -0.0351563394, 0.0275783222, -0.000528956298, -0.01685578, -0.0335132554, 0.0282440539, 0.00237609842, -0.00450785877, 0.0123160509, -0.00717078848, -0.0192779135, -0.0150002278, -0.0332866237, -0.00142441958, -0.01168573, 0.0122664748, -0.0101205502, -0.00219727121, 0.00517005, 0.000471855601, -0.0104109226, -0.00212821923, -0.0382725336, 0.028159067, 0.0152126951, 0.00969561469, 0.0123727089, 0.00160413201, 0.00648380956, 0.0250003785, 0.024108015, 0.0127055747, 0.0234281179, 0.0350146964, -0.0125497654, 0.0185696874, -0.0309353136, 0.0252836701, 0.0210909713, -0.00915028062, -0.0275216643, 0.0108358581, 0.00135979394, -0.00608012034, 0.0318985023, 0.006335082, -0.0159350857, -0.039320711, -0.0293205585, 0.00742929103, 0.00530461315, -0.00768425269, 0.0379892439, -0.016501667, 0.00416791, 0.0036615287, -0.0498874411, 0.0151418727, -0.024547115, -0.00804544799, 0.0460913517, 0.00307015982, -0.0385274962, 0.000801623333, -0.0111758066, 0.0400289372, -0.0199153163, 0.00558082107, 0.0109137632, 0.0156376306, -0.0106092263, 0.00654754974, 0.0285840034, -0.040340554, -0.0243771393, 0.029037267, -0.000666175096, -0.00553478627, 0.00779756857, 0.0094760647, 0.010318853, -0.0257369336, -0.00523379026, -0.00337646762, 0.0244621281, -0.0135766929, 0.0200286321, 0.0454964414, 0.0125922589, -0.000985319493, 0.0331166498, 0.0185696874, 0.00411125226, -0.0317568555, -0.0232298132, 0.011055408, -0.0155668082, 0.0243488103, -0.00210874295, -0.0218700208, -0.00339948502, -0.00958229788, -0.00215477776, 0.0321534611, -0.0216150582, -0.0247312523, -0.0297171641, 0.00257440167, -0.00274614641, -0.0130242771, 0.0158500988, -0.00118362275, 0.0136970915, -0.00427768519, -0.0127339037, 0.0126843285, 0.0157509465, 0.0131375929, -0.0355529487, -0.00752136065, 0.0326067284, 0.0150285568, -0.0241788365, 0.000486462755, 0.00827208, -0.0208360106, -0.0309636425, 0.0113386987, -0.016034238, -0.0121744052, 0.0246462654, 0.0229181945, 0.0284848511, -0.000384655257, 0.0272667017, -0.0272383727, -0.012507272, 0.0259635672, -0.0169974249, -0.0135625284, 0.0135766929, -0.0366577804, -0.00160590257, -0.000159240197, -0.0022167475, -0.00117388461, -0.00127923326, -0.00884574279, 0.0102551132, -0.0203544162, 0.00459638704, -0.0168274511, 0.0375076495, 0.00120486959, 0.00195470382, 0.0185696874, -0.000402360922, -0.0385274962, 0.0258360859, -0.0102976067, 0.0265301466, -0.00412187539, 0.0176348276, 0.0127551509, 0.0173798669, -0.00487259496, 0.0163033642, -0.0008613799, -0.0345047712, 0.0310486294, 0.0117990458, -0.0407654904, 0.00755677186, 0.00391649, -0.00439454243, 0.00483364286, 0.0115228379, -0.0184138771, -0.0156659596, -0.0544767454, -0.0337398872, -0.011876951, 0.00241505075, 0.00737971533, 0.0267001223, 0.0320401452, -0.014341577, -0.0023902629, -0.0121744052, 0.0193912294, -0.0390940756, 0.00862619281, 0.000489561236, 0.0173657015, 0.0222382974, 0.0345614292, 0.0140582863, 0.000455920497, 0.0263743382, 0.0053010718, 0.0260343887, 0.00134385889, 0.0121248299, -0.00583224138, 0.00421394501, 0.0195470378, -0.021813361, -0.00754968962, 0.00551353954, 0.0141007807, 0.0129392892, 0.00418207468, -0.00708934246, -0.0229181945, -0.0047840667, -0.0351563394, -0.00993641093, -0.0167849567, -0.00761343, -0.0114236856, 0.00818001106, -0.00503194612, -0.0182297379, 0.0158925913, -0.01535434, 0.00138192601, 0.00247170893, 0.00415374571, -0.00260273064, 0.00648380956, -0.016062567, 0.0195328742, 0.00370756327, 0.0109845856, -0.000955219846, 0.00090033235, -0.00416082796, -0.0183713827, 0.0158500988, 0.0248728991, 0.00165990472, -0.0175073482, 0.012287722, -0.00237432774, -0.0252411757, 0.0123656262, -0.0145611269, -0.0240655206, -0.0130101126, -0.00567289069, -6.21357685e-05, -0.00832873862, 0.00434142537, -0.0080242008, 0.0151560372, -0.00289487396, -0.00565518485, 0.0070964247, -0.0293488875, -0.00952564, 0.00104286289, 0.00202198536, -0.0252695046, 0.0123443799, -0.00866160449, -0.0101913726, 0.0150568858, 0.00879616756, -0.0237963945, -0.0297454931, -0.00344197848, 0.0050956863, 0.00060907437, 0.00362965837, -0.0108571053, -0.0266576279, 0.00153685047, 0.0737121627, -0.00653338525, 0.0113528632, -0.0220824871, -0.0318701714, -0.0327483714, 0.00226986455, 0.0137608321, 0.0135412822, 0.00417145155, 0.00733013963, 0.0409071371, 0.0129605364, -0.0070964247, -0.0180031061, -0.00626780046, -0.0183005612, -0.00384920859, 0.0271675512, -0.0184705351, -0.0026735533, 0.0162183754, -0.0105454857, -0.000715308299, 0.0355812758, 0.0116432356, -0.0284281932, -0.0188529771, -0.0147311017, 0.0123939551, -0.00711413054, 0.0141786849, 0.0220541582, -0.00655817287, -0.00023526384, 0.0186263453, -0.0223657787, -0.0119761024, -0.0305103771, -0.0103471819, 0.000387753767, -0.00745053776, 0.021813361, -0.0230740048, -0.00463888049, -0.0155384792, -0.0301137716, -0.00859078206, -0.00102515717, 0.00973102544, -0.0304253902, -0.0216717161, 0.00735138636, 0.00303297793, -0.0157651119, 0.0109845856, 0.0226065759, -0.031303592, 0.0161475539, -0.0529186502, -0.0156376306, 0.00233183429, -0.00234954, -0.00306661869, -0.0118911155, 0.00868993346, -0.0198161639, 0.0224649291, -0.0396889858, 0.0184846986, 0.0390090905, 0.0143982349, 0.0102763595, 0.00377484481, -0.014532798, 0.0149294045, -0.00347207813, -0.0133429784, 0.0190512799, -0.0277624615, -0.0271958802, -0.000274216261, -0.0315585509, 0.0265584756, -0.0210343134, 0.00523024937, -0.0123302154, -0.0107083777, -0.00017429, -8.51531149e-05, -0.0249720495, -0.0135341994, -0.0300004557, -0.000519218214, 0.00481239613, 0.00329679227, 0.00622176565, 0.00801711902, -0.0119619379, -0.0105738146, 0.0168132856, -0.00204854389, 0.00175817113, 0.0114095211, -0.00274260528, -0.0116361538, 0.037054386, 0.00236016326, -0.00631737616, 0.0207935162, 0.0103825936, 0.00685562799, -0.019320406, 0.0223516133, -0.00158199994, -0.00700789643, -0.0174648538, 0.0194903798, 0.00861202832, 0.00212999, -0.024108015, -0.0251703542, 0.00303828972, 0.00247525, -0.00702206092, -0.0216717161, -0.00560560916, -0.0135837756, 0.00289310329, -0.0195187088, -0.0254961364, 0.0173373725, -0.0129747009, 0.00388816092, -0.0369127393, 0.0282298904, -0.0252695046, 0.0264451597, -0.000837919943, 0.0302270874, -0.019292077, 0.0237680655, 0.0100497277, -0.0173515379, 0.0142353429, 0.0137254205, 0.00658650231, 0.0091644451, 0.00936274789, 0.00424581487, -0.00758510083, -0.0053010718, 0.0252128467, -0.00699373195, 0.0118061276, -0.0228615366, 0.000846330135, 0.010290524, -0.00827208, -0.00902279932, 0.0162042119, 0.0262043625, -0.0103755118, -0.0163741857, -0.00491154753, 0.0040616761, 0.0103259357, -0.0139662176, 0.0098868357, 0.00423165038, 0.0266151335, -0.00692999177, 0.00393419573, -0.00890948344, 0.0115582487, -0.013080935, 0.00154747383, 0.00389878429, 0.0101984553, 0.00974519, -0.0155951371, 0.0172807146, -0.0141786849, 0.0172098931, -0.00611553201, -0.026190199, 0.00268594734, -0.0226773974, 0.0020609377, 0.0132084154, -0.0240513552, -0.00614386098, 0.0351846702, 0.00112873525, 0.046714589, 0.0142495083, 0.000180597635, -0.0169690959, -0.0107650356, 0.00708934246, -0.020198606, 0.00222028862, 0.0318418443, -0.00217956561, -0.0175356772, 0.0047840667, 0.00528336642, -0.00628196495, -0.000312062097, -0.00984434225, 0.0227057263, -0.00690520369, -0.00159439386, -0.00913611613, 0.0141078625, 0.0120044313, 0.00974519, -0.0361761861, 0.0111403959, -0.0119194444, -0.000164662546, -0.0075638541, -0.0380175747, 0.0130171943, 0.00553478627, 0.00797462557, -0.0173090436, 0.0140157929, 0.00890948344, 0.028626496, -0.0139378887, 0.0256661121, 0.0283998642, 0.0248020757, -0.00337646762, 0.00086226518, -0.00304891309, -0.0128259733, 0.00497174682, 0.00797462557, -0.0232014842, 0.0218558554, -0.00791796669, 0.0323234349, 0.00856953487, -0.000127812673, 0.0129676191, -0.0219550077, -0.0146461148, 0.00455389358, 0.00614031963, 0.0190654453, 0.00110748841, -0.00697602658, 0.0151702017, 0.000378458295, -0.00759926531, -0.00249826745, -0.0119265262, -0.030652022, 0.00659358455, -0.00190866913, -0.0260343887, -0.00512047438, -0.0178331323, -0.0162891988, -0.00439454243, 0.00709288381, -0.00888115447, -0.000842788955, 0.0128684668, 0.00410771091, 0.0292072408, -0.00161829649, 0.0250145439, -0.033909861, 0.0140866162, 0.0295188613, 0.00752844289, -0.0161050595, -0.0166999698, 0.0131730046, -0.0116786472, -0.0101347147, -0.0331166498, 0.0226349048, 0.0212467816, 0.0244196337, -0.0163883511, 0.015297682, 0.0188671406, 0.0169974249, -0.014886911, 0.00151206262, 0.0148302531, 0.0384425074, 0.0103542646, -0.0263035148, -0.00288602104, -0.02983048, 0.013711256, -0.0314735658, -0.00619343668, -0.00449369429, -0.0153401755, -0.00572246639, 0.00717078848, -0.019759506, 0.0258785784, 0.0150285568, 0.00419269828, -0.0247879103, -0.0128684668, 0.00598805118, -0.00424581487, -0.0142495083, 0.00111988245, -0.00237609842, -0.0125639299, 0.0024681678, -0.00211936631, -7.17632138e-05, -0.0278191194, 0.000640944578, 0.0391790643, -0.0217000451, 0.0184846986, -0.00660774903, -0.00263460074, -0.0246037729, -0.0131375929, 0.00138635247, -0.0201844424, -0.00710350694, -0.0143061662, 0.00543209352, 0.00187502848, -0.053088624, -0.0139591349, -0.0218416918, -0.0151985306, 0.0157792754, -0.0108429408, 0.018966293, 0.00927067921, 0.000116525312, 0.00221497682, -0.0104109226, -0.0233714599, -0.00718495296, -0.00542501127, -0.0124860248, -0.00252128462, 0.0150427213, 0.00485488959, 0.0280457512, 0.000170638217, 0.0140512045, 0.00714600086, -0.00614740187, 0.00100833678, -0.00229642284, 0.0234564468, 0.015326011, 0.0172382221, -0.0203260873, -0.00898738857, -0.0163175277, 0.00313744135, 0.0203544162, -0.0033003334, -0.000127923326, 0.020113619, -0.00744345551, 0.00627134135, 0.0256519467, 0.0121248299, -0.0056126914, -0.0133500611, -0.0184138771, -0.00880324934, 0.00367215206, -0.00467075082, -0.0136900088, 0.0379609168, 0.0149577335, 0.00398377143, -0.000784802949, -0.00880324934, -0.0080242008, 0.0202411, 0.00422456814, -0.00277801673, 0.0130384415, -0.0195328742, 0.0170399193, -0.0291505828, 0.0264876541, -0.0119406907, -0.0178897902, 0.0109845856, 0.0018785696, -0.0156234661, 0.0114449328, 0.0252270121, 0.021756703, 0.0135696111, -0.0141149452, 0.00689812144, -0.00505673373, -0.00897322409, 0.0237822309, -0.0336832292, -0.0141857676, 0.00920693856, 0.0109845856, 0.016884109, 0.0175640061, 0.00907237548, -0.0207651872, -0.0195753668, -0.0165866539, -0.0144690583, -0.0176348276, -0.00904404651, -0.0317568555, -0.00460701, 0.016501667, -0.0148160886, 0.0280315857, 0.0168699436, 0.00392003125, -0.00717078848, 0.000842346344, 0.00413249899, -0.0107862828, -0.0260627177, -0.0141432742, 0.0284140278, 0.00900863484, -0.0383575223, 0.0182155743, 0.0233006366, 0.00428122655, 0.0123797907, -0.00682375766, 0.015326011, 0.00197595055, 0.0015926233, -0.000132681715, 0.00376776257, -0.0183713827, -0.00936274789, 0.0132792378, 0.000907414593, 0.00356945931, -0.0222666264, -0.0163316932, 0.0169266015, 0.00748594897, 0.0196745191, -0.0151418727, 0.00171479234, 0.0278332829, 0.00673168851, -0.00230173464, -0.00591014605, -0.0118981972, -0.00793921389, -0.0056020678, 0.027804954, -0.0227482207, 0.0106304726, 0.00778340409, 0.010481745, -0.0136121046, -0.00643069251, 0.00937691238, -0.0236122552, -0.00235308101, 0.000639174, 0.00810210593, 0.000842788955, 0.0117777986, 0.00192106317, 0.00830040872, 0.0136262691, 0.00794629566, 0.0245046206, -0.0139520532, 0.027748296, 0.0095752161, 0.00891656615, 0.00627842359, 0.0174931828, -0.00216186, 0.00657587871, 0.0137395849, -0.0216008946, -0.00686625158, 0.00842789, 0.00582515914, 0.0165299959, 0.00852704141, 0.00523733161, 0.0324934088, -0.00181659975, -0.0263318438, 0.00245931488, 0.0128118088, 0.0119406907, 0.00126241287, -0.00606241496, 0.0164308436, 0.0162608698, -0.0141716031, 0.0087465914, -0.0111049842, 0.0112253828, 0.00296746707, 0.0234139524, 0.00335167977, 0.00651213853, -0.0407371633, 0.00851287693, 0.00681313453, 0.00626071822, -0.00786839146, 0.0331733078, -0.00837123208, 0.00820125733, 0.0300004557, -0.00464242185, 0.00824375078, -0.0204110742, -0.0206802, 0.02096349, -0.0130101126, -0.0111120669, 0.00728056347, -0.0111474777, 0.00386691419, -0.0146319503, 0.010453416, -0.000348358677, 0.00043113259, -0.00337115582, -0.0141645204, -0.00837123208, -0.00252128462, -0.000274437596, 0.0117919631, -0.0126843285, 0.0202694293, 1.38602045e-05, -0.000586499693, -0.00722390553, 0.0105029922, -0.0119690197, 0.013272156, 0.00631737616, 0.001638658, 0.00255846651, 0.0191079378, 5.88159601e-05, 0.00953272264, 0.00133943243, 0.0112395473, -0.0114803445, -0.00603054464, -0.001231428, -0.00780465081, 0.0137820784, 0.0186971668, 0.00702560227, 0.015708454, 0.00730889291, -0.0120256776, -0.029802151, -0.0284281932, 0.0136758443, -0.0184705351, -0.00252128462, 0.025368657, -0.0120185958, 0.0141078625, 0.00351103046, 0.030595364, -0.0113811921, -0.0252836701, -0.00291966181, -0.0144973872, -0.0224932581, -0.0183288902, 0.00456805807, 0.00339948502, -0.0290939249, 0.0221391451, -0.00592785189, 0.00750011392, -0.00554895075, -0.00794629566, 0.00442995364, 0.000620140403, -0.0169407669, -0.00588889932, -0.00553832762, 0.00399085367, -0.00231412868, 0.00131110346, 0.00696186209, -0.0163175277, -0.000382220751, -0.00625363598, 0.0158784278, -0.000425156933, 0.00303828972, 0.012478943, -0.0130030299, 0.00893073063, 0.0102126198, 0.0260343887, -0.0161050595, -0.000616156671, 0.0264168307, 0.0120256776, 0.032946676, -0.0105384029, -0.0211901236, 0.00997182261, -0.000802951283, 0.0286973193, -0.0142636728, 0.00326492195, -0.0171249062, 0.0250853654, 0.00245931488, 0.0104109226, -0.00443703588, -0.000420287892, 0.00717078848, 0.01729488, -0.0292922296, -0.000845002185, 0.00834290311, 0.0149577335, 0.00759218307, 0.0108287763, 0.00767008774, 0.0070964247, -0.00486905407, 0.0226349048, -0.0224366, -0.00455743447, 0.00642006891, -0.0173515379, 0.0313885771, 0.0120044313, -0.00401918264, 0.00851996, -0.00796754286, 0.0166999698, 0.00215300708, 0.0166149829, 0.00831457321, -0.0147311017, 0.00433788449, 0.0193345714, 0.00284352759, -0.0254678074, -0.00399085367, 0.0251986831, -0.018909635, 0.0039625247, 0.01685578, 0.0175498407, 0.0341081657, -0.000761343, -0.00909362268, 0.0109350104, -0.0170399193, -0.00548521057, -0.0188954715, -0.0016475108, 0.00632799976, -0.028215725, 0.00612261426, -0.02616187, 0.0125780944, -0.015708454, -0.0131021813, 0.026544312, -0.0196178611, -0.0182155743, 0.0159350857, 0.00496112322, -0.0143344952, 0.0056020678, 0.00528690731, 0.00398377143, 0.0178331323, -0.0203260873, -0.0231023338, -0.0190087873, 0.012287722, 0.00506381597, 0.00492217112, -0.0198303293, 0.00360309985, 0.00700789643, -0.0107437894, 0.00676001748, -0.0133358967, -0.00953980442, -0.0294905324, 0.00717078848, 0.00953980442, 0.0158359334, -0.00400147727, 0.00577204209, 0.00248941453, 0.00908654, -0.000742752047, -0.00778340409, -0.0175356772, -0.00385983195, 0.0119761024, -0.0254536439, 0.0117848814, -0.0228757, -0.0171673987, 0.0215725657, -0.0146319503, -0.00166610174, -9.09489518e-06, 0.0149860624, -0.00712121278, 0.00939107686, 0.00571892504, -0.0121956524, 0.0240655206, 0.00599867431, -0.0214875787, -0.00973810814, -0.00110837375, 0.00271427631, 0.0208076816, 0.014284919, 0.00242213299, 0.0337965451, 0.000768867903, 0.00446890621, 0.0190371163, -0.0121814879, 0.00150143914, -0.00511693303, 0.0241221786, 0.0154676568, -0.0050461106, 0.00496466458, 0.0339381918, -0.0279749278, 0.0122664748, -0.019702848, -0.00403334713, 0.00258325436, -0.00120486959, 0.00398023054, -0.0167282987, 0.0214592479, -0.0116998944, -0.0028612332, 0.0200144686, 0.00390232541, 0.00990808196, 0.00691582728, -0.0181589164, -0.00141645211, 0.00785422698, -0.0169407669, -0.0118840327, 0.0182014089, -0.00350394822, 0.0211193, 0.00190689857, -0.0167424642, 0.00331095676, -0.00547812833, 0.0169974249, 0.00445828307, -0.0148444176, 0.00835706759, 0.0125639299, -0.0142990835, 0.00927067921, 0.012918043, 0.0392357223, 0.00235485146, 0.0135696111, 0.0206377059, 0.00733013963, -0.0174081959, -0.0181872454, -0.0145894559, -0.0102834422, 0.02140259, 0.00470970292, 0.0027284408, 0.0167849567, -0.00730889291, 0.0108500225, -0.00319232885, -0.00626425911, 0.0129747009, 0.0282723829, -0.00825083349, 0.0110766552, 1.78439768e-05, -0.0131234284, -0.0111120669, 0.0419553109, -0.0157651119, 0.00153153879, 0.00841372553, -0.000590926094, -0.00268771779, 0.00274437596, 6.3353029e-05, -0.0177481435, -0.0112395473, 8.94135374e-05, -0.0210909713, -0.00966020301, 0.00155809731, -0.000410107139, 0.0232439786, -0.0103755118, 0.00184492883, 0.01425659, 0.0220399946, 0.00416791, 0.0234564468, 0.0130101126, 0.00372881, -2.07349767e-05, -0.0139732994, 0.0108358581, -0.0174223613, -0.00810210593, -0.0144548938, 0.0352979861, -0.0117707169, 0.00876783859, 0.00148727465, 0.020170277, 0.0163741857, -0.00643069251, -0.0223941077, -0.0142140966, 0.00268771779, 0.00224684714, 0.0140299574, 0.00384566747, 0.00289133284, 0.00272667012, -0.00176613871, -0.00938399509, 0.0051912968, 0.000956990407, -0.016090896, 0.0137608321, 0.00722744688, -0.000570122, 0.00631737616, 0.040142253, -0.0292072408, -0.0429751575, 0.00705039036, -0.0010579126, 0.00103135419, -0.00386691419, -0.00898030587, -0.0109916683, 0.00927776098, 0.00961062685, -0.0258644149, 0.00243806816, 0.0235980917, 0.00978768338, 0.00122788688, -0.000713537738, -0.0011995578, 0.0131375929, -0.0141007807, 0.00649443269, 0.025340328, -0.0223941077, -0.0245612785, 0.00101276324, 0.00961062685, 0.00134917058, -0.000208705358, -0.00919277407, -0.0275216643, 0.0116219893, 0.00110040617, 0.0161475539, -0.00547458744, 0.0356379338, 0.00906529278, -0.00772674615, 0.0327767022, 0.0239663683, -0.0250428729, -0.0164875016, -0.0161758829, 0.0289239511, -0.0230031814, 0.00862619281, -0.0150427213, -0.000852084428, 0.0058074533, -0.0154393278, -0.0280174222, 0.0163883511, -0.0015837705, -0.00140228751, 0.00678834645, 0.0186546743, 0.00406521745, 0.0194195583, 0.0130455233, 0.0158642624, -0.00416436931, 0.031445235, -0.00175905647, -0.0189238, -0.030595364, 0.0036509051, -0.014065369, -0.00661129, -0.00791088492, -0.0119761024, -0.0189521294, 0.00139432, -0.00563747901, -0.016119225, -0.00144124, 0.00930609, -0.00465304498, 0.0130455233, -0.0012863155, -3.8786442e-05, -0.00385274971, -0.00355529459, -0.0182297379, 0.0286406614, -0.00693707401, -0.000345924142, 0.0162608698, -0.00681667542, 0.0328616872, 0.00489384169, 0.00300287828, 0.0123018865, -0.0190937743, -0.00714245951, -0.0106658842, -0.0216008946, -0.000450608815, -0.00626071822, 0.0261193756, 0.0122523103, -0.0207085293, -0.00773382839, -0.0181730799, 0.00532586, 0.0237963945, 0.0267284513, -0.0129251247, 0.0131375929, -0.000326890586, -0.00481593702, 0.00296569662, 0.0268134382, 4.41258e-05, 0.00312327687, -0.010729624, 0.0146036204, -0.00309317722, 0.00509214541, -0.000445518439, -0.0039625247, -0.0154959857, -0.0077196639, -0.0111333132, 0.0179464482, -0.00157403236, 0.021374261, -0.00378546817, 0.0115794959, 0.00583932362, 0.00929900818, 0.0143486597, 0.00434142537, -0.0126914103, -0.0222241338, -0.00164042856, -0.00246285601, -0.0130738523, -0.0173657015, 0.00511339214, -0.0016705282, -0.00473095, -0.00254253135, -0.00419623917, 0.00041674677, 0.00278686942, 0.0220683236, 0.0127905626, 0.0184705351, -0.00941940583, 0.0223374497, 0.0400006063, -0.00444765948, -0.00528690731, 0.00219727121, -0.0243346468, -0.0126914103, -0.00578620657, 0.0132367443, -0.012889714, 0.00490800664, 0.0053010718, -0.00358893536, -0.00407584105, 0.00906529278, -0.00105437147, 0.00993641093, 0.0206802, -0.00198657392, -0.0151702017, -0.0236122552, 0.0181022566, -0.00905112829, 0.0048796772, 0.00416082796, -0.0240230262, 0.0269409176, -0.00789672, 0.0122735575, 0.0118415393, -5.07930854e-05, -0.0194903798, -0.0122027341, 0.0130313588, -0.0188529771, -0.0144548938, 0.0278191194, 0.00933441892, -0.0134421298, -0.0027337526, -0.0218558554, 0.0293488875, -0.0130242771, -0.0144123994, 0.00429893192, -0.0257652625, -0.0186546743, 0.0120894182, 0.000171080857, 0.0191787612, -0.0196461901, 0.0045184819, 0.0132296626, 0.0209493265, 0.00561623229, -0.013491706, 0.0106163081, -0.000510808, 0.0216717161, -0.00237078662, 0.0101417964, -0.0323517658, -0.00700789643, -0.000756473921, 0.00830749143, 0.00970977917, 0.0165299959, 0.00535418885, -0.011466179, 0.00185732276, 0.000590926094, -0.00482301926, -0.0143344952, -0.000305422465, -0.00724515226, 0.0143628241, 0.00332866237, 0.0111545604, -0.00251597306, 0.0056622671, -0.00282405131, 0.020991819, 0.0192354191, -0.000363629806, -0.0326350555, -0.000953449286, 0.0145611269, 0.00176436815, 0.00242744479, 0.0199578088, -0.018555522, 0.00841372553, -0.000678569078, 0.02140259, -0.0029391381, -0.00929192547, -0.0073584686, 0.0123018865, 0.0333432816, -0.0206377059, -0.0162467044, -0.0194478873, 0.0285131801, 0.015708454, -0.0182722323, -0.00564102037, -0.00330564496, 0.0171249062, 0.0158359334, 0.00869701616, 0.0184563696, 0.00423165038, 0.00830040872, -0.0248587336, 0.00242213299, 0.0143699059, 0.00716724759, -0.00762759428, -0.00176259759, -0.00268063555, 0.0127622327, -0.00458576344, 0.00141025509, -0.00701143779, 0.000873331213, 0.00977351889, -0.00930609, -0.0174931828, -0.00773382839, 0.00410062866, 0.0123797907, -0.0234422814, -0.00364736398, -0.00233891653, -0.000372482638, -0.0150002278, 0.009901, -0.0196178611, 0.0104109226, -0.0212467816, 0.00672106491, 0.0101347147, -0.00599867431, 5.80413362e-05, 0.0217142105, -0.0103825936, -0.0192779135, -2.17032557e-05, -0.00405459385, -0.000478052563, 0.00206802, 0.0217283741, -0.0098868357, -0.0265018176, -0.00718849432, -0.00314452359, 0.000531169528, -0.00841372553, 0.00902988203, 0.0106375553, -0.00934150163, 0.0270542353, -0.0271675512, 0.0102409488, -0.0152835175, -7.97860921e-05, 0.00203614985, -0.00793921389, -0.00912195165, 0.0177198146, 0.00169797195, 0.000563039677, -0.0101984553, 0.0132579915, -0.00086226518, -0.0169974249, 0.000565695518, -0.0125851771, -0.0207085293, 0.00174666243, 0.00105348625, 0.00631737616, -0.00848454796, 0.00224507647, -0.00728056347, -0.00551708089, 0.00563393813, 0.00378192705, -0.0182439033, 0.00470616203, 0.0172098931, 0.0184422061, -0.0107437894, -0.0302554164, 0.0126347523, -0.00807377696, 0.00356945931, 0.00697956746, -0.0153685054, -0.0025000379, 0.00586057035, -0.00479114894, -0.013711256, 0.00509214541, 0.0180739276, -0.00226986455, 0.0108571053, -0.00603054464, -0.0148727465, 0.00143415772, 0.00135182648, 0.000478495203, 0.00141556677, 0.0170824118, -0.000755146029, 0.0121744052, 0.0154818213, -0.0384991691, 0.00199719751, 0.00133235019, 0.0102267843, 0.00760634756, 0.00815876387, -0.0124364495, 0.0121389944, 0.00886699, -0.0181305856, 0.00900155306, 0.00118096697, 0.00958229788, 0.0134987878, 0.0183572192, 0.0173373725, -0.00625363598, -0.0191787612, -0.0114449328, -0.0248304047, -0.0212042872, -0.00639882218, -0.0100638922, -0.000765326782, -0.00853412412, 0.0200144686, -0.0183147248, 0.0129109602, -0.0230740048, 0.011055408, -0.0106658842, -0.00142530492, -0.0127551509, 0.00888115447, 0.00750011392, 0.0123514617, 0.0125851771, 0.0112183, -5.44172108e-05, 0.0162891988, -0.0242779888, 0.000810033525, -0.0139095597, 0.00318701705, -0.0196036957, 0.00519837905, -0.0123514617, -0.0197170135, 0.0108216936, 0.0164591726, -0.0065298439, -0.00552416313, 0.00389524316, 0.0124081206, -0.0211334657, 0.00454327, -0.00784006249, -0.00538251782, -0.0242354944, 0.00148816, 0.0042174859, -0.0182155743, -0.00519837905, 0.0151418727, 0.00788255595, -0.00347030768, 0.00369694, -0.0122239813, 9.46145738e-05, -0.0266859569, -0.000196754045, 0.0202127714, 0.0160059091, -0.00714600086, 0.00761343, 0.00740096206, -0.013654598, 0.00814459939, 0.0150143923, 0.0010118779, -0.0369410701, -0.0206660349, 0.00760634756, -0.010510074, 0.0116078248, 0.000473183522, 0.0114590973, 0.0117990458, 0.010262195, -0.00119513145, 0.0160767306, -0.0047840667, -0.0152268596, 0.00294267922, -0.0175781697, -0.00140936975, 0.0135058705, 0.014886911, 0.00120486959, -0.00527274283, -0.00105614203, -0.0154251633, -0.0282723829, 0.00235839258, -0.003578312, -0.003167541, 0.00662191352, 0.0127126575, -0.016090896, -0.00441224826, 0.0126559995, 0.00148107775, 0.0118911155, 0.017677322, 0.00135979394, -0.0109704211, 0.0031622292, 0.00219195965, -0.00961771, 0.0233714599, -0.00688395696, -0.000268240605, 0.00414312212, -0.0158217698, -0.00623593, 0.00307901273, -0.0220541582, 0.0312186033, 0.0149010755, 0.00404042937, 0.0186263453, 0.0110979015, -0.00367569318, 0.00666086609, 0.00207687286, 0.0127905626, 0.0323517658, 0.0190371163, -0.00263460074, 0.000158244249, 0.0115936603, 0.000857838779, -0.0115086734, 0.0270400699, 0.00285060983, 0.0110483263, -0.00247170893, -0.0107721183, 0.0112395473, 0.00192106317, -0.0241221786, 0.00905112829, -0.0709925741, 0.013682927, -0.00527628418, 0.00724515226, 0.00682375766, 0.0164591726, 0.0125426827, 0.000793213141, 0.0220399946, -0.014341577, 0.000331980962, 0.00884574279, 0.00912903342, 0.0114449328, -0.0296038482, -0.00445120083, 0.0152268596, 0.00208041398, -0.00715662399, -0.00447953, 0.0272100437, 0.00772674615, -0.00214946596, -0.00703976676, 0.00294622034, 0.00354998303, -0.00243452704, 0.0127339037, -0.0239946973, -0.00742929103, 0.00224684714, 0.0184846986, 0.0114590973, -0.0127055747, 0.024929557, 0.004022724, 0.00390940765, -0.00974519, -0.0208501741, -0.0230173469, -0.00660420768, 0.00106145372, -0.00238849223, -0.0119973486, -0.0125426827, 0.00585348811, -0.0174081959, -0.00379609154, -0.000497528818, 0.00106322428, -0.00461055152, 0.00101099268, -0.0205385555, 0.00287539768, 0.0323800929, 0.0146177858, -0.0308503266, -0.00914319791, 0.0443349481, 0.00968853198, 0.0052019204, -0.0286973193, -0.0154251633, 0.00342958467, 0.0132934023, -0.0286123324, -0.0106588015, -0.000773294305, -0.012861385, 0.00999307, -0.0143486597, -0.00727348123, 0.0123372972, -0.0137962429, 0.00237786886, 0.0124576958, -0.00402626488, 0.0132934023, -0.004734491, -0.00104551867, 0.00453264639, 0.00562331453, 0.0110766552, -0.00933441892, 0.0167566277, -0.0122452285, -0.0031392118, 0.019292077, 0.00864744, -0.0113599459, 0.00512047438, 0.0141716031, -0.0126276705, -0.0128684668, 0.00143858418, -0.0117423879, -0.00878200307, -0.0145186335, 0.0149860624, 0.0177198146, 0.015326011, 0.0156942885, 0.0226773974, -0.0124931075, 0.0255244654, 0.00807377696, 0.00469553843, -0.00169974251, 0.0210484769, 0.00475573773, 0.0167991221, 0.0211617947, 0.00570121966, 0.00205562613, 0.0230031814, 0.00292851473, -8.6384207e-06, 0.024108015, -0.0134350481, -9.57765078e-05, 0.00362965837, -0.000636075507, -0.00898030587, -0.0384708382, -0.00177499151, -0.00798879, -0.00934858341, -0.00335167977, -0.00114644086, -0.0283998642, -0.00202198536, 0.0243913047, 0.00140671397, 0.0113599459, 0.0140441218, -0.0075638541, 0.014313248, 0.020581048, -0.0258644149, -0.00308609498, 0.00532586, -0.00249118498, 0.0106375553, 0.0154393278, -0.0345047712, -0.0284990165, 0.00407938194, -0.000435780326, 0.0116432356, -0.018966293, 0.00390940765, 0.00871118065, 0.0178331323, -0.00745053776, -0.0155101502, -0.00673168851, -0.00501424028, 0.00646964461, 0.00722744688, 0.0069016628, 0.00452556415, -0.00196355674, 0.000884397246, 0.00293205585, 0.0122239813, 0.00773382839, 0.00326138083, 0.0212751105, -0.00143150182, -0.00232829317, 0.00382442051, 0.00971686095, -0.00199542684, -0.0198161639, -0.0285273455, -0.0265868045, 0.00419978052, -0.0162608698, 0.0105525684, 0.00561977364, -0.00352696562, -0.00515234424, -0.00295330258, -0.016090896, -0.0143061662, -0.0303970613, -0.0199578088, 0.0121885696, 0.0211759582, 0.0112891234, 0.0126630813, 0.0246604308, 0.0178331323, -0.00358716492, -0.0057685012, -0.0122664748, -0.0101842908, -0.00577558344, 0.000737883, 5.08207522e-05, 0.0156659596, 0.00642006891, 0.00817292836, -0.00119513145, -0.0104180053, 0.0159634147, -0.00472032651, -0.0118415393, 0.00347207813, 0.0346464179, 0.0211476292, -0.0167991221, -0.0106375553, 0.0111970538, -0.0183005612, 0.00923526753, -0.00243275636, 0.0244196337, -0.0121531589, -0.00660774903, 0.0271533858, 0.0175923351, 0.000373810559, -0.00630675303, 0.0229040291, 0.000368720182, -0.00841372553, 0.0200427976, -0.014313248, -0.00282405131, -0.00122788688, 0.00882449653, -0.0132154981, -0.0051912968, 0.0195895322, 0.00125090429, 0.0101205502, -1.68895313e-05, 0.00519483816, 0.008236669, 0.0217425395, 0.0247737467, 0.00712121278, -0.0026735533, -0.00716724759, 0.0163600221, -0.016034238, 0.0292639, -0.00767008774, -0.00164219912, -0.00158554106, 0.00218310673, 0.000850756536, 0.0286123324, 0.0079250494, -0.00696894433, -0.0286406614, 0.0154251633, -0.0116644828, -0.0015032097, -0.0199861396, -4.04186794e-05, 0.00256554876, -0.00196178607, 0.00913611613, -0.00206802, 0.00835706759, -0.00272489968, 0.0115299197, -5.19273526e-05, 2.29343514e-05, -0.0017316126, -0.0105029922, -0.00206447882, -0.0194195583, 0.013930806, 0.00178295909, 0.0158784278, -0.00971686095, -0.0127976444, -0.0132792378, 0.0262043625, -0.000374253199, -0.0153685054, 0.0162608698, 0.00205562613, -0.00413958123, -0.00389170204, 0.00873242691, -0.0111970538, -0.00128985662, -0.00119424611, 0.0137395849, -0.0126489168, -0.0200286321, -0.0140228756, 0.0091644451, -0.0132084154, -0.0103401, -0.0358928964, 0.0226065759, -0.0207368582, 0.000533825369, -0.0125993416, 0.0108287763, -0.0141928494, -0.0120327603, -0.0275074989, -0.00691936817, -0.0167849567, -0.00819417555, 0.00809502322, -0.0109704211, 0.019377064, -0.000708226056, 0.0101134675, -0.00663253665, -0.00478760805, 0.00349155441, -0.0120327603, -0.0191221032, 0.0151418727, -0.00871118065, -0.0238105599, 0.0116503183, 0.00424227398, 0.0211617947, -0.00752136065, -0.0182580668, -0.0192070901, 0.00216717157, -0.000843674236, 0.0125001892, 0.012670164, -0.00419269828, -0.0100355633, -0.0177906379, -0.0051912968, -0.00570830191, -0.014122027, -0.0228757, -0.0147311017, 0.00023570648, -0.0170257539, -0.00515942648, -0.0217991974, -0.0041183345, -0.0001174106, 0.0357512496, -0.00212290743, 0.000444854464, -0.0144548938, -0.00239203335, 0.0415303744, 0.0197170135, 0.0183147248, 0.00430247327, -0.0253969859, 0.0138529008, -0.0136616798, -0.00879616756, 0.0034225022, 0.00786839146, -0.0226349048, 0.00764884101, 0.00645548, -0.00329148048, 0.018527193, -0.0143061662, -0.0169974249, 0.00290372665, -0.00604470912, 0.00677418197, 0.0654400885, 0.0179606117, 0.0225924104, -0.0224082712, 0.00696540298, -0.0122664748, -0.0097806016, 0.0324934088, -0.010644637, 0.0211051367, 0.00371110439, 0.00211759587, -0.00731597515, -0.00236193393, 0.00446182396, 0.00124205137, 0.0130384415, 0.010453416, -0.00183076435, 0.00106853608, 0.00525857834, -0.0232864711, 0.0154393278, -0.000284618349, -0.00749303121, -0.0256944411, 0.0106163081, 0.00355706527, -0.0181730799, 0.0271958802, -0.00228048791, 0.0263743382, 0.024547115, -0.00198834459, -0.017677322, 0.00351457158, 0.010672966, 0.0323234349, 0.00521962577, -0.0390657485, 0.0117777986, 0.0171107408, -0.00159350852, 0.00463179825, 0.00438037794, -0.0193345714, 0.0057578776, -0.00541084679, -0.00407938194, -0.0301704295, 0.0176348276, -0.0194337219, -0.0190371163, -0.0160059091, 0.00887407176, 0.0182297379, 0.0427201949, 0.0190087873, -0.0063846577, 0.00447244756, 0.0165866539, 0.00235131034, 0.00509922765, -0.00268240599, -0.00834998488, -0.0353263132, -0.00995057542, -0.0121319117, 0.004734491, -0.003167541, -0.0134208836, -0.0134350481, 0.00217602449, -0.0164308436, -0.0058676526, 0.0128472205, 0.00676355883, -0.00179977936, -0.0042174859, -0.0152693531, -0.0332016349, 0.0182580668, -0.0159634147, -0.0231164973, 0.00552770402, -0.0192212537, -0.0166008174, -0.00984434225, -0.00949731097, 0.00384920859, 0.00300819, 0.0139095597, 0.0139449704, 3.8731112e-05, 0.00749303121, -0.00189450465, -0.0157509465, -0.00584994722, -0.000263592869, 0.0148160886, 0.0178897902, -0.00397668919, -0.00465304498, -0.00173780962, 0.0119406907, 0.0285273455, 0.00663253665, 0.0134208836, -0.0121814879, -0.0036792343, 0.00444765948, -0.0159492511, 0.00670690043, 0.0108500225, 0.0106588015, 0.000704684877, -0.00941232406, -0.0035287363, -0.0133713074, -0.00934150163, 0.00733013963, -0.0147877596, 0.00404042937, -0.00506381597, -0.00986558851, 0.00307370094, 0.0075142784, -0.0115511669, 0.0173373725, 0.03136025, 0.00936274789, -0.00773382839, -0.00224861759, 0.00270542339, 0.0294622034, 0.0196178611, 0.00258148392, 0.00707517797, 0.0279607642, 0.00940524135, -0.0030347486, 0.0172523856, -0.0129888654, 0.00135802338, 0.00579683, 0.0105525684, 0.027776625, 0.0032950216, 0.053230267, -0.00124824839, -0.00354113, -0.00733722188, -0.0212326162, 0.0034738488, -0.00680605229, 0.014532798, 0.00455035223, -0.0181022566, 0.0262326915, -0.0219691712, 0.0167141352, -0.000976466632, 0.0269125886, -0.00723807, 0.00474511459, -0.0178189669, -0.00568705518, -0.0148727465, 0.00805253, -0.00878908485, 0.0176206641, -0.00284883915, -0.0111758066, 0.0159209222, -0.0101842908, 0.0148444176, -0.00925651472, -0.0231306627, -0.0122027341, -0.00438391929, -4.44301186e-05, 0.00601638, -0.00491508888, 0.0493775196, -0.00628904719, -0.0101134675, -0.00422102725, 0.0224790946, 0.0320684761, -0.010864187, -0.00826499797, -0.00175374467, -0.00505319284, 0.000164551893, 0.00273906416, 0.00871118065, 0.0193345714, 0.00705039036, 0.0146602793, 0.00253721979, 0.0257652625, -0.0139803821, 0.00919985585, -0.0140441218, 0.00522316713, 0.0190371163, -0.0164308436, -0.0108500225, -0.0115653314, 0.00513109751, 0.00793921389]
28 Nov, 2021
jQWidgets jqxToolBar close Event 28 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxToolBar is used to illustrate a jQuery widget that shows a toolbar where various tools can be spontaneously appended. Moreover, by default the jqxToolBar favour some widgets namely jqxButton, jqxToggleButton, jqxDropDownList, jqxComboBox as well as jqxInput. However, the custom tools can also be appended. The close event is activated whenever the minimize popup menu is closed. Syntax: $('#Selector').on('close', function(){}); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script><script type=”text/javascript” src=”jqwidgets/jqxdropdownlist.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcombobox.js”></script><script type=”text/javascript” src=”jqwidgets/jqxinput.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtoolbar.js”></script> Example: The below example illustrates the jqxToolBar close event in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxlistbox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxdropdownlist.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcombobox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxinput.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtoolbar.js"> </script> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3>jQWidgets jqxToolBar close event  </h3> <div id="jqxtb"></div> <br> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxtb").jqxToolBar({ width: "400px", theme: "energyblue", height: 70, tools: "button button | dropdownlist combobox | input", initTools: function (type, index, tool, menuToolIninitialization) { switch (index) { case 0: tool.text("Button1"); break; case 1: tool.text("Button2"); break; case 2: tool.jqxDropDownList({ width: 100, source: ["Java", "Scala", "C++"], selectedIndex: 2 }); break; case 3: tool.jqxComboBox({ width: 60, source: [4, 5, 8, 10, 15], selectedIndex: 3 }); break; case 4: tool.jqxInput({ width: 140, placeHolder: "Search..." }); break; } } }); $("#jqxtb").on("close", function () { $('#log').text("Minimize popup menu is closed!"); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtoolbar/jquery-toolbar-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtoolbar-close-event?ref=asr10
PHP
jQWidgets jqxToolBar close Event
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0278875716, -0.023057228, -0.00737320539, 0.0436044298, 0.0481866896, -0.0112002678, 0.0210287757, 0.0345274694, -0.0164465159, 0.00714336289, -0.0221670438, -0.0404231139, 0.00945638213, -0.0198905077, -0.00498357182, -0.00612548832, -0.0455599166, -0.00203939737, -0.00523165613, -0.0140532348, -0.0142867258, -0.00649761455, -0.062166959, -0.00845674891, -0.031725578, 0.0327471, 0.0208974369, 0.0141991666, -0.0181247331, 0.0282378085, -0.0325719826, 0.00978472922, 0.00835459679, -0.0207223184, -0.0342647918, -0.0289674681, 0.00379057927, 0.0334475748, -0.0344982818, -0.00201568333, -0.00198832108, 0.0141116073, -0.00574241718, -0.00971176289, -0.0255672559, 0.0159065686, 0.0214081984, -0.0497919396, -0.0167383812, 0.0473986566, 0.018489562, 0.0151185375, 0.0424661599, 0.0368915647, -0.00107168686, -0.025786154, 0.0123020532, -0.00318313786, -0.0362202786, 0.0303246342, 0.0160233136, -0.0221816376, -0.0217146557, -0.0199196935, -0.0147537077, 0.00432687858, 0.0300619565, 0.00219992222, -0.0354030617, 0.0207223184, 0.00660706358, 0.0226048399, -0.0199926607, -0.0313753411, 0.00431228522, -0.00776357297, -0.00511491066, 0.00502735144, -0.00901858695, 0.0048704748, -0.0150455711, -0.0137321847, -0.00612184, -0.000627506874, -0.00219262578, 0.00977743231, -0.00872672349, -0.0510761403, 0.0397518277, 0.0363662094, -0.00514774537, 0.00117110286, -0.0368915647, 0.0107040992, -0.0187230539, -0.0312877819, -0.0124042053, 0.0138854133, -0.0523895249, 0.040831726, 0.0195986442, 0.0106019471, 0.000750636798, -0.0206785388, -0.00327981776, 0.0224151276, 0.0263990667, -0.0103611592, 0.00815029256, 0.00507477904, 0.0234804302, 0.00700472761, -0.0283399597, -0.000668094144, -0.0440422259, 0.0349652655, 0.00334001472, -0.0240057856, -0.0198613219, 0.00955853425, -0.00839837641, -0.0212622676, 0.0436336175, 0.0438087322, -0.0470776074, 0.0412403345, -0.027610302, 0.0189711377, 0.0339729302, -0.0184603762, -0.0017831045, 0.0128638903, -0.00776357297, 0.00374679966, 0.034352351, 0.0189711377, 0.0114191649, 0.0229696687, -0.0217146557, -0.0134695079, -0.0217292495, -0.0282815881, 0.015746044, 0.0279167574, -0.00412257388, 0.0511928834, -0.0125209503, 0.024983529, -0.0261072032, 0.0207660981, -7.92934225e-05, 0.0139802685, 0.0187230539, 0.0288069416, 0.0549871102, -0.0069463551, -0.00933963712, 0.0259174928, -0.0233053118, -0.00525719393, 0.0135570662, -0.0468149297, 0.0311710387, 0.00202480401, -0.0451804921, 0.0167091936, 0.0142794289, -0.0122801634, -0.0497627519, 0.037212614, -0.0133746518, -0.0158044174, 0.00171561097, -0.00616561947, -0.0298138727, -0.0102954907, 0.00517328316, -0.0148558598, -0.0422910415, -0.0218314, -0.0267493036, 0.0163443647, -0.0313169695, -0.007873022, 0.00857349485, -0.00278182537, 0.00901129, -0.0128638903, -0.0350528248, -0.0214957576, -0.037767157, -0.00500546163, 0.000276586419, 0.015848197, 0.025684, -0.00908425637, -0.0168113466, 0.0246624779, -0.0152498754, -0.0240495652, 0.0145275136, -0.017686937, -0.00644653849, -0.0076687173, 0.015746044, 0.0468149297, 0.0137467775, -0.0674788728, 0.0367748216, -0.00336737698, -0.0117402151, 0.000201682342, 0.015395808, 0.000575518643, -0.0101860417, 0.0136008458, -0.0153374346, -0.0244143941, -0.012550137, -0.0259320848, 0.00275446312, 0.00812110584, -0.0130390087, 0.0190295093, -0.101393431, 0.00782194547, -0.00671286415, -0.023392871, 0.000336783298, 0.0272600651, -0.0293031111, -0.022137858, -0.0269973874, 0.00396934571, 0.0384384431, 0.0277562328, -0.00623493735, -0.00222546025, 0.0170448367, 0.0199634731, 0.0270995405, -0.00794598833, -0.0186792742, -0.00546879508, -0.000916634279, 0.00993066095, 0.00257387268, 0.0136446254, -0.0188397989, 0.00368660269, -0.0121269347, 0.0139729725, -0.0129149668, 0.0302078873, 0.0208536573, 0.00325792795, 0.0157752298, 0.00798976701, 0.0301203281, 0.00363370241, 0.0439254791, 0.0242830552, 0.00224917429, 0.0573220216, 0.0270119812, -0.000477926718, 0.0481283143, 0.00327616953, 0.00203939737, -0.0287923496, 0.0237431079, -0.0137248877, 0.0631009191, 0.0166362282, -0.013002526, 0.00977743231, -0.0358116701, -0.00852971524, 0.0129514495, 0.0083400039, 0.0101495581, 0.0219189599, 0.059890423, 0.03925566, 0.0204742346, 0.0155855194, -0.0172053631, 0.0169426855, -0.025100274, 0.0362202786, -0.0388178639, -0.0250856802, 0.0307332426, 0.0235679895, 0.0434001237, 0.0225026868, -0.00458955579, -0.0157606378, -0.0048960126, 0.00728929462, -0.0146807414, 0.00548338844, -0.0234950241, 0.00757386163, -0.00425026426, 0.0421743, 0.0458517782, -0.00216161506, -0.00264319, -0.0276248939, 0.0412987061, -0.015629299, -0.0457350351, -0.0140678277, -0.0177453104, 0.0161984321, 0.0200948119, 0.0291279927, -0.00474278443, -0.0220648926, 0.015629299, 0.0260926113, -0.044742696, 0.0485369265, 0.0439254791, -0.0219335537, -0.00688798213, -0.0227507707, 0.0150163844, -0.02123308, -0.00296424027, 0.000470174098, 0.0285004862, -0.00749359932, -0.026545, -0.0341480486, -0.00136172632, -0.0273476243, -0.0228967033, 0.0177453104, -0.0294928215, 0.00931774732, -0.00749359932, -0.0240641572, -0.00135899009, -0.0615248568, -0.0320174433, -0.0288507212, 0.0646769851, 0.0407733507, 0.00141371461, -0.00824514776, 0.0119737061, 0.00263224519, 0.0311710387, 0.00906966254, -0.0324844234, -0.016431924, -0.0249105617, 0.0284858923, 0.00904777274, 0.0376504101, 0.0281940289, -0.0211893, 0.0105216848, -0.0470484197, -0.0443340875, -0.0167821608, -0.0460560843, 0.0275519285, -0.015848197, -0.0431082621, -0.0197737627, 0.0602406561, -0.0143888779, -0.00716890115, -0.0046442803, -0.0238306671, -0.0211601146, 0.0217876211, -0.0316088349, 0.0410360284, 0.002110539, 0.0641516298, -0.00424661627, -0.0144691402, -0.0135643631, -0.0257423744, -0.0127690351, -0.0225026868, -0.0290842131, 0.0505215973, -0.0306748692, -0.0190295093, 0.0117985876, -0.000427078601, 0.00201021088, 0.00941989943, 0.0130900843, 0.0154541805, -0.0206785388, 0.011864257, 0.0437795483, 0.00501640653, -0.0217000619, -0.0321341865, -0.0239328202, 0.0221086722, -0.00390732475, 0.0245895125, 0.0184165966, -0.034352351, -0.0101495581, 0.0513971895, 0.00456036953, 0.0113534965, 0.0529148802, 0.0294490419, 0.0281502493, -0.0202991161, 0.0257131886, -0.0240057856, -0.0357241109, 0.0445675813, -0.00278000138, -0.0067566433, -0.0356949233, -0.0179058351, 0.0272454713, -0.0107770655, -0.00147391146, 0.0199051015, -0.0046552252, 0.0130536016, 0.0449761897, 0.00488141971, 0.0206201673, 0.0107843615, -0.00564391352, 0.0164611097, -0.0258737132, -0.00632614456, 0.0400145054, 0.00786572509, -0.0340604894, 0.0176431574, -0.0364537686, -0.0517474264, 0.0363078378, 0.0300327688, -0.0148923425, -0.0473110974, -0.059511, -0.00141006627, 0.0193505604, -0.0213936064, 0.0284712985, -0.000599688618, 0.0219335537, -0.0321633741, -0.00831811409, 0.0101422621, -0.035607364, -0.00338561833, -0.0281502493, -0.0377379693, -0.00353155029, 0.0426412784, -0.0238744467, 0.000354568736, -0.0158336032, -0.000541771878, 0.0376795977, 0.0338269956, 0.0232323464, 0.00177489582, -0.00750089576, 0.00608900562, 0.00230025034, -0.0235679895, 0.0248084106, 0.0112513434, 0.0257423744, 0.0263844747, 0.0165778548, 0.0137467775, 0.027610302, -0.0312877819, 0.0160670932, 0.000110816982, 0.0168697182, -0.00744981971, -0.0404814892, 0.0025209724, -0.0105070919, 0.0143961748, -0.0445383936, -0.00611819187, 0.0509010218, 0.000754285138, 0.0238598529, 0.0281356554, -0.0364537686, 0.0646186098, 0.0124333911, -0.0127252555, -0.0210287757, 0.00364282308, 0.0120101888, -0.0224880949, 0.00279277028, -0.0302370749, -0.0371542424, 0.00553811295, -0.00136902288, -0.0618167222, -0.0316672064, 0.0175993778, 0.0314337164, 0.00839108, 0.0177890901, -0.0198029485, 0.00912803598, 0.00451659, 0.0418240614, 0.0410360284, -0.00838378351, -0.0205472019, -0.00362823, -0.0246624779, -0.00469900481, 0.00449834857, 0.0263990667, 0.00780735258, 0.00201750756, 0.010725989, -0.0178620555, -0.00314665493, -0.0187814254, -0.0104268286, -0.0060014464, 0.00899669714, -0.00999633, -0.00554905785, 0.00770520046, 0.00822325796, -0.0026742008, -0.0119883, 0.0245603267, 0.0236409549, -0.00292593311, 0.023276126, 0.00817947928, 0.0136373295, -0.0104924981, -0.00615102658, -0.0292009581, -0.0185479354, -0.0139146, -0.0132870926, -0.00933963712, -0.00487777125, 0.0170302447, 0.0113024199, 0.00980661903, -0.0296241604, 0.0393724069, 0.0258007459, -0.0210871492, 0.0139510827, 0.016650822, 0.0102736009, -0.00882887561, 0.0017174352, 0.0111200055, 0.00169828162, 0.0283691473, -0.00875590928, 0.0213644188, 0.00176577515, 0.00489236461, -0.0101130754, 0.022371348, 0.00538488431, 0.0145931821, -0.0117839947, 0.0201094057, -0.0044947, -0.0626923144, 0.0320758149, -0.0262239482, 0.0198467281, 0.0105216848, 0.0185333416, -0.0227653645, 0.0233345, 0.00569134112, -0.000483855198, 0.0216562822, -0.0113024199, 0.0248375963, 0.0072017354, 0.0289674681, 0.0335643217, -0.0176431574, -0.0163297709, -0.0113680894, 0.00325975218, 0.0310542919, 0.0184603762, -0.00512950355, -0.0264282543, 0.0248084106, -0.0082816314, -0.0132068302, -0.00992336404, -0.00686244387, 0.00694270665, -0.00865375716, -0.024297649, 0.0266325586, -0.00377963437, 0.0170302447, -0.0109959627, 0.0347317755, 0.00831081718, -0.0104341256, -0.00535934651, -0.00226376741, -0.0285004862, -0.000689527893, 0.0103319734, -0.0143888779, 0.00935423, 0.0113607924, 0.0326595418, 0.0154979602, 0.0415321961, -0.0380298346, 0.00835459679, 0.00990147423, 0.00982850883, -0.0288069416, 0.0664865375, -0.013002526, 0.00545420218, -0.000930315407, 0.0136154396, 0.0186209, -0.0294490419, -0.015395808, 0.018489562, -0.0128055178, 0.00677123666, -0.0172199551, -0.00396569725, 0.00724551501, 0.00994525384, -0.0155709255, 0.0264428463, -0.0198905077, -0.0377087854, 0.0146880383, 0.0264136605, 0.0140897175, -0.0235533975, 0.0475737751, 0.0313169695, 0.0128565943, 0.00386354513, 0.0181101393, -0.00569134112, -0.000449880463, -0.00185789459, -0.0188397989, -0.0153082488, -0.00378693081, 0.00380882062, 0.0116453599, -0.00976283941, -0.00616561947, 0.0255964417, 0.0175118186, -0.0105508706, 0.0259758644, -0.0141407941, -0.0188543927, 0.0165194832, -0.0102079315, -0.00265048677, -0.0039255661, -0.0233782791, 0.0232615322, 0.0394015945, 0.00439984445, 0.00169007294, 0.00931774732, -0.032280121, -0.0147391148, -0.0348193347, -0.0158190094, 0.00392921455, -0.0256548151, 0.0399853215, -0.00469170837, 0.0176139716, -0.000510761398, 0.0108500309, -0.0219773334, 0.0116964355, 0.0311418511, -0.0083035212, -0.013009822, 0.0509302057, -0.0031667205, -0.00242794072, 0.00812110584, -0.00836189371, -0.0100547029, -0.00550163, 0.000605161, 0.0265012197, 0.0051112622, -0.0241225306, -0.0175993778, -0.012783628, 0.0076906071, -0.0107551757, -0.00179860974, 0.00396204926, -0.0113753853, 0.026924422, -0.00145931821, -0.000779823167, -0.0117183253, 0.00623493735, 0.0142867258, -0.00644653849, 0.0272892509, 0.00165997457, 0.012323943, -0.0110324463, -0.0134038385, 0.0290404335, 0.0200510323, 0.00304997526, 0.0166070424, 0.00469170837, 0.0250710882, -0.00960231386, 0.00727470173, -0.0169426855, 0.00236409553, -0.026924422, 0.00341115636, 0.0109959627, -0.0346442163, 0.0260780174, 0.0153228417, 0.00102699525, 0.00806273334, 0.0117402151, -0.0368331932, 0.000550436613, 0.000593304052, 0.0114264619, 0.00102608313, 0.00146387867, 0.0140532348, -0.00986499153, 0.00184603757, -0.0135497702, 0.0291717723, 0.00203757314, 0.0195256788, 0.00576430699, -0.00109175243, 0.0169718713, -0.0124990605, -0.0146223688, -0.0259174928, -0.00476102578, -0.000123928039, -0.0140167521, 0.0236409549, -0.0263698809, 0.000554540951, 0.00404231157, 0.0347317755, 0.0569717847, 0.0131046781, -0.0209558103, 0.0232031606, 0.0285880454, -0.00363917486, -0.0423494168, -0.0170302447, 0.0143086156, 0.0188543927, -0.0311418511, 0.0224151276, -0.000136127026, -0.00200656266, 0.0347317755, 0.000742884178, -0.00866105407, -0.0277416408, -0.00187157572, -0.0356365517, 0.00145658199, 0.0183436312, 0.00488871615, -0.0275957081, 0.000767054153, 0.000573694473, 0.000101240206, -0.0157606378, -0.0207077265, -0.0194819, -0.00357350567, -0.00728564616, 0.0152352825, 0.0255234763, -0.0143450983, -0.0358116701, 0.0323676802, -0.00756656518, 0.0102808969, -0.00670556724, -0.0060014464, -0.0101714479, -0.00585916266, -0.0410944037, -0.00385260023, -0.00157059124, 0.00706674857, 0.0276686735, 0.00147117523, 0.0149069363, 0.020124, -0.0097555425, 0.00906966254, -0.0132725, 0.00308463397, 0.0171469897, 0.0347901471, -0.0197153892, 0.0125282472, 0.0105508706, 0.0114994282, 0.0152206896, 0.0248084106, 0.00406785, 0.026924422, -0.0309667327, 0.0199926607, -0.0124479849, 0.0404523, 0.00904047675, -0.0083764866, 0.00992336404, 0.0114629446, -0.0240203775, -0.0060707638, 0.0228383299, -0.00494708866, -0.0182852577, -0.0466398112, -0.0326011702, 0.00898210425, 0.00222910871, -0.0226632133, 0.0134257283, 0.0262969155, 0.0214957576, -0.0130244158, -0.0141918696, 0.00747900596, 0.0138197439, -0.0210433695, 0.0480115712, 0.00586281111, -0.0261801686, -0.0192192215, -0.00688798213, 0.0558335148, -0.033535134, 0.000202252384, 0.00616197148, 0.0190441031, -0.03058731, -0.000435287278, 0.0101933377, -0.0545493178, -0.0216708761, -0.00570593448, -0.0301787015, -0.0119445203, 0.00396204926, 0.00945638213, -0.00405690493, -0.00728199817, 0.00385989668, 0.0146223688, 0.0287777558, -0.00326522463, -0.0191024765, 0.0534402356, 0.00673475396, 0.00851512235, 0.0153812142, 0.0401896238, 0.00904047675, -0.00931774732, -0.00801895373, 0.00733307423, -0.0313753411, 0.0222837906, 0.0186792742, -0.0422618575, -0.0267930832, -0.015293655, -0.00671286415, 0.0516890511, -0.0266471505, -0.0304121915, -0.0142429462, 0.00130426569, -0.0147828935, -0.00282925321, 0.00353519851, -0.00104158837, 0.0179642085, 0.00226194318, -0.0151623171, 0.0113389026, 0.0172929205, 0.0174972266, -0.041882433, -0.0182122923, 0.0447135121, 0.0251586474, -0.0419116206, 0.00538123585, 0.0035880988, -0.0213060472, -0.018372817, -0.00185242214, -0.0282961801, 0.0300035831, 0.00232031592, -0.010835438, 0.00725646, -0.0304413792, 0.00592483208, -0.044509206, -0.0307332426, 0.00221633958, -0.0116161732, 0.00323421415, -0.00585186621, -0.0483618081, -0.00492155086, 0.00387813826, 0.0263261013, 0.0108281411, -0.00407514628, 0.0041772984, 0.0290988069, -0.00794598833, 0.00706310058, -0.00898210425, 0.0245603267, -0.00445821742, -0.00483764, 0.022240011, 0.00775627652, -0.03035382, -0.00329805934, 0.0108573278, 0.0208244715, 0.012090452, 0.00411162898, 0.0078949118, 0.00410433253, -0.00259211403, 0.00667273253, 0.00176030269, 0.0104852021, 0.0250273086, 0.0038270622, -0.0157314502, 0.0120758582, 0.0144326575, 0.0289236885, -0.0016088984, 0.0730826557, -0.0205909815, -0.0179058351, -0.0339437425, -0.0266763382, 0.00916451868, -0.00236227154, 0.0122217899, -0.0131995333, 0.0277124532, -0.00356620899, -0.00153137208, -0.00833270699, 0.0116599528, -0.026705524, 0.0103903459, 0.0107113961, 0.026005052, 0.0250710882, 0.024998121, 0.0205909815, -0.00684785098, 0.0355198048, 0.00699743116, 0.020532608, -0.00636992417, 0.0119445203, -0.0341480486, 0.00782194547, 0.0133673549, 0.00165541412, 0.00215249439, -0.00868294388, -0.000860085711, 0.00113553205, -0.000896568643, -0.0193359666, 0.00138452824, 0.0032287417, -0.0245165471, -0.000273850193, -0.0200510323, -0.00938341673, -0.00413716724, 0.0145275136, -0.00982850883, -0.0302078873, 0.024078751, 0.00425391272, -0.00772709027, 0.00659976667, 0.0162276197, 0.000600144616, -0.00666908454, -0.0190295093, -0.00404960802, 0.0181539189, -0.0131484577, 0.0102079315, -0.000238051289, 0.0123458328, -0.0360159762, 0.0381465778, 0.0312877819, 0.00213607703, -0.0270119812, -0.00776357297, 0.00679312646, -0.0184457824, -0.00326704886, -0.00711052818, -0.0151477233, -0.00373220653, 0.00840567332, -0.0164902955, -0.0161984321, 0.00370302, -0.00809921604, 0.0134986937, 0.0190441031, 0.000854157202, -0.00598320505, -0.0023057228, 0.00984310172, 0.0280189104, 0.0121123418, 0.00619480619, 0.00667638099, -0.0262531359, -0.00779275969, 0.0233636852, -0.0143523952, -0.0179788, -0.0397226438, -0.000593304052, 0.0057971417, -0.0127617382, 0.00379057927, -0.0154104009, -0.0268660486, 0.0032634004, 0.0839983597, -0.00930315349, 0.0211309288, -0.00753737893, -0.0203283038, -0.0319298841, -0.0257569663, -0.0057825488, 0.0292009581, -0.0130244158, 0.0126085095, -0.00197555218, -0.0174972266, 0.00476102578, -0.028865315, -0.0413278937, -0.0189127643, -0.00664719474, 0.0218459945, -0.018825205, -0.00931774732, 0.00840567332, 0.0119664101, -0.0133965416, 0.00601968775, 0.0173512939, -0.0174826328, -0.0216562822, -0.056242127, -0.00101878657, 0.0266179647, 0.00928126369, 0.0209704041, 0.00106530229, 0.00349506713, 0.0321050026, 0.00582632795, -0.0266179647, -0.016431924, -0.0192046277, 0.00485223299, -0.0181101393, 0.00915722176, -0.00860997755, -0.00298795407, -0.0277854204, -0.0151477233, -0.0226924, -0.0240203775, 0.0063224961, -0.0289966539, -0.0190441031, 0.0124990605, -0.00858808775, -0.0175118186, -0.00968257617, 0.0115067242, -0.0254213233, 0.0055454094, -0.0122144939, -0.0345566571, -0.00526813883, -0.00244253385, -0.0265887789, 0.0116526559, 0.00791680161, -0.0141262012, 0.0180079881, -0.0332432687, -0.00772709027, 0.0379130878, 0.00510761375, -0.00238233712, 0.00238598534, -0.0145494035, 0.00372673408, -0.0060123913, 0.00492519932, 0.0153666213, -0.0088434685, -0.0324844234, 0.0212768596, -0.0149215292, 0.00246442365, -0.00704121077, 0.00968987308, -0.00268879393, -0.00611819187, 0.00846404582, 0.00722727366, 0.00174662156, -0.0226340257, -0.0158190094, -0.00636262773, 0.0145931821, 0.0121415276, 0.0294782296, 0.0150017915, -0.00869024, 0.00532286335, 0.0251586474, -0.000339519524, -0.00591023872, -0.00113918027, -0.013002526, -0.0242392756, 0.0334767625, 0.00681866473, -0.00740239164, 0.0137686674, 0.0389054231, -0.00166635902, -0.0319882557, 0.00914262887, 0.00199926598, -0.0121342316, 0.00423931936, 0.0157314502, 0.0118277743, 0.0234658383, -0.0215395372, -0.0259758644, -0.0249397494, 0.0109302942, 0.0137029989, -0.0161692463, -0.00995984674, -0.000383755105, -0.00823785178, -0.000480206916, -0.0249105617, 0.0179350208, -0.0245457329, -0.00110543356, -0.0438087322, 0.0154395867, -0.0160379075, 0.0393140353, -0.00343669439, 0.0379422754, -0.0368623808, 0.0131849404, -0.00647207629, 0.00470265327, 0.0130317118, 0.00668002944, -0.00379057927, 0.00127781555, 0.00484128809, 0.00408244273, -0.0236993283, -0.0150893508, -0.00833270699, 0.0204596426, 0.0170156509, -0.0214373861, -0.0156001123, -0.000570502249, 0.00219262578, 0.00552351959, -0.00499451673, 0.0120028928, -0.00379057927, -0.000389683584, -0.0151039436, 0.00664719474, -0.00193724502, -0.0300911423, -0.00259393826, -0.0112659372, 0.0192192215, -0.0160525013, 0.00114191649, -0.0049069575, 0.0136446254, -0.00573876919, 0.0160670932, 0.0326011702, 0.00509302085, 0.00550892623, -0.0145639963, 0.0198029485, -0.0255672559, -6.68664215e-05, 0.0153082488, -0.00143286807, -0.00867564697, -0.01357166, 0.00850782543, 0.0175993778, -0.020415863, -0.0270557608, 0.0249689352, 0.00711417664, 0.0394307785, 0.00905507, -0.013462211, 0.000474734465, -0.00965339, 0.0209412165, -0.0129076699, 0.00644289, 0.0167237874, -0.00912073907, -0.00638451753, -0.0167091936, -0.000683599385, -0.0119883, 0.00872672349, -0.00778546277, 0.0170886163, 0.0064903181, 0.00751548912, -0.0303246342, 0.0306164976, 0.000167365564, 0.0331265256, -0.0378255285, -0.00128237589, 0.000147755971, 0.00770520046, -0.00407514628, -0.0482158735, 0.022356756, 0.0115650976, 0.015629299, -0.0103538632, -0.00788761489, 0.00801895373, 0.0170302447, -0.0246916655, 0.0253045782, 0.0300619565, 0.0114702415, 0.00823785178, 0.00354431919, 0.00605617091, -0.0319298841, -0.015862789, 0.0130171189, 0.0145639963, 0.0128128147, 0.00154961355, 0.00847134273, 0.00467346655, -0.000109904904, 0.01483397, 0.00561107881, -0.000337695354, 0.0238014814, 0.0131995333, 0.0121050449, 0.0231156014, -0.0195986442, 0.0190149173, -0.0171907693, 0.00708134193, -0.0112075638, 0.015293655, -0.0211601146, 0.00182232365, -0.0083035212, -0.0216270965, -0.00780005613, -0.0336518772, 0.0218897741, -0.00996714365, 0.000297792139, -0.0242684633, 0.00512220711, 0.000990512315, 0.0146515556, 0.034585841, -0.00649761455, 0.00819407217, -0.0288507212, 0.0129587464, 0.0178182758, 0.0111418953, -0.0079313945, -0.0015113065, -0.00658517377, -0.0123969084, -0.00287303282, -0.0149361221, 0.00271433196, 0.00664719474, 0.00911344215, -0.0110178525, 0.0219189599, 0.00832541101, 0.0139291929, -0.00217256, 0.0127982209, -0.0163881443, 0.028529672, -0.00701202406, -0.0290404335, -0.0125428401, -0.0225756541, 0.00269426638, -0.0351987556, -0.0191170685, -0.0138854133, -0.002652311, 0.0122363837, 0.0121196378, -0.0150163844, 0.0196424238, -0.00340203568, 0.00666178763, -0.0302078873, 0.000701384852, -0.000356620905, -0.00548703643, -0.00631884811, -0.0105362777, -0.00820136815, -0.00493614422, -0.0287047904, 0.0109375902, -0.0151039436, -0.0398685746, 0.0193651523, 0.0155563327, -0.0238160733, 0.00511491066, -0.00516598672, 0.0103611592, -0.0260342378, 0.00942719635, -0.00435241684, -0.0119445203, -0.00337832165, -0.0060123913, 0.0168551262, -0.000945820648, -0.0342064202, -0.0137540745, -0.00351695693, -0.00379787572, 0.0023038988, -0.00742428144, 0.00591023872, 0.016650822, -0.0048704748, -0.012199901, 0.0145639963, -0.019408932, -0.0353155024, -0.00888724811, 0.00364099909, 0.000506657059, 0.0171761755, 0.0197007973, 0.027960537, 0.0120174857, 0.00434147194, 0.000560013403, 0.0065158559, -0.0039584008, 0.00485223299, 0.00587010756, 0.00234038173, 0.0166800078, -0.0126449922, -0.0212622676, 0.00105162116, 0.00124680507, -0.00755926874, 0.00850052852, -0.00198467285, -0.000518970075, -0.0159211624, 0.00927396771, 0.00470994972, -0.0143450983, -0.0147974873, -0.0172491409, 0.0125793237, -0.0133235753, 0.0168697182, -0.00141827494, -0.0121707143, 0.0286172312, -0.0097920252, -0.00685149943, 0.00917911157, 0.00771249691, -0.0147026312, 0.0461436436, 0.00939071272, 4.92234904e-05, 0.0125720268, -0.03035382, 0.0109229973, -0.0523019657, 0.0117402151, -0.0243706144, -0.00812840275, 0.00491790241, -0.0076906071, -0.0454431698, 0.00982850883, 0.0214373861, 0.00838378351, -0.00411162898, -0.00690257549, 0.00342027727, -0.00512585556, -0.0134038385, 0.0275373347, -0.0361035354, -0.0357533, 0.00643194513, 0.0300619565, 0.0144472504, 0.00825974159, 0.00620939909, 0.00144837331, -0.00933234, -0.015746044, -0.014943419, -0.00168095226, -0.00131977093, -0.0270265732, 0.00300619565, -0.000736043672, -0.0316380188, 0.0131995333, 0.0130608985, 0.0024242925, 0.0173658878, -0.011747512, -0.00615102658, 0.0129952291, -0.0309959203, 0.00890913792, 0.0266033709, 0.0131265679, -0.00946367905, 0.0142575391, 0.0300911423, -0.011981003, 0.0117985876, -0.00574606564, 0.0252024271, -0.00954394136, -0.00526084239, -0.00469900481, 0.00746076461, -0.012199901, -0.0183874108, 0.012659586, -0.0110032596, -0.0083035212, -0.0121196378, -0.00793869141, 0.00550892623, -9.75919102e-05, -0.000878783234, -0.00638451753, -0.00228383299, 0.0138343368, 0.0216854699, -0.003936511, -0.000157104732, -0.0173512939, 0.00321597257, -0.00708134193, 0.00513315201, -0.0261509828, 0.00230025034, 0.0082816314, 0.00864646, -0.00887265522, -0.00227471231, 0.00714336289, -0.0260926113, 0.00496533047, -0.0024480063, 0.00887265522, 0.014607776, -0.0122874593, 0.0179204289, 0.0157752298, 0.00500546163, 0.0109084044, 0.0173512939, -0.000162691184, 0.0272016916, 0.00479021203, 0.0130171189, 0.0148485629, 0.00202662824, -0.00177215959, 0.00743522635, 0.0182122923, -0.0170594305, -0.0145348096, 0.0135278804, -0.00121305825, 0.00302626123, 0.00774898, 0.0101787448, 0.0104633123, -0.00433782348, -0.0108573278, 0.010725989, -0.0020886492, -0.00616561947, -0.0144545473, -0.0231010076, 0.00930315349, 0.00240240269, -0.00272892509, -0.0044509205, -0.0140459379, 0.0183436312, -0.00334548717, 0.0234658383, 0.00941989943, 0.0124115022, -0.0350820124, -0.00918640848, 0.00091070577, -0.0122582735, -0.00387084158, 0.0132797966, -0.0109157, 0.015629299, 0.0163881443, -0.00704121077, 0.00914992578, -0.0172345489, -0.0355198048, 0.00316854473, 0.00484128809, -0.00629331, 0.0137175918, -0.00914992578, 0.00654504215, -0.0249397494, 0.0172929205, -0.000236683176, -0.00233673328, 0.00189893786, -0.013688405, -0.000213881329, 0.00182597199, -0.000573238474, 0.0240349714, 0.00434147194, 0.0178182758, 0.0127398483, 0.00237504044, -0.00127325521, 0.00197007973, 0.00552351959, 0.00246624788, 0.010725989, -0.00734037068, 0.00363552663, 0.0215541311, -0.00422472646, 0.015746044, -0.00271798018, 0.0150309782, -0.000825426891, -0.0144618442, 0.00834730081, -0.00232396438, 0.00734766759, 0.00446916232, 0.023845261, 0.0336518772, 0.00618750928, 0.00638086908, -0.0181393251, -0.0185187478, 0.00109357666, -0.0324552394, 0.00707404502, 0.0239036325, -0.00221451535, 0.00207405607, 0.00575701054, 0.0130900843, -0.00552716805, -0.0241517164, -0.00889454503, -0.0105289808, -0.0151623171, -0.0219773334, 0.00550527824, -0.0103173796, -0.0127544412, 0.016884312, 0.00635897927, 0.0104049388, -0.00550892623, -0.010383049, -0.00513315201, 0.00052991492, -0.0107843615, -0.00211601146, 0.00394015945, 0.000770702434, -0.0171178039, 0.011871554, 0.00657787686, -0.0234220587, 0.0118350713, -0.007873022, 0.0136665152, -0.0242392756, 0.0125355441, -0.00916451868, -0.0231885668, -0.00155052566, 0.0107916584, 0.0206055734, -0.0071652527, 0.00181320298, 0.0323968641, 0.0113607924, 0.0181685127, -0.000918914448, -0.00885076541, 0.00171105063, 0.0151477233, 0.00524989748, -0.007873022, 0.0166216344, -0.00110178534, 0.00888724811, -0.000825426891, -0.0100911856, -0.00234403, -0.00300437142, 0.0158044174, 0.0233199056, -0.013805151, 0.000738323841, 0.00146570278, 0.0132068302, -0.00890184101, 0.0279313512, 0.0106968032, -0.00756656518, -0.00344216684, 0.0313169695, -0.024078751, -0.00269973883, 0.00446916232, -0.0170740243, 0.0189857297, 0.0103465663, -0.0169280916, 0.0102225244, 0.00309193064, -0.00623128889, 0.00496533047, 0.0178620555, -0.0083035212, -0.0188543927, 0.0161108728, -0.00181229087, 0.00322691747, -0.0076687173, 0.0136008458, -0.00496168202, -0.0130463056, 0.011068929, 0.00268879393, 0.0144180646, 0.0313461572, 0.000785751676, 0.0032396866, 0.0120612653, -0.00305179926, 0.0125355441, 0.00318861031, -0.00367930625, -0.00400582841, -0.0101422621, 0.000932595576, 0.0125647299, 0.00860997755, -0.00850052852, -0.000710961584, 0.00184512557, -0.012659586, -0.015746044, 0.0415613838, -0.00499816518, -0.00326522463, 0.0199634731, 0.0153520284, 0.00484493654, 0.00274351821, -0.00744617125, -0.0260634236, 0.0013261555, 0.0220940784, 0.0181976985, 0.0109084044, 0.0142137595, 0.0102590071, 0.0262385421, -0.0223129764, -0.000866014161, 0.00904047675, 0.00420648465, -0.0169572774, 0.0122801634, -0.0108865146, 0.0100109233, 0.0162130259, 0.00678947801, -0.0031211169, 0.00498357182, -0.0115140211, -0.00893832464, -0.0241371244, 0.0158336032, 0.00974824559, -0.0282378085, 0.0245165471, -0.0163151789, -0.00105435739, 0.0350236371, -0.00116198219, -0.0133089824, -8.89984585e-06, 0.0142429462, 0.00127051899, 0.00637722062, 0.000482031057, 0.00519152451, 0.032280121, 0.0020868252, -0.00457496289, -8.84711699e-05, 0.00480115693, -0.0108719207, 0.0213644188, 0.0153520284, -0.0154833663, 0.0201677792, -0.00323786237, 0.000739235897, 0.000608809351, -0.00849323254, 0.00500546163, -0.00686609233, 0.0146369617, 0.0197445769, 0.0209120307, -0.00713241799, 0.0156730786, -0.0333892033, 0.0172053631, -0.0172199551, 0.0079313945, 0.00596496323, -0.00611089496, 0.0131849404, -0.00353337429, 0.0260342378, -0.0112513434, -0.00623128889, 0.0159649421, 0.0165924486, 0.00510396576, 0.0130317118, -0.0199780669, -0.0108135482, 0.00882887561, -0.000145475788, 0.0041517606, -0.00299889897, -0.0119518163, 0.0223129764, -0.0110324463, -0.0243122429, -0.00059147994, 0.00366653712, 0.0167237874, -0.0126158064, -0.026121797, 0.00822325796, 0.012893077, -0.00616561947, 0.000934875745, 0.00175665435, 0.0147391148, 0.0112805301, -3.75090385e-05, 0.00869753677, 0.00491425442, -0.0251586474, -0.0137613714, -0.0143305054, -2.25025742e-05, 0.0212768596, 0.00376504101, 0.00721632876, 0.00772709027, -0.0157168582, 0.00504924124, -0.0194527116, -0.00849323254, 0.0316963941, 0.0117037324, -0.0157606378, 0.0130463056, -0.0237431079, -0.00718349405, -0.00515869, 0.0192192215, 0.00472819107, -0.00790220872, 0.00348412222, -0.00129149668, -0.00247536856, 0.00148576836, -0.0105289808, 0.00118843233, -0.00347682578, -0.0108427349, -0.0060342811, -0.0176285654, 0.011068929, 0.00235132664, 0.00137084711, 0.00760304788, 0.0100765927, 0.0167821608, 0.0106968032, 0.00913533196, 0.0320758149, 0.00111911469, -0.0176723432, -0.00334366295, -0.0139583787, 0.0161692463, -0.0236263629, -0.00115924596, -0.0181101393, 0.0169718713, -0.0123750186, 0.00658152532, 0.00319773122, 0.0260342378, 0.0157168582, -0.00121579447, -0.000118227581, -0.0067566433, 0.00814299565, -0.00643194513, 0.00269973883, 0.00866105407, 0.01517691, -0.00105253328, 0.0318423249, -0.00328711444, -0.00298065762, 0.00285479124, -0.0275665224, -0.0012942329, 0.00179040106, 0.0107770655, 0.00628601341, 0.0273622181, -0.0227215849, -0.0346442163, -0.0053155669, -0.0143378023, -0.00329805934, 0.00290769152, -0.00438525155, -0.0105581675, 0.0125209503, 0.00604157755, -0.0174388532, -0.00849323254, 0.0207660981, 0.0152790621, -0.00881428272, -0.00684420252, 0.00833270699, -0.00668732589, 0.00204304559, 0.00596861169, 0.0139146, -0.0060123913, -0.00360269193, -0.0186646804, 0.0107551757, 0.00735496404, -0.0141116073, -0.000654869073, -0.000992336427, -0.00315212738, 0.00217985664, 0.0193797462, -0.00539947767, 0.0278875716, 0.0138635235, -0.0309083611, 0.020196965, 0.0311418511, -0.0379714593, -0.028529672, -0.012090452, 0.0257131886, -0.0101057785, -0.00569863757, -0.00911344215, -0.0062750685, 0.0246478859, -0.0106968032, -0.0110543361, 0.00769790402, -0.00274169422, -0.00125775, 0.00404231157, 0.0226632133, 0.0163443647, 0.00190988276, 0.0046442803, 0.00452023838, -0.00479750894, 0.0144472504, 0.011864257, -0.0240349714, -0.00738415029, 0.00430498878, -0.00939801, -0.0123385359, 0.00379422749, -0.0165340751, -0.00649761455, 0.00581538305, -0.0196570177, -0.0147099281, 0.00461144559, 0.00320137944, 0.000268605771, 0.015395808, -0.00967528, -0.0120612653, 0.000740604, -0.0152352825, -0.025684, 0.00881428272, 0.000183326862, -0.00300984387, 0.00798976701, -0.0180517677, 0.0186938662, 0.00831811409, 0.0190732889, 0.0177307166, -0.0177307166, 0.00462968694, -0.00766142085, -0.0275373347, 0.00403866312, -0.0190586969, 0.0219043661, 0.0165048894, -0.0200656261, 0.0104924981, -0.0096606873, 0.00327069708, 0.00734766759, 0.0301203281, -0.0100182202, 0.01517691, -0.00249361014, -0.0306164976, 0.00821596198, 0.0308499876, -0.000354796764, 0.00392921455, 0.014374285, 0.00512220711, 0.00639911043, 0.00665813964, 0.00391462119, -0.00715430779, -0.00268149725, -0.0200072527, -0.00565850642, 0.0133673549, -0.0266909301, 0.013578956, 0.0139000062, 0.00753737893, -0.0011747512, 0.00680407137, 0.0178620555, -0.0173804797, 0.000785751676, -0.0149871986, 0.000667182088, -0.00246442365, -0.0198759139, -0.0132506099, 0.0108938105, 0.0160962809, -0.00796787813, 0.00157241547, -0.0150747579, -0.011638063, 0.00170649029, 0.0205180142, 0.0167091936, 0.00963879749, -0.0168989059, 0.0208244715, 0.0339729302, 0.0189711377, -0.0149288261, -0.00121032202, 0.00437430665, 0.011864257, -0.000520794187, -0.000760669645, -0.0114410548, 0.0113097169, 0.00764682749, 0.00161619496, -0.00348229823, 0.00748630287, 0.014264836, 0.0163881443, 0.0354614332, 0.00462239049, -5.13041584e-07, -0.0112513434, 0.00232578837, -0.0148193771, 0.0142210564, -0.0306748692, -0.0106311338, 0.00394380745, 0.00817218237, 0.0103100836, 0.0292447377, 0.000284111, -0.027041167, -0.0199051015, 0.0150747579, -0.0182706639, -0.00444727251, 0.0296825338, 0.00954394136, -0.0131411608, 0.000764317927, -0.00514409691, 0.00782924239, -0.011747512, -0.014374285, 0.00384165533, -0.0344982818, -0.0211163349, 0.0155271459, -0.000545420218, 0.0222254172, -0.023276126, 0.0190586969, -0.000548612443, 0.0131338639, 0.0207077265, -0.00994525384, 0.0153812142, -0.0151039436, -0.00358627457, -0.00364829553, 0.00650126301, -0.0117912916, -0.00365741644, -0.00291316397, 0.0109886667, 0.00652315281, 0.0180517677, 0.0122509766, -0.00253191707, -0.0043816031, 0.00638451753, 0.0032177968, -0.0125939166, -0.0114410548, -0.0106019471, 0.0152498754, 0.019408932, -0.00235862308, -0.00430863723, -0.00383071043, -0.0058080866, 0.00570228603, 0.00663260138, 0.00631155167, -0.0129076699, 0.00674934685, 0.00367748202, 0.00515869, 0.0109229973, 0.00506748259, -0.0125428401, 0.0044144378, -0.000643012114, 0.0240203775, -0.00231484347, -0.0285004862, -0.03035382, 0.0422326699, 0.0198613219, -0.0169572774, -0.0278729778, -0.0153228417, 0.0443340875, -0.00138361612, -0.0180371739, -0.00823055487, 0.0039584008, 0.00781464949, 0.000864646048, -0.00734401913, -0.0109448871, 0.00212148391, 0.0224297214, -0.00958772097, -0.00573512074, -0.00696824444, 0.0118131815, -0.0114045721, 0.0084348591, 0.0123969084, -0.00537758786, 0.00351695693, 0.0129806362, -0.00581538305, -0.0169572774, 0.00214702194, 0.00371396495, -0.00956583116, 0.000127576335, -0.00654869061, 0.00531921489, -0.0262969155, 0.0100255162, -0.00429404387, 0.000176600312, 0.00325427973, 0.00538853277, -0.00610359851, -0.00317584141, -0.0153082488, 0.0102881938, 0.0232469402, 0.0065268008, 0.0130463056, 0.0376212262, -0.000729659107, -0.0181976985, -2.40274476e-05, -0.0219335537, -0.00168916082, 0.0174972266, 0.0307332426, -0.00994525384, -0.00771979336, 0.000358673075, 0.00731118442, 0.0139656756, 0.00620939909, 0.0167091936, 0.0177161228, -0.00245347875, 0.00228748145, -0.017001057, 0.00779275969, -0.00556365075, -0.0145494035, 0.00968987308, -0.0165632628, 0.00828892738, 0.00940530654, 0.0079095047, 0.0268952362, 0.00478656404, 0.0176285654, -0.00726375682, -0.00545420218, -0.00826703757, -0.0288069416, -0.00766142085, 0.00551622314, -0.0170448367, -0.00604522601, 0.00135351764, 0.00427580252, 0.0060342811, -0.0239474121, 0.00533380825, 0.0132287201, 0.00388178648, 0.0174680389, 0.0129587464, 0.0164611097, 0.000529002864, -0.0174680389, 0.00308280974, -0.0107916584, 0.00774898, 0.00998903345, -0.020415863, 0.00935423, -0.00470630126, 0.0133746518, -0.00534475315, 0.0128565943, 0.0163881443, 0.00944908615, 0.00625682715, 0.00298613, -0.0139875654, -0.00803354662, 0.0119518163, 0.000515321735, -0.0117256222, 0.00931774732, -0.00117748743, 0.0150455711, 0.02966794, -0.015746044, 0.0177307166, 0.00353155029, -0.0013371004, 0.0156876706, 0.00700837607, 0.0014894167, 0.0120758582, 0.00331994914, -0.0174972266, 0.00619480619, -0.0136665152, -0.006048874, 0.000614281802, 0.0322217457, 0.00363370241, -0.0122144939, -0.0114264619, 0.0101714479, -0.0149361221, -0.0227799583, 0.000802625, 0.0114848344, -0.00268879393, -0.000696368457, 0.0163735505, -0.0132214231, 0.000100214122, -0.00183418067, 0.0166362282, -0.0204888284, -0.00617291639, -0.000280690758, 0.0062750685, -0.0112002678, 0.0300327688, 0.0140459379, 0.00360816438, 0.0037084925, 0.0115869865, -0.0240495652, -0.00317401718, -0.00551622314, 0.0116088763, -0.0311710387, 0.0179496147, -0.0014346923, -0.0010324677, -0.00306639238, 0.0106822094, 0.00668367743, -0.00104797294, -0.00036938992, 0.0113680894, 0.00373403053, 0.0248959698, -0.0115942834, -0.0046552252, -0.0125647299, 0.0106457267, -0.0114410548, -0.0113170128, -0.00850782543, 0.00682231272, -0.0160379075, -0.0108500309, -0.00597955659, -0.0156876706, 0.0140386419, -0.0327179171, 0.00466981856, 0.0173804797, 0.00704850722, -0.00948556885, -0.0060123913, 0.00551987113, -0.00178219238, 0.00958772097, -0.00779275969, 0.012199901, -0.0221232641, -0.00653774571, 0.02008022, -0.00168186426, 0.0159357563, 0.00755926874, 0.00495803356, 0.00200473843, -0.000202708427, -0.0178328697, 0.0092520779, 0.00137905579, 0.00793869141, 0.0125136543, -0.00706310058, -0.0141262012, -0.00121579447, 0.00794598833, -0.00896021444, -0.00363370241, -0.00216891174, -0.0241371244, -0.0238598529, 0.00930315349, 0.0084348591, -0.00952934846, 0.00935423, 0.00414446369, -0.0117766988, -0.00141827494, 0.00681136781, -0.0143013187, -0.0116161732, 0.0300035831, 0.0156001123, -0.0272162855, -0.010047406, 0.0102736009, 0.00383800711, 0.0127398483, -0.0157606378, 0.0163443647, -0.00248813769, -0.0244873594, 0.000745164405, 0.00785113219, -0.0226778053, 0.0140605317, 0.0100692958, 0.00297153671, 0.0201823711, 0.0088069858, 0.0016973695, -0.00102061068, 0.00772709027, -0.00999633, 0.0251732394, 0.0107332859, 0.00852971524, 0.000999633, 0.0128055178, 0.000471086183, 0.0020868252, 0.0295949746, 0.00780735258, -0.00102517102, 0.0135059906, 0.00592848053, 0.0117548089, -0.00124771707, -0.0156730786, 0.00836919062, -0.0713898465, -0.00985039864, 0.00861727446, -0.00508207595, 0.0053265118, -0.00537393941, 0.0190295093, 0.00138452824, 0.0323093049, -0.0200948119, -0.00894562062, 0.0187960193, 0.0105946502, 0.0154979602, -0.0157606378, -0.0171032101, 0.0194235258, 0.00517328316, -0.0148266731, 0.00329441088, 0.00592483208, -0.00518057961, -0.00972635578, 0.00573147228, 0.0117329191, -0.001468439, 0.00263589364, -0.0122436797, -0.0208390653, 0.00529002864, 0.00996714365, 0.00307916151, -0.0190732889, -0.0151915029, -0.00615102658, -0.0169572774, -0.0060707638, 0.00281283585, -0.0116891395, -0.0280189104, 0.000125296152, -0.00178492861, -0.0172929205, -0.0210725553, -0.0146369617, 0.000592392, -0.00250273081, -0.00159612938, -0.00434512, -0.00311564445, -0.0137540745, 0.00709228683, -0.0190878827, -0.00310105132, 0.0276540816, -0.000718258205, -0.0244143941, -0.0231885668, 0.0238744467, 0.00922289118, 0.00847863872, -0.0164611097, -0.00249908259, -0.000300984393, 0.0190441031, -0.00715430779, 0.016665414, 0.00753008202, -0.00150309782, 0.0169134978, -0.0160087217, -0.00598320505, 0.0263990667, -0.0273768101, 0.0069718929, 0.027727047, -0.0101349652, 0.0127909249, -0.00476102578, 0.00960231386, 0.000334047072, 0.0245311391, 0.0194673054, -0.00974095, 0.0254651029, 0.0076322346, -0.00677488511, 0.000219695808, 0.0137029989, 0.0105727604, 0.0041408157, -0.0128857801, -0.0210871492, 0.00337649765, -0.0177307166, -0.00630060676, -0.0313461572, -0.0168551262, 0.0329805911, 0.0100182202, -0.00379787572, -0.00311017199, 0.0142210564, -0.00190076197, 0.0158044174, 0.00107715931, 0.0203428958, -0.00388908316, 0.0270995405, 0.00190623442, 0.0259466786, 0.000975007, 0.0120028928, 0.00339656323, 0.0132141272, -0.00121305825, 0.00351695693, 0.0197007973, -0.00176212681, -0.00597955659, -0.00687338877, -0.010952183, -0.00498357182, -0.0466106236, 0.0192484073, 0.00452753482, -0.014724521, 0.000614737801, -0.0196424238, -0.0243852083, -0.00491060596, 0.0148412669, 0.0104779052, 0.0191316623, -0.00401312532, -0.0177890901, 0.0176139716, 0.0197445769, -0.0227069929, 0.0219335537, 0.0274497755, 0.0126449922, 0.0318715125, 0.0139875654, -0.0271141324, -0.0268660486, 0.0116672497, -0.00770520046, -0.00520611787, -0.00631884811, 0.0125209503, -0.00485953, 0.0195256788, -0.00346040842, -0.0170594305, -0.0143596912, -0.0260780174, 0.00379057927, 0.00549433334, -0.0107478788, -0.00678947801, 0.00396934571, 0.00288762595, 0.00305179926, 0.0190878827, 0.0191170685, 0.00890913792, 0.008785096, 0.00464792876, -0.0113024199, 0.00854430813, -0.00513315201, 0.0209412165, -0.0116015803, -0.0044509205, -0.0069244653, 0.00547609152, -0.0209704041, 0.0273330305, -0.00160251383, 0.004848585, -0.00588105246, 0.00706674857, -0.0197445769, -0.00287485705, -0.0265595932, -0.0123385359, 0.0123531288, 0.0223275684, 0.0246770717, 0.0025155, 0.0251294598, 0.000831355341, 0.00729294308, -0.0124771707, -0.000425710488, -0.0113097169, -0.0207660981, -0.000130426575, -0.00200473843, 0.0135862529, -0.0220940784, 0.00558554055, -0.00924478099, -0.0122509766, -0.00418094685, -0.013688405, 0.00236044731, -0.000583271263, 0.0198467281, 0.0166216344, -0.0150747579, 0.000801256916, 0.0141845737, 0.0088580614, 0.0149580119, -0.00135078141, 0.00300437142, -0.0163589586, 0.00635533081, 0.0347609594, 0.00448375521, 0.0152790621, -0.00642829714, 0.0127690351, -0.00485953, 0.00371214072, 0.0118496642, -0.00248996168, 0.0100765927, -0.0110543361, -0.0111564882, 0.00566215487, 0.0154104009, 0.00794598833, 0.00925937388, 0.00863916427, -0.00726740481, -0.0046333354, 0.0159065686, 0.0177307166, 0.0102736009, 0.00744981971, -0.00882887561, -0.00944178924, 0.0219335537, -0.0272746589, 0.0177453104, 0.00298430584, -0.00399123551, 0.00194636569, 0.00495438557, -0.00665449118, 0.0130536016, 0.00719808741, -0.00362093351, -0.012842, 0.0339145549, -0.000326294452, 0.0148631567, -0.0026760248, 0.00257204846, 0.00857349485, 0.00138635235, 0.00576430699, -0.0101787448, 0.00433052704, -0.0072017354, -0.000261993235, 0.00504194479, 0.0092885606, -0.0116161732, -0.0130244158, -0.00922289118, -0.0026760248, 0.00917181559, 0.00788761489, 0.0157752298, -0.00889454503, -0.0266471505, -0.00607806072, -0.000754285138, -0.00734401913, -0.0155563327, 0.00732212933, 0.00112641125, -0.034906894, 0.00180134596, 0.00526084239, -0.0219919253, -0.000588743715, -0.00148485636, 0.00826703757, 0.0230280422, -0.0235388037, -0.00768331066, 0.00213972549, 0.010047406, -0.0120393755, -0.0185479354, 0.011178378, -0.0296971258, -0.00583727285, -0.00736226048, 0.0114702415, -0.0143450983, -0.00702296896, -0.00739509519, 0.00488871615, -0.0191462561, -0.017570192, -0.00629695831, -0.00741333654, 0.00513315201, -0.0044034929, 0.00127781555, -0.00651950436, 0.0152644692, 0.0123385359, 0.00671651214, 0.00157515169, 0.0111054117, -0.0104268286, -0.0152060958, 0.0177161228, 0.0102079315, 0.0229112972, 0.0139437858, -0.0135132866, -0.0179933943, 0.00332906982, -0.0106603196, -0.0131411608, -0.012199901, -0.0263698809, -0.00750089576, -0.0218605883, -0.0273476243, -0.0107551757, -0.0190441031, -0.0136811091, -0.00215431862, -0.0150893508, -0.0209412165, -0.00248084101, -0.0201531854, -0.0114775384, 0.000489783706, 0.0298576523, -0.0124479849, 0.00870483369, -0.0109667769, -0.00347317755, 0.0221962314, 0.018825205, 0.00491790241, 0.00773438672, -0.0163443647, 0.0135424733, -0.00404231157, 1.59897954e-05, 0.0064684283, 0.0121853072, -0.0121853072, 0.00331265246, 0.00707769347, -0.00791680161, 0.018256072, -0.0157752298, -0.00157606369, 0.0136738122, -0.0140970144, 0.000982303638, 0.0660779327, 0.0198029485, -0.00511855865, -0.0292593315, 0.0133308722, -0.0146661485, -0.0127909249, 0.0370083116, -0.0229696687, 0.00622399244, 0.0219189599, 0.000159156902, -0.00956583116, 0.0153666213, 0.00273439754, -0.00598320505, 0.00389637984, -0.000788031844, -0.00410068408, 0.01095948, 0.0131265679, -0.0224005356, 0.00485588145, -0.0143378023, -0.000394243951, 0.00616926793, -0.0115067242, -0.012659586, -0.024195496, 0.0158919767, -0.0100692958, 0.0266325586, 0.020430455, 0.00229842635, -0.0163443647, 0.0101057785, -0.00965339, 0.00846404582, 0.012207197, -0.0437795483, 0.0253775436, 0.0226340257, 0.0219481457, -0.000761125702, 0.00508572394, -0.0295949746, 0.00147117523, -0.0198467281, -0.0160670932, -0.0339145549, 0.0136665152, 2.00798768e-05, 0.000327434536, -0.0216854699, 0.0219627395, -0.00247536856, 0.0246624779, 0.0209849961, -0.00767601421, 0.00162987609, 0.0073695574, -0.00344946352, -0.00149853749, 0.00419554, -0.0104924981, -0.0229842626, -0.00990877114, 0.0138416337, -0.00917181559, 0.0115140211, 0.00260488316, -0.0157898236, 0.00405690493, -0.00335643208, 0.011747512, 0.0157022644, -0.0164902955, 0.00425026426, 0.000711873698, -0.00780735258, -0.0298722442, 0.0209704041, -0.00217803242, -0.0375628509, -0.00803354662, -0.0164027363, -0.0146515556, -0.00692081684, 0.00260123471, 0.012440688, 0.00242064404, 0.0315796472, 0.0069244653, 0.00265960745, 0.00923018809, 0.01061654, -0.00469900481, 0.0116526559, -0.00014011735, 0.0138635235, 0.0106676165, -0.00436336175, 0.0118496642, -0.0122947562, -0.00461509405, 0.0219919253, -0.00606711581, 0.0242684633, 0.00721632876, 0.00430134078, 0.00315395161, 0.00888724811, 0.0211309288, 0.0160379075, 0.0136154396, 0.00620210264, -0.00494344067, -0.00773438672, 0.00621304754, -0.000235087049, -0.00446186541, -0.00384165533, 0.00316124805, -0.000302808534, -0.013236017, -0.0123458328, 0.0220357049, -0.0115432078, 0.00993066095, 0.0160233136, 0.0106822094, -0.0136154396, 0.0125209503, 0.00638451753, 0.0187522396, 0.0250856802, 0.0112586403, -0.00232214015, 0.0062531787, 0.0103173796, -0.00519517297, -0.00634073792, 0.0115942834, -0.00264319, 0.010952183, -0.017803682, 0.0299452115, -0.00940530654, 0.0249251556, -0.01870846, -0.0125136543, -0.00201750756, 0.00223275693, -0.00346040842, 0.00547974, 0.020124, 0.00923748501, -0.0281648431, 0.0102006346, -0.0114337588, -0.00202845247, 0.00221633958, 0.0249397494, -0.0114994282, 0.0118569611, -0.00519152451, 0.00968257617, -0.00530097354, 0.0126522891, -0.0121707143, 0.0202407446, 0.022371348, 0.00846404582, 0.00750819221, -0.0330097787, -0.0107916584, -0.0216416903, -0.0209995899, 0.00421378156, -0.00397299416, -0.000606073125, 0.003480474, 0.00127051899, 0.0573512092, 0.00909155235, -0.00588834938, 0.00175574224, 0.00697918935, 0.0190586969, -0.0134330243, -0.00425391272, -0.000681775273, 0.000221291935, -0.00278182537, 0.00173841289, -0.00611819187, 0.000479750888, -0.00820866507, 0.00890913792, 0.0189127643, 0.0317547657, -0.00129788113, 0.00550527824, -0.00080627331, -0.0166946016, 0.0130171189, -0.026121797, 0.00114921317, -0.00747900596, 0.00389637984, -0.0113972751]
28 Nov, 2021
jQWidgets jqxToolBar tools Property 28 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxToolBar is used to illustrate a jQuery widget that shows a toolbar where various tools can be spontaneously appended. Moreover, the jqxToolBar favor some widgets namely jqxButton, jqxToggleButton, jqxDropDownList, jqxComboBox as well as jqxInput. However, the custom tools can also be appended. The tools property is used to set or return the varieties of tools in the displayed jqxToolBar in the direction they begin. It is of type string and its default value is “”. Syntax: Set the tools property. $('#Selector').jqxToolBar({ tools: "button button button | toggleButton | dropdownlist combobox | input" }); Return the tools property. var tools = $('#Selector').jqxToolBar('tools'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script><script type=”text/javascript” src=”jqwidgets/jqxdropdownlist.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcombobox.js”></script><script type=”text/javascript” src=”jqwidgets/jqxinput.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtoolbar.js”></script> Example: The below example illustrates the jqxToolBar tools property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxlistbox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxdropdownlist.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcombobox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxinput.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtoolbar.js"> </script> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3>jQWidgets jqxToolBar tools property </h3> <div id="jqxtb"></div> <div> <input type="button" id="jqxBtn" style="margin-top: 25px" value="Click here" /> </div> <br> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxtb").jqxToolBar({ width: "470px", theme: "energyblue", height: 70, tools: "button button | dropdownlist combobox | input", initTools: function (type, index, tool, menuToolIninitialization) { switch (index) { case 0: tool.text("Button1"); break; case 1: tool.text("Button2"); break; case 2: tool.jqxDropDownList({ width: 100, source: ["Java", "Scala", "C++"], selectedIndex: 2 }); break; case 3: tool.jqxComboBox({ width: 60, source: [4, 5, 8, 10, 15], selectedIndex: 3 }); break; case 4: tool.jqxInput({ width: 140, placeHolder: "Search..." }); break; } } }); $("#jqxBtn").jqxButton({ width: "140px", height: "30px", }); $("#jqxBtn").on("click", function () { var t = $('#jqxtb').jqxToolBar('tools'); $('#log').text("Tools: " + t); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtoolbar/jquery-toolbar-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtoolbar-tools-property?ref=asr10
PHP
jQWidgets jqxToolBar tools Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0150362039, -0.00204800884, -0.0153806591, 0.0449588485, 0.0589167587, 0.0131941196, 0.00977203529, 0.0143697588, -0.00939762779, -0.000940230733, -0.0127373422, 0.00106331718, 0.0269423611, 0.00662326813, 0.0101090018, 0.0108578168, -0.0351643488, 0.0172526967, -0.0251002777, -0.00189730991, -0.0072709932, -9.40698737e-05, -0.0682919249, -0.00155379099, -0.0462468117, 0.0294583794, 0.0177768674, -0.00701265177, -0.00942009222, 0.0181812271, -0.00279307971, 0.00382457231, -0.000461925229, -0.0118687171, -0.0203228369, -0.0184957292, -0.0228089038, 0.0131491907, -0.0318396129, -0.0111049255, -0.00353066251, -0.0326183774, 0.000182055635, 0.000945846899, -0.0141376257, 0.0301622655, 0.0176720321, -0.035433922, 0.0108877691, 0.0395973325, 0.000931338582, 0.0307912696, 0.00994426198, 0.0438206494, 0.0496913604, -0.0120634083, 0.00817705877, 0.0265979059, -0.0203827433, 0.0460670963, 0.014834024, -0.0493618809, -0.02525004, -0.0187503267, -0.00116534322, -0.0109926034, 0.00561985606, 0.0219702311, -0.0129994275, 0.0492121167, 0.00356997526, 0.0290839728, -0.0164140239, 0.0111798067, 0.00680672796, -0.00677677523, -0.00851402618, -0.00284362468, 0.00221836427, 0.0309110805, -0.00661578, 0.00184676482, -4.96967405e-05, 0.000145199898, -0.0304318387, 0.011756395, -0.0280805603, -0.0411548689, 0.0328879505, 0.0257742107, -0.0180614162, -0.00805724878, -0.00163428858, 0.00874615833, -0.0275713652, -0.00296156318, 0.00281928829, 0.00622265227, -0.0350145884, 0.0470854826, 0.00311319809, -0.00254784292, -0.0156053035, -0.0224794243, 0.0122506125, 0.00339961983, 0.040286243, 0.012782271, 0.0110899489, -0.0219852068, 0.0242466275, 0.00109420589, -0.0179865342, 0.0176870096, -0.0140103279, 0.0416341126, -0.0169981, -0.0315700397, -0.0123629346, 0.00750686973, -0.000864413276, -0.00231383811, 0.0285148732, 0.0183759183, -0.039178, 0.0495715477, -0.0290689953, 0.0116216075, 0.024066912, -0.00434312643, -0.00783260446, 0.0413944907, 0.0207721256, 0.0299525969, 0.0115092853, 0.0311207492, 0.0231533572, 0.036422357, -0.036422357, -0.0230934527, -0.0373808406, -0.0412447266, -0.0159946866, 0.0333671942, -0.00370476185, 0.0190498512, 0.0100266319, 0.0532856695, -0.0222847331, 0.00350258197, -0.00833431073, -0.0130967731, 0.00307388534, 0.0351343974, 0.0388784707, -0.0108727934, -0.0268225521, 0.0457076654, -0.0236925054, 0.0190498512, 0.000912150193, -0.0319594219, 0.00237374334, 0.00797487888, -0.0156652089, -0.0053615151, 0.00487478543, -0.0280655846, -0.0660754293, 0.0323488042, -0.0106706126, 0.00250665797, 0.0281105135, -0.0062376284, -0.0288743041, -0.0287395176, 0.00909810141, -0.0378900357, -0.0156202801, -0.0425027348, -0.0278109871, 0.0156202801, -0.00380585203, 0.00196938333, 0.0012654973, 0.020083217, 0.00790748559, 0.00838672742, -0.0233929791, 0.0282303225, -0.033576861, 0.00255158683, 0.0230934527, 0.00711374218, 0.0184508, -0.0300574321, -0.0297878589, 0.0221199933, -0.0196638796, -0.0205774345, -0.007476917, -0.0222847331, 0.00292786653, -0.0105957314, 0.0453182794, 0.0385789461, -0.00881355163, -0.0466062427, 0.0176420808, 0.0299376212, 0.00264518871, 0.0249654893, 0.0572693683, -0.00814710651, -0.0114194276, 0.024261605, -0.00897080265, -0.0487927832, -0.0126399966, 0.0060990979, -0.0304468162, 0.00355125475, -0.0113445465, 0.0120035037, -0.102557696, -0.00603544852, 0.00766786514, 0.0185556337, -0.0132914651, 0.0340261497, -0.0200981926, 0.00436933525, -0.0107529825, -0.0218653958, 0.037919987, 0.0526866205, -0.00691905, 0.00752933417, -0.00519677578, 0.0153956348, 0.0199933592, -0.0179865342, -0.0103186695, -0.0158599, 0.024501225, 0.000972523412, 0.0134037873, 0.00766037684, 0.0160695687, 0.0238871966, 0.00204239273, 0.0206972454, -0.000971587375, 0.011838764, 0.0208470076, -9.50059e-05, 0.0107604703, -0.0100865373, 0.036452312, -0.0253099445, 0.0133064417, 0.0285298489, -0.0102063473, 0.0162492841, 0.0485831127, -0.0115916552, 0.0477743931, -0.0307313651, -0.0234828368, -0.0135984793, 0.0126774367, 0.0096746888, 0.038309373, 0.0185556337, 0.0116740251, -0.00619644346, -0.0255046375, -0.0013385067, 0.0310308915, 0.000936018652, 0.00787004549, 0.0173725057, 0.0367518365, 0.0561012141, -0.00757051911, 0.0110225556, -0.00998170301, 0.0112097599, -0.00302708452, 0.0406157225, -0.0247707982, 0.00508819753, 0.0422032103, 0.0285148732, 0.0236026477, 0.00277435943, 0.00686288904, -0.0267925989, -0.00524919294, 0.0399268121, -0.0156951603, -0.000464499259, -0.0348648243, -0.00171572226, -0.0189450178, 0.0456178077, 0.0532856695, -0.0129320342, -0.020083217, -0.0428022631, 0.0431017876, -0.00305329286, -0.0377103202, -0.0277061537, -0.0224944018, 0.0204726011, 0.0129844509, 0.00953241438, -0.0174473878, -0.00631251, -0.0137557304, -0.00788502116, -0.0626009256, 0.0400765762, 0.0376204625, -0.00992928632, -0.0279757269, 0.00433189422, 0.0316598974, 0.00328355352, -0.00498710759, 0.000243832867, 0.0286197066, 0.0014311726, 0.00311132614, -0.065716, 0.0231533572, -0.0339063406, -0.0337266251, -0.0111947833, -0.0135161094, -0.000553655031, -0.0205924101, -0.013298953, 0.0153806591, -0.0545137264, -0.0262534525, -0.0159647353, 0.035463877, 0.0375605561, 0.00155191892, -0.0248307027, 0.0121457782, -0.00709876558, 0.0180164874, 0.0035681033, -0.012070897, -0.00402113609, -0.0332773365, -0.000580331602, -0.0260138307, 0.00436184695, 0.0074918936, 0.000536338717, 0.0270322189, -0.0233780034, -0.0360928811, -0.00577710709, -0.0473550558, 0.00669814972, -0.00942009222, -0.0467560068, -0.0060841213, 0.0209518429, -0.0214610361, -0.00548132556, 0.0130518442, -0.0135984793, -0.0101239784, -0.00511066196, -0.0383393243, 0.0194841642, 0.0169531703, 0.0411848202, -0.0233929791, 0.00329853, -0.00679923967, -0.0387586616, 0.00928530563, -0.0191247333, -0.017043028, 0.0547833, 0.00455279462, -0.0143922232, -0.0445095599, -0.00736833923, -0.010019144, -0.0353141129, 0.0252051111, 0.00699767563, -0.0135984793, 3.53054529e-05, 0.0117938351, -0.0119510861, -0.013298953, -0.0247857738, -0.0197836906, 0.00420834, -0.00643980829, 0.0173425544, 0.00936018676, -0.0130218919, 0.00713995053, 0.0579283237, 0.0147890951, 0.00756303081, 0.0354039706, 0.0609235838, 0.0499609336, -0.0611632057, 0.0176570565, -0.0313903205, -0.0151335504, 0.0350744911, -0.0225393306, -0.00024687493, -0.0423529744, -0.0017812436, 0.0314502269, -0.0270022675, 0.00611407403, 0.025684353, 0.0104834093, 0.00661203591, 0.04900245, 0.00133008254, 0.0365421697, 0.00523047242, 0.00149856589, 0.0162642598, -0.0299825501, -0.0252799932, 0.0299376212, -0.0217905156, -0.0208769608, -0.00674307859, -0.054483775, -0.0396572389, 0.00817705877, 0.017043028, -0.0102962051, -0.046127, -0.0678126812, 0.0105807548, -0.0145344976, -0.0160096642, 0.010453457, 0.00266952533, 0.0277211294, -0.0127972476, -0.0180464406, 0.0136583848, -0.0210267231, 0.00509194145, 0.0237074811, -0.0144371521, 0.000970651396, 0.0207421742, -0.0219552536, -0.00243364857, -0.044659324, -0.0367218852, 0.0694301203, 0.0778168514, 0.00661203591, 0.000107174135, 0.00802729651, -0.00610658573, 0.00233443058, -0.00405857712, 0.0218653958, -0.0137632182, 0.0351343974, 0.0221798979, 0.0163541175, 0.000907938113, 0.023318097, -0.0296380948, 0.0425326899, 0.0427124053, 0.0290240664, 0.00144708483, -0.0348648243, 0.0318396129, -0.0150212273, 0.0242466275, -0.0700291768, -0.00259464374, 0.0190498512, 0.00264893286, 0.0194691885, 0.032468617, -0.0502305068, 0.0181812271, 0.0205474813, -0.0231084283, -0.0519378036, 0.0156652089, 0.0194691885, -0.028170418, 0.00496464316, -0.0174174365, -0.0229736418, 0.0238871966, -0.000716054288, -0.0302371476, -0.0439704135, 0.013298953, 0.00305329286, -0.0133813228, 0.0312705114, -0.00256281905, -0.0082818931, 0.0069826995, 0.0120858727, 0.020158099, -0.0397470966, -0.0142948776, 0.00680298358, -0.026433168, -0.0231833104, 0.0276462473, 0.0201730747, 0.000713714224, -0.0215508938, 0.0247707982, -0.0114718452, -0.0190947801, -0.02399203, -0.00136003515, -0.0302371476, 0.0368716493, -0.0199334528, -0.00450412184, 0.00201244024, 0.0369016, -0.00221274816, -0.032588426, 0.00932274573, 0.0140627446, -0.0169082414, 0.00793743879, 0.00225767703, 0.000212125233, 0.00768284127, 0.0165488105, -0.0183908958, -0.0242915563, -0.0260887127, -0.0270921253, -0.00191135018, 0.0153956348, 0.0319594219, 0.0177618898, 0.0191696621, -0.0300873835, 0.0320193283, 0.0214760117, -0.0235427413, 0.00844663288, 0.016803408, 0.00572469039, -0.00584824476, 0.0207571499, -0.00591189414, -0.000996859861, 0.0143922232, 0.00511815026, -0.000187671743, 0.000648192945, 0.00116534322, -0.0289791375, -0.000188139747, -0.00893336255, 0.00772777, 0.0140777212, -0.0108802812, 0.00515933475, -0.0462767631, 0.0227340218, -0.010573267, 0.00907563698, 0.0267027412, 0.0223745909, -0.00316561526, 0.0254746843, 0.0141151613, 0.00266390922, 0.0292187594, -0.0132764885, 0.0207571499, 0.0185706113, 0.025804162, 0.0178517476, -0.0315400846, -0.0174024589, 0.0102363005, 0.00517805526, -0.0168932658, 0.017716961, -0.0302970521, 0.0158149712, 0.0306265317, 0.0124902334, -0.0125052091, -0.000464733283, -0.0105807548, 0.0128047355, -0.0124977212, 0.00669440581, 0.0299226455, -0.0129694752, 0.0278708916, -0.0206972454, 0.0487628281, -0.00276687113, -0.0122281481, -0.0181063451, 0.00220713206, -0.0282453, 0.0009364867, 0.00624137232, -0.0291738305, 0.00759298354, 0.0301323142, 0.0235277656, 0.0132764885, 0.0343556292, -0.0131192375, 0.00329291378, 0.0277960114, 0.0263433103, 0.00125707313, 0.0648773238, -0.00530535402, 0.0140402801, -0.0055749272, 0.0145045454, 0.0201431215, -0.0180015117, -0.0167734548, -0.0107155414, -0.0310608447, 0.0165937394, -0.017911654, -0.0110450201, 0.00354376668, -0.0197687149, -0.00379087566, 0.0542142019, -0.0242016986, 0.0127972476, 0.0159048289, 0.00837175082, -0.003156255, -0.0147741186, 0.0270621721, 0.0532557182, 0.00426450092, 0.00163990469, -0.000303972076, -0.026238475, 0.0117039774, 0.0178817, -0.0289342087, -0.00522672851, -0.0116290962, -0.00527540129, 0.0199484304, -0.028604731, -0.000103956576, 0.036931552, -0.00505450089, 0.000963163213, 0.0218054913, -0.0106556369, -0.0440902226, 0.0285598021, 0.0115841674, 0.0350445397, 0.00144240481, -8.56457118e-05, -0.00273691863, 0.038309373, -0.0060092397, -0.0280506071, 0.0143398065, -0.0202629324, -0.00399867166, -0.0201880503, 0.0136359204, -0.0120933615, -0.0260587595, -0.00166143314, 0.00760795968, 0.00948748551, 0.01274483, 0.0254746843, -0.00416715536, -0.00176720321, 0.0164140239, 0.00487478543, -0.0148115596, 0.0381895602, -0.00879857596, -0.00664198864, 0.0187203735, -0.0241717454, -0.0404360071, -0.0247857738, 0.0517281368, 0.0046127, -0.00168389757, -0.0379798934, -0.0129619865, -0.0125126978, 6.28302514e-05, -0.0182710849, -0.000705290062, -0.00871620607, -0.000210604208, 0.0317198, 0.000994987902, -0.00274066278, -0.0216107983, 0.00567976153, -0.00299713179, -0.00290165795, 0.00352130225, 0.0139728868, 0.0153956348, -0.0268525034, -0.00447791349, -0.00496464316, 0.0173575301, -0.0128571521, 0.018465776, 0.00525668077, 0.0304468162, -0.010453457, 0.0057958276, -0.0241268165, 0.00933023449, 0.00849905, 0.00512938248, 0.00132540241, -0.00575089874, 0.00417089928, 0.0131641664, -0.00807971321, 0.00573217822, 0.0260587595, -0.0468758158, 0.0126325078, 0.00599051965, 0.0109626511, -0.0116890017, 0.0155304223, 0.0316898488, -0.00177001127, 0.0188401844, 0.00869374163, 0.00657085096, 0.0141675789, 0.0100790495, 0.0092254, -0.00204426469, 0.00144989288, -0.0103486227, 0.000156666123, -0.0077053057, -0.00334907486, -0.00681796, 0.000543826842, 0.018465776, -0.00790748559, 0.0196339283, 0.0105957314, 0.0185855869, 0.0202928856, 0.0254597086, -0.0278708916, -0.00137033139, 0.0434911735, -0.0086563006, -0.0212064385, -0.0141825546, 0.0396272875, 0.0198735483, -0.014991275, 0.0134187639, -0.0138006592, 0.0270471964, 0.0161594264, 0.0267925989, -0.00687786518, -0.0327082351, 0.00109046174, -0.0120559204, 0.000462393218, 0.00225954899, 0.0134262517, -0.0352841616, 0.00752933417, -0.0166835971, -0.00785506889, 0.00279120775, -0.0343256779, -0.00325547298, -0.000377449527, -0.00567601714, 0.0123779112, 0.0187353492, -0.0197986662, -0.00845412072, 0.0376803689, 0.00671312585, 0.00426075701, -0.00431691809, -0.00852151401, -0.0239021722, -0.0271370541, -0.0462468117, -0.00186267716, -0.020637339, 0.010730518, 0.00723355217, 0.00304393284, 0.0453482345, 0.0236625522, -0.0174024589, -0.0104085281, -0.0214760117, 0.0151635027, 0.0299675744, 0.0237224568, 0.0179416053, 0.00275563891, 0.00870871823, 0.041783873, 0.0366020761, 0.0322889, 0.0081995232, 0.0380697511, -0.0171328858, 0.0224644486, -0.0340261497, 0.0204726011, 0.0165038817, -0.00942009222, -0.00831933413, 0.0190348756, -0.0206672922, 0.0048373444, 0.00206111302, -0.0151185738, -0.00839421526, -0.0410350598, -0.0258490909, 0.0159198064, 0.0103710871, -0.0065259221, 0.0166236926, 0.0144745931, 0.00414094655, 0.000643044827, -0.0457975231, -0.0135235982, -0.00183927675, -0.0118612284, 0.0541243441, -0.0132914651, -0.0351343974, -0.0171328858, -0.0115467263, 0.021386154, -0.0184508, 0.00757426303, 0.0138755413, 0.0175522231, -0.0211315583, 0.025804162, -0.00481113605, -0.0608037747, -0.00657459535, 0.0139054935, -0.016054593, -0.0420534462, 0.00432440639, 0.0124977212, 0.00171853031, -0.0267626457, -0.0237673856, -0.0171029326, 0.0267776232, -0.0462767631, -0.00108484563, 0.0493319295, -0.00258153956, 0.00460521178, 0.0374107957, 0.0407355316, 0.0143173421, -0.0280356314, -0.00534279458, 0.00670563802, -0.0145869153, 0.0219253022, 0.00673559029, -0.0280955359, 0.00122337637, -0.0156652089, 0.0228238795, 0.0269124098, -0.0200233124, -0.00953241438, -0.0311207492, -0.00083960878, -0.0122805648, -0.00635369495, 0.000190947816, 0.00375343487, 0.0176570565, -0.00408104155, 0.0156801846, 0.0155004691, 0.0211615097, 0.0198286194, -0.0318695642, -0.0308811273, 0.0383692794, 0.00321803219, -0.0353141129, -0.0127598066, 0.0110225556, -0.0258341152, -0.0353740193, 0.00888843369, -0.0175971519, 0.041274678, 0.0125052091, 0.00663824426, 0.0107080536, -0.0257442575, -0.0146168675, -0.0343256779, -0.0219552536, 0.0149837872, -0.012310518, 0.00446668128, -0.00191228616, -0.0464564785, -0.0104609448, 0.00422706036, 0.0216407515, 0.00282116025, 0.00432440639, 0.00125145703, 0.00878359936, -0.00894085, -0.027421603, -0.0261186659, 0.0256693754, -0.00303831673, 0.000243832867, 0.014519522, -0.00712497439, -0.0273766741, 0.0117938351, 0.000247108925, 0.00792995, 0.00479616, 0.000306312111, -0.00746942917, -0.000755835092, 0.0023812314, 0.0229736418, 0.00626383722, 0.000935550663, 0.0423230194, 0.0247258693, -0.0337865315, -0.00134880294, 0.00684791245, 0.0104759214, -0.0104309926, 0.0287245419, -0.00467634946, -0.0141451145, -0.0496614054, -0.0338164829, -0.00260213204, 0.0110150678, 0.0230335481, 0.0119885271, 0.0360329747, -0.00575464265, -0.00241680024, 0.000440396776, 0.011876205, -0.048014015, -0.0136284316, 0.00563857658, 0.034565296, 0.021146534, 0.0499309786, 0.00945753232, -0.000204520082, 0.0353740193, 0.00529786572, 0.0135760149, -0.00505450089, -0.00518179918, -0.0142574366, 0.00470255781, 0.0215209406, -0.0038863495, -0.00579957152, 0.00514810253, 0.00442175241, 0.00118219154, 0.0087236939, -0.0133962994, -0.0050657331, 0.0141825546, -0.0392678566, 0.0101164896, -0.0479541086, -0.00772777, -0.00229137368, 0.0060092397, -0.017791843, -0.0192744974, 0.0270771477, -0.00158748764, -0.00465388503, -0.00155191892, 0.027496485, 0.00969715323, 0.000617304293, -0.000912618183, 0.00236251112, -0.00228201365, -0.000538678723, -0.000560675166, -0.00206298521, 0.00324611273, -0.0269573387, 0.0500208363, 0.0413345844, -0.00451161, -0.0224644486, -0.00390132586, 0.0108802812, -0.00933772232, 0.00721483212, -0.0173126012, -0.0213412251, 0.00147235743, 0.0152608482, -0.00544014061, -0.0111124134, 0.0182860605, 0.0136209438, -1.86179968e-05, 0.014399711, -0.000838672742, 0.00277810334, 0.000940698781, 0.000533062615, 0.00723729655, 0.00467260508, 0.0017990279, -0.00538772345, -0.0133513706, -0.0139204701, 0.00488976156, -0.0103860628, -0.0106331725, -0.0344754383, 0.000436652714, -0.000146018909, -0.00202928856, -0.00835677516, -0.0305516496, -0.0289491862, 0.00476246281, 0.0897978842, 0.0115841674, -0.0118836928, -0.00652966648, -0.0258640684, -0.0182411317, -0.00936767459, 0.0115542142, -0.00177001127, -0.0187503267, 0.00211914629, 0.0172077678, 0.00355687109, 0.00834179856, -0.00936018676, -0.0147291897, -0.0213112738, 0.000328308553, 0.0265080482, -0.0226890929, -0.00233255862, 0.0112172477, 0.0100565851, -0.00985440426, 0.0265230257, 0.00937516335, -0.0393876657, -0.0122581, -0.0200382881, 0.0220451113, 0.00450037792, 0.00739080366, 0.0101464428, 0.011479333, 0.0147366785, 0.025684353, -0.0222697556, -0.0104010394, 0.00196563918, -0.0108727934, -0.00113164657, -0.00743947644, 0.00117189542, 0.0136134559, -0.00189824589, -0.0184807535, -0.0154106114, 0.0123853991, -0.000451863016, 0.0238422677, -0.0143847354, -0.0196189508, 0.0087386705, -0.00576961925, -0.00373097043, 0.0139504224, -0.00195066293, -0.0138530768, 0.0182860605, -0.00686663296, -0.0201730747, 0.0122955414, 0.00233630254, -0.0233929791, 0.0163690951, 0.0198136438, -0.0179266296, 0.0236625522, -0.0263732616, 0.0184807535, 0.0261186659, 0.0242316518, 0.00960729551, 0.00605416903, -0.0211165808, 0.0233630259, -0.0130668208, -0.0092478646, 0.00713995053, -0.0220750645, -0.0175372455, 0.0238422677, -0.0122431247, 0.0285598021, -0.0124827446, 0.00335843512, 0.0111573422, 0.00336966733, -0.0133289061, -0.00504701259, -0.0170729812, 0.00131791434, -0.0131342141, -0.021580847, -0.00259089959, -0.00321803219, 0.0208919365, 0.0270771477, -0.0077053057, -0.00132446643, 0.0333072878, -0.0173126012, -0.0234978124, 0.00220900401, 0.0205325056, -0.0140552567, 0.023078477, -0.0101464428, -0.0192744974, 0.0107679591, 0.0343556292, -0.00194504682, -0.0238871966, 0.0169531703, -0.00787004549, 0.00251040212, -0.00316748722, 0.013411276, 0.0140552567, 0.0104309926, -0.0198435951, -0.0212214161, 0.0155304223, -0.0170879569, -0.0140178157, -0.0243514627, -0.00611033, 0.0259539261, 0.00559739163, -0.0121308025, -0.0162792373, 0.0139429346, -0.0158149712, -0.00078906375, -0.0279457737, 0.0124602802, -0.0194691885, 0.0150961094, -0.00174473878, 0.0176570565, -0.034565296, 0.00837175082, -0.0273017921, 0.00129919394, 0.014205019, 0.0102962051, 0.00374969072, 0.00781762786, 0.00700890785, -0.000889685762, -0.0052791452, -0.0117489062, 0.00347824534, -0.0102887172, 0.0184208471, -0.0228987616, -0.0121308025, 0.0199035015, 0.0149613228, 0.0123629346, 0.00359243969, -0.00133008254, 0.0175671987, -0.0201730747, -0.00239620777, -0.00424203649, -0.00262459647, -0.0315400846, 0.0250253957, 0.0051331264, 0.00476246281, -0.0118013239, 0.0188551601, -0.0114344042, -0.00369914575, -0.00484857662, 0.00721857604, 0.0190199, 0.0179565828, -0.007476917, -0.00956985541, 0.0191846397, -0.0351044461, 0.0172976255, 0.0133962994, -0.01424246, -0.0126100434, -0.0258341152, -0.00464265281, 0.0204576235, -0.0310608447, -0.0140926968, 0.0128346877, 0.0191696621, 0.0292187594, 0.0175072942, 0.0103561105, -0.00390132586, -0.0144446399, 0.0182111785, -0.0176420808, 0.00783260446, 0.00620018784, -0.00575089874, -0.0163690951, 0.0121832192, 0.00504701259, -0.0189599935, 0.00843914412, 0.00855895504, 0.017716961, -0.000657553144, 0.0184058715, -0.0187053978, 0.0234528836, 0.00374220265, 0.014205019, -0.0290540196, 0.00281741633, -0.00817705877, 0.00480739214, 0.013808148, -0.0363924056, 0.0112696653, 0.00540644396, -0.00533530628, -0.000574247446, -0.00225954899, 0.0031993119, -0.000961291196, -0.00877611153, 0.0236475766, 0.00781762786, 0.0316299424, 0.0103860628, 0.00446668128, -0.0103860628, -0.0229736418, -0.00465388503, 0.0155753512, 0.000553655031, 0.0332174301, 0.0105133615, 0.0115467263, 0.00614402676, -6.52288e-05, 0.0118537406, -0.0221050177, -0.00342582841, -0.00667194091, 0.00527540129, 0.0199933592, 0.0121607548, -0.000487665733, 0.0201431215, 0.00902322, 0.00828938186, -0.00682544801, -0.00814710651, -0.0294434037, -0.00706132501, -0.00280618388, 0.0070500928, -0.00257779541, -0.0190199, -0.0231533572, -0.0214610361, -0.00882104, -0.0112097599, -0.0116815129, 0.0118687171, 0.0091654947, 0.0264631193, -0.00767535297, 0.013650896, -0.0252051111, 0.0305666253, 0.0120184794, -0.0189899467, -0.0106631247, -0.00233255862, 0.0309110805, -0.0123779112, -0.011996015, -0.0318695642, -0.00501706032, 0.0171478614, 0.00650720205, -0.0193793308, 0.00831184629, 0.010138954, 0.0104609448, -0.0379798934, 0.00891089812, 0.000542422815, 0.0255196132, 0.00457900343, -0.0179715585, -0.00608037738, -0.0231084283, 0.00382270035, -0.0204875767, -0.00327419327, -0.0156951603, -0.0150062516, 0.0114269163, 0.0111124134, -0.0228538327, 0.0243814141, 0.00330040185, 0.00858141948, -0.0179715585, -0.00163054455, -0.0126474844, -0.00490848208, -0.0253249221, 0.0057359226, 0.0096896654, -0.00570222596, -0.0040473449, 0.00933023449, 0.0108128879, -0.0268075746, 0.0196938328, -0.00352130225, -0.00676928693, 0.00253473851, 0.0008017, -0.0152608482, -0.0309410337, 0.00801980775, -0.00655213092, -0.0202928856, 0.000515278254, 0.00157438347, 0.0139579102, 0.00796739105, -0.0309709851, -0.0117039774, -0.0110375322, -0.010416016, 0.0173425544, -0.0137482425, 0.000481113588, 0.0184058715, -0.018780278, 0.004556539, 0.0151035972, -0.00159403984, -0.00806473661, -0.00593061419, -0.00368042546, -0.00317497528, -0.00825194083, 0.0164439753, 0.031599991, 0.0194841642, 0.00683668, 0.00442175241, -0.00236251112, -0.00661578, -0.0132240718, 0.0306265317, 0.0086563006, 0.0216257758, 0.00836426299, -0.0102812294, 0.0045490507, -0.00168296159, 0.0148415118, -0.00454530679, -0.000914490258, 0.0233929791, -0.0154854925, 0.0146468207, 0.0329179056, 0.00187110133, -0.0209668186, 0.00948748551, -0.0150961094, -0.0283651091, -0.0122056836, -0.0128796166, -0.0308811273, 0.0303120296, 0.0234828368, 0.00678051915, -0.0101539306, 0.0128272, -0.0014311726, 0.02375241, 0.0130293798, 0.0110824611, 0.019963406, -0.0250104181, 0.00435810303, -0.0425925925, 0.00762293627, -0.0111124134, -0.010453457, 0.0149463462, 0.00730094546, -0.0205624588, 0.00703137228, 0.0156801846, -0.00774274627, 0.0229137372, -0.0284250155, 0.00524544856, 0.0114044519, -0.0127373422, 0.0184208471, -0.0304468162, -0.0323488042, 0.0112546887, 0.0122506125, 0.0123479581, 0.0207871031, 0.0117863473, -0.0176720321, -0.00294284266, -0.0250553489, -0.00743198814, 0.00467260508, 0.00572094601, -0.0283651091, -0.00262085232, -0.00526042515, -0.0235876702, 0.0276612248, 0.0117788594, 0.0119286217, 0.00425701309, -0.0161294732, -0.0162043553, -0.00467260508, -0.0338464342, -0.0060242163, 0.00754431076, 0.00148452562, -0.013373835, 0.0151934549, 0.0241567697, 0.00176065112, 0.0197088085, -0.00425701309, 0.0218354445, -0.00280618388, -0.00542516448, 0.00810966548, 0.00947250891, -0.00933772232, -0.0128871053, -0.00183366064, 0.0106032193, -0.00591938198, -0.00494217873, -0.022644164, 0.021820467, 0.00140309194, -0.00784758, -0.0172526967, -0.00281554414, 0.0210866295, 0.0199783836, -0.00608037738, -0.00702762837, -0.0112022711, 0.0118537406, -0.00498710759, 0.00839421526, -0.0294883326, 0.00609535351, -0.00858890731, 0.0189150646, 0.00427947752, -0.0087386705, 0.0141526023, -0.0231084283, 0.0152234081, 0.00098656374, 0.0114868209, 0.000753495, -0.00100622012, 0.0133064417, 0.0220151599, 0.00244300882, 0.0128646409, 0.00810966548, -0.00885848049, 0.0208619852, 0.00397246331, -0.00409227377, 0.0288293753, 0.0242316518, 0.00060420006, -0.00742824422, 0.0186305158, -0.0335469097, -0.0110300444, 0.0072709932, 0.0258640684, -0.00587819749, 0.0041821315, -0.000122267433, 0.00814710651, 0.00279682386, -0.00368229742, 0.00466137286, 0.00927781686, 0.0128421765, -0.00677303132, -0.018660469, 0.0136209438, 0.0019094781, -0.00518179918, -0.00934521, -0.0163391419, 0.0129694752, 0.00658208318, 0.032588426, -0.000477369525, 0.000607944152, -0.0318396129, 0.0237973388, -0.0118687171, -0.00303270062, -0.00870871823, 0.0136284316, 0.00445544906, -0.00283426465, 0.0197088085, -0.000151986038, 0.00545137282, -0.0227939263, -0.022134969, 0.00718113547, -0.00404360052, -0.011876205, 0.00900824368, -0.000569099328, 0.0190498512, -0.0331575274, 0.0130518442, -0.00300274789, -0.0161744021, -0.00486729713, -0.0255196132, -0.0117339306, -0.00992928632, -0.0123704225, -0.00870122947, -0.0022352126, 0.0152833126, 0.004616444, -0.0100116562, -0.0300574321, 0.00646227272, -0.0101988595, 0.0181362983, 0.00792995, -0.00953241438, -0.0018355326, 0.0144146876, -0.000737114693, 0.00638364721, 0.00085832912, 0.0171029326, -0.00574715482, -0.0186754446, -0.00906066, -0.00880606379, 0.0271520298, 0.0168183837, 0.0142724132, 0.00941260345, -0.0127073899, 0.000409040164, -0.027421603, -0.0243814141, 0.00566104101, -0.0145794265, 0.0130817974, 0.00882104, -0.00244675274, -0.00356435915, 0.00873118266, 0.0224344954, -0.00795241445, -0.0228238795, -0.00501331594, -0.00708378945, -0.0233330727, -0.0136059672, -0.00273879059, -0.0123404702, -0.0206523165, 0.0239021722, -0.00448540132, 0.011913646, -0.00679175137, -0.00371786626, 0.00768284127, 0.0104010394, -0.0118836928, -0.00182336441, 0.00213412265, 0.0166386683, -0.0153806591, 0.000639768783, 0.0174024589, -0.0192445442, 0.000283145637, 0.00515184691, 0.0300125033, -0.00193381461, 0.0108278645, -0.00177094736, -0.0100640729, 0.0103935516, 0.0056423205, 0.00565355271, -0.0185556337, 0.0104908971, 0.0063199983, -0.000742730801, 0.0204875767, -0.0112397121, -0.0109701389, 0.00110356603, -0.00425326871, 0.0119435983, -0.0116216075, -0.00460895617, 0.00257030735, 0.00286983326, -0.00868625287, 0.00604668073, 0.00402113609, 0.00153507059, 0.0028679613, 0.0190498512, -0.0276612248, -0.011838764, 0.0117938351, -0.00393876666, -0.0029784115, 0.00487852935, 0.00584450085, -0.00594184641, 0.00767535297, 0.0169531703, -0.0172077678, -0.00552625442, 0.00946502108, -0.0264032148, 0.0157251135, 0.00844663288, -0.00772777, -0.00294284266, -0.00539146736, -0.00917298347, 0.0115167741, 0.0138680525, 0.0128571521, -0.0154555403, 0.0145719387, -0.000965971267, -0.0159198064, -0.00926284119, 0.014519522, 0.00371973822, -0.0104759214, 0.0178217962, 0.00265267701, 0.0170879569, 0.0280506071, -0.000863945228, 0.00492720213, 0.0162792373, -0.00668317312, 0.00584824476, -0.0143622709, -0.0045490507, 0.00134131475, -0.0261036884, 0.00803478435, -0.00736085093, 0.0197088085, -0.0282453, -0.00532781845, 0.0199035015, -0.00741701201, -0.00107080536, 0.021386154, -0.00978701096, -0.0199783836, 0.0103860628, 0.00339961983, 0.0137257781, 0.0224195197, -0.00491597, -0.0208170563, 0.00130761811, 0.00834179856, 0.00596056692, -0.00933023449, 0.0135760149, 0.0091280546, 0.0245910827, -0.0209218897, 0.011164831, 0.00442549633, 0.00467634946, -0.0166835971, 0.00345578091, -0.00219215569, 0.0216707047, -0.00792995, 0.00799734332, 0.00394999888, 0.0151185738, 0.0156053035, -0.00243177661, -0.0311806537, -0.00216407515, 0.0224644486, -0.0218054913, 0.0101689072, -0.0148490006, -0.0213562027, 0.00767535297, -0.0160246398, -0.00184770091, -8.95067842e-06, -0.00145082898, -0.0106855892, -0.00981696416, -0.0128272, -0.00380397984, 0.00623014, 0.0222847331, -0.0123779112, 0.00476246281, -0.00159123179, 0.00377777149, 0.0312405601, 0.00406980934, 0.010610708, 0.0245461538, -0.000607008114, -0.00292973849, 0.0198735483, -0.00494217873, 0.00202367245, -0.0113445465, 0.00983942859, 0.0173725057, 0.00349134975, 0.00545511674, 0.01262502, -0.0202779081, 0.00999668, -0.0187353492, 0.0109701389, 0.00667194091, 0.00484857662, 0.00744696474, -0.0197088085, 0.0223146845, -0.00781762786, -0.00368978572, 0.0127223656, 0.00676554302, 0.00405108882, -0.00195815112, -0.00807222538, -0.0200382881, 0.000133733673, -0.0101239784, 0.00459397957, -0.000659425161, -0.00889592152, 0.0100266319, -0.0137931714, -0.0154854925, 0.000278699561, 0.0212962963, 0.0147516541, -0.0221199933, -0.00663450034, 0.0101464428, 0.0218504202, -0.0113145942, 0.021146534, 0.00784009229, 0.0302221719, -0.0192295685, 0.0103635984, 0.0051331264, 0.0186005626, -0.0184358247, -0.0060990979, -0.00750312582, -0.00345390895, 0.0128122233, 0.0100490963, 0.0154106114, 0.0156801846, -0.00992179755, 0.00332473824, -0.00137688348, -0.0077053057, 0.0200382881, 0.0357933529, -0.00263582869, 0.0112546887, -0.00247670547, -0.00995175075, -0.0260437839, 0.0132764885, -0.0117938351, -0.00364860077, 0.0198136438, 0.0136958249, -0.0210267231, -0.010850329, 0.00147984549, -0.016803408, -0.00312068616, -0.000634152675, -0.0112696653, -0.0192744974, 0.000177726542, -0.00873118266, 0.00710250949, 0.00286421715, 0.0106631247, 0.0201431215, 0.0292786639, 0.0134262517, 0.0331575274, -0.00028805976, -0.0151560148, -0.00124209677, -0.000145901911, 0.00811715424, -0.0304617919, 0.00745070865, -0.0208769608, 0.0330377147, -0.0221199933, -0.00535777071, -0.00260774815, 0.0315101333, 0.0239171498, -0.0136359204, -0.00774274627, -0.0166985728, -0.00602047192, -2.16161807e-05, 0.000560675166, 0.0125651145, 0.0251002777, 0.00820701197, -0.00307201338, 0.00298589957, -0.00469881389, 0.00600549579, -0.0240818877, -0.00308511755, 0.00586696528, -0.00123648066, 0.00829687, 0.0219852068, -0.0422032103, -0.0420534462, -0.0015968479, -0.0121382903, 0.00435435912, 0.00672061415, -0.000167664344, -0.0106331725, 0.0189599935, 0.011322082, -0.032468617, -0.00481862435, 0.0226591397, 0.0222847331, -0.0050732214, -0.00348386145, 0.0172526967, 0.0136658726, 0.00584824476, 0.0133813228, 0.0253398977, -0.00723355217, -0.0109401867, -0.0216257758, 0.00268075755, 0.00311132614, -0.01100758, -0.00476246281, -0.0116815129, 0.00420459593, 0.000777831534, 0.0153956348, -0.00820701197, 0.0353440642, 0.0200233124, -0.0132465363, 0.0274665318, 0.0149837872, -0.0357634, -0.0243514627, -0.00935269892, 0.0136808492, -0.0111124134, 0.010850329, -0.0187503267, -0.0110450201, 0.00377964345, -0.00676554302, -0.0213112738, 0.0128197121, -0.00567227323, 0.00456777122, 0.00481488, 0.0349846333, 0.0246509872, 0.0252949689, 0.0103261583, -0.0148789529, -0.0104309926, 0.0207421742, 0.0232132636, -0.00697146729, -0.00930777, -0.000541486777, -0.0112247355, -0.00532407407, -0.0211016051, -0.00345952506, -0.0153656825, 0.00519677578, -0.00942758, -0.00274815084, -0.00548881339, -0.00945004448, -0.00177562737, -0.00536525901, -0.0144521287, -0.00332848239, -0.000169419378, -0.00769032957, -0.02375241, 0.00754056638, 0.00728222542, 0.00249917, 0.0296980012, -0.0145344976, 0.0192295685, 0.00377402734, 0.00945753232, 0.0157850198, -0.0285298489, -0.00414094655, -0.00383018842, -0.0125576267, 0.00250853016, -0.00790748559, 0.0107904235, 0.013531086, -0.0108128879, -0.0205924101, -0.00571720209, -0.0060242163, 0.0165787637, 0.0161893796, -0.0158449244, 0.0148939295, -0.00798985548, -0.0303719342, -0.000725414488, 0.0224344954, 0.00163990469, -0.00464639673, -0.00813961867, 0.0214011315, 0.00609535351, 0.00491971429, -0.0220900401, -0.00792246219, -0.0174473878, -0.0119211338, -0.0153282415, 0.0067543108, 0.000420740398, 0.0255495664, 0.0106781013, 0.0222697556, -0.00290353, 0.0122356359, 0.0153656825, 0.00418962, -0.00350070978, -0.0260437839, -0.00608037738, -0.00119435985, 0.0167734548, -0.0244413204, -0.00736085093, 0.0276462473, -0.0133813228, -0.0164739285, -0.0165787637, 0.00666070869, -0.0107454946, 0.00749938143, 0.0131342141, 0.00307388534, -0.000826504489, 0.025564542, 0.0351943038, 0.00262459647, 0.00126736925, -0.00643980829, -0.017716961, -0.0106706126, -0.0114868209, 0.0018720373, -0.00042448446, 0.00599800749, 0.00673184637, -0.0137781948, -0.00324985688, 4.3349366e-05, 0.0171927903, 0.0248756316, 0.00995175075, 0.00460895617, -0.0149089051, -0.0103486227, -0.00328542548, -0.0253548734, 0.0111872954, -0.0107529825, -0.0193493776, 0.00811715424, -0.010019144, 0.0118013239, 0.0287994221, -0.00791497435, -0.016968146, -0.0110225556, 0.00787004549, -0.00661952421, -0.00169793784, 0.0341160074, 0.00125052093, -0.00584824476, -0.00698644342, -0.0207421742, 0.0187653024, -0.0148415118, -0.0153507059, -0.000490473758, -0.0121233137, -0.0354938284, -0.0011419428, -0.00784009229, 0.00813213, -0.0144371521, 0.00566478493, 0.0123404702, 0.0141376257, 0.0163541175, -0.00435810303, 0.00718862331, 0.00619269954, 0.0109177222, -3.05376088e-05, 0.0103635984, -0.00895582698, -0.0187353492, 0.0174174365, 0.00138905167, -0.00143398065, 0.00834928639, -0.00181962026, -0.00230073393, -0.000185799712, -0.00807971321, 0.00389758172, -0.00690032961, -0.0078251157, -0.00971961766, 0.0199783836, 0.0149163939, -0.00705383671, 0.00323300855, 0.000784383679, -0.00210791407, 0.0243814141, -0.000919170328, 0.0167435016, -0.0352242552, 0.00893336255, 0.0110375322, 0.00588568533, -0.00342021231, 0.016054593, 0.000131744629, 0.0260138307, -0.00999668, 0.0299675744, 0.0118013239, -0.0173275769, -0.0382794216, 0.0171778146, 0.0235577188, 0.00646976102, -0.0125501389, -0.017791843, 0.0309709851, 0.00614402676, -0.0306415074, -0.00781014, -0.00871620607, 0.0190049224, 0.00824445207, 0.00321241608, -0.00390881393, 0.00314689474, 0.017162839, -0.00329853, 0.00220338791, 0.0234528836, 0.010730518, 0.00186829327, 0.00637990329, -0.00829687, 0.0049047377, -0.015111086, 0.0203527901, -0.00796739105, -0.0112097599, 0.0215958226, 0.00588568533, -0.0204126947, 0.0187203735, 0.0116964895, 0.0179715585, -0.0222098511, -0.00795241445, -0.00284924079, 0.0082818931, -0.019409284, 0.0074844053, -0.0116290962, -0.00207421742, -0.0295332614, 0.014834024, 0.0158898532, 0.00792995, 0.00584824476, 0.0263283327, -0.00539521175, -0.0115617029, -2.53163798e-05, -0.0125201857, -0.00373658654, 0.00103617273, 0.0236625522, -0.00298402761, -0.0131342141, 0.00311694224, -0.00729720155, 0.0120634083, -0.00864881277, 0.00724478438, 0.0148115596, -0.00907563698, 0.00938265119, -0.0151185738, -0.0137931714, -0.0220001824, 0.00475871889, 0.0134636927, -0.000369025365, -0.00813213, 0.0143697588, 0.0060916096, 0.00779516343, 0.00283800857, 0.00939013902, -0.00514435861, -0.0152458725, 0.0158149712, -0.0144671043, -0.00852900185, -0.00171291421, -0.00302521233, 0.0131042618, 0.0127598066, 0.000693589856, 0.000454437075, -0.0230635, 0.01100758, 0.0214909893, -0.00357746333, -0.00520426407, 0.0172526967, 0.0260437839, -0.00938265119, -0.0175671987, -0.00225206092, 0.00175222696, 0.00834928639, 0.029353546, -0.0131866308, 0.00219402788, 0.0105433147, 0.00797487888, -0.0106556369, 0.000837268715, 0.0130967731, -0.017911654, -0.0029727954, -0.00478867162, -0.0196788572, -0.0023812314, 0.0123404702, 0.00397620723, -0.0139728868, 0.00852900185, 0.00313191861, 0.018900089, 0.0112397121, -0.0400765762, 0.0186005626, -0.00830435753, -0.00504326867, 0.0219402779, 0.00530160964, -0.0158599, 0.0187503267, 0.0130967731, -0.00949497335, 0.00638364721, 0.00772028184, 0.00263395649, 0.00846909732, 0.0240219831, 0.0131042618, -0.00593435857, -0.00688909739, -0.00162680051, -0.0129245454, -0.024261605, 0.00804976095, -0.00231383811, 0.0105283381, -0.018465776, 0.0103186695, -0.00583326817, -0.00545886112, -0.0102887172, 0.00960729551, -0.00982445199, -0.00532781845, 0.000706226099, 0.0166985728, -0.00686663296, 0.0198136438, 0.0111872954, 0.000266999326, 0.0058033159, 0.0075667752, 0.00161744026, 0.00278933556, 0.00190011796, 0.00560488, -0.0159198064, 0.0224494711, -0.00453781849, -0.00287357741, 0.00896331482, 0.0205175299, -0.00848407298, 0.00634246273, 0.0126999011, 0.00737957144, -0.0120409438, 0.0180015117, 0.00189450185, 0.00177469139, -0.00244862493, -0.00318433554, 0.0103261583, -0.0344754383, -0.0124153513, 0.0097945, 0.016728526, 0.00163803273, -0.0111124134, -0.00476995111, 0.00319182361, -0.0243215095, 0.00621142, 0.0272868164, 0.0174923167, -0.00949497335, 0.0131491907, -0.00352691836, -0.0128496643, 0.0135385739, 0.01262502, -0.00074741093, -0.00701265177, -0.00633497443, 0.000369961374, -0.0091954479, 0.0155603746, 0.00252537848, -0.00330976211, 0.009704642, 0.00869374163, -0.00989184529, -0.00210042601, -0.00239059166, -0.00692279404, 0.016533833, -0.0127073899, -0.00934521, 0.00889592152, -0.00164177676, -0.00684416853, -0.00210978603, -0.00172133837, -0.0132240718, -0.0191546865, 0.00438056746, 0.00141619623, -0.00120652805, 0.00464265281, 0.00313191861, 0.0023456628, 0.00884350482, 0.0148115596, 0.00442549633, -0.00106986938, 0.0155603746, 0.00950995, -0.0218803734, -0.00214161072, -0.00463516451, -0.00978701096, 0.0153057771, -0.00477369502, -0.00249917, 0.00792995, -0.018226156, -0.0117114661, 0.0170580037, -0.00927781686, 0.0215508938, -0.00479616, -0.0103111817, 0.0209218897, 0.0081620831, 0.000331584626, -0.00443672854, 0.00829687, 0.0135161094, 0.0363025479, 0.0161744021, 0.0156502314, 0.0194691885, 0.0104908971, 0.000149177969, 0.00336966733, 0.0140327923, 9.19930881e-06, -0.000876581471, 0.0216407515, 0.00831933413, 0.0124078635, 0.00162680051, -0.0408852957, -0.00107642147, -0.072665, -0.013531086, 4.6040419e-05, -0.00685540074, -9.92179775e-05, 0.00237935944, 0.0107529825, 0.00744322035, 0.0129769631, -0.00722980825, 0.0128796166, 0.00600175187, 0.0116141196, 0.0158149712, -0.0144296642, -0.00614028238, 0.0151934549, 0.003156255, -0.00736833923, 0.00162773649, 0.0086563006, 0.01274483, -0.0101539306, -0.00128608965, 0.020083217, 0.00814710651, 0.00258153956, 0.0266877636, -0.0214310829, -0.0118013239, 0.0170729812, 0.00221087621, -0.0120559204, -0.0171328858, 0.0131566785, 0.000208147147, -7.62270211e-05, -0.0109027456, -0.0135161094, -0.00717364717, -0.00806473661, -0.00121869636, 0.00672810245, -0.0160845444, -0.0123853991, 0.0023456628, -0.0077801873, -0.00593061419, -0.010610708, 0.00619269954, -0.0165787637, 0.0225992352, -0.0175821744, 0.00816957094, 0.0237823632, 0.0091804713, -0.022763975, -0.0249654893, 0.0440003648, 0.00993677415, 0.00292037823, -0.0285897553, -0.0149313696, 0.000378619559, 0.0143547822, -0.0068142158, -0.010573267, -0.00188982172, -0.00651094597, 0.0243814141, -0.0111049255, 0.00827440526, 0.0103561105, -0.0135685271, 0.02525004, 0.00849156175, 0.00102774845, 0.0125726033, 0.00977203529, 0.000746474892, 0.0228538327, 0.0159647353, 0.0337565765, -0.00155659905, 0.00882852823, -0.0111423666, -0.00672810245, 0.00611407403, 0.0112621766, -0.00394625496, 0.00554497447, 0.0149837872, -0.00107174134, -0.0152608482, 0.00365796103, -0.0177618898, -0.00828938186, -0.0158449244, 0.0254147798, 0.010378575, 0.0101988595, 0.0055824155, 0.00222585234, 0.000677677512, 0.0133663462, -0.0104983859, 0.0102363005, -0.0141151613, 0.0103935516, 0.000826972479, 0.0169531703, 0.000664573279, 0.00424952479, 0.00460895617, 0.0350744911, -0.000117119336, 0.00844663288, 0.00990682188, -0.0102437884, -0.006016728, -0.0108877691, -0.00377402734, -0.000292973855, -0.0502904132, 0.0102812294, 0.00436184695, -0.0174623653, 0.0120109916, -0.00637990329, 0.00258902763, -0.00575838704, 0.0086563006, 0.00174286682, 0.00435810303, 0.0150362039, -0.0197986662, 0.0158299487, 0.0236625522, -0.0226890929, 0.0239620786, 0.00747317309, -0.000298355939, 0.0159497578, 0.0106631247, -0.0185256824, -0.0186454915, 0.00981696416, -0.000731966633, -0.00145550899, -0.0180464406, 0.00722606434, 0.00234004669, 0.00694525847, -0.0100715607, -0.00416715536, -0.0048373444, -0.0142349722, 0.00657833926, 0.0115691908, 0.0030458048, 0.00108578161, -0.0024860655, -0.00636492716, -0.000841480796, 0.0173126012, 0.00893336255, 0.0213711783, 0.0221948754, 0.0177319385, -0.00467634946, -0.00193568657, 0.0120484326, -0.00499834, -0.0100865373, -0.0203677658, -0.0116440719, -0.00193943072, -0.00927781686, 0.0178667251, -0.0186754446, 0.0102213239, -0.00186548522, -0.00918795913, -0.0182411317, -0.00909061357, -0.015545398, -0.0199783836, 0.00101651624, 0.0111573422, 0.0131192375, 0.0123704225, 0.0302371476, -0.000317778351, -0.00372909848, 0.00511066196, -0.00674307859, -0.00678426353, -0.0157850198, 0.00498710759, 0.0112472009, 0.014796583, -0.00395748718, -0.011441892, 0.00505075697, 0.00124396884, -0.0140926968, -0.0125576267, -4.83512158e-05, -0.00622639619, 0.0184208471, 0.0263882391, 0.00445170468, -0.00212663435, 0.0123779112, -0.00427573314, 0.0186904203, 0.0135760149, 0.0170130748, -0.0166536439, 0.0065933154, 0.0261635948, 0.0109027456, 0.00165020092, 0.0177469142, 0.0221948754, -0.0191546865, -2.22596937e-05, 0.0120035037, 0.00468758168, -0.00532781845, -0.0148040717, 0.00652217818, -0.00595307862, 0.0146093797, 0.0155154457, 0.010019144, -0.00223334064, -0.0119585749, -0.00561985606, 0.0346551538, 0.0252650157, 0.00764914462, -0.0020199283, -0.00607288908, -0.0258191396, 0.00153132656, 0.00938265119, 0.0244862493, 0.0057359226, -0.00592687028, -0.0148190474, 0.00160433596, 0.0191097576, 0.00980947539, 0.00975705869, -0.0194542129, -0.0151859671, 0.0234678611, 0.000186852732, 0.017477341, -0.0112472009, 0.00387886143, 0.00466137286, -0.00593061419, 0.00287170522, -0.013965399, -0.000464265264, -0.00914303, 0.00841668, 0.00816957094, -0.00142742845, -0.00705383671, -0.0117638828, -0.00611033, -0.0205924101, 0.000451161, 0.00168108952, 0.0388485193, -0.00574341044, -0.00716241496, -0.00925535243, 0.0154555403, -0.00503578037, 0.0020573691, 0.00566104101, 0.0138455881, -0.0152458725, -0.00735336263, 0.00754431076, -0.007712794, 0.00239246385, 0.00598303135, 0.00679923967, 0.0220600888, -0.021071652, -0.0131866308, -0.00636867108, -0.0211315583, -0.0151185738, -0.0234379079, 0.0153207537, -0.0229886193, 0.000243598857, -0.00735710701, 0.00138717971, -0.0198136438, -0.0131192375, -0.0220151599, -0.00888843369, -0.0178367719, -0.00862634834, -0.0115691908, -0.0193493776, 0.00248232158, -0.0107979113, -0.00120184803, -0.0110375322, 0.0101539306, 0.00706132501, -0.0175671987, -0.0168782882, 0.00180183596, -0.00474748667, -0.0147441663, 0.0132390484, 0.00632374221, 0.0346252024, -0.00394625496, -0.00531284185, -0.0330976211, 0.00686663296, -0.00834928639, -0.0152009437, 0.0159198064, -0.00999668, 0.00318059139, -0.0274066273, -0.00815459434, 0.00387511728, -0.00870871823, -0.0235726945, -0.0170580037, -0.0112022711, -0.00862634834, 0.00829687, -0.0101464428, -0.0048373444, -0.00795990322, 0.040795438, -0.00541393226, 0.0104834093, -0.00455279462, -0.0133962994, 0.0323188528, 0.0141376257, -0.00261336425, 0.0193643551, -0.0199484304, 0.00289042573, -0.0166985728, 0.00552625442, 0.00731966598, -0.00779516343, -0.0242166761, 0.0102962051, 0.0113445465, 0.00578085147, 0.0269124098, -0.0196039751, -0.0177019853, 0.00754056638, -0.0111872954, -0.00123460859, 0.069130592, 0.0166985728, 0.000924786436, -0.0158748776, 0.00864132401, -0.0159347821, -0.00359992776, 0.037320938, 0.00166049716, 0.0132764885, 0.00942009222, -0.00149575784, 0.00543639669, 0.0102138361, 0.022883784, 0.00891838595, 0.0240968652, 0.00422706036, 0.00416715536, 0.00122992857, -0.00100528402, -0.0177319385, 0.00989933312, -0.00993677415, -0.00944255665, -0.00962976, 0.00944255665, -0.00681796, -0.0121532669, 0.026433168, 0.00141151622, 0.0498111695, 0.0237374343, 0.00840919185, -0.00742075592, 0.00847658515, 0.00897829141, 0.0370513648, 0.0126849255, -0.0399867184, 0.00482611218, 0.0203378145, 5.82379107e-05, 0.00582578033, -0.000478305534, -0.0190798044, 0.00564606488, -0.00744322035, -0.00137781946, -0.0356435925, 0.00212101825, 0.00616649119, -0.00486355321, -0.0233780034, 0.020397719, 0.0100565851, 0.0412147753, 0.00871620607, 0.000143210855, -0.00210791407, 0.00448914571, -0.00166049716, -0.00149482186, -0.00806473661, -0.0109776268, -0.0325285196, -0.0214460604, 0.00279869582, 0.00764165632, 0.00554871885, -0.00712123, -0.0111348778, 0.0064660171, -0.00323862466, 0.00348947756, 0.0193643551, -0.00314502278, 0.00518179918, 0.00818454754, -0.00784009229, -0.0294883326, 0.0204276722, -0.0188701358, -0.0214909893, 0.0153357303, -0.0190798044, -0.0390581861, -0.0176271033, -0.00296717929, 0.00533156237, -0.00310758199, 0.0174024589, 0.00617397903, -0.0111947833, 0.00383393257, 0.00658208318, -0.0115841674, 0.0247857738, -0.000718862342, 0.00984691642, 0.0124003757, 0.000421208417, 0.004912226, -0.00456777122, 1.73455956e-05, 0.0176420808, 0.0111573422, 0.010138954, 0.0029353546, 0.00217156322, 0.00888843369, 0.00328542548, -0.00730469, 0.019648904, 0.014085209, 0.00331163406, -0.0110674845, 0.0170280524, -0.00146580522, 0.00422331644, -0.00426450092, -0.0132540241, -0.00260774815, -0.0142799011, -0.00254409877, -0.00140590011, 0.0219852068, 0.00185893313, 0.00920293573, 0.0268525034, 0.00769032957, -0.0150586683, 0.00418962, 0.0082669165, 0.0217755381, 0.0285448264, 0.0151859671, 0.00101932429, 0.0187503267, 0.0127523188, 0.00357559137, -0.00699767563, -0.00192071032, -0.00538772345, 0.00633123051, -0.0147816073, 0.0219552536, -0.0130293798, 0.0183759183, 0.00558615942, -0.00450786576, -0.0225243531, -0.00881355163, -0.00312068616, -0.013770707, 0.00984691642, 0.00492345821, -0.0130817974, 0.0124003757, -0.0058632209, -0.00768284127, -0.00505075697, 0.0475048199, -0.00820701197, -0.00464265281, -0.0204576235, 0.0224794243, -0.0188252069, 0.0256094709, -0.00786255673, 0.00994426198, 0.00503578037, -0.00424952479, 0.0202030279, -0.000680017576, 0.00546260504, -0.0131042618, -0.0335169584, -0.00246360106, 0.00469132559, 0.0113071054, 0.00926284119, -0.0100341206, 0.0556818806, -0.00131697825, -0.0127747832, -0.00041044419, 0.0179416053, 0.00606540125, -0.0102512762, -0.0104309926, -0.00781014, -0.0174623653, 0.00136752333, -0.0130293798, 0.00442549633, 0.00365421688, -0.00479616, 0.0221948754, 0.0215059649, 0.0284399912, -0.00152383838, 0.000586415699, 0.00759298354, -0.0110000912, 0.0167734548, -0.00202928856, -0.00130855408, -0.0128945932, -0.00345390895, -0.00447042519]
28 Nov, 2021
jQWidgets jqxToolBar theme Property 28 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxToolBar is used to illustrate a jQuery widget that shows a toolbar where various tools can be spontaneously appended. Moreover, the jqxToolBar favor some widgets namely jqxButton, jqxToggleButton, jqxDropDownList, jqxComboBox as well as jqxInput. However, the custom tools can also be appended. The theme property is used to set or return the theme for the jqxToolBar widget. It accepts string type value and its default value is empty (”). In order to use this property, we need to incorporate the theme stylesheet i.e. ( jqx.energyblue.css ) into the header section. The theme file is included after the ‘jqx.base.css‘ file. Syntax: Set the theme property. $('#Selector').jqxToolBar({ theme: 'energyblue' }); Return the theme property. var theme = $('#Selector').jqxToolBar('theme'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script><script type=”text/javascript” src=”jqwidgets/jqxdropdownlist.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcombobox.js”></script><script type=”text/javascript” src=”jqwidgets/jqxinput.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtoolbar.js”></script> Example: The below example illustrates the jqxToolBar theme property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxlistbox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxdropdownlist.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcombobox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxinput.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtoolbar.js"> </script> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3>jQWidgets jqxToolBar theme property</h3> <div id="jqxtb"></div> <div> <input type="button" id="jqxBtn" style="margin-top: 25px" value="Click here" /> </div> <br> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxtb").jqxToolBar({ width: "470px", theme: "energyblue", height: 70, tools: "button button | dropdownlist combobox | input", initTools: function (type, index, tool, menuToolIninitialization) { switch (index) { case 0: tool.text("Button1"); break; case 1: tool.text("Button2"); break; case 2: tool.jqxDropDownList({ width: 100, source: ["Java", "Scala", "C++"], selectedIndex: 2 }); break; case 3: tool.jqxComboBox({ width: 60, source: [4, 5, 8, 10, 15], selectedIndex: 3 }); break; case 4: tool.jqxInput({ width: 140, placeHolder: "Search..." }); break; } } }); $("#jqxBtn").jqxButton({ width: "140px", height: "30px", }); $("#jqxBtn").on("click", function () { var th = $('#jqxtb').jqxToolBar('theme'); $('#log').text("Theme name of toolbar: " + th); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtoolbar/jquery-toolbar-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtoolbar-theme-property?ref=asr8
PHP
jQWidgets jqxToolBar theme Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0234347656, -0.00306493044, -0.00744289253, 0.0426449925, 0.0623404719, 0.014728792, 0.017012326, 0.00813508872, -0.0228067935, -0.00872024428, -0.00233348599, -0.0206231643, 0.0280446485, -0.00790673587, -0.00303817028, 0.0180684607, -0.0395051315, -0.00969788246, -0.0338819325, 0.00809940882, -0.0190817788, -0.0155565739, -0.0576592274, -0.00070691423, -0.0434727743, 0.0255755782, 0.00537344, 0.0158991031, -0.00359299756, 0.0337677561, -0.0209656935, 0.0173834, 0.0246336199, 0.00375712663, -0.0446430854, -0.032055106, -0.0323976353, 0.0252330471, -0.0262606386, -0.00166626601, -0.00860606786, -0.0239057429, 0.0171407741, 0.0106826564, -0.019010419, 0.0249618776, 0.0130018704, -0.0389913395, 0.0320265591, -0.00283836108, -0.00521287927, 0.0434727743, 0.0157135669, 0.0516364053, 0.0189390574, -0.0260180123, 0.0119457357, 0.03516642, -0.038220644, 0.0147430645, 0.0221360046, -0.0264747199, -0.0292149596, -0.0238343831, 0.00376783055, 0.0208372455, 0.00868456438, 0.0193957649, -0.0245765317, 0.0365936272, -0.00559465773, 0.028629804, -0.033710666, 0.0164842587, 0.0199809205, -0.011046594, 0.00882728491, -0.0183253586, -0.0247049797, 0.0261036456, -0.0134300329, 0.0100047318, 0.00386773515, 0.0161417294, -0.014728792, 0.0119457357, -0.0012586196, -0.0393624119, 0.0365936272, 0.0272311401, -0.00758561352, -0.0114747565, 0.0130232787, 0.0413319618, -0.0327116214, -0.000380217272, 0.000949985697, 0.0151997712, -0.0570598, 0.0303995423, 0.0245194435, -0.00546620879, -0.0308277048, -0.0459561162, 0.0353662297, 0.0255613048, 0.0364794508, 0.00196241168, -0.0153710367, -0.0290722381, 0.013458577, -2.48088982e-05, -0.0353947729, -0.00990482792, -0.0290865116, 0.0462130122, -0.00197489979, -0.0335108563, 0.0137012023, 0.00769979041, -0.0161417294, -0.0226498, 0.0160989128, 0.0233491324, -0.0251616873, 0.032055106, -0.0211655032, 0.0237487499, 0.0448143482, 0.0043672584, 0.000383562292, 0.0382491909, 0.023934288, 0.0273025, 0.00618694909, 0.0198524706, 0.000364161184, 0.0251902305, -0.0339675657, -0.0290008783, -0.0314271338, -0.0299999248, 0.00418528914, 0.0166697968, -0.0034502768, 0.0490959734, 0.0179685559, 0.0424166396, -0.0204233546, 0.0105970232, 0.00202485221, -0.0157135669, 0.00596573204, 0.0337677561, 0.0144005343, -0.00884869322, -0.0260893721, 0.0203662664, -0.0121455453, 0.00453138724, 0.00383919105, -0.0220075566, 0.0279590152, 0.00141472055, -0.00326830754, 0.00765697379, 0.0125094829, -0.00900568627, -0.0657086819, 0.0302853659, 0.00606563641, -0.00042392555, 0.0242340025, 0.00944098458, -0.0522643775, -0.0128091965, 0.0154138524, -0.0501235649, -0.0139581, -0.0434156843, -0.028501356, 0.0318838395, -0.0102687655, 0.0193244033, 0.0109110093, 0.00965506583, 0.00217649317, 0.0105113909, -0.037963748, 0.0131160468, -0.0290722381, 0.0389057063, 0.0352805965, 0.0210941434, 0.0280874651, -0.0124381231, -0.0174833052, 0.0162987225, -0.0185822565, -0.0123667624, 0.0167697016, -0.0452425107, -0.00715745101, -0.00831349, 0.0341673717, 0.0415317677, -0.0158848315, -0.0439865664, 0.0244480837, 0.00371431024, -0.0141650448, 0.0322834589, 0.0398762077, -0.00314521091, -0.024091281, 0.0199381039, -0.00264033582, -0.0346240811, -0.011902919, 0.00787105504, -0.0208515171, 0.00277413661, -0.0031041787, 0.0281873699, -0.103957869, 0.010761153, 0.00530921575, -0.0210513268, -0.00690055359, 0.0391340591, -0.0311702359, -0.00622619735, -0.0162559059, -0.0216507539, 0.0520360246, 0.054605, -0.0184823517, 0.0080851363, 0.0161988176, 0.0411321521, 0.0204233546, -0.0515793189, -0.0229066983, -0.0175261218, 0.0244908985, -0.01587056, 0.0261036456, -0.00470978813, 0.0132516315, 0.0309133381, -0.0197811108, -0.00479898881, 0.00532705616, 0.0274309479, 0.0233205874, 0.0362225547, -0.009141271, -0.00749998121, 0.0417030342, -0.0145147108, 0.0280874651, 0.0440722, 0.00517363101, 0.0320836492, 0.0137582906, 0.00255113537, 0.0409894288, -0.0124666672, -0.015999008, -0.0295717623, 0.0238914713, -0.0312273242, 0.0488105342, 0.0258752909, -0.00462772371, 0.00159044552, -0.0310275145, -0.0283586346, 0.0231493227, -0.00458847545, 0.0162559059, 0.00952661689, 0.049295783, 0.0407896228, 0.00795668736, 0.000587385555, 0.00178668671, -0.0332539603, -0.012252586, 0.0517791286, -0.0323690921, -0.0187535211, 0.0250903275, 0.026917154, 0.0296003055, -0.0156136621, 0.0128948297, -0.0320836492, -0.00186785928, 0.0215936657, 0.0237772949, -0.0102116773, -0.0267316159, 0.00934821647, -0.000687736145, 0.0820930377, 0.0304280873, -0.00872024428, 0.00273132045, -0.0220075566, 0.0527781732, 0.0112464037, -0.0439580232, -0.0307991616, 0.000489264959, 0.0207944289, -0.0143648544, 0.0300855562, -0.02279252, 0.024091281, -0.00889151, -0.00120688323, -0.0298001152, 0.0443861857, 0.0503519177, -0.00587296346, -0.0190817788, -0.0101759974, 0.00752138905, 0.0194528531, -0.016855333, 0.0104186228, 0.0395336784, 0.0116317496, 0.0368505269, -0.037963748, 0.000867921219, -0.0113106277, -0.0191674102, -0.012602252, -0.00571240252, 0.00870597269, -0.00127556769, -0.0315413103, 0.0201950017, -0.0746715516, -0.010283038, -0.0186250713, 0.0319694728, 0.0233063158, 0.0013790403, 0.0031077466, 0.0247477964, -0.00171443424, 0.0239913762, -0.00254043122, 0.00472762855, -0.0314271338, -0.0248905178, 0.0165984351, -0.0101759974, 0.0143077662, 0.0348809771, -0.0154423965, 0.0384204537, -0.0404185466, -0.0247620679, -0.00257967948, -0.0318552963, 0.0411892384, -0.0132230874, -0.039676398, -0.0316554867, 0.0412463285, -0.0268315207, 0.0145718, 0.018953329, -0.00574094662, -0.0178543795, 0.0172549523, -0.0480969287, 0.0184823517, 0.0179685559, 0.0578875802, -0.0175118484, 0.00265282393, -0.00817790534, -0.0363938175, 0.0265888963, -0.0268029775, -0.0278591122, 0.0220503733, -0.00812795293, -0.0348238908, -0.0261892769, -0.00407468062, 0.0178543795, -0.0238914713, 0.0367648937, -0.00734298816, 0.00894146133, -0.0332254171, 0.0120028239, -0.0176973864, -0.00455993135, -0.0185537115, -0.0189105142, -0.000515579071, 0.0104899826, -0.0093054, -0.00467410823, -0.0235774852, -0.00332182785, 0.0602852888, -0.00860606786, 0.0145432558, 0.0147145204, 0.0525783636, 0.0411892384, -0.0534061454, 0.0184966233, -0.0296859387, -0.043672584, 0.0331683271, -0.00132641196, 0.0110680023, -0.0354518592, 0.0122739933, 0.0363081843, -0.00931967236, -0.00493100565, 0.00462772371, -0.00454565929, 0.00907704607, 0.0348238908, 0.00428876188, 0.0158562865, -0.0002519915, -0.00916267931, 0.0103543978, -0.00685060117, -0.0283586346, 0.0384204537, -0.0138225146, -0.0554327816, 0.00952661689, -0.0299428366, -0.0285584442, 0.0135798892, 0.0128377415, -0.0210941434, -0.0321692824, -0.0557753108, 0.0312844105, 0.0105970232, 0.00455636345, -0.0130732302, 0.0101759974, 0.0282587297, -0.026374815, -0.00904850196, 0.00138439226, -0.00927685574, -0.00900568627, 0.00778542273, -0.0141222291, -0.00604066, 0.04392948, -0.0151284104, 0.0211512316, -0.0455564968, -0.0253329519, 0.064110212, 0.0496097691, 0.00995477941, -0.0188819692, 0.012124137, 0.00604066, 0.0355945826, 0.0125308912, 0.0202092733, -0.00686487323, 0.0599427596, 0.0148286968, 0.0288153403, 0.00967647415, 0.0292149596, -0.0268315207, -0.0144718951, 0.0216364823, 0.0126236603, -0.0125308912, -0.0335679464, 0.0172264073, -0.0143862627, 0.0265175346, -0.0538913943, -0.0133372638, 0.0433871411, -0.0269314256, 0.0225784387, 0.0188962407, -0.0318838395, 0.0130446861, 0.037421409, 0.00127289165, -0.0516078621, 0.0165556204, 0.00341102853, -0.0302853659, 0.0259751957, -0.0189390574, -0.022692617, 0.0269028824, -0.0152568594, -0.0314271338, -0.0556325912, 0.00612986088, 0.0161702726, -0.0196383893, 0.0255898498, 0.00129965181, 0.0224214476, 0.0103900786, 0.0083634425, 0.0397334881, -0.00890578143, -0.0266174395, 0.0160989128, -0.0206659809, -0.00764270173, -0.0080851363, 0.0271169636, -0.0371074229, -0.00284371316, 0.0341388285, -0.0112107238, -0.0347097106, -0.0142292697, -0.00437796209, -0.00467410823, 0.030884793, -0.0365936272, -0.0234918538, 0.00450997893, 0.0110965464, -0.00752852531, -0.0188676976, 0.00418172125, 0.0118672391, -0.00439580251, 0.0177544747, 0.00279911282, 0.000520931149, -0.00386059913, 0.0156707503, -0.0229209699, -0.015014234, -0.0279875603, -0.0207087956, 0.00589437131, 0.0178543795, 0.0145432558, 0.00637248624, 0.0221645497, -0.0335108563, 0.0183681734, 0.0125951152, -0.00639032619, -0.0105756158, 0.0244195387, 0.0023834384, 0.016883878, 0.0221645497, -0.00216757297, 0.00417101709, 0.0439009368, 0.0104328943, -0.000119751719, 0.015171227, -0.0214509442, -0.0333966799, 0.0281445533, 0.012031368, 0.00765697379, 0.00531992, -0.00205874839, 0.000130121276, -0.0369647034, 0.0158134717, -0.00152711314, 0.0347668, 0.0185822565, 0.0139224194, 3.96663636e-05, 0.000723862322, 0.0044029383, 0.00866315607, 0.0239200164, -0.0125523, 0.0245908033, 0.00885582902, 0.00170551427, 0.0338533856, -0.012252586, -0.00826353766, 0.00926972, -0.0130518228, -0.00633323798, 0.0202235449, -0.011489029, 0.00180809491, 0.0321978256, 0.00764270173, -0.000452246721, 0.00901995786, -0.00744289253, 0.0295146741, 0.00595502788, -0.0237059351, 0.00974783488, -0.0127806524, 0.0272454116, -0.0254185852, 0.0388771631, -0.00603352441, -0.0168410614, -0.0155565739, -0.00202842, -0.0409608856, -0.00680064876, 0.0241769124, -0.0324832685, 0.0238772, 0.0115175731, 0.0170408711, 0.0132730398, 0.0304566305, -0.00939816888, 0.0177972913, 0.0294861291, 0.0139509635, -0.00900568627, 0.0533490553, -0.00740721263, 0.0385060869, 0.0101331808, 0.0268457923, 0.0111893155, -0.00953375362, -0.0148001527, 0.0117601985, -0.00574808242, 0.0159133747, 0.0106897922, -0.00036728321, -0.00194457173, -0.00242268667, -0.0130304145, 0.0274594929, -0.0145646632, 0.0041995612, 0.0309704263, -0.000561071385, 0.0167697016, -0.0100475485, 0.0362796411, 0.043073155, 0.00432801, -0.000669896, 0.00573381037, -0.00631183, 0.00394623168, 0.00112660276, -0.00579446694, -0.00226034154, 0.00199452392, 0.00822785776, 0.0129804621, -0.00477044471, -0.00957656931, 0.024062736, 0.027045602, -0.00437796209, 0.0165270753, -0.0229352415, -0.0293148644, 0.0348238908, 0.000537879241, 0.0257611144, 0.00524855964, -0.0143862627, 0.0197240226, 0.0194671247, -0.0115746614, -0.0118172867, 0.00409608847, -0.0208229739, -0.024919061, -0.0214224011, 0.0118030151, -0.0191245954, -0.0136726582, 0.0363938175, 0.0135798892, 0.00149321696, 0.0128591489, 0.00890578143, -0.00623690151, -0.00105881039, 0.0227211602, -0.00679708086, -0.00897000544, 0.0461273827, 0.00592291541, 0.000574005418, 0.00687200949, -0.0197525658, -0.0214366727, -0.0135442093, 0.0139795076, 0.0108467853, -0.0174833052, -0.03345377, -0.00459917961, -0.0286583472, 0.00423880946, -0.010190269, -0.00396407163, 0.00108289451, -0.0203377213, 0.0181398205, 0.0174690336, -0.00136566022, -0.0213795844, 0.0354518592, -0.0058372831, -0.00782110263, -0.00308098644, -0.0011123307, -0.000328926981, -0.0115033006, 0.000812170852, 0.00104810635, 0.00119350315, -0.00505945459, 0.0117816068, -0.00602995604, 0.0255327616, -0.0254043117, -0.000708698237, -0.0275736693, 0.00824212935, -0.0369076133, 0.00504161417, -0.00736439601, -0.0176688414, 0.0100332759, 0.0111536346, 0.00180541887, -0.00621906156, 0.037963748, -0.0442720093, 0.0226355288, -0.00189640338, 0.0188391525, -0.0363367312, 0.00492743775, 0.0234490372, 0.00423880946, -0.0093054, -0.00498095807, 0.0294004958, 0.0133800805, 0.0129590537, 0.0171122309, 0.00426378567, 0.00579089858, -0.0060442281, 0.0324832685, -0.0158420149, 0.0224071741, 0.0297430269, -0.0124238506, 0.0180541892, -0.0204661712, 0.0167126115, 0.0131659992, 0.0243909936, 0.0336821228, 0.0156564787, -0.00380351092, 0.00722524337, 0.0345099047, 0.0212225914, -0.00957656931, -0.024219729, 0.0510940664, 0.0331397839, -0.00343422056, 0.00195884379, -0.0114462124, 0.0120099597, 0.0202092733, 0.0268172491, -0.0123881707, -0.0421597399, 0.00269385614, -0.00157260546, 0.00148429687, -0.00647595897, -0.00716815516, -0.0217934754, 0.00106416235, -0.0123453541, -0.000707806263, 0.00316483504, -0.0253757685, 0.00554827321, 0.00343957264, -0.0229066983, 0.0273595881, 0.0173120406, -0.0044314824, -0.0350807868, 0.0430160649, -0.00800664, 0.0131874075, -0.00877733249, -0.0114604849, -0.0192530435, -0.0139295561, -0.0502662845, 0.000508443045, -0.0192815885, -0.00615126872, 0.0182682704, 0.00446359487, 0.0190960504, 0.0185251664, -0.00515935896, 0.00438153045, -0.0311702359, 0.0190675072, 0.0023834384, 0.0283729061, 0.0076783821, 0.021236863, 0.00540912058, 0.0297715701, 0.0120028239, 0.0134014888, 0.00757134147, 0.0325688981, -0.0214224011, 0.0355945826, -0.0105613433, 0.038563177, -0.00779969478, -0.0128948297, -0.0188819692, 0.0180256441, -0.0098905554, 0.0220789164, 0.000900479383, -0.0132159516, -0.0101831332, -0.0142863579, -0.0437582135, -0.00139955641, -0.00297751394, -0.0183681734, 0.02551849, 0.0126165235, 0.00556611363, -0.000253998529, -0.0215223059, -0.00784251094, -0.000298598781, 0.00295967376, 0.0272882283, -0.021936195, -0.0246478915, -0.00584441889, -0.0165413469, 0.0348238908, -0.0162559059, -0.000397388387, 0.00449213898, 0.0161845461, -0.0306564402, 0.028501356, -0.00318089104, -0.0537201315, -0.0242768172, 0.0275736693, 0.00102937419, -0.0398762077, -0.0112321312, 0.0122882659, 0.0145218475, -0.0182968136, -0.00991196372, -0.0149856899, 0.0159561913, -0.0182397254, 0.0021836292, 0.040818166, -0.00229423773, 0.00596216368, 0.0270884186, 0.042473726, -0.0119814156, -0.0259894673, -0.0220075566, -0.00844907481, -0.0129590537, 0.0253900401, 0.00843480229, -0.0290865116, -0.000623511733, -0.0158991031, 0.0127949249, 0.0302568208, -0.00730374, -0.0231778678, -0.0474975, 0.00616554124, -0.023363404, -0.00186429115, 0.00749998121, -0.000772476662, 0.00275808061, 0.00584085099, -0.00742148468, -0.00752138905, 0.0243481789, 0.0334252231, -0.0414461382, -0.0220361, 0.0524070971, 0.030884793, -0.0380208381, -0.0136726582, 0.000851419114, -0.0312273242, -0.0234918538, 0.021236863, -0.019681206, -0.000332495, 0.0281588249, -0.000265371607, 0.0229637865, -0.0147716086, 0.0186821595, -0.0207658838, -0.0208515171, 0.00874878839, -0.00303638633, 0.0161131844, -0.00482753292, -0.0364509076, -0.00784964673, 0.00979778729, 0.0074714371, -0.011838695, -0.00223001349, 0.0094838012, 0.0034627649, -0.026217822, -0.019552758, -0.00734298816, 0.0319980159, -0.019110322, -0.0124452589, -0.0149856899, 0.00996191613, -0.0190817788, 0.0214652177, -0.011332036, 0.0285584442, 0.00139152841, 0.00434228219, -0.00192673155, 0.0154138524, -0.00524142338, 0.0282872748, 0.0103044463, -0.0193957649, 0.0335394032, 0.0198952872, -0.00885582902, -0.00797096, 0.0254328568, 0.00370717421, -0.021236863, 0.0258895643, 0.0094838012, -0.00473833224, -0.0449285246, -0.039076969, -0.00849902723, 0.00990482792, 0.0318267494, 0.0230351463, 0.035965655, -0.025675483, -0.00416744919, 0.01758321, 0.0178829227, -0.0295432173, -0.00635821419, -0.00406754436, 0.0404185466, 0.0323690921, 0.0332254171, 0.0175689384, -0.0116602937, 0.0352805965, 0.00765697379, 0.0104328943, -0.00493814144, -0.000471870822, -0.0174404886, 0.00528423954, 0.0169409662, 0.00365722203, -0.00644027861, 0.00773547031, 0.000635999837, 0.0149143292, 0.0105327992, -0.00766411, -0.0119600082, 0.0164414421, -0.0254756734, -0.000117744705, -0.0379352048, -0.0160703678, 0.00463842787, 0.0158991031, -0.0180399157, -0.00521287927, 0.0186678879, -0.00268493616, 0.0054947529, -0.0210370552, 0.00169035012, 0.0247335248, -0.00696834596, -8.62457673e-05, -0.00244052662, -0.0166697968, 0.0123096742, 0.00215151696, 0.0111607714, 0.0163129941, -0.0210085101, 0.0329399742, 0.0267173443, -0.00459204335, -0.0143648544, -0.0231493227, 0.000826442963, -0.0224214476, 0.0245051719, -0.0227639768, -0.0074714371, -0.00200522807, 0.0257611144, -0.00160114956, -0.0152283153, 0.015014234, -0.00448143482, -0.00249761506, 0.00243339059, 0.0148144253, 0.0195099413, -0.00637248624, -0.0148001527, 0.0298286583, -0.00282587297, -0.0134728486, -0.0216507539, -0.0170551427, -0.023363404, -0.00112303474, -0.0310846027, -0.00322905928, -0.0332254171, -0.000789424754, 0.00135763211, 0.00271526421, -0.00341816456, -0.0192245, -0.0280018318, 0.009555161, 0.0870597214, 0.0122882659, -0.00617267704, -0.0165413469, -0.0313700438, -0.0224214476, -0.0098263314, 0.0027616485, 0.0166269802, -0.00130232784, 0.0200094637, 0.0421597399, -0.0118030151, 0.000586047536, -0.00659370376, -0.0111536346, -0.0177402031, 0.0106826564, 0.0144790309, -0.0354518592, -0.00972642656, 0.00824926514, 0.0153995808, -0.00843480229, 0.017554665, 0.0147002479, -0.0211226866, -0.0206088927, -0.0214937609, 0.0282301847, 0.00630826177, 0.00887723733, 0.0253044087, 0.00894859806, 0.0127164284, 0.0146288881, -0.0252187755, -0.00398548, -0.0125808436, -0.0292577762, -0.00117566308, -0.00330220372, 0.0069576418, -0.00732871611, 0.00261179172, -0.0261464603, -0.0287867971, -0.00826353766, 0.0154138524, 0.0266745277, -0.0138011072, -0.0240484644, 0.00412820093, -0.000239057437, -0.014443351, 0.00869883597, 0.00850616302, -0.020566076, 0.0230351463, -0.016726885, -0.0198810156, -0.00286512123, 0.0250189658, -0.00669360813, 0.00837057829, 0.0102188131, -0.0362225547, 0.0346526243, -0.030057013, 0.0273310449, 0.0417030342, 0.0205089878, -0.00731444405, 0.00137101219, -0.0247763414, 0.0263034534, 0.00516649522, -0.0138011072, 0.0134942569, -0.00564460969, -0.0117887426, -0.0105327992, -0.000121089724, 0.0205803476, -0.0184538066, 0.0106755197, -0.00468481192, 0.0119243274, -0.00218184502, 0.00531278411, -0.0284585394, -0.00382848689, -0.0282159131, -0.0122311777, -0.00067168, -0.0100689568, 0.010889601, 0.0187107045, -0.0101117725, -0.0124024423, 0.0320265591, -0.000837147, -0.000558841333, 0.00116317498, -0.0132801756, -0.00669004, 0.0168125164, -0.00158241752, -0.0110608665, 0.00697548175, 0.015299676, 0.00792100746, -0.0281588249, 0.00814222451, -0.0120099597, -0.00166626601, -0.0131017743, 0.0174690336, 0.00519503932, -0.00834203418, -0.0273025, -0.0319694728, 0.00476687681, 0.00296502584, -8.94235345e-05, -0.0100404127, -0.00906277448, 0.0228353366, 0.00450997893, -0.00862747617, -0.0138510596, 0.0144005343, -0.00386773515, 0.00376069453, -0.0258467477, 0.0109252818, -0.0143220378, 0.00817790534, -0.0032040833, 0.04221683, -0.0162701774, 0.0034074604, -0.0180113725, 0.0125594353, 0.032312002, -0.00263676792, -0.00300605805, -0.000543677248, 0.0152568594, -0.00687200949, -0.0197240226, -0.0222929977, 0.00385703123, -0.00221038936, 0.0281017367, -0.0207658838, -0.00708965864, -0.0118529676, -0.00594789162, 0.00194457173, -0.00424951361, 0.0189105142, 0.00642600656, -0.00593361957, 0.005491185, 0.0116460221, 0.00819217693, -0.021936195, 0.0186964329, 0.00605136435, -0.000395827374, -0.0130875027, 0.00261714379, -0.009555161, -0.000988342, -0.0222787261, 0.0317982063, 0.00479898881, 0.00203020428, 0.0112749478, -0.00275986455, 0.010347262, -0.018853426, 0.0179971009, 2.43489594e-05, -0.0159419198, -0.0288153403, -0.0181540921, -0.00714674685, 0.0005499213, -0.0280731935, 0.0117601985, 0.0117673343, 0.00678280881, 0.0186250713, 0.0167411566, -0.00351985311, -0.019681206, -0.00318802707, -0.000874165271, -0.00923403911, 0.00976210646, 0.0145575274, 0.00710749859, -0.015999008, 0.0239200164, 0.00536987232, -0.00392482337, 0.00964079425, -0.00262784772, 0.0286440756, -0.0187107045, -0.0117673343, -0.0102116773, 0.016127456, 0.00773547031, 0.0179400109, -0.0321978256, -0.00342708454, -0.00896287, -0.00809227303, 0.00924117584, -0.037421409, 0.00668647233, 0.000164909492, 0.00105435029, -0.0136298416, -0.00423880946, 0.00680064876, -0.000123542748, 0.00176438654, 0.009555161, 0.00388200721, 0.0166269802, 0.00425664941, 0.00558395358, -0.0211512316, -0.0170265976, 0.00975497067, 0.00545550464, -0.0243053623, 0.0119171916, 0.0272739567, 0.0260608289, 0.0121598169, -5.32136946e-05, 0.0243909936, -0.0241198242, 0.000188770631, 0.00899855047, -0.00135941617, 0.0211797748, 0.026503263, 0.00924117584, 0.01841099, -0.00314521091, -0.00862033945, -0.0152711319, -0.0190675072, -0.0240770094, -0.0102687655, -0.00498095807, -0.0116959745, 0.000755974557, -0.0265318081, -0.0148857851, -0.0175403934, -0.0245051719, -0.0419884771, -0.0100261401, 0.0222073663, -0.00170819031, 0.0358514786, -0.0141222291, 0.0307135284, -0.021108415, 0.0271312352, 0.00946952868, 0.000348551082, -0.00946952868, -0.0109966416, 0.0105970232, -0.000661422, -0.00560893, -0.0342815481, 0.0136869298, 0.00718242722, 0.0172977671, -0.0169980545, 0.0183824468, 0.0248619728, 0.0278020222, -0.0224071741, -0.0220789164, -0.00165288593, 0.030884793, 0.00915554259, -0.0230779629, -0.011967144, -0.0217506588, 0.00747857289, -0.0306278951, -0.00478114886, -0.00426378567, -0.0238914713, 0.00219254917, -0.00684703328, 0.000231921396, 0.0178686511, -0.00413533673, -0.0135513451, -0.0177687462, 0.0094838012, 0.00447073067, -0.00393552752, -0.0257325713, -0.00601568399, -0.00439223461, -0.0178258345, 0.00085454114, 0.00548048085, -0.00570883416, -0.0224071741, 0.0302568208, 0.023234956, -0.011967144, 0.00786391925, 0.00465626782, 0.00908418279, -0.00170640624, 0.00570526626, -0.00467054, -0.0148857851, -0.00224606949, 0.00159847364, 0.0224357191, 0.00193208363, -0.0349951535, -0.0231635943, -0.0159704648, -0.0046027475, 0.00167607807, -0.0191674102, 0.0146717038, 0.0091055911, -0.00803518388, -0.00736439601, -0.00711463485, -0.0136726582, -0.00711820275, 0.0108681936, -0.0101474533, -0.0345099047, 0.0157421101, 0.0115603898, 0.0293434076, 0.0161988176, 0.0150998663, 0.0155565739, 0.00104543031, 0.00418172125, 0.00756420521, 0.0224642623, 0.0006145917, 0.0125951152, -0.0152425878, -0.0251474157, 0.00361262169, 0.0114747565, 0.0148144253, -0.0118101509, 0.0073358519, 0.0147430645, 0.00372144626, 0.00305779441, 0.030884793, 0.00452425098, -0.0208657887, 0.00476330845, -0.00761415763, -0.0094838012, 0.0119386, -0.024219729, -0.0174547601, 0.0260608289, -0.00499879802, -0.00408895267, -0.0205803476, 0.0027331044, -0.0111964513, 0.0132801756, 0.0163986273, -0.00736439601, 0.0215080325, -0.0247477964, -0.00386059913, -0.0305137187, 0.0189676024, -0.00334858801, -0.00567672215, 0.00258859945, -0.0052913758, -0.0185965281, 0.00649736682, 0.0244766269, 0.0171978641, 0.00515222317, -0.0244338103, 0.0156850219, 0.0200808253, -0.0152283153, 0.00734298816, -0.037421409, -0.0184538066, -0.00176617061, 0.0239771046, 0.0171122309, -0.00822072104, 0.00396407163, -0.00469908444, 0.00533776, -0.0214937609, -0.0299999248, 0.000606563641, 0.00450641103, -0.0379922912, 0.0124238506, 0.0130090062, -0.0153567642, 0.0339961089, 0.0159561913, -0.00233883807, -0.000813508872, -0.0130946385, -0.0098263314, -0.0118458308, -0.0328828841, 0.00036594519, 0.0077069262, 0.0102402214, -0.019838199, 0.00636178209, 0.0200950969, 0.00397477578, 0.0109110093, -0.00214438094, 0.0216650255, 0.00418528914, 0.00666149613, -0.00350379711, 0.00109538261, -0.0127021559, -0.0118743749, 0.00172246236, 1.51919667e-05, 0.00452781934, -0.0272739567, -0.0124666672, 0.00333610014, -0.000393374357, 0.00849189144, -0.0165128037, -0.00425664941, 0.0160703678, 0.0161988176, -0.00936248805, -0.0114818932, -0.0233491324, -0.00629042182, 0.00154138531, 0.0211655032, -0.0357943922, 0.0152711319, 0.00859179534, 0.0154852131, 0.00426735356, -0.00249939901, 0.0313129574, -0.0222073663, 0.00759275, -0.00909131858, 0.0132730398, -0.000574897451, 0.0067899446, 0.00766411, 0.0140151884, 0.0052878079, 0.00734298816, 0.0202378184, -0.00451711519, 0.0280731935, 0.0130589586, 0.00363224582, 0.0227211602, 0.00279554469, 0.00844907481, -0.00463129161, 0.0115389815, -0.0196098462, -0.00355731742, 0.00578376278, 0.000188547638, -0.00108200253, 0.0232206844, 0.00968361, 0.0147145204, -0.0111607714, -0.0188819692, 0.0122668575, 0.0216079373, 0.00737153227, -0.00749284495, -0.0273167714, 0.00876306091, -0.00712177064, -0.0110537307, -0.00876306091, -0.00724665169, 0.0159704648, 0.0119314641, 0.028344363, -0.00447786693, 0.0133872163, -0.0285869874, 0.00622262945, -0.00847761892, 0.00536987232, -0.00257967948, 0.0273881331, -0.0117530627, 0.0206374358, 0.0178686511, -0.00354661327, 0.00744289253, -0.0119814156, -0.0260465574, 0.0121812252, -0.00466340408, -0.0173691288, 0.0194243081, -0.00344670867, 0.0159419198, -0.0127877891, 0.00261357566, 0.00099191, -0.0019124595, -0.0128591489, -0.0123881707, -0.0088344207, -0.0112820836, 0.00524499128, 0.018125549, -0.00469194818, 0.0211226866, 0.0080209123, 0.00231207791, -0.0113463085, 0.000365722197, -0.00585155515, 0.00666863192, 0.00140669243, 0.0054947529, -0.00764983799, 0.00234240596, -0.00348417298, 0.00789246336, -0.00478471676, 0.0129733263, 0.00267066411, -0.0165698919, 0.00472762855, 0.00207302044, 0.0098548755, 0.0273025, 0.00703970622, 0.0216650255, -0.00427449, -0.00499879802, -0.0249047894, -0.0216650255, -0.00105078227, -0.0244195387, 0.00253686332, 0.0213653129, -0.0115318457, 0.000309525873, 0.00687557738, 0.024662165, 0.00344135659, -0.0176831149, 0.00490959734, -0.0198810156, -0.0218933802, -0.016726885, -0.0119600082, -0.00290080137, -0.00897714216, 0.00424594572, -0.0163272657, -0.00371074234, -0.0069612097, -0.0162987225, -0.0054947529, 0.000507105, -0.0241911858, -0.009141271, 0.0114462124, 0.0095194811, -0.00819217693, 0.00887010153, 0.0119528715, -0.0100903641, -0.00777115067, -0.000909399474, 0.0080209123, -0.00888437312, 0.00782110263, 0.00668290397, -0.00581944315, 0.0189105142, -0.00365187, 0.0165841635, -0.0197668392, 0.00378210261, 0.0138581954, 0.00473833224, 0.0244623553, -0.0128091965, -0.0139723718, 0.0201521851, 0.0139937801, 0.0124880746, -0.0107968329, 0.000181969095, -0.00389271136, 0.0125879794, 0.000744378485, -0.0117245186, -0.00817790534, -0.00170462229, -0.00953375362, 0.0310275145, -0.032911431, 0.00323262741, 0.0172406789, 0.00412820093, -0.00371074234, 0.0222929977, 0.00960511342, 0.00175992656, -0.00714317895, 0.00863461196, -0.0208800621, -0.00116049894, 0.00371431024, -0.0133658079, 0.0243053623, 0.0228353366, -0.0119528715, -0.00444218656, -0.00363938184, 0.0102973096, 0.0145932073, 0.0105898874, 0.0112464037, -0.0100546842, 0.0174833052, -0.000129229273, -0.00650093518, -0.0119885523, 0.00769265415, 0.000814400904, -0.00977637898, 0.0112963561, 0.00146824087, 0.0173548553, 0.03510933, 0.00289188139, -0.00638675829, 0.0194528531, -0.0139081478, -0.000846959068, -0.0147430645, 0.00655088713, 0.0151426829, -0.0116032055, 0.00322370743, -0.0194100365, 0.00797096, -0.0145575274, -0.000661867962, 0.0110822748, -0.0144148069, -0.00536273606, 0.0117530627, -0.0106041599, -0.00886296481, 0.00426378567, 0.027744934, 0.00855611544, 0.0286155324, 0.00221395725, -0.0232206844, 0.00558395358, 0.0142007256, 0.0166412517, -0.00129608379, 0.00485607702, -0.00652591139, 0.0154852131, -0.0098905554, -0.00048658892, -0.00628328556, 0.001841099, -0.0185251664, 0.0043708263, 0.00386773515, 0.0120599121, -0.00449927524, 0.0203091782, 0.0071003628, 0.014728792, -0.00597286783, -0.002015932, -0.0346240811, 0.00705754617, 0.01758321, -0.0160846412, 0.0130090062, -0.0226498, -0.00971929077, 0.0122882659, -0.0162559059, -0.0125594353, -1.07807209e-05, -0.00882728491, -0.00337713235, -0.00386773515, 0.0126950201, -0.0139723718, 0.0213510394, 0.0227639768, -0.0230636913, -0.000748392486, 0.00812081713, 0.000823320937, 0.0281588249, 0.0105042551, 0.00735726, 0.00676853675, -0.00712533901, -0.00408895267, 0.00756420521, -0.0120099597, -0.00366792595, -0.00105435029, 0.0165413469, 0.0191245954, 0.00670788, 0.0118672391, 0.024091281, -0.0152711319, 0.0083919866, -0.0234633088, 0.00234240596, 0.00351093314, 0.00245658285, -0.0013165999, -0.0271169636, 0.0146146156, -0.00302211405, 0.00351093314, 0.00560893, -0.00331826, 0.00615126872, 0.0088344207, -0.0186964329, -0.0172121357, -0.00240306254, -0.00821358524, 0.00166448194, 0.00183574704, -0.0139866443, 0.0183824468, -0.00800664, -0.0227497052, -0.00136387616, 0.0108039686, 0.00721097132, -0.0195242129, -0.0138153788, 0.0100760926, 0.0160560962, -0.016855333, 0.0152568594, 0.0150713222, 0.0238914713, -0.00121312728, 0.0156564787, 0.0062440373, 0.014157909, -0.0226498, -0.00829208177, -0.00226747757, -0.0175689384, 0.0272311401, -0.00693623349, 0.0214652177, 0.0192815885, -0.0108539211, -0.00767124631, -0.00428519351, -0.00168856618, 0.0262035485, 0.0298001152, -0.00949807279, 0.0162273608, -0.0098620113, -0.00653304718, -0.0283158179, 0.0315127671, -0.0281730965, -0.000874611258, 0.0206659809, -0.0016163137, -0.00159490563, 0.0140722767, -0.00181523093, -0.0248048846, 0.00695050554, -0.00694336975, -0.0204233546, -0.00354661327, 0.0108467853, -0.0157849267, 0.010761153, 0.00453495514, 0.00422096951, 0.0139081478, 0.0226498, 0.00343065266, 0.0238914713, 0.0100975009, -0.00131927594, -0.00542696053, -0.00924831163, 0.0108111054, -0.0214509442, 0.00548404874, -0.0117958784, 0.0273167714, -0.0153995808, 0.0211655032, 0.00196954794, 0.0252045039, 0.0207516123, -0.00555897737, -0.00478828466, -0.0239057429, 0.00590864336, 0.00607990846, 0.00819931366, 0.000270054617, 0.0153710367, -0.011838695, 0.000309525873, 0.00384632708, -0.00201950013, 0.0114818932, -0.027901927, 0.0036536539, 0.000477668858, -0.00577662652, 0.0091484068, 0.0304851755, -0.0378495716, -0.0162701774, 0.012666476, -0.00507015828, 0.00099637, -0.0113106277, 0.00600498, -0.00794955157, 0.0100332759, 0.00957656931, -0.0194956698, 0.00643314281, 0.0237915665, 0.0114676207, -0.010283038, 0.0100047318, 0.0118672391, -0.00334145199, -0.00514151901, 0.0157135669, 0.017012326, -0.013965236, -0.00718599511, -0.0148144253, 0.00587653136, 0.00973356236, -0.00924831163, -0.00278840866, -0.0188819692, 0.00720740343, -0.0117601985, 0.0153139476, 0.0098976912, 0.0237630233, 0.016027553, 0.00221752538, 0.0260037407, 0.0325688981, -0.039676398, -0.0115746614, -0.000809940859, 0.00334680406, -0.0184823517, 0.0132302232, -0.0103543978, -0.00213010889, 0.00967647415, -0.0206088927, -0.0248191562, 0.0177402031, -0.0125166196, 0.00404613651, -0.00135406409, 0.0360798314, 0.0113249, 0.0214366727, 0.00580517109, 0.00221752538, 0.0102759013, 0.0185965281, 0.00691839354, -0.014857241, -0.0114676207, 0.00490959734, -0.00864174776, -0.00434941798, -0.0118030151, 0.0140508683, -0.0124024423, 0.0100261401, -0.00762842968, -0.00103651022, 0.00901995786, -0.00439223461, 0.0033914044, -0.00225320552, -0.0093054, -0.017426217, -0.00328971585, -0.00282408902, 0.000613699667, 0.0105970232, -0.00635107793, 0.00946239289, 0.0284014512, -0.024219729, 0.0223358143, -0.00521287927, 0.0250046942, 0.0150855947, -0.00979065057, -0.00336821214, -0.003650086, -0.0230208747, -0.0124523947, -0.00977637898, 0.0187820643, 0.019267315, -0.0222501811, 0.0101688607, -0.0118886475, -0.00186964322, 0.00907704607, 0.0147002479, -0.0189247858, 0.0173548553, 0.00357694156, -0.00875592418, -0.00473833224, 0.0228496101, 0.000883085304, -0.000968717795, -0.0125808436, 0.0200094637, 0.00275808061, 0.00382848689, -0.00670431228, -0.00231029396, -0.0156707503, -0.00756420521, -0.0102616297, 0.00782110263, 0.00892719, 0.0192815885, 0.000921441533, 0.0076783821, -0.00894146133, 0.00533062406, 0.0122240419, 0.0110751381, 0.00115157897, -0.0207230691, -0.00314877881, -0.00459204335, 0.00441721035, -0.0219219234, 0.00121223531, 0.0109466901, 0.000359701167, -0.00670074439, -0.0116460221, -0.00134336, 0.00748570915, 0.0150427781, 0.0206802525, -0.00447429903, -0.01669834, 0.019267315, 0.0349380672, -0.00308990665, 0.0213510394, 0.00485607702, -0.0181683656, -0.00209442852, -0.0135085294, 0.00929826405, -0.0192387719, 0.0114176683, 0.01402946, 0.000839377055, -0.0101117725, 0.00185715512, 0.0084276665, 0.0325403549, 0.0301997326, 0.0133444006, -0.0088344207, -0.00757847773, -0.00510227075, -0.0229780581, -0.00166269799, -0.00709679443, -0.0150855947, 0.0025297273, -0.0105827516, 0.00855611544, 0.0152711319, -0.00397477578, -0.0198667441, -0.0107326088, 0.00188569934, -0.00901282206, -0.0091127269, 0.0216079373, -0.0142078614, -0.000490602921, 0.00127289165, -0.025646938, 0.0214081295, -0.0159133747, -0.00749998121, 0.0149571458, -0.0281730965, -0.0351378769, 0.00333966804, -0.00487748533, 0.0144076701, -0.0136012975, 0.00139777234, 0.00887010153, 0.0194385815, 0.0091769509, 0.00195170776, 0.00391411968, 0.00844193902, 0.0117601985, -0.00364830182, 0.0122169051, -0.0241055526, -0.00300784199, -0.00134336, 0.00392839173, -0.00354304537, 0.0244338103, 0.00142096449, -0.000825104944, -0.00647239108, 0.00586225931, 0.00671501644, -0.014728792, -0.0045670676, 0.00164753385, 0.0121170012, 0.00272418442, -0.00744289253, -0.00548404874, 0.0197240226, -0.00106148643, 0.0199951921, 0.014728792, -0.00422096951, -0.0273167714, -0.00840625819, 0.0122668575, 0.0119528715, 0.00263319979, 0.0129305096, -0.0158134717, 0.0181826372, -0.0110965464, 0.0272739567, -0.00213902886, -0.00382848689, -0.0295146741, 0.0189390574, 0.0183110852, -0.00670074439, -0.0168125164, -0.0049773897, 0.0260893721, 0.00345384469, -0.0217649303, -0.0233348608, -0.0110965464, 0.0128948297, 0.00578376278, -0.0138653312, 0.00325403549, 0.00103294221, 0.00109270657, -0.0123738982, -0.00646168692, 0.0133087197, 0.0102259498, -0.00527710374, 0.000350112095, 0.00314342696, 0.00966220163, -0.00740007637, 0.0140794124, -0.00542696053, 0.00251902314, 0.00663652, 0.00636535045, -0.0234062206, 0.00881301332, 0.0118815117, 0.00806372799, -0.0179828275, -0.00480969297, -0.0104899826, -0.00627258187, -0.0130660944, -0.00571953831, -0.0124880746, 0.00557681732, -0.0202235449, -0.00385703123, 0.000426378567, -0.00904136617, 0.00596573204, 0.0123524899, -0.00821358524, -0.0137725631, -2.12826908e-05, -0.030028468, -0.00844193902, 0.00649023103, 0.0192815885, -0.00719313137, -0.00749998121, -0.00653661508, 0.0126165235, 0.00679351296, -0.00959084183, 0.00777828693, 0.0259609241, 4.4433018e-05, 0.0218220185, -0.0165984351, -0.0105613433, -0.0080851363, -0.00267244806, -0.00737866852, -0.0047419006, 0.00157617347, 0.0136655224, -0.00844193902, -0.00125951157, 0.00441364245, 0.00961225, 0.0103329904, -0.0250189658, 0.00115336291, -0.019010419, -0.0249904227, 0.0159133747, 0.00495598186, 0.0114747565, -0.00403186399, 0.00392482337, 0.0116032055, -0.0147145204, -0.00323262741, 0.0141008208, 0.00676853675, 0.0043993704, 0.0141507732, 0.0177259296, -0.0211226866, -0.00619765325, 0.00893432554, 2.46416475e-05, -0.00069754821, 0.0105684791, 0.00103205023, 0.0156992935, 0.00416744919, 0.00530208, -0.00971215405, -0.000848743075, 0.019552758, -0.00949093699, 0.0205232594, -0.0017956068, -0.0273881331, 0.0157706551, 0.00257254345, -0.0037499906, 0.0031915952, 0.0198810156, -0.0107254721, -0.00160293363, 0.0196526628, -0.0368790701, 0.0283729061, -0.0100832283, -0.00571240252, 0.0164414421, 0.0116460221, -0.0195813011, 0.0116246138, 0.0140009159, -0.0104471669, -0.00452068308, 0.00230850978, 0.0132302232, 0.00537700811, 0.0164414421, 0.0133515364, -0.0080494564, -0.00560536189, 0.00112303474, -0.0222501811, -0.0144148069, 0.00746430084, 0.0129661895, 0.00935535226, -0.00762129389, 0.0188391525, -0.0180113725, 0.00337534817, -0.0275451262, 0.01841099, -0.0220218282, -0.0113534443, -0.0166697968, 0.00583014684, 0.00450284313, 0.00760702183, 0.00853470713, 0.000350335118, 0.00350914919, 0.0128377415, -0.0169124212, -0.0151997712, -0.000201370203, 0.0051165428, -0.0218505636, 0.021679299, -0.0115033006, -0.00406040857, 0.0122026335, 0.0287297089, 0.00311845075, -0.00903423, -0.00787819177, 0.0209228769, -0.0157706551, 0.0143648544, -0.00939816888, 0.00198382, -0.014314902, -0.00199095602, 0.00463842787, -0.0188819692, -0.00221752538, 0.00574451452, 0.00718599511, 0.00708252238, -0.0234347656, 2.11015013e-05, 0.00520931138, -0.0161988176, 0.0213082246, 0.0140151884, 0.0190389622, -0.0131445909, 0.012381034, -0.0045420914, -0.0164842587, 0.00224785344, 0.0194385815, 0.00179471483, -0.00919122342, -0.00350736501, 0.0112535395, -0.00427805772, 0.0192387719, 0.0138153788, 0.0179971009, 0.00737153227, 0.000450908701, -0.00870597269, 0.0107754245, -0.00716815516, -0.00251902314, 0.0194813963, -0.0104471669, -0.00771406246, 0.0239913762, -0.00207480439, -0.0163986273, 0.0019499237, -0.00331826, -0.0095194811, -0.0270884186, -0.000159111456, 0.00385703123, -0.00328614772, 0.0167982448, -0.00544836884, -0.00167072599, 0.00725378748, 0.019966647, -0.011424805, 0.0206374358, 0.0236916617, 0.00430660183, -0.0241911858, -0.00360726961, 0.00126753957, 0.00379994279, 0.0163843539, -0.00726449164, -0.000879071304, -0.00299178599, -0.0143220378, -0.00806372799, 0.0220218282, -0.0156850219, 0.0172549523, 0.0051486548, -0.00138528435, 0.00482396502, 0.00229780586, -0.00661154371, -0.00110697863, 0.00718242722, 0.00116049894, 0.0272168666, 0.0159704648, -0.0139509635, 0.0111821787, 0.016883878, 0.0141650448, -0.0113391718, 0.016284449, 0.00779969478, 0.00784251094, 0.0128520131, 0.0142792221, 0.0115746614, 0.00311845075, -0.0378210284, -0.000898249389, -0.0688485429, -9.34933123e-05, -0.00777115067, -0.00687914528, -0.011838695, 0.0111750429, 0.0134157604, -0.00547691295, 0.0265888963, -0.011967144, 0.0136369783, 0.0202949066, 0.00732871611, 0.00282052089, -0.0184252635, 0.00707181869, 0.00870597269, 0.00152889721, -0.0100475485, -0.00859893207, 0.00931253564, 0.0162701774, -0.00792100746, -0.00869883597, 0.00349844503, 0.00471335649, 0.00411749678, 0.0275023095, -0.0188391525, -0.0108539211, 0.00498095807, 0.00950520951, 0.000205049728, -0.0267030727, 0.0196954776, -0.0109466901, -0.00500950217, -0.00128805579, -0.00412820093, -0.00322905928, -0.0069612097, -0.00210334873, -0.00135584816, -0.0231493227, -0.0171978641, 0.00755706942, -0.0131945433, -0.00817790534, -0.0121098645, -0.00609418051, -0.00567672215, 0.00939816888, -0.00744289253, 0.00772833452, 0.0232206844, 0.0196241178, -0.0291864146, -0.0223929025, 0.0355089493, 0.00260287174, -0.00176795467, -0.0243053623, -0.0185537115, 0.0077069262, 0.0111750429, -0.00908418279, -0.00939103216, 0.00554470532, -0.00529494369, 0.0178543795, -0.0124381231, -0.0105898874, 0.0139581, -0.00745002879, 0.00672215223, 0.00722881127, 0.00946952868, 0.00371431024, 0.000705130224, 0.0017331664, 0.00726805953, 0.00970501825, 0.0212225914, -0.0101688607, 0.0168696046, -0.0262606386, -0.0262320936, 0.0032629557, 0.0105756158, -0.00698975381, 0.00816363283, 0.00336642819, -0.00614413293, -0.00692196144, 0.00341459643, -0.0101331808, -0.018253997, -0.00520217512, 0.00950520951, 0.0106897922, 0.00238165422, 0.00715388311, 0.0162701774, -0.00397120789, 0.0243481789, -0.00372144626, 0.0178971961, -0.00683276122, 0.0240056477, 0.0156707503, 0.00515579106, 0.0117173828, 0.00283836108, 0.00595859578, 0.029457584, -0.00898427796, 0.015456669, 0.0144790309, -0.00357158948, 0.00385703123, 0.00582301104, 0.00588366715, 0.00484180497, -0.03516642, -0.00274202437, -0.00499523, -0.0125737078, 0.0121312728, -0.00551616121, -0.011046594, -0.010283038, 0.0169124212, 0.0161988176, 0.00389984739, 0.0249904227, -0.00740007637, 0.00506659038, 0.0251046, -0.027074147, 0.02279252, 0.0138653312, 0.00180898688, 0.0107397446, -0.00073858042, -0.0194671247, -0.0152711319, 0.0121812252, 0.000331825984, 0.0028294411, -0.0111250905, 0.0139152836, -0.00381064694, 0.00892005395, -0.0206088927, -0.0123096742, -0.025775386, -0.0112107238, -0.00307206647, 0.00809940882, 0.012759245, 0.00622976525, -0.0116674304, 0.0168125164, -0.0118529676, 0.0137297465, 0.00171443424, 0.00977637898, 0.0296288505, -0.000223001334, -0.00311309868, 0.0123953065, 0.00165913, 0.00763556594, -0.00792814326, -0.0280303769, -0.026374815, -0.000147961386, -0.0179971009, 0.00499523, -0.0113177644, 0.00286868913, -0.0107040647, 0.00915554259, -0.017426217, 0.0018749953, -0.0153995808, -0.00606206851, 0.0148857851, 0.00878446922, 0.00152086909, 0.0029043695, 0.0160989128, 0.0152854035, -0.0175974816, -0.0148429694, -0.00887010153, -0.00764270173, -0.0136655224, 0.00926258322, 0.00431373809, 0.0185822565, -0.000375088246, -0.00437796209, 0.00573024247, 0.00307563436, -0.0147430645, -0.000333833, 0.00105970236, -0.0168981496, 0.0287725255, 0.0244766269, -0.0213367678, -0.00518076727, 0.0230351463, -9.72285852e-05, 0.0163843539, -0.000220548318, 0.0199523754, -0.0163415372, 0.00860606786, 0.0240341928, 0.0196526628, 0.0110822748, 0.00639389455, 0.0232777726, -0.00902709458, 0.01139626, 0.0156992935, -0.00994764362, 0.00533062406, 0.00861320365, -0.000308856863, -0.00533776, 0.00455636345, 0.00820644945, 0.0128662856, 0.00143256062, 0.00594075583, 0.000801466813, 0.0145646632, 0.0186108, 0.0169124212, 0.0049167336, -0.0125951152, -0.0127735166, 0.0200380087, -0.0110251866, 0.0284157228, 0.00699689, -0.00405327231, 0.00943384878, -0.0153567642, -0.00607277267, 0.0150713222, 0.00882728491, 0.00334858801, -0.0129376454, 0.0173834, -0.0123239458, 0.011902919, -0.00903423, -0.00351450103, 0.0103686703, -0.018981874, 0.00791387167, -0.00632253382, 0.00406397646, -0.0194956698, 0.0133872163, -0.000285887712, -0.00398191204, -0.00561249768, -0.00899855047, 0.00653304718, -0.0103615345, 0.023520397, 0.00517006312, 0.0207658838, -0.00334145199, -0.0012372114, -0.00547334505, 0.000752852531, -0.0141436374, -0.0135656176, 0.00340210833, 0.000634661817, -0.00341102853, -0.020694524, 0.00416031294, -0.00782110263, 0.00333966804, -0.0111821787, 0.00778542273, 0.00993337203, -0.0242340025, -0.016156001, 0.00318981125, -0.0142720854, -0.0153995808, -0.0241769124, 0.0142292697, -0.0402758271, -0.00381421484, -0.00548048085, 0.00503447838, -0.0239913762, -0.0087345168, -0.0254185852, -0.0015743894, -0.00825640187, -0.0103615345, -0.00389271136, -0.0179685559, 0.0103543978, -0.0119171916, -0.000290793745, -0.0202806331, -0.00502734212, 0.00599427614, -0.00687557738, -0.0120099597, 0.0127235642, -0.000429723586, -0.012381034, 0.0239485595, 0.0194385815, 0.0211226866, -0.0139581, -0.00893432554, -0.0223215427, 0.00741434842, 0.00302568218, -0.00338605233, 0.0233205874, -0.0192530435, 0.00294718565, -0.0294004958, -0.0108824652, -0.000163348479, -0.0137154739, -0.0172121357, -0.00834203418, -0.00424594572, -0.0035501814, -0.0062083574, -0.016156001, -0.00455279555, 0.0106897922, 0.0330256075, -0.00772833452, 0.00388914347, -0.00495954975, -0.00786391925, 0.0319123827, 0.00740721263, -0.00294718565, -0.000107040643, -0.0191674102, 0.00280268095, -0.0213082246, -0.00735726, 0.0012416715, -0.0072859, -0.0331968702, 0.00188213133, 0.00265639205, 0.00666506402, 0.0383062772, -0.0189676024, -0.00602282025, 0.00670074439, 0.00481326086, 0.00792814326, 0.0659370348, 0.0239057429, 0.000903155422, -0.0263177268, 0.00716815516, -0.0134300329, -0.0145646632, 0.032854341, -0.00447073067, 0.0290722381, 0.016027553, -0.00189997139, -0.00665436, 0.00575165031, 0.0102259498, 0.00242982269, 0.0233063158, -0.00898427796, 0.00916981511, 0.0103258537, -0.0051201107, -0.0287011638, 0.011774471, -0.00522001553, -0.0122383134, 0.000223335839, -0.000135584807, 0.0131160468, -0.0154994847, 0.0201379135, 0.0146431597, 0.0348238908, 0.0131374551, 0.00483466918, -0.00565531384, 0.0156422053, 0.0121740894, 0.0301426444, 0.0115033006, -0.0257468428, 0.0263890866, 0.00569813, -0.00273845647, -0.0101831332, 0.00894859806, -0.0106683839, 0.0041995612, -0.000943741645, -0.0064153024, -0.0510940664, 0.00687200949, -0.00973356236, -0.0290008783, -0.0287725255, 0.0158134717, 0.0158991031, 0.0296288505, 0.0154852131, 0.00102491421, 0.00116941903, 0.0105756158, 0.00184288307, 0.00417815289, 0.00668647233, 0.00553756906, -0.0411036052, 0.00257254345, -0.00373571855, -0.00567315426, -0.00242625456, -0.00378923886, -0.00843480229, 0.0249333344, -0.00589080341, -0.00886296481, 0.0127378367, -0.00244409475, -0.00580873899, 0.00681848917, -0.0172406789, -0.0349951535, 0.009141271, 0.00653304718, -0.0115461173, -0.00102402212, -0.0155280288, -0.0256612096, -0.0104257585, -0.00740721263, 0.00737153227, -0.00331112393, 0.0262749102, 0.00797096, -0.00593005167, -0.00624760566, 0.0123596266, -0.00277948868, -0.00575165031, -0.0108610569, 0.00657943171, 0.0196383893, 0.00531635201, -0.00806372799, 0.00584085099, -0.00282230484, 0.0209514219, 0.00561249768, 0.00124256348, 0.00293826568, 0.00223001349, 0.0135798892, 0.002015932, -0.0053234878, 0.018125549, 0.00629755761, 0.0102616297, -0.0187535211, 0.00954802521, -0.00101153413, 0.00617267704, 0.0145860715, -0.0228638817, -0.00854184292, -0.00431016972, -0.0160560962, 0.00652591139, 0.0142934937, 0.00577662652, 0.0164271705, 0.022093188, 0.000751514512, -0.01231681, 0.0143933985, 0.0131017743, 0.0223929025, 0.020537531, 0.0193386767, 0.0135442093, 0.0187249761, 0.00854898, -0.00239949441, -0.0011792311, -0.00049194094, -0.00462772371, -0.00424594572, -0.00450641103, 0.0353662297, -0.00574094662, 0.0236060303, -0.00444575492, -0.0109752342, -0.0148286968, -0.0148144253, -0.00394623168, -0.0206374358, 0.0111393631, 0.00492386939, -0.0261750054, 0.000808602839, -0.0115033006, 0.00540912058, -0.00250118296, 0.0260608289, -0.0167982448, 0.0114604849, -0.030599352, 0.013744019, -0.0134300329, 0.00981205888, 0.0084633464, 0.0159276482, -0.00174030242, -0.0160703678, 0.0113819884, -0.0130946385, 0.0141293649, -0.00411392888, -0.0180970039, -0.00460631587, -0.0215223059, -0.0131374551, 0.00640103035, -0.00859179534, 0.0533490553, 0.00832062587, -0.0107326088, 0.00816363283, 0.0109680975, 0.00906991, -0.00931967236, -0.014728792, 0.00768551836, 0.00823499355, -0.00609418051, 0.00613699667, 0.00708252238, 0.00701116212, -0.0156136621, 0.0244195387, 0.0213653129, 0.0299428366, -0.0170979593, 0.0172121357, -0.0154281249, 0.00305244233, 0.028601259, -0.00111054664, 0.0024869109, -0.0265603513, 0.0154994847, 0.0098976912]
28 Nov, 2021
jQWidgets jqxToolBar rtl Property 28 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxToolBar is used to illustrate a jQuery widget that shows a toolbar where various tools can be spontaneously appended. Moreover, by default the jqxToolBar favor some widgets namely jqxButton, jqxToggleButton, jqxDropDownList, jqxComboBox as well as jqxInput. However, the custom tools can also be appended. The rtl property is used to set or get a value stating if the elements of the widget are arranged to favor locales with the help of the right to left fonts. It is of type boolean and its default value is false. Syntax: Set the rtl property. $('#Selector').jqxToolBar({ rtl: true }); Return the rtl property. var rtl = $('#Selector').jqxToolBar('rtl'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script><script type=”text/javascript” src=”jqwidgets/jqxdropdownlist.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcombobox.js”></script><script type=”text/javascript” src=”jqwidgets/jqxinput.js”></script><script type=”text/javascript” src=”jqwidgets/jqxtoolbar.js”></script> Example: The below example illustrates the jqxToolBar rtl property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxlistbox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxdropdownlist.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcombobox.js"> </script> <script type="text/javascript" src="jqwidgets/jqxinput.js"> </script> <script type="text/javascript" src="jqwidgets/jqxtoolbar.js"> </script> </head> <body> <center> <h1 style="color: green"> GeeksforGeeks </h1> <h3>jQWidgets jqxToolBar rtl property </h3> <div id="jqxtb"></div> <div> <input type="button" id="jqxBtn" style="margin-top: 25px" value="Click here" /> </div> <br> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxtb").jqxToolBar({ width: "470px", theme: "energyblue", height: 70, rtl: true, tools: "button button | dropdownlist combobox | input", initTools: function (type, index, tool, menuToolIninitialization) { switch (index) { case 0: tool.text("Button1"); break; case 1: tool.text("Button2"); break; case 2: tool.jqxDropDownList({ width: 100, source: ["Java", "Scala", "C++"], selectedIndex: 2 }); break; case 3: tool.jqxComboBox({ width: 60, source: [4, 5, 8, 10, 15], selectedIndex: 3 }); break; case 4: tool.jqxInput({ width: 140, placeHolder: "Search..." }); break; } } }); $("#jqxBtn").jqxButton({ width: "140px", height: "30px", }); $("#jqxBtn").on("click", function () { var rl = $('#jqxtb').jqxToolBar('rtl'); $('#log').text("Aligned right to left: " + rl); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtoolbar/jquery-toolbar-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxtoolbar-rtl-property/?ref=next_article
PHP
jQWidgets jqxToolBar rtl Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0323625468, -0.00649360195, -0.0130700693, 0.0680999532, 0.0523706749, 0.00790984, 0.0140117165, 0.0192096122, -0.0243924409, -0.0175221786, -0.00386828836, -0.020836778, 0.0197218675, -0.0128440736, -0.0050999634, 0.000166436221, -0.0111491075, 0.0102526592, -0.0363400653, 0.00795503892, -0.0177029762, 0.0134316618, -0.0482123569, 0.00270817848, -0.0742470324, 0.0202943888, 0.0113600371, -0.00309048756, -0.00225995434, 0.0126030119, -0.00740888342, -0.00116858468, 0.0289274156, -0.0247389656, -0.0411914326, -0.0134919276, 0.0130173368, 0.0359784737, -0.0530637279, 0.00848989468, -0.0160004757, -0.00120530894, -0.00495306635, 0.0105087878, -0.0163319372, 0.0211230405, 0.0106368512, -0.016512733, -0.00111773575, 0.0076499451, 0.00128440734, 0.0322118811, 0.0276317075, 0.0406490453, 0.0178235061, -0.014358243, 0.0040151854, 0.0334171914, -0.0192548111, 0.0439937785, -0.00958220661, -0.0333267935, -0.0206710491, -0.0380275, -0.00145296229, 0.025838811, -0.0147198355, -0.0113223707, -0.0248293653, 0.0411914326, -0.0149458311, 0.0572220422, 0.00639567059, -0.00339746475, -0.0135371266, 0.00300197257, -0.00619980786, -0.0258538779, -0.00604161108, 0.0435417853, -0.011111442, 0.0139213186, -0.0155936843, 0.0187726878, -0.0109833777, 0.0148403663, -0.00477227, -0.0412818305, 0.0291383434, 0.0217106268, -0.0414324962, -0.0134542612, -0.0170551222, -0.00322231813, -0.0141849797, 0.0101848608, -0.00607551029, -1.71703559e-05, -0.0482123569, 0.0565591231, 0.0116914967, -0.000478357, -0.0230214018, -0.0346225, 0.00571768451, -0.00240496802, 0.0395040028, 0.00446340954, -0.00364417629, 0.0154731534, 0.0174317807, 0.0146897025, -0.00340499775, 0.0115483664, -0.0477001034, 0.0298765954, -0.0220571533, -0.0439335108, -0.00684766145, 0.0123996157, -0.0437225811, -0.00482876925, 0.0294999368, 0.0338993147, -0.00775917666, 0.034381438, -0.0329652019, 0.0311572365, 0.0449881554, -0.0129269389, -0.018682288, 0.019315077, -0.00575911673, 0.00752564799, 0.0213038363, 0.0552935489, -0.00688156066, 0.00881382171, -0.0384493545, -0.00800023787, -0.0213942342, -0.0447772294, 0.017928971, 0.0309161749, 0.00588718103, 0.0392930731, -0.0151190944, 0.0228707381, 0.00613577571, 0.000145131446, 0.00282682618, -0.0124448147, 0.0147876339, 0.0407093093, 0.0522501431, -0.0298163313, -0.0283699594, 0.0426980704, -0.0130625358, -0.00746538257, 0.00493423361, 0.00167424954, -0.00459900685, 0.0234733913, -0.0219215564, 0.00888162, 0.0179892369, -0.0199629292, -0.0544197, 0.0334473252, -0.0411311686, 0.0131228017, 0.00170438224, -0.00475343736, -0.0220571533, -0.0105991857, 0.0163168702, -0.0397751965, 0.00259894738, -0.0612899624, -0.0202793237, 0.00154618535, -0.00946167577, -0.00217897259, -0.00583821535, 0.00670453114, 0.0382986926, -0.00241061789, -0.045078557, 0.0268783905, -0.048121959, 0.0105615202, 0.0194657389, 0.0225242116, -0.00910008233, -0.00133054808, -0.0140644489, 0.00772904372, -0.0148102343, -0.0156539492, 0.0211381055, 0.00451990869, -0.00653503463, -0.0172811169, 0.0534554534, 0.00103392906, -0.0311572365, -0.0393232033, 0.00593238, 0.0134994602, -0.00198875973, -0.000925168802, 0.0340499766, 0.0114278356, -0.0205655843, 0.0199779961, -0.00509619713, -0.0336582512, -0.00730718579, 0.00602277834, -0.00761604588, -0.0209271777, -0.0211230405, 0.02360899, -0.0958220661, -0.020098526, 0.00361027708, 0.0234131273, 0.00606421055, 0.0163168702, -0.0204902515, -0.0335377231, -0.0321516171, -0.0102225263, 0.0521296114, 0.0457113422, -0.0184562933, 0.0145541057, -0.0155334193, 0.0402874537, -0.00274396129, -0.0169195253, -0.00571768451, -0.00673089735, 0.0407997072, -0.0219516903, 0.00146802864, -0.00803037081, -0.00363287656, 0.0101245949, -0.00885902066, 0.0137480553, -0.0210477076, 3.34873439e-05, 0.0219064895, -0.00775917666, 0.000750022358, -9.61657643e-05, 0.0259442758, -0.0067949295, 0.0221324861, 0.0484835543, 0.0108251814, 0.0109005133, 0.0271043852, -0.000772151048, 0.0335075893, -0.0142301787, -0.011495634, -0.0379069671, 0.0463441312, -0.0223584808, 0.045892138, 0.0241965782, 0.0205053184, 0.0111415749, -0.0600243881, -0.0131152682, 0.0292739421, -0.00202830904, 0.00481370278, 0.0223886147, 0.0507736392, 0.0555044785, 0.0195561387, 0.0110059772, -0.00214130664, 0.000150310501, -0.0402874537, 0.0461633317, -0.0101095289, -0.00576288346, 0.015021163, 0.00697195902, 0.0497792587, 0.000308389601, 0.0160758086, -0.0231871307, -0.00783450808, 0.0212134384, 0.00288520823, -0.0166031308, -0.0204450525, -0.00688909413, -0.0255073514, 0.0461332, 0.0451086871, -0.0081207687, -0.0190438814, -0.0309764408, 0.0353758186, -0.00812830217, -0.0490259416, -0.0165880639, -0.00636177137, -0.00472707115, -0.0163470022, -0.0120304897, -0.0227954052, 0.00360462721, -0.000885619607, -0.0140870484, -0.0404983796, 0.0371536501, 0.062977396, -0.0227050073, 0.00158102636, -0.0258086789, 0.0140569154, -0.0291684773, -0.0337486528, 0.0166633967, 0.0021130573, 0.00304340525, -0.0054276567, -0.0482123569, 0.0106594516, -0.0278727692, -0.0448073596, -0.0005273227, -0.00830909889, -0.00803790428, 0.0279933, -0.0478809, 0.040076524, -0.0734635815, -0.020083461, -0.0162415374, 0.0333870575, 0.0460126698, 0.00148027006, 0.013589859, 0.0224187467, 0.0104937209, 0.0222831499, -0.00663296599, -0.0325433426, -0.0327241383, -0.031488698, 0.0146671031, 0.000262484275, 0.00867822487, -0.00740135042, 0.0107799824, 0.0205806512, -0.0332665257, -0.0342006423, 0.0100869294, -0.00790984, 0.00481746905, -0.0300724581, -0.0476097055, -0.00995133258, 0.042909, -0.0029831396, 0.00797010586, 0.00757838, -0.0145390397, 0.00381743954, 0.00708119, -0.0366413929, 0.0403778516, 0.00467433874, 0.0227652732, -0.00805297, -0.0256881472, 0.0179741699, -0.0659906641, -0.00103487074, -0.0174167138, -0.0127612082, 0.042366609, -0.00592484698, -0.0194958728, -0.0348936953, 0.0175824445, 0.0102903256, 0.0231268648, 0.0169345904, -0.00548038911, 0.000164788333, -0.0426076725, 0.0238199178, -0.0384192243, -0.0192246772, -0.0138987191, -0.0535157174, 0.0141548468, 0.0135220597, -0.00270441198, -0.00441821059, -0.0339294486, -0.022961136, 0.035225153, 0.00168743252, 0.0146595705, 0.0219516903, 0.0483630225, 0.0177481752, -0.0560167357, 0.0176879093, -0.0163018033, -0.0167688616, 0.0206107832, -0.0197972, 0.00708119, -0.029409539, 0.00831663143, 0.031488698, -0.0111867739, -0.00118930091, -0.00359897711, 0.00439184438, 0.0104409885, 0.0334473252, 0.0157594141, 0.0348032974, 0.0148479, -0.024332175, 0.038750682, -0.0233679283, -0.00450860895, 0.00233905273, -0.0206710491, -0.0204149205, -0.0119099589, -0.00578924967, -0.0123318173, 0.0106217852, 0.0167236626, -0.00374964089, -0.040076524, -0.0666535869, -0.00894941948, -0.00608681049, -0.0210175756, 0.00201889244, 0.00233340287, 0.0126331449, -0.00358014437, -0.0281740967, 0.0134241283, -0.0253114887, 0.000505664793, -0.012173621, -0.0309764408, -0.000599358696, 0.0156388842, -0.0183960274, -0.0126858773, -0.0577041656, -0.0207162481, 0.053033594, 0.0378165692, 0.00492670061, 0.00143318763, 0.00166294968, -0.0137555888, -0.0059926454, -0.00242003449, 0.0325734764, -0.00276656076, 0.0699681863, 0.00642957, 0.0368824527, 0.0122866184, 0.0212737024, -0.0151416939, 0.00579678267, 0.00794750638, 0.0233377945, 0.0103656575, -0.024332175, 0.0260497406, -0.0249649622, 0.0175673775, -0.0358278081, 0.0140493829, 0.0280987658, -0.0080153048, 0.0231118, 0.0420652814, -0.0395341329, 0.0261702705, 0.0076612453, -0.00924321264, -0.05728231, 0.0369125865, -0.0228707381, -0.0513160303, 0.00908501633, -0.0298012644, -0.0110511761, 0.0248444304, -0.015774481, -0.0395944, -0.0476097055, -0.0177632403, 0.0175824445, -0.0226296764, 0.0235035252, 0.000424683094, 0.00536362501, 0.0149608972, 0.0444156341, 0.0320310853, -0.0110135106, -0.0216804948, -0.0188028198, 5.97651961e-05, -0.0156087512, 0.00570261804, 0.0276618414, 0.023669254, -0.0188781507, 0.0198122654, -0.00855769403, -0.0131378677, -0.0183508284, 0.0113299042, -0.0291082114, 0.0277070403, -0.0285206232, -0.0111717079, 0.00842209626, 0.00928087905, -0.00370632508, -0.00575911673, 0.00585328182, 0.033688385, 0.000723656209, 0.00898708496, -0.018622024, -0.0103430571, -0.00591354724, -0.00302645541, -0.0253868196, -0.00885902066, -0.0241212454, -0.0168291256, 0.0148479, 0.00110078603, 0.00667063193, -0.00612447597, 0.014373309, -0.031548962, 0.0469467826, 0.0118722934, -0.00159420946, -0.0102903256, 0.0127461422, -0.000774034357, 0.0109607782, 0.00830909889, 0.0192698762, 0.0065388009, 0.0269687884, -0.0205505174, -0.00572898425, -0.00609057676, 0.00385322212, -0.0370933823, 0.0096575385, -0.00252549886, -0.00359332724, 0.00172039017, 0.0169647243, -0.00424118107, -0.0189233515, 0.00867822487, -0.00782697462, 0.0234281924, 0.0109381787, 0.00738251721, -0.00914528221, 0.0248745643, -0.00676103, 0.0231871307, 0.0306299143, -0.00728458585, -0.00159797608, 0.0420351513, 0.0372139141, 0.0302984547, -0.0216654278, -0.0188178867, -0.0230967328, -0.00572521752, 0.0066743982, -0.00390972104, -0.0469769165, -0.00736745121, 0.0191945452, 0.0240911134, -0.0215147641, -0.0204902515, 0.0115408329, 0.0114429016, -0.0087610893, -0.0123920832, 0.0177933741, -0.0171455201, 0.00229008705, -0.015390289, 0.0319708213, 0.00507736392, -0.0144109754, -0.0246787015, -0.00424871407, -0.0401970521, -0.00668569794, -0.000835241459, -0.0244979039, 0.000454580382, 0.037304312, 0.020038262, -0.0110737765, 0.0297711305, -0.00994379912, 0.028595956, 0.0214545, 0.0364003293, -0.00535232527, 0.0543895662, -0.00970273744, -0.00471953768, -0.00171756523, 0.0224036798, 0.0155635523, -0.00604161108, -0.0313681662, 0.00452744169, 0.0196766686, 0.0106368512, 0.0117969615, 0.0148554333, -0.00600017887, -0.0131680006, -0.0149382977, 0.0328446701, -0.0133111309, 0.0217407607, 0.0153827555, -0.00116199313, 0.00514139608, -0.0276618414, 0.0344417021, 0.0425775386, 0.015390289, 0.0059851124, 0.000931289513, -0.0117818955, 0.0155484853, -0.00433157897, -0.00921308063, -0.00186163734, -0.000923756335, 0.0202190578, 0.0142151127, 0.0072130207, -0.00610941, 0.0114730345, 0.0227200743, -0.00453497516, 0.00640697032, -0.0149608972, -0.0155786183, 0.0217558276, -0.000517435372, 0.000546155614, -0.00958973914, -0.0238349847, 0.0159703437, 0.0250101611, -0.00589471404, -0.00564235263, 0.0169044584, -0.0168291256, -0.0261401385, -0.0295451358, 0.01288174, -0.0251608249, 0.000639378733, -0.0132960649, -0.0129043395, -0.00722808717, 0.0139213186, 0.00323173474, 0.0062111076, -0.0113223707, 0.0212887693, 0.00399258593, -0.00869329087, 0.0486040823, -0.00127028266, 0.0101773273, -0.0149232317, -0.018606957, -0.0354963504, -0.0192246772, 0.015420422, 0.0167085957, -0.00317523582, -0.0331761278, -0.00228067045, -0.0233679283, 0.0119551579, 0.0176276434, -0.00159609271, -0.00351611222, -0.00862549245, 0.0563180596, 0.00925074611, -0.0117592951, -0.00145390397, 0.0149006322, -0.0115935653, 0.0108025819, -0.00567625184, -0.000417620729, -0.00839196332, -0.016467534, -0.00657646684, 0.0233829934, 0.0152320918, -0.00851249415, 0.0161662064, 0.00613954244, 0.0110436436, -0.0215599649, -0.00171285705, -0.021529831, -0.019315077, -0.0235939231, 0.00174204807, 0.0231720656, -0.00677232957, 0.0151567599, 0.00516022881, -0.00985340122, -0.012896806, 0.0047911033, -0.0227954052, 0.00424494734, 0.00140493829, -0.00300197257, -0.0260949396, -0.00133337302, 0.0173112508, -0.0194808058, -0.0010019131, 0.0021168238, 0.0405887775, -0.00172509847, -0.00241438462, 0.00646723574, -0.0228556711, -0.0105163204, -0.0103505906, 0.0133337304, -0.00616214192, 0.00305470498, -0.00751058152, -0.0154882204, 0.0250101611, -0.0225844774, 0.0131604671, 0.00802283734, 0.0329049341, 0.00156407675, 0.0204299875, -0.000443045195, 0.0184110943, 0.0224639457, 0.0144034419, -0.0270893183, -0.0188028198, 0.0335075893, 0.000843716261, -0.0265921298, 0.0256730802, -0.00485136872, 0.00448600948, 0.0157594141, 0.0498093925, -0.0113148382, -0.0218914244, -0.00885148812, -0.0134919276, -0.00474590389, -0.017913904, 0.00471200468, -0.0175372455, 0.0112395063, -0.0189685505, -0.0150738955, -0.00231457, -0.0237897858, 0.0189384166, -0.0142753776, -0.0217859596, 0.00779684214, -0.00227502058, -0.000831474841, -0.0375755057, 0.0393533371, -0.00389842107, 0.0113826366, -0.010787515, -0.0225091446, -0.0163319372, 0.00517152855, -0.0295150038, -0.00255563157, -0.0310367066, -0.00539375748, 0.00551428832, 0.00749928178, 0.0129495384, 0.0115031675, -0.00561975315, -0.0168743264, -0.0238952506, 0.00707742339, -0.00864055846, 0.0254772175, 0.00671206415, 0.0233980604, 0.031488698, 0.0396848, 0.0224639457, 0.0195410717, 0.00731471879, 0.0342609063, -0.00125144969, 0.0289876796, -0.0332363956, 0.0307203121, 0.00129947369, -0.000790984, -0.0169797894, 0.00842209626, 0.000385369291, -0.00517906202, -0.0128064081, -0.0296054017, -0.0271646511, -0.0477603674, -0.0419748835, -0.000116411189, -0.00506606419, 0.0028739085, 0.00365924276, 0.00701715797, 0.00914528221, 0.00778930914, -0.0149307651, -0.00175617286, 0.00925074611, -0.00675349683, 0.0597833246, 0.0067760963, -0.0558058061, -0.0187124219, -0.0106293187, 0.0318804234, -0.0391122773, -0.00225430448, -0.00427508028, -0.00187199551, -0.017898839, 0.017205786, 0.00229385355, -0.0473686419, -0.00930347852, 0.0624952689, -0.0117969615, -0.0340499766, -0.000289321237, 0.0144712403, -0.00096707209, -0.0163771361, 0.017913904, -0.00242191763, 0.0239404496, -0.00789477397, -0.00516022881, 0.0419447534, 0.0170852542, 0.00768007804, 0.0234131273, 0.0181851, 0.00998146459, -0.0254018866, -0.00136915559, 0.00644463627, -0.0202491898, 0.0176427104, 0.015051296, 8.19821944e-05, -0.00635423837, 0.00384192239, 0.0397751965, 0.0312175024, -0.0219818223, -0.0116613638, -0.0405887775, 0.0225995425, -0.0316694938, 0.00511126313, 0.015390289, -0.00178818882, 0.0236240551, -0.0054276567, -0.0109683117, 0.014373309, 0.0282042306, 0.0201587919, -0.007540714, -0.0309764408, 0.0426980704, 0.00639943732, -0.0255073514, -0.0332665257, -0.00902475, -0.00760851288, -0.0242417771, -0.00263284682, -0.0197972, 0.0184110943, 0.00644087, -0.018622024, 0.000375482, -0.00648230221, 0.0140945818, -0.0365811288, -0.030102592, 0.00420351513, -0.0233377945, 0.0192246772, -0.0114881014, -0.039383471, -0.00753318099, -0.00695689255, 0.0116990302, -0.0108929798, -0.0194808058, 0.0134316618, 0.0113600371, -0.00720172096, -0.0126632769, -0.0104786549, 0.0364605971, 0.0129344715, -0.0167989936, 0.00613577571, 0.00369879184, -0.038630154, 0.0239705816, 0.0157292821, 0.0289575476, -0.00499449903, -0.0165579319, -0.00346149667, 0.00549545558, -0.015774481, 0.0143507095, -0.012173621, -0.017190719, 0.0133563299, 0.0262456033, -0.0334171914, -0.00117894285, 0.0148855653, 0.000186446225, 0.00710002333, 0.0513762943, -0.00301515567, -0.00654256763, -0.0380275, -0.0381781608, -0.00829403196, 0.0103957895, 0.0175673775, 0.00995133258, 0.0400463901, -0.0324529447, 0.0228556711, 0.00460654031, 0.0161210075, -0.0334774554, 0.0122640189, 0.00441067759, 0.0183658954, 0.0357675441, 0.0174920466, 0.0127913412, 0.00142000464, 0.0344417021, 0.00364794279, 0.0359784737, 0.0157895479, 0.0277673043, -0.00952194072, -0.00507359719, -5.43213e-05, -0.0149834966, -0.0163168702, -0.000470588391, -0.0149081657, 0.000262719695, -0.000360651029, -0.0176728424, 0.00984586775, 0.00782697462, -0.0308408439, -0.0101471944, -0.0383288264, -0.0139966505, -0.00252361572, 0.0170701873, 0.00951440725, 0.00505099772, 0.0127838086, -0.0190288145, -0.0102300597, -0.0199177302, 0.0133713959, 0.00430897949, 0.00325810071, 0.0177331083, 0.00986846723, 0.00355377817, -0.00344078033, 0.0213189032, -0.0180645678, 0.00196239376, -0.0390520096, 0.0456510782, 0.0361592695, -0.0228104722, -0.0112093734, -0.0112319728, 0.0167236626, -0.0174920466, 0.0197369345, -0.0116839642, -0.00772904372, 0.00217143935, 0.0230816659, 0.0025631648, 0.0164374, 0.00935621094, 0.0142377121, 0.00444081, 0.00639567059, -0.00290969107, -0.006455936, 0.0117592951, 0.0168893915, 0.0198122654, -0.00478733657, -0.00462914, -0.0139213186, -0.00763864536, -0.0129194055, 0.00668569794, -0.0175071135, -0.011849694, -0.0246485677, -0.00276091089, 0.0112244394, -0.00476097036, -0.0109833777, -0.020731315, -0.0403477177, 0.00931101199, 0.0840703, 0.00347279641, -0.00348409615, -0.0123845497, -0.0251457579, -0.0130926687, -0.00560468668, -0.00575535046, 0.00109042798, -0.00350104598, 0.016512733, 0.0225392785, -0.0010584119, 0.00217897259, -0.0286562201, 0.000255892752, -0.0218763575, -0.00403778488, 0.0276317075, -0.0425775386, 0.00690792687, 0.0215147641, -0.00761227962, -0.0117517626, 0.0476097055, 0.013589859, -0.0194506738, -0.0211682394, -0.0148177668, 0.0184864253, -0.0109155793, 0.00857276, 0.00844469573, 0.00534102554, 0.00254056533, 0.040829841, -0.00909255, -0.00632410543, -0.0245883036, 0.0112621058, -0.012572879, -0.00489280093, -0.00571391778, -0.0211230405, -0.0043353457, -0.00947674178, -0.0204902515, -0.0106820511, -0.017190719, 0.0214695651, -0.0287918169, -0.00389842107, 0.00610564323, 0.00592861325, 0.00970273744, 0.0130098034, -0.00224865461, -0.0268030576, 0.0152998902, -0.0201437268, -0.0201889258, -0.020776514, -0.0150964949, -0.0102978582, 0.0276769064, 0.0169797894, -0.0293794051, 0.0343513042, -0.0283398274, 0.0347430296, 0.0105012543, 0.0207463801, 0.00306977122, 0.0115182335, -0.0205053184, 0.00312438677, 0.0151266279, -0.000861136767, 0.0097630024, -0.00597004592, -0.0282946285, 0.0199327972, -0.020731315, 0.0173112508, -0.0122941518, 0.0151868928, -0.00298125646, -0.0140719824, -0.0128139406, 0.00648230221, -0.0155936843, -0.00753694773, -0.0260798726, -0.0275262427, -0.0115860328, 0.00222982164, 0.0135823255, 0.0181549657, 0.00179948856, -0.0117442291, 0.00844469573, -0.011435369, -0.0167387277, -0.00345019693, 0.0168441925, -0.00483253552, 0.0239555165, -0.00153959391, -0.00749928178, 0.0103279911, 0.0321516171, -0.00469693821, 0.00688156066, 0.00940894336, 0.00098967168, -0.00284377579, -0.00125050801, 0.00685519492, 0.0132132, 0.0149307651, -0.0302532557, -0.0241664443, 0.0117969615, 0.00873095635, -0.0117894281, -0.00948427524, 0.0193602759, 0.019345209, 0.00549168885, -0.00153676898, -0.0144335749, 0.0169797894, -0.0113977026, 0.00986093376, -0.0164374, 0.0169948563, -0.0174769796, 0.026531864, -0.0136124585, 0.0291383434, -0.00872342382, 0.00292475754, -0.00906241685, 0.0091076158, -0.00444081, 0.0153526226, 0.00822623353, 0.000844187103, -0.00167801604, 0.0265770629, 0.00452367542, -0.011435369, 0.0152396252, -0.00421104813, 0.0198725313, -0.0195712037, -0.00530335959, 0.0145013733, -0.00179572206, 0.0118798269, 0.00762357935, 0.0133939963, 0.00960480608, -0.0046818722, -0.00638437085, 0.00595497945, -0.0135145271, -0.0249348283, 0.000144072081, -0.00223923801, 0.0136275245, -0.0251909569, 0.0268181246, 0.00130794861, 0.00549545558, 0.00844469573, 0.0203847885, 0.00312250364, 0.037304312, -0.00357261114, -0.00359332724, -0.00141623802, -0.0205957163, 0.0206861142, 0.013928852, -0.0117065636, -0.0075595472, -0.0134843942, -0.0111491075, 0.00227878732, -0.0263962671, 0.00434664544, 0.0271043852, 0.0182754975, 0.0179892369, -0.00340123125, -0.0057930164, -0.00635800464, -0.00866315793, 0.00600017887, -0.00535609154, 0.0153752221, 0.00746914884, 0.0170400552, -0.0116688972, 0.016497666, -0.022147553, 0.00814336911, 0.0137179224, -0.0131454011, 0.0182302985, -0.0257032141, -0.0146445036, -0.00683259498, 0.00523932744, 0.0143507095, 0.012158554, -0.0257032141, 0.020068394, 0.0115333, 0.00256693154, 0.0160758086, -0.0377563, 0.0227803402, 0.00814336911, -0.00337298191, 0.00956714, -0.00614330918, 0.000208221827, 0.00143130438, -0.00574028399, 0.0139137851, 0.0122263525, 0.0226598084, 0.0230214018, -0.00730718579, -0.0111039085, -0.0193904079, -0.00641073706, 0.0230515338, 0.0128290076, 0.0209271777, 0.0130324028, 0.0349840932, 0.0180495, -6.67981294e-05, 0.00206220825, -0.0219215564, -0.0116086323, 0.0281138308, 0.0105615202, 0.00359709398, 0.0283398274, -0.0142151127, 0.0247239, -0.00222982164, -0.00700209197, -0.0224940777, 0.00829403196, -0.0353456847, -0.00581938215, -0.0178235061, -0.0054540229, -0.0113449702, -0.0305395164, -0.0106067192, -0.00928087905, -0.0103279911, -0.025823744, -0.0121284211, 0.00856522657, 0.0237596538, 0.0198424, -0.00451990869, 0.0218311585, -0.0330254659, 0.00813583564, 0.0241212454, -0.00444081, -0.00626007328, -0.0130474698, 0.0317900255, 0.00166765798, -0.0277221054, -0.0191945452, 0.00878368877, 0.0196164027, 0.010388257, -0.00436547818, 0.00577041646, 0.0233227275, 0.0120756896, -0.0130550023, -0.000306977134, 0.00733731827, 0.030132724, 0.0155334193, -0.0262305364, 0.0050999634, -0.00779684214, -0.00153676898, -0.025070427, 0.00635423837, 0.015849812, -0.000456934504, 0.00368749211, -0.00560845342, -0.0134090623, 0.0229762029, -0.0140192499, 0.00737121748, -0.0276166424, -0.00339369802, -0.00582314888, -0.00624877354, -0.0256128162, -0.000423976831, -0.00781944208, -0.00618097512, -0.0084371632, 0.00949934125, -0.00410935, -0.0635800511, 0.0155786183, 0.0353758186, -0.000106935855, 0.00171756523, -0.0121284211, -0.00838443078, -0.0294698048, -0.00195674365, 0.00268557901, -0.0141623802, 0.00128911564, 0.0103129251, 0.0355264805, 0.00158761791, -0.0149608972, -0.00248218304, -0.0132132, -0.00772151072, 0.0151718268, -0.00995886512, -0.00248218304, 0.0218311585, -0.0195712037, -0.0076612453, -0.00358579424, -0.0145993046, -0.0059851124, 0.000642203668, -0.00954454, -0.00262908, 0.0034520803, 0.00870082434, 0.0478809, 0.0205203854, 0.0114052361, 0.0182001647, 0.00309613743, 0.00461784, 0.015051296, 0.0169948563, 0.00606044428, 0.0259744078, -0.0167839266, -0.00520542823, 0.020836778, -0.00668193167, 0.00968013797, -0.00212059054, 0.00602654461, 0.010742316, -0.00101321284, 0.0160155427, 0.0174016487, 0.0053184256, 0.00246335031, -0.000437630748, -0.0222680829, -0.0164374, -0.000157843679, -0.0013955218, -0.0311271045, 0.0310065728, 0.0258538779, 0.00514516281, -0.0253416207, -0.0115333, 0.00798517186, 0.0306299143, 0.0160306096, -0.0112018399, 0.013928852, -0.00692299334, 0.00315451948, -0.0439033806, 0.00778930914, -0.0145616392, -0.0117818955, 0.00360086048, 0.00332401623, -0.0117818955, 0.015744349, 0.0102752587, 0.0114052361, 0.00894941948, -0.0179741699, 0.0171304531, 0.0119777583, 0.00119118427, 0.0328748, -0.0199327972, -0.0237295199, -0.00433157897, 0.024347242, 0.0150286965, 0.00858029351, -0.00477603683, -0.0173564497, 0.00586458156, -0.0213189032, -0.0289575476, -0.0139665175, 0.00679869577, -0.0180796348, -0.00257823127, 0.00513009634, -0.012957071, 0.00700962497, 0.00537869101, -0.0124900145, 0.0131378677, -0.0225091446, -0.00272512832, -0.011126508, -0.0197218675, 0.00476097036, 0.0244225729, 0.0030057393, -0.0337185189, 0.00450484222, 0.0166784637, -0.0123996157, 0.0170852542, -0.0233829934, 0.0161210075, -0.00462914, 0.0130926687, -0.00780437561, 0.00169590733, -0.0218311585, -0.0143808424, 0.0147123029, 0.00752188126, -0.000720360433, -0.0178084392, -0.0252964217, 0.0186973549, 0.00372139132, 0.00076038047, -0.016467534, 0.0116086323, 0.00723562, 0.0248293653, 0.0074314829, -0.0121284211, 0.00445587654, -0.0147499684, -0.00658400031, 0.00978560187, -0.0313983, 0.0190137494, -0.0161662064, 0.0114881014, 0.0016224588, -0.00812830217, 0.0180645678, -0.0133035975, 0.00374022429, 0.00221475516, 0.0194958728, 0.00195674365, 0.000372892449, 0.0176125765, 0.00991366617, 0.0138083212, 0.00998146459, 0.0116387643, -0.00135032274, 0.0138459867, 0.00744654937, -0.00372515805, 0.0111566409, 0.0157594141, 0.0045538079, -0.0102375932, 0.0211833045, -0.0167236626, -0.00344078033, 0.0151642933, 0.0197369345, 0.00175899779, 0.000418562384, -0.0155183533, 0.0183056295, -0.00077262189, -0.00906995, -0.00472330442, 0.00881382171, 0.00670829788, -9.175179e-05, -0.0103204576, 0.00585704809, 0.0107950484, -0.00630903896, -0.00627137301, -0.00959727261, -0.00451990869, -0.00551052205, 0.0168743264, 0.00650113542, -0.00181173, -0.0353456847, 0.00935621094, 0.00526946, -0.00122696685, -0.0129646044, 0.021484632, -0.0109457122, 0.00261024712, 0.027933035, -0.0111189755, -0.0152622247, -0.0111189755, -0.0245581698, 0.00837689731, -0.0146520371, -0.00447094301, 0.00800023787, -0.00146991189, 0.0167085957, -0.0137103898, 0.0107046505, 0.00172133185, -0.0141397808, -0.0116688972, -0.0195410717, -0.0158648789, -0.0177632403, 0.0058758813, -0.0112244394, -0.00873849, 0.00796257239, -0.00949180778, 0.000804167066, -0.0340198465, -0.00259518088, -0.0071037896, 0.0104786549, -0.00858782604, 0.0018503376, 0.0106594516, 0.0106820511, -0.00396245299, 0.0171756521, 0.00327128381, 0.00749551505, 0.006448403, -0.0165579319, 0.00392478751, -0.0130098034, 0.0195862707, 0.0250101611, 0.0136576574, 0.00964247156, -0.013280998, -0.00880628824, -0.0203847885, 0.000609716866, 0.0124146827, -0.0178687051, 0.00751434825, 0.0149910301, -0.0154731534, 0.0104635889, -0.00232210313, 0.0327844024, -0.00506983092, -0.0151190944, -0.00862549245, -0.00884395465, -0.0238801837, -0.00839196332, 0.00221663853, -0.0270139873, -0.0156388842, 0.0371536501, -0.0202190578, 0.0122188199, -0.00416961592, -0.0163319372, 0.00180137192, -0.00493423361, -0.000206573954, -0.0103129251, -0.00624500727, 0.0131830666, -0.00955207366, 0.0126406774, 0.00186728721, -0.0243020412, -0.00188329525, 0.00369690848, 0.0214394331, -0.00671959762, 0.0192849431, 0.00614707591, -0.009341144, 0.0147349024, 0.00313380337, 0.00683636172, -0.00998146459, 0.0104937209, 0.0067949295, 0.010358124, 0.0191945452, -0.0395642668, -0.0246636346, -0.00058805896, -0.00213565677, 0.00157631817, -0.00268934551, -0.00083335815, -0.00259518088, 0.0141247148, -0.0160607416, 0.000498131616, -0.00107536162, 0.000428685074, 0.00524686044, 0.0163620692, -0.0248142984, -0.00868575741, 0.0147198355, -0.00786464103, 0.0139815835, -0.00128064072, 0.00161492568, 0.00277597713, -0.000823941664, 0.0082639, -0.0275262427, -0.00491916714, 0.0187726878, -0.0129269389, 0.0227351412, 0.0171455201, -0.0162264723, 0.00399258593, -0.00296054012, 0.00404908461, -0.00353117869, 0.0179440379, -0.00372327468, -0.0216804948, -0.00187764538, 0.00613954244, -0.0091076158, -0.0343513042, 0.00846729521, 0.00723562, -0.0204902515, 0.00281929295, -0.00132395653, 0.0259593409, 0.0360387377, 0.00324868434, -0.00119306752, 0.01468217, -0.0118572265, 0.00782697462, -0.0144411083, -0.0144335749, 0.00568755157, -0.016467534, 0.0162716713, -0.0193000101, 0.00817350112, -0.011096376, 0.00809063669, 0.0105765862, -0.0202793237, -0.00273831119, 0.0252060238, 0.00402648514, -0.0113675706, 0.0088891536, 0.0142829111, 0.0251758918, 0.0241212454, -0.00842209626, -0.0300121941, -0.00291157444, 0.0122790849, 0.0115408329, -0.00419974839, 0.0112018399, 0.0042261146, -0.00459900685, -0.0191192143, 0.00174487301, -0.00235600234, 0.0149759641, -0.0363702, 0.0120078903, 0.00415831571, 0.0204601195, -0.00679116277, 0.00817350112, 0.00250854925, -0.00146802864, 0.00395492, -0.00329953339, -0.0263209343, -0.0082187, 0.0129495384, -0.0253566876, 0.0124448147, -0.0227050073, -0.00683636172, 0.0154580874, -0.00658776658, -0.0136802569, -1.28814454e-05, -0.00427508028, 9.61657643e-05, -0.00987600069, -0.00246146694, -0.0204299875, 0.018576825, 0.017235918, 6.53268071e-05, -0.00818856806, 0.00163846684, 0.00349916262, 0.0264264, 0.00302268891, 0.00778177613, -0.0019379108, -0.00898708496, 0.0245431028, -0.00241061789, -0.0222680829, 0.00536362501, 0.00673843035, 0.022222884, 0.0311873686, -0.00148874486, 0.00440314412, 0.017883772, -0.0218462255, 0.0146445036, -0.0167688616, 0.0120756896, 0.00140587986, 0.00304528838, 0.0212285034, -0.0228406042, 0.00873095635, -0.00433157897, -0.0154731534, 0.0170551222, 0.0126708103, 0.0141774463, 0.022253016, -0.0133186644, -0.0153149571, -0.00138610532, -0.00573651725, 0.00855016056, -0.0154882204, -0.0144260414, 0.0390520096, -0.00570638478, -0.0219516903, 0.0145917712, 0.0159703437, 0.0280234329, -0.0270591862, -0.023684321, -0.0082187, 0.0222078171, -0.0102827922, 0.00613577571, 0.0180495, 0.0217558276, 0.0016102175, -0.00994379912, 0.00821116753, 0.0128214741, -0.00506983092, -0.0123016844, -0.0036837256, -0.00348221301, -0.00106123684, 0.00388335483, 0.0133864628, 0.017220851, -0.00868575741, 0.000713768881, -0.00252926559, -0.0204902515, 0.0078872405, 0.0183960274, 0.00153771054, 0.00347279641, -0.0113751031, -0.00919048116, -0.0193602759, 0.0298163313, -0.0111792404, -0.00271759508, 0.00292664091, 0.00304340525, -0.00152641081, -0.00119683414, 0.00303022214, -0.00718288822, -0.00325245084, -0.00155842677, -0.0128742065, -0.00507736392, 0.00983833428, 0.00391725404, -0.000431039196, -0.00247465, 0.00938634388, 0.0106745176, 0.0235487241, 0.020068394, 0.0188781507, -0.00101132959, 0.000737780938, -0.000897861, -0.0196164027, 0.0283699594, -0.0315188281, -0.00724692, -0.000387017179, 0.0323625468, -0.00612447597, 0.0152923577, -0.000958126446, 0.0291986093, 0.0225694105, -0.0140945818, -0.0135295931, -0.0277221054, -0.00581938215, 0.0113299042, 0.0145089068, 0.00606044428, 0.018606957, -0.0056574191, -0.00203960878, -0.00979313534, -0.00132301496, 0.0101170624, -0.0121962205, 0.00224300474, -0.00409428403, 0.0154580874, -0.00691546034, 0.02576348, -0.0333267935, -0.0513160303, 0.00922061317, -0.00490410067, -0.00662543252, -0.0102903256, -0.00733355153, -0.0134617947, 0.0272701159, 0.00986846723, -0.0176427104, -0.00896448549, 0.0105238538, 0.0162264723, -0.00502086524, -0.00479863631, -0.00283624255, -0.00381932268, -0.00828649942, 0.0235637911, 0.0330556, -0.00428261328, 0.013604925, 0.00287014199, 0.018622024, -0.0016055092, -0.003227968, -0.0210326407, -0.011450435, 0.00563481962, -0.0056724851, 0.0147801014, 0.00500203203, 0.0441745743, 0.0216804948, -0.0148479, 0.00845976267, 0.0181700327, -0.0357675441, -0.00639943732, -0.00419598166, 0.00392855378, 0.00129947369, -0.00798517186, -0.0189534836, -0.000483065232, 0.00598887913, -0.0130098034, -0.00462160632, -0.0127084767, -0.0159854107, -0.00424494734, -0.00732601853, 0.0359483398, 0.022946069, 0.0256128162, 0.00552558806, -0.0141171813, -0.00610941, 0.00744278263, 0.0115408329, -0.013235799, -0.00489280093, 0.00097743026, -0.0156539492, -0.0175523125, -0.0128666731, 0.00345019693, -0.0176427104, 0.0172811169, 0.00481746905, -0.00335414894, -0.00354247843, -0.00624500727, 0.0170249883, -0.0053184256, -0.0167387277, -0.00577041646, 0.00187952863, 0.000424447673, -0.00827896595, 0.00720925443, -0.00214883988, 0.00192472769, 0.0284151584, -0.007341085, 0.0198875982, 0.0152998902, 0.0285356902, 0.00708872313, -0.0205806512, 0.00108289474, 0.0101471944, -0.0420954153, -0.0135371266, -0.00876862276, 0.0109306453, 0.00768007804, -0.00980820134, -0.00148497836, 0.00544649, -0.00727328612, 0.0142226461, 0.0072393869, -0.000438572373, 0.00436547818, -0.00358579424, -0.0117894281, 0.0166935287, 0.009326078, -0.00980820134, -0.00970273744, 0.000901156804, 0.0265017301, -0.00530712586, 0.00966507103, -0.00619980786, -0.00549168885, -0.00613577571, 7.79801921e-05, 0.00626007328, 0.00940141, 0.003220435, 0.0149458311, 0.000440926495, 0.0155032864, -0.0056837853, 0.0153827555, 0.0081207687, 0.00372327468, -0.00180608011, -0.0182905644, -0.00473837089, -0.00505476445, -0.00318088569, -0.0176728424, 0.00481370278, 0.0124448147, -0.00242003449, -0.00150851952, -0.00664049899, 0.00305847148, 0.00270441198, 0.0325132087, -0.00640697032, 0.00717535475, -0.0134843942, 0.0211983714, 0.0385397524, -0.00323926774, 0.00595497945, 0.0112621058, -0.00800777134, 0.0177331083, 0.000123355843, 0.0216804948, -0.0085426271, 0.0166935287, -0.00493046688, -0.0135521926, 0.00402648514, 0.00985340122, 0.00740511715, 0.0260648057, 0.0137857208, 0.0119174924, -0.00850496162, -0.0203094557, -0.00693806, -0.0126331449, 0.00402648514, -0.00246146694, -0.0271345172, 0.0257785451, -0.000264838396, -0.00215448975, 0.0106293187, 0.00940894336, -0.0201738589, -0.00559715368, 0.0148253, -0.00442951033, 0.000114998715, 0.0152546912, -0.0115483664, -0.0140192499, -0.00621487433, -0.0298765954, 0.0219366234, -0.0153224906, -0.0104409885, 0.0090172179, -0.0290780794, -0.0207011811, 0.0121510206, -0.00185410422, 0.0129043395, -0.0179892369, 0.00235600234, 0.00517906202, 0.0103279911, -0.000290262891, -0.011849694, 0.00765371183, 0.0161662064, 0.00474967062, -0.00170909043, 0.00438431138, 0.000839008, 0.0130700693, -0.00145107904, 0.0091076158, 0.0075520142, 0.0118120275, 0.00343136396, -0.00719418796, 0.000468705111, -0.0099212, -0.01252768, -0.0147047695, 0.00282305968, -0.000834770617, 0.0186370891, 0.00354247843, 0.00381555618, 0.0116462978, 0.0140870484, -0.0068777944, 0.0273906458, 0.00772151072, -0.00489656767, -0.0225543436, -0.00952947419, -0.00136915559, 0.00105935358, 0.00082111673, 0.0109005133, -0.0222078171, 0.00155936845, 0.0013474978, 0.0378467031, 0.00214319, -0.0103355246, -0.020776514, 0.0190137494, 0.0206409153, -0.015405355, -0.00921308063, -0.00268746237, 0.0324529447, 0.0082187, -0.0149985636, -0.012542746, -0.0194657389, 0.0114052361, 0.00385510549, 0.00574028399, 0.00769514451, -0.0059022475, -0.0102752587, 0.00204337528, 0.0017674726, 0.00118270947, 0.0107197165, -0.013619991, -0.0215750299, 0.0233980604, 0.00456887437, -0.00336356531, 0.0159854107, -0.0109231127, -0.00869329087, 0.0120455567, 0.000370538328, -0.0194356069, 0.0058834143, -0.00142942113, 0.0223434158, -0.026546929, -0.0119099589, 0.00209234096, 0.00879875571, -0.0113600371, 0.00405661808, -0.0110813091, -0.015804613, -0.0332966596, 0.00253679859, 0.00557832047, 0.00514892908, 0.00995133258, 0.0115483664, -0.00123826659, -0.0103053916, -2.23494171e-05, -0.0180344358, -0.00279481, 0.00166954123, 0.012143488, -0.01072725, -0.0011638765, 0.0142452456, 0.00147932838, -0.000991554931, -0.0121962205, 0.012158554, 0.0190890804, -0.0117517626, 0.00703222444, -0.00961987209, 0.0101547278, -0.00598887913, -0.00626384, -0.0153827555, -0.0168140605, -0.000680811238, 0.0146143716, -0.0213641021, 0.00119118427, -0.00284189265, -0.00291345781, -0.00138328038, -0.0242267102, 0.0207463801, -0.0175071135, -0.00397751946, 0.00532219233, 0.00348786288, -0.00891175307, 0.0110135106, 0.0105539868, -0.0123016844, -0.0281740967, 0.0082187, 0.00593238, 0.0063467049, 0.00694182608, 0.00719795423, 0.0277823713, -0.00377224036, -0.0252361558, 0.0177331083, -0.0117894281, 0.00314510311, 0.0131604671, -0.0215750299, 0.00735991774, 0.00395868672, 0.00153959391, -0.000841832953, -0.00508489739, 0.00114881014, -0.00906241685, -0.00442951033, 0.0152019588, -0.0248444304, 0.00258576428, 0.00919048116, -0.00852002762, 0.0059851124, 0.0166483298, 0.00716405502, 0.00422234787, 0.0142753776, -0.0308408439, -0.00239178492, -0.00179383869, -0.00743524963, 0.0431500599, 0.0106895836, -0.0218612906, 0.00441067759, 0.00879875571, -0.0108703803, 0.000359238562, 0.0143883759, 0.00471953768, -0.00414324971, 0.0183658954, 0.0129872039, 0.00276279403, -0.0189082846, 0.00737498421, -0.00412065024, -0.020098526, 0.00429391302, 0.00398128619, 0.0167387277, -0.00151981926, 0.015804613, -0.0112395063, 0.00476850336, -0.0140870484, 0.0187576208, -0.0282343626, -0.0096575385, -0.0161210075, 0.0135672586, -0.0177331083, 0.017913904, 0.0124372821, -0.00629773922, -0.00156313507, 0.0152245592, -0.0234884582, -0.0131152682, 0.0117140962, 0.00191813626, -0.0158347469, 0.0376357734, -0.0164524671, -0.00250854925, 0.00168649096, 0.0220872872, 0.00884395465, 0.0115709659, 0.00396621972, 0.0109909112, 0.00216390635, 0.0201587919, 9.81079138e-05, 5.36444895e-05, 5.33796483e-05, -0.0178385731, -0.00669323141, -0.0405285135, -0.0112997713, 0.0256128162, 0.017205786, -0.00168366591, 0.00426754681, 0.00474213762, 0.0134467278, -0.0259744078, 0.00656893384, 0.0151868928, 0.00837689731, -0.00499826577, 0.00640320405, -0.0137857208, -0.0175221786, 0.026516797, 0.0159703437, -0.00084559957, -0.0207162481, -0.00691546034, 0.00857276, -0.00266109616, 0.00990613271, 0.00278916024, 0.0010668867, 0.00251608249, 0.0044370438, -0.0141925132, 0.0067836293, 0.00134561444, -0.0232473966, 0.0129721379, 0.0011591682, -0.00733731827, -0.000350057497, 0.00514892908, -0.00699832523, 0.00873849, 0.0140870484, -0.0136275245, -0.0188781507, -0.00664049899, -0.00499826577, -0.014373309, 0.00315263635, 0.00558208721, -0.00813583564, 0.00566118537, 0.00839949679, -0.013589859, 0.00240496802, 0.00803037081, 0.010079396, -0.0213641021, 0.00844469573, 0.00663296599, -0.0185918901, 0.00999653153, -0.0107347826, 0.00350669585, 0.00575911673, -0.0120756896, -0.0053297258, 0.0173564497, -0.0184110943, 0.0242869761, -0.0122489519, -0.00562728615, 0.020113593, 0.000629491464, 0.00647853548, -0.00179948856, 0.0108703803, 0.00946167577, 0.0441444404, 0.00690792687, 0.000659624173, 0.0028739085, -0.0026686294, 0.00324303447, 0.00232398626, 0.0100944629, -0.00765747856, 0.015804613, 0.015744349, 0.00362911, 0.0113901701, 0.0162867382, -0.0253566876, 0.00992873218, -0.074729152, 0.000639378733, 0.0102375932, 0.00167895772, 0.0131002022, 0.00798517186, 0.0282946285, -0.00497189956, 0.0335678533, -0.0171304531, 0.00052920595, 0.0181097668, 0.00403025188, 0.0019944096, -0.0349539593, -0.00906995, 0.0303135198, 0.00669699814, -0.00577041646, -0.00314698648, 0.00990613271, 0.0133638633, -0.00925074611, 0.000602183631, -0.00237671868, 0.00995133258, 0.00296054012, 0.00799270533, -0.0206409153, -0.0151567599, 0.00273831119, 0.0117668286, -0.00242568436, -0.0232624635, 0.0269235894, 0.00688156066, 0.00438431138, -0.00709249, -0.0156690162, -0.00326375058, -0.0103656575, 0.00862549245, 0.00718665449, -0.0145239728, -0.0186370891, 0.0063203387, -0.00333531597, -0.0132583985, 0.00852002762, 0.0103129251, -0.0261702705, 0.00646723574, -0.0189685505, 0.00187482045, 0.0100944629, 0.0217256937, -0.0124372821, -0.0228707381, 0.0442951061, -0.00506606419, -0.000856899365, -0.0346526317, 0.000130182787, -0.0122715514, 0.0208669119, -0.0185165592, -0.00525062717, -0.0056837853, -0.0112771718, 0.0160155427, -0.0154430214, -0.00195297715, 0.00730341906, 0.00279857684, 0.00637683785, 0.0185617581, 0.00685519492, 0.00827143248, 0.00404908461, 0.0101170624, 0.00716405502, 0.0186973549, 0.0334473252, -0.000674219686, 0.0163470022, -0.0207463801, -0.0198574644, 0.00775917666, 0.0128892725, -0.00419974839, 0.0157142151, 0.00259706425, -0.000956243137, -0.00481746905, -0.0048815012, -0.0102978582, -0.0133789293, -0.0209271777, 0.0235035252, 0.0154279545, -0.00308860419, 0.0113374377, 0.0146520371, -0.0013908135, 0.0292739421, -0.0141623802, 0.0105916522, 0.00365170953, 0.013280998, 0.0198875982, 0.0140795149, 0.00288144173, 0.0164374, -0.0126256114, 0.0228255391, -0.00097743026, -0.00758967968, 0.021499699, -0.00529959286, -0.018652156, -0.0190288145, 0.00954454, -0.00771397725, -0.0362195335, 0.00696819229, 0.00618850812, -0.0072318539, 0.013943918, -0.0107649155, -0.012158554, -0.00096095138, 0.0290630125, 0.00705105765, 0.0160456747, 0.024377374, -0.00537492475, 0.0135371266, 0.0152697582, -0.0392026752, 0.00948427524, -0.00260083075, 0.0094541423, 0.00869329087, 0.0141397808, -0.00606044428, -0.0293342061, 0.00837689731, -0.0231118, 0.0088891536, -0.000238236855, 0.000349115871, -0.0167236626, 0.0144787738, -0.00540882396, -0.0113901701, 0.00516022881, -0.0235487241, 0.0115935653, -0.00294359052, 0.000655857555, 0.011480568, 0.0117065636, 0.00257634791, -0.017928971, 0.0248444304, 0.00860289298, 0.0101697948, 0.019315077, 0.0111566409, -0.020038262, -0.00437301164, 0.00650113542, 0.00267427927, -0.00691922661, -0.0120154237, -0.0297560655, -0.00213000691, -0.00662543252, 0.0160155427, -0.0110436436, 0.010757382, -0.0166031308, 0.00263284682, -0.0184713602, 0.0156690162, -0.0249800291, -0.00691169361, -0.00857276, 0.0169044584, 0.00281929295, 0.0083241649, 0.0257785451, 0.00321290176, 0.00149721978, 0.00218650582, -0.00613577571, -0.00771021098, -0.0167387277, 0.00904735085, -0.00916788168, 0.0305696484, -0.00703222444, 0.00438431138, 0.013943918, 0.00737875095, -0.012957071, -0.00802283734, -0.00347656314, -0.0176577754, 0.018606957, 0.0264113322, 0.0027646774, -0.0124297487, 0.0249800291, 0.00353494519, 0.0355867483, -0.00467433874, 0.00190024485, -0.00882888772, 0.0105916522, 0.027179718, 0.00459900685, 0.00624500727, 0.0225091446, 0.0157142151, -0.018682288, 0.00970273744, 0.00259518088, 0.000828649907, 0.0100869294, -0.00928087905, 0.00536362501, -0.00110172771, -0.000727422768, 0.00769891078, 0.00978560187, -0.000783921627, -0.00198875973, -0.00617720839, 0.0197369345, 0.0122414194, 0.0122188199, -0.00488526793, -0.00479863631, -0.0105690528, -0.000843245478, 0.00802283734, 0.0188178867, 0.00707742339, -0.00589471404, 0.00822623353, -0.0116764307, -0.0074314829, 0.0174016487, 0.00462537305, -0.00946920831, -0.0393533371, 0.0304943174, 0.00179572206, 0.0169948563, -0.00973286945, 0.00324303447, 0.0113223707, -0.00964247156, 0.0152396252, -0.0129872039, -0.00292664091, -0.0168743264, -0.000611129333, -0.000703881611, -0.00628643949, 0.00029191075, 0.000476238289, -0.00219215569, -0.00794750638, -0.00633163843, 0.00168837421, 0.0389013477, -0.00816596858, -0.0119250258, 0.00127969915, 0.0016102175, -0.00795503892, -0.020113593, 0.000429626729, -0.00318088569, -0.0175071135, -0.0138987191, -0.0133864628, -0.00615084218, 0.0166784637, -0.00663673226, 0.0116387643, 0.0248745643, -0.0215448979, -0.0176728424, -0.0118120275, -0.0210778397, -0.0119476253, -0.0152471587, 0.00592484698, -0.0253114887, 0.000186210818, -0.00754824746, 0.0195260048, -0.0255826823, -0.011126508, -0.01252768, -0.000515081279, -0.0205655843, -0.00617344165, -0.0187425539, -0.00799270533, -0.00538999122, -0.00953700673, 0.0224036798, -0.0132960649, 0.00127122435, 0.0219516903, -0.0204299875, -0.0111415749, -3.16040496e-05, -0.0107649155, -0.00829403196, 0.00315451948, 0.000964247156, 0.0409202389, 0.00919048116, -0.00446340954, -0.0360086039, -0.00599641213, 4.43751451e-05, -0.00118270947, 0.0154882204, -0.0185918901, -0.0137254559, -0.00902475, -0.00337298191, -0.00429391302, -0.0101245949, -0.028746618, -0.00858782604, 0.00461784, -0.00719795423, 0.00383627252, -0.0190589484, -0.00279481, -0.00584574835, 0.0460428037, -0.010757382, 0.0129495384, -0.0142452456, -5.0437e-05, 0.0217859596, 0.00975547, 0.00966507103, 0.00508113066, -0.0191644132, 0.0184412263, -0.0131303342, 0.00142847945, -0.00323361787, -0.00580431614, -0.0252813548, 0.000492952531, 0.00193037768, 0.00775917666, 0.0327542722, -0.0120229572, -0.00204714201, -0.0105313873, -0.020791579, -0.000680811238, 0.0691244677, 0.0127310762, 0.00384568889, -0.0311271045, 0.0121208886, -0.00715275528, 0.00236918544, 0.0384192243, 0.00927334558, 0.0155936843, 0.00846729521, 0.0018202049, -0.00804543775, 0.00916034821, 0.0168743264, -0.00543142343, 0.000244357565, 0.00852756109, -0.00525439391, 0.00664049899, 0.0067685633, -0.0213189032, 0.00766501157, -0.00587964756, -0.0211682394, -0.0130926687, -0.000306977134, -0.00657646684, -0.031548962, 0.00633540517, 0.0109833777, 0.0319708213, 0.0363400653, -0.000563105277, -0.0192698762, 0.00442197733, -0.00141623802, 0.0328145362, 0.0116990302, -0.0240007155, 0.0228858031, 0.0264715981, -0.00633540517, 0.000505193952, 0.00375717413, -0.00870082434, 0.0166483298, -0.0195410717, 0.01037319, -0.0205053184, 0.00547285611, -0.000968955399, -0.0143507095, -0.0150136296, 0.00242191763, 0.0176125765, 0.0268783905, 0.00798517186, -0.0136576574, -0.0041168835, 0.0238199178, 0.00067939877, 0.00564988563, 0.0109080458, -0.0152622247, -0.0403778516, -0.00329200015, 0.0108628469, -0.00668569794, -0.00918294769, -0.0191041473, -0.00772904372, 0.0180344358, -0.0163018033, -0.00581184914, 0.0192698762, -0.00706989039, -0.00429767976, 0.0195260048, -0.0208518449, -0.02936434, 0.0140343159, -0.00669699814, -0.0160456747, 0.000496719149, -0.0273755789, -0.0124598816, -0.0134994602, -0.00217332272, 0.00453497516, -0.000204572949, 0.0249498952, -0.00570261804, -0.00863302499, 0.00969520397, 0.00116010988, -0.00305658812, 0.0151266279, 0.00692676, 0.01288174, 0.0198875982, -0.00433157897, 0.00584198209, -0.0024501672, -0.00120436726, 0.0249197632, -0.00151040277, 0.0025593983, 0.00258764764, 0.00341629749, 0.00036088645, -0.0282042306, 0.00464420626, 0.00305847148, 0.00432404596, 0.00484006898, -0.00054333068, 0.0198122654, 0.0180947017, 0.000371715403, 0.00231457, -0.00775164319, -0.00600017887, -0.00916788168, -0.00616967538, 0.0071226228, 0.0301929899, 0.00317335245, 0.0119099589, 0.0211833045, 0.00750304852, -0.0131152682, 0.0132282656, 0.00364229293, 0.013943918, 0.0249197632, 0.0080153048, 0.000976488576, 0.0106971171, 0.0223886147, 0.00537492475, 6.92111e-05, 0.00638437085, -0.00269499561, 0.0131152682, -0.00858029351, 0.021529831, -0.00748044858, 0.022915937, -0.00739005068, -0.000983080128, -0.0113977026, -0.00822623353, -0.00529206, 0.00370444171, 0.0042336476, 0.0211079735, -0.0296807326, 0.00925074611, -0.00682129525, -0.00406415109, -0.00517152855, 0.0147123029, -0.00505099772, 0.00916788168, -0.0079023065, 0.00650866842, -0.0166483298, 0.00280234334, -0.00535609154, 0.0177632403, -0.00638437085, -0.000356178207, 0.0111340415, 0.00473837089, 0.0122564854, -0.00369879184, 0.00206785812, 0.00057770079, -0.00407168455, -0.0057930164, 0.00815843511, -0.00558585394, 0.0456812084, 0.00252173236, -0.000724597834, 0.00463290652, 0.00620734133, 0.0152998902, -0.00863302499, -0.0153149571, -0.0121811535, -0.00587211456, -0.00937127694, -0.0174016487, 0.000669511443, 0.0191192143, 0.00949934125, 0.0130399363, -0.000310508301, 0.0381781608, -0.00787217449, 0.0082639, 0.000353117852, 0.00280610984, 0.0191945452, -0.00509619713, 0.00162905036, -0.0176427104, 9.10455565e-05, 0.0101999268]
24 Nov, 2021
jQWidgets jqxScrollBar rtl Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The rtl property is used for setting or getting a value indicating whether the elements of the specified jqxScrollBar are aligned to right-to-left fonts or not. Syntax: For setting the rtl property. $('#jqxScrollBar').jqxScrollBar({ rtl: true }); For getting the rtl property. var rtl = $('#jqxScrollBar').jqxScrollBar('rtl'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar rtl property. In the below example, the value for the rtl property has been set to true. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar rtl Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin:28px;" id="button_for_rtl" value="Value of the rtl property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 200, height: 20, rtl: true }); $("#button_for_rtl").jqxButton({ width: 250 }); $("#button_for_rtl").jqxButton().click(function () { var Value_of_rtl = $('#jqx_Scroll_Bar').jqxScrollBar('rtl'); $("#log").html((Value_of_rtl)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollbar/jquery-scrollbar-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-rtl-property/?ref=next_article
PHP
jQWidgets jqxScrollBar rtl Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0369916968, 0.000465175486, -0.0196866971, 0.0738628, 0.0544474386, 0.00665518921, 0.00711494731, 0.02081725, -0.0229276158, -0.0231235791, -0.000504509313, 0.00775559433, 0.01398871, -0.0192947723, 0.00787618663, 0.0052043125, -0.0153152263, -0.00977551565, -0.0418153889, 0.0227618031, -0.00541158067, 0.00227052742, -0.0331025943, 0.0110040503, -0.0788673833, 0.00965492334, 0.0194002911, 0.00270955893, -0.00925546139, 0.010483996, -0.00507995207, -0.00192759302, 0.0204856228, -0.0235456526, -0.0478148572, -0.0134912673, 0.0236511715, 0.0180285536, -0.0381373242, -0.00177496835, -0.0225809142, 0.016400557, -0.0102654221, 0.0180737749, -0.0125491396, 0.0115617895, 0.0122551955, 0.000934119511, -0.0172899254, 0.0162347425, 0.00354239973, 0.0354239978, 0.0165663715, 0.0293039363, 0.0245405398, -0.020199215, 0.00518170185, 0.0446794592, 0.00343499705, 0.0234401338, 0.00433755526, -0.0293039363, -0.0208473988, -0.0319268182, -0.0116296224, 0.0239978731, -0.0282638278, -0.00740512274, -0.0321077071, 0.0233647637, -0.0302837491, 0.0442573838, 0.0343085192, 0.014388172, -0.01753111, 0.00665895781, -0.020636363, -0.00323526608, 0.0211790279, 0.0347004421, -0.0227467287, 0.0185109228, -0.0355445892, 0.0234250594, -0.014207284, 0.0215408057, 0.0131370267, -0.037142437, 0.066627264, 0.0163101126, -0.0475435257, -0.0129259899, -0.00185693346, -0.00723930821, 0.00315047451, 0.00947403535, -0.0165362228, 0.00202745851, -0.0303591192, 0.035393849, 0.0334643722, 0.0248118713, -0.0349717773, -0.0375042148, 0.000205266042, -0.00397200976, 0.0201087706, 0.000604845933, 0.00855451822, 0.0158729646, 0.0183451083, 0.00222153682, 0.00854698103, -0.0108231613, -0.060597647, 0.0230783578, -0.0232893936, -0.0401873924, 0.00902181398, -0.000530417834, -0.0400969498, 0.0154810399, 0.00813244563, 0.0333437808, -0.00703580864, 0.0175160356, -0.0158277433, 0.0217216928, 0.0388910249, -0.0209076945, -0.0297712311, 0.00689637382, -0.01497606, -0.0131671755, 0.0235758, 0.0535128452, -0.014501228, -0.0162196681, -0.0321680047, -0.0105744395, -0.0226864312, -0.0380167328, 0.0142600434, 0.0215709526, 0.00323715038, 0.0354842916, -0.0230331346, 0.0157523733, -0.00149327226, -0.000936474826, -0.00930822082, -0.0162196681, 0.0174557399, 0.0255203526, 0.0479354523, -0.0173803698, -0.0288667884, 0.0466390848, -0.019942956, -0.00394186191, -0.00816259347, 0.00679085543, 0.00933836866, 0.0373233259, -0.0120969182, -0.0113432156, 0.0343085192, -0.0164156314, -0.0405491702, 0.0292285662, -0.041604355, -0.0029582805, -0.00230255979, -0.000791858241, -0.0195811801, -0.00910472125, 0.0141620617, -0.0403984301, 0.0177421458, -0.0466993786, -0.0138304327, -0.0219025817, -0.0150740417, 0.00439785141, -0.016144298, -0.00352544128, 0.0378659926, -0.00581104308, -0.0491715223, 0.00430740742, -0.0480861925, 0.0165814459, 0.0198072903, 0.0347908884, -0.0174557399, -0.0049932762, -0.013039046, -0.0107101062, -0.0101222191, -0.00856205542, 0.0179682579, 0.00789126102, 0.00743527105, 0.00760862231, 0.0372027345, -0.00251171202, -0.0291531961, -0.0216161758, 0.0239375774, -8.16706815e-05, 0.00567537639, -0.0186164416, 0.038499102, 0.0062858751, -0.0140188588, 0.00906703621, 0.00342746, -0.0172597766, -0.014463543, 0.00549825653, 0.0102578849, -0.0313540064, -0.0272990894, 0.010958828, -0.0821233764, -0.0304194149, -0.00579973729, 0.0141846724, -0.00780081656, 0.0115617895, -0.0290778261, -0.030389268, -0.033856295, -0.0136043224, 0.0343085192, 0.051281888, -0.0255505, 0.0176215544, -0.0113206049, 0.0293943807, -0.0209981389, -0.0183149595, 0.000786205463, 0.00470310077, 0.0189480707, -0.023816986, -0.00723930821, -0.0322584473, 0.00633486593, -0.00167321856, -0.00583742233, 0.00727699324, -0.00608614413, -0.0309620798, 0.0293340851, 0.00697174389, -0.00622934755, -0.0017862739, 0.0199731048, -0.00431871274, 0.0259122774, 0.0202293638, -0.00170242449, -0.011102031, 0.0277663842, 0.0170638151, 0.037142437, -0.0283090491, 0.00696797576, -0.0453728624, 0.0510708503, -0.0270428304, 0.047302343, 0.0065383655, -0.00451844372, 0.0207418799, -0.0638536364, -0.0128129348, 0.0261383876, -0.0143052647, -0.000846501614, 0.00930068363, 0.0368711054, 0.0596932024, 0.0157372989, 0.00283015124, 0.021842286, -0.0187671818, -0.0347908884, 0.0306756739, -0.00214616652, -0.0117200669, 0.0128355464, 0.0117879, 0.0463074557, -0.00456743455, 0.00172126712, -0.0238923561, -0.00890122168, 0.00879570283, -0.00738628, -0.027540274, -0.0341879241, -0.00986596, -0.0101523669, 0.0375343636, 0.0305400081, 0.00395693583, 0.00323903468, -0.0200786237, 0.031082673, -0.00946649816, -0.03382615, -0.0210132133, -0.00909718405, -0.0130239716, -0.0097453678, -0.00327671971, -0.0158578921, 0.00976044126, 0.00873540714, -0.00562638603, -0.036629919, 0.0254299082, 0.0622859374, -0.0284296423, 0.00187577598, -0.0236059483, 0.0101297554, -0.02797742, -0.0472721942, 0.0197469946, -0.00472948048, -0.015782522, -0.00344253425, -0.0384388044, -0.000597308856, -0.0139133399, -0.0375946574, 0.0073372894, -0.00557362661, -0.00402100058, 0.0296355654, -0.0419661291, 0.0520958863, -0.0637933388, -0.026515238, -0.00142449688, 0.0437448658, 0.0256258696, 0.00139058032, 0.0414536148, 0.0295752697, 0.0177119989, 0.0325900763, -0.0127375647, -0.0279321987, -0.0395241342, -0.0151343374, 0.010190052, 0.0191892553, -0.000591656135, -0.00573944114, 0.0220683962, 0.0178175159, -0.0382880643, -0.0225206167, 0.0121722883, 0.00267941086, 0.00115787482, -0.0245254654, -0.0391925089, -0.00608991273, 0.0397050232, -0.0131671755, 0.0182395894, -0.0110040503, -0.0159784835, -0.00522315549, 0.00849422254, -0.0333739258, 0.0413330197, -0.00896151736, 0.018118998, -0.00358573766, -0.0196716245, 0.0156468544, -0.050226707, 0.0121346032, -0.0120140109, -0.0258821286, 0.0610800162, 0.00206137518, -0.0240430962, -0.00762369623, 0.00990364514, 0.0201087706, 0.0307811927, 0.0078309644, 0.0122024361, 0.0159935579, -0.0510708503, 0.0237717628, -0.0292285662, -0.0170487408, 0.0101749776, -0.055412177, -0.0100016268, 0.0242842808, -0.00932329427, -0.0175009612, -0.0318665244, -0.00995640457, 0.0192796979, 0.0208473988, 0.0172899254, 0.0219025817, 0.0541761033, 0.00666649453, -0.0345195532, 0.0234702826, -0.0227467287, -0.0271332748, 0.0273895338, -0.0379564352, 0.00586380204, -0.0545378812, 0.00560754351, 0.0224301741, -0.00431117602, -0.00403230591, 0.00243257335, 0.00215370371, 0.00740889134, 0.0342482217, 0.0253394637, 0.0327408165, 0.00853190757, -0.0311731175, 0.0315348953, -0.0189782176, -0.00204064837, -0.0208021775, -0.0191289578, -0.00776313106, -0.0153076891, -0.00292813242, -0.0115617895, 0.0139434878, 0.0127375647, 0.00417550933, -0.0410616882, -0.0334643722, -0.0101297554, -0.010408625, -0.0242842808, -0.00433755526, 0.000586945505, 0.011870807, -0.00859220326, -0.0455839, 0.0164156314, -0.0203951783, 0.00295639643, -0.012564213, -0.0426293872, -0.0075634, 0.00595801463, -0.0178175159, -0.00226675905, -0.047633972, -0.0243747253, 0.026153462, 0.0412727259, 0.00711117918, 0.0131219532, -0.00357820047, -0.00155827904, -0.00117954367, -0.00723553961, 0.0362078473, -0.000756999536, 0.0527892932, 0.0125189908, 0.042116873, 0.00767645566, 0.00971522, -0.0208624732, -0.00671925396, 0.00397954695, 0.021329768, 0.0157975946, -0.0234853569, 0.00915748, -0.0257916842, 0.0220231749, -0.0208926219, 0.0125416024, 0.0162498169, -0.0005205255, 0.0266207568, 0.0436544232, -0.030464638, 0.00997147802, 0.00599569967, -0.00565653387, -0.0539349206, 0.0226261355, -0.0233195424, -0.0382579155, 0.021586027, -0.0188274775, -0.0127903242, 0.0252037961, -0.0187521074, -0.0381976217, -0.0344592594, -0.0240883175, 0.00691898493, -0.0234250594, 0.0202745851, 0.00221588416, 0.00806461181, 0.0222342107, 0.0438353121, 0.0305249337, -0.00874294434, -0.0248420201, -0.0160840023, 0.0211036578, -0.00867511053, 0.0113206049, 0.0365394764, 0.0212543979, -0.0317459293, 0.0165663715, -0.0131973233, -0.0140716173, -0.0188274775, 0.0173803698, -0.0336452611, 0.0376549549, -0.0242692064, -0.0151795596, 0.0297712311, 0.0105970511, 0.000470828265, 0.00548695121, 0.0143429507, 0.034037184, 0.0212996211, -0.000107991371, -0.00371951959, -0.00810229685, -0.0112000126, -0.00835855585, -0.0217518415, -0.017787369, -0.0133782113, -0.0199580304, 0.0156770032, 0.00119838631, 0.00298277591, -0.0126998797, 0.0136118596, -0.0254902039, 0.0367806591, 0.00529098837, -0.0134158963, -0.0128355464, 0.00194266706, 0.00406622281, 0.00141036499, 0.0054605715, 0.0115090301, 0.0117577519, 0.0283241235, -0.0344291106, -0.0018946185, 0.00538520142, 0.00923285, -0.0344592594, 0.00841131527, 0.0186918117, -0.00872033276, 0.00993379299, 0.0105442917, -0.0086298883, -0.0189631432, -0.00726945652, -0.0118029742, 0.0240280218, 0.0116446968, -0.00172126712, -0.00734482659, 0.0083359452, -0.0177270733, 0.0286256038, 0.0200334, -0.0212996211, -0.00341427024, 0.0458552316, 0.0330121517, 0.025128426, -0.00736366911, -0.0184355527, -0.0114185866, -0.00262476737, 0.0132877678, -0.0174105167, -0.0541158095, 0.00976044126, 0.0211639535, 0.0180587, -0.0273744594, -0.0209529176, 0.00679839263, 0.0224452466, -0.00432625, -0.0141695989, 0.00236850884, -0.00981320068, -0.00649691187, -0.0183300339, 0.0275101252, 0.00739758555, -0.027871903, -0.0231537279, -0.00631602341, -0.0507090762, -0.00456366595, 0.0030355351, -0.015375522, 0.00199542614, 0.0383785106, 0.0215408057, -0.0213448424, 0.0238019116, -0.0199128091, 0.0207268074, 0.0283994935, 0.0355445892, -0.0186013673, 0.053874623, -0.0104613844, -0.00525330333, -0.0138379699, 0.0280527901, 0.0213146936, 0.00677578151, -0.0319871157, 0.0106498105, 0.0219930261, 0.00502719264, 0.00612006057, 0.0199580304, -0.00489529502, -0.0183149595, -0.0175612587, 0.0156167066, -0.0170336664, 0.0240883175, 0.0192646254, -0.00521561829, 0.00743150245, -0.0235155039, 0.0427801274, 0.0334945209, 0.00498573901, 0.0119009558, -0.0128807686, -0.0077103721, 0.0216764715, 0.0046277307, 0.00342180743, 0.000246601907, -0.0309922285, 0.022098545, 0.0259876475, 0.0208021775, 0.000370727212, 0.00457497174, 0.0285653081, 0.00890875794, -0.00523822941, -0.0198072903, -0.00509125739, 0.0172447041, 0.00423580548, -0.00765007595, -0.0040360745, -0.00992625579, 0.0219327305, 0.0184657, -0.0072129285, -0.00522315549, 0.0189480707, -0.00360646425, -0.0287612714, -0.0413028747, 0.0103181815, -0.0211941022, 0.0022479163, -0.00914240628, -0.00292436406, -0.0114562716, 0.0149534484, 0.00211601844, -0.00322396052, -0.0110794203, 0.0229426902, 0.00817013066, -0.00713379, 0.053874623, 0.0154659664, 0.00519677578, -0.0288667884, -0.01753111, -0.0361475497, -0.0146595053, 0.0153303, 0.0210282877, -0.00327483541, -0.0424183533, -0.00991871953, -0.0169582963, 0.0135892481, 0.00688506849, 0.0109814387, 0.000363661238, -0.00739004882, 0.0561658777, 0.0195811801, -0.0153227625, 0.0125792874, 0.013551563, -0.00903688744, 0.0168226305, -0.0118406592, -0.00836609304, -0.0223698765, -0.0171391852, 0.000222813178, 0.0281733833, -0.00791387167, -0.0400366522, 0.0174708143, -0.00405868562, -0.00113432156, -0.0152398553, 0.00121534453, -0.0271784961, -0.0101523669, -0.0398557633, -0.00369314, 0.0330121517, -0.00651952298, 0.0123983985, 0.0127224904, -0.0101297554, -0.0150815779, 0.00602584798, -0.016400557, -0.00921777636, 0.00892383233, 0.0015187097, -0.0405491702, -0.00647053216, 0.0198826604, -0.046608936, -0.0104312366, 0.00511386851, 0.0504678898, -0.0129862865, -0.00275101257, 0.0140791545, -0.0294094551, -0.0175461844, -0.00494428538, 0.0136118596, -0.000193371685, 0.00918762852, -0.00685492, -0.00439408282, 0.018043628, -0.0163251869, 0.0078309644, 0.0108080879, 0.0288969371, -0.00913486909, 0.0197017714, 0.0205911398, 0.0179381091, 0.010883458, 0.0233798381, -0.0231386535, -0.0134385079, 0.0254148338, -0.00227994868, -0.0289723072, 0.0220081, -0.00390794501, 0.0183601826, 0.0190988109, 0.0528797358, -0.00453351811, -0.0209830645, -0.00880324, -0.0230632834, -0.00979059, -0.0398256183, -0.00970768277, -0.0163402613, -0.00732221548, -0.024178762, -0.0190535877, 0.0126772691, -0.0214503612, 0.0230180603, 0.00517039606, -0.0334342234, -0.00300350273, 0.0104613844, -0.00631225482, -0.0378659926, 0.0326805227, -0.00727322511, 0.020711733, 0.0068813, -0.0107854763, -0.0107402541, 0.0216613971, -0.0247817244, 0.00220834697, -0.0309319329, -0.0163704082, 0.0211790279, 0.0110794203, 0.00302234525, 0.0234853569, 0.00303930347, -0.0244048722, -0.0226562843, 8.22595175e-05, -0.00372894085, 0.0180737749, -0.000553028891, 0.0415139087, 0.034037184, 0.0256560184, 0.0234401338, 0.0100619225, 0.0104990695, 0.0431117564, -0.00630094903, 0.0290627517, -0.035393849, 0.0186616629, 0.0112452349, 0.00159973267, -0.0149534484, 0.0040360745, 0.00410013925, -0.0123305656, -0.00751064112, -0.0381071754, -0.0260027219, -0.0515230745, -0.0336452611, -0.0182697382, -0.00581481121, 0.0230934303, 0.015782522, -0.00877309218, 0.00955694169, 0.000547847187, -0.0191440322, 0.0238019116, 0.0186315142, -0.0142525062, 0.0507090762, 0.00609744946, -0.0556533597, -0.0149308378, -0.00973783061, 0.0408808, -0.0387704335, -0.0143580241, 0.00295451214, -0.00430363882, -0.00922531355, 0.00670418, -0.00124266627, -0.042116873, -0.00771414069, 0.058035057, -0.0123757878, -0.024435021, -0.00239488832, 0.0133556006, 0.00778574217, -0.023922503, 0.0278266799, -0.0138756549, 0.0156468544, -0.00716393813, -0.0192646254, 0.018737033, 0.0239074286, -0.00313163199, 0.0257916842, 0.00991118234, 0.00851683319, -0.0190535877, 0.0293491576, -0.00210659718, -0.0252942406, 0.0100845331, 0.012639584, -0.00372894085, -0.012307955, -0.00133782113, 0.0377453975, 0.0190988109, -0.00726568792, -0.00787618663, -0.0347908884, 0.00988857076, -0.0360571072, 0.022204062, 0.0154207442, 0.00898412894, 0.034368813, -0.00646299496, -0.0336754099, 0.0132726934, 0.0202595107, 0.0117351413, -0.0119913993, -0.0138681177, 0.0378056951, 0.0162498169, -0.0116220862, -0.0219930261, -0.00203122711, -0.0133932857, -0.0394939892, 0.000692463771, -0.0192043278, 0.0228823945, 0.0025437444, -0.0259876475, 0.00421696296, 0.00813998189, 0.0211790279, -0.0386196934, -0.0285653081, 0.00870525837, -0.0286406782, 0.0257313885, -0.01760648, -0.0350923687, -0.010627199, -0.00284522539, 0.000934590527, -0.0182546638, -0.0197469946, 0.0163553338, 0.00823796354, -0.0135666374, -0.00193701428, 0.00334643712, 0.0411219858, 0.0236511715, -0.0141846724, 0.0187973287, 0.00708856806, -0.0328312628, 0.0316554867, 0.00132274709, 0.0190535877, -0.00390040828, -0.00485007279, -0.00178910024, 0.00944388658, -0.00741642807, 0.0112376977, -0.0210282877, -0.0051101, 0.0245103911, 0.0240430962, -0.0288064927, 0.00961723831, 0.00910472125, 0.00196716236, 0.0245405398, 0.0438654609, -0.00135289517, -0.010958828, -0.029620491, -0.0154282814, 0.00966999773, 0.0212845467, 0.0195510313, 0.0259725731, 0.0258218329, -0.0211941022, 0.0272689406, 0.0026718739, 0.0215408057, -0.0340974815, -0.00170619308, 0.00452598091, 0.0145765981, 0.0507392213, -0.0120667703, 0.00990364514, 0.00258708233, 0.0285050124, 0.00326729845, 0.0373836234, 0.013476193, 0.0506789275, -0.0144484686, -0.00615774561, -0.00276043382, -0.00600323686, -0.014244969, -3.34528886e-06, -0.012782787, 0.00810983405, 0.000621804211, -0.0218272116, 0.00841131527, 0.011215087, -0.00841131527, -0.0132048605, -0.0349114798, -0.0048764525, -0.0186013673, 0.0338864438, 0.0174708143, 0.0235155039, 0.00832087081, -0.00888614729, -0.00387402857, -0.0155111887, 0.016400557, 2.68800777e-05, -0.0101222191, 0.0264700167, 0.00938359089, 0.009496646, -0.0111246426, 0.0157372989, -0.0161593724, -0.00438654609, -0.0343085192, 0.0413330197, 0.034368813, -0.0175160356, -0.00271898019, -0.00549071934, 0.0163101126, -0.0131747117, 0.0277513098, -0.00888614729, 0.00211978704, -0.000865815266, 0.0333437808, -0.00367618189, 0.0320775583, 0.00105895137, 0.0175461844, 0.00452974951, -0.00319192815, -0.00352167292, -0.00452974951, 0.029695861, -0.00397577835, 0.0174858887, -0.00872787, 0.000864402042, -0.0231235791, -0.00612382917, -0.00676824432, 0.0110718831, -0.0155564109, -0.0107553285, -0.00707726227, -0.00351602, 0.00148950366, -0.00747295609, -0.00821535289, -0.0210282877, -0.0416947976, 0.000349058275, 0.0835704878, 0.00601831079, -0.00678708684, -0.0150891151, -0.0243747253, -0.0156920776, 0.00452598091, 0.0025456287, 0.0126772691, -0.00439031469, 0.016898, 0.020711733, 0.00607860694, 0.0018597598, -0.0234702826, -0.00807214901, -0.0180285536, 0.000652894436, 0.0222342107, -0.0396447293, 0.0128958421, 0.0265453868, -0.00951172, -0.0108156241, 0.0548695102, 0.0154961143, -0.0266961269, -0.0252490193, -0.0285351593, 0.0183601826, 0.00412651896, 0.0155564109, 0.00816259347, 0.00119650201, -0.00187766028, 0.0388608798, -0.00498573901, 0.00401723199, -0.031776078, 0.0191138834, -0.0297410842, 0.00475962833, -0.00495182257, -0.0147499489, -0.00156393182, -0.000966622902, -0.0165814459, -0.00423957407, -0.0167472605, 0.034881331, -0.022972839, 0.00178062113, -0.0144183207, -0.00331440475, 0.0157372989, 0.00769152958, -0.016913075, -0.0252490193, 0.0190988109, -0.0273141619, -0.0145313758, -0.0215408057, -0.0224452466, 0.000970391382, 0.0272237193, 0.021842286, -0.0118481964, 0.0340974815, -0.0131897861, 0.0439257547, 0.0118632708, 0.0187521074, -0.00525330333, 0.000865344191, -0.0183451083, -0.00411898177, 0.0124210101, 0.00550579373, 0.00784603879, -0.0088710729, -0.0328614116, 0.00129919394, -0.0109437536, 0.0151343374, -0.0138982655, 0.0110718831, -0.0198977347, -0.0163854826, -0.0150363557, 0.010883458, -0.00523822941, 0.00246460573, -0.0331930369, -0.020199215, -0.0217066202, -0.00583742233, 0.0240732431, 0.00260780915, 0.000497443369, -0.0143957091, 0.00608991273, -0.00325034023, -0.00474078581, 0.00124078197, 0.0181943681, -0.0125943618, 0.021586027, 0.00966246054, -0.0134083601, 0.00955694169, 0.0321680047, -0.00847161096, 0.0186164416, 0.00825303793, 0.00265679974, -0.00454859203, -0.00328614097, 0.00213109259, 0.006994355, 0.018375257, -0.0296054166, -0.00754078897, 0.00539273815, 0.0137023032, -0.0137324519, -0.00667403173, 0.0145539865, 0.0172597766, 0.00350659876, -0.0126245096, -0.00900674, 0.0121873626, -0.0127074169, 0.0079515567, -0.000931293122, 0.00689260522, -0.0206665099, 0.0248269457, -0.00913486909, 0.0282638278, 0.00142920751, -0.0128506199, -0.011177402, 0.0200786237, 0.00472571189, 0.0294848252, 0.00576205226, -0.00442046253, 0.00253620744, 0.0277362354, -0.0123531772, -0.0161292236, 0.0268317927, -0.00201992155, 0.0185561441, -0.0160086323, -0.00512517383, 0.011139716, -0.0194756612, 0.0166115928, 0.009752905, 0.0232140236, 0.0133405263, 0.00312786363, -0.00832087081, 0.0060446905, -0.00926299859, -0.0312937088, 0.00210282882, -0.000257907435, 0.00410390785, -0.010521681, 0.0343386643, 0.00178438961, 0.0104538472, 0.0188877732, 0.0148554677, -0.00127469865, 0.041604355, -0.00502719264, -0.00328990957, -0.00763877, -0.0167321861, 0.0171693321, 0.0144484686, -0.00605222769, -0.00596555183, -0.00766515, 0.00755586335, -0.00444307365, -0.0233949125, 0.0284145679, 0.0242239852, 0.0117879, 0.0133329891, -0.00191911391, -0.00682100374, -0.0136344703, -0.0100996075, 0.00868264772, -0.00128788839, 0.0192947723, 0.0160538536, 0.0321680047, -0.0152549297, 0.0181792937, -0.0374137685, 0.0131897861, 0.0048764525, -0.0125491396, 0.0134535814, -0.0325900763, -0.0105141439, 0.00426595379, 0.00335209, 0.0164910015, 0.00815505628, -0.0221739151, 0.0109814387, 0.0149157634, -0.00762369623, 0.00359139033, -0.0359968096, 0.0257163141, -0.00168923475, 0.00276420242, 0.0017476466, -0.00480485056, -0.0179079603, 0.0129561387, 0.00829072297, 0.0266810525, 0.01135829, 0.0194002911, 0.0279171243, -0.00314859045, -0.000247544027, -0.0201087706, -0.00501588732, 0.0269523859, 0.00929314643, 0.0182848126, 0.00299973413, 0.0359968096, 0.013476193, -0.000121063393, 0.0138228955, -0.0139133399, -0.0133782113, 0.0350019224, 0.0181943681, 0.00458627706, 0.0283844192, -0.0290778261, 0.0229276158, 0.00547941402, -0.0118783442, -0.0197017714, 0.0027905819, -0.0456743464, -0.00263418863, -0.0079515567, -0.00326541415, -0.00607483881, -0.036629919, -0.0112301605, -0.0118783442, -0.00451090699, -0.0318062268, -0.0231537279, -0.000500269758, 0.0234552082, 0.000266386574, -0.00146029773, 0.0226412099, -0.028233679, 0.0157222245, 0.0238772817, -0.0120140109, -0.00206137518, -0.00872033276, 0.0258218329, 0.00327483541, -0.0132726934, -0.010190052, 0.0135817109, 0.0139133399, 0.0213749912, 0.000106872598, 0.000107225896, 0.0244199466, 0.0116371596, -0.0123983985, 0.00311467377, 0.00809476059, 0.0292587131, 0.0190083664, -0.0258369073, -0.000577524188, -0.00413782429, 0.00417550933, -0.0201539937, 0.00213297689, 0.003625307, -0.00442799972, -0.00637255097, -0.00979059, -0.0186164416, 0.0213146936, -0.0284145679, -0.0017127879, -0.0216915458, -0.0121195288, 0.00124172412, -0.00862235203, -0.00458627706, 0.0111171054, -0.017862739, -0.0126094352, -0.018375257, -0.00129448331, -0.00763500202, -0.0637330487, 0.0154358186, 0.0287914183, 0.00255128159, 0.00615020888, -0.0270880517, 0.00293755368, -0.0225055441, -0.00201426866, -8.96198835e-05, -0.0205911398, 0.00738251163, 0.000136608505, 0.0357857756, 0.00438277749, -6.93052571e-05, 0.00274535967, -0.0049631279, -0.00440162, 0.0157975946, -0.0179381091, 0.00966246054, 0.0100769969, -0.0183300339, -0.00506864628, -0.00234024483, -0.0261836089, -0.00223849504, -0.00429233303, -8.66168557e-05, 0.0238471329, -0.00965492334, 0.00645922683, 0.0511914454, 0.014682116, 0.00364980218, 0.0118029742, -0.0119235665, 0.00528722, 0.0131521011, 0.0171844065, 0.00943634938, 0.0139585622, -0.0321077071, -0.0113507528, 0.0134460451, -0.00940620154, 0.00967753492, -0.0101448298, 0.0097453678, -0.00446568476, 0.000945896085, 0.0153076891, 0.012307955, 0.0288818628, 0.0147424126, 0.0108231613, -0.00294132228, -0.0200936962, 0.00204441673, -0.0021292083, -0.0312937088, 0.0263644978, 0.0356048867, 0.00769529818, -0.0217367671, -0.00774052, 0.0111246426, 0.0379564352, 0.0241938364, -0.00242692069, 0.00596555183, -0.00541911786, 0.00875801779, -0.0438353121, 0.00601831079, -0.0325297825, -0.00638385629, 0.00562261743, 8.86188718e-05, -0.0026643367, 0.0179381091, 0.0100543853, 0.00923285, 0.0074616503, -0.0306003038, 0.0129636759, 0.00109946285, -0.00367618189, 0.0357556269, -0.0147650233, -0.00189179217, 0.00213862956, 0.01753111, 0.00354805239, 0.0312032662, -0.00400215806, -0.0128807686, 0.00668156892, -0.0175160356, -0.0225959886, -0.0154961143, 0.00290363724, -0.0144409314, 0.0102051264, 0.00319758104, -0.0125868246, -0.00366676063, -0.00478600804, -0.0124285473, 0.0189631432, -0.0103106443, 0.00539273815, -0.0157975946, -0.0144032463, 0.0128732314, 0.00836609304, 0.0190837365, -0.036629919, 0.000375437841, 0.0162648913, -0.0136872297, 0.00598062575, -0.0212996211, 0.0122778062, 0.00669664284, 0.0161895212, -0.00498197041, -0.00233836053, -0.0186315142, -0.0179230347, 0.0261986833, 0.0015168254, 0.00537389563, -0.0184054039, -0.00907457247, 0.018043628, 0.00537389563, 0.00754078897, -0.00333890016, -0.000791858241, 0.00677201292, 0.0215106569, 0.0149006899, -0.00866757333, 0.020380104, -0.020711733, -0.0071300217, 0.00778574217, -0.029439602, 0.0137098404, -0.0128883049, 0.0100543853, 0.00073533057, -0.0113281421, 0.013257619, -0.0118934186, -0.00693029026, -0.000524765055, 0.0234702826, 0.00743150245, 0.00729960436, 0.025640944, 0.00733352127, 0.00562261743, 0.00690391101, 0.0124813057, 0.00156393182, 0.0127978614, 0.00693029026, -0.00976044126, 0.00810983405, 0.018737033, 0.00777066825, -0.011614549, 0.0259424243, -0.0220533218, 0.00562638603, 0.00816259347, 0.0171241108, -0.00587887596, -0.0184657, -0.00879570283, 0.0149233006, 0.00159313774, -0.00905196182, -0.00246649, 0.0114336601, 0.000605788, 0.00401346339, -0.0125114545, -0.0022045786, 0.0104312366, -0.00501588732, -0.0175763313, -0.013770137, -0.00427349051, 0.000675505493, 0.0164307058, 0.00960970111, 0.00457874, -0.0253997594, 0.00959462766, -0.0013086152, 0.00426595379, -0.0117803635, 0.0264549423, -0.0188274775, 0.00323149748, 0.0261836089, -0.0122024361, -0.0257012397, -0.00189179217, -0.0153076891, 0.00839624088, -0.0201087706, -0.00166662363, 0.0146218203, -0.0139359515, 0.0142374318, -0.018299887, -0.00195208832, -0.00526460912, -0.00755209476, -0.00933836866, -0.0257615373, -0.022204062, -0.0160237066, 0.00294509088, -0.0140942289, -0.0129636759, 0.0192796979, -0.00111265271, 0.0115391789, -0.0283391979, -0.00188237091, -0.0082078157, 0.0110266609, -0.00776313106, 0.0145539865, 0.00229125423, 0.00692275353, 3.3327764e-05, 0.0167020373, 0.00239111972, 0.000144027756, 0.000464468903, -0.020711733, 0.0114411972, -0.0155413365, 0.0151494117, 0.0174406655, 0.0210885834, 0.0246611312, -0.00923285, -0.00800431613, -0.0152850775, 0.0170336664, 0.014425857, -0.0125717502, 0.00648183795, 0.00954186823, -0.0181340724, 0.00625572726, -0.00909718405, 0.0256107952, -0.00552463625, -0.00683607766, -0.0169884451, 0.00252113328, -0.026515238, 0.00592786679, -0.000602961634, -0.0187219586, -0.00814751908, 0.0255203526, -0.0184355527, 0.00701319752, -0.00263984152, -0.00830579642, 0.000325505069, -0.00651575439, -0.000127187217, -0.0173502211, -0.0146293566, 0.0123381028, -0.00453728624, 0.00115693267, -0.000205266042, -0.0187822562, 0.000316790392, -0.000287348899, 0.0187973287, -0.0034538398, 0.0289421584, 0.016400557, -0.0101297554, 0.020711733, 0.00227806438, 0.0147800976, -0.00305249332, 0.00747672422, 0.00738628, 0.00366676063, 0.0150665045, -0.0324091874, -0.0268619414, -4.59581606e-05, 0.00100901863, -0.000153684567, -0.00388910272, -0.00813998189, -0.00339731202, 0.0179531835, -0.0166869629, 0.00702450331, -0.00131426798, -0.004748323, -0.00139811728, 0.000871939061, -0.0318062268, -0.0107553285, 0.009496646, -0.00529098837, 0.0108759208, -0.0116446968, 0.000956730568, 0.00696420716, -0.00675693899, 0.015450892, -0.015782522, -0.00900674, 0.0233195424, -0.0103181815, 0.0130918045, 0.0222191364, -0.0253997594, -0.0082078157, -0.0036724133, -0.00301103969, -0.00678331871, 0.0188877732, -0.0214352868, -0.0242692064, -0.00307322014, 0.0050874888, -0.00608614413, -0.0393733941, 0.0199580304, 0.00655343942, -0.0232290979, 0.0080796862, -0.00238923542, 0.0318665244, 0.0331327431, 0.00188237091, -0.0100920703, 0.0117502147, -0.00252678618, 0.00921777636, -0.0101146819, -0.0332533345, 0.00465411041, -0.0224452466, 0.00996394083, -0.0163854826, 0.00536635891, -0.0163553338, 0.0200032536, 0.0024947538, -0.0186465885, -0.00284522539, 0.0230632834, 0.00983581226, -0.0143128019, 0.00514778495, 0.0128280092, 0.0214955825, 0.0333437808, -0.00282449857, -0.0288064927, -0.0144484686, 0.00958709, 0.00150834629, 0.00755963149, 0.00493674865, -0.0140490066, -0.018118998, -0.0163553338, -0.00240807817, -0.00431871274, 0.0142977284, -0.0422374643, 0.00658735586, 0.00714886421, 0.0215558782, -0.00998655241, 0.0139284143, -0.00127752498, -0.00249098521, -0.000964267587, -0.00599946827, -0.0190535877, -0.014644431, 0.022098545, -0.0248269457, 0.00828318577, -0.0105593661, -0.00997901522, 0.0154282814, -0.0124059357, -0.0145464502, -1.24095868e-05, 0.000717901217, -0.00272274879, -0.00676070759, 0.00209906022, -0.0215106569, 0.0164759271, 0.0185259972, -0.00542288646, -0.0100317746, -0.00813998189, 0.00772544602, 0.0171994809, 0.0118481964, 0.00713379, 0.00179098453, -0.0112979943, 0.0275854953, -0.000475538895, -0.032469485, 0.00248533254, 0.0046277307, 0.0176517013, 0.0246762056, -0.00066843949, 0.00282073, 0.0135214152, -0.0129259899, 0.00793648232, -0.00914240628, 0.00596932042, 0.00342557579, 0.00388533412, 0.0112301605, -0.0198525116, 0.00754832616, -0.00282073, -0.0148554677, 0.00760108512, 0.00471817469, 0.0163553338, 0.0198826604, -0.0106874956, -0.000212803061, -0.00590902427, -0.0030355351, 0.00848668534, -0.0135666374, -0.00684361486, 0.0361777, 0.002547513, -0.0171241108, 0.0182848126, 0.0141771361, 0.0212393235, -0.0158428177, -0.0272689406, -0.0130315088, 0.0130993417, -0.019942956, 0.0186616629, 0.0130315088, 0.00671925396, -0.00157900585, -0.00801939, 0.00556609, -0.000270626158, -0.00970014557, -0.0265001636, -0.000883244618, -0.00575828366, 0.00213297689, 0.0116220862, 0.00194078276, 0.0119612515, 0.000899731822, 0.00707349367, -0.00656851334, -0.014538913, -0.00972275622, 0.00782342721, -0.0053286734, 0.00465034181, -0.015888039, -0.00911225751, -0.0281884577, 0.0268468671, -0.0245706867, -0.0033294789, 0.00415289821, 0.00169865601, -0.00289233169, -0.00660619838, -0.0067494018, -0.0150137451, -0.00273970701, 0.000612382952, -0.0156468544, -0.00945896097, 0.00578843197, 0.00550956186, -0.000449394865, -0.00927807204, 0.0115994746, 0.00915748, 0.0160237066, 0.0196264014, 0.015450892, -0.00482746167, -0.00083472504, -0.00412651896, -0.0237717628, 0.0147800976, -0.0248872414, -0.00691898493, 0.00344065, 0.0239677262, 0.00347456639, 0.0165663715, 0.00526084052, 0.0254148338, 0.0305550806, 0.000177708818, -0.00824550074, -0.0332533345, -0.00731467828, 0.0224452466, 0.0190535877, 0.00849422254, 0.00419058325, -0.0147122638, 0.00463903602, -0.0107251806, -0.0131747117, 0.000586945505, -0.000750404608, 0.00186164409, -0.0194455124, 0.00745411357, -0.00884846225, 0.014538913, -0.0269373115, -0.0448302, 0.00563392276, -0.00116729608, 0.00028358039, -0.0115391789, -0.0014207284, -0.0118255857, 0.0245556124, 0.00692275353, -0.00673432788, -0.00555478409, 0.0155714843, 0.0121496776, -0.00562638603, 0.00150834629, -0.014244969, -0.00866003707, -0.00460888818, 0.024796797, 0.0254902039, -0.00758978, 0.0132802306, 0.0054605715, 0.023560727, 0.00341050187, -0.00737874303, -0.0161895212, -0.0158729646, 0.00451090699, -0.0111095682, 0.00399462087, 0.00461642491, 0.0273895338, 0.0201690663, -0.0203198083, 0.0127300275, 0.024435021, -0.0191138834, 0.000490377424, -0.00505357236, 0.00538896956, -0.00431117602, -0.00396824116, -0.013295304, 0.00431494415, 0.00492921146, -0.0124586951, -0.00457874, -0.0246611312, 0.00130390457, -0.0111171054, -0.0107854763, 0.0280678645, 0.0175612587, 0.0318966694, 0.00679085543, -0.0110417353, -0.0102804964, -0.00126245094, 0.0105141439, -0.0080796862, -0.00732975267, 0.00302234525, -0.0149308378, -0.0143957091, -0.0129862865, -0.00657228194, -0.016762333, 0.00230821245, 0.00671925396, 0.0048689153, 0.0012228816, -0.00347833498, 0.0205609929, -0.00723553961, -0.00536635891, -0.0075634, 0.0134460451, 0.00754078897, 0.00418304652, 0.00371198263, 0.00413782429, 0.00318250689, 0.0198525116, -0.00645922683, 0.0294546764, -2.72480956e-05, 0.0219176561, 0.0126320468, -0.0181792937, -0.00229879119, 0.00777820544, -0.0506789275, -0.00760485372, -0.00773298321, 0.0103181815, 0.0116371596, -0.0100016268, 0.00348021928, 0.0050874888, -0.00530229416, 0.0174557399, 0.0112678455, -0.0129184537, -0.00296770176, -0.000194078282, -0.00307133584, 0.0119235665, 0.00691898493, -0.014682116, -0.0124134729, -0.0165060759, 0.0409712456, -0.00611629244, -0.000179004244, -0.00489529502, -0.00936097931, -0.0057092933, -0.00801939, 0.000875236525, 0.0134008229, -0.0204856228, 0.0109060686, 0.00489529502, 0.0101975892, 0.00414159289, 0.019249551, 0.00577335758, 0.0108457729, -0.00387402857, -0.0116296224, -0.0112904571, 0.00163270708, 0.00083755143, -0.0168527775, -0.00628210651, 0.0121119926, -0.000683984603, -0.00753702084, 0.00562638603, -0.00234024483, 0.00596932042, 0.0468802676, -0.00797416735, -0.00326729845, -0.0105669033, 0.0141620617, 0.0401271, 0.000219515729, 0.000572813558, 0.0132651562, -0.0146142831, 0.0174557399, 0.00766891846, 0.0171241108, -0.0108759208, 0.0151343374, -0.00444307365, -0.0100845331, 0.00331440475, 0.0100317746, 0.00130578887, 0.0213448424, 0.0135817109, -0.00107119908, -0.0091273319, -0.0186164416, 0.0016515496, -0.0131973233, 0.00530983089, 0.00218385179, -0.0230331346, 0.0206514373, -0.00257766107, -0.00244764751, 0.00744280778, 0.0140866917, -0.0245103911, 0.00182772754, 0.0144183207, -0.00341803883, 0.00299784984, 0.0182848126, -0.0136420075, -0.0129561387, -0.00351790432, -0.0236963928, 0.0116974562, -0.00247402699, -0.0115014939, 0.00368183455, -0.0344894081, -0.0168678518, 0.00471063796, -0.0100242374, 0.00896905456, -0.0311429687, 0.00823042635, 0.00300727133, 0.0101372926, -0.00622557895, -0.00199731044, 0.00755963149, 0.0188425519, 0.00334832142, -0.00252301758, -0.00274912827, -0.00442423113, 0.0121496776, -0.00763877, 0.0115919374, 0.00814751908, 0.0142901912, 0.00473324908, -0.00989610795, 0.00664388388, -0.00290740561, -0.0169432219, 0.00384576479, 0.0108382357, 0.00315424311, 0.0149609856, 0.00316554867, 0.00274724397, 0.00563015416, 0.0161141492, -0.00100619229, 0.0184958484, 0.00703204, -0.0178325903, -0.0213749912, -0.0100619225, -0.00111924752, 0.000181595096, 0.00606730161, 0.00856959261, -0.0258218329, 0.00376851042, 0.011833122, 0.0328614116, 0.00398331555, 0.000126362866, -0.0219930261, 0.00700942939, 0.0188425519, -0.0101975892, -0.011215087, -0.00167698704, 0.0310223773, 0.0104312366, -0.00966999773, -0.00293001672, -0.00804200117, 0.0138455071, -0.000136726259, 0.000984523329, 0.00761615951, 0.000934590527, -0.0113809016, -0.00021986902, -0.0077028349, -0.00298277591, 0.0183903296, -0.0159784835, -0.0266207568, 0.0210885834, 0.00564522855, 0.000830956502, 0.00362907536, 0.00269825337, -0.00853944477, 0.0163854826, -0.00423957407, -0.0230029877, -0.00148856163, -0.0152926147, 0.0212996211, -0.0231235791, -0.00676447619, -0.00797416735, 0.00258142967, 0.00220646267, -0.00576582085, -0.00652705971, -0.0161141492, -0.0198525116, -0.00448075868, -0.00351036736, 0.00608237553, 0.00228937, 0.00620296784, -0.00695290137, -0.0168829262, -2.02263018e-05, -0.0114336601, 0.0080796862, 0.00806461181, 0.0130239716, -0.00963984895, -0.00097510207, 0.0120743066, 0.00232140231, -0.016400557, -0.00356689491, 0.00617658859, 0.0147650233, -0.00544549758, -0.00847914815, 0.00399462087, 0.0162196681, 0.00274912827, -0.00575074693, -0.0196414758, -0.0148554677, -1.39994272e-05, 0.0168226305, -0.0175160356, 0.00401346339, 0.000750875683, -0.0146067459, 0.000345525303, -0.027540274, 0.0332834832, -0.020380104, -0.0049970448, 0.00773298321, -0.00195020414, -0.00915748, 0.000970391382, 0.0126245096, -0.014463543, -0.0312032662, 0.0134686558, -0.000441386772, 0.00122193946, 0.00813244563, -0.00504980376, 0.0231838748, 0.0111095682, -0.0247063544, 0.0122325849, -0.021073509, 0.00357820047, 0.0155111887, -0.0246762056, 0.011795437, 0.00852437, 0.00624442147, -0.0108533101, -0.00757470587, -0.00472948048, -0.00703204, -0.00397200976, 0.0283542722, -0.0228823945, 0.00509502599, -0.00115881697, -0.00547187682, 0.00273217, 0.0230934303, 0.00863742549, 0.00140094373, 0.00442799972, -0.0233496893, -0.00607107, 0.000713190588, -0.0129109165, 0.0376248062, 0.0152850775, -0.0228371732, -0.00693029026, 0.00218573608, -0.00469179545, -0.00449206447, 0.0127149541, 0.012782787, -0.00890875794, 0.00557362661, 0.0114939567, 0.0132726934, -0.0192646254, 0.0166115928, 0.00700566079, -0.0238320585, 0.00368937152, 0.0170638151, 0.0188425519, 0.000805048039, 0.0139660994, -0.00548318261, 0.0146670425, -0.00588641316, 0.0125491396, -0.0179079603, 0.000288291048, -0.0184204783, 0.00533997919, -0.0111095682, 0.00783850159, 0.00363661256, -0.00409260206, -0.00839624088, 0.0157975946, -0.0305249337, -0.00859974, 0.0207569543, -0.00318062259, -0.0194907356, 0.0297260098, -0.0210885834, -0.0128807686, -0.0154810399, 0.0239677262, 0.0142223584, 0.00644415244, -0.00163930201, 0.0118180485, -0.00176177861, 0.0255655739, -0.0132500818, 0.0163704082, 0.00206891214, -0.0241636876, -0.00164307049, -0.0288064927, -0.00636501377, 0.0407300591, 0.0116597712, -0.00686622597, 0.00926299859, 0.000976986252, 0.0161141492, -0.0272237193, 0.00834348146, 0.0104764588, 0.00618035672, -0.000644415268, 0.0179833304, -0.0308565628, -0.0182094425, 0.0378358439, 0.0175009612, 0.00313351629, -0.0332834832, 0.00375155197, 0.00951925665, -0.0014310918, -0.00740889134, 0.0104161622, 0.000416891446, 0.00703957723, 0.004748323, -0.0118255857, 0.0124134729, 0.00371009833, -0.0193550698, 0.01037094, 0.00219138875, -0.00884092506, 0.00423957407, 0.00740512274, -0.00853190757, 0.0159332622, 0.0161744468, -0.0158578921, -0.0206966586, 0.000757941627, -0.00840377808, -0.0168075562, 0.0101448298, 0.00433001854, -0.011870807, 0.00664011529, 0.0110794203, -0.0210885834, 0.00100713433, -0.00476716552, 0.0136872297, -0.0164156314, 0.00435639778, 0.00680216122, -0.0181491449, -0.00214616652, -0.0100845331, 0.00398331555, -0.00430363882, -0.0122778062, 0.00217819889, 0.0103634037, -0.0208775476, 0.0175160356, -0.0109136058, 0.00179381086, 0.0253545381, -0.00618412532, -0.0046201935, 0.00324468734, 0.0159634091, 0.00184185943, 0.0331930369, 0.000333984237, -0.00674563367, -0.0101825148, -0.000610498653, -0.00133782113, 0.00120498112, 0.00980566349, -0.011795437, 0.0129259899, 0.00748049282, 0.00657228194, 0.0179381091, 0.00788372383, -0.0176215544, 0.0235456526, -0.0697626621, 0.00948910881, 0.0180285536, 0.007250614, 0.00902181398, 0.0105442917, 0.0310525242, -0.010664884, 0.0413631685, -0.00357066351, 0.0039154822, 0.0212845467, 0.00771790929, 0.00450337, -0.0328614116, -0.00360646425, 0.0358762182, 0.00134441606, -0.00514778495, -0.0034990618, 0.00653459691, 0.00883338787, 0.00110323133, -0.000544078648, -0.00310902111, 0.012051696, 0.0168226305, -0.0068813, -0.00794401951, -0.0202444382, 0.00869772211, 0.00787618663, 0.00190875051, -0.0192344766, 0.0343386643, 0.0123531772, 0.0129636759, -0.00397954695, -0.0107327178, -0.000863459951, -0.00110888411, 0.00168075564, 0.0145087643, -0.0126772691, -0.0248721689, 0.00516662747, -0.00236474024, -0.0107704028, 0.0131370267, 0.00567537639, -0.0245405398, 0.00639516208, -0.0109437536, 0.0027943505, 0.00284145679, 0.0165512972, -0.0134686558, -0.0140565438, 0.0449507907, -0.0164307058, -0.00316366437, -0.0361475497, 6.60667e-05, -0.016144298, 0.0252640937, -0.00821535289, -0.00689637382, -0.00799677894, -0.0169884451, 0.0034952932, -0.015232319, 0.00315235881, 0.00146123988, -0.000852154393, -0.00481238775, 0.00609744946, 0.0146368938, 0.0086525, 0.00886353664, 0.00351978862, 0.00297712325, 0.0157975946, 0.0301028602, 0.014538913, 0.00791387167, -0.016144298, -0.0161744468, 0.00276043382, 0.0247365013, -0.00768776098, 0.0110869575, -0.00148573518, -0.0163704082, -0.00910472125, 0.000447981671, -0.00452221232, -0.00743903918, -0.0110568097, 0.0169733707, 0.00701696612, 0.00556609, 0.000700942939, 0.0184958484, 0.00898412894, 0.0402476899, -0.0199731048, 0.023048209, 0.00242503639, -0.000734388421, 0.0235155039, 0.0150815779, 0.00550579373, 0.0174708143, -0.00701696612, 0.0183451083, 0.00046941507, -0.00522315549, 0.000453869958, -0.00727699324, -0.0186767373, -0.0231386535, 0.00875801779, -0.0131671755, -0.019249551, 0.00205572229, 0.00640646741, -0.00247591129, 0.00970768277, -0.009496646, -0.00727322511, -0.0126245096, 0.0182546638, -0.00394186191, 0.00778574217, 0.0202293638, -0.00763123343, 0.00666649453, 0.00885599945, -0.0224301741, -0.00177025772, -0.000764536555, 0.0150740417, 0.0166115928, 0.0148780784, -0.0123757878, -0.0227618031, 0.00803446397, -0.0238622073, 0.0126998797, -0.00196904666, 0.00103068759, -0.0178476647, 0.00559623772, -0.00948157161, -0.00330121513, 0.00682100374, -0.0212845467, 0.00997147802, -0.00158560066, -0.00605222769, 0.0208473988, 0.0127903242, 0.0138455071, -0.0307359695, 0.0202293638, 0.00922531355, 0.00283203553, 0.0230632834, 0.0073372894, -0.00981320068, -0.00976797845, -0.00589395, -0.00364980218, -0.0127752498, 0.00151305692, -0.0239677262, -0.00547941402, -0.0103181815, 0.0189028475, 0.00226299046, 0.0172899254, -0.0124888429, 0.00446191616, -0.00726568792, 0.0269976072, -0.0281583089, -0.00192476669, -0.0144409314, 0.015782522, 0.00451467512, 0.012564213, 0.0299671944, 0.00489152642, -0.000175000197, -0.00335020572, -0.00752194645, -0.00528722, -0.0102503477, 0.0041679726, -0.00578089477, 0.0258067586, -0.00288291043, 0.00496689649, 0.00267564226, 0.0164307058, -0.0261836089, -0.000506393553, -0.00963984895, -0.0211036578, 0.0185109228, 0.0312937088, -0.001579948, -0.0197168458, 0.0147122638, 0.00289798435, 0.0340070352, -0.0136118596, -0.0107101062, -0.0089992024, 0.0135440258, 0.0199128091, 0.00575451506, 0.0115241045, 0.0277663842, 0.0175461844, -0.0174406655, 0.0259725731, 0.00150834629, -0.00143391814, 0.0132500818, 0.00331440475, 0.00263984152, 0.00498573901, -0.00275478093, -8.69701544e-05, 0.00295451214, 0.00245895307, 0.00480108196, -0.00860727765, 0.0133028412, 0.00584119093, 0.00679085543, -0.00540027535, -0.00934590586, -0.00854698103, 0.00589395, 0.00405491702, 0.0236813184, 0.008328408, -0.000409354427, 0.00415289821, -0.00856959261, -0.018375257, 0.0193399955, 0.0152624669, -0.00214239815, -0.0359365158, 0.0331628919, 0.002620999, 0.00996394083, -0.0140942289, -0.00212355563, 0.0228823945, -0.00918762852, 0.0190234408, -0.0112226233, -0.00344065, -0.0135666374, -0.0101448298, 0.00473701768, -0.00507618347, 0.00896905456, -0.00186823902, 0.00047035719, -0.00762369623, 0.00951925665, -0.00658735586, 0.027721161, -0.0202896595, -0.00597685715, 0.01037094, 0.00480861915, -0.013476193, -0.0225658398, 0.00751817785, -0.00133687898, -0.0171693321, -0.00938359089, -0.0101825148, -0.00231386535, 0.014388172, -0.00400969479, 0.0214805081, 0.0247063544, -0.0172899254, -0.0181491449, -0.00635370845, -0.00723553961, -0.0072468454, -0.00988857076, 0.000429845706, -0.0272990894, -0.00163270708, -0.0123908622, 0.0259574987, -0.0221286919, -0.000766420795, -0.0165663715, -0.00098734966, -0.0199881792, -0.00305437762, -0.0138530442, -0.00323149748, 0.00344630261, -0.0162045937, 0.030389268, -0.0172597766, 0.00343688135, 0.0209981389, -0.0239827987, -0.0148479305, 0.00728076184, -0.00681723515, -0.00588264456, -0.00813244563, -0.000512517407, 0.0400065072, 0.0147650233, -0.0171241108, -0.0369314, -0.0136420075, 0.00563769136, -0.00529475696, 0.00335585838, -0.0170487408, -0.0220231749, -0.00850929599, -0.00222718948, -0.00276797079, -0.00607860694, -0.0253243893, -0.00931575708, 0.00338412216, -0.00302046095, 0.0148931528, -0.0200032536, -0.000688695232, -0.00983581226, 0.0375343636, -0.0115768639, 0.00902935, -0.0137475254, -0.000691050605, 0.0113733644, -0.0017476466, 0.0105442917, -0.0124511579, -0.0158126689, 0.0130993417, -0.00812490843, -0.00398331555, 0.00368371885, -0.0102051264, -0.0271634217, 0.00425841659, 0.00113243738, -0.00189744495, 0.0197469946, -0.0127752498, -0.00537389563, -0.0112376977, -0.0171090364, 0.000458345079, 0.0610800162, 0.0155413365, 0.0189631432, -0.0361777, 0.00321642356, -0.00285276235, 0.0153604476, 0.0366902165, 0.000866757357, 0.00716770673, 0.00735990051, 0.0156770032, -0.0141168395, 0.0135741737, 0.00836609304, 0.00448075868, -0.0024212678, 0.00354428403, 0.00218762015, 0.00587887596, -0.00294697494, -0.018224515, 0.00396070443, -0.0142148212, -0.00585626485, -0.00339542772, -0.00417174073, -0.0130691938, -0.0242842808, 0.00507618347, 0.0131596383, 0.0161744468, 0.0285200868, -0.000888426322, -0.0158277433, 0.00424334267, -0.0032522243, 0.0274196807, 0.00813244563, -0.0265303124, 0.0324393362, 0.0237868372, 0.00190592406, -9.86878658e-05, 0.00557362661, -0.0061690514, 0.0200334, -0.0263644978, 0.00918009132, -0.00644038431, 0.0215408057, -0.0186013673, -0.0214955825, -0.0145916715, -0.00412651896, 0.00387402857, 0.0198223647, 0.000690108456, -0.00515532214, 0.00740889134, 0.00634240266, 0.000240595837, -0.00400969479, 0.00685115159, -0.0210282877, -0.0377152525, 0.00165249174, -0.000904442451, -0.00328802527, -0.00789879728, -0.0250379816, -0.00426972238, 0.0156770032, -0.0107854763, -0.0136118596, 0.0208021775, -0.00408506533, -0.00605976442, 0.0202595107, -0.0165663715, -0.0318665244, 0.0138756549, -0.00398708368, -0.00979812723, 0.00234778202, -0.0278266799, -0.0033275946, -0.0170487408, -0.00948910881, 0.000233529878, 0.0047445544, 0.0306153782, -0.00433001854, -0.010883458, 0.0154810399, 0.00694536464, 0.00627080118, 0.0151117267, 0.0137927476, 0.0036724133, 0.0170487408, -0.00527591445, 0.0112603083, -0.00823042635, -0.00237793, 0.0216764715, 0.00276797079, 0.00556232128, 0.000355182099, 0.00134724239, -0.0108985314, -0.0273744594, 0.00980566349, -0.00158183218, 0.00132463139, 0.00951925665, 0.00557362661, 0.0197771415, 0.0142148212, -0.00298466021, 0.00649314327, -0.0088710729, -0.0216312483, -0.0149986707, -0.00289798435, 0.00252678618, 0.0196716245, 0.0145765981, 0.0154961143, 0.00553971, 0.00552463625, -0.0131973233, 0.0128506199, -0.00156298967, 0.00793648232, 0.0271182, -0.00868264772, 0.000881831395, 0.0107628657, 0.0155413365, 0.00302988221, 0.0107251806, 0.00761239091, 0.00715263234, 0.00884092506, -0.00177967898, 0.0117879, 0.00585626485, 0.0334945209, -0.00346702943, 0.0093760537, -0.00584119093, -0.00813998189, -0.006410236, 0.00250605936, 0.00250229076, 0.0181943681, -0.0257163141, 0.0106422734, -0.00797416735, -0.00804200117, -5.83824694e-05, 0.00420565763, -0.0103860144, 0.00192288239, -0.00354805239, -0.00647430075, -0.016144298, -0.00237793, -0.0054568029, 0.0170336664, 0.00143297599, -0.00168075564, 0.00398708368, 0.00753702084, 0.00797416735, -0.000282167195, 0.0114411972, -0.00412651896, -0.00940620154, -0.00615020888, 0.00097887055, 0.00627833838, 0.048689153, 0.00390040828, 0.00302799814, 0.00660243025, -0.00373647804, 0.0170336664, -0.015450892, -0.0226562843, -0.0210433621, 0.00672679069, -0.00858466607, -0.00446568476, -0.00578089477, 0.0307811927, 0.00393055612, 0.00793648232, -0.0059542465, 0.0360269584, -0.00939112809, 0.000933648436, -0.00472571189, 0.00729960436, 0.0162799638, -0.00217066193, -0.00148385088, -0.0133028412, 0.00496689649, 0.00995640457]
24 Nov, 2021
jQWidgets jqxScrollBar max Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The max property is used for setting or getting the maximum value for the specified jqxScrollBar. Syntax: For setting the max property. $('#jqxScrollBar').jqxScrollBar({ max: 200 }); For getting the max property. var max = $('#jqxScrollBar').jqxScrollBar('max'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar max property. In the below example, the value for the max property has been set to 200. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar max Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin:28px;" id="button_for_max" value="Value of the max property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 200, height: 20, max: 200 }); $("#button_for_max").jqxButton({ width: 250 }); $("#button_for_max").jqxButton() .click(function () { var Value_of_max = $('#jqx_Scroll_Bar').jqxScrollBar('max'); $("#log").html((Value_of_max)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollbar/jquery-scrollbar-api.htm?search= 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 max Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-max-property?ref=asr10
PHP
jQWidgets jqxScrollBar max Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollBar max Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.034974236, 0.0190453753, -0.0105326697, 0.0524613522, 0.0803945661, 0.00807264168, -0.0195503663, 0.0286690611, -0.0196225084, -0.00892391242, -0.0082962811, 0.0232151579, 0.0231141597, -0.0262739602, 0.0343682468, 0.00774079096, -0.0429386646, -0.0144211007, -0.0298088975, 0.0240087155, -0.00582182501, -0.00330949458, -0.0448432, 0.0325502791, -0.0633691549, 0.022335032, 0.00520862173, 0.0109871617, -0.0138295395, 0.0157701485, -0.00509680202, 8.24555609e-05, -0.0119755007, 0.00675245142, -0.0183095317, -0.00236263662, 0.00797164347, 0.00986896735, -0.0197956469, -0.0288566295, -0.00150595536, 0.0104028145, -0.0118889315, 0.015986573, 0.0113839405, 0.00672720186, 0.00955154467, -0.021296192, -0.0284382086, 0.00581821799, -0.0107130241, 0.010684167, -0.0122929243, 0.0302994605, 0.0153950118, -0.0316557214, 0.010208033, 0.0372827649, -0.00269989832, 0.00699051842, 0.0459109, -0.0503836758, -0.0352050886, -0.0214981884, -0.00517255068, -0.0140892491, 0.00289287698, 0.0299820378, -0.0152795855, 0.0301551782, -0.00232295855, 0.0340796784, 0.0171119813, 0.0157990046, 0.00715644425, 0.000116553732, -0.0389853045, 0.00788507424, 0.0143489586, 0.0279187895, -0.0113622975, 0.00474691531, -0.0186125264, -0.00314897974, -0.00140766241, 0.0203439239, 0.00939283241, -0.031540297, 0.0477577224, -0.00249790191, -0.0175592583, 0.0181219634, -0.0121991402, 0.0141902473, 0.0193339419, 0.0198100768, -0.0202284977, 0.0221330356, -0.0358110778, 0.0102441031, 0.0250331257, 0.0151064452, 0.0120404288, -0.0393604413, 0.0175592583, 0.00379464682, 0.0153805837, -0.017934395, 0.0264903866, -0.011607579, 0.0385813117, -0.00140044827, -0.0255669728, -0.00888062734, -0.0447854884, 0.0113911545, -0.0204304941, -0.00160965882, 0.00863534678, -0.0147745945, 0.0114849387, 0.0209787693, -0.0116797211, 0.0132235503, -0.019867789, 0.00225442415, 0.000481995899, 0.0123939225, 0.0472094454, -0.0289143417, -0.0228688791, 0.0236912929, 0.00961647183, -0.0449009165, 0.00355297257, 0.0350319482, 0.0055729365, -0.0117518622, -0.012603133, 0.000741254655, -0.0320885703, -0.0160731431, 0.0131802652, 0.0220176075, -0.0261441059, 0.0270098057, 0.00457377592, 0.0521150716, -0.0404858515, 0.0225947406, -0.00924855, -0.0103883864, 0.0115570799, 0.0183672439, 0.0443814956, -0.0153950118, -0.0297511853, 0.0298954677, -0.0145798121, 0.00447999174, 0.00609596306, -0.0144138867, 0.037831042, 0.0268510934, -0.0103451014, -0.0113262273, 0.0372827649, -0.00908983778, -0.0491139814, 0.0298377555, 0.00813035574, -0.0350608043, -0.0072321929, 0.00185403845, -0.0199832153, -0.000285184651, 0.00341049279, -0.0204016361, 0.0198100768, -0.00135626155, -0.00638092216, -0.0174005479, -0.0173861198, 0.0382638909, -0.0121558551, -0.0277456492, 0.0108068073, -0.0176891144, -0.0622726046, -0.031540297, -0.0161452834, 0.0236047227, 0.02037278, 0.0131586231, 0.0111025879, -0.0175592583, -0.0215703305, 0.00631960202, -0.0245137066, -0.0176314, -0.00331129832, -0.00162769423, -0.00477577234, 0.0191463735, 0.0073692617, 0.0123650655, 0.000523026392, -0.0298666116, 0.0376867577, -0.00213719415, -0.00267645228, -0.0093134772, 0.0318288617, -0.0234315824, -0.00650356291, 0.0279765017, -0.0188289508, -0.00912590884, -0.037311621, -0.0336756855, 0.0210797675, 0.000785441371, -0.00907541, 0.0332716927, -0.0885321423, -0.00849827752, -0.016938841, -0.0372539088, -0.0209787693, 0.011650864, -0.0218877532, -0.0214693323, -0.0180642493, 0.011145873, 0.0282217842, 0.0468920209, -0.0297511853, 0.0392450169, 0.00571722, 0.0308765937, -0.0053853686, 0.00937119, -0.00722858543, 0.0231863018, 0.0103667444, 0.0076542208, -0.0145942401, -0.0308765937, 0.000411432411, -0.0259998236, -0.033964254, -0.0115354378, 0.0100853918, 0.006056285, 0.00193159061, 0.0216424726, -0.000686697604, -0.00463870307, 0.00884455722, -0.014045964, 0.0233882982, 0.0239798594, 0.00553686591, 0.0281784981, 0.0318865739, 0.0563569963, 0.0379176103, -0.0128123434, 0.00508598099, -0.0329542719, 0.0188145228, -0.0108717354, 0.0586655289, 0.0144932419, -0.0122857103, 0.0125670619, -0.0430540927, -0.0158567186, 0.0135193309, -0.0347722396, 0.0231430158, -0.00162589073, 0.045045197, 0.0578286834, 0.0257834, 0.0010658917, 0.0306168832, -0.0310785901, -0.0180065371, 0.0173861198, -0.0215559024, -0.0207334887, 0.0213683341, 0.0221618917, 0.0349453799, -0.0229698773, -0.0133173345, 0.00084360555, -0.00650356291, 0.026649097, -0.0221330356, -0.021353906, -0.0290153399, -0.0526344925, 0.0205603484, 0.0284959208, 0.0159577169, -0.0107635232, 0.0010072767, -0.00942890346, 0.0477865785, -0.00208489154, -0.0144932419, -0.0311940163, -0.029578045, -0.0122496393, 0.0467477404, 0.0246579889, -0.0104533136, -0.00231033377, 0.0139233237, -0.00388482376, -0.0326079912, 0.0480174311, 0.0337911136, -0.0397067219, -0.0338199697, -0.0125670619, 0.000868404168, -0.00757486513, -0.0274570826, 0.0089166984, 0.00769029185, -0.0305880271, 0.000954072282, -0.047469154, -0.00287123467, -0.0268222373, -0.0257256851, 0.046026323, -0.0103018163, 0.016448278, -0.0147601655, 0.00549358083, 0.0309054498, -0.0426789559, -0.0274426546, -0.00135085091, 0.0470651612, 0.0194349401, 0.00132199435, 0.0255814027, 0.020863343, 0.0350030921, 0.0197667908, 0.00506794546, -0.00753879454, -0.0231718738, -0.0227534529, -0.0166647043, 0.0195792224, 0.0103883864, 0.0165925622, 0.015048732, 0.0307034533, -0.0336468294, -0.0204593502, -0.0131658372, -0.034425959, -0.000903573178, 0.0147313094, -0.030068608, 0.00799328648, 0.0469497368, -0.00957318675, 0.0119538587, -0.005327655, -0.0114055825, -0.0434869416, 0.0175736882, -0.0384658873, 0.0479020029, 0.023244014, 0.0454780497, -0.00930626318, 0.0118672885, -0.034887664, -0.0244848505, 0.0366479196, -0.00142209081, -0.0494025499, 0.0582326762, -0.0161741413, -0.0268799495, 0.00171246065, -0.000572623743, 0.0196513645, 0.00103342801, -0.00266563124, -0.00541422516, 0.00423110323, -0.0163039956, 0.00248888438, -0.0149621619, 0.01403875, 0.0130648389, -0.0126247751, -0.00206324901, 0.0115715079, -0.000128389453, 0.00263497094, -0.0309631638, -0.0089166984, 0.0227678809, 0.0162462816, 0.00944333151, 0.0397932902, 0.0236335788, 0.019406084, -0.0321174301, 0.00897441152, -0.0211374816, -0.0338488258, 0.0162895676, -0.0487677045, 0.00536011904, -0.0706987455, 0.0119394306, 0.00761093618, 0.0153517267, -0.0200120732, 0.0252784081, -0.00753879454, 0.0152795855, 0.0220608935, 0.0132668354, 0.0261441059, 0.0103162453, -0.00699773245, -0.0413515493, -0.00723940693, -0.00604546396, 0.0417844, 0.0115715079, -0.0172274075, 0.00340688578, -0.0244559925, -0.0207912, 0.0239942875, 0.0201275, -0.0305014569, -0.076123789, -0.00189551979, -0.0108284503, 0.028120786, -0.016448278, 0.0203872081, 0.00577493291, 0.0322905667, -0.0211951938, -0.0401684269, 0.00921969302, -0.00761093618, -0.000301416498, 0.0207046308, -0.0357822217, -0.0110520888, 0.0141036771, -0.0267500952, 0.0198245049, -0.0307900235, -0.000406021805, 0.0214116182, 0.0427943803, 0.0108212363, 0.0239510015, -0.00527354889, 0.0139810368, 0.0108140223, -0.00604907097, 0.0420152508, 0.00779850408, 0.0122857103, 0.0319154337, 0.00631599454, 0.00219671102, 0.00217146147, -0.00142118905, -0.00530240545, 0.000330949464, 0.0193339419, 0.00850549154, -0.0205314923, 0.00899605453, 0.000849016127, 0.0248167012, -0.022291746, 0.0203439239, -0.00897441152, 0.00225262064, 0.0171985514, 0.025711257, -0.00844777841, 0.0191463735, 0.0474114418, 0.0174582601, -0.0384081751, 0.00592643, 0.000386633736, -0.0241241418, 0.0170398392, -0.0149188777, -0.0342239626, 0.0156835783, -0.0143128885, -0.0462283194, -0.0181941055, -0.00862813182, 0.0159721449, -0.0312517285, 0.0244415645, 0.0170254111, 0.00727547752, 5.10908867e-05, 0.0397644341, 0.00967418496, -0.00712037319, -0.0340508223, -0.0217578989, 0.0232584439, -0.0143128885, 0.00404353533, 0.0154815819, -0.009688613, -0.0162029974, 0.0365613475, -0.0201563556, -0.0099338945, -0.00718890782, 0.0410629846, -0.00295419735, 0.00873634499, -0.0249898415, -0.0115426518, 0.0298954677, -0.00241493923, 0.00688952, 0.0149765909, 0.0403704233, 0.0331851244, 0.032204, -0.0139954649, 0.00803657155, -0.00325178145, -0.00940004736, -0.0026133284, -0.0101647479, -0.0426501, -0.0216857567, -0.0217290428, 0.00149513409, 0.0121630691, -0.0119033596, 0.0188000947, -0.00424553175, -0.0173572619, -0.00677409396, 0.00967418496, -0.0546833128, -0.00376939727, 0.00982568227, 0.0191175174, 0.0144932419, 0.0190309472, -0.000619515777, 0.0365902074, 0.041264981, -0.00999160763, 0.0226235967, 0.0191896576, -0.00540340366, -0.04169783, 0.0375424735, -0.00238788617, 0.00089726079, 0.0151353022, -0.00590478769, -0.0124516357, -0.0434580855, -0.00604185695, -0.0180209652, 0.0214837603, -0.0136996852, -0.00911148079, -0.000981125399, 0.0219166093, -0.0154527249, 0.0082962811, 0.0282217842, -0.0294770468, 0.0241674278, 0.0137501843, 0.0120692849, 0.0167368446, -0.0255236886, -0.00783457514, 0.00110917666, 0.0188000947, 0.0119466446, -0.0123939225, -0.00519419322, 0.00326079922, 0.0372250527, 0.00766143529, -0.0258122552, -0.00533847651, -0.00638813619, 0.0086714169, 0.00363773876, -0.00297403638, -0.00108212361, -0.0166502744, -0.00370086264, -0.00562704261, 0.0234748684, 0.0023464046, -0.0337622575, -0.0117230052, 0.00248167012, -0.03982215, -0.0156835783, 0.00529879844, 0.00259168609, -0.00415535457, 0.0204449221, 0.0108645214, -0.0154815819, 0.0129854828, -0.0403415672, 0.0238932893, -0.00112721208, 0.0288277734, -0.0266202409, 0.0663702488, -0.0093423333, 0.0233017281, -0.01747269, 0.0180209652, 0.0134111186, 0.0114344396, -0.032204, 0.0134832598, 0.00787786, 0.00841892138, -0.0130504109, 0.0208777711, 0.0100926058, -0.000633042306, -0.00463509606, 0.0357822217, -0.0192906559, -0.00557654351, 0.038754452, 0.0160875712, 0.0221186057, -0.00259168609, 0.0541638918, 0.036763344, 0.0200265013, -0.00285500288, 0.00914755184, -0.00495612621, 0.0375136174, 0.0232151579, -0.00735844066, 0.00509319501, -0.0347145237, 0.00179452158, 0.0262739602, 0.0015636686, 0.0356379375, 0.0048443065, 0.00994832255, 0.0264615286, 0.0088878423, -0.0205747765, -0.00949383061, 0.0139377518, 0.0248599853, 0.0160731431, 0.0228544511, 1.88948925e-05, 0.00858484767, 0.00863534678, 0.00621860381, -0.0134832598, 0.0361573547, 0.00381628913, -0.0120043578, -0.0213683341, 0.0189732332, -0.0195792224, -0.0352050886, 0.018439386, 0.00628713798, 0.0128628425, 0.00884455722, 0.0308477376, 0.00139233237, -0.00494891172, 0.0350030921, 0.015005447, -0.00724662095, 0.0558952913, 0.0127402022, -0.0220031794, -0.00402189279, -0.0108284503, -0.00283516385, -0.00560179306, 0.0427655242, 0.00966697093, -0.0138151115, -0.0333582647, -0.0138439676, -0.0105038127, 0.0328099877, -0.011153087, 0.0134399747, -0.00782014616, -0.00350247347, 0.0365324914, 0.0276879352, -0.00725744246, -0.00413731905, 0.0238788612, 0.0158278607, 0.0146519532, 0.000796262641, 0.00393532263, -0.02131062, -0.0293471925, 0.0300397519, 0.0163761377, -0.0038090751, -0.0649851263, 0.029578045, -0.0096092578, 0.0167512726, -0.0086425608, 0.012119784, -0.0165925622, 0.0326657034, -0.0308765937, -0.00368102384, 0.00849827752, 0.0030083037, 0.000476134388, 0.0225803126, 0.00978239719, 0.000318324688, 0.00363773876, -0.0289720558, 0.00356559735, 0.00856320467, 0.0204593502, -0.0396490097, -0.010662525, 0.0240231436, -0.0514513701, -0.0102873882, -0.00547915231, 0.0319731459, -0.00245281355, -0.00948661659, -0.003394261, -0.0227534529, 0.00932790525, 0.0182518177, 0.0118745025, -0.0153517267, 0.0141469622, 0.00612121262, 0.00817364, -0.00286402041, -0.00798607245, -0.00882291421, 0.0233017281, 0.0184971, 0.0243117101, 0.0186990965, -0.00533126248, -0.00325538847, 0.000706536521, 0.00385236, -0.0323771387, -0.0114127966, 0.0281929262, 0.0184538141, -0.0280630719, 0.01018639, -0.00542865321, 0.022291746, 0.0232584439, 0.0147240954, -0.0350896604, -0.0253794063, 0.0317711495, -0.0378598981, 0.00642781425, -0.0346279554, -0.00978239719, -0.018424958, -0.00718890782, -0.0328099877, -0.019420512, 0.013598687, -0.00802214257, 0.026158534, 0.0134544037, -0.0249321274, 0.0205026343, 0.0332428366, -0.00371529092, -0.0207190607, 0.0351185165, -0.0219310392, 0.0129349837, 0.0302706044, 0.0139016816, -0.0133029064, 0.00466755964, -0.0649274141, 0.0152507285, 0.00518697919, -0.00778407557, 0.0355225094, 0.0141397482, -0.00203980296, 0.0362150706, 0.000997357303, 0.013072053, -0.0165348481, 0.0145004559, 0.0170542672, 0.0247878451, 0.00142028718, 0.0267645232, 0.0140171079, -0.00362691749, 0.0231141597, 0.0342528187, 0.0378598981, 0.0302417483, -0.0169099849, 0.0255669728, -0.0312805846, 0.0157845765, 0.0353493728, -0.00786343124, -0.0219310392, -0.0138800386, -0.00641338574, -0.00260070362, 0.0132235503, -0.0141325342, -0.0213827621, -0.0480462871, -0.00618253276, -0.0286834892, -0.00174672785, 0.0278177913, 0.0230131615, -0.00851270556, 0.00369004137, 0.0064206, -0.047555726, 0.0260431077, 0.0115498658, -0.0121991402, 0.0383504592, 0.000881028944, -0.0221618917, -0.00699051842, -0.0269809477, 0.0391007327, -0.0466900244, -0.0231141597, 0.0215414744, 0.0136852562, 0.000973911257, -0.0132307643, -0.0038559672, -0.0485079922, -0.0231430158, 0.0307034533, -0.013577044, -0.019867789, -0.00906819571, 0.012610347, 0.0122135682, -0.0187856648, 0.0060671065, -0.020848915, 0.00296501862, -0.0157845765, 0.00194060837, 0.0239077173, 0.00366298831, -0.019867789, 0.0439486466, 0.0413804054, 0.0115715079, -0.0226813108, 0.021339478, -0.00541422516, -0.0289864838, -0.00219130027, -0.00744501036, 0.00453409785, -0.0166069902, -0.00767586334, 0.014074821, 0.0264471, -0.0167801306, -0.00910426676, -0.0272118021, -0.00113983685, -0.0162895676, 0.00717447931, -0.0115498658, 0.00355657958, 0.0233450122, 0.00637731515, -0.0414669774, -0.00262054265, 0.0134399747, 0.00338524324, -0.0375424735, 0.0137213273, 0.0521439277, -0.00112270319, -2.40237068e-06, 0.00143291196, -0.00700494694, -0.0280630719, -0.0619263276, 0.0171119813, -0.0203872081, 0.0196946487, 0.0135481879, 0.0095587587, 0.0193483699, 0.0096309, 0.00497055426, -0.0399375744, -0.00188109151, 0.00657931156, -0.0237057209, -0.0102513172, -0.00685344962, -0.0302706044, 0.0054755453, 0.00152308901, 0.0119899297, -0.000994651928, 0.00923412107, -0.00371168391, 0.0163472798, -0.0359553583, -0.000944152824, 0.0205026343, 0.0408898443, 0.0355513692, 0.000450208492, 0.0195215102, 0.00843335, -0.028640205, 0.037398193, -0.0236335788, 0.0230275895, -0.015019876, 0.0435157977, -0.00213899766, 0.00543226069, 0.011167516, 0.0277312212, -0.0207046308, 6.90981e-05, 0.0258699674, 0.01018639, -0.0313094445, 0.0243549943, -0.0027612187, 0.00932069123, 0.0330408402, 0.0225658845, -0.0260719638, -0.00703741051, -0.0205026343, 0.0117157912, -0.00337081496, 0.013093696, 0.021844469, 0.0290441979, -0.0032247284, -0.00133732439, 0.0347433835, -0.0203439239, -0.000164685684, -0.0335891172, -0.0340796784, 0.0231430158, 0.0222051758, 0.0302706044, -0.00389564503, 0.0252784081, -0.00725383498, 0.0224793144, 0.00475413, 0.0317134373, -0.00991946645, 0.0286979172, -0.0238788612, 0.00164302438, 0.000259484223, 0.00211735512, 0.00101449084, -0.000192640538, 0.0139377518, 0.00888062734, -0.0109366626, -0.0246868469, 0.022796737, 0.00566672068, -0.00933511928, -0.0115570799, -0.018439386, -0.000426987943, -0.0216713287, 0.0335025452, -0.000173590655, -0.00101899973, 0.00845499244, 0.0119899297, -0.00454131188, 0.00823135395, 0.0107779512, -0.0033924575, -0.015034304, -0.010648096, 0.0110015897, 0.0145942401, -0.0104965987, 0.000173703389, -0.00426717428, -0.011145873, -0.0272406582, 0.0195792224, 0.0259421095, 0.00111188204, -0.02620182, -0.00529879844, -0.00139954651, -0.0101575339, 0.0204882063, 0.00852713361, 0.00846220646, -0.00631960202, 0.0195070822, -0.0263605304, 0.0203439239, -0.000554137456, 0.00491284113, 0.0105543118, 0.00111548905, 0.00791393, 0.00148792, 0.00120205898, -0.0343105309, 0.00672359485, -0.00937119, -0.00846220646, -0.00264218519, -0.00367922033, -0.00821692497, 0.0202717818, 0.00267645228, -0.0201130714, -0.0113911545, -0.0047938074, -0.0115210088, -0.000289468066, 0.0038776095, 0.00448359875, -0.0382350348, 0.000173365217, 0.0809139907, 0.00577854, 0.00480823591, -0.00652159844, -0.0247589871, -0.0443526395, -0.000352141069, 0.0134544037, 0.0330119841, -0.00490562711, 0.0032752275, 0.0240808576, 0.0133245485, -0.0102585321, -0.0152507285, -0.023272872, -0.00453770487, -0.00647109933, 0.0204593502, -0.0318577178, -0.00813035574, 0.0258122552, -0.0117662903, -0.00686787767, 0.0201419275, 0.0152795855, -0.0408321321, -0.00561261456, -0.0442372113, 0.0129061276, 0.0136636142, 0.0153950118, 0.0224648863, -0.00523026427, -0.00157268625, 0.0227534529, -0.00919805095, 0.00250691967, -0.0270530898, -0.00169171987, -0.0272983722, 0.00500662532, 0.0126536321, 0.0123722795, -0.00166737207, -0.0156114362, -0.0301263202, -0.0056054, 0.00147168804, 0.00942890346, -0.0242539961, -0.000726826373, -0.0148900207, 0.00424192473, 0.00050859811, -0.00203619595, -0.014572598, -0.0283516385, 0.0207912, -0.0331851244, -0.0120692849, -0.00263497094, -0.019420512, -0.00386318122, 0.0154094398, -0.000548275944, -0.00556572247, 0.017443832, 0.00118402357, 0.0328677, 0.048104, 0.0198245049, 0.00258988258, -0.0160731431, -0.0286546331, 0.00447999174, -0.00678130798, 0.0045088483, 0.0182518177, -0.0250475537, -0.0253794063, -0.0148755927, -0.0250764117, 0.0302128904, -0.0245569907, 0.000559548091, -0.0254371185, -0.0117518622, -0.00797885843, 0.0127185592, -0.0238788612, 0.00233377982, -0.0253361203, 0.00426717428, -0.00228147721, -0.00799328648, 0.0250331257, -0.0116652921, -0.0249032713, 0.00710955216, 0.0144932419, 0.00275580818, -0.000910787378, 0.0030768381, 0.0100204647, -0.0214260481, 0.0135265449, 0.0112396572, -0.0245714206, 0.0254226904, 0.0113695124, 0.000434878428, -0.00109925726, 0.00879405811, 0.00268727355, -0.00313996198, -0.0389564484, 0.00588675216, 0.00884455722, -0.00609596306, -0.0254082624, -0.0093423333, 0.0035421513, 0.0180786774, -0.0167512726, -0.0114921527, 0.000175394205, 0.0180353932, 0.000668662193, -0.0215991866, -0.0282362122, -0.000331625808, -0.0182518177, -0.00375136174, -0.0142551744, -0.00584346754, -0.0202717818, 0.025206266, 0.0159577169, 0.0177179705, -0.0158567186, -0.00550800934, 0.00233558333, 0.00947940256, 0.0257834, 0.0229121633, 0.00960204378, -0.00502105337, 0.0226813108, 0.00362872123, -0.0235037245, -0.0130576249, 0.0178045407, 0.00320128235, 0.0241962839, -0.0170254111, 0.0007989679, -0.00924133509, -0.0230997317, 0.0142046753, 0.00940726139, 0.02422514, 0.0159288589, -0.0170975532, -0.00377661129, -0.0143778156, 0.00496694725, -0.0397644341, 0.00125075458, 0.00658652559, 0.0116725061, 0.0071708723, 0.0108573064, -8.53863166e-05, 0.0199399311, 0.025220694, -0.00387039548, 0.00493809069, 0.0182951037, 0.0149765909, -0.0134039046, 0.000578034378, -0.0210076254, 0.00485152099, -0.00244920631, -0.0233450122, -0.027644651, 0.00159523054, 0.0178766809, 0.000490111823, -0.0269088075, 0.00632681604, 0.0246291328, -0.00968139898, 0.0235470086, 0.0217723269, -0.00680655753, -0.0270242337, -0.00958040077, 0.0138439676, -0.0226668827, 0.0272262301, 0.0246868469, 0.0263461024, -0.00243658153, 0.0167657025, -0.0148755927, 0.0149333058, -0.00222196057, -0.0185403842, 0.0111891581, -0.00914033689, 0.0116869351, -0.00573164783, 0.0147313094, 0.00223278161, 0.0140098939, -0.0238500033, 0.0037080769, 0.0101070348, -0.0039750007, -0.0109366626, -0.0276879352, -0.00082557014, -0.0120332148, -0.0137068992, -0.00261152489, 0.00695444783, -0.00655766902, 0.0225370284, -0.0071708723, 0.0147745945, 0.015524867, 0.0263893884, 0.0239798594, 0.0200697854, 0.00618974678, -0.00708069559, -0.00371889817, 0.0100781778, 0.00253757974, 0.0194782242, 0.00114434573, 0.0267212391, 0.00361248921, -0.000112946647, 0.0169099849, -0.00633403, -0.0228833072, 0.0083756363, 0.0280197877, 0.0224504583, 0.0118167894, -0.0304148868, 0.0111891581, 0.0105759548, -0.011636436, -0.00488037756, -0.0167657025, -0.0400241464, 0.00827463809, 0.00853434857, -0.00710233767, 0.00753158, -0.0282073542, -0.00831070915, 0.00221654982, -0.000766955083, -0.0277023651, -0.0212817639, -0.0109799476, 0.00157268625, 0.00348984869, -0.00656849, 0.020848915, -0.0192040876, 0.00950826, 0.0203294959, -0.0138800386, -0.0196225084, -0.0145870261, 0.0164049938, -0.00245642057, -0.000419322896, -0.0186125264, 0.0310785901, 0.0139738228, 0.0444969237, 0.00337983272, 0.00782736111, 0.0222196039, 0.022306174, -0.018439386, -0.0052771559, 0.00758929364, 0.0310785901, -0.0145870261, -0.031540297, -0.00344476, -0.0117013631, 0.0133101204, -0.0298954677, 0.00219671102, -0.0116003649, -0.00787064526, -0.00612121262, -9.5362142e-05, -0.0127257733, 0.0294481907, -0.00482987845, -0.00995553751, -0.0245137066, -0.0102657462, 0.0151497303, -0.00976075511, -0.00961647183, 0.00477577234, -0.011138659, -0.0178911109, -0.0117662903, 0.00674523693, -0.0193195138, -0.052317068, 0.00845499244, 0.0138944667, -0.00183690479, 0.00602742843, -0.0418709703, 0.00189551979, -0.0178045407, -0.00888062734, -0.0111963721, -0.0305014569, 0.0197956469, -0.0172274075, 0.0192185156, 0.0022093358, -0.0334736891, -0.00900326855, 0.0102946023, 0.00587232411, -0.00898162555, -0.0152795855, 0.0252784081, -0.00503908889, -0.00880127214, -0.00152489252, 0.00140044827, -0.0299820378, 7.90175691e-05, -0.00233738706, -0.000505441916, 0.0222196039, -0.00489119859, 0.0129854828, 0.0408609882, 0.00301551772, -0.0136636142, 0.00506433845, -0.00695444783, -0.0157557204, -0.0124877067, 0.0206324905, 0.00619696127, -0.000208534242, -0.0204882063, -0.00618974678, -0.00137880584, -0.00323915668, 0.0159577169, -0.00283336034, -0.00977518316, 0.00686066365, 0.00425274577, 0.00138331472, 0.0060166074, 0.0255958308, 0.00476134382, 0.0100565357, 0.0132812634, -0.0371961966, -0.0139233237, 0.00225262064, 0.0123794936, 0.0227245949, 0.015005447, 0.00325538847, -0.013584258, -0.0162751395, 0.00623663887, 0.0276013669, 0.0129061276, 0.00817364, -0.00132830674, -0.0182518177, 0.0228544511, -0.0265336707, 0.0320885703, -0.0237922911, -0.0157990046, 0.0120548569, -0.00409042742, -0.00749550946, 0.00653602649, 0.0311074462, 0.00364675652, 0.00113983685, -0.0200265013, 0.0204160661, -0.0212240517, -0.00772636244, 0.0342816748, -0.023763435, 0.0046459171, 0.0352916569, 0.000366794819, -0.00184231543, 0.0367056318, 0.00804378558, -0.00428520935, -0.0117085772, -0.0153805837, -0.00241493923, -0.0104388855, 0.0185836684, -0.0209643412, 0.0133678336, -0.00467477413, -0.00372971944, 0.0126752742, -0.00401467877, -0.00437538652, 0.0092629781, 0.00828906707, 0.0228111651, -0.0051978, -0.0234460104, 0.0112685142, -0.0108428784, 0.0274715107, -0.0499219671, 0.00994832255, 0.0101358909, 0.0146519532, 0.00820971094, 0.00303355325, 0.0170254111, -0.00410846248, 0.00490202, -0.000208646961, -0.00406157039, -0.00221654982, -0.0112540852, 0.00916198, -0.00952990167, 0.000190160674, -0.0180786774, 0.0124083506, 0.0295059029, 0.0116797211, 0.0239798594, -0.000117906384, -0.0171552654, 0.00715644425, 0.00679212902, 0.0104172435, -0.0132740494, 0.00104785641, -0.00876520108, 0.00017663413, 0.008051, -0.0172706936, 0.00853434857, 0.00613924768, 0.00800771452, 0.00240772497, -0.0209931973, 0.00248347363, -0.0187568087, -0.00758929364, -0.00263677444, 0.0114488676, 0.0119682867, 0.00611399813, 0.0271829441, 0.01403875, -0.005327655, 0.0138295395, -0.00177738804, -0.0149765909, 0.01549601, 0.00577493291, -0.0106048109, 0.0205892045, 0.0175159741, 0.00626188843, -0.00617171172, 0.0324348509, -0.0215414744, 0.00372250518, 0.000227133234, -0.000472076412, -0.0166214183, -0.0229843054, 0.000929724541, -0.00149333058, -0.00658652559, -0.0195936505, 0.00515812263, 0.0103523154, -0.00518337218, -0.00711676618, -0.0248167012, 0.0246724188, 0.0181652475, -0.00535290455, -0.0324348509, -0.00795721542, -0.00144192972, 0.0173716918, 0.0217146128, 0.0218733251, 0.0112180151, -0.0292029083, 0.0142912455, -0.00270350557, -0.0107130241, 0.00546111725, 0.00897441152, -0.0190598033, -0.00424913876, 0.027197374, -0.00490202, -0.0075676511, 0.00973911211, -0.0160298571, 0.0149621619, -0.0202862099, 0.00486594904, 0.0104172435, -0.0248311292, -0.00387400249, -0.0100998199, 0.00294517982, -0.00544308173, 0.0186269544, 0.010179176, -0.0283516385, -0.00687509216, -0.0159144308, -0.010150319, 0.00994110852, -0.00967418496, 0.0181363914, 0.00167188095, 0.0181363914, 0.00836120825, 0.0148323076, -0.0246291328, 0.0140098939, 0.00704101752, 0.00889505632, 0.0072321929, 0.00337261846, 0.0221186057, 0.0197667908, 0.000763798889, -0.00213899766, -0.00663702469, -0.0242972821, 0.00835399423, -0.0171841234, 0.00365577429, 0.0157990046, 0.0124877067, 0.0296357591, 0.00775521901, -0.00164933677, -0.0210364833, -0.0069833044, 0.00693280529, -0.00102621387, 0.00201094639, 0.00480102189, -0.0148323076, 0.00401828578, 0.00763979275, 0.0147096664, -0.02516298, -0.012134213, 0.0136203291, 0.00440063607, -0.0254082624, 0.00570639828, -0.00612481963, 0.00428881636, -0.0260719638, 0.00460263249, -0.0131369801, 0.000829628087, -0.0051400871, 0.00311290892, 0.00651438395, 0.00934954826, 0.0032463707, -0.0119105736, -0.0139088957, 0.00599857187, -0.00283336034, -0.00976075511, -0.0102946023, -0.0148467356, 0.0112468712, -0.0024455993, 0.0177901126, -0.00381989637, 0.0240808576, 0.00608874857, -0.0134832598, 0.0143633876, 0.00775521901, 0.0256102588, 0.0111170169, -0.0100637497, 0.0299243238, 6.0305847e-05, 0.0118745025, -0.00443309965, -0.0291596241, -0.00230492325, 0.00405435637, 0.0229843054, -0.0067380229, -0.00425996, -0.0151208742, 0.0292173363, -0.00164572964, -0.0012886289, -0.0075676511, -0.0149333058, 0.013584258, 0.0121702831, -0.0272118021, -0.0108068073, -0.00849106349, 0.00822413899, -0.00331310183, -0.00433931546, -0.012126998, 0.00104154402, -0.00203258893, 0.0297511853, -0.00715644425, -0.020805629, 0.0171264093, -0.0350319482, 0.0260863937, 0.016982127, -0.00800771452, 0.0141613912, 0.00408321293, -0.0069364123, -0.00029375148, 0.0195503663, -0.0119827157, -0.0161164273, 0.0119250016, 0.0164338499, -0.00621499633, -0.0261152498, 0.033964254, 0.00325538847, 0.000394524221, 0.0182518177, 0.015019876, 0.0134399747, 0.0336179733, -0.00766864931, -0.0082962811, 0.00897441152, -0.00750993798, 0.00439342204, -0.00726826349, -0.0204593502, 0.00795721542, -0.0306745972, 0.00324997795, -0.0241241418, 0.00546833128, -0.0391873, 0.00665145321, 0.0137357553, -0.00592282321, -0.0152940135, 0.0152795855, 0.00482987845, 0.000425860722, 0.00524469232, 0.0208344869, 0.0129133416, 0.0480462871, 0.0037080769, -0.0223927442, -0.016448278, 0.00626910292, 0.00172598718, 0.0190598033, -0.00761093618, 0.00010708515, -0.0070734811, -0.0139882509, -0.0134832598, -0.00278105773, 0.00501744635, -0.0294193327, 0.00811592676, -0.0113045843, 0.0269088075, -0.0038776095, 0.0107202381, -0.00407960592, 0.0203150678, -0.00631238753, 0.00268727355, -0.0019622508, -0.00851270556, 0.0122712813, -0.00882291421, 0.00851270556, -0.00863534678, -0.0104172435, 0.00318865757, -0.019853361, -0.00292353728, -9.10223753e-06, 0.00784900319, -0.0163039956, 0.00489480561, -0.00547193829, -0.0214404762, 0.0203294959, 0.0352916569, -0.00952990167, -0.0095876148, -0.00483709248, -0.01310091, 0.0302706044, 0.0151208742, 0.0100853918, 0.0086209178, -0.0134255467, -0.00976796914, 0.0175159741, -0.0367344879, 0.00270530907, -0.00607071351, 0.000915296201, 0.00975354109, 0.0109943757, 0.0116797211, 0.0202862099, -0.00752436602, 0.0051400871, -0.0125093488, -0.00184502068, -0.000724121055, 0.000454717345, -0.0181796756, -0.00724662095, 0.00551161636, 0.00214440818, -0.013086481, -0.00105326693, 0.00890227, 0.0137934685, 0.00706626708, -0.00689312723, 0.00393532263, -0.0132596213, -0.00698691141, 0.00662259664, 0.00841892138, -0.0106048109, 0.0336756855, -0.000142705045, -0.0190309472, 0.00670555932, -0.0112901563, 0.0184538141, -0.0115065807, -0.023272872, -0.00258627534, 0.00588675216, -0.0274570826, 0.0395912938, -0.000360482431, 0.0080005005, -0.00392450159, 0.00792114437, 0.00797885843, 0.00515090814, -0.0271108039, -0.00668391678, -0.00793557335, 0.00101719622, 0.00947940256, 0.00980404, 0.0026944878, -0.00808707066, 0.00869306, 0.00423831725, -0.0300974641, -0.0188289508, 0.0113406554, 0.0155681511, -0.0211519096, 0.0135265449, -0.0227245949, -0.00197487557, -0.0104244575, 0.0288277734, -0.0210653394, -0.00714922976, -0.00084360555, 0.00879405811, -0.00957318675, 0.0317711495, -0.0269088075, -0.0238355752, -0.0200697854, -0.00071375072, -0.019853361, -0.0228255931, -0.00395696517, 0.00445113517, 0.0157412905, -0.0206757747, 0.00426717428, 0.018381672, 0.0068354141, 0.0140243219, 0.00691837678, -0.0100565357, -0.0119610727, -0.00423110323, -0.00321571063, -0.00202176766, -0.0204882063, -0.0136419712, -0.00798607245, 0.0216713287, 0.0108284503, -0.00205062423, -0.0012381298, 0.0172418356, 0.0230564475, -0.00470723771, 0.00112089969, -0.022796737, -0.000402414706, -0.00726465648, 0.00387039548, -0.00016694011, -0.00301551772, -0.0246147048, 0.0177323986, -0.0176891144, -0.00549718784, -0.00797885843, -0.00630517351, -0.00596610829, 0.0132812634, -0.0109005915, 0.0100132506, 0.0334736891, -0.00523387128, -0.0274137985, -0.00318144332, 0.00828185305, 0.00867863093, 0.00172238, 0.00939283241, -0.013540973, 0.00199291087, 0.00856320467, -0.0177035425, -0.00295600086, 0.0191319454, 0.0207767729, -0.00851992, 0.0110232327, 0.000163671197, -0.00809428468, 0.00727908453, 0.021786755, 0.00642781425, -0.0163184237, 0.00614646217, -0.0113262273, 0.0173284058, 0.0110953739, -0.011650864, -0.00665506, -0.0336468294, -0.00406878488, 0.000292849698, 0.0118023613, -0.0112685142, 0.0104821706, 0.0105326697, -0.0049416977, 0.0357245058, 0.022335032, -0.0152507285, -0.00565589918, -0.00422749622, 0.0133029064, -0.0244848505, -0.00410124846, -0.00456656143, 0.0105398837, 0.0132451933, -0.0233305842, -0.0162174255, 0.000555941, 0.0192040876, -0.00391728757, -0.00389203778, 0.0226668827, 0.0145220989, 0.031049734, 0.00239149318, -0.00727187051, -0.00690755574, -0.000348533969, -0.00950826, -0.0102585321, -0.0154815819, 0.00360888219, -0.0141830333, -0.027586937, -0.00475052278, -0.0107923793, -0.0139449658, -0.0175736882, -0.0110665178, -0.00270350557, -0.00618614, 0.00419503264, 0.00676327245, 0.0102296751, -0.0077624335, 0.00838285126, 0.0129782688, 0.00665145321, -0.0167945586, 0.0211663377, 0.0162174255, 0.00767586334, 0.024715703, 0.000104041676, 0.023734577, -0.0171119813, 0.000729982567, 0.00636649365, -0.00994832255, -0.00522665679, 0.00310389115, -0.0227534529, 0.00226524542, -0.00453409785, 0.0138656106, 0.00219490728, 0.00169171987, 0.020358352, -0.0210653394, 0.010150319, 0.0168811288, 0.0326945595, -0.0207190607, 0.0170109831, -0.00282073556, -0.00629074499, -0.00377300428, 0.0133750476, -0.0088878423, -0.0126608461, -0.0279043615, 0.0381484628, -0.0107779512, -0.011614793, 0.000206054363, 0.00700494694, -0.00669113081, -0.0189588051, -0.0160731431, 0.0375424735, -0.0215270463, 0.0139666088, -0.0044583492, 0.000474330853, 0.00501383934, 0.00773357647, 0.0107923793, 0.0079500014, -0.000283381116, -0.0203439239, -0.0115570799, 0.0119394306, -0.0136636142, -0.0119177876, -0.00805821363, 0.0123722795, -0.0110665178, -0.00597332232, 0.0114849387, -0.00388843077, 0.0129349837, 0.0455357619, 0.0172995497, -0.00635927962, -0.032002002, 0.0072213714, 0.0321462862, -0.00141938543, -0.000598324172, 0.0143561726, -0.0267212391, -0.00754600856, 0.00929904915, 0.0166935604, -0.015019876, -0.0043104589, -0.000793557323, 0.0110809458, -0.00651799096, 0.0106913811, -0.00708069559, 0.00705183856, 0.016491564, -0.0108933775, -0.0136491861, -0.0212529078, 0.0180931073, -0.0123506375, 0.000656939228, 0.00258627534, -0.0124732777, 0.0152218724, -4.90055463e-05, 0.0109294485, 0.0153228706, 0.00422028219, -0.021830041, 0.0166647043, -0.00362872123, -0.00885177124, 0.00358904316, 0.0210076254, -0.00761815, -0.00464952458, 0.000288791722, -0.0154094398, 0.00720333587, -0.0105182417, -0.0142407464, -0.0137573984, -0.0233738702, -0.00997718, 0.00989060942, -0.00627631694, 0.0277889334, -0.0273849405, 0.0167512726, -0.00856320467, 0.0227534529, 0.0086714169, 0.00893834047, 0.00542143919, -0.0031760328, 0.0178478248, -0.0046964162, 0.00279368251, -0.0103451014, -0.00130486069, 0.00392450159, 0.00113532797, 0.0114127966, 0.0110015897, -0.00609957, -0.01065531, 0.00345558138, -0.00301191071, -0.00419503264, -0.0011145873, 0.0215847585, 0.00483709248, 0.0206324905, 0.0146519532, -0.00255922228, -0.00489119859, 0.00798607245, 0.00324997795, 0.00767586334, 0.0135121169, -0.0113695124, -0.0262739602, 0.0163905658, 0.00531683397, 0.0028802522, 0.00971025601, 0.0140171079, -0.0170975532, -0.00264579221, 0.0182951037, 0.00857763272, 0.00504991, -0.00691837678, -0.0337045416, 0.0152651565, 0.02131062, -0.00903212465, -0.0135121169, -0.0156114362, 0.0225225985, -0.00478659337, -0.0164627079, 0.000321255444, 0.0262739602, 0.0131946942, 0.00412649801, -0.00551522337, 0.0024257605, 0.0133101204, -0.00619696127, -0.02037278, 0.00150685711, 0.00267825602, 0.0139449658, -0.0177035425, -0.00423110323, 0.00308946287, 0.0153228706, 0.0100348927, -0.00867863093, 0.0228111651, -0.000392720685, 0.0106913811, -0.0133822616, -0.0278033633, -0.0143345306, -0.00201816042, 0.0177612547, -0.0115859369, -0.00782736111, -0.0110809458, 0.00722497841, 0.019377226, -0.00520862173, 0.0181796756, 0.00408321293, -0.011145873, -0.0104965987, -0.00122460315, 0.00705183856, -0.00401107129, 0.0163905658, -0.0109294485, -0.014543741, -1.97262107e-05, -0.0117518622, -0.00162589073, 0.0108428784, 0.0176169723, -0.0111891581, -0.0050030183, -0.0132668354, 0.00489480561, -0.00389925204, 0.0038559672, 0.0207912, 0.00336901145, 0.00330769108, -0.0127113452, -0.000116779171, 0.0103090312, 0.00284959213, -0.0109438766, 0.0179632511, -0.00598775037, 0.000312463177, 0.0118167894, -0.0102873882, 0.0153084416, 0.0147240954, -0.00892391242, 0.00183329778, -0.0144283148, 0.02620182, -0.0318288617, -0.018424958, 0.0112757282, -0.0195792224, 0.00694362633, -0.0157701485, 0.00110015902, -0.00681737857, -0.00890948437, 0.0166791324, 0.00815199781, -0.0125670619, -0.00224179938, -0.00241133198, 0.0148178795, 0.0124227786, -0.00701216096, 0.0124444216, -0.0162174255, 0.0137285413, 0.0277600773, -0.0177323986, 0.00428881636, 0.0171552654, 0.0074666529, -0.0188145228, -0.00452327682, 0.0012967448, -0.0101142488, 0.0104677426, 0.022335032, 0.000310434203, -0.00633403, -0.00171877304, 0.00147980405, -0.00599857187, 0.018872235, -0.00187387737, -0.000970304187, 0.00213539065, -0.0209066272, 0.00618253276, 0.00182518177, -0.00581461098, 0.00831792317, 0.0265769549, -0.012105356, -0.00665866723, 0.00398221472, -0.00444392115, -0.010171962, -0.0156402923, 0.00839727931, -0.00104154402, 0.0129782688, 0.00719251484, 0.00401828578, -0.0254371185, 0.0109150205, -0.0108861635, -0.0327522755, -0.0158278607, 0.0127762724, 0.0105975969, -0.00725383498, 0.00690755574, -0.00359986443, -0.00646749185, -0.0103595303, 0.00750272349, -0.0165492762, 0.00856320467, -0.00952990167, 0.0112252291, 0.00607792754, 0.0117518622, 0.00686427066, -0.00582182501, -0.000766504207, 0.0106336679, -0.0245858487, -0.00177468266, 0.0154671529, 0.0140243219, -0.0126752742, 0.00163400662, -0.0205314923, -0.0201419275, -0.0191175174, 0.0239942875, -0.00379103958, -0.00433931546, -0.0192473717, 0.0118023613, -0.006013, 0.0158422887, -0.0271685161, 0.0308188796, -0.00801492855, -0.0194782242, 0.0138511825, 0.000380772253, -0.0103956, 0.016938841, -0.00810149871, -0.000164460245, 0.00775521901, -0.0227678809, 0.0275580809, -0.0180065371, 0.0120909279, 0.0148755927, 0.0229843054, 0.00495973323, 0.0221763197, -0.0140315359, -0.00113262271, 0.0239654314, 0.0146663822, 0.0167224165, -0.0447854884, 0.0117735043, 0.0175304022, 0.000751174113, -0.000973009446, 0.00814478379, 0.0034141, 0.0134327607, -0.00673080888, -0.00502826786, -0.00201635691, 0.0122857103, -0.00973911211, 0.0141108921, -0.0241674278, 0.00479741441, 0.0198389329, 0.0100276787, -0.0130071258, -0.00594446575, 0.00445113517, -0.0222628899, -0.0334736891, 0.0089671975, -0.019406084, -0.018439386, 0.0118600745, 0.0147529515, -0.0126824882, 0.00288927, 0.0164627079, -0.00218769326, 0.00535651203, 0.00827463809, 0.014060393, -0.0102296751, -0.00197848259, 0.0148755927, -0.00691837678, 0.00072006305, -0.00566311367, 0.0115787229, 0.00208308804, -0.0159577169, 0.00219851453, -0.00246904534, -0.0205747765, 0.00981125422, 0.0011876307, 0.00982568227, 0.0246868469, -0.000553235703, -0.0115354378, -0.00055233395, 0.0159000028, -0.0192040876, 0.0331562683, -0.000811141799, -0.00420224667, 0.00202176766, 0.0179776791, -0.00732958363, 0.000567213108, 0.00612121262, -0.0188000947, 0.00986896735, -0.00857041869, 0.0152074434, 0.0288999137, -0.00984732434, -0.0240808576, 0.0286979172, -0.0698330402, 0.00867863093, 0.0185548123, 0.0225081705, -0.00635567261, 0.0270386618, 0.0350319482, 0.00455213338, 0.0338199697, 0.0106120259, 0.00974632613, 0.0142263183, 0.0168667, 0.0218877532, -0.0248022731, 0.00294337608, 0.022782309, -0.000445699668, 0.00441506412, -0.00182247651, 0.00703019649, 0.00319406809, 0.0146952383, -0.00537094, -0.00595528679, 0.012119784, -0.00964532793, -0.0016628633, 0.000998259, -0.016953269, 0.0286834892, 0.00554408, 0.00134634215, -0.0166214183, 0.013093696, 0.00551883038, 0.00660456112, -0.00527354889, 0.00256824, -0.00258266833, 0.00826742407, -0.00480823591, 0.00818806887, -0.014543741, -0.020863343, 0.010150319, -0.0205603484, 0.0112973703, -0.0032103, -0.00212817639, -0.00675966544, 0.0061067841, -0.00802935753, 0.00670555932, 0.0142623894, 0.00882291421, -0.0331562683, -0.00677770097, 0.0423615314, -0.00740172528, -0.000963991799, -0.0298088975, 0.00408321293, -0.00597332232, 0.0155537231, -0.0147385234, -0.00383793167, -0.00735483319, -0.0138728246, 0.00551522337, -0.0195070822, 0.00418060413, -0.00185944908, -0.0157268625, -0.00481905695, -4.79065129e-05, 0.0119899297, 0.01549601, 0.00890227, 0.00459181098, -0.00216785423, -0.00537454709, 0.0203150678, 0.0100348927, -0.00146267039, 0.00556932949, -0.0122640673, -0.00444392115, 0.0179921091, 0.00618614, -0.00644945679, 0.0284237806, -0.0463726036, -0.000485152093, -0.00308585586, 0.00854156259, -0.00679573603, 0.00451966934, 0.00388843077, -0.0128484145, 0.0107563082, 0.00238788617, 0.0206757747, 0.010215247, 0.0273272283, -0.0201563556, 0.00117951469, -0.00538897561, -0.0029109125, 0.00905376766, 0.02037278, 0.0128844846, 0.0181652475, 0.00300289295, 0.0271252319, 0.00482627144, 0.00789228827, -0.00272154086, -0.0289864838, 0.00268186303, -0.000241223388, 0.00473970128, 0.00971025601, -0.0244559925, 0.000378066936, 0.00500662532, -0.00158170401, -0.0196513645, -0.0163328517, -0.0219887514, -0.00653241947, 0.0285247788, -0.0103956, 0.0130431969, 0.0110953739, -0.0114777246, 0.000217551933, 0.00221294281, -0.00533486949, -0.0119899297, -0.000929724541, 0.00945776049, 0.0221618917, 0.00778407557, -0.0177901126, -0.0233017281, 0.0117302202, -0.009212479, 0.00477216486, -0.00150866061, -0.00351870526, 0.00115606876, -0.00652520545, -0.00815921184, 0.0119466446, -0.017919967, 0.000173928827, 0.00865698885, 0.00694362633, -0.00491644815, 0.0107635232, 0.0127185592, 0.00521222875, -0.0219310392, 0.0256391149, 0.0105110276, 0.0185259562, 0.00818085484, 0.000853525, 0.00156998099, -0.00571000576, -0.00578214694, -0.000509499863, -0.0270098057, -0.00198930386, -0.0117302202, -0.00631960202, -0.00187387737, 0.00851992, 0.0172706936, 0.0161308553, -0.00390646607, 0.0112180151, -0.000916648889, 0.0191030893, -0.018872235, -0.00861370377, 0.0135554019, 0.0140098939, 0.0187712368, 0.0173139777, 0.0222196039, 0.0204304941, 0.0133245485, -0.0161597133, -0.0128628425, -0.0143056735, -0.0112252291, 0.0136708282, 0.00807264168, 0.0111963721, -0.00472166575, -0.00392089458, -0.018929949, -0.00706987409, -0.0137934685, 0.00965254288, 0.00339606451, -0.0118528605, 0.0144571709, 0.0278610755, -0.0110376608, 0.00203439244, 0.00163941726, -0.00139774301, 0.0154382968, -0.0130504109, 0.00360707869, -0.00957318675, 0.00243117101, 0.0139161097, 0.0159144308, 0.0131658372, 0.0226524547, 0.0166647043, -0.0162895676, 0.025220694, 0.00680295052, -0.0191175174, -0.00490923412, 0.016953269, -0.00320669287, 0.00480102189, -0.00104064215, 0.00542143919, 0.00484069949, 0.0066875238, -0.00340147526, 0.00922690704, 0.00475773681, 0.0232151579, 0.00994110852, 0.00533486949, -0.0035421513, -0.00513287308, 0.0193916541, -0.0129494127, 0.0231285878, -0.00603103545, 0.00887341332, -0.0186990965, -0.000465764024, -0.00735844066, 0.0149044488, 0.0226668827, 0.0164771359, -0.0167945586, 0.0183672439, 0.00195684028, 0.00393893, -0.00246363482, 0.00519058621, 0.0137429694, -0.00839006528, 0.00679573603, -0.0137573984, 0.00571361277, -0.00722858543, -0.00471084472, 0.0128195575, 0.000199741975, 0.000810240046, 0.00170073763, 0.000349886628, -0.0119610727, 0.01356983, 0.0117374342, 0.016938841, -0.0159000028, -0.013079267, 0.00289107347, -0.000959482917, -0.000923412153, -0.0199832153, 0.0239798594, -0.00108753424, -0.0147745945, -0.00394975115, 0.0220753215, 0.0134976888, 0.00699773245, -0.000105732492, 0.00933511928, 0.00278286124, -0.0196802206, -0.0143201025, 0.0163184237, 0.00319226459, -0.00908262376, -0.0167657025, 0.0120043578, -0.0064422423, 0.0158134326, 0.00471445173, 0.00750993798, -0.0204737782, -0.00726104947, -0.017487118, -0.00171065703, -0.0190598033, -0.0225081705, 0.000775071036, -0.0216136146, -0.00216785423, -0.0164049938, 0.0228977352, -0.0118889315, -0.00410124846, 0.0120476428, -0.00930626318, -0.020863343, 0.0104461, 0.00987618137, 0.000481545, 0.00999160763, -0.0054250462, 0.014060393, -0.00540701114, -0.0169244129, -0.0117374342, 0.00281893206, -0.00364675652, -0.00572804082, 0.0034141, -0.00488759158, -0.0273849405, -0.016015429, -0.0142118903, -0.0134183327, -0.0227534529, -0.0111963721, -0.00481184293, -0.00396057218, -0.00148972345, 0.00424913876, -0.0170109831, -0.00308405235, -0.0128339855, 0.0275725089, -0.00143922435, -0.00128231652, -0.00502466038, -0.00895998348, 0.0192185156, -0.00497776875, 0.0153372986, -0.0155537231, -0.0104749566, 0.0251774099, -0.00207046326, 0.000756133872, 0.00618253276, -0.00481184293, -0.0507299528, 0.0100781778, 0.0033239231, -0.0195359383, 0.0148611637, -0.00735844066, -0.0225947406, -0.000214621177, -0.00357100787, -0.00066640781, 0.0618109, 0.0279332176, 0.024052, -0.0291596241, 0.0093423333, -0.00966697093, 0.0139954649, 0.0345702432, -0.0200120732, 0.00651438395, 0.0195359383, 0.0255236886, 0.00126247748, 0.00162138185, 0.0128917, 0.0144427428, 0.00942168944, -0.00221294281, 0.00577493291, 0.0101286769, 0.0106913811, -0.0139161097, 0.00293976907, -0.0166214183, 0.0146014541, 0.00202537468, -0.00287844869, -0.0073692617, -0.0136636142, 0.0211230535, 0.000656488293, 0.0195359383, 0.0101647479, 0.0139305377, -0.0284959208, 0.00847663451, 0.0117518622, 0.0149621619, -0.00225081714, -0.0316268653, 0.036330495, 0.0168667, 0.00877241511, -0.0110593028, 0.0141613912, -0.0202573538, -0.00233738706, -0.0220753215, 0.00480102189, -0.0230708756, 0.0270386618, -0.0335891172, -0.01164365, -0.0184826702, 0.0113478694, -0.00711315917, 0.0214260481, -0.0108573064, 0.00252315146, 0.00585428858, -0.00690034172, 0.0197379347, -0.000851270568, 0.00453770487, -0.0128339855, -0.0193050858, 0.00550079485, -0.00340688578, 0.0100853918, 0.00128051289, -0.017919967, -0.00142750144, 0.0103306733, -0.00183961017, -0.00974632613, 0.00297042937, -0.00528076338, -0.00187568087, 0.000743058219, 0.00456295442, -0.0312228724, 0.0156980064, -0.00728990603, -0.0487388484, 0.0136780422, -0.00680295052, -0.0108789494, -0.00209390908, -0.0160587151, 0.00697609037, 0.0120187858, 0.0158711467, 0.0134832598, 0.00613203365, 0.00885898527, 0.0232007299, -0.0137573984, -0.00276843295, 0.00939283241, 0.011636436, 0.0103018163, 0.00130215543, -0.00202537468, -0.0122568533, -0.00579657545, 0.027644651, 0.00603464246, 0.00757486513, -0.00364856, 0.0137934685, -0.0130648389, 0.0203439239, 0.0110015897, 0.00071375072, 0.0197379347, -0.00169171987, -0.0032265319, 0.0053853686, 0.00362331048, -0.000602833, 0.0153517267, 0.00690394873, -0.0285392068, -0.00169893401, -0.00132920849, 0.00164753315, 0.0100421067, 0.000352591946, 0.0254659746, 0.00244920631, 0.00847663451, -0.0101286769, 0.00688952, 0.0034916522, 0.0247589871, 0.0272839423, -0.00957318675, 0.00695444783, 0.012134213, 0.0178189687, -0.00113172096, 0.0152651565, 0.011629222, 0.0102801742, -0.00425996, 0.00471445173, 0.0126319891, -0.00333474413, 0.0498065427, 0.0216424726, 0.0116003649, -0.0118528605, -0.0134111186, -0.00384153868, -0.00220753206, 0.0138944667, 0.000585248519, -0.00289828773, 0.0131369801, -0.0163472798, 0.00308044511, -0.000907180307, 0.0103956, 0.0015880164, 0.00490562711, -0.0179632511, -0.0136924703, -0.00872913, 0.00415174756, 0.0113478694, 0.00853434857, 0.0268799495, -0.0286834892, -0.000903122302, -0.00947218854, 0.0129421987, -0.0333582647, -0.0147890225, 0.00378021854, -0.00598053634, -0.00539979665, 0.00411567697, -0.00238788617, 0.0517687947, -0.00220212154, -0.00563064963, 0.00155555271, -0.0128195575, 0.00223638886, -0.00968139898, -0.0177179705, -0.00396417966, 0.0194782242, 0.00223097811, 0.0167368446, 0.00395696517, 0.0182518177, -0.00428160233, 0.00855599064, 0.0076542208, 0.0366479196, -0.0179055389, 0.00441145711, -0.0129061276, -0.00634124409, 0.00847663451, -0.00518697919, -0.0026638275, 0.00179542345, -0.00389925204, 0.00927019212]
24 Nov, 2021
jQWidgets jqxScrollBar min Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The min property is used for setting or getting the minimum value for the specified jqxScrollBar. Syntax: For setting the min property: $('#jqxScrollBar').jqxScrollBar({ min: 100 }); For getting the min property: var min = $('#jqxScrollBar').jqxScrollBar('min'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar min property. In the below example, the value for the min property has been set to 100. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar min Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin:28px;" id="button_for_min" value="Value of the min property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 200, height: 20, min: 100 }); $("#button_for_min").jqxButton({ width: 250 }); $("#button_for_min").jqxButton().click(function () { var Value_of_min = $('#jqx_Scroll_Bar').jqxScrollBar('min'); $("#log").html((Value_of_min)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollbar/jquery-scrollbar-api.htm?search= 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 max Property/jQWidgets jqxScrollBar min Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-min-property/?ref=next_article
PHP
jQWidgets jqxScrollBar min Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollBar max Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar min Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0165301859, 0.0274429116, -0.0123416055, 0.0292220078, 0.0720043704, -0.00287877396, 0.0113329841, 0.0256918315, -0.0205926895, -0.00283324602, -0.0147510897, 0.0201444142, 0.0106115388, -0.00875539519, 0.0360021852, 0.0178049728, -0.0347133912, -0.0118793203, -0.0159278158, 0.0307349395, -0.0087624, -0.0169644542, -0.042390123, 0.0266724359, -0.0467328, 0.0240248051, 0.0159138069, 0.0185054038, -0.015185358, 0.0312672667, -0.00369827892, -0.000149717263, 0.00734052341, -0.00138335244, -0.0208448451, -0.00061900646, -0.0052917609, 0.0130630499, -0.0300345086, -0.00436368911, -0.00766272191, 0.00324299838, -0.00944882259, 0.0173426867, 0.0106675737, 0.0220635962, 0.00311341858, -0.00596067309, -0.0268265307, 0.0220215712, -0.000283674803, 0.0259299781, 0.00923168845, 0.0459763333, -0.00385587616, -0.0290539041, -0.00921067595, 0.0402047746, -0.0123836314, -0.00429364573, 0.0415776223, -0.0333685614, -0.0277791191, -0.0319116637, -0.00990410335, -0.0149051854, -0.0202985089, 0.0284095071, -0.0418017581, 0.0309870951, -0.0280592907, 0.0192338526, 0.00512715941, 0.0230582096, 0.00806196779, -0.0155775994, -0.0155916084, 0.0124676833, 0.0128879417, 0.0175948422, -0.0195140261, -0.0351056345, -0.0206347164, -0.012047424, 0.00519370055, 0.0209569149, 0.0359461531, -0.0351056345, 0.0549138412, 0.00457381876, -0.0115991477, 0.00693077082, -0.00231492659, 0.0342370979, 0.00915464107, 0.0220776051, -0.0245151073, 0.0193879474, -0.0238707103, 0.0149472114, 0.0375431366, 0.041745726, -0.0118723158, -0.0328082182, 0.0164461341, 0.00804095529, 0.0148491506, 0.0116201611, 0.0302866641, -0.0166142378, 0.0249773916, -0.0073545319, -0.0095678959, -0.00407301, -0.0464806445, 0.00979903806, -0.0122505492, -0.0174407475, 0.0146950558, -0.0159978587, 0.0205646735, 0.0225819163, -0.00556843169, 0.0328082182, -0.0319677, 0.00325875822, -0.00832112785, 0.00383836543, 0.0238707103, -0.0224278215, 0.0086783478, 0.0140856802, 0.00461584423, -0.0386638269, 0.0162780304, 0.023394417, 0.00871336926, -0.0247812718, -0.0238286834, -0.0170064792, -0.0327241644, -0.0164461341, -0.0108987158, 0.0164461341, -0.025972005, 0.0285916198, -0.00328502432, 0.0452478826, -0.0486940071, 0.0178890247, -0.0279612299, -0.00792888645, 0.00728448899, 0.00433567166, 0.0472371094, 0.0176088512, -0.0279752389, 0.032387957, -0.0233523902, -0.00696579274, 0.0151013061, -0.0171325579, 0.0289418343, 0.00404149061, -0.0140716713, -0.0229601488, 0.0217273887, -0.00110142876, -0.0567069463, 0.0281993765, 0.00831412338, -0.0271487292, -0.0108076604, 0.00559995091, -0.0173286777, -0.00557893794, 0.00297683454, -0.0379633941, 0.00167665817, -0.0191077758, -0.0128108943, -0.009497853, -0.0134552913, 0.0147090638, -0.0193179045, -0.0236185547, 0.00289978692, -0.0288017485, -0.0486379713, -0.0214192, -0.0150452713, 0.029782353, 0.0161939785, 0.0344332196, 0.016474152, -0.0139666069, -0.0138755506, -0.00391891506, -0.0174127296, -0.0206627324, -0.00369127467, -0.000922818668, -0.00187365466, 0.0325280465, 0.00217308919, 0.0112419277, -0.00209604157, -0.0363383926, 0.0477694385, -0.0148071246, -0.00522521976, -0.0107656345, 0.0225258805, -0.00812500715, 0.00272292807, 0.0313233025, -0.0125447307, -0.0159418248, -0.0457521938, -0.0286896788, 0.0110388026, 0.00402398, -0.0226799753, 0.0124046439, -0.103775948, -0.021559285, -0.0261961427, -0.0328362361, -0.032303907, 0.0254396759, -0.0391961522, -0.0172306187, -0.0277511012, 0.0138685461, 0.0192898866, 0.0708836839, -0.0264903251, 0.0445474535, 0.00231667771, 0.0447435714, -0.00388039113, 0.0159698408, -0.00477694394, 0.00181411789, 0.0122995796, -0.0174547564, -0.022161657, -0.0181271713, 0.00705684861, -0.0198502317, -0.0368146859, -0.00743157975, 0.0106885871, -0.0194299743, -0.00245676399, 0.00447575795, 0.0191638097, -0.00272643, 0.0271767471, 0.00619181572, 0.0231422614, 0.0129439766, -0.00916164555, 0.0176088512, 0.0439590886, 0.0584440157, 0.0618060865, -0.0271907561, 0.0112769492, 0.00589063, 0.0253556259, -0.0143588483, 0.0546897, 0.0280733, -0.0257898923, -0.00846121367, -0.048806075, -0.0242489427, 0.0133502269, -0.0252295472, 0.019037731, 0.00750162266, 0.0523082353, 0.0647198856, 0.00734752789, -0.0019174316, 0.0190797579, -0.0489461608, -0.039840553, 0.00645447755, -0.0201724302, -0.0046858876, 0.010772638, 0.0236745887, 0.0201584231, 0.00984806847, -0.00366325746, -0.00642295787, -0.0112349233, 0.0182392392, -0.0269105826, -0.0093507627, -0.0207467843, -0.0302026123, 0.0300905425, 0.0238847192, 0.0177909639, -0.021531269, -0.0023184286, 0.000244275521, 0.0407371037, -0.0266864449, -0.0288297664, -0.0596767738, -0.033564683, -0.0285916198, 0.0317995958, 0.027835153, 0.00570851797, -0.0037718243, 0.0093717752, -0.00123363524, -0.0203685518, 0.0423621051, 0.0332284756, -0.0285495929, -0.0302026123, 0.000818629458, 0.0158437639, -0.00928071886, -0.0365625322, -0.000824320479, 0.0036037208, -0.0134973172, -0.00597468158, -0.0413815, -0.00242349342, -0.0225398894, -0.0203545429, 0.0290539041, -0.0183373, -0.0206347164, -0.0108286729, 0.00924569741, 0.0295862313, -0.0471810736, -0.0311271809, 0.00159435754, 0.0469569378, 0.0304547679, 0.00134395319, 0.0216293279, 0.0133432224, 0.00756466156, 0.0289698523, -0.00370178116, -0.00194019557, -0.0263782553, -0.0202004481, 0.0153814787, 0.0234224331, 0.0144148832, 0.00855927449, 0.0164881609, 0.0286756717, -0.0380474478, -0.0118162818, -0.0227640271, -0.0394763276, 0.00662608305, 0.00193844456, -0.0265043322, -0.00280873082, 0.0613578111, 9.1220274e-05, 0.012306584, -0.00642646, -0.0245991591, -0.0373750329, 0.0168243684, -0.0420258977, 0.0359181352, -0.00590113644, 0.0352457203, -0.00113119709, -0.00335331634, -0.0243890285, 0.011403027, 0.0355819277, -0.000706998166, -0.0546336658, 0.0351336524, -0.0226099323, -0.0382155515, -0.00460183574, 0.000615504279, 0.0154795386, 0.00393992802, 0.0130910669, -9.31355171e-05, 0.0213491563, -0.00451778388, 0.0188556202, -0.00112069061, 0.00344787468, 0.00255832658, -0.0275829975, -0.00368076819, 0.0152273839, -0.00295757246, 0.00452829059, -0.0296983011, -0.00946283154, 0.0360021852, 0.0128879417, 0.00975701306, 0.0232823472, 0.0236045457, 0.0228620879, -4.3886419e-05, 0.022848079, -0.0301185604, -0.0354418419, 0.00075821724, -0.0329202861, -0.000114367351, -0.0845561, 0.0133992573, 0.0377392545, 0.00454580132, -0.0380194299, 0.0283254553, -0.0248232968, 0.0121104633, 0.0435948633, 0.0246551931, 0.0450797789, 0.0119493632, -0.0118162818, -0.0440431423, -0.0151153142, -0.00934375823, 0.0287457146, 0.0192758776, -0.0222597178, 0.0131471017, -0.0272888169, -0.0163760912, 0.029726319, 0.0348814949, -0.0229181238, -0.0686423, -0.00548438, -0.0054423539, 0.0265463591, -0.0141347107, 0.0305948537, 0.0129649891, 0.0306789055, -0.0211950615, -0.0397004634, -0.0104854619, -0.026574377, -0.000238146749, -0.00463685719, -0.0496185757, 0.00244625751, 0.0161659624, -0.0340129584, 0.0202845, -0.0265463591, 0.00156371365, 0.0225679073, 0.0441552103, 0.0213491563, 0.020242475, -0.0207607932, 0.0212931223, -0.00527425, -0.00335681858, 0.0321918391, 0.00306088617, 0.0192478616, 0.0157316942, 0.0183373, -0.00452478835, 0.00918265898, -0.0306789055, 0.019472, 0.035413824, -0.0152974268, -0.00292955525, -0.0144429, 0.00435668463, 0.00367726595, 0.0410452932, -0.0256077796, 0.00688524311, -0.00826509297, -0.00401697541, 0.0181131624, 0.0358340815, -0.0157036763, 0.0235765278, 0.0314073525, 0.0103453752, -0.0222457089, -0.00161624595, 0.0314633884, -0.00215908047, 0.0212791134, -0.0180851445, -0.0243610125, 0.0136794299, -0.0146810468, -0.0524483211, -0.0126287825, -0.0202845, 0.0261541177, -0.0127758728, 0.0356659777, 0.0179030318, 0.00978503, -0.00144201366, 0.0254396759, 0.0299784746, -0.00368777243, -0.0548017696, -0.00806196779, 0.011746238, -0.0176648851, -0.00230442, 0.0188135933, 0.00135971291, -0.0211670436, 0.0198922586, -0.0226519592, -0.0137214558, -0.00400296692, 0.0243890285, -0.00806196779, 0.0288577825, -0.0221756659, -0.00505361427, 0.020326525, 0.0150592802, -0.0127268424, 0.0131400973, 0.0293340757, 0.0364504606, 0.0273868758, 0.0126147736, 0.0144008743, -0.00620932644, -0.0196541119, 0.00630038232, -0.00621282868, -0.0285636019, -0.0258599352, -0.0286196359, 0.0131260883, -0.00658405712, -0.00356869912, 0.00281748618, -8.90861484e-05, -0.023492476, -0.0029733323, 0.013308201, -0.035413824, 0.00997414626, -0.00329202856, 0.013007015, -0.00313968468, 0.0223857947, 0.00609725714, 0.013637404, 0.0245711412, 0.000457907183, 0.0147090638, 0.0184213519, 0.00238321861, -0.0409892574, 0.0349095128, -0.00729849748, 0.0110247936, 0.00126077689, -0.015185358, -0.0127898818, -0.0351056345, -0.017118549, -0.0208588541, 0.0230161827, -0.00669262419, 0.0218114406, -0.00716191344, -0.00376131781, -0.0138265202, 0.00979903806, 0.0216853637, -0.0336207189, 0.0153814787, 0.017706912, 0.0226519592, 0.0197521728, -0.00671013491, -0.0178610068, -0.00386988465, 0.019682128, 0.0131400973, -0.0252295472, -0.00785183813, -0.0121314758, 0.0369827896, -0.0106675737, -0.03042675, -0.00961692631, -0.0156476423, 0.00623033941, -0.00159961078, -0.0274008848, -0.0107936515, -0.00671713939, 0.00208728621, -0.00446875393, 0.00797791593, -0.000396400515, -0.0303987321, -0.00312567619, 0.0131821232, -0.0479935743, 0.00284200138, 0.00719343266, 0.00756466156, 0.00319046597, 0.0301745944, 0.0242069177, -0.0144148832, 0.02275002, -0.0348814949, -0.00642295787, 0.0111438669, 0.035413824, -0.0317155458, 0.0587802231, -0.00846121367, 0.013280184, -0.0131471017, 0.0254817028, 0.0236465726, 0.00804095529, -0.02275002, 0.0130420374, 0.0149051854, 0.00557893794, -0.0087624, 0.018407343, 0.0286756717, -0.018351309, 0.00138072588, 0.0319116637, -0.00404149061, -0.0121664973, 0.0333965793, 0.0160819106, 0.0212791134, -0.0112419277, 0.0555582382, 0.0406810679, 0.0064194561, 0.00805496331, -0.00745959673, 0.00776778674, 0.0258879531, 0.0105204834, -0.00498357089, 0.0037963395, -0.0560905635, 0.000661032333, 0.0329763219, -0.0145129431, 0.00160661503, 0.0184633769, 0.0283814892, 0.00709887454, 0.0182532482, -0.0157036763, -0.00293480861, 0.01710454, 0.00250054081, -0.00242174231, 0.00439170655, -0.00818104111, 0.0259439871, 0.0273308419, 0.000649650348, -0.0102963448, 0.0277511012, 0.00592565164, -0.0305668358, -0.0599009134, 0.0104224226, -0.0255517457, -0.0250054095, 0.024683211, 0.014568978, 0.0112069063, 0.00897252932, 0.0321638212, 0.00609025313, 0.0103803966, 0.039896585, 0.014554969, -0.00459132949, 0.0673535, 0.0013255669, -0.00330428616, -0.000536268, -0.006640092, 0.0126427906, -0.0123696225, 0.0237586405, 0.0248513147, 0.00914763752, -0.0418577939, -0.00903556775, -0.0208588541, 0.0295301974, -0.0148911765, 0.00138597912, -0.000820380519, -0.00805496331, 0.0290539041, 0.0204245858, -0.00697980123, 0.000475855748, 0.026602393, 0.000645710388, 0.011431044, 0.0179590676, -0.000381297461, -0.0102333063, -0.0228340719, 0.0137704862, 0.0232823472, -0.00663658977, -0.0502909906, 0.00777479121, -0.0088254381, 0.017062515, 0.0186875165, 0.0201444142, -0.0331444256, 0.02601403, -0.0402888283, -0.00886046048, 0.000768285943, -0.00460183574, 0.00162762799, 0.0253836419, -0.00750862714, 6.75259871e-05, 0.00422710506, -0.0490302145, -0.0104014101, 0.0154375136, 0.0173566956, -0.0161099266, -0.0162079874, 0.0144709172, -0.045051761, -0.0045983335, -0.0125517352, 0.0439030528, 0.00630038232, -0.00397144724, 0.0148491506, -0.0357500315, -0.00626536086, -0.0126708085, 0.0113049662, -0.0183373, 0.0217694156, 0.0236325637, 0.00661207456, -0.00546336686, -0.012649795, -0.0190797579, 0.0237166155, 0.0314633884, 0.0160118677, 0.00324299838, -0.00647899276, -0.00480145868, 0.00774677377, 0.0214051902, -0.0217273887, -0.00752263563, 0.0116271647, 0.0242769606, -0.0336207189, 0.0306228716, -0.00944882259, 0.0179450586, 0.0312112328, 0.0130490409, -0.00958190486, -0.0224278215, 0.0166142378, -0.0385237411, -0.0101072285, -0.0219095014, 0.01014225, -0.0176368691, -0.0238286834, -0.0332845114, -0.00780280819, 0.018393334, -0.004118538, 0.00229741563, 0.0136303995, -0.0233383812, 0.0176228601, 0.0141977491, -0.00450377539, -0.0095188655, 0.0319396816, -0.018407343, 0.0058591105, 0.0108286729, 0.00506412052, -0.00506412052, 0.0114660654, -0.0525043532, 0.00630038232, -0.0155635905, -0.00303111784, 0.0424181409, 0.0139946239, -0.00195595529, 0.0191638097, 0.0029488171, -0.00344437244, -0.0321077853, 0.00922468491, 0.0258879531, 0.00816002861, 0.00146827975, 0.0290258862, 0.0220635962, 0.0114940833, 0.0346293412, 0.0166842807, 0.0305668358, 0.0231982954, -0.0251314864, 0.0338448547, -0.0271767471, 0.0088044256, 0.0244170465, -0.00949084852, -0.0147931157, 0.0172026, -0.0111788884, -0.0156196253, 0.0166422557, -0.0366465822, -0.0253976509, -0.0335366651, -0.00734052341, -0.0248373058, 0.00725647155, 0.024094848, 0.0271067042, 0.0160118677, -0.0100021632, -0.0141066927, -0.0308189914, 0.0574353933, 0.021573294, -0.0127618639, 0.0416896902, -0.00227290066, -0.0534849577, -0.00330253504, -0.0268965755, 0.0444353819, -0.0276810583, -0.0281013176, 0.0130560454, 0.017062515, -0.00358620984, -0.0182252303, 0.00466487464, -0.0368987396, -0.00749461865, 0.0165582038, -0.017118549, -0.00573653495, 0.000900054642, 0.0113960225, 0.00839817524, -0.013007015, 0.00804796, -0.0209008791, 0.0250194184, 0.00362473377, 0.0034251106, 0.0245711412, -0.00627586758, 2.29965935e-05, 0.0319677, 0.0460043512, 0.00423761131, -0.0245431252, 0.0157597121, -0.00532328058, -0.000873788435, 0.0368427038, 6.85109699e-05, -0.0151433321, -0.0179310497, 0.000570851786, 0.010457444, 0.0194159653, -0.000749024097, -0.0260980818, -0.0274569206, -0.0142467795, -0.00439871056, 0.0117532425, -0.0177909639, 0.00872037373, 0.0260560568, 0.00783082563, -0.0343211517, -0.00949084852, 0.0179310497, 0.0115080914, -0.0489461608, 0.011690204, 0.0551659949, 0.0103243627, -0.00416406617, -0.00174845243, 0.00527775241, -0.0358060636, -0.0419698618, -0.00325700711, -0.0232403222, 0.00543184718, 0.0138335247, -0.0155635905, 0.0191638097, 0.0151573401, 0.0155775994, -0.0425862446, -0.0159278158, 0.0128459157, -0.00406250358, -0.00460884, 0.00320447469, -0.0378233083, -0.0174547564, -0.00911261514, 0.0351336524, 0.00769774383, 0.00291729765, 0.00206627324, 0.0164461341, -0.0281293336, -0.0172306187, 0.0163760912, 0.0407090858, 0.0133922528, 0.0158997979, 0.0107376166, 0.0114870789, -0.0239967871, 0.0245431252, -0.00536180427, 0.0131400973, -0.0171325579, 0.0387478769, 0.00634941272, 0.00900755078, 0.00089567696, 0.011403027, -0.0134062618, 0.0018543927, 0.0186454896, 0.00151468336, -0.0314073525, 0.0185894556, -0.0116341691, 0.00855927449, 0.016516177, 0.0432586558, -0.00245851511, -0.014596995, -0.0246131681, -0.0213631652, 0.00697629899, 0.0103103537, 0.0200463533, 0.0286476538, -0.0087834131, -0.00966595672, 0.0245291162, -0.0102893403, 0.00686423, -0.0309870951, -0.0189676881, 0.0218534674, 0.0118653122, 0.041101329, -0.0167683326, 0.0139666069, -0.0119493632, 0.0210549757, -0.000868535193, 0.0280452818, -0.0186735075, 0.0239127353, -0.0303146802, -0.00278596673, 0.0046858876, -0.00951186195, -0.00419908762, -0.0128739337, 0.00267915102, 0.00499057537, 0.00385587616, -0.0125167128, 0.0139946239, 0.024094848, -0.00193319132, -0.0130840633, -0.0293060597, 0.00203650491, -0.0254256688, 0.0368707217, 0.00658405712, 0.0070953723, 0.0171745829, 0.00306789065, 0.000330735056, 0.0146810468, 0.00958890934, -0.00530927163, -0.0179450586, -0.000103696715, 0.00823007151, 0.0181551874, -0.0175248, 0.00907058921, -0.0137214558, 0.00848923158, -0.0264482982, 0.0204245858, 0.0214051902, 0.00785884261, -0.0219935533, 0.00561746163, -0.0101982849, -0.0214051902, 0.0204806216, 0.00485749356, 0.00142537837, -0.0019839725, 0.0178189799, -0.0218394585, 0.0336207189, 0.0128739337, -0.000739393116, 0.00248653232, 0.00367726595, -0.00686072791, 0.0175668262, -0.00475593098, -0.0149752283, 0.016516177, 0.00279997545, 0.0106885871, -0.0158997979, 0.00896552484, -0.0152834179, 0.0103593841, -0.0146670379, -0.0201023873, -0.013280184, 0.000163944773, -0.00717241969, -1.75244713e-05, -0.0131400973, -0.0117952684, -0.0243049767, -0.0113820136, 0.0797371343, -0.00715140672, 0.00107866467, -0.00818104111, -0.0262241606, -0.0435668491, -0.0111858929, 0.000676354277, 0.0300625265, -0.00299609639, -0.000552903221, 0.0179170407, 0.0095468834, 0.00783783, -0.0299504567, -0.0314353704, 0.0074806097, -0.00734752789, 0.0236745887, -0.0319677, -0.00632489752, 0.0257478673, 0.0038628804, -0.00996013824, 0.0254676938, 0.0192338526, -0.0529526323, -0.0173286777, -0.0466767624, 0.0201724302, 0.0182252303, 0.0197521728, 0.0329202861, -0.00305388193, 0.00479445467, 0.0158437639, -0.00576105, 0.00200673658, -0.0370668434, -0.0235345028, -0.0195000172, 0.00685022119, 0.00445474498, 0.00867134333, 0.00707786158, -0.0289418343, -0.0229181238, 0.0122785661, 0.00316069764, 0.0333405472, -0.0105274878, -0.00504310755, -0.031015113, -0.000466662575, -0.00643346459, -0.0160118677, -0.00550889457, -0.0300625265, 0.00644747308, -0.0256077796, -0.0180991534, -0.00256533083, -0.0109337382, 0.0146390209, 0.0162500143, 0.0219655354, -0.00436368911, 0.0216853637, -0.0074806097, 0.0255657546, 0.0293060597, 0.0119213462, -0.00285075675, -0.00708136382, -0.0267284717, -0.0119353551, -0.000277327141, 0.00621983269, 0.0067031309, -0.0253976509, -0.0338448547, -0.00287702284, -0.00850324, 0.0174127296, -0.0095468834, -0.00257583731, -0.0153254438, -0.0113329841, -0.019682128, 0.00155758485, -0.00921768, -0.00967996474, -0.0377392545, 0.00771175232, -0.0136654209, -0.0205226466, 0.0242209267, -0.003011856, -0.0193319134, -0.00220635952, 0.0130000114, 0.00348990061, 0.00737554487, 0.0146810468, 0.0170905311, -0.036786668, 0.0275409725, 0.0158857889, -0.0263082124, 0.0318556316, 0.0161379445, 0.00312567619, -0.000603246735, 0.0115080914, 0.0176929031, 0.00700431643, -0.0042060921, -0.00836315379, 0.0190657489, 0.00923869293, -0.025957996, -0.00244975952, -0.00287352083, 0.0120964544, -0.0161939785, -0.0176648851, -0.0160819106, 0.000374293159, 0.00379984151, -0.0115711307, -0.0404008962, 0.0238146763, -0.0152694099, 0.0002751383, -0.0205786806, 0.0174267385, -0.0126778129, 0.0226939842, 0.000917565427, 0.0220776051, -0.00352492207, 0.00353017543, -0.00597818382, 0.0060727424, 0.0219375193, 0.0389159806, 0.00364574674, 0.000436456467, 0.0169364363, 0.00808298122, -0.0201304052, -0.0162219964, 0.0120894499, 0.000322636333, 0.0163480751, -0.00851724856, -0.012663804, -0.00707786158, -0.0365625322, -0.000805934134, 0.00921067595, 0.0186735075, 0.0115711307, -0.00311867194, -0.00333230337, -0.00609725714, 0.00356344599, -0.0370388255, 0.00808298122, -0.00271067047, 8.20271089e-05, 0.00492403423, 0.0190797579, -0.0105064744, 0.0245991591, 0.0221196301, -0.00260035251, 0.0175388083, 0.0168243684, 0.00284550339, -0.0148911765, 0.00511665316, -0.0137144513, -0.000191743165, 0.00357570336, -0.0103033492, -0.0262801945, -0.00627236534, 0.0168103594, -0.00270016398, -0.0156336334, 0.00868535228, 0.0296702832, -0.00272292807, 0.0217834245, 0.00978503, -0.00292780413, -0.0153254438, -0.00820205454, 0.0220355783, -0.00162937911, 0.0159698408, 0.0332004577, 0.0298664048, -0.00432516541, 0.018351309, -0.0218254495, 0.0286196359, 0.0111718848, -0.014540961, 0.00463335542, -0.0267704967, 0.0134833092, -0.00754364859, 0.0122715626, 0.00205226475, 0.0317715779, -0.0265463591, -0.016516177, 0.00991110783, 0.00164076104, 0.00902856328, -0.0210269578, 0.00603071647, -0.014540961, -0.00581008056, -0.0223297607, 0.00542134093, -0.00554391649, 0.020872863, -0.0113329841, 0.02469722, 0.0172166098, 0.00916164555, 0.0233804081, 0.0310991649, -0.00321848341, -0.023492476, 0.00833513681, 0.0163060483, -0.00665760273, 0.0167683326, -0.016516177, 0.031015113, 0.0132171446, -7.07545405e-05, 0.0171325579, -0.0208588541, -0.0242489427, 0.0148911765, 0.0222457089, 0.0127688684, 0.0314073525, -0.0343211517, 0.00148491503, -0.00593265612, -0.0157316942, -0.00133432227, -0.0119213462, -0.049366422, -0.00248828344, 0.00913362857, -0.00888847746, -0.0016398856, -0.0391401201, 0.00449326914, -0.014540961, -0.000376919779, -0.0233243741, -0.0111438669, -0.000427044404, 0.0105975308, 5.97555736e-05, -0.00800593384, 0.0173847135, -0.0246271752, 0.0274569206, 0.0106745781, -0.00722845457, -0.010128241, -0.000716629089, 0.013280184, -0.0102403108, 0.0130630499, -0.0207327753, 0.0188276023, 0.000713126967, 0.0451358147, -0.00655604, 0.00357220136, 0.0258179102, 0.00797091238, -0.0163760912, -0.000984106446, 0.0046613724, 0.0168383755, 0.0124186529, -0.0235905368, -0.00873438269, -0.0209569149, 0.0183092821, -0.0133152055, 0.013280184, -0.0255097207, 0.00291204453, -0.000860217609, 0.00256708195, -0.0212230776, 0.0269526094, -0.0127338469, -0.00327977119, -0.0218254495, -0.0106465612, -0.00402047765, -0.00985507295, -0.00332179712, -0.00676616933, -0.013980615, 0.00173531938, -0.0121384803, 0.0049695624, -0.0181551874, -0.0436509, -0.00501859281, 0.0237586405, 0.00169416901, 0.0086013, -0.0442392603, -0.00815302413, -0.0163480751, 0.00530927163, -0.00396094099, -0.0256918315, 0.0298103709, -0.0242349338, 0.0236185547, -0.00454229908, -0.0361983068, -0.00296632806, -0.00883244257, -0.0132731795, 0.0114800744, -0.0127268424, 0.0338168405, -0.00588012347, -0.0106465612, -0.0175948422, -0.000297902327, -0.0325280465, 0.00138247688, 0.00270891935, -0.000307314389, 0.0318836495, 0.000945582695, 0.0276670493, 0.0313793384, -0.00451428164, -0.00910561159, -0.000304031098, -0.00611126609, -0.0285215769, -0.00487850653, 0.0148211336, -0.00281223306, 0.0066155768, -0.0315194242, -0.0214892421, -0.0124326618, 4.64583172e-05, -0.0101772714, 6.70335e-05, -0.00974300411, 0.00832813233, 0.00780280819, 0.0103944056, -0.015199366, 0.0225959253, -0.0119423596, 0.00182637549, 0.0082861064, -0.0375711508, 0.0074806097, -0.00923869293, -0.0140646668, 0.0258179102, 0.00513416389, 0.0013579618, -0.0167823415, 0.0112349233, 0.00339184026, 0.0260840748, 0.0216153208, -0.000583547109, 0.00298734079, -0.0100021632, 0.00660857232, -0.0254957117, 0.0245151073, -0.0254536849, -0.0138545381, 0.0106815826, -0.00825108495, -0.0199903194, 0.012362618, 0.0255377367, 0.0131891277, -0.0159838498, -0.00691326, 0.0243750215, -0.0221756659, -0.0106605692, 0.0206767414, -0.0325280465, -0.00838416629, 0.0270506702, -0.00909160264, -0.00180010928, 0.0457521938, 0.00196646177, 0.0117392344, -0.0225118734, -0.0131541062, -0.0130280284, 0.000194369772, 0.00101387477, -0.0155355735, 0.0153254438, -0.00240773382, -0.0139175765, 0.00570501573, 0.000678543118, 0.00672064163, 0.0108496863, 0.00956089143, 0.0124186529, -0.00907759368, -0.0192898866, 0.0202004481, -0.00447575795, 0.0225118734, -0.027835153, 0.00939979218, 0.00974300411, 0.0214332081, 0.0105905263, 0.00075559062, 0.0260840748, 0.000501684146, 0.00356869912, 0.00881843455, -0.00183688197, -0.0022676473, -0.00999516, 0.0133642359, -0.000959591358, -0.00672064163, -0.024052823, 0.0113259796, 0.0158017371, -0.0101492545, 0.0156056164, 0.0147090638, -0.0179310497, 0.00424461579, 0.0192198437, 0.0115150958, -0.0186174735, -0.00469289208, -0.0201023873, -0.00196996401, 0.0113960225, -0.00738254935, -0.00226239418, 0.00845421, 0.00136146403, 0.00106640719, -0.0168944113, -0.000734139874, -0.0172726437, -0.00979903806, -0.0016477654, 0.0153114358, 0.0108216684, 0.00599919679, 0.0302586462, 0.0154094957, -0.0177769549, 0.010114233, -0.00669262419, 0.00384887191, 0.0111999018, -0.000738517614, -0.00468238536, 0.017062515, 0.0246411841, 0.013567361, 0.00321147894, 0.0327802, -0.0204946287, -0.013595378, 0.000583984889, -0.00879742112, -0.01173223, -0.0416616723, 0.0116691906, 0.0102613233, -0.00594666461, -0.00856627896, 0.00803395081, 0.00550539279, 0.000633015065, -0.00663658977, -0.0236325637, 0.0282414034, 0.0248793308, -0.000608937757, -0.0275970064, -0.00986207742, -0.00232543307, 0.0210689828, 0.018295275, 0.0214332081, 0.0205646735, -0.0296702832, 0.0101212375, 0.00905658118, -0.000657968, -0.000162959797, 0.0167683326, -0.0152554009, -0.00140699209, 0.0179870836, -0.00896552484, -0.0010926734, -0.00226939842, -0.0197241548, 0.0191357918, -0.0148211336, 0.0136303995, 0.0118933292, -0.0292220078, -0.00126515469, -0.0117882639, 0.002367459, -0.00752964, 0.0119773811, 0.0026651423, -0.0294741634, -0.00232543307, -0.0139666069, -0.00244275527, 0.00711988751, -0.00997414626, 0.0221196301, 0.000564285205, 0.00750162266, -0.00267039565, 0.0119353551, -0.015199366, 0.0144008743, 0.00923869293, 0.0157877281, 0.00360722281, 0.0181551874, 0.00252680713, 0.0165021699, -0.00321848341, 0.0054423539, -0.00703583565, -0.0263362285, -0.000896552461, -0.0179870836, 0.00811800268, 0.0147791076, 0.0123275965, 0.0394483097, 0.00203300291, 0.00225013657, -0.0202985089, -0.00365275098, 0.00881843455, -0.0123906359, 0.0193038955, 0.0195280332, -0.00230617123, 0.00867134333, 0.00729149347, 0.00501158834, -0.0234224331, -0.00982005149, -0.00211705454, 0.0156196253, -0.0253556259, 0.0031536934, 0.00306438841, 0.00281573506, -0.0074175708, -0.00465436839, -0.0106395567, 0.00457381876, -0.0111158499, 0.0169644542, -0.00266864453, -0.000220854854, -0.00944882259, -0.0193599295, -0.0137564773, 0.00699030748, -0.0176228601, -0.00363874226, 0.00686423, -0.0214192, -0.00301886024, -0.00540733198, 0.0165722128, -0.0178329889, 0.0174127296, 0.0070953723, -0.00734752789, 0.0153114358, 0.00329728192, 0.0174827743, 0.00237796549, -0.00629688054, 0.0248232968, 0.00588012347, 0.0176228601, 0.0126778129, -0.0202564821, -0.000978853204, 0.00390490633, 0.0166842807, 0.00918966252, -0.0100371856, 0.00474542426, 0.0282834284, -0.00241648918, -0.0113680055, -0.010772638, -0.0122645581, 0.0231002346, 0.0192898866, -0.0267424788, 0.00619181572, 0.0035126647, 0.0023552014, 0.0104224226, 0.00979203451, -0.00625835638, -0.0118302898, -0.0109827677, 0.0176788941, -0.00425862428, -0.0122435447, 0.0023306862, -0.0131961321, 0.0170204882, 0.0206627324, -0.00530927163, -0.00554041425, -0.0241789, 0.00536180427, -0.00216258271, 0.0148631595, -0.00257233507, -0.0148351416, 0.00968696922, 0.0144429, -0.00423761131, -0.0179730766, 0.0136934379, -0.00237096101, -0.0109197292, 0.017706912, 0.0263782553, 0.0110037811, 0.0204666127, -0.00509213796, -0.00841218419, 0.0135183306, 0.00457732053, 0.00257058418, -0.0100301811, -0.0249493755, -0.00206452212, -0.0274989456, -0.00126077689, -0.0145129431, 0.00128966977, -0.0232823472, 0.0186034646, 0.00889548194, -0.00632489752, -0.00752964, 0.0238707103, -0.00281048194, -0.00744558824, 0.0112979626, 0.0178329889, 0.0166002288, 0.0140156373, 0.00832112785, -0.0239267442, -0.029782353, 0.0191638097, -0.00870636478, 0.0103663877, 0.00912662409, -0.0164881609, -0.0159278158, -0.0190097149, -0.00252855825, 0.00916865, 0.0121945143, -0.0253836419, 0.0255377367, 0.00593265612, 0.0190657489, 0.000274262769, 0.0124256574, -0.00495555392, 0.00682920823, -0.0145269521, 0.000788861129, -0.0155075565, -0.00675916532, 0.0135393431, -0.0187715683, -0.000864595291, -0.00988309, -0.0124466699, 0.00397144724, -0.00889548194, -0.000499495305, -6.97695577e-06, 0.00965194777, -0.0114870789, 0.00577856088, 0.00675566308, -0.0129860025, 0.0346853733, 0.0326120965, -0.0111648804, -0.0130700544, 0.0124816913, -0.00845421, 0.0347133912, 0.0148071246, 0.00869235676, 0.00945582706, -0.0126848165, 0.00489601726, 0.00538982125, -0.0254396759, 0.00974300411, -0.00584510202, -0.0021765912, 0.0211390257, 0.00447225617, 0.00411153352, 0.0167403165, -0.00925970636, 0.0101562589, -0.0170905311, -0.00740356231, -0.00616029603, 0.0011592143, -0.0163200572, -0.0165441949, 0.00815302413, -0.00683621271, 0.000199732458, 0.00167140493, -0.0037718243, 0.0100932196, 0.0205366556, -0.00266164029, -0.00792888645, -0.00270016398, -0.00731250644, 0.00140611653, 0.00399946468, -0.0124256574, 0.0186875165, -0.0104154181, -0.00430415245, 0.00590113644, -0.00748761417, 0.0296983011, -0.00398195395, -0.0125027047, 0.00690625608, 0.0113610011, -0.016460143, 0.0328642502, -0.00222036825, 0.00914763752, -0.00588012347, 0.000903556822, 0.0128739337, -0.00413955096, -0.0295582153, -0.0126007646, -0.0119283507, 0.000387645123, 0.0121664973, 0.00138335244, 0.0124046439, -0.000158034891, 0.00265463581, 0.00550539279, -0.0213771742, 0.000711813627, 0.00792188197, 0.0274008848, -0.0191498, 0.00970097817, -0.0156196253, 0.00154270069, -0.00310816546, 0.0289138183, -0.0217834245, -0.00732651493, -0.00414655544, 0.00150155032, -0.000767848163, 0.0140226409, -0.0335366651, -0.0123135876, 0.000340147119, -0.00898653828, -0.0125517352, -0.0350215808, 0.00227114954, -0.000452216162, 0.0101562589, -0.00499057537, 0.0145129431, 0.0144849261, -0.000950835936, 0.0200743712, 0.0322198533, -0.0128459157, 0.00571552198, -0.00981304701, -0.0135043217, -0.00343911932, -0.0206066985, -0.00700781867, -0.00583109353, 0.0155215645, 0.00708486605, -0.000464911485, 0.00945582706, 0.0203405339, 0.0300905425, 0.0101772714, 0.00540383, -0.0191077758, -0.0015120568, 0.00978503, 0.0143098179, 0.00907759368, 0.00613227906, -0.00779580418, 0.0230862256, -0.0102192974, -0.0114240395, 0.00382785895, -0.017076524, 0.00629688054, 0.000807247474, -0.00126427913, -0.00192443596, 0.0261821337, -0.00725647155, -0.0226799753, -0.00940679666, -0.00872737821, 0.00545636239, 0.0106745781, -0.00813201163, -0.0137774898, 0.00133257115, 0.00783082563, -0.00530226761, -0.00653152494, 0.014239775, 0.0242489427, -0.00647899276, 0.0106465612, 0.00905658118, -0.0137704862, -0.000766972662, 0.0102893403, 0.0106815826, -0.0143098179, -0.00472090906, -0.0156756602, 0.027204765, 0.0130280284, -0.0257478673, -0.0122155277, -0.025972005, 0.00848923158, -0.00386988465, 0.0116481781, -0.00876940414, 0.0120894499, 0.00555442274, -0.010443436, 0.0301745944, 0.0260420479, -9.21505343e-05, -0.0143238269, -0.0176088512, 0.0185334217, -0.0199763104, 0.00116884534, -0.00398545619, 0.00696579274, 0.0157877281, -0.0217273887, -0.00571201975, -0.00344787468, 0.0221896749, -0.000668474415, 0.00170730206, 0.0270086434, 0.0109827677, 0.013623395, 0.0123976395, 0.00210304605, -0.0146110039, 0.0104644485, -0.0017896028, 0.00196120865, -0.00827209745, 0.000579169428, -0.0181551874, -0.0219375193, 0.00158385106, -0.0123906359, -0.020928897, -0.011718221, -0.00868535228, 0.00802694634, -0.00289978692, -0.006181309, 0.0192338526, 0.0100231767, -0.0130280284, 0.0012362618, 0.00987608638, -0.00266689342, -0.0235765278, 0.0127058299, 0.0163340662, 0.000142384612, 0.0172026, -0.00409052055, 0.0262801945, -0.0173566956, 0.00639143866, 0.0189256631, -0.0205086377, 0.0074806097, -0.00329903304, -0.0207607932, 0.0109057203, 0.00107691367, 0.0148211336, 0.012649795, -0.00417107, 0.0211250186, -0.0173006617, 0.00460183574, 0.0121664973, 0.0305388197, -0.0260000229, -0.00204526028, -0.00358971208, -0.00531977834, 0.000944707135, 0.0271347221, -0.00316419988, -0.0125797521, -0.0140086329, 0.0402047746, -0.01710454, -0.00922468491, 0.0021888488, -0.00459132949, -0.00404849462, -0.0129860025, -0.0146110039, 0.0200463533, -0.0293340757, 0.0131260883, 0.000349559152, 0.0130280284, 0.00134920643, 0.00480496092, 0.00623384165, 0.00357745448, 0.00366325746, -0.0287176967, -0.00440571504, -0.00278421585, -0.0144569091, -0.012376627, -0.00562796835, 0.0145829869, -0.0148631595, -0.0110598151, 0.0110037811, -0.00372979837, 0.00916865, 0.0442112461, 0.0119493632, 0.0053548, -0.0276390314, 0.0213351473, 0.0435948633, -0.0013133093, -0.00174932799, 0.00961692631, -0.0204526037, 0.00263362285, 0.00850324, 0.00574353943, -0.0144429, -0.00731250644, 0.0185894556, -0.00269315951, -0.0116761951, 0.0140576633, 0.00722145, 0.0103173582, 0.0134693, -0.0195980761, -0.00683271047, -0.00898653828, 0.013567361, -0.0140296454, 0.00272818119, 0.00627936935, -0.0057715564, -0.000416756811, -0.00923168845, 0.0122295367, 0.0128879417, 0.00263012084, -0.0209849309, 0.0214051902, 0.0126848165, -0.0060097035, -0.000566036324, 0.0237446316, -0.00718642864, -0.00384887191, 0.00850324, -0.0241368748, -0.00284200138, 0.000351529132, -0.0101982849, -0.00645798, -0.0242349338, -0.0128038898, 0.00522521976, -0.0133222099, 0.0196120851, -0.0428664163, 0.0175808333, 0.00521821575, 0.017062515, 0.0146810468, -0.00872737821, 0.0121735018, -0.00530576939, 0.0083071189, -0.00348114525, 0.00239897822, -0.0174547564, -0.000301623368, -0.00563147, -0.00537231052, 0.00138510356, 0.0115711307, 0.00108479348, -0.0142747965, 0.0138125122, 0.00375781581, -0.0121034589, 0.000733702153, 0.0141347107, 0.003967945, 0.00881843455, 0.00421659835, 0.0100231767, -0.0200463533, 0.00729849748, 0.00174232363, 0.01710454, 0.00382785895, -0.0110037811, -0.0295582153, -0.000887797098, 0.00482947612, 0.00653502718, 0.00976401661, 0.0145269521, -0.00778179523, 0.0117602469, 0.00538631901, 0.0107236085, 0.00478394795, 0.00259860139, -0.0205366556, 0.0204105768, 0.0294461455, -0.00736854086, -0.0161799714, -0.0129229631, 0.0285916198, 0.00645447755, -0.0185194127, 0.00198922586, 0.0244170465, 0.01014225, 0.00206277124, -0.0141207017, -0.0141066927, 0.0237866584, 0.0123416055, 0.00458432501, -0.00738254935, 0.00542134093, 0.0133432224, -0.00443023024, -0.00586961722, -0.0100792116, 0.0104154181, 0.00906358566, -0.0119213462, 0.00810399372, -0.00346713653, 0.00736854086, -0.0178890247, -0.0254817028, -0.00226239418, -0.00122925756, 0.00596067309, -0.00291029341, 0.00417107, -0.0140296454, 0.00409752503, 0.0195700601, 0.00659456383, 0.00708836829, 0.00437769759, -0.00459132949, -0.0058416, -0.00101299922, 0.0164321251, 0.00568050053, 0.0160679016, -0.00888847746, -0.00579607161, -2.04520566e-05, -0.0157877281, 0.00879041664, 0.00743157975, 0.020928897, -0.00675916532, -0.00921768, -0.00856627896, 0.0198082067, -0.0186174735, 0.0043391739, 0.0196681209, 0.00743157975, 0.00834214, -0.00323424302, -0.00644747308, 0.00481546763, 0.00469989609, -0.0047734417, 0.00747360568, -0.00503610354, 0.00122750644, 0.0167403165, -0.0108216684, 0.00923168845, 0.0135883735, -0.00330603728, 0.00888147298, -0.0122925751, 0.02724679, -0.0241648909, -0.0210549757, 0.0194439813, -0.0165301859, -0.0076557179, -0.0155075565, -0.012635787, -0.0110668195, -0.00770474784, 0.00918966252, 0.00499407761, -0.0018526417, -0.000500370865, -0.0145269521, 0.0246131681, 0.0180711355, -0.00603421871, -0.00519019831, -0.0203965697, 0.020326525, 0.0196961369, -0.0117252255, 0.0147090638, 0.00484348461, 0.0055754357, -0.0275970064, 0.00207502861, 0.00190167187, -0.0185614377, 0.00899354182, 0.022203682, 0.0115641262, 0.00546336686, -0.00353893079, -0.00944882259, -0.0144008743, 0.017062515, 0.0146950558, -0.00441271905, 0.011690204, -0.0146110039, 0.00855927449, -0.00842619222, -0.00529876538, 0.00572953094, 0.0105274878, -0.016516177, -0.00254782, 0.00897252932, -0.0187995844, -0.00212230789, -0.00441271905, 0.000538019056, -0.00279997545, 0.00960992184, 0.00359671633, -0.0181271713, -0.033508651, 0.0162640233, -0.0166002288, -0.0175948422, -0.0201023873, 0.0116341691, 0.016418118, -0.00233418844, 0.0160538927, -0.00191042724, 0.00508863572, 0.00236921, 0.0144989351, -0.0163901, 0.0103453752, -0.0079639079, 0.00675216084, -0.00843319669, 0.00119598699, 0.0019927281, 0.000298996747, 0.00101825246, 0.00452128612, -0.0252435561, -0.00188065891, 0.00603071647, 0.0114800744, -0.021461226, 0.00602721423, -0.0151433321, -0.0242629517, -0.00595366908, 0.0189256631, 0.00916865, 0.00823707599, -0.00482247164, 0.0101212375, -0.00564898131, 0.0420258977, -0.025915971, 0.0160959195, -0.0181271713, -0.00664709602, 0.000277327141, -0.00561045716, -0.0157036763, 0.0182252303, -0.00829311088, -0.00657355087, -0.00265463581, -0.00668561971, 0.0267284717, -0.0307629574, -0.0044022128, 0.013567361, 0.0137774898, 0.00890248641, 0.0279892478, -0.00825108495, -0.00390490633, 0.0255517457, 0.00447926, 0.0224418286, -0.055698324, 0.0062443479, 0.0119003337, 0.00645798, -0.00257058418, 0.010170267, -0.00441271905, 0.0112209143, 0.00559995091, -0.00442322576, 0.00979903806, 0.00690275384, 0.00364574674, 0.0147931157, -0.0251314864, -0.00869936123, 0.00684321718, 0.0153534617, -0.0172866527, 0.0061567938, 0.0100792116, -0.0217974316, -0.0260000229, 0.0128669292, -0.0144989351, -0.0174547564, 0.0203125179, 0.00157947338, -0.0154515216, 0.0157877281, 0.0166842807, -0.0098690819, 0.00398545619, 0.000840080203, 0.0088044256, -0.0140786758, 0.00119423599, -0.00449326914, 0.00875539519, -0.000422447833, -0.00299609639, 0.00956089143, 0.00165739632, -0.0159418248, -0.00658405712, -0.00331304152, -0.020872863, 0.0121945143, 0.00181937113, 0.010744621, 0.0251314864, 0.00930173229, -0.0204526037, 0.00975000858, 0.0163620822, -0.0132381581, 0.0329202861, -0.00937878, -0.0160118677, 0.00391891506, 0.0179870836, 0.000675478776, -0.00206802436, 0.0243470035, -0.0066786157, 0.000646148168, -0.00680819526, 0.0252155382, 0.0217694156, 0.000770912564, -0.0257338583, 0.0308750272, -0.0627026409, -0.00556142721, 0.0119913891, 0.0162079874, -0.00839117076, -0.00287001859, 0.0267985146, -0.00622683717, 0.0185474288, 0.022203682, 0.0128389122, 0.0091756545, 0.0238987263, 0.0165582038, -0.0104084136, -0.00549138384, 0.02275002, -0.000720131269, -0.0153114358, -0.0104994699, -0.000301185588, -8.04401934e-05, 0.024725236, -0.00223087473, 0.00726347603, 0.0036037208, -0.00327626895, -0.0228760969, -0.0141907446, -0.0201163962, 0.0129719935, 0.000409095839, -0.00430415245, -0.0250054095, 0.00967996474, 0.00267389766, 0.0127058299, 0.00238496973, -0.00251630065, -0.0151573401, 0.00260735676, -0.00429714797, -0.00331654376, -0.0144008743, -0.0188135933, 0.00228340714, -0.0123976395, 0.0121314758, -0.0180431195, -0.0046228487, -0.00999516, 0.00282098842, -0.00846121367, 0.00138335244, 0.011073824, 0.0196120851, -0.0195700601, -0.0028069797, 0.0390280522, -0.000823882699, -0.00142275169, -0.0152273839, 0.000128375978, 0.00542834494, 0.0220355783, -0.00639143866, 0.00189466751, -0.0104644485, -0.00173356826, 0.00962393079, -0.0179030318, 0.00125639921, 0.00249528768, -0.0170344971, -0.010114233, 0.00408701878, 0.00129054533, 0.013007015, 0.000807685195, 0.00440921728, 0.00575754791, 0.000812500715, 0.0245851502, 0.00634591049, 0.0106185433, 0.000981479767, -0.0129089551, -0.000558156462, 0.0293901116, 0.00893050339, -0.00784483459, 0.00309765898, -0.0477414206, -0.00615329202, 0.00413604872, -0.000922818668, -0.0112489322, -0.00564898131, 0.000330735056, -0.0105204834, 0.0055123968, 0.00134657975, 0.0212931223, 0.0116972085, 0.0289418343, -0.0186314806, 0.017748937, -0.00693427306, -0.00245326175, 0.00351791782, 0.0165021699, 0.0185194127, 0.0241789, 0.0109337382, 0.0137074469, 0.00481546763, 0.00173619494, 0.00616029603, -0.00848923158, 0.0121384803, -0.0232823472, 0.00564898131, 0.000102985337, -0.0106325522, -0.00647549052, -0.00222036825, -0.00145602226, -0.0177769549, -0.0186314806, -0.00989709888, 0.00168716465, 0.0282694213, -0.00609375536, 0.00472791353, 0.00589063, -0.0126147736, -0.010744621, -0.00185089058, -0.0095468834, -0.0202144571, 0.0252295472, 0.00100862153, 0.0190657489, 0.012691821, -0.0261961427, 0.000657092431, 0.01587178, 0.00259159692, 0.0105555048, -0.0190517399, 0.011746238, 0.00781681668, 0.0043391739, -0.00151555892, -0.000718818, -0.00514116837, -0.00638093194, -0.00853826199, -0.00145777338, -0.0136794299, -0.00219585327, 0.0136163905, 0.0123135876, -0.012663804, 0.0190797579, 0.00920367148, 0.00883244257, 0.0150312632, 0.000893925841, -0.00358445896, 0.00406250358, -0.0042060921, -0.00170817762, -0.0293060597, 0.00396444323, -0.0155355735, -0.00209954381, -0.00422010059, 0.00167052948, 0.0114590619, 0.00302936672, 0.00432166317, 0.00699731195, -0.00154620281, 0.00716541568, -0.0190237239, -0.0029208, 0.0146530299, 0.00533728907, 0.0255377367, 0.0142257661, 0.0217413977, 0.0166842807, -0.00103401218, -0.0194439813, -0.0116271647, -0.00566649204, -0.0132731795, -0.000801118673, 0.0105555048, 0.00604122272, -0.00841218419, 0.00662608305, -0.0123135876, -0.00631789351, -0.0206347164, 0.00534429355, 0.00232193084, -0.00490652351, 0.0241929088, 0.0121735018, -0.0286196359, -0.0108777033, -0.00394343026, 0.0181832053, 0.00806196779, -0.00810399372, -0.00755765708, -0.0106885871, 0.0105975308, 0.00713039422, 0.0208028201, 0.0134693, 0.00779580418, 0.0103663877, -0.0193879474, 0.0116341691, 0.00527775241, -0.0140926847, -0.00460183574, 0.0125937611, -0.0158857889, -0.0023306862, 0.00669612642, -0.00482947612, -0.00234994804, 0.00706735533, 0.00913362857, -0.00455630757, 0.00993212, 0.0150452713, -0.00263712509, 0.0130140195, 0.00263887621, -0.00941380113, 0.0290539041, -0.0207327753, 0.0250894614, -0.00235870341, 0.011045807, -0.0219935533, -0.00204175827, -0.0103874011, 0.00558594242, 0.0230021756, 0.0060097035, -0.0180291105, 0.0250614434, 0.0019314402, 0.00474542426, 0.00191042724, 8.30120916e-05, 0.0222877339, -0.00354243303, 0.00444774097, -0.0110808285, -0.00855927449, -0.0193879474, -0.0103453752, 0.0214192, -0.00166527624, -0.00127478561, -0.00378583302, 0.0137774898, -0.0015260654, 0.0179730766, 0.0064649838, 0.00930173229, -0.0264202803, -0.0192198437, -0.0122015188, 0.00320797693, -0.00325000286, -0.0158017371, 0.0261401087, 0.00712338975, -0.0259019621, 0.00334280985, 0.0147370817, 0.00212405901, 0.00566649204, -0.0110247936, 0.0120824454, -0.00196646177, -0.0265463591, -0.0130560454, 0.0186034646, 0.00270891935, 0.000544585579, -0.0274709277, 0.00999516, -0.00496606, -0.00561395939, -0.00244625751, 0.011746238, -0.017762946, -0.0111928973, -0.0124816913, 0.00142975606, -0.0093927877, -0.0120894499, -0.00830011442, -0.00740356231, 0.0149191935, -0.0141487187, 0.01587178, -0.0138545381, 0.0144569091, 0.0131120803, -0.00168016041, -0.00723545859, 0.0121945143, 0.00707435934, -0.0261681266, 0.00659806607, -0.00149542151, 0.018995706, -0.00194019557, -0.0161239356, -0.0325280465, -0.00270541711, 0.00522521976, -0.00671713939, -0.00316069764, -0.0145129431, -0.00921768, -0.0118092773, -0.0149612194, -0.00471740682, -0.0204526037, -0.0201724302, -0.0084822271, -0.0208448451, -0.000867659692, 0.00156984234, -0.00982705597, -0.00983406, -0.00693427306, 0.0205926895, -0.0050080861, 0.00121087115, -0.011101841, -0.0180571266, 0.0262661856, 0.00886046048, 0.0152834179, -0.0259019621, -0.0172306187, 0.0232823472, 0.00308890338, -0.00758567452, 0.0161239356, 0.00818104111, -0.0441271923, 0.0120964544, 0.0141347107, -0.0180851445, 0.003011856, -0.0112699447, -0.0201584231, 0.00898653828, 0.00382435671, -0.00275794952, 0.058163844, 0.0206066985, 0.0168523844, -0.0277511012, 0.00675216084, -0.00914763752, 0.00640894938, 0.0312672667, -0.0251314864, 0.00147265755, 0.0188976452, 0.0108566899, -0.0110317981, 0.0136864344, 0.018995706, 0.00312917819, 0.00530576939, 0.00479795644, 0.0180711355, 0.0111578759, 0.0144008743, -0.0188276023, 0.00323599414, -0.0136444084, 0.00715140672, 0.00333405449, -0.000720569049, -0.00723545859, -0.0175668262, 0.0192758776, 0.00353542855, 0.0013071805, 0.00365975522, 0.0200743712, -0.012005398, 0.0124536743, 0.00856627896, 0.00271242158, -0.00212055678, -0.0377392545, 0.0258879531, 0.0140576633, 0.0146390209, 0.00389439985, 0.0107376166, -0.0201864392, 0.0022764029, -0.0116271647, -3.44059686e-06, -0.0293340757, 0.0347133912, -0.0327241644, -0.00813201163, -0.0190937668, 0.0156756602, 0.00209078845, 0.0192058347, 0.00126077689, 0.018995706, 0.0109827677, -0.0144849261, 0.0126007646, -0.00407651206, 0.00586961722, -0.0153814787, -0.0351336524, 0.00127391, -0.00293305749, 0.00409052055, 0.00589413196, -0.0178049728, -0.00291729765, 0.0166422557, -0.0051201554, -0.00893050339, 0.00960291736, -0.00668211794, 0.00502909906, 0.00443023024, 0.00146390207, -0.0268405396, 0.0196961369, -0.00693427306, -0.046340555, 0.00160486402, -0.0128178988, 0.00309940986, -0.00527775241, -0.00873438269, 0.00894451234, 0.00837015826, 0.0180151016, 0.00177296752, 0.00297158118, 0.0123836314, 0.0163760912, -0.018295275, -0.0105555048, 0.00268615526, 0.014568978, 0.0113259796, -0.000395743875, -0.00772576081, -0.0163200572, -0.00566299, 0.0191918258, -0.00798492, 0.00575754791, -0.00503610354, -0.00199798122, -0.00725647155, 0.0110598151, 0.0153114358, 0.00326576247, 0.0143448394, 0.00348464726, 0.00339709339, 0.0244170465, 0.00697629899, 0.00235695252, 0.000510439568, -0.00685372343, -0.0193319134, -0.000492491, -0.00869235676, -0.00966595672, 0.00373680284, 0.00362823578, 0.0255657546, 0.0017755942, 0.0154235046, -0.01137501, 0.00720043713, 0.00490302127, 0.0152273839, 0.0153534617, -0.00992511585, -0.000545898918, 0.0127338469, 0.00936477073, -0.00542484317, 0.00577505864, 0.0153674698, 0.00774677377, -0.0038593784, 0.0127828773, 0.0184773859, -0.007133896, 0.040540982, 0.00785884261, -0.00220986176, -0.00101299922, -0.0156896692, -0.00300835376, 0.00699380971, 0.0175248, 0.0114940833, -0.0116481781, 0.00834914483, -0.015773721, 0.000462722644, -0.00262836972, 0.0124816913, 0.00559294643, 0.00612527458, -0.0117672514, -0.00831412338, -0.00392241729, -0.00555792497, 0.00714790495, 0.00767673086, 0.0346293412, -0.0210829917, 0.00384536968, -0.0250894614, 0.00142100069, -0.0143098179, -0.00658755936, 0.00206102012, 0.00513766613, -0.0106185433, 0.0040554991, 0.00626185862, 0.0516638383, 0.00374030485, -0.00272467895, 0.0150312632, -0.00830011442, 0.0209569149, -0.023492476, -0.0131541062, -0.00391191058, 0.0210549757, 0.00899354182, 0.0185614377, 0.00764871342, 0.0144148832, 0.004426728, 0.00708136382, 0.0112629402, 0.0299784746, -0.00620232197, -0.00726347603, -0.0202564821, -0.00708136382, 0.00487850653, -0.000111631292, -0.0149191935, 0.00301360711, 0.00206102012, 0.00109880208]
24 Nov, 2021
jQWidgets jqxScrollBar step Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The step property is used for setting or getting the step for the specified jqxScrollBar. This step value is used to increase or decrease the step on the scroll bar when the user presses a scrollbar button. Syntax: For setting the step property. $('#jqxScrollBar').jqxScrollBar({ step: 70 }); For getting the step property. var step = $('#jqxScrollBar').jqxScrollBar('step'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar step property. In the below example, the value for the step property has been set to 70. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar step Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin: 28px;" id="button_for_step" value="Value of the step property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 200, height: 20, showButtons: true, step: 70 }); $("#button_for_step").jqxButton({ width: 250 }); $("#button_for_step") .jqxButton().click(function () { var Value_of_step = $('#jqx_Scroll_Bar').jqxScrollBar('step'); $("#log").html((Value_of_step)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollbar/jquery-scrollbar-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-step-property?ref=asr9
PHP
jQWidgets jqxScrollBar step Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0386782959, 0.00769858528, -0.0128927659, 0.0406455025, 0.0554449446, 0.00449809246, 0.0238788556, 0.0421587378, -0.0144060012, -0.00440729829, -0.00625722855, 0.0242420323, 0.0193088837, -0.00864057429, 0.0199747086, 0.00901888311, -0.0344412401, -0.0147162145, -0.0143379057, 0.0346228257, 0.00408195239, -0.0224564131, -0.0409178846, 0.00937449373, -0.0629505962, 0.0112130744, 0.021639267, 0.0133391703, -0.0124085303, 0.0346530899, -0.0357728861, 0.0185976643, -0.0238788556, -0.00373769156, -0.0298561342, -0.0131121846, 0.00788395666, -0.00876919925, -0.0159797668, -0.0459115617, -0.00833036099, 0.010342964, -0.00938206, 0.0313845, -0.00845142, 0.0191726927, 0.0259217229, 0.0144286994, -0.0239545163, 0.0383151211, 0.00980576593, 0.0246354733, 0.0127565749, 0.0555962697, 0.0141865825, -0.0520553, -0.00184803875, 0.0384361781, -0.0301739145, -0.00681712572, 0.0427943, -0.0265724137, -0.031051591, -0.0377400927, -0.043399591, -0.00551574305, -0.00631019194, 0.0385269746, -0.0248624589, 0.0255282819, -0.0397073, 0.00941989, 0.0414323844, 0.0301739145, 0.0106531773, -0.00118126941, 0.0112660378, -0.00417274656, 0.0095939124, 0.0108952951, -0.036408443, -0.0041273497, -0.0407665633, -0.00474021, 0.00747538311, 0.0177956484, 0.0369229428, -0.0314147659, 0.0768118277, 0.0108574638, -0.0157225169, -0.0156165892, 0.00520552974, 0.0109406924, -0.0107212728, 0.00687387213, -0.0267237369, 0.0188549142, -0.00921560358, 0.0201109, 0.0443983264, 0.0657349452, -0.0220781043, -0.0415534452, 0.0196871925, 0.0302647091, 0.0261033103, 0.0124841919, 0.00363176502, -0.024605209, 0.0340780616, -0.0110617513, 0.0196569283, -0.0243630912, -0.0415231809, 0.0314450338, -0.000538144377, -0.00945772137, 0.0207464583, -0.0287817381, 0.0203832816, 0.018945707, -0.0102370381, 0.0357123576, -0.026073046, 0.0120075233, 0.000428671221, -0.0210339725, 0.030643018, -0.0257098693, -0.0119923912, -0.00350503158, -0.0101462435, -0.0039230627, 0.0130440891, 0.0208069868, -0.00377741386, 0.00581082422, -0.0328977369, -0.011424927, -0.0204892084, -0.0292811058, 0.00224148, 0.00647664769, -0.00485748565, 0.0294778254, 0.00792178791, 0.0328977369, -0.0500275642, 0.0343201794, -0.0266934726, -0.0115838172, 0.00903401524, -0.00216960139, 0.0455786511, -0.012098317, -0.0359544754, 0.037891414, -0.023924252, -0.00954094902, 0.00245144148, -0.00123896147, 0.0315358266, 0.0275257528, -0.0164488684, -0.00495206285, 0.0274349581, 0.0195964, -0.0514197387, 0.0314147659, 0.0121361483, -0.0246354733, -0.00326858857, 0.00921560358, -0.0396165028, -0.026466487, 0.00688900426, -0.0171449576, 0.0117124422, -0.0448220335, -0.0158587079, -0.040433649, -0.00594323222, 0.022834722, 0.0104034934, -0.0157376491, 0.00472129462, 0.00482722092, -0.0394954458, -0.0286606792, -0.0246657375, 0.00641990127, 0.0366808251, 0.040584974, -0.000137136958, -0.0133467363, -0.0109028611, 0.000141511162, -0.0362268575, -0.0157830454, -0.0143076414, 0.00945772137, -0.00625722855, 0.023924252, 0.0277830027, 0.00433920277, -0.00911724381, -0.0396770313, 0.0551423, -0.00830766279, -0.00668471772, -0.0157073829, 0.0482419468, -0.00693061808, -0.00300377235, 0.0150264278, -0.0152685456, 0.00763805583, -0.00734675815, -0.0158587079, 0.00913994201, -0.0271777082, -0.0203530174, -0.00769480225, -0.0777197704, -0.0192634873, -0.00825469941, -0.0546580628, -0.00723326532, -0.00204286794, -0.0225320756, -0.00506555568, -0.0287363417, 0.012355567, 0.0129230302, 0.032110855, -0.0228649881, 0.0130894864, 0.00485748565, 0.0371347964, 0.00196342287, 0.000558951346, 0.00995708909, -0.00575029477, -0.017614061, 0.0182647519, -0.00476669148, -0.0246657375, 0.02095831, -0.00876919925, -0.0253164284, -0.004116, 0.0143227736, -0.0235308111, 0.028236974, 0.0149507662, 0.0076229237, 0.00305295247, 0.0407665633, -0.00221310672, 0.0441259444, 0.0152912438, -0.0122799054, -0.00560275419, 0.0539619736, 0.0255131498, 0.0375585034, -0.00787639059, 0.0111828102, -0.0297804736, 0.0301739145, -0.0132862069, 0.0564739481, -0.00496341242, -0.00913237594, 0.00850438327, -0.0243479572, -0.0269809868, 0.0164488684, 0.00397602608, 0.00968470704, -0.00499367714, 0.0473642685, 0.0705773, 0.0115535529, -0.0191575605, 0.0206254, -0.0332911797, -0.0175837949, 0.018945707, -0.0230768397, -0.013838538, 0.0232281648, 0.0275106207, 0.0171298254, 0.00830009673, -0.00434298581, -0.0123480009, -0.0122420751, -0.00287514739, -0.0309759285, -0.015177751, -0.026602678, -0.0144967958, 0.0265572816, 0.0298864, 0.0290238559, -0.0339267366, -0.0194450747, -0.00475155935, 0.0535988, -0.00798231736, -0.0160554275, -0.0284185614, -0.00574651174, -0.0207313262, 0.0300831199, 0.0415231809, -0.0228649881, -0.0103278318, -0.00710842339, -0.00406682026, -0.0369229428, 0.0460326225, 0.0438232981, -0.0277376063, -0.0147994421, 0.00367148756, -0.000270017947, 0.00348233315, -0.0155106634, -0.0225926042, -0.003864425, -0.0104034934, 0.0227893256, -0.0268145315, 0.00623453, -0.0281915758, -0.0155409276, 0.0278737973, 0.00323832384, -0.00240415288, 0.000448059553, -0.0140579576, 0.0424916521, -0.0242268983, -0.00109520415, 0.00147635036, 0.0428245626, 0.0132256774, 0.00131084025, 0.0322319157, 0.033745151, 0.0247716643, 0.0382848568, -0.0121285822, 0.0102748685, -0.0314450338, -0.0224564131, 0.00551196, 0.0246657375, 0.00307943416, -0.000186317106, 0.0188397802, 0.0440351516, -0.0513289459, -0.0211550314, -0.0270263851, -0.0184463393, -0.0148145752, -0.0250743106, -0.0311121196, 0.0183252804, 0.0423705913, -0.0259822533, 0.00752078, -0.0382243283, -0.0288422666, -0.026466487, 0.0221840311, -0.0192332231, 0.0444588587, 0.0135283247, 0.0241512377, -0.00982846413, 0.00868597161, -0.0145800235, -0.00871623587, 0.0366808251, 0.00390036427, -0.058592476, 0.0664007738, -0.00732027646, -0.0398283564, 0.0103127, -0.0262092371, 0.020156296, -0.00249873, -0.00673768064, 0.0119999573, 0.0012597685, -0.0326556191, -0.00918533932, -0.00788395666, 0.00402142294, 0.00297539914, -0.0496643856, -0.0362268575, 0.00786125846, 0.0148902368, -0.00643125037, -0.0109028611, -0.0189759731, 0.0374979749, 0.0202773549, 0.00108858373, 0.0143227736, 0.0467892401, -0.0108045014, -0.0445799157, 0.0330793262, -0.0155409276, -0.042067945, 0.00180264167, -0.0384664461, -0.00636315485, -0.0720905364, -0.0220327079, 0.0268447958, -0.00394954439, -0.0276770759, 0.0020031454, -0.000327946502, 0.00850438327, 0.0364689752, 0.00189532735, 0.0518434457, 0.00140636321, -0.00591675052, -0.0325345621, -0.0065447432, 0.00064974546, 0.0156922508, 0.0223353542, -0.0196417961, 0.00444134604, -0.0578661226, -0.0069646663, 0.0180982966, 0.0027276068, 0.00202016928, -0.0316266194, -0.00641233521, -5.39976791e-05, 0.0135888541, -0.0122345081, -0.0228195898, -0.00674146367, 0.037891414, -0.0396467671, -0.0392230637, -0.00366392126, -0.00941232406, -0.004906666, 0.0112282066, -0.0396467671, -0.0227741934, 0.0170541629, -0.0164488684, 0.0338359438, -0.040857356, -0.0301739145, 0.0221083704, 0.0639190674, 0.0142698102, -0.00401385687, -0.0165850595, 0.00326291379, -0.000892808894, 0.00641990127, 0.0102748685, -0.0251953695, 0.018279884, 0.0387993567, 0.00470994506, -0.00108007179, 0.0153820384, -0.0368321501, -0.00277300389, 0.0183404125, 0.0082773976, -0.00618535, -0.0191424284, 0.00835305918, 0.0146102877, 0.0336846225, -0.0374677107, -0.00175913621, 0.0167363845, -0.0204135459, -0.000953338342, 0.0153593393, -0.027419826, 0.00879946444, 0.0148978028, -0.0159041043, -0.0241361056, 0.0191878248, 0.0429758877, -0.014239545, 0.0250894427, -0.0187792517, -0.0368321501, 0.0360150039, -0.0235913396, -0.0415534452, -0.0229103845, -0.0167817809, -0.000796340173, 0.00938962586, 0.0259217229, 0.014511928, 0.00856491271, 0.0158133097, 0.028236974, 0.0258611944, -0.0122345081, -0.0227893256, -0.00211096345, 0.0221235026, -0.00714247115, -0.00479317317, 0.0305219591, 0.0189305749, -0.0262697674, 0.0251197089, -0.0257098693, -0.00810337532, -0.0222899579, 0.0343201794, 0.00237577967, 0.0237275325, -0.0333819725, -0.000438128947, 0.0105094202, 0.00805797894, -0.0160554275, 0.0032061676, 0.0201260317, 0.0291600469, 0.0251953695, -0.00786125846, 0.0168271773, -0.0118032368, 0.0184312072, 0.0100932801, -0.00421436084, -0.017750252, -0.00184993027, -0.0165093988, 0.008065545, -0.000893754652, -0.00482343789, -0.0116821779, 0.00377363083, -0.0321713835, -0.00266329432, 0.0111298468, -0.0483024754, 0.0175535306, 0.0147010824, 0.00296404981, 0.00749808177, 0.00718030194, 0.0127944052, 0.00617778348, 0.0460628867, -0.0166153256, 0.00651447847, 0.0225018114, 0.00505420612, -0.0246506054, -0.00465698214, 0.0287817381, -0.00370742683, 0.00910967775, -0.0295534879, -0.0173870753, -0.0401612669, -0.0153139429, -0.0081866039, 0.0325345621, 0.00670741592, 0.00549682789, 0.000538144377, -0.000946717919, -0.0154879643, 0.014118487, 0.0102294711, -0.0341991223, 0.02365187, 0.0363176502, 0.0184312072, 0.000557059771, -0.0122496411, -0.0313239731, 0.0123253027, 0.00808067713, -0.00162294495, -0.017750252, -0.0240453109, 0.0112433396, 0.0185522661, -0.0112055084, -0.0161916185, -0.00404033856, -0.00699114753, 0.0223807525, -0.00564058498, -0.00685873954, -0.0216090027, -0.00807311106, 0.0140730897, 0.00815633871, 0.021911649, 0.00139785127, -0.0142773762, -0.0122193759, 0.00509582041, -0.0401612669, 0.0225320756, -0.00420679431, 0.0110920155, -0.0014990489, 0.0179772377, 0.0270415172, -0.0205346048, 0.028766606, -0.0473037399, 0.0241058413, 0.0248473249, 0.0384664461, -0.0115081556, 0.0529027097, -0.0105623836, 0.0134829273, 0.00870110374, 0.00943502318, 0.0230768397, 0.0156317223, -0.0213971492, 0.00578434253, 0.00195774832, 0.0136645157, 0.0067452467, 0.00976793468, 0.00719921757, 0.0206556637, -0.0018943816, 0.00215636054, -0.0120529206, -0.000779316237, 0.0388296209, 0.0220781043, 0.0178259127, -0.000860179774, 0.0469102971, 0.0196115319, -0.0126052508, 0.027283635, 0.00331209414, -0.00484991958, 0.0433088, 0.0069760154, -0.0112206405, 0.00759265898, -0.0272382386, -0.0231978986, 0.0375282392, 0.0202016924, 0.0200655013, 0.0148297073, 0.0105850818, 0.0110995816, -0.000203577452, -0.0140806558, -0.035076797, -0.000410701556, 0.0204740763, 0.00974523649, -0.0124085303, 0.018673325, 0.0281764437, 0.0319595337, 0.0156922508, -0.0111147147, 0.0206102673, -0.00710464036, -0.0138688032, -0.0290995166, -0.00901888311, -0.0245446786, -0.0295534879, 0.00922317, 0.0193694141, 0.025936855, 0.00159268035, 0.00260276487, -0.00878433138, -0.0186127964, 0.0243479572, 0.0309002679, -0.0108196335, 0.0451549441, 0.00608698931, 0.00316455355, -0.0143379057, -0.0300831199, -0.0232432969, 0.0124312295, 0.000222611125, 0.0306884144, -0.0167817809, -0.0364992395, 0.000636031793, 0.000459645264, 0.0156619865, -0.0225926042, 0.00826226547, 0.000330783805, -0.00209204806, 0.0125522884, 0.0162067506, -0.0108574638, -0.0140503906, 0.0267994, -0.00183385215, 0.0110087879, -0.00225850381, 0.00179318397, -0.0283277668, -0.0355610326, 0.0164942667, 0.0265572816, -0.00652204454, -0.0387388282, 0.0260427818, -0.00822443422, 0.0174930021, -0.0127414428, 0.0184917375, -0.0437930338, 0.0318082087, -0.0230768397, -0.00859517697, -0.00604915852, -0.021911649, 0.0137780085, 0.0152609795, 0.0115308538, -0.00305862701, 0.0211550314, -0.0236064736, -0.0018518219, 0.0122723393, 0.0386782959, -0.040463917, 0.0331701189, 0.0252407677, -0.0357426219, -0.000192464635, 0.00214501121, 0.0384059139, -0.00139690551, -0.00071405794, 0.017462736, -0.0119999573, -0.000257722917, 0.00551196, 0.00505042309, -0.00760400807, 0.00350692309, 0.0160705596, -0.00306619331, 0.00627992721, -0.0299771931, 0.0122647732, 0.0342293866, 0.0137628764, 0.0074299858, 0.0067603793, 0.0125749866, 6.75636e-05, 0.016267281, 0.0139671629, -0.0307186786, -0.00227552769, 0.027419826, 0.0259065907, -0.0196569283, 0.0198839139, -0.012355567, 0.00985116232, 0.0413718559, 0.0351675898, -0.000864908623, -0.0409481525, 0.00941232406, -0.0277376063, 0.000930639799, -0.036287386, 0.0123177366, -0.031051591, -0.0282067079, -0.0200806335, 0.013036523, 0.01747787, -0.0165699273, 0.0120756188, 0.0316266194, -0.0169028398, 0.00575407781, 0.0414021201, -0.0212306939, -0.0379519463, 0.0337754153, -0.00406682026, 0.011288736, 0.0277527384, 0.0187489875, -0.00532280561, 0.0225018114, -0.0403731205, 0.00863300823, -0.0131878471, 0.0168120451, 0.0237577967, 0.00429002242, 0.00243630912, 0.0270415172, 0.0108574638, 0.00529632391, 0.000971308, -0.00612482056, 0.0242722966, 0.00492179813, 0.00985116232, 0.0443075337, 0.0328674726, -0.000699871394, 0.0200957675, 0.0247111339, 0.0073089269, 0.029962061, -0.0346228257, 0.0219721776, -0.035076797, 0.0201714281, 0.0183706786, -0.0157527812, -0.0336543545, -0.00641233521, 0.000141156488, -0.00648799678, 0.0324740335, -0.0161916185, -0.0110693173, -0.0320200622, -0.0191878248, -0.0014583806, 0.00495584588, 0.0107742362, 0.0159495, 0.00383983483, 0.0203227513, -0.000565571769, -0.0523579456, 0.0145421922, -0.000383037725, -0.0328977369, 0.0341688544, -0.0188549142, -0.0449733585, -0.0147237806, -0.0117729716, 0.0381940641, -0.0345017686, -0.00204475946, 0.0207313262, 0.00431272108, -0.0141790155, -0.00346152601, 0.00357501861, -0.0426429734, -0.0256947372, 0.0274349581, -0.00179129245, -0.0188397802, -0.0149885966, -0.0139293326, 0.0180982966, -0.0234248843, 0.0261033103, -0.0135207586, 0.0234702807, -0.02847909, -0.000991169247, 0.0308700036, -0.00589026883, 0.00495206285, 0.0407968275, 0.003092675, -0.00307565113, -0.0174476039, 0.0283580311, -0.0025668256, -0.0152458474, 0.00701762922, -0.00508825434, -0.00353718782, -0.0147616118, 0.000329128699, 0.0123707, 0.0248019286, 0.00492179813, -0.0153820384, -0.0404941812, -0.019097032, -0.00764183886, 0.0121739786, -0.00363365654, 0.019490473, 0.0544462092, 0.00327426312, -0.0396770313, -0.0205800012, 0.0186279286, 0.0019322125, -0.0408876203, 0.0204135459, 0.0618005358, 0.00618535, -0.0264362227, 0.0107212728, 0.0106758764, -0.0211399, -0.036559768, 0.0303706359, -0.00907941256, 0.00973010343, -0.00954094902, -0.0235308111, 0.0192786194, 0.00396846, 0.0153366411, 0.00183290639, -0.00802014768, 0.0060907728, -0.0134072658, -0.000381855498, -0.00636693789, -0.0177199878, -0.0134072658, 0.0033196602, 0.00194450747, -0.0377400927, 0.00857247878, 0.00669228379, -0.000239753237, -0.0298258699, 0.00562923588, -0.00595836435, 0.0396165028, 0.0102521703, -0.0192483552, 0.0251499731, 0.00388144888, -0.0346530899, 0.00836062618, -0.00957878, 0.00679821, -0.0170087665, 0.0089507876, 0.0228801202, 0.0238334574, 0.000314705685, 0.0250137821, -0.0127338758, -0.00394197833, 0.0315963551, -0.0024930553, -0.02822184, 0.00785369147, 0.00708572473, 0.0240453109, 0.0303252377, 0.0257401355, -0.0214576777, -0.0166455898, -0.0288573988, -0.00803528, -0.00799744949, 0.000162791024, 0.0147086484, 0.022970913, 0.00357501861, -0.0221991632, 0.0159646347, -0.00580704119, 0.00607185718, -0.0641006529, 0.00426732376, 0.00712355599, 0.0255585462, 0.0284034293, 0.0131424498, -0.00486126868, -0.0305522233, 0.0217603259, 0.0068549565, 0.029962061, -0.0146556851, 0.0404941812, -0.0108498977, -0.00167590822, 0.004365684, -0.00426732376, -0.0040441216, 0.000735810725, 0.0191575605, 0.0289935917, 0.0176745895, -0.00945772137, -0.00176102773, 0.00226607, -0.00811094232, -0.00813364051, -0.0282067079, 0.018945707, -0.0122420751, 0.0245446786, 0.00768345268, 0.000410938, 0.0201865602, 0.00215636054, 9.01439053e-05, -0.0114097949, 0.0124917589, -0.00831522886, -0.0212306939, 0.0245749429, 0.0122118099, 0.0131878471, -0.00733162556, 0.0118183689, 0.00945772137, 0.0111828102, -0.0258157961, 0.0189608391, 0.0221386347, -0.0105623836, -0.0133618684, -0.0180982966, 0.00830009673, -0.0124085303, 0.0261335764, -0.00662418827, -0.00751699694, -0.0115989493, 0.0159495, -0.00786882453, 0.0281461794, 0.00459645269, 0.00255736778, 0.0105321184, -0.0116140824, 0.00286190654, -0.0018991105, 0.00832279492, -0.0286606792, 0.00623453, -0.00694196764, -0.0086178761, -0.00693818461, -0.0121664125, 0.00226228707, 0.0174476039, 0.000459881703, -0.0205043405, -0.0113795307, -0.00550061092, 0.00738080591, 0.00563680194, -0.0136872148, -0.021775458, -0.0185976643, -0.00525471, 0.0837727115, -0.00582595635, -0.00455483887, -0.00145932636, -0.0373163857, -0.0388296209, -4.83526019e-05, 0.0105245523, 0.0269355904, -0.0206102673, -0.00472507766, 0.0281007811, 0.00649934635, -0.00960904453, -0.00143946521, -0.029432429, -0.0065333941, 0.00272004073, 0.0184766054, -0.0243933555, -0.0141487513, 0.0137401773, -0.00384740112, 0.00171941379, 0.0181285609, 0.0120831849, -0.0225472078, -0.0230011791, -0.0329582691, 0.0130894864, 0.0301436502, 0.016267281, 0.0268599298, 0.00833792705, 0.0151701849, 0.0244236197, 0.00605294155, 0.00823956728, -0.0327464156, -0.0074299858, -0.0175989289, 0.00744511839, 0.0107061407, 0.00790665485, 0.00166361325, -0.00886756, -0.0334122367, 0.00681334268, -0.014118487, 0.0361057967, -0.0226531345, 0.00106683094, -0.0363479145, -0.00240982743, -0.00688522123, 0.00391927967, -0.014511928, -0.0132635087, 0.0131575819, -0.0273290314, -0.00133543031, 0.00623831293, 0.000386584376, 0.0179772377, 0.00644638296, 0.0194299426, -0.00042134148, 0.0267691351, -0.0268296637, 0.0410692096, 0.0294778254, 0.0123933982, -0.0137477443, -0.00370931835, -0.0195510015, -0.00407060329, -0.00627236068, 0.0183706786, 0.0213971492, -0.0221840311, -0.022441281, -0.0265270174, 0.000890917378, 0.0140201263, -0.0169482362, 0.00648043072, -0.0239696484, -0.0151323546, 0.00617021741, 0.017462736, -0.00853464752, 0.00736567331, -0.0361057967, -0.00786882453, -0.00764183886, -0.0396467671, 0.0252105016, 0.00257817493, -0.0156014571, -0.00682090875, 0.00817147177, 0.0189911053, 0.0031115904, 0.0107439719, 0.00912481, -0.0336240903, 0.0101689417, 0.0177653842, -0.0248473249, 0.0222748257, 0.00927613303, -0.00466833124, 0.00119167287, 0.00797475, -0.00314752967, 0.0118864644, -0.00773641607, 0.00602646032, -0.0077553317, 0.0209129136, -0.0199293103, 0.012355567, -0.00371688441, 0.00626857765, 0.00826226547, -0.0101462435, -0.0152988099, -0.00171184761, 0.00525092706, -0.0214122813, -0.0392835923, 0.0148221413, -0.0236972664, -0.000834643899, 0.00216770987, -0.0102521703, -0.0160856918, 0.0214122813, -0.00199936237, 0.0181890894, -0.00351259764, 0.0121966777, 0.00952581689, 0.0178107806, 0.0171600897, 0.0312331785, 0.00103372894, 0.00284109963, 0.0312331785, 0.0130213909, -0.040433649, 0.00453214, 0.0270869136, -0.00157092756, 0.0317779444, -0.0127187436, -0.0117956698, 0.000571719254, -0.02499865, 0.000451606204, 0.0025006216, 0.0153744724, -0.000443803583, -0.000812418293, 0.000775060267, -0.0118032368, 0.01035053, -0.0292054433, 0.00694575068, 0.0134299649, 0.00106021052, 0.0158284418, 0.0130819203, -0.0104640229, 0.0357123576, 0.0180831626, 0.00864057429, 0.00770615134, 0.0220024437, 0.0120075233, -0.00135150843, 0.0163126774, -0.0240453109, 0.00161348726, 0.00216014357, -0.00748673221, -0.0211701635, 0.00520931277, 0.0198082514, 0.00675281323, -0.0181890894, 0.0271625761, 0.0165699273, 0.00780072855, 0.0295988843, 0.00210718042, 0.010751538, -0.0334122367, -0.00844385382, 0.0124614937, -0.0181588251, -0.00139785127, 0.0284336936, 0.0216846634, -0.00134110486, 0.0138688032, -0.0197174568, -0.00805041287, 0.0171146933, -0.00965444185, 0.0205346048, -0.00160592108, -0.0141638834, 0.00817903783, 0.00458510313, -0.00293378509, -0.000703654485, -0.00871623587, -0.0191726927, 0.00469481293, 0.00405168766, -0.011689744, -0.0318687372, 0.00876163319, -0.0135283247, -0.011288736, -0.030113386, 0.00171184761, -0.00801258162, 0.0237275325, 0.00176291924, 0.0462747402, 0.027419826, 0.0129457293, 0.0277376063, 0.0145043619, 0.0141714495, -0.0210037082, -0.0133391703, -0.00297161611, -0.0195964, 0.0140125602, -0.011288736, 0.0200806335, 0.00618535, -0.000191873522, 0.0385269746, -0.0263454281, -0.0203378834, 0.00617400045, 0.0170238987, 0.00103845785, 0.0108196335, -0.0442470051, 0.00919290539, 0.0131500158, -0.0191121642, -0.00123328692, -0.00697223237, -0.0297048111, 0.0227439292, 0.0135661559, -0.0218057223, 0.00737702288, -0.0389204137, -0.00876919925, -0.0113643985, 0.00876163319, -0.0140352584, -0.0121966777, -0.00619291607, -0.00863300823, 0.00288460497, 0.0053492873, 0.0253769588, -0.0142925084, 0.0216544, -0.00823956728, -0.00903401524, -0.0123933982, 0.0072030006, 0.0149583323, 0.00300188083, -0.00159551762, -0.0319897979, 0.0205497369, -0.00513743423, 0.0322016515, -0.00198990456, -0.000687103486, 0.0238485895, 0.0141638834, -0.0117956698, -0.0010677767, 0.00923073571, 0.0207464583, 0.023122238, -0.013445097, -0.0141336191, -0.020564869, 0.0172508843, -0.00864057429, -0.00361663266, -0.0264210906, -0.0099343909, 0.0113870967, -0.0025668256, -0.0149053689, 0.00376795628, -0.0183858108, -0.0150112957, -0.0234400164, -0.0210491046, -0.00363933132, -0.024605209, 0.00611725403, 0.0088297287, -0.0108574638, -0.0109936558, -0.00786882453, -0.0123404348, -0.0139217656, -0.0452154763, 0.00813364051, 0.0189911053, -0.012098317, 0.0166001935, -0.0226380024, 0.0142925084, -0.00194261596, -0.0179015752, -0.000333857577, -0.0278435312, 0.00996465515, -0.0290238559, 0.0212760903, 0.00409330195, -0.0116216484, -0.00693440158, -0.0100478837, -0.0103883613, 0.00561032025, -0.0113795307, 0.0257098693, 0.004365684, -0.00561410328, -0.00854978058, -0.00976793468, -0.0264210906, 0.008065545, -0.00618156651, 0.0150264278, 0.0190062374, -0.00265951129, 0.00970740523, 0.050663121, 0.0018849239, -0.00886756, -0.0154350018, 0.0034331528, -0.0203832816, 0.00139123085, 0.00933666248, 0.00960904453, -0.00174116658, -0.0290692523, -0.0193845462, -0.00450565852, -0.00326669705, 0.00541738281, 0.00427110679, 0.00885999389, 0.00923073571, -0.0116746109, 0.0164488684, 0.0105623836, 0.0383453853, -0.0191424284, -0.00448296, 0.0192483552, -0.0242722966, -0.0115535529, 0.00262546353, -0.0270263851, -0.00316455355, 0.0131121846, -0.00263870438, -0.00123801571, 0.00786125846, 0.00412356667, 0.030113386, 0.0172962807, 0.0090415813, -0.00451700762, -0.0158889722, 0.0230011791, -0.0235610753, 0.014254678, -0.0311121196, -0.01102392, 0.0101538096, 0.00258763251, -0.00915507413, 0.00984359626, 0.0267842673, -0.000905103923, 0.00477425801, -0.0290541202, 0.0100251846, -0.0181739572, -0.011417361, 0.032383237, -0.0207918547, 0.0114400601, 0.0147994421, 0.0109104272, -0.00580325769, 0.0463050045, 0.00550817698, -0.00471372856, -0.00329885329, -0.0113870967, -0.0254526194, -0.00771371741, -0.00618156651, -0.0309456643, 0.0145346262, 0.00276732934, -0.00160119229, 0.0210339725, 0.00238902052, -0.00161727041, 0.00548547832, -0.00284677418, 0.0137931406, 0.0113870967, -0.0272079725, -0.00429002242, -0.0092610009, 0.00951068476, -0.0203378834, 0.00840602256, 0.0250894427, 0.00480073923, 0.00455105538, -0.0118032368, 0.0132862069, 0.00530389, 0.015994899, 0.000542400347, -0.0115686851, -0.00684360741, -0.0149734644, 0.0310213268, 0.0107061407, 0.00701762922, -0.00657122489, -0.0012644974, 0.00716138678, -0.000755199057, 0.0230011791, 0.0116594788, -0.0176594574, 0.0190062374, 0.0191272963, 5.78103209e-05, -0.0156468544, 0.010085714, -0.0236972664, 0.000801541901, 0.0253466927, -0.0210642368, -0.00957121421, 0.00334614189, 0.0125825526, -0.00470616203, -0.0163883399, 0.0105775157, -0.0262395032, -0.00303782, -0.00621183123, 0.013709913, 0.00538711809, 0.0102748685, 0.043702241, 0.0112736039, -0.00783855934, 0.0165547952, -0.00339153898, -0.0131954132, 0.0079671843, -0.00052159332, -0.00287893042, 0.0154728321, 0.0184917375, 0.00270490837, -0.00452835718, 0.0233643558, -0.0241209734, -0.0118183689, -0.0071916515, 0.00725974701, -0.0106910085, -0.0248775911, 0.00368094514, 0.00923830271, 0.00129097898, -0.0195056051, 0.0117124422, 0.0176291931, -0.00850438327, -0.00172981725, -0.0351070613, 0.0144060012, 0.0195661336, 0.00356366951, -0.0203530174, -0.0132256774, 0.00286379806, 0.0288573988, 0.0164186042, 0.01613109, 0.0156014571, -0.028902797, 0.0198839139, 0.00064974546, 0.00856491271, -0.00243820064, 0.00681712572, -0.0119318618, 0.00671876548, 0.0261184443, -0.00607942324, -0.00797475, 0.00635180576, -0.0135964202, 0.00240793591, -0.000123423262, 0.00247981446, 0.0131954132, -0.0362571217, 0.00378498016, -0.0137855746, -0.0224110167, -0.00879946444, -0.00390036427, 0.00850438327, -0.0351978578, -0.00179507548, -0.0166758541, -0.00289406278, 0.00249683857, -0.00262735505, 0.016464, 0.0083984565, 0.00168442016, -0.0106002139, 0.00481965486, -0.00573516218, 0.00280894316, 0.020156296, 0.00992682483, 0.00288460497, -0.000282785884, 0.0102294711, 0.00439594872, -0.00331776869, 0.00802014768, -0.02339462, -0.0260125175, 0.0275106207, -0.0127565749, 0.012226942, 0.013172714, 0.018416075, 0.0409178846, -0.00924586877, 0.000106931366, -0.0157073829, 0.00198233849, 0.0165396631, -0.00581460726, 0.00972253736, 0.00330831087, -0.00658635702, -0.0157073829, 0.005243361, 0.0182042215, -0.0178410448, -0.0032213, 0.00711598946, -0.00977550074, -0.0253920909, 0.00812607445, -0.0175989289, -0.00924586877, -0.0077401991, -0.00108007179, 0.00519418065, 0.00314185512, -0.0105926478, 0.00674903, 0.0159343686, -0.0012692262, -0.0215182081, -0.0190062374, -0.010085714, 0.0107969344, -0.00506933872, 0.000398879405, 0.00606429111, -0.0281461794, 0.00902644917, 0.0044753938, 0.0139142, 0.00429002242, 0.018673325, 0.026481621, -0.0139444647, 0.0218057223, 0.0102900006, 0.0244992822, -0.00251575396, 0.0044602612, 0.0200201049, -0.0109785227, 0.00867083948, -0.00798231736, -0.0308548696, 0.00221499847, 0.0119772581, 0.015586325, -0.0115081556, -0.0126430821, -0.0120756188, 0.0181588251, -0.0198082514, 0.00456618797, -0.00147067569, -0.0117275743, -0.00267275213, 0.00140541745, -0.0223202221, 0.00550439395, 0.0101311114, 0.0138309719, -0.0137780085, -0.0191121642, 0.00745268445, -0.00551952608, -0.0186430607, 0.022168899, 0.00451322459, -0.0218511205, 0.0052168793, -0.021639267, 0.0212609582, 0.0235459432, -0.0174476039, -0.00957878, -0.0171752218, 0.00764940493, 0.00255547627, 0.0125447214, -0.00164753513, -0.0259519871, 0.012635516, 0.00718030194, -0.0139444647, -0.0193088837, 0.0288120024, 0.00165604707, -0.00553465867, 0.0128398025, 0.0117956698, 0.0190213695, 0.0217451937, -0.0069646663, -0.0158587079, 0.00671119895, -0.00429380545, 0.00144703139, -0.0200352371, -0.0231525023, 0.000139619617, -0.0210793689, -0.00283542485, -0.018416075, 0.00244955, -0.0277073402, 0.00547791226, 0.00594323222, -0.00823956728, 0.000624682521, 0.00820173603, 0.0180680305, -0.0197325908, 0.00937449373, 0.0128700677, 0.00343504432, 0.035228122, -0.00136096613, -0.019762855, -0.0243630912, 0.0143379057, -0.00306808483, 0.0121739786, 0.00303214556, -0.0121134492, 0.00206178334, -0.0161613543, -0.00992682483, -0.00558383856, 0.0105850818, -0.0204135459, -0.00262924656, -0.0123480009, 0.00623831293, -0.00293189357, 0.0242571644, 0.000980765675, 0.0116216484, -0.00676794536, 0.00485748565, -0.0270717815, -0.0187641196, 0.0203378834, -0.018809516, 0.00604159245, -0.00404790463, -0.00714625418, 0.00844385382, -0.0131500158, 0.00129192474, -1.18812623e-05, 0.00227552769, -0.00668850075, -0.00620048214, 0.00135623722, -0.0149432, 0.0152004501, 0.0142168468, -0.0218965169, 0.00554222474, -0.0270869136, -0.00178183476, 0.0104110595, 0.0183858108, 0.00292621902, 0.0102446042, -4.51015076e-05, 0.0092836991, -0.000466029218, -0.00982089806, -0.00152647623, 0.00659014052, 0.00347098382, 0.00273895613, 0.00649556331, 0.000185726, 0.0083984565, -0.0177956484, 0.00848168414, -0.00872380193, 0.00117370323, -0.00472886069, 0.00985116232, -0.00867840555, -0.00332344323, 0.0129911266, -0.00836062618, 0.00214122818, 0.00671876548, -0.00631019194, 0.0134677952, 0.00577677647, -0.00965444185, 0.00320049282, -0.00639341958, 0.00243630912, 0.00756239425, -0.01747787, 0.000588270254, 0.0112660378, 0.00973010343, -0.0123101706, 0.0137628764, 0.00282029249, 0.0159343686, -0.00545899663, -0.00614751875, 0.009813332, 0.00704032788, -0.0267994, 0.0191726927, 0.00163713156, -0.000302647095, 0.0151247885, 0.00802014768, -0.00353340479, -0.00586757, -0.00755861076, -0.00694196764, -0.0128322365, 0.00367716211, 0.0250894427, 0.00110749924, 0.0190213695, 0.0177956484, 0.00494828, 0.0117502734, -0.0116443466, 0.00136474916, 0.00625344552, 0.00517526502, -0.0132105453, 0.0175686628, -0.0221537668, -0.00858761091, -0.0238031931, 0.031899, -0.0262243692, -0.00990412571, 0.0185825303, 0.00453214, 0.00663175434, 0.0106531773, -0.0154350018, -0.0120226555, -0.0152761117, -0.00324399839, -0.020292487, -0.0286606792, 0.00359204272, -0.0147010824, 0.0137250451, -0.00270301686, 0.00375660695, 0.015049126, 0.00868597161, 0.00529254088, 0.010759104, 0.008065545, 0.00543251541, -0.0119242948, -0.0215938687, -0.0115989493, -0.0262395032, 0.0110314861, -0.00461915135, 0.0207918547, -0.00601889379, 0.0142168468, -0.00966200791, 0.0143152075, 0.0234702807, 0.0005055152, -0.00858004484, -0.0211550314, -3.88357694e-05, 0.00356177799, 0.015586325, 0.0150188617, -0.00556870643, -0.00189721887, 0.026602678, -0.0187035892, -0.00464184955, -0.00431650411, -0.00912481, 0.0018045333, -0.0159646347, -0.00436190097, -0.00294135138, 0.0119848242, -0.00754347863, -0.016660722, 0.0024060444, -0.00937449373, -0.00174778688, 0.00724461442, 0.00339910504, -0.00737702288, 0.0090491483, 0.013838538, -0.014118487, 0.00721813319, 0.0155257955, 0.0297048111, 0.00760400807, 0.00578434253, 0.00291676121, -0.0134980604, 0.00499746, 0.0119923912, 0.0172811486, 0.00330074481, -0.00966200791, -0.00288271345, 0.0274500903, -0.00111033651, -0.0149053689, 0.000575029466, -0.0124539277, -0.00394576136, -0.0103353979, 0.00536063639, 0.00293189357, 0.00992682483, 0.00320238457, -0.0158284418, 0.0261184443, 0.0397678278, -0.0109482585, -0.00434298581, -0.0169482362, 0.0234400164, -0.0260881782, 0.00646151509, -0.00912481, 0.0107439719, 0.00657122489, -0.0133164721, -0.014920501, -0.00945772137, 0.0155711928, -0.0124539277, -0.000881932501, 0.0213366188, 0.00997978728, 0.0295080915, 0.00382470246, 0.00538333505, -0.00330452784, 0.00888269208, -0.0169633683, -0.00585622108, -0.0191121642, -0.00559140509, -0.0146178538, -0.0166909862, -0.00765697146, -0.0207767226, -0.00853464752, -0.0213366188, 0.0136872148, 0.00681712572, -0.00704032788, -0.0127944052, 0.00846655201, 0.0154123027, 0.00562923588, 0.00938206, 0.0258309282, 0.000507406774, -0.00120491371, 0.021109635, 0.00474021, -0.000268126401, 0.0055497908, -0.00026883572, 0.0250894427, -0.0188700464, 0.00743755233, 0.0148902368, -0.0149810305, 0.00306808483, -0.0126279499, -0.0271020457, 0.00140825473, -0.00881459657, 0.0381637961, 0.00758509245, -0.00350692309, 0.0412508, -0.00916264, 0.00980576593, 0.0161462221, 0.0256947372, -0.0351675898, 0.00441486435, -0.00565571757, 0.0146556851, -0.00472886069, 0.018143693, 0.00202584383, 0.000210197861, -0.0375585034, 0.0316871516, -0.00245900755, -0.00669228379, -0.0210642368, 0.00888269208, -0.00817903783, -0.0197023246, -0.0218057223, 0.0199293103, -0.0207615905, 0.00815633871, 0.00461915135, 0.0108423317, 0.00711220643, 0.00757374335, 0.0105926478, 0.00297539914, -0.0180528983, -0.034804415, -0.0152685456, -0.00261789723, -0.0104564568, -0.0104261925, -0.00874650106, 0.0321411192, -0.00995708909, -0.0188549142, 0.00119451026, -0.00646529859, 0.00111979421, 0.0487867109, 0.0195964, -0.00979063287, -0.000725880149, 0.00555735733, 0.0318687372, 0.0156619865, 0.0112206405, 0.0133770015, -0.0239091199, -0.00964687578, -0.0048991, 0.00186222536, -0.0172660165, 0.00463428348, 0.00782342721, -0.0110995816, -0.00892052241, 0.00671498245, 0.0054438645, 0.00433920277, 0.0311423857, -0.00717651891, -0.00477804104, -0.0159646347, 0.0201260317, -0.0137704425, -0.0143076414, 7.48933307e-05, -0.00989656, 0.0154425679, -0.0126128169, 0.00121910032, 0.00651447847, -0.00124463614, -0.0157073829, 0.00561032025, 0.00423327601, -0.0112282066, -0.0015557952, 0.0288120024, -0.00367716211, -0.0079671843, -0.00589405186, -0.0125674205, 0.0115232877, -0.00779316248, -0.0137704425, -0.00931396428, -0.0199747086, -0.0255585462, 0.00132313522, -0.00694953371, 0.0217451937, -0.0234248843, 0.0153971706, 0.00308510871, 0.0179167073, 0.0112736039, 0.0108423317, 0.00948798656, 0.0094728535, 0.0089280894, -0.0084968172, -0.00585622108, -0.0171298254, -0.00915507413, -0.0044867429, 0.011288736, 0.0146405529, 0.021245826, 0.0173719432, -0.0101386774, 0.0186430607, 0.000682847516, -0.0172811486, 0.0220932364, 0.0154350018, -0.0129684275, 0.00539090112, 0.00980576593, -0.00573894521, -0.00198423, -0.00497097848, 0.00323075755, 0.0178107806, 0.00651447847, -0.0253920909, -0.0343504436, -0.00301701319, 0.0113114351, 0.0106456112, 0.0012172088, 0.0008582882, -0.0179772377, 0.0251651052, 0.00654096, 0.00795205217, -0.00307943416, -0.00626479462, -0.0197325908, 0.00744133536, 0.0236972664, -0.00690413686, -0.0359242074, -0.0124387955, 0.0234248843, 0.00753591256, -0.0199444424, 0.00750186481, 0.0289179292, 0.0160554275, -0.00382281095, -0.00461158482, -0.00361474114, 0.0128776338, -0.000286568946, -0.0119772581, 0.00123139529, -0.000213389838, 0.0112433396, -0.0186279286, -0.013172714, 0.00246846536, 0.0122118099, 0.000122950383, -0.0108120674, 0.00499746, -0.00212042104, 0.0240907073, -0.0161008257, -0.0273441635, -0.00439594872, -0.00771371741, 0.0132559426, -0.0119394278, -0.00245144148, -0.00379632949, 0.00310780737, 0.0103353979, -0.0105169863, 0.00444891211, -0.00535685336, -0.00654096, 0.0119318618, -0.0124690598, -0.0102900006, -0.000870110351, 0.0165093988, -0.0138536701, -0.0227741934, -2.02454357e-05, -0.0107969344, 0.00471372856, 0.0115384199, 0.0218511205, -0.0114854565, -0.00335559947, 0.00922317, 0.00604537548, -0.0146178538, 0.00239091204, 0.00772128394, 0.00776289776, -0.00968470704, -0.00765697146, 0.0118108029, 0.00672633154, 0.00180264167, 0.00826226547, -0.00464941608, 0.00138366467, -0.0013401591, 0.00559897115, -0.000734392088, -0.00135245419, 0.0203378834, -0.00579569163, 0.00174967851, -0.0257098693, 0.01747787, -0.009813332, -0.0194602069, 0.0082773976, 0.00181209948, 0.00613995269, 0.0109028611, -0.00834549312, -0.0057805595, -0.00671119895, 0.00730136083, 0.00372634223, 0.0108725969, -0.0158889722, -0.0016125415, 0.0273895618, 0.0167515166, -0.0160705596, 0.000333857577, -0.00324589, -0.00368851144, 0.00614373572, -0.0015699818, 0.00564436801, 0.0187489875, -0.00710085733, -0.0100630159, -0.00480830576, -0.00173265452, -0.0109331263, -0.000107404252, 0.0222899579, -0.00556114037, -0.0140352584, -0.00816390477, -0.00577299297, -0.00594323222, 0.0322924443, -0.00335938274, 0.0081866039, -0.00588270277, -0.0128625007, 0.000641233521, -0.00190478505, -0.0147086484, 0.0070819417, 0.0125825526, -0.0181588251, -0.00318536069, 0.0133997, -0.00612103753, -0.00884486083, -0.00349935703, 0.00507690478, -0.000715476635, 0.00138082728, 0.006317758, 0.00189721887, -0.0144060012, 0.0248775911, -0.00442621345, -0.0240150467, -0.018279884, 0.0226985309, 0.00716517, -0.00945015531, 0.00344828516, -0.00734675815, -0.000354900985, -0.0114778904, 0.00157849374, -0.0110390522, 0.0105472505, -0.0178259127, -0.00192180905, -0.00101954234, 0.0220932364, 0.011288736, -0.00135150843, -0.00880703051, 0.00924586877, -0.0234400164, -0.00453214, 0.0245749429, -0.00746403355, -0.0251499731, 0.0065560923, -0.0167212524, -0.0271928404, -0.00769480225, 0.0257098693, 0.0189003106, -0.0085195154, -0.000150614214, 0.0128776338, -0.0160100311, 0.0284488257, -0.0189305749, 0.0190062374, -0.0035542117, -0.011689744, 0.00835305918, -0.0139368987, -0.00757752638, 0.0297199432, 0.00436190097, -0.00750943087, 0.000139028503, -0.0130062588, 0.0155409276, -0.0245749429, 0.00450187549, 0.0292205755, 0.0127490088, 0.0138082737, 0.00879946444, -0.00555357384, -0.00837575831, 0.0204740763, 0.0127792731, 0.00392684573, -0.0220024437, 0.0144740967, 0.0189911053, 0.0124009643, -0.00224526296, 0.0137326112, -5.6332552e-05, 0.00780072855, 0.00808067713, -0.00574272824, 0.014648119, -0.0068814382, -0.00496341242, 0.0187489875, -0.0203832816, -0.00884486083, 0.0250440463, 0.0104261925, -0.00997978728, 0.00496719545, 0.0163883399, -0.00744133536, -0.0132256774, 0.0187641196, -0.0189608391, -0.02230509, 0.00896592, -0.0014990489, -0.000687103486, 0.0114022288, 0.0111979423, -0.0166001935, 0.0152307143, 0.0133164721, 0.0102673024, -0.0136947809, -0.013838538, 0.0149961635, 0.00246846536, -0.0074299858, -0.0221537668, 0.00873893499, -0.00607942324, -0.0137553103, 0.00568598229, -0.00584108895, -0.0203076191, 0.0131424498, -0.00824713334, 0.0184766054, 0.00624587946, -0.00547034619, -0.012499325, -0.00994195696, 0.00594701525, 0.00469481293, 0.0358334146, 0.00727866264, -0.00618913304, -0.000798231689, 0.0251953695, 0.0064236843, -0.00802014768, 0.0261184443, -0.00923830271, 0.005981063, 0.000221783572, 0.0161008257, 0.0119167287, 0.0012928705, -0.0166001935, 0.0134072658, -0.067187652, 0.0124841919, 0.00841358863, 0.00313807209, -0.0114778904, 0.0302193109, 0.0202622227, -0.00938962586, 0.036438711, 0.00434298581, 0.0241512377, 0.0266934726, 0.00503150793, 0.00115100469, -0.0149961635, 0.00964687578, 0.0126884794, -0.00395332742, -0.00870110374, -0.0104186255, 0.0044753938, -0.00385496719, 0.00758887548, -0.00110371609, -0.00615508528, -0.00163902307, 0.00366202975, -0.000864908623, 0.00153782556, -0.0118108029, 0.0183101483, -0.00269545056, 0.00338775571, -0.0119999573, 0.0153517732, -0.00336505729, 0.00463428348, -0.019626664, -0.0160856918, -0.00815633871, 0.00517526502, -0.00989656, 0.0051336512, -0.0172206201, -0.0130062588, 0.00986629538, -0.0129457293, -0.00606050808, -0.00457753707, -0.00808824319, -0.00650691241, 0.0109785227, 0.00169198634, 0.0236972664, 0.010479155, 0.00635180576, -0.0237577967, -0.00509960344, 0.0331398547, -0.00782342721, -0.00188019499, -0.0235762075, -0.0121739786, 0.00178940094, 0.0178561788, 0.00160024641, -0.0108272, -0.0116443466, -0.0107893683, 0.0171449576, -0.0153517732, -0.00030477508, 0.0105169863, -0.00249683857, -1.68317893e-05, -0.00334235886, 0.006113471, 0.00183196063, 0.00889782421, -0.000431272085, 0.000158889714, 0.0114551922, 0.0248473249, 0.022728797, -0.00201449473, -0.0161764864, -0.00802771375, 0.00470994506, 0.0263605621, 1.97282152e-05, 0.0189003106, 0.0117048761, -0.0435206518, -0.0093593616, 0.00651447847, -0.00651069544, -0.0115459859, -0.0043694675, 0.00812607445, 0.00842115562, 0.0102824345, -0.0101462435, 0.0162370168, 0.012363133, 0.0199141782, -0.0107893683, 0.0163732078, -0.000610023038, -0.0117427073, -0.00488775037, 0.0164791346, 0.00927613303, 0.00367905363, 0.004365684, 0.026073046, 0.00825469941, 0.00142906175, -0.0136266854, -0.0117502734, 0.0143454717, 0.00428623939, 0.00573137915, 2.67771738e-05, -0.0184312072, 0.00212042104, 0.00169576949, 0.00535307033, -0.00432785321, -0.00445269514, -0.00954851601, -0.00968470704, 0.00410843408, -9.19172307e-05, -0.00492179813, 0.0229406487, -0.0125674205, 0.00330831087, 0.0106531773, -0.0148751047, -0.0167515166, 0.0142622441, 0.00544008147, 0.0158587079, 0.0122723393, -0.0250743106, -0.0282823704, 0.0085195154, -0.00231146719, 0.0110768834, -0.00649178, -0.00428623939, -0.00011313799, 0.00683982437, -0.0100403167, 0.0023984781, -0.00401385687, -0.0107818022, 0.00452835718, -0.00151985581, -0.00871623587, 0.0198385157, 0.0121891117, 0.0145800235, -0.0202622227, 0.0150037296, 0.00650312938, 0.00755861076, 0.0170844272, -0.000664404943, 0.00772128394, 0.00317968591, -0.00169766101, -0.00385118416, -0.00570489746, 0.014103354, -0.0077553317, -0.00868597161, -0.0258763265, 0.0127944052, -0.000917398953, 0.00619291607, 0.00604537548, 0.0262697674, 0.00688522123, 0.00243252586, -0.0140125602, -0.00723326532, 0.0103278318, 0.0117351403, 0.0116140824, 0.00829253, 0.0333214439, 0.0127565749, -0.00738837197, -0.00288649648, -0.0107288389, -0.00399872474, -0.00760400807, 0.0130138248, 0.008065545, 0.0127565749, -0.000516864471, 0.00280516013, -0.0214122813, 0.0035542117, -0.0198839139, 0.010479155, -0.000186317106, -0.00700628, 0.0182496198, 0.0250743106, -0.0238334574, -0.0308851358, -0.00536820246, -0.00444891211, 0.0120075233, -0.00780072855, -0.00992682483, -0.0113795307, 0.00439973222, 0.0185825303, 0.0149961635, 0.00123328692, 0.0185522661, 0.0246657375, -0.0113870967, 0.0282823704, 0.0072030006, -0.00795205217, -0.00175251579, 0.0201109, -0.0147313466, -0.00708572473, -0.002116638, 0.0121512804, 0.00284299115, 0.00624209596, -0.00566328363, -0.0108423317, -0.00700249709, 0.015586325, -0.00948042, -0.00646151509, -0.0156771187, -0.024317693, 0.0206102673, -0.0240907073, 0.0241966341, -0.017462736, 0.0106304791, -0.00683982437, -0.00205421704, -0.0100554498, 0.0144892288, 0.0153820384, -0.0116367806, -0.0100630159, 0.0148978028, 0.00113870972, -0.00201638625, -0.0124463616, -0.0116821779, 0.0195812657, -0.0139671629, 0.0139520308, -0.0146783832, -0.0178107806, -0.0207767226, -0.0070705926, 0.00406682026, -0.00267842668, -0.00435811793, -0.00876919925, 0.0110466182, -0.0084968172, 0.0343504436, 0.00867083948, 0.00665823603, -0.0241209734, -0.00845142, -0.00303782, -0.00346530904, -0.0135964202, -0.0152307143, 0.0251499731, 6.64404943e-05, -0.0237729289, -0.0101008462, 0.0141336191, -0.00885242689, 0.00954851601, -0.0162218846, 0.0059016184, 0.0110844495, -0.0143227736, -0.0286909435, 0.00217338442, 0.000972253736, 0.000370269787, -0.0127565749, 0.00753591256, -0.0233189575, 0.0037036438, -0.00645016599, 0.00568976533, -0.0348952077, 0.0037622815, -0.0334122367, -0.00911724381, -0.00337262335, -0.0107818022, 0.0129759936, 0.000364358712, 0.00466076517, -0.0205951333, 0.0144135673, -0.0190516338, -0.000865381502, 0.0102067729, -0.0200806335, -0.0228044577, 0.016796913, 0.00867083948, -0.0168423112, 0.0047969562, -0.00261978875, 0.0228195898, -0.0065447432, -0.0193088837, -0.0390112102, 0.00590540143, 0.00362609047, -0.00520174671, 0.00416139746, -0.00354853715, -0.0084968172, -0.00569733139, -0.0166153256, -0.0133467363, -0.0145648913, -0.00331776869, 0.00184898451, -0.0117956698, -0.00586757, -0.00313239731, -0.0152534135, -0.00499367714, -0.00266518584, 0.01747787, -0.000568881922, 0.00542494887, -0.0012361242, -0.0166304577, 0.0163429435, 0.00299998932, 0.0151701849, -0.0318687372, -0.0100403167, 0.00916264, -0.0136342514, -0.00774776563, 0.0160856918, -0.012226942, -0.0524487384, 0.0191424284, 0.0130062588, -0.000458226597, 0.0248170607, -0.0131954132, -0.0260276496, -0.00571624702, -0.0040327725, 0.0172660165, 0.060196504, 0.0281764437, 0.028766606, -0.0342596509, -0.00140920049, -0.00676416233, 0.0147010824, 0.0373163857, -0.0180528983, 0.01060778, 0.00597349694, 0.0213820171, -0.00895835366, 0.0138839353, 0.0102370381, 0.013581288, 0.0114703244, 0.00519039761, 0.0137174791, 0.00419166218, -0.000444276462, -0.0295232236, 0.00113587233, -0.00531902257, 0.010214339, 0.00632532407, -0.0100403167, -0.0227741934, -0.0174324717, 0.0150793912, 0.00165226392, 0.013180281, 0.00802014768, 0.0126582142, -0.00312293973, 0.0175535306, 0.0172054861, 0.0224261489, 0.00572759612, -0.0347136222, 0.0257401355, 0.0179621037, 0.00735810725, -0.00941989, 0.013036523, -0.00313239731, -0.0115157217, -0.0212912224, -0.00461158482, -0.0179318395, 0.0285698846, -0.0462747402, -0.0120680528, -0.0117729716, 0.00320995064, 0.00147351297, 0.0268447958, -0.00516769895, 0.00548926136, 0.0207313262, -0.00749429828, 0.00770993438, 0.00811094232, 0.00752078, -0.00742241973, -0.0247565322, -0.0013874477, 0.00525092706, 0.009813332, -0.00402142294, -0.0182344876, -0.00389279821, 0.0130667882, -0.0108498977, -0.0187943839, 0.0113946628, -0.00377741386, 0.0136645157, -0.00313050579, -0.00463428348, -0.0322924443, 0.0231071059, 0.00852708146, -0.0175232664, -0.00901888311, -0.00766832056, -0.00394197833, -0.0083984565, 0.00034095085, -0.00627992721, 0.00637072138, 0.021094501, -0.00176008197, -0.000591580465, 0.00439594872, 0.0214425456, -0.00907184649, -0.0071916515, 0.000242354115, -0.00105737324, 0.0148070091, 0.00340477983, 0.0126960455, -0.0053379382, 0.0076456219, 0.026602678, -0.0027351731, 0.00910211075, 0.00196531462, 0.0122193759, -0.0074716, -0.00549682789, 0.00499367714, 0.0320805907, 0.0128927659, 0.00903401524, 0.00814120658, 0.00767210359, 0.00135245419, -0.009813332, 0.00319103524, 0.00227363617, -0.0216997955, -0.00579569163, -0.00485748565, 0.00207313243, 0.00519796368, 0.0105094202, 0.0221840311, -0.00642746734, 0.0107061407, -0.00498611061, 0.0128398025, -0.00209961412, 0.0140579576, 0.00434676884, -0.0132710747, 0.00829253, 0.0263756942, 0.000507879653, 0.0111601111, 0.0170087665, 0.0073089269, 0.0108650308, 0.00152931351, 0.00767588662, 0.0114476262, 0.00733162556, 0.0412508, 0.00945015531, 0.000181470037, -0.0197477229, -0.00943502318, 0.00282407552, -0.00250440463, 0.0012408531, 0.00988142751, -0.0136266854, 0.0274349581, -0.0168725755, -0.00473264372, 0.00145459757, 0.0105245523, -0.0092610009, -0.00908697862, -0.0121361483, -0.0101689417, -0.00601511076, 0.00519418065, 0.00016456435, 0.00830009673, 0.0138763692, -0.0118788984, 0.0108120674, -0.00502015837, -0.00356934406, -0.00869353767, -0.00946528744, -0.00218095048, -0.0172508843, -0.0117048761, -0.00338964746, 0.00507690478, 0.0464260615, -0.00650691241, -0.0116670448, -0.00149337423, 0.00558383856, 0.0150264278, -0.0163126774, -0.0139974281, -0.013165148, 0.00438838266, -0.0112509057, 0.0200201049, -0.00587891974, 0.0122572072, -0.0104488907, 0.0135056265, 0.00858761091, 0.0223958846, -0.00948798656, -0.0088297287, -0.0104186255, 0.00648421375, 0.0122874714, -0.0079444861, -0.000721151242, -0.00440729829, 0.0171903539, 0.00588270277]
24 Nov, 2021
jQWidgets jqxScrollBar theme Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The theme property is used for setting or getting the theme for the specified jqxScrollBar. Syntax: For setting the theme property: $('#jqxScrollBar').jqxScrollBar({ theme: 'energyblue' }); For getting the theme property: var theme = $('#jqxScrollBar').jqxScrollBar('theme'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar theme property. In the below example, the value for the theme property has been set to ‘energyblue‘. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar theme Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin: 28px;" id="button_for_theme" value="Value of the theme property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 200, height: 20, theme: 'energyblue' }); $("#button_for_theme").jqxButton({ width: 250 }); $("#button_for_theme").jqxButton(). click(function () { var Value_of_theme = $('#jqx_Scroll_Bar') .jqxScrollBar('theme'); $("#log").html((Value_of_theme)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollbar/jquery-scrollbar-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-theme-property/?ref=next_article
PHP
jQWidgets jqxScrollBar theme Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0314433426, 0.0097914394, -0.0140460525, 0.0479081124, 0.0658008, 0.0163336359, 0.0115617663, 0.0144248875, -0.01985972, -0.0193351787, 0.00511427829, 0.0154011175, 0.0157071, -0.0134632289, 0.004713587, 0.0285875052, -0.031181071, -0.0286020748, -0.04735443, 0.033075247, -0.0165959056, -0.0320553072, -0.0409142263, 0.00727072638, -0.0403022617, 0.0144831706, 0.015036853, 0.024085192, -0.0119406013, 0.0387286395, -0.0263144933, 0.0105418246, 0.0201365612, 0.00552589772, -0.0584572218, -0.0309479404, -0.0206756722, 0.00763499131, -0.00959473569, -0.011445201, -0.0252071265, -0.000845549745, 0.0106073925, 0.0162025, -0.0138347792, 0.027902687, 0.01434475, -0.0248720031, 0.0192768965, 0.000454648049, -0.0020052779, 0.0399525687, -0.000668881345, 0.0362807773, 0.0182860959, -0.0223804321, 0.0108550927, 0.036630474, -0.0131281046, 0.00923047122, 0.0331043899, -0.0351151302, -0.02698474, -0.0188397784, -0.00901191216, 0.0246825852, -0.00167470763, 0.0263144933, -0.0276404172, 0.0173390061, -0.0202385541, 0.0183298066, 0.00197067275, 0.0368344598, 0.0147454413, 0.00392313255, -0.0101411333, 0.00498678582, 0.00181494956, 0.0218121782, -0.0214916263, 0.012989684, -0.0287040696, 0.0329586826, -0.0116856163, 0.0131062493, 0.0285437927, -0.0403314047, 0.0794971585, 0.0141626168, -0.0193351787, -0.00998814218, 0.0233129505, 0.0285437927, -0.018125819, -0.00366450427, -0.00912847742, 0.0171787292, -0.0391366147, 0.0174555723, 0.0426335558, 0.013273811, -0.0433038063, -0.047325287, 0.026168786, 0.0247700103, 0.0217247549, -0.00219833828, -0.0107239569, -0.0261833575, 0.0165376235, -0.0133903753, -0.0165230539, -0.0322301537, -0.0443820283, 0.0413804874, 0.000820051238, -0.0264019165, 0.0287040696, -0.00859665, -0.00227847649, -0.00429104, -0.00988614745, 0.033075247, -0.0191166196, 0.0102285566, -0.00315089081, 0.00993714482, 0.0411764979, -0.00377742643, -0.0130552519, 0.0233712327, 0.0120207397, -0.0028339806, 0.0075475676, 0.0182569548, -0.01790726, -0.000690281857, -0.0253236927, -0.0290391929, -0.0437992066, -0.0215644781, 0.00815953221, 0.00588652, -0.0123412926, 0.0484617949, 0.00756213814, 0.0386120752, -0.0337163545, 0.00251342752, -0.0113723483, -0.0129314018, 0.00940531865, 0.0104179746, 0.0260230806, -0.000273198646, -0.0296074469, 0.0281358175, -0.0092596123, 0.00342773227, -0.0143301794, -0.00788269099, 0.0332209542, 0.0187523551, 0.00566431833, -0.00298515032, 0.0246680155, -0.00295783044, -0.0557762347, 0.0262270682, -0.00139149174, -0.0126982722, 0.0100682806, 0.0147090144, -0.0532409512, -0.0130479671, 0.0204716846, -0.0465676188, 0.00566067547, -0.0263727754, -0.0303651169, 0.00959473569, -0.0143083232, 0.0302194115, 0.00228576199, 0.00986429211, -0.0011137398, 0.00599944219, -0.0452562645, -0.00760584977, -0.0236626435, 0.0340077654, 0.0371841565, 0.0318221785, 0.0143301794, -0.0168144647, -0.0194080304, -0.00326927705, -0.0173827186, -0.0131281046, 0.0226427019, -0.0380875319, 0.00254803267, 0.0199471433, 0.00780255301, 0.0367178954, -0.0182860959, -0.0302776936, 0.0417884625, -0.00916490331, -0.0101775602, 0.0101411333, 0.0389617682, -0.0134195173, -0.00869864412, 0.0159693714, 0.00734722195, -0.0158236641, -0.0132956672, 0.00512156356, -0.000388625049, -0.0143228937, -0.0171058774, 0.0185920782, -0.0890554711, 0.00700481283, -0.000650212751, -0.0337454937, -0.0209670849, 0.0225698501, -0.0418467447, -0.0081886733, -0.0210107956, -0.019043766, 0.0389909074, 0.0545523, -0.026168786, 0.0149494288, 0.0132300993, 0.0293597467, -0.0051361341, -0.0364847668, -0.020209413, -0.0116419047, 0.0102576977, -0.0141990436, 0.0114889136, -0.0324632823, 0.0170330238, 0.0147672966, -0.0294763111, -0.0146434465, 0.0152991237, -0.00989343319, 0.0372715779, 0.0400108509, -0.00698295701, -0.00249339291, 0.0287477821, 0.00199070736, 0.0342991762, 0.0272761509, -0.00269738119, 0.0159548, 0.0128148375, 0.0134413727, 0.0403896868, -0.0200637076, 0.00230397517, -0.0405353904, 0.0297094416, -0.0376504138, 0.0570001639, 0.00352972629, -0.017717842, 0.0151388468, -0.0337746367, -0.0337454937, 0.0262853503, -0.0243620332, 0.0137837818, 0.00118477142, 0.0501228422, 0.0508805141, 0.00953645352, -0.00241143326, 0.0320553072, -0.0523958541, -0.0188689195, 0.0260085091, -0.0259939395, -0.026576763, 0.0177324135, 0.0243328921, 0.0292286109, -0.012829408, 0.00161460391, -0.0241871849, -0.00733629381, 0.00328020495, 0.0123995757, -0.0115253394, -0.0360767916, 0.00624714186, 0.0162462126, 0.0601474121, 0.0152262701, 0.00944174454, 0.00985700637, -0.00432382384, 0.0459265113, -0.000104726139, -0.0305108242, -0.0413222052, -0.00166195841, 0.00429104, -0.00373735721, 0.0294617414, -0.01153991, 0.0305108242, -0.00256260321, 0.00866950303, -0.0315890461, 0.0380001068, 0.0424587093, -0.0136162201, -0.0117948959, -0.0130771082, 0.00827609748, 0.0139003461, -0.0379418246, 0.0114160599, 0.0173827186, -0.000227324024, 0.038553793, -0.0274218582, -0.0063090669, 0.00750385597, -0.00961659197, -0.00303796888, -0.00463709142, 0.00594115956, 0.00413076347, -0.0331335291, 0.0259647984, -0.0632946566, -0.0158528052, -0.00533283735, 0.0506473854, 0.00293233199, 0.00133594137, 0.030802235, 0.0343866, 0.00504871085, 0.0263436344, -0.0175429955, 0.00340041239, -0.0307730939, -0.0105709657, 0.0231963862, 0.00994443055, -0.00352061982, 0.0335997902, -0.000759947521, 0.0440614745, -0.0381458141, -0.0139877703, -0.00461159274, -0.0207048133, 0.0280483924, -0.0117730396, -0.0329004, -0.0368927419, 0.0467133224, -0.0245223101, 0.0247262977, 0.00681175245, -0.00544575928, -0.0213313494, 0.0214770548, -0.0418758877, 0.0216227621, 0.000362671184, 0.0445860177, -0.014534167, 0.00581730949, -0.00767141767, -0.0217393264, 0.0452271216, -0.022132732, -0.0463636294, 0.0372715779, -0.014155332, -0.0317056105, 0.00131772808, -0.0101557039, 0.0286895, -0.0125088552, 0.021404203, 0.0143374642, 0.027305292, -0.0387869217, 0.00322556519, -0.0202822667, -0.0043128957, 0.00362261385, -0.0255713928, -0.0264019165, 0.0188980605, -0.0161587894, -0.0117074717, -0.0219870266, 0.00340041239, 0.0461013578, 0.00701574096, 0.0223804321, 0.015983941, 0.0579035394, 0.0122538693, -0.0378835425, 0.0271158759, -0.0319096, -0.0514633358, 0.0365139097, -0.0279609691, 0.00351879839, -0.0589234829, 0.00955102406, 0.027902687, 0.00271559437, -0.00987157691, 0.0152262701, -0.00503778271, 0.000419815246, 0.0300154239, 0.0114087751, 0.0235897917, -0.00832709391, -0.024493169, -0.00048948091, 0.00535833603, -0.0221910141, 0.0228175502, -0.00681903772, -0.0384080857, -0.00182223483, -0.0215644781, -0.0119406013, 0.0226718448, 0.0213604905, -0.0184318013, -0.0278298333, -0.020588249, 0.0258482341, 0.00179218303, 0.00414169114, -0.0109498017, 0.00659683626, 0.0266350452, -0.0215207674, -0.0329878256, 0.00306346733, -0.00866950303, -0.0023567935, 0.00334213, -0.0312684961, -0.00336944987, 0.0333375186, -0.0155176828, 0.0276987, -0.0366887562, -0.0218558908, 0.0352025554, 0.0474127121, 0.00797011517, -0.00687367748, 0.0090264827, 0.0235023685, 0.0310353655, 0.0110007981, 0.0206756722, 0.00214187731, 0.0399525687, 0.0228029788, 0.0223804321, 0.0012904082, 0.0256442446, -0.0254985392, -0.0278444048, 0.018446371, 0.0122538693, -0.00487386342, -0.0333958, -0.00187960663, -0.0115326252, 0.0324341431, -0.0377961211, -0.00232036714, 0.027713269, -0.0153136943, 0.0207339544, 0.0154448291, -0.0200345665, -0.000159593532, 0.0309479404, 0.00304707536, -0.039253179, -0.00799197052, 0.00520170201, -0.0182569548, 0.0351151302, -0.0128366929, -0.0201948434, 0.0269993097, -0.0146653028, -0.0380875319, -0.0445568748, -0.00457152398, 0.00117839675, -0.0202676952, 0.0207485259, 0.00563881965, 0.0325215645, 0.0162462126, 0.0149348583, 0.0408850871, -0.011853178, -0.0170621648, 0.0103305513, 0.00739457645, -0.00198160065, -0.00615607575, 0.037708696, -0.0314724818, -0.0171787292, 0.0348528586, -0.0221181605, -0.027334433, -0.0124360016, 0.00563881965, -0.0107530979, 0.0324341431, -0.0321718715, -0.0258482341, 0.025760809, 0.0130333966, -0.00361897121, -0.000607866968, 0.0125889927, 0.018446371, 0.017528424, 0.00626171287, 0.0206319615, 0.0060686525, -0.0102868397, 0.000452826731, -0.0244203154, -0.0121810166, -0.0176012777, -0.0230215378, 0.0028831563, 0.0142791821, 0.00563517725, 0.000259766355, 0.0277278405, -0.0287914928, 0.0123922899, 0.0100974217, -0.0126181338, -0.0133102378, 0.00793368835, 0.00147436198, 0.0119697424, 0.00842180289, -0.00943446, 0.0102795539, 0.0542317517, -0.00515070511, 0.00179764698, 0.032696411, -0.0199617129, -0.0353774, 0.0285875052, 0.0286166463, 0.00303796888, 0.0127492696, -0.00834166538, -0.0101994155, -0.0261105038, 0.0033621646, -0.0106656747, 0.0340660475, 0.0224678554, -0.00214916258, 0.00520534441, -0.0195100252, -0.0116054779, 0.0135725085, 0.0150077119, -0.0307148118, 0.0240414795, 0.0176741295, 0.000944356609, 0.0262853503, -0.00227665529, -0.00727436878, 0.00746742915, -0.00328384759, 0.00231672451, 0.00398141472, -0.0132082431, 0.0142063294, 0.0360476486, -0.00167015428, -0.00975501258, 0.000941624632, -0.0101338476, 0.0344157442, 0.0122684399, -0.0279609691, -0.00614514807, -0.00153992965, 0.0155905355, -0.0227884091, 0.0310062245, -0.00230579637, -0.032696411, -0.0136963585, -0.000881520915, -0.0476458408, -0.00196703, 0.0212439261, -0.0285583641, 0.0232546683, 0.0140387667, 0.0191457607, -0.0100682806, 0.0251925569, -0.0176304188, 0.00982058048, 0.0379418246, 0.0187669247, -0.0169164594, 0.052803833, -0.00706673786, 0.0374755673, 0.00449502841, 0.0239540562, 0.015197129, 0.0122465845, -0.0074819997, 0.013747355, -0.00280483929, 0.0133102378, 0.00734357908, 0.00446952973, -0.00453509716, -0.0135433674, -0.0232838094, 0.0136089344, -0.0106001068, 0.0121227344, 0.0343574584, -0.00492850319, 0.0230652504, -0.00511063589, 0.0496857241, 0.0424878523, -0.00943446, 0.0113942046, -0.00262452825, -0.00266641867, 0.00732536614, 0.00840723235, 0.00775884138, -0.00529641099, -0.0220890194, 0.0149057172, 0.016581336, 0.0180675369, -0.00132865598, 0.0229049735, 0.0331335291, 0.0114670573, 0.00853108242, -0.0285292231, -0.0206173901, 0.0282815229, 0.00648755673, 0.0150514236, -0.00155085756, -0.00655312464, 0.0272907224, 0.0175138544, -0.0135943638, -0.0212584957, 0.00729258219, -0.0040105558, -0.0249157157, -0.0307148118, 0.00974044204, -0.0231089611, -0.0180092547, 0.0426335558, 0.0245077386, -0.00113741693, 0.0129969697, 0.00789726153, -0.0103378361, -0.0063746348, 0.0259356573, -0.00297786505, -0.00885163527, 0.056621328, 0.0263144933, -0.011634619, -0.00937617756, -0.0254839677, -0.0219578855, -0.00936889183, 0.0188106373, 0.0161442179, -0.0224824268, -0.0405062512, -0.00852379762, -0.0208505206, 0.0129969697, -0.0241143331, 0.0125525668, 0.00315089081, -0.0136016496, 0.0234440863, 0.0203696899, -0.00209088018, 0.00232583098, 0.0433038063, 0.00104635081, -0.00332573801, -0.0138347792, -0.010090136, -0.0189417712, -0.0157071, 0.00289954827, 0.00975501258, -0.0147964377, -0.0340077654, 0.0152991237, -0.0192331839, 0.0124578578, -0.0184609424, 0.00157271349, -0.0393697433, 0.0199325718, -0.0511719249, 0.000494034204, 0.00776612666, -0.0185629372, 0.00662597734, 0.0202676952, -0.003247421, -0.00937617756, 0.0306565296, -0.036630474, 0.0159402303, 0.00854565296, 0.0197140127, -0.0489280522, -0.00948545616, 0.0244494565, -0.0251342747, -0.0210545082, -0.00738729117, 0.0415553339, -0.00227665529, -0.000129883178, 0.0198160075, -0.0104908273, -0.00520534441, -0.000377924764, 0.0311519299, -0.00706309546, 0.032375861, 0.0318221785, 0.00137601048, 0.0082542412, -0.021753896, 0.0116491895, 0.0147308707, 0.013965914, 0.025411116, 0.00721972901, 0.0143228937, 0.00688096276, 0.0199180022, 0.0311519299, -0.00600672746, -0.011947887, 0.0509096533, 0.0315890461, -0.0130115403, -0.00416354695, -0.0175138544, 0.0231526736, 0.0198888611, 0.0297094416, -0.0148620056, -0.0368053205, -0.00268281065, -0.00824695639, -0.00344230281, -0.0276695583, -0.0159402303, -0.0186357889, -0.0275092814, -0.018446371, -0.00841451809, 0.0196848717, -0.029068334, 0.00885163527, 0.0151097057, -0.0326089896, 0.014913003, 0.0283543747, -0.00985700637, -0.0383498035, 0.0465967581, -0.0148037234, 0.0209670849, 0.00944903, -0.00280848192, -0.0133102378, 0.0141626168, -0.0514924787, 0.0184026603, -0.00912119169, -0.0177324135, 0.0261396449, 0.00544575928, 0.0108623775, 0.0261396449, 0.00433110911, 0.00344958808, -0.0269264579, 0.0146215912, 0.00527091231, 0.0250468515, 0.00480465312, 0.0353482589, 0.00967487413, 0.011634619, 0.0080866795, 0.00730351033, 0.00896820053, 0.0392823219, -0.027305292, 0.0410599336, -0.0097987242, 0.0269118864, -0.00200163526, -0.00709952181, -0.0222201552, 0.0110590803, 0.00254803267, 0.017441, 0.00688460562, -0.0226572733, -0.00635277899, -0.0165667646, -0.0380583927, -0.0178781189, -0.0090191979, 0.00798468571, 0.0345905907, -0.00770055875, 0.00741278939, -0.000357207202, -0.0269118864, 0.00629813923, 0.00793368835, 9.12369578e-05, 0.0263290629, -0.0265621915, -0.0321427286, 0.00593387429, -0.0122902961, 0.0498022884, -0.0216810443, -0.0117001869, 0.019072907, 0.00761313504, -0.0245805923, 0.0128075518, -0.00991528947, -0.0565047637, -0.0199325718, 0.0180238243, -0.001954281, -0.0277424101, -0.0113286367, 0.0137983523, 0.0239394847, -0.0273490045, -0.00196885155, -0.034240894, 0.00220562355, -0.0176887, -0.0122465845, 0.019451743, -0.000726708386, 0.000596483704, 0.0257025268, 0.0303359758, -0.00792640261, -0.0202968363, 0.0136453612, -0.0233420916, -0.0199762844, 0.0199034307, 0.00843637343, -0.0277424101, -0.0143520348, -0.0204716846, 0.0165959056, 0.0179218296, 0.00734357908, -0.019043766, -0.0438574888, -0.00720880134, -0.0269118864, 0.0220890194, 0.0134195173, 0.0115471957, 0.01790726, -0.00102176284, -0.0364556238, -0.015036853, 0.0145705938, 0.0167124718, -0.0491029024, -0.0075475676, 0.0545814447, 0.0393988863, -0.0268827453, -0.00724158529, 0.00461159274, -0.0318221785, -0.0379126854, 0.0206319615, -0.0192186125, 0.00473908568, 0.0253382623, -0.00579545368, 0.0290537644, 0.00447317213, 0.0287769232, -0.0200345665, -0.0210982207, 0.00899005681, -0.00520170201, 0.0166250467, -0.00984243583, -0.0311519299, -0.0128731197, 0.0148692913, 0.000260221685, -0.0287914928, -0.00503778271, 0.0110080838, 0.00116929016, -0.0317347534, -0.00752571179, 0.012326722, 0.035085991, -0.00758399395, -0.00319642411, 0.00156269618, 0.0176158473, -0.0148255788, 0.026358204, -0.019072907, 0.0280046817, -0.000287769217, 0.0159548, 0.00472087227, 0.0179509707, 0.00298332912, 0.019072907, 0.0061415052, -0.0141771873, 0.0428666882, 0.0194080304, -0.00353154773, 0.00521627255, 0.0150805647, 0.00260813627, 0.00295600924, 0.0301028471, 0.0123485783, -0.00467716064, -0.0400108509, -0.0175721366, -0.00322192255, 0.0157945231, 0.0352316946, 0.0337454937, 0.0159256589, -0.0229778271, 0.00386485, 0.0213167779, 0.0222638678, -0.0334832259, -0.0174555723, -0.000203077652, 0.0338037759, 0.0382915214, -0.00317638949, 0.0160130821, -0.0154594, 0.0309479404, 0.00854565296, 0.00884435, -0.00738364831, 0.0221035909, -0.0234003738, 0.00147982594, 0.0154885408, 0.00737272063, -0.00408340897, 0.00261724298, 0.0028959054, 0.0221764445, 0.00829066802, -0.0130042545, -0.00549311377, 0.013965914, -0.00387942069, -0.00241871853, -0.0374464244, -0.00543847401, -0.0185192246, 0.0410307907, -0.0126254195, 0.0116929011, 0.0137036433, 0.0104179746, 0.00981329475, -0.0208650902, 0.00927418284, 0.0233275201, -0.0241289027, 0.0119333165, -0.00904833898, -0.0158090945, 0.00643656, 0.00436389307, 0.011947887, 0.0129678287, -0.02307982, 0.026387345, 0.0285146516, -5.77416686e-05, -0.00636006426, -0.00955102406, 0.000298241852, -0.018125819, 0.0330169648, -0.0138784908, -0.000846460462, -0.00146707671, 0.037708696, -0.00933246501, 0.0100172833, 0.00497585768, 0.0023659002, -0.00406883843, -0.00493943132, 0.0170038827, 0.0182132423, 0.0184318013, -0.0326672718, 0.0328421183, -0.00980601, -0.0120863076, -0.0203114077, -0.0170913059, -0.0204134025, 0.0106365336, -0.0309479404, -0.00048993621, -0.0141699025, -0.000575993792, -0.00589380506, 0.00336944987, -0.00397412945, -0.0193643197, -0.0316764712, -0.00273562898, 0.102810107, 0.00941260345, -0.00884435, -0.0198014379, -0.0320553072, -0.0270430222, 0.00631999504, 0.006021298, 0.03461973, -0.00178580836, 0.0210690778, 0.0407393798, -0.00805025268, -0.00752571179, -0.00543847401, -0.0176449884, -0.0108842338, 0.0154594, 0.00881520938, -0.0326381288, -0.00451688422, 0.0226718448, 0.0141844731, -0.00246789423, 0.024813721, 0.0217830371, -0.0193351787, -0.0227738377, -0.0367470384, 0.0283252336, 0.027451, 0.0122392988, 0.0279464, 0.00304707536, 0.00607958, 0.0178052653, -0.0234149434, 0.00704488205, -0.0268827453, -0.0190583374, -0.0134049458, 0.00812310632, 0.00196156627, 0.000163577686, 0.00702302624, -0.019072907, -0.0249302853, -0.00245878776, 0.00555868167, 0.0417593233, -0.020019995, -0.0168144647, -0.0201802719, -0.00413076347, -0.0165376235, 0.00191785442, -0.00845823, -0.0162316412, 0.0237500686, -0.0202239845, -0.0084873708, -0.00022629954, 0.0265184809, 0.00352972629, 0.00960202143, 0.0140824793, -0.0194954537, 0.0328712612, -0.0152554121, 0.0439157709, 0.0315016247, 0.0158819463, -0.0189709123, -0.00575174205, -0.024493169, 0.0131863877, 0.0013778318, 0.00354247564, 0.00852379762, -0.016960172, -0.0181841012, -0.0279901102, 0.00968216, 0.0140824793, -0.021404203, 0.0120061692, -0.0291557573, 0.00639649061, -0.000741734286, 0.0123412926, -0.0178781189, 0.00371914404, -0.0278444048, 0.00273927161, -0.0121227344, -0.0268681757, 0.0338620618, 0.0020143846, -0.00886620674, -0.0162462126, 0.0248574335, 0.00984972157, 0.00756213814, 0.00432018097, -0.0141116204, -0.0210399367, 0.0143738911, 0.014534167, -0.0189417712, 0.0141407615, 0.0115617663, 0.00273927161, -0.0114087751, 0.0110226544, -0.0142063294, 0.00263363472, -0.0140679087, 0.00449867081, -0.00172843668, 0.0016428344, -0.0294034574, -0.00803568214, 0.000344913278, 0.00741278939, 0.0010554574, -0.00183862681, -0.00971858576, 0.0186066478, 0.00566431833, -0.0216227621, -0.0152554121, 0.00356068881, -0.00661869207, 0.00278480467, -0.00971858576, 0.00284672971, -0.0195828788, 0.00960930623, -0.00135142263, 0.0442654639, -0.0113067804, -0.0113869188, -0.0162607823, 0.0212584957, 0.0425169915, 0.0158965178, -0.00523448596, -0.00682632299, 0.012610849, -0.00267552538, -0.0345614478, -0.0271013044, 0.0108259516, 0.000755394227, 0.0339786261, -0.0132300993, -0.00669154525, -0.0111246482, -0.0164064877, 0.00229669, -0.00239139865, 0.0274072867, 0.0081886733, 0.00340405502, 0.00385027938, 0.00835623592, 0.0047827973, -0.0288206339, 0.0218121782, 0.00713959103, -0.0103159808, -0.0061378628, 0.00616336102, -0.00663326262, -0.000730351, -0.00294690253, 0.0262562092, 0.00208359491, 0.0131936725, 0.0131936725, -0.00336944987, 0.00297604385, -0.0097914394, 0.0116054779, -0.000285947899, -0.0105199683, -0.026955599, -0.0124432873, 0.00948545616, -0.00854565296, -0.0297094416, 0.036980167, 0.0115471957, 0.00362261385, 0.00205991766, 0.0128366929, 0.000182246251, -0.0282232407, -0.00197613682, -0.000450094754, -0.0120863076, 0.0171495881, 0.0289954823, 0.0242454689, -0.015036853, 0.0202385541, -0.00690646144, 0.00862579141, 0.004476815, -0.00829066802, 0.0211419314, -0.0218558908, -0.00399598526, 0.00123758987, 0.0158236641, 0.00805025268, 0.00832709391, -0.0254693981, -0.0191894714, 0.000333302334, -0.0187086426, 8.16180909e-05, -0.0316764712, 0.00116837944, -0.0115763368, 0.00137601048, -0.0263727754, -0.00474272808, -0.00914304797, 0.0130115403, 0.0143228937, 0.0230361093, 0.00242782524, 0.0140970498, 0.0149639994, 0.00321099465, -0.00965301879, -0.0149931414, 0.00830523856, 0.0100099975, -0.0262124985, 0.00552225485, 0.0152262701, 0.0284126587, 0.0102431271, -9.84084254e-05, 0.0336580724, -0.0145123117, -0.000876056962, 0.0120935924, 0.0080211116, 0.0191894714, 0.0301902704, -0.0115544805, 0.0173827186, 0.00884435, -0.0185192246, -0.00936889183, -0.0249739978, -0.0346780121, -0.00359347276, 0.00647298619, -0.0084728, 0.0045460253, -0.0352899767, -0.0159256589, -0.0213604905, -0.0163482055, -0.0412347801, -0.0203696899, 0.013842064, 0.00345687335, 0.0133029521, -0.015036853, 0.0342117548, -0.0133830905, 0.0302485526, 0.0126472758, -0.00250432082, -0.00612329226, -0.00559146516, 0.00753299706, 0.00298332912, 0.00346962269, -0.0200637076, 0.0208796617, -0.00314360554, 0.0254839677, -0.0128075518, 0.0117948959, 0.0216227621, 0.0270575918, -0.0236917846, -0.0170621648, 0.000100457415, 0.0326672718, 0.0117147574, -0.0253819749, -0.0222930089, -0.0156196766, 0.00875692721, -0.0189417712, -0.00936160609, -0.0107895248, -0.0277861226, -0.00591566088, -0.00835623592, -0.00293233199, 0.0137400702, -0.0135725085, -0.0243911743, -0.0146871582, 0.000796374, 0.00773698511, -0.0040069134, -0.0048301518, 0.00245696632, -0.0137036433, -0.0203696899, -0.00981329475, -0.00785355, -0.0143884616, -0.0291849, 0.0295345932, 0.0220744498, -0.0127929812, 0.00730715273, -0.0107895248, 0.019043766, -0.000316227408, 0.0124287168, -0.00792640261, -0.0143083232, 0.0074965707, -0.00774427038, 0.0201511309, 0.00385027938, -0.0144613143, -0.016960172, -0.000495855522, -0.00759127922, 0.00436753547, -0.0246097334, 0.0331626721, -0.00688460562, -0.000856933068, -0.00407248084, -0.00534376549, -0.0255859625, -0.010498113, 0.0139950551, -0.00101629889, -0.0063054245, 0.003010649, 0.00866950303, 0.0369510241, 0.0122392988, 0.00350422785, 0.0074819997, -0.00292322529, -0.000123850041, 0.00429104, 0.0180675369, 0.00542026106, 0.00135506527, -0.0286895, -0.0302485526, -0.00148073654, 0.0115253394, 0.00960202143, -0.0116929011, 0.0181695297, -0.00673161447, 0.0158236641, 0.00143156084, 0.0253965445, 0.0239831973, -0.00681903772, 0.0182278119, 0.0145705938, -0.0180238243, 0.00580273895, -0.0192186125, -0.00661869207, 0.0209379438, -0.000135119495, -0.00293779606, -0.0176158473, 0.00823967066, -0.0028959054, 0.0202385541, 0.0158528052, -0.00344776665, 0.0122830104, -0.0199325718, 0.00685910694, -0.0301028471, 0.0256005339, -0.0209670849, 0.00165558374, 0.000313267752, -0.0117438985, -0.012894976, 0.0102941245, 0.0240560509, 0.0146725876, 0.00492850319, -0.0343866, 0.0155176828, 0.00539840478, -0.0130989635, 0.00999542698, -0.0293888878, 0.000395682699, 0.00882249419, 0.016901888, 0.00294326, 0.0216081906, 0.00852379762, -0.00302704074, 0.00414169114, -0.0201802719, -0.0214916263, -0.0049467166, 0.00526726944, -0.0336872116, 0.0260813627, 0.00920861494, -0.0105345389, 0.024842862, 0.00569345942, -0.00132228143, 0.00356615288, 0.0027083091, -0.00137327844, -0.0148401493, -0.0290974751, 0.00579181081, -0.0137910666, 0.0208213776, -0.0235460792, 0.00216737576, 0.0197285842, 0.00622892892, -0.00133138802, 0.0027174158, 0.0147818672, 0.0110372249, 0.00928146858, -0.00108733051, -0.00477186963, -0.0129678287, -0.0129605429, 0.0121154487, 0.00162735314, 0.00694653066, -0.0200491361, 0.00237318547, 0.00728529692, 0.00489207683, 0.0222638678, -0.00019772751, -0.0149057172, 0.0107968096, 0.0142791821, -0.00048948091, -0.011634619, -0.00960930623, -0.0179509707, 0.00274291425, 0.0165667646, -0.0358728021, 0.008385377, 0.0119041754, 0.0170475952, 0.00712137762, -0.00856750924, 0.0280921049, -0.0173827186, -0.00291958265, -0.0069647436, 0.0156196766, 0.00493214605, 0.0107530979, 0.0155031122, 0.0154594, -0.00799197052, 0.00859665, 0.0138202086, -0.000830523844, 0.0244203154, 0.00762042077, -0.00381021039, 0.0154302586, 0.00582095236, 0.0103815477, -0.00818138849, 0.0155322533, -0.0231818147, 0.0012312152, -0.00546033, -0.00616336102, -0.00625807, -0.00359347276, 0.0139513435, 0.0142063294, -0.00285401498, -0.0206611026, 0.0155322533, 0.0207485259, -0.00358800869, -0.00937617756, -0.0336872116, 0.00753299706, 0.00195245957, -0.0153282648, -0.0228612609, -0.0114670573, 0.0214479137, 0.0173244365, 0.0284563694, 0.00433110911, 0.015605106, -0.0219287444, 0.00774427038, -0.0164356306, 0.00886620674, 0.00049767684, 0.0328421183, -0.0192768965, 0.0247408692, 0.019451743, -0.00544940215, -0.00219287444, 0.00372825074, -0.0222201552, 0.0169310309, -0.0134413727, -0.014315608, 0.0207630955, -0.0202822667, 0.00785355, -0.0169164594, -0.00313267764, -0.00376285589, 0.00811582059, -0.00764956186, -0.0182278119, -0.0112994956, -0.0101265628, 0.00950731244, 0.0186795015, -0.0102212718, 0.0282086693, 0.0117657548, 0.0124141462, -0.00651305541, 0.00271377317, -0.00175029261, 0.00201802724, -7.23407211e-05, 0.020806808, -0.012137305, -0.00546397269, 0.0106802452, 0.0106365336, -0.0038320662, 0.00820324384, -0.00243146787, -0.0205736794, 0.0115180546, -0.00650941255, 0.00610507885, 0.0236626435, 0.0117657548, 0.0392240398, 0.000883797591, -0.000985336374, -0.0197140127, -0.00538383424, -0.000435524154, -0.0193643197, 0.000969855173, 0.017717842, -0.0151242763, 0.00319460267, -0.00132228143, 0.0164502, -0.00115107687, -0.00269738119, -0.00207448821, -0.00810853578, -0.0195828788, -0.00178580836, -0.0116637601, 0.000818685221, 9.32859475e-05, -0.0111465044, -0.0182423834, -0.0112339277, -0.00462616375, -0.00735450722, -0.000186116566, -0.00301975547, -0.0237937793, -0.0165230539, 0.00113377429, 0.00748928543, -0.00231672451, 0.00433475152, 0.00357708079, -0.0103305513, -0.00379928225, -0.00523448596, 0.00503049744, -0.00350787048, 0.0179655422, 0.0205591079, -0.00844365917, 0.0258628037, -0.0022475142, 0.019043766, -0.0111319339, 0.000190214545, 0.0199325718, -0.00392313255, 0.0198305789, -0.00893177371, -0.0217247549, 0.0204425436, 0.0186795015, 0.00426554121, -0.0105053978, -0.0113286367, -0.00710680708, 0.0176012777, 0.00158546271, -0.00550768431, -0.00837080646, -0.00916490331, -0.018096678, 0.0108186658, -0.0398942865, 0.00134777988, 0.0134122316, 0.00433839438, -0.00644748798, 0.00813039113, 0.00365904043, 0.00574809918, -0.018125819, 0.0115107689, -0.00995900109, -0.00515799038, 0.0143301794, -0.0122902961, 0.0200782791, 0.0287914928, -0.0195828788, -0.0201074202, -0.00297422241, -0.00210180809, 0.00646205852, 0.0118750343, -0.00345687335, -0.0110955071, 0.016362777, -0.000322374399, -0.00536197843, -0.0212147851, 0.0160422232, -0.00776612666, -0.0121227344, 0.0109862275, 0.0072634411, 0.0191311892, 0.0348528586, 0.00952188298, -0.0137400702, 0.0124651426, -0.0103888335, -0.00659319386, -0.0125452811, -0.011947887, 0.0120571665, -0.015197129, -0.00154175097, -0.0159985125, 0.00628356868, -0.0165959056, 0.0149639994, 0.00534376549, -0.00772241456, -0.00992257427, 0.0153574059, -0.00729258219, -0.00562789198, 0.00382478093, 0.0245514512, 0.00363172055, 0.0362224951, 0.00824695639, -0.0288352054, -0.00966758933, 0.00981329475, 0.00642927457, 0.0105782514, 0.00499042822, -0.0254839677, -0.000676622, -0.00442217523, -0.00699752755, -0.00931061, 0.00328202615, -0.0209233724, 0.00839994755, 0.00373371458, 0.0156633891, -0.00862579141, 0.0310936477, 0.00469537405, 0.00997357164, -0.0149639994, 0.000697567186, -0.0272761509, -0.00146798731, 0.0239249151, -0.0102431271, 0.012232013, -0.00904105324, -0.0135287959, 0.00824695639, -0.0210836492, -0.00905562378, -1.08781433e-05, -0.00785355, -0.00151078845, -0.00120389531, 0.0167124718, -0.0188980605, 0.0232109558, 0.0287332106, -0.02307982, -0.00696838647, 0.000122142563, 0.00710680708, 0.0193351787, 0.014534167, 0.00612693466, 0.00910662115, -0.0112922098, -0.00030029082, 0.0073800059, -0.0270867348, -0.00332938065, 0.00102904823, 0.0131645314, 0.0113359224, 0.00393041782, 0.00678261137, 0.0169164594, -0.00225662068, -0.00231672451, -0.0156925302, 0.00362261385, 0.00703395437, 4.00691315e-05, -0.0136089344, -0.0214333441, 0.00557689462, -0.0045460253, 0.0023659002, -0.00576631259, -0.0142791821, 0.012108163, 0.00932518, -0.0161005054, -0.00214552, -0.00988614745, -0.00469537405, 0.00392677495, -0.0023549723, -0.00667333184, 0.0173827186, 0.00152262708, -0.0216373317, 0.00908476487, 0.012202872, 0.00331116747, -0.00836352073, -0.0181403887, 0.00657133758, 0.00858936459, -0.030044565, 0.0257170983, 0.0114597725, 0.003657219, -0.00364993373, 0.0123121515, 0.00497585768, 0.00220198091, -0.0255131088, -0.0166396182, 0.00285037234, -0.00987157691, 0.0301902704, -0.00198342209, 0.0171058774, 0.013652646, 0.000880154956, 0.000776794797, -0.0102358423, 0.00421090145, 0.00686639221, 0.0238229204, -0.0168290362, 0.0235752203, -0.0210836492, -0.00744193094, -0.032346718, 0.0315599069, -0.0422838628, -0.00264092023, 0.0196557306, -0.00229304726, 0.0041271206, 0.00629449636, -0.00929603912, -0.0279901102, 0.00535833603, -0.0040761237, -0.0277715512, -0.0113942046, 0.000686639221, -0.0195391662, 0.0058355229, 0.00208541634, 0.00896820053, 0.0106656747, 0.0192477535, 0.00271195173, 0.0212439261, 0.00449502841, -0.00248792884, -0.0186795015, -0.0137692112, -0.00157999876, -0.0173244365, 0.00771512929, -0.00219287444, 0.0214187726, -0.00139149174, 0.0201948434, 0.0049467166, 0.0169747416, 0.0292868931, 0.0085529387, -0.00277934084, -0.0230943915, 0.00976229738, 0.0139149167, 0.0117220432, 0.00511792116, 0.00227483385, -0.0180092547, 0.00470630173, -0.00345323072, -0.0126327053, -0.00218376773, -0.021185644, 0.00882978, -0.0134559432, -0.0132446699, 0.00585009344, 0.0159256589, -0.0273927171, -0.00739457645, 0.00463344902, -0.000672524, 0.00744921621, -0.007077666, 0.00866950303, -0.00582095236, 0.00887349155, 0.0119406013, -0.00772241456, 0.00648755673, 0.0230506789, 0.00500864163, -0.0127711259, 0.0132373841, 0.00246607303, -0.00936160609, -0.00374099985, 0.0170330238, 0.00977686886, -0.017499283, -0.000672524, -0.0134777995, 0.0122465845, 0.0140679087, -0.0187523551, 0.00541297579, -0.0253091212, 0.000260677043, -0.0197722949, 0.00292140408, 0.0135142254, 0.0089609148, 0.0118313218, -6.98364e-05, 0.0326381288, 0.0376795568, -0.0201074202, -0.00391584728, 0.00221473025, 0.00342773227, -0.0223367196, 0.0131863877, -0.00228576199, 0.00572624337, 0.00318367477, -0.0158965178, -0.0278881174, 0.00142518617, 0.00343683874, -0.00567524647, -0.00173481135, 0.0270575918, 0.00986429211, 0.0261833575, 0.00574081391, 0.00831252337, 0.00378835434, 0.00866221823, 0.000805480639, -0.00739093358, -0.0127492696, 0.0116564753, -0.00454238243, 0.000856477709, -0.0108332364, 0.00499042822, -0.00832709391, -0.00789726153, 0.00178398704, 0.00815953221, 0.0113359224, 0.00163190649, 0.00761313504, -0.00470265932, -0.000874690944, -0.0218704604, 0.0118896049, -0.00111009716, 0.00997357164, 0.00968944468, 0.000708039792, 0.0160567947, 0.0181549601, -0.018446371, 0.0295637343, -0.0178926885, 0.0168290362, 0.0194954537, -0.00194699562, -0.00172388332, -0.00324924244, -0.0347654372, -0.00711045, -0.0074819997, 0.0162316412, 0.0200928487, -0.0188834891, 0.0203114077, -0.0123194372, -0.000227893193, 0.0126618464, 0.0213896316, -0.0270284507, 0.00857479405, 0.00744557334, 0.00764227659, -0.00628721109, 0.0207339544, -0.00601401273, -0.00303796888, -0.0308605172, 0.0308313761, 0.00359165133, -0.00197249418, -0.00899005681, 0.00135779718, -0.0160276536, -0.0134122316, -0.00926689804, 0.0198742896, -0.0114670573, 0.00842908863, 0.008385377, 0.00920133, 0.00124032178, 0.0113650635, 0.00939803291, 0.0175575651, 0.00500499876, -0.0155759649, -0.00982058048, 0.00325106364, 0.00764956186, -0.020996226, -0.0101921307, 0.00957288, -0.00221108762, -0.011445201, 0.00357525935, -0.00500499876, 0.0170038827, 0.0333375186, 0.0180675369, -0.0156488176, -0.0112193571, 0.015983941, 0.032696411, 0.00366814691, 0.0212439261, 0.00520170201, -0.0238083508, 0.00408340897, -0.00559146516, 0.0106001068, -0.0243911743, 0.0111100776, 0.0150805647, 0.00433110911, -0.00720880134, 0.00375557062, 0.00148620061, 0.0228758324, 0.0279609691, 0.000809123274, -0.00767141767, -0.00843637343, 0.00368453888, -0.0251051337, -0.00403241161, -0.00159730134, -0.00941260345, -0.000332847, -0.0139804846, 0.0035406542, 0.00589380506, -0.000882886932, -0.0205008257, 0.00156269618, -0.00303250481, -0.00968216, -0.00801382679, 0.0228321198, -0.0161879305, 0.0083198091, 0.00290136947, -0.0207048133, 0.0129969697, 0.000672524, -0.00567888888, 0.010592822, -0.0318221785, -0.0285292231, -0.00462252088, -0.0146944439, 0.0132373841, -0.0233712327, 0.00573717151, 0.00166651164, 0.0212876368, -0.00113741693, 0.011284925, 0.00623621419, 0.00925232749, 0.0077297, -0.00590109034, 0.00303979, -0.0259502269, 0.00462980615, -0.00948545616, 0.00622164365, 0.00179582566, 0.0247700103, 0.00173754327, -0.00475001335, -0.00117384351, 0.0110517954, 0.00477551203, -0.00102449488, 0.0083198091, 0.0134996548, 0.00915033277, 0.00165558374, -0.00225479947, -0.0103742629, 0.0248574335, 0.00403969735, 0.0160422232, 0.0141189052, -0.0218267497, -0.0326672718, -0.00493214605, 0.0136745023, 0.0178198367, 0.00885892101, 0.00729986746, -0.0234149434, 0.02503228, -0.00427282648, 0.0235606506, -0.00292504672, 0.0100537101, -0.0258628037, 0.00725615583, 0.0179364011, -0.0044804574, -0.0188106373, -0.000436662493, 0.0290829055, 0.00601765513, -0.0113942046, -0.0147964377, 0.00304707536, 0.0180092547, -0.00496128714, -0.0199325718, 0.0050669238, 0.00719058793, -0.00470630173, -0.0097258715, -0.0124287168, 0.0078462651, 0.0159402303, -0.00719058793, -0.00639284821, 0.00368271768, 0.0116419047, -0.00381385302, 0.00010273407, 0.00960202143, 0.00157362409, 0.00721972901, 0.00251524872, -0.0233712327, 0.00231490307, -0.00293233199, 0.00982786529, -0.0135069406, -0.00483379466, -0.015386547, -0.0109862275, 0.00920133, -0.0162899233, -0.00114652363, 0.00378835434, -0.00370093086, -0.0144176027, -0.00963844825, -0.00416354695, 0.00318367477, 0.00741643226, -0.0213167779, -0.0175429955, -1.88677805e-05, -0.0204279721, -0.000685273262, 0.0115180546, 0.0216227621, -0.00687732035, -0.00861122087, -0.010876948, 0.0135287959, -0.00882978, -0.000304616464, 0.00268463185, 0.0235315096, 0.00027046664, 0.0033038822, 0.000499953516, -0.00733629381, 0.00290501211, -0.00370457349, -0.0169747416, -0.00461523561, 0.00488114869, 0.0194808841, -0.00885163527, -0.000949820562, 0.00346051599, -0.00406883843, 0.0147672966, -0.0278444048, 0.0148037234, -0.0228175502, -0.0256442446, 0.0201074202, -0.000290501222, 0.0105491104, -0.0151825584, 0.00614879047, 0.012894976, -0.0198014379, 0.00174847129, 0.0074273604, 0.00472451514, 0.000776339439, -0.00255713915, 0.016362777, -0.00278116204, -0.00401784107, 0.00227847649, -0.0116929011, -0.00152080576, 0.0124869989, -0.00174847129, 0.0158236641, 0.00580273895, 0.00150259247, -0.0219724551, -0.00451688422, 0.0108842338, -0.00341134029, 0.0244785976, 0.0212293547, -0.0221181605, 0.0148984324, -0.0106292479, -0.00614879047, 0.00599944219, 0.030394258, -0.00487386342, -0.00577359786, 0.0130916787, -0.0323175788, 0.0212002136, -0.00288862013, -0.00954373926, 0.0115326252, 0.0213167779, -0.0191166196, 0.00199617143, 0.00659319386, -0.00242054, -0.0130479671, -0.000178831266, 0.0181986708, -0.000585100381, 0.00403969735, 0.0108332364, 0.00752571179, -0.00509606535, 0.0108332364, -0.00474272808, -0.0160130821, 0.00733265141, 0.0257753804, 0.0150805647, -0.00220380235, 0.0200637076, -0.0111756455, 0.0143083232, -0.0170621648, 0.0129605429, -0.011255784, -0.00134413724, -0.0181549601, -0.00640377589, 0.0101265628, 0.00117020076, -0.00120935927, 0.000739912968, -0.00632728031, 0.0100974217, -0.0222930089, -0.0115617663, 0.0143957464, 0.00415626168, -0.025440257, 0.0170475952, -0.0140387667, -0.00806482323, 0.00262088561, 0.0265330505, 0.0169893131, -0.00863307714, -0.0120280255, 0.0230652504, -0.0140314819, 0.0163919181, -0.0245805923, 0.0189126302, -0.0122392988, -0.0103305513, 0.0108550927, -0.00993714482, 0.00166195841, 0.0201948434, 0.0051324917, -0.000981693738, -0.014315608, -0.00721972901, 0.0125379963, -0.0131645314, 0.020209413, 0.0080866795, 0.0171350185, -0.00534376549, 0.0250177104, -0.0212293547, -0.0183589477, 0.0185337961, 0.0226281323, 0.00705945259, -0.0220598783, 0.00966758933, 0.0238812026, 0.00113104237, 0.00465530483, 0.0216810443, 0.00893905945, 0.0154448291, -0.00143884611, -0.00420361618, 0.0141699025, -0.00150350318, -0.000226071876, 0.0268681757, -0.0153136943, -0.00636006426, 0.0279901102, 0.00663326262, -0.0206319615, 0.012894976, -0.00467351777, -0.00634549372, -0.0259647984, 0.00443310337, 0.00498678582, -0.00293233199, 0.0250031389, -0.00611236412, -0.00912847742, 0.0121810166, 0.0256879572, -0.0178198367, 0.0170330238, 0.0108405221, 0.00999542698, -0.0168144647, -0.00610507885, -0.00336762844, 0.000257717387, 0.00062835688, -0.00422182959, -0.000414578913, -0.0123340078, -0.00908476487, -0.0051834886, 0.0168581773, -0.0198160075, 0.00707038073, 0.00324013573, 0.00251160609, 0.011729328, -0.00516891805, -0.0163482055, 0.00297057978, 0.0117657548, -0.00452781189, 0.0169310309, 0.0117438985, -0.0242017563, -0.00181039632, 0.019670302, 0.0142791821, -0.0109279454, 0.0154302586, 0.000997175, 0.00101447757, 0.00305071799, 0.0180529654, 0.0233712327, -0.00192149705, -0.0303359758, 0.0168873183, -0.0627701208, 0.00580638181, -0.00210362952, -0.00665511889, -0.0160713643, 0.0119988844, 0.0229341146, -0.0130333966, 0.0339786261, -0.000345140928, 0.0111100776, 0.0230361093, 0.00868407357, 0.00380292488, -0.0153136943, 0.00914304797, 0.0162462126, 0.00047536561, -0.0161150768, -0.0117147574, 0.00601765513, 0.00767141767, 0.00368089625, -0.0113650635, 0.00428375462, 0.00987886265, 0.0137910666, 0.0129095465, -0.00572988624, -0.019043766, 0.00660047913, 0.00594480243, 0.00951459818, -0.022919545, 0.0274072867, -0.00376285589, -0.00203806185, -0.00343866018, 0.00332391681, -0.00114197028, 0.00240779063, -0.0111100776, -0.00216191192, -0.0210982207, -0.0275967047, 0.0130552519, -0.0124724284, -0.00575174205, -0.00786812, -0.00988614745, -0.0091940444, 0.00521991542, -0.000795463333, 0.00956559461, 0.0188106373, 0.013652646, -0.0332209542, -0.00793368835, 0.0375338495, -0.00631999504, -0.00512156356, -0.0220744498, -0.0221473034, 0.00728165405, 0.0151242763, -0.00151898444, -0.0137327844, 0.00112739974, -0.00997357164, 0.0124651426, -0.0164939128, -0.0101411333, 0.00490300497, -0.0121300193, -0.00243511051, -0.00355522498, 0.0142937526, 0.00411619293, 0.000931607326, 0.00186503597, 0.00561332144, 0.00154721492, 0.0222492963, 0.00936889183, 0.00479008257, -0.0190583374, -0.026387345, -0.000305527152, 0.0257316679, 0.00229669, -0.000356524222, 3.71735109e-06, -0.0174118597, -0.00888077728, 0.0100245681, 0.00020455748, -0.0125234257, 0.00530733867, -0.0015353763, 0.000895636214, 0.010876948, -0.00272105844, 0.0228029788, 0.0126327053, 0.0396611579, -0.0118021807, 0.0222492963, -0.00811582059, 0.00177123782, 0.0174264293, 0.00552954, 0.0165667646, 0.00699388515, 0.015197129, 0.0282086693, -0.0146798734, 0.00819595903, -0.00660047913, -0.00963844825, -0.000521354086, 0.00480465312, 0.00510699302, -0.00137418916, -0.0194080304, -0.00600672746, -0.0035989366, -0.00335123646, 0.00719058793, -0.00503414031, -0.0120280255, -0.0229049735, 0.0126472758, 0.00562424911, -0.00103815482, 0.0196120199, -0.00771512929, -0.00388670596, 0.0158819463, -0.0111246482, 0.00853108242, 0.0154594, 0.00378106907, 0.0202968363, -0.000297786522, -0.0243766028, -0.010213986, 0.0148692913, -0.00303250481, 0.0121445898, -0.0164647717, 0.0121445898, -0.00480465312, 0.000129086358, -0.0202239845, -0.00923775602, -0.0207922366, -0.00462252088, -0.00180584297, 0.00699388515, 0.00633456558, 0.0180675369, -0.00539476238, 0.0288789161, -0.0248282924, 0.00275202096, 0.00289226277, 0.00382842356, 0.0314142, -0.00297240121, 0.00377742643, 0.0097914394, -0.00859665, 0.00520898728, -0.0172515828, -0.015415688, -0.0195828788, -0.00211637886, -0.026576763, 0.000430287851, 0.0040761237, 0.00324013573, -0.00920133, 0.0119988844, -0.010403404, 0.0126764169, -0.0210690778, -0.000500864175, 0.0127346991, 0.00983515102, 0.00519805914, 0.00685182167, 0.0225261375, 0.013965914, -0.0118167512, -0.022919545, -0.0110809365, -0.00700117042, -0.0144831706, 0.00663690548, 0.0100974217, 0.0162170716, -0.000439622148, -0.00291411881, -0.00187232136, 0.0140314819, -0.0329004, 0.00428375462, -0.00197613682, -0.0249011442, 0.0185629372, 0.0273927171, -0.0224824268, -0.0110007981, 0.0209379438, -0.00112011435, 0.0115034841, -0.0146361617, 0.00718694553, -0.0138566345, 0.0110372249, 0.0180821065, 0.0182278119, 0.0166250467, 0.0121810166, 0.0327838361, -0.00267734658, 0.026576763, 0.0171933, -0.00567160361, 0.00451688422, 0.016173359, -0.00420361618, 0.00284672971, -0.00121573394, 0.000120435063, 0.00746742915, 0.00322374399, 0.0158382356, 0.00242236117, 0.00426554121, 0.0132228136, 0.0130333966, 0.00707038073, -0.0165230539, -0.0112047866, 0.0334540829, -0.0153574059, 0.0336289294, 0.00458245166, -0.000765866833, 0.00874964148, -0.0197140127, -0.0102795539, 0.0164939128, 0.015605106, 0.00436389307, -0.0132009583, 0.0213750619, -0.0124068605, 0.000934339303, -0.0167853236, -0.00871321466, 0.0173681471, -0.0224095732, 0.0133320931, -0.00940531865, 0.00297240121, -0.0189272016, 0.00123303651, 0.00281758863, 0.00143429288, 0.000373371469, -0.00779526774, 0.0103232656, -0.00455695298, 0.0395154506, -0.00343501754, 0.0111975009, -0.0160567947, -0.00107913464, 0.00308350194, -0.000332391675, -0.0131645314, -0.0172807239, 0.0139877703, 0.0013195494, -0.00578452554, -0.0200928487, 0.0118677486, -0.00125580304, 0.00452416949, -0.00809396524, 0.022948686, 0.0114524867, -0.0191311892, -0.0195100252, 0.0129532581, -0.00623985659, -0.00782440882, -0.0125379963, 0.00212548533, -0.0456351, -0.00374464272, -0.0114524867, 0.0134632289, -0.0194663126, 0.00322920782, -0.0250905622, -0.00146889803, -0.00823238585, -0.00676075555, 0.0020617391, -0.0142209, 0.0150951352, -0.0205008257, 0.0114597725, -0.02427461, -0.00377742643, 0.00860393606, -0.0144540295, -0.010658389, 0.0218558908, 0.00252253399, -0.0101921307, 0.0149931414, 0.0131208198, 0.0179946832, -0.0115544805, -0.0179364011, -0.0247408692, 0.00168654625, 0.0108623775, -0.00465166196, 0.01349237, -0.0201657023, -0.0094927419, -0.0271595865, -0.0127711259, 0.00486293575, -0.0138056381, -0.0161442179, -0.00331845274, -0.00450595608, 0.00566431833, 0.004476815, -0.0179364011, 0.00221290882, 0.00326381298, 0.0259647984, -0.00711409235, -0.000974408467, -0.0045460253, -0.0132228136, 0.019990854, -0.000831889862, 0.00170840207, -0.0206611026, -0.0118968897, -0.00296329451, -0.0101629896, -0.0101192771, 0.0090191979, -0.0139877703, -0.0424587093, 0.00371732283, 0.000626990863, -0.0042364, 0.0266641863, -0.0179655422, -0.00931061, 0.00534376549, 0.00834895, 0.0105563952, 0.0594771653, 0.0298260059, 0.0185337961, -0.0269410275, -0.00363900582, -0.00971130095, 0.0023659002, 0.0334832259, -0.00899005681, 0.0233275201, 0.0167270415, 0.0153574059, -0.0162316412, 0.0097331563, 0.00480101071, 0.0133248083, 0.0236335024, -0.0145268822, 0.0145123117, 0.0106219631, -0.0123704346, -0.0272470098, 0.0116564753, -0.0123485783, 0.00156178547, 0.00912119169, -0.00177761249, 0.0021801251, -0.0168290362, 0.013084393, 0.0107676685, 0.0191603303, 0.00634913612, 0.00523812836, 0.00372825074, 0.0212730672, 0.012042596, 0.0251634158, 0.00595937297, -0.0267078988, 0.0333375186, 0.00764227659, 0.00496857241, -0.0124432873, 0.0125525668, -0.00371003733, 0.00390856201, -0.0165959056, -0.00916490331, -0.0361350738, 0.0193206072, -0.0329004, -0.032725554, -0.0240706205, 0.00764956186, -0.00174391794, 0.0253091212, 0.00774427038, 0.0110736517, 0.00734357908, 0.0028248739, 0.00178854039, -0.00518713146, 0.00595937297, 0.00216191192, -0.0367178954, 0.000904742803, -0.0133830905, -0.00155632151, -0.00479008257, -0.00753299706, -0.00368636032, 0.0206028204, 3.12186348e-05, -0.0207485259, 0.0106146773, -0.00426189881, -0.0109279454, 0.00859665, -0.0129605429, -0.035785377, 0.00767141767, 0.010687531, -0.0105272541, -0.000650668051, -0.0173244365, -0.014723585, -0.0192040429, -0.00987886265, 0.00201984867, 0.00368271768, 0.0368927419, 0.00576995499, -0.00752571179, 0.00183589477, 0.0238083508, 0.00591201847, -0.013084393, -0.0058391653, -0.00709587894, 0.020996226, 0.00333484472, -0.00149075384, 0.00080502528, -0.00387577806, 0.0239540562, 0.0063090669, 0.00630178163, 0.00396320131, 0.00368089625, 0.00252435543, 0.00452781189, 0.00501957, 0.0106146773, 0.00189964112, 0.0124068605, -0.0104471156, 0.00628356868, -0.000634276133, -0.00121664454, 0.0152991237, -0.0226864144, -0.0285292231, -0.00601765513, -0.00893905945, 0.00695017306, 0.00560967857, 0.0150659941, 0.0249739978, 0.00527091231, -0.00333848735, -0.0139367729, 0.0138857756, 0.013842064, 0.020398831, 0.0180529654, 0.00481193839, 0.0159110893, 0.0154302586, 0.00794097316, -0.00812310632, 0.00781712402, 0.00449138554, 0.0109789427, -0.0119551718, 0.00420725904, 0.0192331839, 0.0116710458, 0.0291994698, -0.00503778271, -0.000896546873, -0.010687531, -0.0179509707, -0.00410890765, -0.0256005339, 0.0100464243, 0.00443310337, -0.0223950017, 0.00392313255, -0.0178344063, -0.000734449, 0.00298332912, 0.00889534783, -0.0177469831, 0.00216373312, -0.0282815229, -0.00296329451, -0.0143884616, 0.00332938065, 0.0115253394, 0.0141844731, 0.0138129229, -0.0212147851, 0.00901191216, -0.0133539494, 0.00904105324, -0.0077806972, -0.0039595589, 0.000487204234, -0.0306856707, -0.0127638401, 8.97002174e-05, 0.00767870294, 0.054902, 0.0109643722, -0.0091940444, 0.0110809365, 0.000704852457, 0.00747471442, -0.0153428353, -0.0215644781, -0.00629085395, 0.0201802719, -0.00522355782, 0.0240997616, -0.000474454951, 0.0183298066, -0.020588249, 0.0152116995, 0.020019995, 0.030802235, -0.0202385541, 0.0175867062, -0.0179364011, 0.0144248875, 0.0226718448, 0.00753299706, 0.000173481138, -0.0198305789, 0.0212293547, 0.00434203679]
24 Nov, 2021
jQWidgets jqxScrollBar showButtons Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The showButtons property is used for setting or getting whether the specified scrollbar displays the increase and decrease arrow buttons or not. Syntax: For setting the showButtons property. $('#jqxScrollBar').jqxScrollBar({ showButtons: true }); For getting the showButtons property. var showButtons = $('#jqxScrollBar').jqxScrollBar('showButtons'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar showButtons property. In the below example, the value for the showButtons property has been set to true. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar showButtons Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin: 28px;" id="button_for_showButtons" value="Value of the showButtons property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 200, height: 20, showButtons: true }); $("#button_for_showButtons").jqxButton({ width: 250 }); $("#button_for_showButtons") .jqxButton().click(function () { var Value_of_showButtons = $('#jqx_Scroll_Bar') .jqxScrollBar('showButtons'); $("#log").html((Value_of_showButtons)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollbar/jquery-scrollbar-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-showbuttons-property?ref=asr7
PHP
jQWidgets jqxScrollBar showButtons Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0251100045, -0.00296757766, -0.013134894, 0.0451896228, 0.0853488594, 0.00329944328, 0.0147418221, 0.0284496211, -0.00495702494, -0.0183748771, -0.0299866833, 0.0408858508, 0.0158736594, -0.00346362963, -0.00202088733, 0.0346258171, -0.0393767357, -0.0137147857, -0.032110624, 0.0359113589, -0.00388457486, 0.00343044288, -0.0503038466, 0.00705651194, -0.0541884229, 0.0317752622, 0.00559979631, 0.00808354933, -0.0271361321, 0.0231118239, -0.0274435431, -0.00110127, -0.00793683, -0.000637531397, -0.0454970375, -0.0370571688, 0.00370641542, -0.0211415887, -0.0193110891, -0.0199398864, -0.0219380669, 0.0228603035, 0.00569062261, 0.0217564143, -0.0193390343, 0.0300705228, 0.00370990881, -0.0202612728, -0.0139383581, 0.0262418408, -0.00611680839, 0.0253335778, 0.000364178908, 0.00706699211, 0.0125060957, -0.00401033461, -0.021532841, 0.0147837419, -0.00781107, 0.0118703106, 0.0182910375, -0.0446306914, -0.0306015071, -0.00848178752, -0.0130510535, 0.0168378167, 0.0146579826, 0.0266470667, -0.042422913, 0.0117515381, -0.0337874182, 0.0277649295, 0.024690805, 0.0188639425, -0.0023213129, 0.0202333257, 0.00603296841, 0.00166544167, 0.0349611752, 0.0238384344, -0.00804861542, -0.00369244209, -0.039237, 0.0214909222, -0.00298853754, 0.0215468146, 0.0303779356, -0.0367777, 0.0625444502, 0.0321944617, -0.00884509366, -0.0230279844, 0.00605742168, -0.00541465031, -0.00512819784, 0.00447145337, -0.0138754779, 0.0244392864, -0.0219101198, 0.0100607695, 0.0362187698, 0.0247606728, -0.0502759032, -0.048207853, 0.0178578664, 0.00601550192, 0.0172290672, -0.010479968, -0.00230035302, -0.016795896, 0.0134492926, -0.0108712204, -0.0121497763, -0.0109969806, -0.0421993397, 0.0271361321, -0.0193390343, 0.0168098696, 0.00101830356, -0.00320337689, 0.00767832343, 0.0223013721, 0.00623907428, 0.0432054177, -0.00816738885, 0.0165862963, -0.0155243268, -0.00190036756, 0.0345140286, -0.0248445123, -0.00955773145, 0.0382588729, 0.0109899938, -0.0146859288, 0.0185006373, 0.0365820751, 0.0261300541, -0.00125235622, -0.0560887903, -0.00583734224, -0.0423111245, -0.0451896228, 0.0276950635, 0.016222991, -0.00895687938, 0.037113063, -0.00433521345, 0.0347096547, -0.0307412408, 0.0250121914, 0.00147767551, -0.0247187521, 0.00241213944, 0.0200796202, 0.0584642515, 0.0172150955, -0.0131628402, 0.0356877856, 0.00319115026, -0.00409766752, -0.00487667881, -0.0143785169, 0.0151889678, 0.0425626449, -0.0340109915, -0.00725213811, 0.0184866637, 0.0129811876, -0.0319149978, 0.0315516926, -0.016628217, -0.0287011396, 0.00326276338, 0.0109410873, -0.0238524079, 0.000992977, 0.0168238431, -0.0403828099, 0.00676656608, -0.0194647945, -0.0426464863, -0.0161112044, -0.00688184611, 0.0256409887, -0.0177321061, -0.00259903213, 0.00268461858, -0.000658491335, -0.0538810119, -0.0129043348, -0.0232655294, -0.00736392429, 0.0337874182, 0.0163208041, -0.008397948, -0.0230838768, -0.0229022242, -0.00103489682, -0.0183189847, -0.00738488417, 0.00561027648, -0.00412561418, 0.00864248071, -0.0194089022, 0.00905469246, 0.0314399041, 0.00959965121, -0.039069321, 0.0334520601, 0.00987213, 0.00119471643, -0.00668272655, 0.0529587716, -0.0166701358, -0.0107454611, 0.0221616402, -0.00702507235, 0.0058513158, -0.038594231, -0.0198420733, -0.00597358216, 0.0115419384, -0.0318311565, 0.00838397443, -0.0714314654, 0.000174556975, -0.0110109532, -0.0411653146, -0.0195346605, -0.00351078948, -0.0418080874, -0.025864562, -0.0276251957, 0.0064696339, 0.0296792705, 0.0543561019, -0.0166421905, 0.00620763469, 0.00136588921, 0.0232515559, -0.0137706781, -0.00270732515, 6.79560471e-05, -0.0116327647, 0.0249143783, 0.00614824798, 0.0112974057, -0.0472297259, 0.015552273, -0.0150073143, -0.0305456147, 0.021532841, 0.0125899352, -0.0336197391, 0.0202473, 0.00908962544, -0.0316634774, 0.00587576907, 0.0323900878, 0.014210837, 0.0193390343, 0.0236428082, -0.00977431703, 0.0228183847, 0.0185146108, 0.019450821, 0.0331167, -0.0268706381, -0.0186683163, -0.0198141262, 0.0445189066, -0.00813245587, 0.0306294542, 0.000844510796, 0.00582686253, 0.0217843615, -0.0333961658, -0.0152448602, 0.0341507234, -0.0181373321, 0.00839096121, 0.0385662839, 0.0434848815, 0.0484593734, -0.00699712569, -0.00856562704, -0.00111960992, 0.0012846695, -0.0239641946, 0.0319988355, -0.0143365972, -0.0238803551, 0.0288129263, 0.0181932244, 0.0507509932, 0.0143645434, -0.0195346605, -0.00777613651, -0.0111017795, -0.00198071403, -0.0265911724, 0.0012444962, -0.0409137979, -0.0140990503, 0.000898657308, 0.00878221355, 0.0461398065, -0.00921538565, -0.00927127898, -0.0183050111, 0.0189338103, -0.000894290628, -0.0328931287, -0.0226926245, -0.00680149952, 0.00418849383, 0.0159155782, 0.0180674661, -0.0303779356, -0.0171312541, 0.0207084175, 0.0129043348, -0.0503038466, 0.0559490584, 0.036414396, -0.0254453626, -0.0169356298, 0.000587314891, 0.0307971332, -0.0117305778, -0.0411653146, 0.0230140109, -0.00479982561, -0.00973938406, 0.0218542274, -0.047732763, -0.0119122304, -0.00474742567, -0.00979527738, 0.0114511121, 0.00310556404, 0.0127087086, -0.00591419544, -0.0273876507, 0.0215048958, -0.0482637472, -0.017298935, -0.00110039662, 0.0505833142, 0.0240061134, 0.00132920931, 0.0285753813, 0.018039519, 0.00497798482, 0.0139383581, -0.0112624727, -0.00987213, -0.00908264, -0.0318311565, 0.0166841093, 0.00563472975, -0.0112415124, 0.0191853289, 0.0326975025, 0.0164745096, -0.0449939966, -0.0332564339, 0.00049212185, -0.020624578, -0.00618667481, -0.0196604207, -0.0313001722, -0.0179417059, 0.0541325286, -0.00464961259, 0.0310486536, -0.0286452472, -0.0196045283, -0.0137077989, 0.00908264, -0.0360231437, 0.0520644821, 0.0016409884, 0.0281981, -0.00564171653, -0.00395444129, -0.00741981762, -0.0241458472, 0.0315516926, 0.00982322358, -0.0605881922, 0.0738907605, 0.00752461748, -0.025864562, -0.00470550591, 0.00527841086, -0.00433521345, 0.00198595389, -0.0104450351, -0.000702594523, 0.0536853857, -0.0062181144, -0.0101935156, -0.00191958086, -0.0194368474, 0.0110668465, -0.0399356671, -0.0316914245, 0.00157898187, 0.0025833121, -0.00447843969, -0.0180255454, -0.000581201573, 0.0378117263, 0.0059421421, 0.0122406026, 0.0190735422, 0.0411653146, 0.0345140286, -0.0363864489, 0.0307132937, -0.0399636142, -0.0377558321, 0.0250401385, -0.0379794054, -0.0224411059, -0.0700900257, -0.00107769, 0.0517570712, -0.0207084175, 0.0187381841, 0.0406063832, -0.00743379071, 0.00380073511, 0.0190036763, 0.0260042939, 0.0371969, 0.00378326862, -0.0216027088, -0.0321944617, -0.0156081663, -0.00631942088, 0.00817437563, -0.0170613881, -0.0513658188, 0.0136938253, -0.0108153271, -0.0222734269, 0.0274994373, 0.0283098873, -0.0247606728, -0.0536574386, -0.0243833922, -0.0166701358, -0.00363654899, -0.01753648, 0.00653251354, 0.00246803253, 0.0132117467, -0.0156081663, -0.017298935, 0.0152728073, -0.0154125402, 0.00570110278, 0.0281841289, -0.0276391692, -0.009473891, 0.00933415815, -0.0156780332, 0.00548801, -0.031942945, -0.0105777811, 0.0221756138, 0.0459162332, 0.0233493689, 0.00556486333, -0.00534827728, 0.0136938253, 0.0104031153, 0.00813245587, 0.0251658969, -0.0322783031, 0.0155103533, 0.0264514405, 0.0124851353, -0.0255012568, 0.0222454797, 0.00319813704, -0.00380073511, 0.00680149952, 0.00737789785, -0.00195276749, -0.0332005396, -0.000369637215, -0.0172709879, 0.0473135635, -0.0365541279, 0.00485571846, 0.0296792705, 0.0212254301, 0.0108083403, 0.0173408538, -0.0448822118, 0.0120100435, 0.0387619101, -0.013134894, -0.038426552, 0.00655696681, 0.00732200453, -0.0276251957, 0.00145671563, -0.0115768714, -0.0210856963, 0.0200377, -0.0162788834, -0.0586319305, -0.0465031117, -0.0203870311, -0.002099487, -0.0300705228, 0.0230140109, -0.00702507235, -0.0045517995, 0.0310765989, 0.0282260478, 0.0109061534, -0.0130231073, -0.0314958, -0.018542558, 0.0229022242, -0.0233493689, 0.021365162, 0.027038319, 0.0126737747, -0.0219380669, 0.0232375823, 0.00410116091, 0.00698315213, -0.0353524275, 0.00330817676, -0.0100467959, 0.0222734269, -0.0147557957, -0.0181652792, 0.0234751292, 0.0267169327, -0.00729405787, 0.000298242434, 0.0311324932, 0.0357436799, 0.00607488817, -0.00781107, 0.0168937091, 0.00746173738, 0.00704952516, -0.0156780332, -0.0243275, -0.00165146834, -0.000585568254, -0.00272129849, -0.01430865, 0.00317368377, 0.0039230017, -0.00107245008, 0.0176482666, -0.0225249454, 0.0118004447, 0.0189198367, -0.0171592012, -0.00176238129, -0.0119541502, 0.00576747581, -0.0123384157, -0.00132396934, -0.0165723227, 0.0104659954, 0.0466428474, -0.0144344093, 0.00492558535, 0.0243973657, -0.0039230017, -0.0262837615, 0.0161531251, -0.014881555, -0.0243973657, 0.0147138759, -0.00557534304, -0.000164841171, -0.0250960309, -0.00956471823, -0.0100048762, 0.0262558144, 0.02734573, 0.00104275683, 0.0152728073, -0.0213511884, -0.0159016047, 0.00866344, -0.00165059499, -0.0328372344, 0.00245755259, 0.0370292217, 0.025696883, 0.0179975983, -0.0030566575, -0.0349052809, -0.00933415815, 0.0135121727, 0.018277064, -0.0132746268, -0.047565084, 0.00643819384, 0.0241877679, -0.0189617556, -0.0318311565, -0.0393487886, -0.00650456687, 0.0232515559, -0.00208027381, -0.0204289518, 0.0193949286, -0.00646264711, 0.0302382018, 0.0105707943, 0.0157898199, -0.00340249646, -0.0361908227, -0.0263955463, 0.0133584663, -0.0474253483, -0.0113742594, -0.018947782, 0.00310731051, 0.00719624478, 0.0109690335, 0.0196883678, -0.00417102734, 0.0239921417, -0.0444071181, 0.02734573, 0.0218821745, 0.0400754, -0.0399356671, 0.0623767711, -0.00312477723, 0.0286173, 0.00362956244, 0.00776216341, -0.00449590664, 0.00295535102, -0.0280443951, 0.0114790583, -0.0166002698, 0.0042129471, -0.0128204944, -0.00149426877, 0.000936210505, -0.00136850926, -0.017033441, 0.0233353954, -0.0183888506, 0.0051701176, 0.0296233781, 0.00883810688, 0.00797176268, -0.0175225064, 0.0418360345, 0.0346817076, 0.00525046419, 0.0155103533, 0.0126108956, -0.00702157896, 0.0181513056, 0.00936909206, -0.00573952915, -0.0041046543, -0.0352126919, -0.0156081663, 0.0169775486, -0.00231083296, 0.0130929742, 0.0340948291, 0.027038319, 0.00634387415, -0.0100677563, -0.0194647945, -0.024020087, 0.00962061062, 0.009473891, -0.00116764312, 0.0043946, 0.00234052632, 0.0434010439, 0.012596922, -0.0126108956, -0.0157618728, -0.00507230451, -0.0178718399, -0.00511771766, -0.0113393255, 0.00148815545, -0.01672603, -0.0205826573, -0.00452385284, 0.0222594533, -6.11331488e-05, 0.00950882491, 0.0234332085, -0.00680149952, -0.00685389945, 0.0286731943, 0.0230838768, -0.00532033062, 0.0473974049, -0.0191713553, -0.00571507588, -0.00888701342, -0.0412771031, -0.0307412408, -0.0192412212, 0.019883994, 0.00774819, -0.0110947927, -0.0204708707, 0.00156500866, -0.0203451123, 0.00881714653, -0.0149933416, 0.0127855614, -0.00755955046, -0.000725737831, 0.0458044484, 0.00296233781, -0.0164745096, -0.0172150955, 0.0325577669, 0.00166456832, 0.011220553, -0.000542775029, -0.00776914973, -0.0108712204, -0.0119751105, -0.000360685575, 0.023950221, 0.00674909959, -0.0314399041, 0.0201494861, 0.000980750425, -0.000772461, -0.0141200107, 0.00882413331, -0.0196185, 0.021798335, -0.0369733274, -0.00132134929, 0.00627750112, 0.0160832573, 0.0237406213, 0.0110878069, 0.00547403703, 0.0139383581, 0.00862850714, -0.0176342931, 0.0121707367, 0.000394963805, 0.00895687938, -0.037420474, 0.00375182857, 0.0288688187, -0.0320826769, -0.00240689935, 0.0047089993, 0.0331167, -0.0150771812, 0.00115279655, 0.0051701176, -0.0323062502, -0.0225668661, -0.0184866637, 0.0234891027, -0.0143505698, 0.00133706932, -0.00122790295, 0.00566616934, 0.00647312729, -0.0135121727, -0.00416404055, 0.0180954114, 0.0184447449, 0.0100607695, 0.0170194693, 0.00462166592, 0.00253789895, 0.0209459625, 0.00858658738, -0.0257248282, 0.00757352402, 0.0338992029, 0.0021379136, -0.03507296, 0.00738488417, -0.0164325908, 0.0276950635, 0.0288408734, 0.0396003053, -0.0208341777, -0.0396562, 0.00997693, -0.0235589687, 0.00185844768, -0.00890797284, -0.00861453358, -0.0320547298, -0.00813944172, -0.00853069406, -0.0105498349, 0.0147278486, -0.02203588, 0.0139593175, 0.00276671164, -0.0176203195, 0.00168028823, 0.00804162864, -0.0412771031, -0.0301823094, 0.0286731943, -0.0221197195, 0.0248305388, 0.0325577669, -0.0172150955, -0.0153706204, 0.00834205467, -0.0468384735, 0.0352965333, -0.0215747617, 0.00423740037, 0.023950221, 0.00651155366, 0.0104590086, 0.0478445478, 0.00554739637, 0.000773771, -0.0308809727, 0.0173129085, 0.0253335778, 0.016292857, -0.000234489286, 0.0305456147, 0.0178159457, 0.00469153235, 0.0226786509, 0.0227624904, 0.00964157097, 0.0386501215, -0.0173688009, 0.0165723227, -0.0399077199, 0.0144903027, 0.00617270125, 0.00915949233, -0.0392649472, -0.00899879914, 0.0021536334, 0.00755256368, 0.00134842261, -0.0159155782, -0.0107524479, -0.0466707908, -0.034066882, -0.00732899131, 0.00268461858, 0.0237266477, 0.00281037809, -0.00268461858, -0.00107594347, 0.00228637969, -0.0448542647, 0.0115489252, 0.00961362384, -0.0187661294, 0.0537133329, 0.0109131401, -0.0568992421, -0.00549499691, -0.00669320626, 0.0514776036, -0.0348214433, -0.0281981, -0.00587576907, 0.00231607305, -0.0284496211, -0.0143505698, 0.00155714864, -0.0454970375, -0.00108642341, 0.0280304216, -0.00885207951, -0.0335638449, 0.00423740037, -0.00406622794, 0.0122755365, -0.0149374483, 0.00681197923, -0.0148256617, -0.000410465436, -0.00845384132, -0.00315447059, 0.0294836443, 0.00922237244, -0.0041046543, 0.0359951966, 0.0169216562, 0.000397365453, -0.00815341529, 0.0266330931, 0.000796477601, -0.0301823094, 0.0267309062, 0.0270522907, -0.0280304216, -0.00832109526, -0.0129183074, 0.0262138937, 0.0329210721, 0.00823026802, -0.00691677909, -0.0277369823, 0.00426884042, -0.0397959314, 0.0101026893, -0.000634038064, 0.00660587335, 0.0280024763, -0.00488715852, -0.0268846117, -0.00838397443, 0.00237545953, 0.0128414547, -0.0235310216, 0.000255885883, 0.0550547689, 0.0143645434, -0.0326695554, -0.00208900706, -0.00272828504, -0.0458044484, -0.0413888879, 0.0207782835, 0.00230035302, 0.0286452472, 0.0244113393, -0.00536574377, 0.0243414734, -0.00277544488, 0.000176958638, -0.0186683163, -0.0220778, -0.00213442021, -0.0241318736, -0.011926204, -0.0130510535, -0.0327254497, 0.00146632222, 0.00872632, 0.0182630923, -0.0149514219, -0.000862850749, -0.000778574322, -0.0079647759, -0.00785997603, 0.00610632822, 0.00372388214, 0.0501920618, 0.0192412212, -0.0029274046, 0.0117026316, 0.0229161978, -0.0228742771, 0.0224131588, -0.000809577585, 0.00162090175, -0.0137147857, -0.00922935922, 0.00868440047, 0.0223852117, -0.00573603623, 0.0144064631, -0.0242716074, -0.00495003816, 0.0333682187, 0.0119890841, -0.0426464863, 0.0163627248, -0.00564171653, 0.0134562794, 0.0344860815, 0.045720607, -0.00295709772, -0.0137357451, -0.0238104872, -0.00872632, -0.0112904189, 0.0128204944, 0.0261859484, 0.02445326, 0.0103192758, -0.0127436416, 0.0151191009, 0.00854466762, 0.0170474146, -0.0441556, -0.010612715, 0.0132955862, 0.0329210721, 0.0281422082, 0.00781805627, -0.00906167924, -0.00603296841, 0.0413329937, 0.010011863, 0.0231537428, -0.00503387814, 0.0518968031, -0.0234891027, -0.00103926356, 0.00293963123, -0.0138125978, -0.00830712169, -0.00592118222, -0.00687485933, 0.0133794267, 0.0202892181, -0.0146440091, -0.00608536834, 0.00543910358, -0.0131907873, -0.0183469318, -0.0233493689, 0.0106406612, -0.0275273845, 0.0277649295, -0.0172709879, -0.0105847679, 0.0144623565, 0.00592118222, 0.00591070205, -0.0163627248, 0.023209637, -0.00324529689, -0.0224271324, -0.00412910758, -0.00440158648, -0.00306189735, -0.0135960123, 0.0141828908, 0.00235799281, 0.00822328217, -0.0338153653, 0.0325298235, 0.0184447449, 0.0093271723, -0.0233912896, -0.0200796202, 0.0147278486, 0.00165408838, 0.0191853289, 0.0092642922, -0.0160692856, -0.0176063459, 0.0294277519, -0.0202892181, 0.013672865, -0.00940402504, 0.0261440277, -0.00636832742, -0.00283657806, -0.006298461, -0.00567315612, 0.0295115914, -0.0180255454, 0.0235310216, -0.00727309799, 0.000810887548, 0.0103681823, -0.00723117823, -0.00677355286, 0.0288688187, -0.0196604207, -0.0232655294, -0.0305176675, 8.78243154e-05, 0.0221336931, -0.00302172429, -0.00577795599, -0.0180255454, -0.0350450128, -0.00476838555, 0.0899321, 0.00274400506, -0.00839096121, -0.0109620467, -0.0316634774, -0.0262138937, 0.00763640366, 0.0265911724, 0.0293439105, -0.0131139336, -0.000689931272, 0.00101219025, 0.0125480155, -0.00088293734, -0.00494654523, -0.0315237455, -0.0172570143, 0.00036330556, 0.00962759741, -0.0177181326, -0.00180255459, 0.0186962634, 0.00561027648, 0.0151191009, 0.0249283519, 0.00757352402, -0.0331167, -0.00369942887, -0.0326136611, 0.0149793681, 0.0173827745, 0.00618318142, 0.0161670987, 0.000778137648, 0.00462865271, 0.0300425757, -0.0177460797, 0.00567664951, -0.0359113589, -0.000272915844, -0.0172430407, 0.00328197679, 0.00959965121, 0.0171871483, 0.00235275296, -0.000382300525, -0.0155382995, 0.00386710837, -0.0279465821, 0.0191993024, -0.030769188, -0.0124781486, -0.0146859288, 0.000819184177, -0.016963575, 0.00150387548, -0.0049989447, -0.00646264711, 0.0416683555, -0.0245790184, -0.00110913, -0.00616920786, 0.0114930319, -0.00201914064, 0.0134003861, 0.00969047751, -0.00329595013, 0.00398588134, -0.0335638449, 0.0388736948, 0.0262977332, 0.00188290095, 0.00275972509, -0.0124082826, -0.0257108565, 0.00897085294, -0.00907565281, 0.0122475894, 0.0122406026, -0.0254593361, -0.0367497541, 0.0102074891, -0.0148256617, 0.0139243845, -0.016628217, 0.0116257779, -0.0277928766, -0.00360510917, -0.000520941743, 0.0128135076, -0.00508278469, -0.0112764463, -0.0261580013, -0.00396142807, -0.0122825233, -0.0274575166, 0.0130999601, 0.0119471643, -0.00775517663, -0.0189897027, 0.0163766965, 0.0039509479, 0.00291517796, 0.00712987175, 0.00478934543, -0.00782504305, 0.0260881353, 0.0122196432, -0.0282959137, 0.0160133913, 0.0169356298, -0.0210577492, 0.00129427609, 0.0153147271, -0.00818834826, 0.00153793534, -0.0115628988, 0.0066373134, -0.012967214, 0.0137217715, -0.0172150955, 0.000123467122, 0.00039081549, 0.011926204, 0.00209075375, 0.00432822714, -0.00234576617, 0.00248549925, 0.00694821915, -0.024020087, -0.027108185, -0.00244008587, -0.0182630923, 0.00845384132, -0.0188639425, 0.00730104465, -0.012967214, 0.00587926246, 0.0156081663, 0.0250960309, -0.00830013491, -0.00904770568, 0.00374134863, 0.0137636922, 0.0183469318, 0.0274994373, 0.00303045753, -0.00291343126, 0.000452821958, -0.0133794267, -0.020624578, -0.00740584452, 0.00832109526, -0.0135121727, 0.0261160806, -0.0358554646, -0.0211136434, 0.00502339797, -0.0143365972, 0.00611680839, 0.00284181815, 0.0205267649, 0.0211415887, 0.0101515958, -0.00458673295, -0.00540766353, -0.0104590086, -0.0342345648, 0.013805612, 0.0160692856, 0.0137287583, -0.0131418807, 0.0127576152, -0.0149933416, 0.0167679489, 0.0107454611, 0.00286277803, 0.00209599361, 0.0217564143, 0.0130929742, -0.0134423058, 0.0194368474, -0.0382588729, 0.0148536088, 0.00904770568, -0.00951581169, -0.00128204946, -0.0038985482, 0.0204149783, -0.00615174137, -0.0219520405, 0.0236847289, 0.0236008894, 0.0122336168, 0.0259903222, 0.00843986776, 0.00906866603, -0.0156081663, 0.000249990902, 0.0101166628, -0.0108921807, 0.0124991089, 0.0164745096, 0.022776464, -0.00440857327, 0.00552643649, -0.0123803364, 0.025696883, 0.0115139922, -0.00827917457, 0.0208900701, 0.000964157109, -0.00184971443, 0.00441556, 0.0322503559, -0.0006790146, 0.00992802344, -0.0125480155, -0.00608187495, 0.0133864125, -0.0104450351, 0.00890797284, -0.0228183847, 0.0163627248, -0.00841192156, -0.000440595322, -0.0136239585, -0.00793683, -0.0118074315, 0.0211136434, 0.00806258898, 0.0351288542, 0.0130859874, 0.0192971155, -0.00323656364, 0.0186822899, 0.0194368474, -0.0167679489, 0.00538321026, 0.0131209204, -0.0100258365, 0.0120170303, 0.00672813971, 0.0307132937, 0.0164465643, -6.21156432e-05, 0.0244672336, 0.00907565281, -0.0109969806, 0.00209250045, 0.0222454797, 0.00884509366, 0.0179975983, -0.0380632468, 0.0334241129, 0.00554390345, -0.00663382, -0.00457974616, -0.00872632, -0.0448542647, -0.00289945793, 0.0158736594, -0.00975335762, -0.0115489252, -0.0290365, 0.00245580589, -0.00800669566, -0.00695869885, -0.0253894702, -0.032110624, -0.00681547262, 0.00615523476, 0.0157618728, -0.0173827745, 0.00205756701, -0.0198420733, 0.0369174369, 0.000292784127, -0.00431425357, -0.00905469246, -0.00241912599, 0.00373785547, -0.00823026802, -0.0151191009, -0.0152728073, 0.0308250804, -0.00695171254, 0.0193669815, 0.00175190135, 0.0124012958, 0.00687835272, 0.00883810688, -0.0319149978, 0.0116537251, 0.00569062261, 0.0364702903, 0.0161531251, -0.0299028438, -0.0164465643, -0.0050792913, 0.00441905344, -0.0124991089, 0.00732899131, -0.0194089022, -0.00849576108, 0.0044609732, 0.00901975948, -0.0293159653, 0.0176482666, -0.0138125978, -0.00916647911, -0.0457485542, 0.00558233, -0.00431425357, -0.00738488417, 0.00156588189, 0.0197442602, -0.00624606106, -0.000631418079, -0.00942498446, -0.0131558534, -0.0197582338, -0.058687821, 0.016055312, 0.0231397692, -0.00643819384, 0.0115349516, -0.0111506861, 0.00268287188, -0.0340109915, 0.00337629649, 0.01101794, -0.0177321061, -0.00813245587, -0.0075316038, 0.0115139922, -0.0163906701, -0.0108712204, -0.00539718382, -0.00556486333, -0.0127785746, 0.0143365972, -0.0173129085, 0.0105847679, -0.000900403946, 0.00408020103, 0.00888701342, -0.00925730541, -0.0170753617, -0.00936909206, -0.0150911547, 0.0176901873, 0.0190036763, 0.000895164, 0.0193110891, 0.0345419757, 0.00445748, -0.00320687029, -0.021798335, -0.0036190825, 0.00135191588, 0.0138894515, 0.02203588, 0.0093551185, 0.00300425757, -0.025431389, -0.0119052436, 0.00544609036, 0.0024540592, 0.00980226416, -0.00287325797, 0.0146160629, -0.0151330745, -0.00344266952, 0.0221336931, 0.00912455935, 0.0226786509, 0.0047229724, 0.0116187911, 0.016865762, -0.0312722251, -0.00330468337, -0.000884684, 0.0034880829, 0.0301543623, 0.00850973465, 0.00117986975, -0.00512121106, -0.00506182481, 0.00670368643, 0.0540207438, 0.0166421905, 0.00847480074, -0.0176342931, -0.0269125588, 0.000165932826, -0.0328372344, 0.00783901662, -0.0356318913, -0.002006914, 0.000215603519, 0.00332739, -0.0107803941, 0.0151889678, 0.0237965155, -0.0101935156, 0.00461118622, -0.0229720902, 0.00810450874, -0.0118633239, -0.0221476667, 0.0314399041, -0.0233773161, -0.0114161791, 0.0244253129, -0.00720323157, -0.000132746267, 0.0229161978, -0.00194578082, -0.0135890255, -0.0109061534, -0.00996295642, -0.0322503559, 0.00444001332, -0.00585480919, -0.0111436993, 0.0194787681, -0.00520155765, -0.021868201, 0.0368894897, 0.0132606532, -0.00130737608, 0.0123454025, 0.00561726326, 0.0181652792, -0.00451337313, -0.025361523, 0.0121008698, 0.012897348, 0.0110668465, -0.0260881353, 0.00220778, 0.0186263975, 0.00117375643, 0.00625654124, 0.00238069938, 0.0105568217, 0.000547578325, 0.0130091337, 0.00732200453, -0.00815341529, -0.0332284868, -0.0231537428, 0.0165723227, 0.00765037676, -0.00213616691, -0.00183050113, 0.00474742567, 0.0211136434, 0.0146440091, 0.0157758463, -0.0080556022, -0.011520979, 0.00706699211, 0.0183050111, 0.00918045267, -0.0108642336, 0.000838834152, -0.000875514, 0.00033055566, 0.00226192642, -0.026102107, -0.0070844586, -0.0118633239, 0.0234332085, 0.00967650395, -0.0141130239, 0.0142387841, -0.00980226416, -0.00980226416, 0.00219555339, 0.00581987575, 0.00183399441, 0.00613776827, 0.0248864312, 0.0162509382, -0.00272129849, 0.0182491187, 0.00270033861, 0.00120432302, 0.0261999201, 0.00351952272, -0.00310731051, 0.0152308876, 0.0180954114, 0.0116327647, -0.01753648, 0.0322224088, -0.0378676206, -0.0117515381, 0.00268985843, 0.0099699432, -0.0108013544, -0.0140990503, 0.00549499691, -0.00372038875, -0.00828616135, -0.0100258365, -0.00563472975, 0.0241179, 0.00806258898, -0.00148990215, -0.0141968634, 0.0152029404, 0.0175923742, 0.0035404826, -0.0327813402, -0.010983007, 0.00810450874, 0.0184866637, 0.0320826769, 0.0145741431, 0.0190036763, -0.0318311565, 0.0146020893, -0.00350904278, -0.000824424205, -0.0100048762, 0.00755955046, -0.0102424221, -0.00368196215, 0.0216027088, -0.00538670365, -0.00750365714, -0.0130999601, -0.0261300541, 0.0283937268, -0.010144609, -0.00775517663, 0.012967214, -0.0182211716, 0.0158037916, -0.0143226236, -0.010647648, -0.00183050113, 0.00378676201, -0.0011807431, -0.00253615226, -0.0119052436, -0.00854466762, 0.0103262626, 0.00249597919, -0.0152308876, 0.0265911724, 0.0132047599, 0.00323307025, -0.0318032093, -0.00492907828, -0.00819533505, 0.00773421675, 0.00180255459, 0.00197547395, 0.00746173738, 0.00127768284, 0.00422692066, 0.0133514795, -0.00579542248, 0.0109131401, -0.00488366513, -0.0117934579, 0.0140291844, -0.00484873215, 0.00821629539, 0.011388232, 0.0249283519, 0.0338712595, -0.00522601092, 0.000393435475, -0.0268007722, -0.0156780332, 0.01430865, 0.00619715452, 0.0111087663, 0.0117585249, -0.00948087778, -0.00113882322, 0.0142876906, 0.00893592, -0.0122545762, -0.0131628402, 0.00200342061, -0.000432080356, -0.0166142434, -0.00401033461, -0.00876125321, -0.016292857, -0.0101725562, -0.00188464765, -0.0094459448, 0.0110598598, 0.00888002664, -0.00225493987, -0.00961362384, 0.0212114565, -0.00748968404, 0.00353000266, -0.00416753395, 0.00718227169, -0.0251658969, -0.00394046819, 0.00922935922, -0.0350450128, 0.00398588134, -0.00833506789, 0.0140850777, 0.0107384743, 0.0223432928, 0.00882413331, -0.0037273753, 0.00811149552, 0.0037658019, 0.00512819784, -0.00120694307, 0.00758749712, 0.0281422082, -0.00339026982, 0.0224969983, -0.00871933345, -0.0144344093, 0.00588624878, -0.00812546909, 0.00216236687, 0.00401033461, -0.00585480919, -0.00231432635, 0.0158876311, -0.00315272389, 0.00278941821, -0.000180233619, -0.0198560469, 0.0166980829, -0.00371689536, -0.0126807615, -0.00737091107, 0.00201040716, 0.00537622394, -0.0193250608, -0.00131698267, 0.000296277431, -0.0132466797, -0.0152308876, 0.0242855791, -0.00148029556, 0.00630195439, 0.0170054957, -0.0127436416, 0.0174805876, 0.0225948114, -0.0101026893, -0.0157898199, -0.0151749942, -0.00205232715, -0.000828790828, 0.0186962634, 0.00105673017, -0.0280583687, 0.0102284495, 0.0101026893, -0.0104729813, -0.033284381, 0.0288688187, -0.00257108547, -0.0141269974, 0.00589672895, 0.00101219025, 0.0255292021, 0.0342345648, -0.00283133821, 0.00535177067, 0.0155243268, -0.00519806426, -0.0183050111, 0.00147505559, -0.0127925482, 0.00591070205, -0.0141130239, 0.00919442531, -0.00384614849, 0.00284007145, -0.0309648123, 0.00438761339, 0.00813245587, -0.00687835272, -0.00948786456, 0.0157898199, 0.00972541049, -0.00277195172, 0.00610632822, 0.017298935, 0.0192272477, 0.0323621407, 0.00721021835, -0.0376719944, -0.0137776649, -0.00273527182, 0.00804162864, 0.0043701469, 0.00133706932, 0.00215887348, 0.00212394027, -0.0157339256, -0.00777613651, -6.11331488e-05, 0.00697965873, -0.0232655294, 0.0117655108, 0.0030164842, 0.0197023414, 0.000323787361, -0.00281212479, 0.0013772425, -0.000692114583, -0.00116676977, -0.00915250555, -0.0145042762, -0.019380955, 0.0173967481, -0.0122545762, 0.0104310615, -0.00996295642, -0.00788792316, 0.0147977155, -0.0240061134, 0.0102424221, -9.21090941e-06, 0.00137287588, -0.000234489286, -0.00830712169, 0.0129602272, -0.00428281352, 0.022105746, 0.0204289518, -0.0188639425, -0.00639627408, -0.00844685454, -0.00601200853, 0.0209878832, 0.00113009, 0.00378676201, 0.0255850963, -0.00192307425, 0.0154684335, 0.0024383394, -0.0193390343, 0.00231083296, -0.00529238395, 0.00496051833, 0.008397948, 0.0122126564, -0.0118563371, 0.0119681237, -0.0035422293, 0.0158317387, -0.00520854443, 0.00752461748, 0.00565219624, 0.00230908627, -0.00158160191, -0.0203730576, 0.0288129263, -0.00443302654, -0.00428630691, -0.00909661222, 0.00141479576, 0.0194228739, 0.0123104695, -0.00665478, 0.0124432156, 0.000747134385, 0.00369593548, 0.0153566469, -0.0191154629, -0.0186962634, 0.0106755942, -0.0138754779, -0.0228742771, 0.00162963511, 0.00685739284, 0.0189058632, -0.0159295518, -0.0236008894, -0.00179556792, 0.00347585627, -0.0200097524, 0.0139243845, -0.0041186274, 0.00148029556, -0.00250121905, 0.00327324355, 0.00515265111, -0.00396841485, -0.0329490192, -0.012296496, -0.00776914973, -0.0149514219, 0.00948786456, 0.0113812452, 0.0117026316, 0.0102913287, -0.00454132, 0.0127017219, -0.018207198, -0.00563123636, -0.00298853754, 0.0164186172, -0.0222315062, 0.0215607882, -0.025193844, -0.0133165466, -0.0226507057, 0.0163208041, -0.0222315062, -0.00850274786, 0.0169775486, 0.00064102473, 0.00525395758, -0.00325228344, -0.0232236106, -0.015216914, -0.00221476657, -0.011891271, -0.0226646774, -0.0089219464, 0.00584083563, -0.00603296841, 0.00124886294, -0.00318416371, -0.00182700786, 0.00682944618, 0.023782542, 0.00994898286, 0.0209040437, -0.00137287588, -0.00402081432, -0.0146719553, -0.0268147457, -0.00244532595, -0.023782542, 0.00156064192, 0.00432124035, 0.0117305778, -0.000153487868, 0.00943895802, 0.00655696681, 0.0296792705, 0.0217144936, 0.0169216562, -0.00707747182, -0.00862152, 0.00114144327, 0.0150911547, 0.0169915222, 0.0178858135, -0.00150911545, -0.00204359391, 0.0111716464, -0.00971842371, -0.0172709879, -0.0160832573, -0.0151610207, 0.0113463122, -0.0191154629, -0.0216306541, -0.00363654899, 0.00500243809, -0.0270662643, -0.0353803746, -0.0112974057, -0.00140431582, 0.00521902414, -0.000724427809, 0.00881714653, -0.0216865484, 0.00847480074, 0.0222035591, -0.00820232183, 0.0020610604, 0.0156780332, 0.0206664968, 0.0054984903, -0.00202263379, 0.00484523876, 0.00319464365, 0.00434220023, 0.0150771812, -0.00260601891, 0.000879444, -0.000652378, -0.0140291844, 0.0201494861, -0.00166194828, -0.00431076, -0.0138964383, -0.00693075219, -0.00247676577, 0.010347222, 0.0111227399, -0.00161391508, 0.0127576152, 0.00463913288, -0.0202193521, 0.0188359972, 0.0275553297, -0.00927826576, -0.0092642922, -0.00306364405, 0.0196324736, -0.00901975948, 0.00349506945, -0.0101166628, 0.0118423644, 0.00693773897, -0.0156500861, -0.0134912124, -0.00864946749, 0.00915949233, -0.00559979631, -0.0172150955, 0.0271361321, 0.0205966309, 0.0115978317, -0.00300251087, -0.00517710438, -0.0129252942, 0.011926204, 0.0159714725, -0.00684691267, -0.0160972308, 0.0135471057, -0.0131698269, -0.00360161578, -0.0124152694, -0.000180451956, -0.0130720139, -0.00837698765, 0.00151173549, 0.00527491746, -0.00378676201, -0.00508627808, 0.0128274811, -0.00324529689, 0.00102616358, -0.00915949233, 0.0211974829, -0.0187521558, 0.000293875783, 0.0101515958, 0.000620064791, 0.0107035413, 0.0208760966, -0.00945991836, 0.0316634774, -0.0291203391, 0.0228044111, 0.00756653724, -0.0159435254, 0.0089498926, 0.00293264445, -0.0221756138, 0.00144361565, -0.00413609436, 0.0143505698, 0.0149933416, -0.0153426733, 0.0079647759, -0.00269335182, 0.0163347777, 0.020456899, 0.0405784361, -0.0197302867, 0.013302573, -0.00423740037, 0.00513169123, 0.00486270525, 0.0145881157, -0.0166980829, 0.002006914, -0.031942945, 0.0322503559, 0.004803319, 0.00359113584, -0.0199678335, -1.06368952e-05, -0.00974637084, -0.0313840136, -0.00920141209, 0.0318032093, -0.0212254301, 0.0109480741, 0.016055312, 0.00188290095, 0.0208341777, 0.0106406612, 0.00440508, 0.00106371683, -0.0057849423, -0.014140971, -0.0211835094, -0.00598056847, 0.00969746429, -0.0257807225, -0.0177181326, 0.0106965546, -0.0141549436, -0.00250121905, -0.00103227689, 0.002099487, -0.00336406985, 0.0567315631, -0.00954375789, -0.00917346589, -0.0153566469, 0.0130580403, 0.0308250804, 0.0190875158, -0.00106983015, 0.0142387841, -0.0234891027, -0.0022322333, -0.00559979631, -0.00119034969, -0.014881555, 0.00588624878, 0.00479633221, -0.0179836266, -0.0112974057, -0.00342869642, 0.00289771124, 0.0202053785, 0.0118563371, -0.00253440579, -0.0112764463, -0.0147418221, 0.00476489216, -0.0333961658, 0.00659888657, -0.0024383394, -0.0158317387, 0.0153566469, -0.0249702707, -0.00484873215, 0.00306539075, 0.00487667881, -0.0293998048, 0.00335533661, 0.00808354933, -0.00261475216, -0.00763640366, 0.0350450128, 0.00392998802, 0.00161653513, 0.00920141209, -0.0131768137, 0.014210837, -0.0146999024, -0.0150073143, 0.00095367711, -0.0236008894, -0.0176622402, 0.0026636587, -0.00100695028, 0.0105777811, -0.000730541127, 0.0203730576, -0.0110458862, 0.00869138725, -0.00529238395, 0.000150649546, 0.00797874946, 0.00764339045, -0.000472908578, -0.00160081522, 0.00240340596, -0.00923634507, 0.0113952188, -0.00208376697, 0.000701721234, 0.00599104865, 0.0150911547, 0.00198595389, -0.0110738333, 0.0144064631, -0.00739187095, -0.000765474339, -0.00346188294, -0.00476139877, 0.00317543047, 0.0141130239, 0.00891496, 0.00652902, -0.00326276338, 0.00888701342, 0.00548102334, 0.0184726901, 0.0214350279, -0.00954375789, -0.0269684512, 0.008397948, 0.00250121905, 0.00912455935, 0.0104450351, 0.0180255454, -0.0115000186, 0.0224550795, 0.00077944767, 0.0124152694, 0.00537622394, -0.00352650927, -0.0129392678, 0.0112065794, 0.0187940765, -0.00202787388, -0.0298469495, -0.0239781681, 0.0266330931, 0.0160692856, -0.0222454797, -0.0137567054, 0.0158457123, 0.0198700204, -0.0124082826, 0.00658142, -0.00164535502, 0.0128344679, -0.000309814059, -0.000722681172, -0.00342869642, 0.002006914, 0.0222315062, -0.00310207065, -0.00218332675, 0.00175364804, 0.00883112, -0.0114441253, -0.000251737569, -0.00276321825, 0.0121358037, 0.00911757257, -0.00135628262, -0.0165304039, -0.00398238795, 0.00321735023, 0.0202473, -0.0281002894, 0.00168902159, -0.022469053, 0.00297107105, 0.0147138759, -0.00483126519, -0.00238943286, -0.018640371, -0.00512470445, 0.0173827745, -0.0111436993, 0.00703555206, 0.00417801412, 0.0208900701, -0.0116327647, -0.0116397515, -2.11509778e-05, -0.00834904145, 0.00700061908, 0.00179207465, 0.0218542274, -0.00535526406, -0.0111017795, 0.00192307425, 0.00593864871, -0.00833506789, 0.0042129471, 0.0069936323, -0.00265841861, 0.00273003173, -0.000913503929, 0.0153426733, -0.00449241325, 0.00114755658, 0.000937957142, 0.0131558534, -0.00433870684, 0.00995597, 0.00746872416, 0.00366100227, 0.00223398, 0.00575350272, -0.0134981992, -0.00989309, -0.0198420733, 0.00767133664, -0.0272059981, -0.00188290095, 0.00315097719, -0.00781805627, 0.00925730541, -0.00232480629, -0.00208726036, 0.00302521745, -0.0428421125, 0.00163836835, 0.00853768084, -0.00288199121, 0.00379724195, -0.00916647911, 0.0284356475, 0.0122755365, -0.0218123067, 0.00752461748, -0.00388108171, -0.00447843969, 0.0342066176, -0.020862123, 0.0160972308, 0.0101515958, -0.00555088976, -0.0153985666, 0.00640675379, 0.00932018552, -0.0102983154, 0.0028872313, 0.0244113393, -0.0113812452, -0.000306320755, -0.00363654899, 0.00039234382, -0.0145042762, 0.026675012, 0.00680149952, 0.0133235333, 0.0135960123, -0.0243554469, 0.011891271, -0.00656744698, -0.00438761339, 0.0176901873, 0.0272199716, -0.0200935919, 0.00355620263, 0.0141200107, -0.0206106044, -0.0236148629, -0.00772723, -0.000796914275, 0.00774819, 0.015552273, -0.00244532595, 0.00604344858, -0.018947782, 0.017466614, -0.00143750233, -0.0226507057, 0.0121078566, 0.0282959137, 0.00715432502, -0.0115628988, 0.0318032093, -0.00605392829, 0.013337506, -0.000370947208, 0.0187242106, -0.00896386616, -0.00203311397, -0.00732899131, 0.00285229809, 0.00167242833, 0.0127226813, 0.00918743853, -0.00328721665, -0.0101236496, 0.0109061534, -0.0298748966, -0.000418980402, 0.0147138759, -0.0053412905, -0.0108223138, 0.0219660141, -0.0268007722, -0.0127925482, 0.0042758272, 0.0237685684, 0.0256409887, 0.000798660913, -0.00207328703, 0.0154684335, 0.00462865271, 0.0236148629, -0.0248025917, 0.0159435254, 0.00670019304, -0.016963575, -0.00338153634, -0.0190316234, 0.0074407775, 0.0211695358, 0.0042758272, -0.0218262803, -0.00379025517, -0.0115489252, 0.00922935922, -0.0222594533, 0.0194089022, 0.0134283332, 0.0146160629, 0.0089498926, 0.0184587184, -0.00150911545, -0.0154963797, 0.0230978504, 0.00645216741, -0.00266889855, -0.0294277519, 0.0085796006, 0.0249283519, -4.35846596e-05, -0.0118004447, -0.00273701851, -0.00994898286, 0.0145042762, -0.0068993126, -0.000439722, 0.0171312541, 0.00360860233, -0.0186263975, 0.0222175326, -0.024523126, -0.00444350671, 0.0162509382, 0.0175923742, -0.0166980829, 0.00256584561, 0.016292857, -0.0279605556, -0.016125178, 0.012897348, -0.00867042691, -0.00204708707, 0.00813245587, -0.00180779456, -0.0192412212, 0.0170753617, 0.0201075654, -0.0105568217, 0.0120100435, 0.011590845, 0.0110249268, -0.00743379071, -0.00252916571, 0.0125270551, -0.0233773161, 0.00721720466, -0.0136099858, 0.000682944607, 0.00397889456, -0.00366100227, 0.00403478788, -8.91343152e-05, -0.0166701358, 0.0158736594, -0.00504785124, 0.00315447059, 0.0194787681, 0.00863549393, -0.00936210528, -0.010514902, 0.00867741369, 0.00901975948, 0.032418035, 0.0121637499, -0.00936909206, -0.00722419145, 0.0127296681, 0.000380990503, 0.0178438928, 0.0122126564, 0.00130126276, -0.0028488047, 0.0170194693, 0.0106197009, 0.0141828908, -0.0160413384, -0.027178051, 0.0247606728, -0.0678543, -0.0067456062, 0.00723816501, 0.00797176268, -0.00274575176, 0.0127576152, 0.0266610403, -0.00586878229, 0.0271501038, 0.00669320626, -0.00205232715, 0.00123750954, 0.0256270152, 0.00174578803, 0.00215887348, -0.010277356, 0.0182630923, -0.00374134863, -0.00871933345, 0.00832808111, 0.0093271723, 0.0117934579, -0.000260034227, -0.00441556, -0.00853768084, 0.00147243554, 0.017033441, 0.00292041781, 0.00552993, -0.0165164303, -0.00101655698, 0.00116676977, 0.00387060153, -0.0165443774, 0.017466614, -0.00509675778, 0.0144344093, -0.0165583491, -0.00587227568, -0.00973938406, -0.00925031863, 0.00531683723, 0.0064661405, -0.0292321257, -0.0193530079, 0.00904770568, -0.00809053518, -0.000352607283, 0.00834205467, 0.00308984402, -0.0216166805, -0.0047369455, -0.0126947351, 4.15377908e-05, 0.0190316234, 0.00386012159, -0.0185146108, -0.00797176268, 0.0325577669, -0.00465659937, 0.00180430117, -0.0412771031, -0.00842589419, 0.00105498347, 0.0226926245, 0.0117096184, -0.00643819384, -0.0132816136, -0.030769188, 0.021365162, -0.0250401385, 0.00505483802, 0.000643644715, -0.0132466797, 0.00580240926, 0.00835602824, -0.00381470844, 0.0116676977, -0.000737527793, -0.000185582772, 0.018710237, 0.00891496, 0.0252497364, 0.0342066176, 0.00356668257, -0.0172430407, -0.013134894, -0.00881714653, 0.0262418408, 0.00244008587, 0.0218123067, 0.00192656752, -0.025123978, -0.00130300946, 0.013232707, -0.0158596858, -0.00845384132, -0.00606091507, 0.0160832573, 0.00543561, 0.00536923716, -0.00739187095, -0.000373567193, 0.0199398864, 0.0430936292, -0.0173548274, 0.019883994, -0.00795080233, 0.00825122837, 0.00210647355, 0.0209878832, 0.000952803763, 0.0094179986, 0.0206385516, 0.0178438928, -0.00538321026, -0.00377628184, -0.0111227399, -0.0172849614, -0.00291517796, 0.0011615298, 0.00144885562, -0.000792984269, -0.0223572664, 0.00757352402, -0.000270732504, 0.00502339797, -0.00246977923, -0.0142946765, -0.0212394018, -0.0270243455, 0.014140971, -0.0110249268, 0.00563472975, 0.0203171652, -0.0137357451, 0.00519107748, 0.00514566433, -0.00801368244, 0.00672813971, 0.0042129471, 0.00710541848, 0.023279503, 0.00741981762, -0.0122755365, -0.00195975415, 0.00927826576, -0.0134073729, 0.0157618728, -0.00764339045, 0.0042129471, -0.000299770763, 0.00263047195, -0.0135540925, -0.0020086607, 0.00429678708, -0.0269125588, 0.0053412905, 0.00772024319, 0.000701721234, 0.0238943286, 0.0190036763, 0.00668622, -0.0247047786, 0.021295296, 0.0109201269, 0.0190875158, 0.00729405787, 0.0026636587, -0.00739187095, -0.0263955463, -0.00414308067, 0.000958043791, -0.00474742567, -0.00996295642, -0.0144623565, 0.0102843419, -0.0046461192, 0.00186368765, 0.00504086493, 0.00445398642, 0.00251519238, 0.019380955, -0.00331167, 0.019883994, -0.0256409887, 0.00598755525, 0.0146999024, 0.0182630923, 0.00559630292, 0.0217564143, 0.0271640774, 0.00545657, 0.00696219224, 0.0173268802, -0.00891496, -0.0059561152, -0.0130720139, -0.00407321425, 0.0180674661, 0.0229860637, -0.00420945417, -0.00554739637, -0.0195905548, 0.00520505104, -0.0206804704, -0.00593515532, 0.00553691667, -0.00540417, 0.00382868177, 0.0220498536, -0.00401033461, -0.00812546909, 0.00847480074, 0.00666176667, 0.0204848442, -0.0166142434, 0.0093551185, -0.00789491, 0.01447633, 0.0202333257, 0.0136449188, 0.0155662466, 0.0152308876, 0.0380911902, -0.0113463122, 0.0207084175, 0.0160972308, -0.0238384344, -0.00165932835, 0.00698664552, 0.00530635752, 0.00319813704, 0.01430865, -0.000166042, 8.07830875e-05, 0.0084608281, 0.00162090175, -0.00276321825, 0.0167539753, 0.019883994, -0.00610982161, 0.0105847679, -0.013470253, -0.00550897, 0.0119541502, -0.0210018568, 0.0210856963, 0.0115000186, -0.00152570871, -0.00868440047, -0.01672603, -0.0223572664, 0.00773421675, 0.0151051274, -0.00147680216, -0.01430865, 0.0340948291, -0.000895164, -0.00476489216, -0.0137357451, 0.00197896734, 0.0161670987, -0.00510374457, 0.0201075654, -0.0143505698, -0.00488017173, -0.022706598, -0.012897348, 0.00575699611, 0.00448892, -0.0158457123, -0.00174578803, 0.0024540592, -0.00321036368, 0.0265632272, -0.00307587069, 0.0177600533, -0.0333402716, 0.0098791169, -0.00577795599, 0.00839096121, -0.00545307668, -0.0137636922, 0.0244253129, 0.003451403, -0.0241458472, -0.00113096321, 0.00795778912, -0.00856562704, 0.0145042762, -0.00651504705, 0.0184307713, 0.0302940961, -0.0286731943, -0.0163766965, 0.00225144648, -0.010612715, -0.0150212878, -0.00829314813, -0.00959965121, -0.0239921417, -0.00317892362, -0.00762243, 0.0280443951, -0.0241737943, -0.00108555006, -0.0240899548, -0.00460769283, -0.0119541502, -0.00287325797, 0.00134056259, -0.0100537827, -0.00018427278, -0.0126877483, 0.0169496015, -0.00169950153, 0.000908263901, 0.00768531, -0.00937607791, -0.0094179986, 0.011590845, -0.0180954114, -0.00581638236, -0.000574214908, 0.00913853198, 0.0333402716, 0.0026636587, -0.0201774333, -0.0302382018, 0.00755955046, 0.00290819118, -0.0187661294, 0.00824424159, -0.0225109719, -0.0189338103, -0.0158317387, -0.00273177843, -0.0225668661, -0.0123523893, -0.020694444, -0.000246279262, -0.0130790006, -0.018640371, -0.00751064392, -0.0137427319, 0.00448193308, -0.00364702893, 0.0252078176, -0.00875426736, -0.00833506789, -0.0209599361, -0.00207154034, 0.0296792705, 0.0116676977, 0.00762243, -0.0206525251, -0.0118004447, 0.0038042285, -0.0154404864, -0.0174526405, 0.0117655108, 0.00436665351, -0.0430656821, 0.0134562794, 0.00897784, -0.0103053022, 0.00801368244, -0.018542558, -0.00994898286, 0.00659888657, -0.00650806027, 0.00409068121, 0.0626003444, 0.0340389386, 0.0178019721, -0.0371410064, 0.00060827483, 0.0102214627, 0.0124991089, 0.0314958, -0.0208481513, 0.0202333257, 0.0162509382, 0.0187242106, -0.000533605053, 0.00960663799, 0.00423041405, 0.0214909222, 0.0231677163, 0.00310556404, -0.000720061187, 0.000912630581, 0.000285579124, -0.0223991852, 0.0156081663, 0.000249772565, -0.00306539075, -0.00548451673, -0.00670368643, -0.0139593175, -0.0203171652, 0.0225249454, 9.16997233e-05, 0.0202053785, 0.0204010047, 0.00703555206, -0.00142964232, 0.016628217, 0.0193669815, 0.0195206869, 0.00115104986, -0.0294277519, 0.0285055134, 0.0245371, 0.0177181326, -0.00139034248, 0.00811149552, -0.00474742567, 0.00960663799, -0.0130790006, -0.00809053518, -0.016628217, 0.0272059981, -0.0199259128, -0.00312652392, -0.0116257779, 0.00383916171, -0.0151051274, 0.0214629751, 0.0117655108, -0.000365052227, 0.0146999024, 0.00596310198, 0.0044749463, -0.0198001526, 0.00400334783, -0.0015082421, -0.0209040437, -0.00789491, -0.00667224638, 0.0115838582, -0.000830537465, 0.00083228416, -0.00745475059, -0.00483825197, -0.000969397079, 0.00172919477, 0.0131907873, -0.0104031153, 0.0049989447, 0.000594738231, -0.0064696339, -0.0309648123, 0.01222663, -0.00484873215, -0.0243554469, -0.00218682014, -0.0239222739, -0.0154684335, -0.0235030763, -0.0165164303, 0.00152832875, 0.00230908627, 0.0171452276, -0.0068364325, -0.0115698846, 0.00477537233, 0.0239222739, -0.0127017219, 0.0120868972, 0.0110458862, -0.00333088334, 0.0226227585, 0.00308285747, 0.016292857, -0.00134754926, -0.000235580956, 0.0286173, 0.000429242034, 0.012429242, -0.00758749712, -0.000339725637, -0.0171452276, 0.000930097187, 0.000265274197, 0.0212114565, 0.0147557957, 0.0127296681, -0.013470253, 0.0160273649, -0.00136763591, -0.00863549393, -0.00184622104, -0.0080556022, -0.0218542274, -0.0147278486, -0.00922935922, -0.00858658738, 0.0150911547, 0.0094179986, 0.0105358614, -0.00176238129, -0.00368894893, -0.00723816501, 0.00679800613, 0.00623907428, -0.00087769737, 0.00619366113, 0.00715083163, -0.00726611121, 0.0118353777, 0.00785997603, -0.0120519632, -0.00327499, 0.00479633221, 0.014811689, -0.00284181815, -0.0127715878, 0.000236017615, 0.00525046419, 0.0284496211, 0.00621112809, 0.011926204, -0.0124991089, 0.000417452073, 0.00417452073, 0.00264444528, 0.0101865288, 0.0139663043, -0.0191573817, 0.0211974829, -0.0134213464, -0.00357541582, 0.00450638635, 0.000879444, -0.00592118222, -0.00181128783, -0.0157479, 0.000639278092, -0.00723117823, 0.0051701176, -0.0163208041, 0.0151330745, 0.0272339452, -0.0119960709, 0.0117655108, -0.00598056847, 0.00122877629, -0.0179836266, -0.00511771766, -0.00568712968, -0.0127296681, -0.00123750954, 0.00550547661, 0.00368894893, 0.0600851513, 0.00746872416, -0.00778312329, 0.0147977155, -0.00810450874, 0.0194089022, -0.0154963797, -0.0122545762, -0.0124362288, 0.000357410579, -0.0103053022, 0.0019492741, -0.00879618712, 0.00394046819, -0.0122406026, 0.01205895, 0.00706349872, 0.0308530275, -0.0129602272, -0.00254139234, -0.00312827062, 0.0181233585, 0.0152448602, -0.00383217516, 0.00268287188, -0.0139173977, -0.00152832875, 0.00312827062]
24 Nov, 2021
jQWidgets jqxScrollBar thumbMinSize Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The thumbMinSize property is used for setting or getting the minimum size of scrollbar thumb for the specified jqxScrollBar. Syntax: For setting the thumbMinSize property: $('#jqxScrollBar').jqxScrollBar({ thumbMinSize: 10 }); For getting the thumbMinSize property: var thumbMinSize = $('#jqxScrollBar') .jqxScrollBar('thumbMinSize'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar thumbMinSize property. In the below example, the value for the thumbMinSize property has been set to 10. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar thumbMinSize Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin: 28px;" id="button_for_thumbMinSize" value="Value of the thumbMinSize property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 200, height: 20, thumbMinSize: 10 }); $("#button_for_thumbMinSize").jqxButton({ width: 250 }); $("#button_for_thumbMinSize") .jqxButton().click(function () { var Value_of_thumbMinSize = $('#jqx_Scroll_Bar') .jqxScrollBar('thumbMinSize'); $("#log").html((Value_of_thumbMinSize)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollbar/jquery-scrollbar-api.htm?search= 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 thumbMinSize Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-thumbminsize-property?ref=asr9
PHP
jQWidgets jqxScrollBar thumbMinSize Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollBar thumbMinSize Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.014394531, 0.0320040844, -0.0124070626, 0.0450687669, 0.0714904, -0.00303783058, 0.0226659067, 0.0346930139, -0.0267285258, -0.00264143292, -0.0154321063, 0.0291251782, 0.0184279233, -0.00477869203, 0.0266700704, 0.0103684468, -0.0538077801, -0.0192462914, -0.0440750308, 0.0288767442, 0.00671866583, -0.0198600683, -0.0301919803, 0.0279706921, -0.035306789, 0.0104926629, 0.0152275143, 0.0135834692, -0.0239957571, 0.0271523241, -0.0228266567, 0.0168350246, 0.00534862792, -0.00778181525, -0.0246533751, -0.0114133283, -0.00556418067, 0.0175072569, -0.0295782033, -0.0101200128, -0.0149352392, 0.0144164516, -0.000441837212, 0.00705478154, 0.000706482853, 0.013327728, -0.00860018469, -0.00858557, -0.0229143407, 0.0329101346, 0.00456313929, 0.00693787169, -0.00456313929, 0.0295635909, 0.0146283507, -0.0412107408, -0.00126226153, 0.0452441312, 0.012918544, -0.00573223829, 0.037849579, -0.0295343623, -0.0141972462, -0.0171273, -0.0146941124, -0.0223444048, -0.00270354142, 0.0172442105, -0.0283652637, 0.0314195342, -0.0256617218, -0.00363334036, 0.017390348, 0.00160751108, 0.00531209353, -0.0153151965, -0.0123997563, -0.00618161075, 0.000276747654, 0.0062985206, -0.0304258, -0.0149060115, -0.023703482, -0.00193632022, 0.00297754887, 0.012260926, 0.0275907367, -0.031741038, 0.0559998415, 0.00332645187, -0.000469466322, 0.0046179411, 0.026611615, 0.032237906, 0.00180388323, 0.0164258406, -0.0333485492, 0.00672597252, -0.0135250138, 0.0125824278, 0.0341669172, 0.0374988504, -0.0182671715, -0.032559406, 0.0147964088, 0.00655426132, 0.0100834789, -0.00952085, 0.0238203909, -0.00830060244, 0.030630393, -0.0169080943, -0.0261439756, -0.00231810403, -0.0608516, 0.010784938, -0.00734705618, -0.0173172783, -0.0100250235, -0.000999214244, 0.0196262486, 0.0327055454, 0.00838097837, 0.0407430977, -0.0482545607, 0.00673327921, -0.00167418632, 0.0199185237, 0.0269623455, -0.0387264043, 0.00954277068, 0.0281168297, 0.00571397133, -0.0141022569, -0.0258809291, 0.00940394, 0.0217160136, -0.00552033912, -0.0211753044, -0.0145845097, -0.0189540163, -0.0216575582, 0.0052207578, 0.0135104, -0.0196262486, 0.0358621106, -0.0177410766, 0.0474654175, -0.0478453748, 0.0354821533, -0.0554737449, -0.0146575784, -0.00332827866, 0.00534132076, 0.0450687669, 0.0213506706, -0.0363882072, 0.0359790213, -0.00578338653, 0.0110991336, 0.0263485685, -0.0122316983, 0.034780696, 0.0170103908, -0.0248871949, -0.029607432, 0.00331366481, 0.0125751207, -0.0394278616, 0.0257347915, -0.00122755393, -0.00182489038, -0.028131444, -0.0108580068, -0.0351606533, -0.0106022665, -0.0154905617, -0.0638912618, 0.014679499, -0.0150229223, -0.0204300042, 0.00739455083, 0.00221398124, 0.0157097671, -0.0136711514, -0.0154759474, 0.015870519, -0.00136455777, -0.0377326682, -0.030630393, -0.00867325347, 0.0254571307, -0.0113841016, 0.0276199635, 0.0327055454, -0.0137734469, -0.0232358426, 0.00475677149, -0.00880477671, -0.0125824278, -0.0016321718, -0.00222494151, -0.00519518368, 0.0217744689, -0.00184589764, 0.0323548131, -0.00338673359, -0.0429936163, 0.0481668785, -0.022841271, -0.00822022744, 0.0234842766, 0.0319456309, -0.0068319221, -0.00650676666, 0.0323548131, 0.00413203426, -0.00128966232, -0.0297827963, -0.00971082877, -0.00136455777, -0.0156513117, -0.0166304335, -0.00280949101, -0.105511181, -0.00903128926, -0.0165719781, -0.0222128797, -0.0216429457, 0.0291836336, -0.0321502201, -0.000883217726, -0.0350145139, 0.00834444351, 0.0341084637, 0.0437243022, -0.0171565283, 0.0208976436, -0.00181301683, 0.040392369, -0.014065722, 0.00268344744, 0.00305061764, -0.0024258804, 0.0319748558, -0.0173172783, -0.029812023, -0.0324424952, 0.0171273, -0.00647023227, -0.0500374362, -0.00584184146, 0.0131158289, -0.00849788822, 0.00881939, 0.00360776647, 0.0263777953, -0.00154357601, 0.0229289532, -0.00732148252, 0.0412399657, -0.00771605317, -0.0225782245, -0.00981312431, 0.0262754988, 0.0443088524, 0.068041563, -0.0257201772, 0.0161920208, -0.0262608863, 0.0204446185, -0.0246095341, 0.0501835719, 0.00671866583, -0.0219498333, 0.00332279853, -0.0379957184, -0.035803657, 0.0314195342, 0.00105949596, 0.0197723862, 0.0250479449, 0.046384003, 0.0675154626, 0.0127139511, -0.00957930461, -0.00450103125, -0.0409184657, -0.0383172184, 0.0279999208, -0.0165427513, -0.0176826213, 0.0264800917, 0.0207807347, 0.0227097478, -0.00734705618, 0.00499789836, -0.00760645, -0.0358621106, -0.00758452946, -0.0317702666, 0.00751146115, -0.0397201367, -0.0174488015, 0.0533693694, 0.0219059922, 0.0203130953, -0.0245218519, -0.0054216967, -0.00198746822, 0.0237765498, -0.0309226681, -0.0307473037, -0.0448057167, -0.0230604783, -0.0244487822, 0.0141680185, 0.0379957184, -0.0112014292, -0.0112818051, 0.000174451488, -0.0081398515, -0.0255009718, 0.0536031872, 0.0333485492, -0.0239811428, -0.0321502201, -0.00871709455, 0.0161043387, -0.0251648556, -0.0328809097, -0.00131523632, -0.0204738453, -0.0205615275, 0.015461334, -0.0241272803, 0.0183986947, -0.0238057785, -0.0303965732, 0.0436073914, -0.00962314568, -0.00573954545, -0.0211899187, -0.0206492115, 0.0274299849, -0.0474946462, -0.0249456502, 0.00131249626, 0.0488098823, 0.0180187374, 0.00139743858, 0.0121294018, 0.0321794488, 0.0345176458, 0.0143726105, -0.00152348215, 0.00814715866, -0.016528137, -0.0218621511, 0.0172295962, 0.0137003791, 0.000139058844, 0.0135250138, 0.0313026235, 0.0221251976, -0.0550353341, -0.00837367121, -0.0107337898, -0.0494821146, 0.00248250854, 0.00424894411, -0.0264070239, -0.00204592315, 0.0641250759, -0.0184279233, 0.0165427513, 0.00372284953, -0.0185009912, -0.0488683358, 0.0176241677, -0.0512357615, 0.0277807154, -0.0210730098, 0.0353944711, 0.00137734471, 0.0036479542, -0.0199185237, 0.0148913981, 0.0419998802, 0.023206614, -0.0396324545, 0.0217160136, -0.0176826213, -0.0491606109, 0.00567743694, -0.0159435868, 0.00879016332, -0.00629121391, -0.00253548333, -0.00437681424, 0.0225636102, -0.00365526113, 0.00602086, 0.00972544216, 0.0192901324, 0.00331731839, -0.0303673465, -0.00844674, 0.0122024706, -0.0244049411, -0.012465518, -0.0198454559, -0.0357744284, 0.0225197691, 0.0072338, 0.0108726202, 0.034079235, 0.0191878378, 0.0218329243, -0.0358328819, 0.0290521104, -0.031127261, -0.0437243022, 0.00550207216, -0.0203277078, -0.00491021574, -0.0822461098, 0.0258224737, 0.0504173934, -0.0119978786, -0.0271815509, 0.0345761031, -0.0340500064, 0.00317666121, 0.0401293226, 0.0195970219, 0.0313026235, 0.0115302391, -0.0100761717, -0.0333777741, -0.00300860312, -0.00862941146, 0.0340207815, 0.0103611397, -0.0337577313, 0.020956099, -0.0253986754, -0.0162650887, 0.0378788076, 0.0381126255, -0.00692325784, -0.0532816872, 0.000693695853, 0.0115010114, 0.00233454444, -0.025223311, 0.00808139704, 0.00215917965, 0.00932356436, -0.0422044732, -0.0417368338, 0.00537420204, -0.0198016148, -0.00276016956, 0.00895091426, -0.0392524973, 0.00677346718, 0.0284237191, -0.0233089104, 0.0369143, -0.0285698567, -0.000140885561, 0.0301335268, 0.0422629267, 0.02517947, 0.00513672875, -0.0128016341, 0.0302504357, 0.0284383334, 0.00292640086, 0.0241418947, -0.00439508166, 0.0293736123, 0.0290959515, 0.022841271, -0.0205615275, 0.0234696623, -0.0294905212, 0.0317118093, 0.0178872142, 0.00732878922, -0.00908974465, -0.013532321, 0.00265422, -0.00522441091, 0.0285844691, -0.00584549503, -0.00486637466, 0.0140730292, 0.0163235441, 0.00303600403, 0.0572566241, -0.0302504357, 0.0182963982, 0.0536031872, -0.00126865506, -0.0211753044, 0.000652138, 0.00995195471, -0.00401877752, 0.0166158192, -0.0191147681, -0.0318287201, 0.00483349338, -0.0160897244, -0.0583380386, -0.0280876029, -0.0156367, 0.0227097478, 0.00036739849, 0.0321502201, 0.0180187374, 0.000337714329, 0.00673327921, 0.0314195342, 0.0296951141, -0.0049504037, -0.0334946848, 0.0228851121, 0.00265056663, -0.0424090661, 0.00346345571, 0.0242441893, 0.000416719849, -0.0324132703, 0.0260562934, -0.0202400256, -0.0315656736, -0.0157389957, 0.0175949391, 0.00276747649, 0.00910435803, -0.0240688249, -0.00349085638, 0.00958661176, 0.0181356482, -0.0136200031, 0.00551303243, 0.0212191474, 0.0306596216, 0.0366512537, 0.0124143697, 0.00800832827, -0.0113767944, -0.00964506622, 0.00898744818, -0.00148694776, -0.0161627941, -0.0250917859, -0.0089143794, 0.0259393845, 0.00900936872, 0.0252963789, 0.0110918265, 0.00419048918, -0.0185594466, 0.0131085226, 0.00775258755, -0.0118736615, 0.00753338169, -0.00386533351, 0.00569935748, -0.0209268723, -0.00558975432, 0.00431470573, 0.00886323117, 0.016382, -0.0108580068, 0.0143214623, 0.0218767654, 0.007032861, -0.0278099421, 0.0145698963, 0.00562628871, 0.0165865924, 0.0152713554, -0.0259832256, -0.0214091241, -0.0352483355, -0.00119375961, -0.00545457751, 0.0250625592, -0.000167487131, 0.0114279427, -0.0137442201, -0.00410280656, -0.020546915, 0.00132528332, 0.0278099421, -0.0486929715, 0.0144895203, 0.0332316384, 0.0147598749, 0.0178287588, -0.00469831657, -0.0132400459, -0.0153590376, 0.0160751101, 0.00266883383, -0.0236158, -0.00627294648, -0.0065907957, 0.0470270067, -0.0117640588, -0.022680521, -0.0106680281, -0.0131669771, -0.00520249037, -0.0107264835, -0.0197577719, -0.0053194, -0.00292640086, -0.0082786819, -0.0183986947, 0.0151690589, -0.0176680088, -0.0417660624, -0.0063679358, 0.0193193611, -0.0511188544, -0.00138282485, 0.00425259769, 0.00431835931, 0.0034470153, 0.0182817858, 0.0377911255, -0.00971082877, 0.0182963982, -0.0362420678, 0.00401147082, 0.024974877, 0.0379957184, -0.0419998802, 0.0444257595, -0.0118663544, 0.0114937043, -0.00912627857, 0.0144310659, 0.0218475368, 0.0177264623, -0.0350437425, 0.00137186458, -0.00468370272, 0.00517691625, 0.0144822132, 0.0238788463, 0.0277368724, 0.00015059, -0.000664011692, 0.0211022366, -0.0220959708, -0.0171711408, 0.031536445, 0.0123632215, 0.0201961845, -0.0167473424, 0.0425552, 0.0141241774, -0.0044864174, 0.0180187374, -0.00145589362, -0.00969621446, 0.0182233304, 0.017390348, -0.013123136, -0.0027309421, -0.043841213, 0.00450833794, 0.024974877, -0.00488464162, 0.0175803266, 0.0208245758, 0.0283652637, -0.000313510332, 0.0118663544, -0.0139341988, -0.00114443828, 0.0277076457, 0.00542535, 0.0137003791, 0.00711323647, -0.0109749166, 0.0193924289, 0.050475847, 0.0101053994, -0.0224905424, 0.00685384264, -0.00105949596, -0.0158559047, -0.0358621106, -0.0077672014, -0.00895822048, -0.0158997457, 0.0336408243, 0.0218767654, 0.00507462025, 0.00571397133, 0.0112598846, 0.00130975619, -0.00304331072, 0.0299289338, 0.00914089289, 0.0114498632, 0.0511188544, -0.0189247895, 0.00898744818, 0.0100615583, -0.0243318733, -0.00984965917, -0.00584184146, 0.0129623851, 0.0183256269, 1.87809364e-05, -0.0316825807, -0.0117786722, -0.01386113, 0.0174780302, -0.0157097671, 0.0181064196, 0.000409641332, -0.00861479808, 0.0255594272, 0.0308057573, -0.0100761717, 0.0063971635, 0.0263047274, -0.0135030933, 0.00887053832, 0.00653964747, 0.00131614972, -0.0247556716, -0.0208538026, 0.00166505273, 0.0152275143, -0.0234842766, -0.0436950736, 0.0109456889, -0.00765759824, -0.00662367651, 0.0130500672, 0.00136181759, -0.0396616831, 0.0256324951, -0.0246679876, -0.00895822048, -0.00770143932, 0.00836636499, 0.00179109618, 0.0217452403, -0.00372102275, -0.00245328108, -0.00288986648, -0.0466762781, -0.00018472677, -0.00308349845, 0.0257347915, -0.0134227173, -0.00676250691, 0.0198308416, -0.0511480793, 0.00296293525, -0.0216137171, 0.045741, 0.00596240489, 0.0107191764, 0.0156951547, -0.0269331168, 0.00587106915, -0.0185156055, 0.00294649485, -0.0189686306, 0.0182671715, 0.0160897244, 0.0211460777, -0.000711049652, -0.024112666, 0.000468096259, 0.0246679876, 0.0374403931, 0.0195093397, -0.00520249037, -0.00295197498, 0.00643369788, 0.0150521491, 0.0179895107, -0.0182963982, 0.0225343835, 0.00664925063, 0.0427305661, -0.0220082887, 0.0138538228, -0.00111155736, 0.0118955821, 0.0521710403, 0.021160692, -0.0141826319, -0.0471731424, 0.00842481945, -0.0381710827, -0.00354931154, -0.012465518, 0.000262362242, -0.016528137, -0.040596962, -0.0245949198, -0.00161938474, 0.024112666, -0.00818369258, 0.0146868061, 0.0160458833, -0.032559406, 0.0263631828, 0.0325009525, -0.00174451491, -0.00308715203, 0.0125385867, -0.0137588335, 0.00818369258, 0.0166596603, 0.000526551215, -0.0263924096, 0.00045713596, -0.0380249433, 0.0130500672, -0.00275834301, 0.00816177204, 0.0224905424, -0.00143671304, 0.0212776, 0.0349852853, -0.00895822048, 0.00598797901, -0.0292274747, 0.00357671222, 0.018413309, -0.00264325971, -0.00493213627, 0.0364758894, 0.0208684169, 0.00379226473, 0.0319164023, 0.0173318926, 0.0322671309, 0.0289059728, -0.0226512924, 0.0193632022, -0.0202546399, 0.0157389957, 0.0169519354, -0.00994464848, -0.0235865712, 0.0140364943, -0.000303920067, -0.0119686509, 0.0251502413, -0.0262754988, -0.0303381179, -0.0167765711, -0.0107410969, -0.00640081707, 0.0303965732, 0.0310103502, 0.0375865325, -0.0160751101, 0.00914819911, -0.00267066038, -0.0549768806, 0.0232796837, 0.00615603663, -0.0201523434, 0.0352775604, -0.0119613437, -0.0451272205, -0.0265239328, -0.0237911642, 0.0296366587, -0.0141241774, -0.0269331168, 0.00993003417, 0.0200792756, -0.012304767, -0.0247848984, 0.0146356579, -0.0495697968, -0.0119613437, 0.0247118305, -0.015256742, -0.017141914, -0.00794256665, 0.00320223509, 0.00853442214, -0.0303381179, 0.00288621313, -0.0285844691, 0.0136200031, 0.000822936068, 0.0151106045, 0.0312149432, -0.000141570577, -0.0012732218, 0.0359205678, 0.0432566628, 0.00587837584, -0.0255155861, -0.000486820121, -0.00169154012, -0.00549476501, 0.0446011275, -0.00411376683, -0.0184717644, -0.0204300042, 0.00396032259, 0.0100615583, 0.0176095534, 0.00423067715, -0.0256032683, -0.0287013799, 0.00105675589, -0.0211168509, 0.0140949497, 0.00062154053, 0.0195824075, 0.0384633578, -0.0101419333, -0.0164550673, -0.0220521297, 0.0194947254, 0.00979120377, -0.0539831445, 0.0218329243, 0.0528725, 0.00253548333, -0.00838097837, 0.00167783967, 0.00751876784, -0.0239811428, -0.0529309548, -0.00567013025, -0.0208245758, 0.000229823854, 0.00249346881, -0.00727764098, 0.0307765305, 0.0179895107, 0.011727524, -0.0297535695, -0.0117202168, 0.00835905783, -0.00498328451, 0.00118097267, -0.00362603366, -0.0112818051, -0.0185156055, 0.000609666866, -0.00506366, -0.00631313445, -0.00338673359, 0.01386113, 0.00336481305, -0.0141387908, 0.00685384264, 0.0176972356, 0.0549184233, 0.0066309832, -0.00457775313, 0.0127212582, 0.0112964185, -0.026450865, 0.0238350052, -0.0111429747, 0.0123339938, -0.00721187936, 0.0428182483, 0.000565825612, 0.014679499, 0.0077379737, 0.0174634159, -0.00983504485, 0.00665290374, 0.0187055841, 0.00315839401, -0.0258224737, 0.0187932663, -0.0325886346, 0.0254425164, 0.00366256782, 0.0366220251, -0.00225599576, 0.00174816826, -0.0241418947, -0.018413309, 0.00375938392, 0.00965237338, 0.00185320457, 0.0276199635, -0.0137003791, -0.00366439461, 0.0219206065, 0.00111612421, 0.0121732429, -0.0284821745, -0.0223736316, 0.0250771735, 0.0212922152, 0.0273276884, -0.00635332242, 0.0169811621, -0.00661636936, 0.0183840822, 0.0118444338, 0.0230750907, -0.00997387525, 0.0176826213, -0.0164989103, -0.00390552124, 0.0055239927, -0.00963045284, -0.014474907, 0.00115174521, 0.00800832827, 0.0190124717, 0.00339769386, -0.0106388, 0.00690864446, 0.0278391689, -0.00113621808, -0.00760645, -0.0298412517, 0.00790603179, -0.010660721, 0.0323840417, -0.00849788822, -0.00126408832, 0.0260562934, 0.0113256462, 0.00955007691, 0.01098953, 0.0144091453, -0.00334654585, -0.0202400256, -0.0088340044, 0.0105438111, 0.0181794893, -0.00805216935, 0.00913358573, -0.0159289744, 0.0126481894, -0.0354821533, 0.0201523434, 0.00720822578, 0.00262316572, -0.014599123, -0.00633505499, -0.0170688443, -0.0224905424, 0.0211460777, 0.00882669725, 0.00445353659, -0.0162212476, 0.027269233, -0.0299873892, 0.0324717239, 0.00708766235, -0.00714977086, -0.00401147082, -0.00316387415, -0.00349999, 0.0255448129, -0.00902398303, -0.0155490162, 0.0180479661, -0.00254279026, 0.00331914518, -0.0178433731, -0.0130573744, -0.0100615583, 0.012918544, -0.0160020422, -0.0153444242, -0.0137076853, -0.00640812377, -0.00797910057, -0.0111575881, -0.00555322, -0.0103684468, -0.0183840822, -0.00822753366, 0.0863379613, 0.00938932598, -0.00887784548, -0.0128381681, -0.0436073914, -0.0398370475, 0.00355661823, 0.00470927684, 0.0374111682, -0.00336115947, -0.00332097174, 0.0192609057, 0.0049504037, 0.00789141841, -0.00957930461, -0.0217160136, 0.000527464552, -0.00792064518, 0.0284237191, -0.01943627, -0.00954277068, 0.0247118305, 0.00730686868, -0.0119832642, 0.019027086, 0.0155051751, -0.0425259769, -0.00955738407, -0.062955983, 0.010046944, 0.0119905714, 0.0173611194, 0.0205615275, 0.0180187374, 0.00180296984, -0.00220484752, -0.0093454849, 0.00290265353, -0.0354821533, -0.0176972356, -0.020912258, 0.00510019436, 0.00804486219, -0.0128089404, 0.0105072772, 0.0026797941, -0.0336408243, 0.0065688747, -0.00355296489, 0.0315949, -0.0169811621, 0.0100396378, -0.0223151762, -0.00911897235, -0.00177282898, -0.0231773872, -0.00119193294, -0.0325301774, 0.0102150021, -0.0427305661, -0.00420144945, -0.00303052366, -0.00565916952, 0.0220813565, 0.0122755393, 0.00712054363, -0.00413203426, 0.0258663148, 0.000713789719, 0.0348391496, 0.0346345566, 0.00613776967, -0.000273322541, -0.00740551157, -0.0238496196, 0.00176643545, -0.00442796247, 0.00804486219, 0.013532321, -0.0152859688, -0.0342253745, -0.00378495804, -0.00625467952, 0.0160166565, -0.0105365049, 0.00177922251, -0.00945508759, -0.00378861139, -0.00930164382, 0.00131706311, -0.00282045128, -0.00884861778, -0.0285552423, 0.00292640086, -0.0123120733, -0.0393109545, 0.0253548343, -0.0154321063, -0.016645046, -0.00765029155, 0.0105218906, 0.000134149537, 0.0219644476, 0.0189101752, 0.000731143518, -0.0325886346, 0.0242149625, 0.0081983069, -0.0330855027, 0.023951916, -0.00285333209, 0.0141095631, -0.0183548536, 0.00824214797, 0.011362181, 0.0129331574, -0.0153298108, -0.00822753366, -0.00105310243, 0.012998919, -0.0399831869, -0.00127687526, 0.00118005928, -0.0142557006, 0.00358401914, -0.0256909505, -0.016645046, 0.00535593461, 0.0129769985, -0.018413309, -0.0193047468, 0.00845404714, -0.02181831, 0.00651407335, -0.0126554966, 0.0133934906, -0.0151544455, 0.00621814514, 0.00618161075, 0.0093454849, 3.76760399e-05, -0.000935279182, -0.0109822238, 0.00873901509, 0.0191293824, 0.0304550286, 0.0150667634, -0.000124330938, 0.0214968082, 0.00519883679, -0.0297097284, -0.0275761224, 0.0160458833, 0.00177100231, 0.0182963982, -0.0246095341, -0.0305719376, -0.014803716, -0.0306011662, -0.000176164031, 0.00700363377, 0.0176533945, -0.0118444338, -0.0111868158, 0.0113475667, -0.0022943567, 0.0104634361, -0.0258809291, 0.0117202168, 0.00892899372, -0.00281497114, 0.00935279205, -0.000423570047, -0.017141914, 0.0275030527, 0.00159837748, 0.0214675795, 0.00803024881, 0.00968890823, 0.0180479661, -0.0185156055, 0.0158997457, -0.00347624277, -0.00454121875, -0.0031949284, -0.0180333517, -0.010660721, -0.0167911835, 0.00808139704, -0.000833439699, -0.0193485878, 0.0161774065, 0.0321209952, -0.00251356279, 0.035102196, 0.0193485878, 0.00588568253, -0.0171565283, -0.00196372089, 0.0133423423, -0.0103392191, 0.00709131593, 0.0328224525, 0.0257055629, -0.00486637466, 0.020093888, -0.0192316789, 0.00427086465, -0.00280583766, -0.0105218906, 0.0121878572, -0.0297243409, -0.00944778137, -0.00300312298, 0.0162504762, 0.00796448719, 0.00873901509, -0.0209414847, -0.0131377494, 0.0112160435, -0.00832252298, -0.00271815504, -0.0161481798, 0.00401877752, -0.000887327886, 0.00136912451, -0.0148694776, -0.0132619664, -0.0119394232, 0.0228851121, -0.00585280173, 0.0223444048, 0.0181064196, -0.0010814165, 0.0160458833, 0.0184717644, 0.00141113903, -0.015665926, 0.0158266779, -0.00119741308, -0.0254717432, 0.0123266876, -0.0237473231, 0.0302212089, -2.70439773e-06, -0.000113313552, 0.0292567015, -0.0220521297, -0.0131596699, 0.0124362903, 0.00728494814, 0.0114790909, 0.0117494445, -0.0217598546, 0.0134373317, -0.00195276062, -0.020956099, -0.00448276382, -0.00824945513, -0.0402170047, 0.00523171807, 0.0118590482, -0.00576146599, -0.00286794594, -0.0273715295, -0.00533401407, -0.0209853258, -0.00770874647, -0.0178141464, -0.0223297905, -0.00473850407, 0.00918473396, -0.00152530882, -0.0089363, 0.0174780302, -0.0326178633, 0.0250041038, 0.0132985013, 0.00705843512, -0.0112818051, -0.00028405452, 0.0119686509, 0.000370823574, 0.00333741214, -0.0202546399, 0.030630393, -0.00559706148, 0.0211168509, -0.00529747969, 0.0210145544, 0.0295928176, 0.011274498, -0.0120124919, -0.00273276889, 0.00202948274, 0.01472334, 0.027108483, -0.0305719376, 0.00405165879, -0.0213506706, 0.0182087161, -0.0128966235, 0.0174926426, -0.0194508843, -0.00903128926, 0.00818369258, 0.00206784392, -0.0129404645, 0.0235135034, -0.0202254131, -0.00199477514, -0.0332024097, -0.00166231266, 0.000441837212, -0.00951354299, -0.0170396175, -0.00538150873, -0.0152275143, 0.00303235045, -0.0207807347, -0.0114790909, -0.0152713554, -0.0431982055, -0.00233637122, 0.0179456696, 0.00548015162, 0.00906782411, -0.0334654599, 0.00420875615, -0.0222859494, -0.00570666417, 0.0053194, -0.0180771928, 0.0202546399, -0.0208391901, 0.0215114206, -0.011647149, -0.0453025848, -0.0119101955, 0.00262133917, -0.0155490162, 0.000462844473, -0.0120782536, 0.020912258, -0.0152421277, -0.00316752749, -0.0187494252, 0.00385437324, -0.0374403931, -0.00628025364, -0.00754068838, 0.00233454444, 0.0241857357, -0.0203130953, 0.0214968082, 0.0332900919, 0.00329174427, 0.000745300611, -0.0118955821, -0.0224759281, -0.0268015936, -0.0063971635, 0.0148256365, 0.00604278035, 0.00556783378, -0.0295928176, -0.01386113, -0.00473485095, -0.0109383827, -0.0129769985, -0.0103172986, -0.00701824715, 0.0221982673, -0.00745300576, 0.00930164382, 0.00844674, 0.0329978205, -0.0227389745, 0.000919752114, -0.0048590675, -0.0269038901, -0.00279487716, -0.00774528086, -0.0109383827, 0.0337869599, 0.00364430062, -0.000322187232, -0.0125532, 0.0116909901, -0.00641543046, 0.0267577525, 0.0270792544, -0.0134592522, -0.0033337588, -0.0173611194, 0.0121878572, -0.0333485492, 0.0189832449, -0.0217890814, -0.00800832827, 0.0134227173, -0.00813254435, -0.0183694679, 0.0093162572, 0.0161627941, 0.00385071966, -0.00116179208, -0.0273423027, 0.00809601, -0.0235427301, -0.00283506513, 0.00689403061, -0.0202692542, -0.000469466322, 0.0137149924, -0.0112598846, -0.00451929821, 0.0345761031, -0.0145772025, -0.000454167544, -0.0119613437, -0.0106241871, -0.00775989424, -0.00339404051, -0.00153900916, -0.0209268723, 0.020707665, -0.00535958819, -0.00811793096, 0.0238934606, 0.0109968372, -0.00872440077, 0.0117129106, 0.00557879405, 0.00782565586, -0.00643735146, -0.0119832642, -0.000860383792, -0.0113914078, 0.0193485878, -0.0184279233, -0.00505635329, 0.0142557006, 0.00729956152, 0.00450468436, 0.00238569267, 0.0147817954, 0.00651042, 0.00637889653, -0.00407723291, -0.00185594463, -0.00892168656, -0.0117640588, 0.00982773863, 0.00405165879, 0.00109511695, -0.00895822048, 0.007032861, 0.00360593968, 0.00376669085, 0.0192316789, 0.0119686509, -0.0226074513, 0.00354931154, 0.0252086967, 0.016031269, -0.00506731356, -0.00267614052, -0.00516230287, 0.00548015162, 0.0111283613, -0.00604643393, -0.00151160848, -0.00274372916, 0.00678808102, 0.00811062381, -0.0175218713, -0.00350547023, -0.0221105851, -0.00264873984, -0.011274498, 0.0190417, 0.00669309171, 0.0126262689, 0.0295051355, 0.00781835, -0.0223005638, 0.014314156, -0.0115594659, -0.00208063074, 0.0118079, -0.00288986648, 0.00097638031, 0.016031269, 0.0176680088, 0.012341301, 0.00321319536, 0.0171565283, -0.0200062059, -0.0178141464, 0.00640081707, 0.000807409, -0.0209999401, -0.036826618, 0.00672597252, 0.00556052709, -0.00218475377, -0.00797179341, -0.0145041347, 0.012341301, -0.00137825811, -0.00545457751, -0.0249018092, 0.0302212089, 0.0171711408, -0.00223407499, -0.025223311, -0.013532321, 0.00152439543, 0.00686845649, 0.0230166353, 0.0100177173, 0.0168496389, -0.0309518948, 0.0102588432, 0.000130952787, 0.00798640773, 0.00695248554, 0.00554591324, -0.0144310659, 0.011522932, 0.0240249839, -0.0116106141, -0.00902398303, -0.00703651458, -0.0180625785, 0.0139926532, -0.00767221209, 0.0104999701, 0.0254717432, -0.0262901131, -0.0104634361, -0.0234112069, 0.00321136881, -0.00662732963, 0.0107191764, 0.0123924492, -0.0180918071, -0.00673693279, -0.016279703, 0.00459967367, 0.00248068199, -0.011237964, 0.0161335655, 0.00624371925, 0.0108580068, -0.0110479854, 0.0139999604, -0.0133350352, 0.0156513117, 0.000411468034, 0.0124435974, -0.0107484041, -0.00360228634, 0.0111722024, 0.00469466299, 3.5135763e-05, 0.00632409472, -0.00329357106, -0.0151690589, 0.00176095532, -0.0203130953, 0.0296658874, 0.00849058107, 0.0118663544, 0.0460332707, -0.00431105262, -0.00420144945, -0.0264654774, -0.00545457751, 0.00868056, 0.00263595278, 0.0115886936, 0.00587106915, 0.000989167369, 0.00506366, 0.01472334, 0.0128016341, -0.0103246057, -0.00830791, 0.0049905912, 0.0115667731, -0.0196116362, 0.000853533566, -0.00182671717, 0.00323511614, -0.0163527727, -0.0109456889, -0.00374111673, -0.0012567814, -0.0138392095, 0.00681730825, -0.00887784548, -0.00239665294, -0.0194508843, -0.00342326798, -0.00778181525, 0.0128089404, -0.00908243749, -0.00408088602, 0.000644374464, -0.00321684894, 0.00699632661, 0.0076356777, 0.0062766, -0.0202692542, 0.0271815509, 0.0121074812, -0.00266518025, 0.0063898568, -0.00492117601, 0.0156805404, -0.00671866583, 0.00423067715, 0.0192609057, 0.00705843512, 0.0170396175, 0.0063679358, -0.00402973825, 0.00720822578, 0.00428182492, 0.0243464857, 6.00533276e-05, -0.00799371395, -0.00245145452, 0.0337869599, -0.0043877745, -0.0146137374, -0.0286429245, -0.0133788763, 0.0228558853, 0.00461063394, -0.0204884596, 0.00933087151, 0.00613046298, -0.0015709768, 0.0108580068, 0.0116179213, -0.00361507316, 0.00699998, -0.012056333, 0.018004125, 0.00206236378, -0.00377399754, 0.00295380154, -0.0106753353, 0.00650676666, 0.0216137171, -0.00109785702, -0.00821292, -0.0192462914, 0.00964506622, 0.00696344581, 0.0151106045, -0.00314012682, -0.0131523637, 0.0124947457, 0.025223311, -0.00017296728, -0.022227494, 0.0186471287, 0.00611584913, -0.0183402393, 0.017799532, 0.0224467013, 0.00901667587, 0.00929433666, -3.64487169e-05, -0.00512576848, 0.00451929821, -0.00796448719, -0.00551668601, -0.00906051695, -0.0234404337, 0.00565916952, -0.0242441893, -0.0029592819, -0.00146411383, -0.00176004192, -0.0239226874, 0.00285150553, 0.0118736615, -0.00698171277, -0.0159874279, 0.0241565071, 0.00384341297, -0.00558975432, 0.0112891123, 0.0151690589, 0.00748223346, 0.0212191474, 0.00895822048, -0.0247995127, -0.035102196, 0.00924318843, -0.011647149, 0.00956469122, 0.00187969196, -0.0122390045, -0.0139195845, -0.00952085, 0.00217927364, 0.00263595278, -0.000244551746, -0.0249602627, 0.0127870198, 0.000829786295, 0.0178141464, -0.00928703, 0.0200062059, -0.0124362903, 0.00363516714, -0.0172149818, -0.008651332, -0.0186909698, -0.0147671811, 0.0127797136, -0.028379878, 0.00667847786, -0.00431470573, -0.0120051848, 0.0143799176, -0.00922857504, 0.0049504037, -7.90626e-06, 0.0101638539, -0.000370595255, 0.00876824278, 0.00950623583, -0.0089436071, 0.0294466801, 0.0217744689, -0.0153882653, -0.0187348109, 0.00273642223, -0.00701459404, 0.0209707133, 0.00606835447, 0.0183986947, 0.00315839401, -0.0153590376, 0.0037338098, 0.010456129, -0.0260270666, 0.023951916, -0.000177762413, -0.00383975939, 0.0134811727, 0.00436950754, -0.0003098569, 0.0175657123, -0.0025464436, 0.00243318733, -0.00612315582, 0.00482253311, -0.014518748, 0.00510384794, -0.0189101752, -0.0177118499, 0.0309811234, -0.00319310161, -0.0106168799, -0.00509654079, -0.00570666417, -0.00475311792, 0.0244633965, -0.00441334862, -0.000809235673, -0.0024952956, 0.00216100644, -0.00475311792, -0.0016577458, -0.00171620073, 0.0156074716, -0.0038836007, -0.00800832827, 0.00318214134, -0.000150475826, 0.0268454347, -0.00253731012, -0.00880477671, 0.0104342084, 0.00163491187, -0.0140730292, 0.026494706, 0.000345477893, 0.00619257102, -0.00167235953, 0.0115083177, 0.0126189617, 0.00191622635, -0.0279268511, -0.018413309, -0.00624371925, 0.00181210344, 0.0119686509, 0.00251173601, 0.0179310553, 0.0228266567, -0.00730686868, 0.00956469122, -0.00604278035, 0.00762837101, 0.0151544455, 0.014314156, -0.0235281177, 0.0128454752, 0.00181667018, 0.00216831337, -0.0180187374, 0.0185594466, -0.0263777953, -0.00335202599, 0.00930895098, -0.000473119755, 0.00717899855, 0.00713150389, -0.0241272803, -0.0125020519, -0.00428182492, -0.00790603179, -0.0107410969, -0.0315949, -0.0104780495, -0.00218658033, 0.00709862309, -0.0130573744, 0.00732513564, 0.00514403544, -0.000773158041, 0.0155928573, 0.0171126872, 0.00896552764, 0.00164221867, -0.000374020339, -0.0180479661, -0.0181794893, -0.0207222793, 0.000287022936, -0.017302664, 0.0171273, 0.000387264037, -0.00795718, 0.0212191474, 0.0214675795, 0.029651273, 0.00472389068, -0.00352921756, -0.0153882653, -0.000531118, 0.0168204121, 0.00114169822, 0.00777450809, -0.0030122567, -0.0159143601, 0.0199915934, -0.00401877752, -0.0189832449, 0.00460698083, -0.00951354299, 0.00351095037, -0.00910435803, -0.0155197885, 0.00531209353, 0.0258809291, -0.0118736615, -0.0134592522, -0.0203423221, -0.00539977569, 0.00975467, 0.0193485878, -0.00918473396, -0.0185302179, 0.0120197991, -0.000426310115, 3.20817198e-05, -0.00287707942, 0.028379878, 0.0167035013, -0.00468370272, 0.00641543046, 0.00949162245, -0.0141534042, 0.000801472168, 0.0123266876, 0.0203130953, -0.0168204121, -0.00281497114, -0.00647023227, 0.0271230955, -0.00268344744, -0.0119832642, -0.00864402577, -0.0231043193, -0.00107593636, 1.76820504e-05, 0.0100834789, -0.00453756563, 0.0136857647, 0.0133715691, -0.00370823592, 0.022680521, 0.0267285258, -0.011398715, -0.00898744818, -0.00895822048, 0.0254279021, -0.0289644264, 0.0153736519, -0.0123632215, -0.00201669568, 0.0215844903, -0.0188517217, -0.00379226473, 0.00633505499, 0.0157974493, 0.0100615583, 0.00236011855, 0.02181831, 0.00795718, 0.0139926532, 0.0047275438, 0.00444257632, -0.00874632131, 0.0182817858, 0.00494675, 0.00244232081, -0.0171857551, 0.00909705181, -0.00964506622, -0.0140072675, -0.00551303243, -0.0135615477, -0.0161627941, -0.00199842849, 0.000936192519, 0.0112891123, -0.00279670395, -0.0132108182, 0.0124362903, 0.0131962048, -0.0107337898, -0.0099008074, 0.000877280894, 0.00197102781, -0.0172442105, 0.0238203909, 0.00201121555, 0.00105949596, 0.0108141657, -0.00256653759, 0.0310103502, -0.0185886733, 0.00370823592, 0.0117494445, -0.00917012, 0.00147050736, 0.00830791, -0.0231773872, 0.00431105262, -0.0214383528, 0.030016616, 0.010046944, -0.00867325347, 0.018004125, -0.00382879912, 0.0155782439, 0.0140218809, 0.0282045137, -0.0215406492, -0.000531118, -0.00261403224, -0.000916555349, -0.00615603663, 0.0185886733, -0.000170227198, 0.000883674424, -0.011442556, 0.0469977781, -0.017551098, -0.00277843676, -0.000939846, -0.00459602056, -0.00504904613, -0.0228558853, -0.00646657869, 0.0172880515, -0.00999579672, 0.0146868061, 0.00580896065, 0.0240834393, 0.00194910716, 0.000925688946, 0.0147598749, 0.00462159421, 0.00109511695, -0.0223590173, -0.00884131063, 0.00109968369, -0.0199185237, -0.0206784382, -0.00821292, 0.0149571598, -0.0203423221, -0.000264188973, 0.0149352392, -0.00720457267, -0.00500155147, 0.0357744284, 0.00879016332, 0.0126116555, -0.00887053832, 0.00528651942, 0.0281168297, -0.00518422341, 0.00416491507, 0.00682826852, -0.023455048, 0.00686480291, 0.00361507316, -0.00172076758, -0.0118371276, -0.00362786022, -0.000236331529, 0.00237838575, -0.0146283507, 0.00695979223, 0.00474581122, 0.0211168509, 0.0183840822, -0.0112818051, 0.00986427255, -0.0209414847, 0.0203277078, -0.0199915934, 0.0101565477, 0.00607566116, -0.00284785195, 0.00415760837, -0.0219206065, 0.00610854197, 0.00582357449, -0.010784938, -0.0186763555, 0.00930895098, 0.0187055841, -0.00533766765, -0.0141168702, 0.0228997264, -0.0155928573, -0.00366987474, 0.002983029, -0.018413309, -0.00553495297, -0.00822753366, -0.01012732, -0.00892899372, -0.0405092798, -0.016645046, -0.00447180355, -0.018661743, 0.0223151762, -0.0478746034, 0.0255301986, 0.00489194831, 0.0180918071, 0.0089728348, -0.00811062381, 0.0148475571, 0.000397767668, 0.00629121391, -0.00744935265, 0.0167619567, -0.0353652425, 0.00704016769, -0.00635332242, -0.0106022665, 0.00508558052, 0.0204153918, -0.0213360563, -0.0145114409, 0.0173757337, 0.0135907754, -0.00373563659, 0.00543996366, 0.0180187374, -0.00714246416, 0.0104707424, 0.013532321, 0.00922857504, -0.0153736519, -0.000352099742, 0.011647149, 0.00732878922, 0.00730686868, -0.0181210339, -0.0341961458, 0.00204044301, -0.00386533351, 0.012794327, 0.00374111673, 0.0169665497, -0.00940394, 0.00786219072, 0.015008308, 0.0154467206, 0.0113767944, 0.00963776, -0.0153005831, 0.00336115947, 0.0244487822, -0.00984235201, -0.00993734132, -0.0040553119, 0.0246826019, 0.0203715488, -0.0211460777, 0.00174451491, 0.0261878166, 0.0178433731, 0.0130719878, -0.0185009912, -0.0165135227, 0.0216575582, 0.00194910716, 0.00579800038, 0.00143579964, -0.00419414276, 0.0114206355, -0.0120124919, -0.0147744883, -0.0135104, -0.00013140947, 0.00924318843, -0.0216429457, 0.0224174727, -0.0134957861, 0.0134373317, -0.00935279205, -0.0171857551, -0.000469466322, -0.00200573541, 0.00762837101, -0.00888515264, 0.00737263029, -0.0283944923, -0.00487733493, 0.0126774171, -0.00377034419, 0.000293873134, -0.0118298205, 0.00961583946, 0.00135451078, 0.000398909353, 0.00476042507, 0.017302664, 0.0200208202, -0.0161481798, -0.0185448322, -2.14781976e-05, -0.0149206258, 0.0134154111, 0.0036479542, 0.022680521, -0.00352921756, -0.00524267834, -0.00686115, 0.0194070432, -0.0310103502, 0.00984235201, 0.00541073643, 0.0245803054, 0.00651042, -0.0138099818, 0.00588933611, -0.00955007691, 0.0100542512, -0.0136711514, 0.0103099914, -0.00948431529, 0.0104415156, 0.0218329243, -0.00406627217, 0.00168514659, 0.0145918168, -0.00930164382, 0.0151544455, -0.0130354539, 0.017302664, -0.0147744883, -0.0151982866, 0.0209414847, -0.00346893584, 0.0047494648, -0.00752607454, -0.00377765112, -0.00182945724, -0.00271450169, 0.00908974465, -0.00377034419, -0.00307253818, -0.0027473825, -0.0184863769, 0.022592837, 0.0131888976, -0.00786949787, -0.0124216769, -0.0103976736, 0.0196700897, 0.010580346, -0.0118225133, 0.0215991028, 0.00939663313, 0.00371919619, -0.033582367, -0.00663829036, -0.00134903064, -0.0144676, 0.0337869599, 0.0153005831, -0.000244095078, 0.00660175597, 0.0020769774, -3.93600458e-05, -0.0155636305, 0.0280145351, 0.010331912, 0.00840289891, 0.012794327, -0.0168057978, 0.000194773718, -0.000334974262, -0.00681730825, 0.00194362702, 0.0197723862, -0.0200646613, 0.00505635329, 0.0030122567, -0.00917012, 0.0114498632, 0.00539977569, 0.0173465069, 0.00879016332, 0.00339038693, 0.0137442201, -0.00455583259, -0.0252817646, 0.018778652, -0.00637889653, -0.0107630175, -0.0159143601, 0.00139743858, 0.0122755393, 0.00198381487, 0.0200208202, -0.00807409, 0.00758452946, -0.00297937565, 0.00725937402, -0.00729956152, 0.0170103908, -0.0151836732, 0.00651772693, 0.00342326798, 0.0144456793, 0.0044170022, 0.00900206249, -0.00393109536, 0.0101565477, -0.0268162079, -0.0133642629, 0.000410098, -0.00488464162, -0.0166158192, 0.0111210542, -0.0205323, -0.0191001538, 0.000763111108, 0.0204738453, 0.00985696539, -0.00150430156, 0.00275651622, 0.00470562326, -0.0110114506, 0.0265677739, -0.0237765498, 0.0229289532, -0.0266992971, -0.00789872464, -0.00430374546, -0.0182817858, -0.0112087363, 0.01012732, -0.00232358417, -0.00709862309, 0.00828598905, -0.00960122515, 0.0312149432, -0.0229289532, 0.000714703114, 0.0169519354, 0.0283068083, 0.00806678273, 0.00824945513, -0.0151398322, -0.00454487232, 0.020956099, 0.00638254965, 0.0212629884, -0.0427890234, -0.00769413263, 0.0253694486, 0.00559706148, -0.00292640086, 0.0103538325, -0.0119394232, 0.0119978786, 0.00403339136, -0.00248981547, 0.0136638442, 0.0102880709, 0.00865863916, 0.0321209952, -0.0132327387, 0.00732148252, 0.0035511381, 0.0181794893, -0.0158266779, 0.0120197991, 0.00847596768, -0.00967429392, -0.015665926, 0.0132985013, -0.00324059627, -0.0125312796, 0.0210583955, 0.00169154012, -0.00928703, 0.0133642629, 0.0199915934, -0.0160458833, 0.0081983069, 0.00202948274, 0.00361507316, -0.0137734469, -0.00599163212, 0.00701824715, 0.0073653236, 0.00250808266, -0.0128747029, 0.0115302391, 0.000686389, -0.0116106141, -0.00276747649, -0.0165135227, -0.00781104248, 0.0135396272, 0.00936740544, 0.00655060774, 0.023455048, 0.00239847973, -0.0293736123, 0.0107264835, 0.02534022, -0.0175657123, 0.0263924096, 0.0117859794, -0.0187494252, 0.00775989424, 0.00969621446, 0.000395027571, 0.0110260649, 0.0306888483, -0.00808870327, 0.0176095534, -0.00154357601, 0.0174488015, 0.0157389957, -0.00143397297, -0.023864232, 0.0339038707, -0.0685092, -0.00229983684, 0.00780373579, 0.0114060221, -0.00373015646, -0.00346710905, 0.0255594272, -0.00509288721, 0.0347514674, 0.00263960636, 0.0110845193, 0.0012741352, 0.0266846847, 0.0161627941, -0.00847596768, -0.00548015162, 0.0096085323, -0.000823392766, -0.00259576505, -0.00466543576, 0.00981312431, -0.0159143601, 0.0168642532, -0.00189247902, 0.00545457751, 0.005392469, 0.00740916468, -0.00617065048, -0.0255155861, -0.0105218906, 0.0131377494, 0.00402243109, -0.0182379447, -0.014189939, 0.0138684362, -0.00126956846, 0.00831521675, 0.00369727542, 0.00740551157, -0.00530844, 0.00845404714, -0.0142410873, 0.00113987154, -0.0206345972, -0.0164842959, -0.00689037703, -0.0102150021, 0.0112818051, -0.00848327484, -0.000916555349, -0.00895091426, 0.00123212067, 0.00231079711, 0.00169976032, 0.00711689, 0.0178287588, -0.0170250032, -0.0110114506, 0.0362420678, 0.00184681104, 0.00854903646, -0.0282483548, -0.00811793096, -0.00100286771, 0.0267723668, -0.00318579469, 0.00296293525, -0.00741647184, -0.00356027181, 0.000679082121, -0.0249456502, 0.00365708768, 0.00936009828, -0.0166012049, 0.00286977272, 0.00389821432, 0.000513307517, 0.0123778358, -0.0156805404, 0.000729773485, 0.0134446379, -0.00317300763, 0.0207661204, 0.0131158289, 0.00261403224, 0.00335750612, -0.0139853461, 0.00737628387, 0.0207515061, -0.00761375716, -0.00816177204, 0.00991542079, -0.0363589786, -0.0131012155, 0.00511846133, 0.00335202599, -0.00911166519, -0.00355661823, 0.00438412139, 0.00141113903, 0.0270500276, 0.00199294835, 0.0233381391, -0.000898288155, 0.0257494058, -0.0230312496, 0.0228705, 0.00584184146, 0.00985696539, 0.0195824075, 0.00457409956, 0.00901667587, 0.00919934735, 0.00397859, 0.0182963982, 0.00122755393, 0.00103300856, -0.00526825245, 0.0063898568, 0.00832252298, -0.0141680185, 0.00762837101, 0.000198883834, -0.016118953, -0.0153736519, -0.0124801314, -0.0152275143, -0.00936009828, -0.0040553119, -0.00981312431, 0.00222494151, 0.022432087, -0.0117713651, 0.00369179528, 0.0045887134, -0.0117129106, -0.00366987474, 0.0109237684, -0.0109529961, -0.00337212, 0.0107191764, -0.00759183662, 0.0285990834, 0.0139195845, -0.0197577719, 0.00656522159, 0.0193924289, 0.00847596768, 0.00552033912, -0.0342546, 0.00583088119, 0.00702920742, 0.0107191764, 0.00109603035, -0.00617795764, -0.016382, -0.00978389662, -0.00913358573, -0.0042562508, -0.0211460777, 0.00470927684, 0.00943316706, 0.0162650887, -0.00508192694, 0.0185886733, 0.00736167, -9.74439463e-05, 0.0160897244, -0.00234367815, 0.00530113326, -0.00691595115, -0.00243136054, 0.00799371395, -0.0149352392, 0.0016668794, -0.0270061865, -0.00895091426, -0.0200208202, 0.0145625891, 0.00998849, -0.00968890823, -0.0025756713, 0.0118736615, 0.00260307197, 0.00625102594, -0.0148621704, -0.00146046036, 0.00738724414, 0.0118005928, 0.0194947254, 0.0162358619, 0.0272253919, 0.0125678144, -0.00610123528, -0.0276491903, -0.0201523434, -0.000907421752, -0.00189978583, -0.00171802752, 0.00345066865, 0.0140584148, -0.00629121391, 0.0105949594, -0.0164842959, -0.00299033592, -0.0180333517, 0.00408819318, 0.00911897235, -0.0101419333, 0.0228120442, 0.0150229223, -0.0276638046, -0.0303088911, -0.00832983, 0.00707670208, 0.0112671917, -0.0113402605, -0.00586741557, -0.0174780302, 0.00292640086, 0.0107337898, 0.0155782439, 0.0122390045, -0.00450833794, 0.0254863575, 0.00353104435, 0.00635332242, 0.00563359587, -0.0182087161, 0.00709131593, 0.0137880612, -0.00939663313, -0.0132985013, 0.0144529864, -0.000419688266, 0.00100560777, 0.0136857647, 0.0210730098, -0.0159143601, 0.00462524779, 0.0120271053, 0.0117202168, 0.00956469122, -0.00349085638, -0.0145260552, 0.0292713158, -0.014474907, 0.0312734, 0.00152530882, 0.0124874385, -0.0126481894, -0.00173903478, -0.025837088, 0.0268454347, 0.0170834586, 0.0122316983, -0.0107191764, 0.018617902, -0.0081398515, 0.00186142477, -0.0030286971, -0.00662367651, 0.018004125, -0.0144383721, 0.00130427605, -0.017551098, -0.011194123, -0.0141022569, -0.0101857744, 0.00313282, -0.00371188927, -0.00431835931, -0.016382, 0.0115886936, -0.00901667587, 0.0275907367, 0.0108799273, 0.00454487232, -0.0239811428, -0.0122974599, -0.000614233664, 0.00981312431, -0.0194070432, -0.0100761717, 0.0211022366, -0.000971813512, -0.0155490162, -0.00881939, 0.00693421811, 0.00076904794, 0.00198929501, -0.00379591831, 0.00945508759, 0.00536689488, -0.0220959708, -0.0120197991, 0.00875362847, 0.0120928679, 0.00706574181, -0.0297389552, 0.00843943283, -0.013451945, -0.00633140188, -0.00606835447, 0.00767951878, -0.00560802175, -0.00680269487, -0.0116252275, -0.00217744685, -0.0104122879, -0.00715707801, -0.00320771523, -0.015870519, 0.0158412904, -0.0107337898, 0.0114279427, -0.0104415156, 0.0133131146, 0.0035511381, -0.00835175067, -0.0141022569, 0.0192901324, 0.00563724898, -0.0154174929, 0.0129623851, -0.00911897235, 0.0179018285, -0.00181393011, -0.0162943173, -0.039369408, -0.00767221209, 0.00634966884, -0.0107118692, -0.00216831337, -0.00673327921, -0.00275651622, -0.0138903577, -0.00176278211, 0.00477869203, -0.0231773872, -0.0185740609, -0.0040845396, -0.0145479757, -0.000641177699, -0.00190343929, -0.011362181, 0.00238569267, -0.00298850937, 0.0243464857, -0.00581626734, 0.00381053193, -0.00972544216, -0.0221690387, 0.0257347915, 0.0185594466, 0.0155782439, -0.0249894913, -0.0286867656, 0.0140803354, 0.000220576097, -0.0204007775, 0.0112964185, 0.00495405681, -0.0486052893, 0.014270314, 0.00132711, -0.00354931154, 0.00514768902, -0.0176533945, -0.0168057978, 0.0142776212, -0.00743108522, 0.00256836438, 0.0590395, 0.0130719878, 0.0172003694, -0.0228558853, 0.00795718, -0.0139341988, 0.00822022744, 0.0334070027, -0.015622085, -0.00657252828, 0.000644374464, 0.0104999701, -0.0144822132, 0.0141168702, 0.0118663544, 0.0177703053, 0.0111064399, 0.00405165879, 0.00941855367, 0.00116544554, 0.00606470089, -0.0137880612, 0.0108287791, -0.00389821432, 0.0034652825, 0.00385437324, 0.00288073299, -0.00738359056, -0.0264800917, 0.0251648556, 0.0116690695, 0.0123778358, 0.00725206733, 0.0221251976, -0.00115905202, 0.00938202, 0.00801563449, 0.0210145544, 0.00354931154, -0.0327347703, 0.0223151762, 0.0124582108, 0.00124673441, 0.000623367203, 0.00718630524, -0.018617902, -0.00153992255, 0.000456450944, -0.0215552617, -0.0284091048, 0.0326763168, -0.0281168297, -0.00598797901, -0.0169080943, 0.017390348, -0.00765029155, 0.0387848578, -0.000622453867, 0.0255155861, 0.00155727635, -0.0140218809, 0.00751876784, -0.0115886936, 0.00489194831, -0.00997387525, -0.0293736123, 0.00109785702, 0.00307436497, 0.00625102594, 0.0018678183, -0.0118225133, -0.00636062911, 0.0232650694, -0.00560071459, -0.00654330105, 0.00786219072, 0.00571762491, -0.00742012495, 0.00475677149, 0.00165135227, -0.0251356289, 0.015256742, -0.00443526916, -0.0319456309, 0.000124330938, -0.00419048918, -0.00293370779, -0.0198600683, 0.00145863369, 0.0156805404, 0.00412472757, 0.0201085024, 0.0104926629, 0.0038214922, 0.00449372409, 0.00302139018, -0.0155490162, -0.0107118692, 0.00149699475, 0.0127650993, 0.00987888593, -0.00215187273, -0.000332005846, -0.0147744883, -0.0045887134, 0.0285990834, -0.0102734575, 0.0123924492, -0.00805216935, 0.00188699877, -0.00956469122, 0.0134446379, 0.0272253919, -0.00565916952, 0.00975467, 0.0113548739, -0.00266518025, 0.024565693, -0.00718630524, -0.00551668601, -0.00519518368, -0.00398224359, -0.0149936946, 0.00130884279, -0.0119467303, -0.00229801028, -8.34010571e-05, 0.00941855367, 0.0199623648, 0.00428913208, 0.00580530707, -0.00804486219, 0.0184717644, 0.004347587, 0.0121220946, 0.0119905714, -0.00406627217, 0.018778652, 0.015870519, 0.00705478154, 0.00319675496, 0.0215260349, 0.00781835, 0.00806678273, -0.00211533858, 0.00510750106, 0.0105584254, 0.00141844584, 0.0228997264, 0.0152421277, -0.00615969, -0.00529017299, -0.00486637466, 0.0077672014, 0.00940394, 0.0265385471, 0.0133496486, 3.29950781e-05, 0.00547284447, -0.0314487629, 0.00076037104, -0.00716803828, 0.0139707327, 0.0104195951, 0.0108653139, -0.00553129939, -0.00504539255, -0.0148329437, -0.00411011372, 0.00478234561, 0.000351186376, 0.0326178633, -0.00822022744, 0.00259028492, -0.0278245565, 0.0040151244, -0.0133496486, -0.00484080054, -0.00126134814, -0.00496501708, -0.00790603179, 0.00841020606, 5.24610332e-05, 0.0539246909, 0.00720091909, -0.0125239724, 0.0198600683, -0.00378130446, 0.0321794488, -0.0129404645, -0.0073032151, -0.00385071966, 0.0169665497, -0.00928703, 0.0121367089, 0.0105291978, 0.0187640395, -0.00630582776, 0.0142483935, -0.00321136881, 0.024112666, 0.00556052709, 0.00392013509, -0.0159728155, -0.00529382611, 0.0260562934, 3.90460809e-05, -0.0183694679, -0.00921396166, 0.0116763758, -0.00521345064]
24 Nov, 2021
jQWidgets jqxScrollBar vertical Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The vertical property is used for setting or getting the orientation for the specified jqxScrollBar. Syntax: For setting the vertical property. $('#jqxScrollBar').jqxScrollBar({ vertical: true }); For getting the vertical property. var vertical = $('#jqxScrollBar').jqxScrollBar('vertical'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar vertical property. In the below example, the value for the vertical property has been set to true. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar vertical Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin:28px;" id="button_for_vertical" value="Value of the vertical property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 20, height: 200, vertical: true }); $("#button_for_vertical").jqxButton({ width: 250 }); $("#button_for_vertical").jqxButton(). click(function () { var Value_of_vertical = $('#jqx_Scroll_Bar') .jqxScrollBar('vertical'); $("#log").html((Value_of_vertical)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollbar/jquery-scrollbar-api.htm?search= 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 vertical Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-vertical-property?ref=asr7
PHP
jQWidgets jqxScrollBar vertical Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollBar vertical Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0138135618, 0.0186662152, -0.0153936585, 0.0451416224, 0.0699456409, 0.0276411679, 0.0113626551, 0.0261242744, -0.0205201972, -0.00200847909, -0.000988438609, 0.00100687309, 0.0179499052, -0.0293266047, -0.0237365719, 0.0239051152, -0.0161521062, -0.016910553, -0.033146929, 0.0411246642, 0.0158431083, -0.00726844743, -0.0387931429, 0.0128022991, -0.0656758621, 0.00948760659, 0.0216157306, 0.0118261501, -0.00884152204, 0.0248601977, -0.0222618151, -0.00512302667, 0.0131885456, 0.0199302938, -0.0456472561, -0.0105550494, 0.0151689341, -0.0114399046, -0.0222899057, -0.00444182893, -0.0153515227, 0.0375009738, 0.00905922428, 0.0312648565, -0.00127812312, -0.00550927268, 0.0333716534, 0.00879938621, -0.0150284804, 0.0425291955, 0.0196634326, 0.050422661, 0.0142419431, 0.0345795527, 0.00448747631, -0.0197477043, 0.0261664111, 0.0400291309, -0.000259399298, 0.0105410041, 0.0237084813, -0.0335963778, -0.0445798114, -0.0336525589, -0.0149722993, 0.0224724952, -0.0147475749, 0.00427328516, -0.0474169627, 0.0250849221, -0.0183853097, 0.0323884822, 0.0446359925, 0.0150144352, -0.000415653369, 0.010533982, -0.00727547, -0.00465250853, 0.0136099048, 0.00849038921, -0.0204078332, -0.0121070566, -0.0632038936, 0.00764767081, 0.00756339915, 0.0299726892, 0.00738783274, -0.0250146948, 0.070676, 0.0314895846, -0.0325570256, -0.0113134962, 0.0100704869, -0.0106322989, 0.009354176, 0.0022946524, -0.0212084167, 0.010021328, -0.0163346939, -0.00196283194, 0.0549733415, 0.0351694524, -0.0138837881, -0.0356750861, -0.0165875107, 0.0232028514, 0.00863084197, 0.00823757332, 0.00833589118, -0.00662587443, 0.0140382862, -0.024874242, 0.0138978334, -0.00436458, -0.0431191, 0.0312367678, -0.0150706163, -0.0315738544, 0.00603597146, -0.0294389669, 0.006373059, 0.0221494529, -0.00760553498, 0.0108640464, -0.0128865708, 0.0199724287, -0.0213348251, 0.0215735938, 0.0425853767, -0.0103373472, -0.017837543, 0.0105690947, 0.00117980596, -0.0193403903, 0.0317423977, 0.0464057028, 0.0152532058, 0.00116400502, -0.0379223339, 0.00746508176, -0.0274023972, -0.0216157306, 0.00486669969, 0.0382594205, 0.0136871533, 0.0328941122, -4.71011626e-05, 0.0372481607, -0.00517218513, 0.0178094525, -0.0179218147, -0.0260821395, 0.0259276405, 0.0186240803, 0.0617993586, -0.01613806, -0.00612375466, 0.0401695855, -0.0221354067, -0.0109202275, 0.022823628, -0.00770385191, 0.024663562, 0.0368268, -0.0181746297, -0.0110817486, 0.0330907479, 0.00133781566, -0.0400010385, 0.031910941, -0.00337789673, -0.0186381247, -0.000971759844, 0.00443831785, -0.0421359278, -0.0231888052, 0.0138486745, -0.0341581926, -0.0032971364, -0.0591026619, -0.0261804555, -0.0337368324, -0.0245231092, 0.0367706195, -0.0183572192, 0.0100985775, 0.0137995165, -0.00660831807, -0.053091269, -0.00772492, -0.0317423977, 0.0100775091, 0.0356750861, 0.0165032391, -0.00839909445, -0.0478383228, 0.00257204729, 0.00582178077, -0.0224022679, -0.00986683, -0.00217526732, 0.000919967715, 0.0207730122, 0.0128865708, 0.0104497103, 0.0114399046, 0.00839909445, -0.0333997458, 0.0406752154, 0.000400730234, -0.0160537884, -0.0175847262, 0.039776314, -0.00875022728, -0.0115663121, 0.009663173, 0.0112854056, -0.0115592889, -0.0201269276, -0.0102952113, 0.019789841, -0.00209977361, -0.0228517186, 0.0284979325, -0.0970811769, -0.0151970247, 0.000615799043, -0.0213629156, -0.028315343, 0.0111449528, -0.0402257666, -0.00572697492, -0.0236382559, -0.0164891928, 0.0170369595, 0.0455068, -0.026208546, 0.0207449216, 0.00963508245, 0.0326693878, 0.00646084221, -0.012949775, -0.00133254868, 0.00155639579, 0.0058955187, 0.00481402967, -0.0129357297, -0.0269389022, 0.00101652928, -0.00843420811, -0.0156886093, 0.0112854056, 0.0258995499, -0.0367706195, 0.0380908772, -0.00529859262, -0.00183291279, 0.0130691603, -0.00272654556, -0.00806903, 0.00574804284, 0.0298884176, -0.011411814, 0.0211803261, 0.0381470583, 0.00559003279, 0.0329502933, -0.0217140485, -0.000246890209, -0.0337368324, 0.011615471, -0.0278939847, 0.0616869964, -0.0201269276, -0.00576208811, 0.0152953416, -0.0425291955, -0.0256045982, 0.0027037221, -0.0257871877, 0.00351835, -0.0175285451, 0.0267703589, 0.0656758621, 0.0196072515, -0.0047999844, 0.0277956668, -0.0260119122, -0.0191016197, 0.0188488048, 0.00306012179, -0.0267563146, 0.00503875455, 0.00134396052, 0.0330064781, -0.0160818789, 0.00629932107, -0.00983171631, -0.00945951603, 0.000721138844, -0.0344671868, -0.0205201972, -0.0308434982, -0.0163627844, -0.00474731438, 0.03370874, 0.00712097157, -0.000614482269, 0.0246776082, -0.0134764742, 0.0374728851, 0.00704723364, -0.0172757301, -0.0219106823, 0.00864488818, -0.0121983513, 0.0151548889, 0.0226269923, -0.0199583843, 0.0255062804, 0.00528103625, -0.000322603184, -0.0380627885, 0.0497203954, 0.0304221399, -0.00729653798, -0.00895388424, -0.0233713947, 0.00478593912, -0.0414617509, -0.0284277052, 0.00139048556, 0.0192701649, -0.0135045648, 0.0384560563, -0.0285681579, -0.0040029129, -0.03134913, -0.0420797467, 0.0136590628, 0.000276297564, 0.00680144085, -0.000576296588, -0.0205201972, 0.0326132067, -0.0642151535, -0.0177954063, -0.00431191, 0.0537092611, 0.0384841487, 0.00118858425, 0.0442146324, 0.0247478355, 0.000765469333, 0.0412089378, 0.00562163489, -0.0250849221, -0.0380908772, 0.00508791301, 0.00281959586, 0.0188207142, -0.00451556686, 0.00825161953, 0.00822352804, 0.0254220087, -0.0403100364, -0.017008869, -0.024775926, -0.00893983897, -0.010639322, -0.0203376077, -0.0430067368, 0.000627649773, 0.0192982554, -0.0462652482, 0.00570239546, -0.0230904873, -0.0368829817, -0.00090241112, 0.00719822105, -0.0399448574, 0.0181465391, -0.0149582541, 0.020197155, 0.00757744443, -0.000344329543, 0.0086800009, -0.0238348898, 0.00729653798, 0.0015379613, -0.0409842134, 0.059158843, 0.000728600426, -0.019326346, -0.00257204729, 0.00284417509, 0.0292704236, 0.0183572192, 0.00808307528, 0.0208572838, 0.0264613628, -0.028160844, 0.0136590628, -0.0269669928, 0.0197617505, 0.0137433354, -0.0211803261, -0.00227182871, -0.00766873872, -0.00322866533, -0.00345514598, -0.0521361865, -0.0046209069, 0.02518324, 0.0326693878, 0.0097193541, 0.047388874, 0.0186943058, -0.00147387967, -0.0350009091, 0.0296075121, -0.0400010385, -0.0153936585, 0.0312648565, -0.0417145677, 0.0119034, -0.0344671868, 0.00628878735, 0.0371638872, 0.00138346292, -0.0183712635, -0.00269669923, 0.0018592478, 0.00408016238, 0.0258293226, 0.0321356654, 0.0552823357, 0.00590956397, -0.00364475767, -0.014340261, -0.0118401954, 0.00116400502, 0.00600085827, 0.00248075277, -0.0126969591, 0.00788644142, -0.0203095172, -0.0205482878, 0.0219247267, -0.0013580058, -0.0104778009, -0.0374447927, -0.0137433354, -0.0100634638, -0.01259162, -0.0198741127, 0.000123335369, -0.00523890043, -4.23005222e-05, -0.00991598796, -0.0540463477, 0.0203797426, -0.0216297768, 0.00126232218, 0.00875022728, -0.0324446633, -0.0169386435, 0.0112222023, -0.0175425913, -0.00723333424, -0.020758966, -0.0217561834, 0.0284136608, 0.0717434362, 0.00791453198, -0.00558301, -0.00648893276, -0.00615535676, 4.79378468e-06, 0.00551278377, 0.0353660882, 0.00594467716, 0.0313772187, 0.0178515874, 0.000249962613, 0.00101477362, 0.0105129136, -0.0305625927, -0.0134273153, 0.00676983874, 0.0352256335, 0.0228798091, -0.0108078653, -0.0210539177, -0.0108500011, 0.0316019468, -0.0204921067, 0.0108008431, 0.0182869919, 0.0160959251, 0.0124862799, 0.044916898, -0.0384560563, 0.0120157618, 0.0243826564, 0.00511600403, -0.0410965756, -0.0147335296, 0.0171352774, -0.0289895181, 0.0145790307, -0.0125143705, -0.0373886116, 0.0216438212, -0.0260821395, -0.0425853767, -0.0436528213, -0.0113345645, 0.0280203912, -0.0131955678, 0.0237225275, -0.00472273538, 0.0170790963, 0.00820948277, 0.0574172251, 0.0330626592, -0.03227612, -0.0230483525, -0.0280063469, 0.0171774123, -0.0353660882, 0.0138135618, 0.0195932053, 0.022921944, -0.0246916525, 0.0196915232, -0.0175987724, -0.0197336599, -0.000320847525, 0.02611023, -0.021124145, 0.0290737897, -0.0318828523, -0.0309558604, 0.0301974136, 0.00974042155, -0.000588586205, 0.011355632, 0.0282029808, 0.0219668634, 0.0241438858, -0.0162363779, -0.000147146551, 0.00176970894, -0.0134413606, -0.0154779302, -0.0448888093, -0.00379223353, -0.00162047753, -0.0173880924, 0.0110957939, 0.007015632, -0.00601841509, 0.0120508755, -0.00674174819, -0.0254079644, 0.00745805912, 0.0224303585, -0.0260540489, -0.00896090735, -0.0003548635, -0.00952271931, -0.0102952113, 0.00360613316, -0.00288631092, 0.0251551494, 0.0451697148, -0.0191297103, 0.0148880277, 0.0239753425, 0.0080058258, -0.0332312025, 0.0233713947, 0.00401344709, -0.0143964421, 0.0153234322, -0.00890472624, -0.0220370907, -0.0339615569, 0.00551278377, -0.0121140787, 0.0338491946, 0.0208994206, -0.00938226655, 0.018090358, -0.00619749259, -0.0194527525, 0.0387088731, 0.00710692629, -0.0296917837, 0.0130480919, 0.031714309, 0.0287226569, 0.0442146324, -0.00886961259, 0.00370796164, -0.000655740383, -0.00354819628, 0.0332312025, 0.000118507298, -0.0510968342, 0.0218264107, 0.0256045982, -9.05264096e-05, -0.023539938, -0.0237787087, -0.00219282391, 0.0256888699, -0.0145790307, -0.0198179316, -0.016756054, -0.011460972, 0.0123739177, -0.012851458, 0.00582529185, 0.00350957154, -0.0200286116, -0.0115241762, 0.00314088236, -0.0441865437, -0.013104273, 0.00656969333, -0.0188347585, 0.000203766715, 0.0231466684, 0.0198038854, -0.00417145668, 0.0196915232, -0.038287513, 0.00699456409, 0.0286945663, 0.0295232404, -0.0144526232, 0.0445798114, -0.0150003899, -0.0106674125, -0.00755637605, -0.000136283386, 0.014803756, 0.0164611023, -0.0219528172, -0.00704372255, 0.00521783251, 0.000884854468, 0.00455770269, 0.0137644028, -0.0166156013, -0.00845527649, -0.009045179, 0.0183291286, -0.00923479069, 0.00379223353, 0.0410965756, 0.0143121695, -0.00775301084, -0.0109342728, 0.0341020115, 0.0493271239, 0.00283715245, 0.0165313296, 0.00951569714, -0.0176830441, 0.0311244056, -0.000311191368, -0.00398184499, -0.00880640838, -0.00905922428, -0.00275814766, 0.0170369595, 0.0337368324, 0.0209556017, 0.0309558604, 0.0260400027, 0.0223601311, -0.00218580128, -0.0218545012, -0.000911189418, 0.0033585846, 0.0134554058, 0.0174302291, -0.0113205193, 0.0226410385, 0.0271214917, -0.00216473336, 0.00766873872, -0.0177111346, 0.0390178673, -0.00460686116, -0.0202252455, -0.0215174127, 0.00858168397, -0.0316581279, -0.00533019472, -0.000417189585, -0.00521081, 0.00186451478, 0.0102600986, 0.0378380641, -0.00504928874, -0.0179499052, 0.0379504263, 0.00212962, 0.0142208757, 0.0485967696, 0.0352537259, -0.0147616202, -0.0118261501, -0.0230062157, -0.0327255689, -0.0162082873, 0.0355908126, 0.0288490653, -0.0159835611, -0.0268405862, -0.0129848886, -0.00954378769, 0.0275147613, -0.0121562146, 0.0205763783, 0.00236839033, 0.00156078499, 0.0250849221, 0.00650648959, -0.00750019494, -0.00400993554, 0.0282451157, -0.0128865708, -0.001085878, -0.00834993646, -0.00891877152, -0.0354503617, -0.0397482254, 0.00911540538, 0.0210258272, 0.00703318836, -0.0298041459, 0.0128022991, -0.00765469344, 0.0118401954, -0.021840455, 0.0143753737, -0.0201831087, 0.00895388424, -0.0542710759, 0.0140944673, 0.0105620725, -0.00117014977, 0.0179499052, 0.0431471877, 0.00319355214, -0.00496852817, 0.00745805912, -0.0305625927, -0.00664694235, 0.0130270245, -0.0126829138, -0.0261242744, -0.0132236583, 0.0173880924, -0.0512653776, -0.0102390302, -0.00707532465, 0.0600015596, -0.00234205532, -0.0144526232, 0.0146071212, -0.0209556017, -0.000675491581, 0.00508440193, 0.0213910062, -0.00808307528, -0.00463144062, 0.020758966, -0.0150846615, 0.0020664162, -0.0301412325, 0.0171352774, 0.00750019494, 0.0110887717, 0.0132517489, 0.00616589049, 0.00896792952, 0.00338491937, 0.010842979, 0.0167420078, -0.00595521089, -0.0187785774, 0.0273743067, 0.0031373708, -0.0349166393, 0.012128124, -0.0110045, 0.0223741774, 0.0208713301, 0.0220230445, -0.00403100392, -0.0363492593, 0.0184836276, -0.0146913929, -0.00990896579, -0.0256607793, -0.00249479804, -0.0245933365, -0.0154638849, -0.037781883, -0.0122264419, 0.0141576715, -0.0189752132, 0.0324165747, 0.00320935319, -0.0336806513, 0.0184976719, 0.0168684162, -0.00360262184, -0.0258012321, 0.0239753425, -0.017219549, 0.0105550494, 0.0375290662, -0.00157307461, -0.0065275575, 0.00383085804, -0.0430348255, 0.0089889979, -0.0154919755, -0.00622558314, 0.0186100341, 0.0147194834, -0.00738081, 0.022823628, -0.00261769444, -0.00849741232, -0.0204640161, 0.00621504942, 0.00762660289, 0.027079355, 0.00146861258, 0.0155060217, 0.0181324948, -0.0046209069, 0.0230343062, 0.00173547352, 0.0201269276, 0.0495237596, -0.0207027849, 0.0316862166, -0.0145649854, 0.0156886093, 0.0206325594, -0.010126668, -0.0312086772, 0.00407313975, 0.0120578976, -0.0129146613, 0.018708352, -0.0253939182, -0.0206044689, -0.0410684831, -0.0447202623, -0.0147335296, -0.0141717168, 0.0281187091, 0.0180341769, -0.00594116561, 0.0162082873, -0.0111098392, -0.0183712635, 0.0188347585, -0.00458228216, -0.0175004546, 0.0502260253, 0.00999323744, -0.0260119122, -0.0192280281, -0.0221494529, 0.0374728851, -0.0346357338, -0.0261523649, 0.0209134649, 0.00759851234, -0.0160959251, 0.00390108465, 0.00357277552, -0.038287513, -0.0136309722, 0.0410684831, 0.00681899767, -0.0310120434, -0.000569712836, 0.0200145654, 0.013722267, -0.0183572192, 0.0115452437, -0.0370234363, 0.00830780063, -0.00917158648, -0.00129831326, 0.0227674451, 0.0113696773, 0.00449801, 0.0250849221, -0.0118753091, 0.0095789, -0.0113486098, 0.018961167, -0.00475433702, -0.022711264, 0.00908029266, -0.00322515401, -0.0070718131, -0.0173038207, -0.00900304317, 0.0305064116, 0.0300288703, 0.00948058348, -0.0142419431, -0.0239753425, 0.0180201307, -0.034017738, 0.0291861519, 0.00227534, 0.0169667341, 0.0308434982, -0.00389757333, -0.0364335328, -0.00627474161, 0.0198319759, -0.00440320419, -0.0119806491, 0.00806903, 0.0398044065, 0.01592738, -0.0134273153, -0.00667854445, 0.00634847954, -0.0170369595, -0.0545519814, 0.00208046148, -0.0053758421, 0.00801987108, 0.0178515874, -0.00378169958, 0.0105620725, 0.000918212056, 0.0257029161, -0.0192139819, -0.017219549, 0.0168965068, -0.0356469937, -0.00811116584, -0.00284944219, -0.0451978035, 0.0050528, 0.00974042155, -0.00166524691, -0.018090358, 0.00871511456, 0.00254044519, 0.0218685456, -0.00811818894, 0.0151267983, 0.0105410041, 0.0402819477, 0.0200145654, -0.0133360205, -0.00127812312, 0.00188733835, -0.0376976095, 0.0280906186, -0.00742996857, 0.0287928842, 0.00955783296, 0.0117840143, 0.00593063189, 0.00824459642, -0.00259662652, 0.00717715314, -0.0178094525, -0.0168122351, 0.0261664111, 0.0143964421, -0.0165172834, 0.00663640862, 0.00340598752, 0.0152812963, 0.026208546, 0.0385122374, -0.0172335934, -0.0113134962, -0.036742527, -0.0015599071, -0.01521107, 0.0233854391, 0.00331118167, 0.0327255689, 0.00696296198, -0.0153515227, 0.0137292892, 0.00231572031, 0.0110325906, -0.0451135337, -0.00269494369, -0.00044659694, 0.0299165081, 0.0296917837, -0.00274585793, -0.00828673225, 0.000796632376, 0.0320233032, 0.00188558269, 0.0299165081, -0.00715608476, 0.03134913, -0.0236242097, 0.00231220899, 0.00949462876, -0.0187645331, -0.0113415867, 0.00136590633, -0.000720261, 0.00696647307, 0.00819543749, -0.0193544365, 0.010892137, 0.00298638386, -0.010484823, -0.00886259, -0.0344671868, 0.00814627949, -0.026573725, 0.0495237596, -0.00127548957, 0.0247478355, 0.00974744465, 0.00882747676, 0.00241403747, -0.000142428209, 0.00398886763, -0.000732989574, -0.0170369595, 0.0265175439, 0.00803391635, 0.00633443426, -0.0121702608, 0.0215455033, -0.0194387082, -0.0200286116, -0.0260680933, 0.0152812963, 0.0332592912, 0.00179428828, -0.00648191, 0.00404504919, 0.0225005858, 0.0020664162, 0.018708352, -0.00754233077, 0.00287577696, 0.0113696773, 0.0186100341, -0.00972637627, 0.0242281575, 0.00719119841, 0.00687166769, 0.00430839835, -0.0121983513, -0.00144227769, 0.0103233019, 0.0158852451, -0.0174161829, 0.00393268652, -0.0104286419, -0.00628878735, 0.000629405433, -0.0183853097, -0.00316897291, 0.00969126355, -0.00483509758, 0.000872125907, -0.0238489341, -0.000670663489, 0.00676632766, 0.0108780917, -0.0278097112, -0.0298884176, -0.0398324952, -2.87764251e-05, 0.0826987773, 0.0050528, 0.000812872255, -0.000843596354, -0.0240877047, -0.035338, 0.0168262795, 0.0245371554, 0.0242983848, -0.0138205839, 0.0162363779, 0.0238068, -0.00279852794, 0.000865981099, -0.020758966, -0.0257029161, 0.0152672511, -0.00452961214, 0.0302816872, -0.0253658276, 0.0174021386, 0.0172757301, -0.00311279157, -0.00331644854, 0.0317985788, -0.00273707951, -0.0269950833, -0.0213348251, -0.0356469937, 0.0217280928, 0.00805498473, -0.000948936213, 0.0166998729, -0.00327431271, -0.000327870192, 0.0168262795, -0.0345514603, 0.000357716461, -0.0339896493, 0.0110817486, -0.0251130126, 0.00151074852, 0.00619749259, -0.012282623, -0.00360262184, 0.00035398567, -0.0220651813, -0.00127724535, 0.00260891626, 0.0231747609, -0.0296356026, -0.00517920777, -0.0286383852, -0.00524943415, -0.0072263116, 0.00599032454, -0.000418286858, -0.019789841, 0.0142068304, -0.0282310713, -0.0219106823, 0.00527050206, -0.00480700703, -0.015520067, -0.00306714443, 0.0129357297, -0.00440320419, 0.0150987068, -0.0210398734, 0.0289052464, 0.0332031101, 0.0224865396, -0.0147194834, -0.000668907829, -0.0264192261, -0.0190735292, 0.0197757948, 0.00330415904, 0.0181605853, -0.0322480313, -0.0348323658, -0.0214190967, 0.0113626551, 0.0184134, -0.0167420078, -0.00701212045, -0.0128374128, -0.0193684809, 0.00563919172, 0.0106955031, -0.0132025909, 0.0117629459, -0.0310682245, -0.0109623633, -0.0119455354, -0.0105058914, 0.0340458304, 0.00383788068, -0.00727547, -0.00785835087, 0.0125003252, 0.00661182916, -0.0158009734, 0.0206044689, 0.019171847, -0.00475433702, 0.0062536737, 0.0196774788, -0.0242000669, 0.022009, 0.0145790307, -0.00395726599, 0.00770385191, 0.012282623, -0.00767576136, 0.00475082593, -0.00688220141, 0.004343512, -0.00618695887, 0.00805498473, -0.0274866708, 0.0124441441, -0.00604299409, 0.0133711342, -0.017219549, -0.00776003348, 0.00451556686, 0.00139136345, 0.0078021693, -0.0144666685, -0.00366582558, -0.00475433702, -0.0240455698, 0.0083710039, -0.0208713301, 0.00998621434, -0.0233854391, 0.0232449863, 0.00404153764, 0.0177813619, -0.00793559942, -0.00465250853, 0.013827607, 0.0118893543, 0.0208713301, 0.0303659588, 0.0108640464, 0.00274234661, -0.000547767035, 0.00383436936, -0.00745103648, -0.00744401384, 0.0294670593, -0.0038905507, 0.0101617808, -0.0195089336, -0.0145228496, 0.0233713947, -0.0195651148, -0.00123159809, 0.009354176, 0.0283855703, 0.00533019472, 0.0127320727, -0.0142208757, 0.00955081, -0.000182479285, -0.0261804555, -0.000819456, 0.00322164269, 0.00649244431, -0.00950867403, 0.025028741, -0.0191578, 0.0217000023, 0.012437121, 0.0255062804, -0.0057094181, 0.0252113305, 0.0102179628, 0.000285514805, 0.0103162797, -0.009354176, 0.00972637627, 0.0121211018, -0.00996514689, -0.00584284868, -0.00993003324, 0.0112994509, -0.00073342846, -0.0251972843, 0.0191999376, 0.0218545012, -0.0174021386, 0.0228517186, 0.00752126286, -0.00350254891, -0.00790750887, -0.000595608901, 0.0140663767, -0.00520027569, 0.0112502929, 0.0307030454, 0.0235258918, -0.0104426872, 0.00785835087, -0.0319390334, 0.00520027569, -0.000448133156, -0.00890472624, 0.0100775091, -0.0112081571, -0.00531614944, -0.0059762788, 0.0170931406, 0.00771087455, 0.0107657295, -0.00761958025, 0.00100336177, 0.00912242848, -0.00188733835, -0.00928395, -0.0294389669, 0.0197055694, -0.00747912703, -0.0104426872, -0.0208011027, 0.00250182068, -0.00860977452, 0.0148880277, 0.0284557957, 0.0398886763, 0.0274866708, 0.0306187738, 0.019424662, 0.0120087396, 0.00663289707, -0.014234921, -0.0172616839, 0.0228938535, -0.00321988715, 0.0242983848, -0.00330591458, 0.0369110741, 0.0135537237, -8.69053474e-05, 0.0290457, -0.0104145966, -0.0159976073, 0.0229640808, 0.00732462853, 0.0122896452, 0.00937524345, -0.0345795527, 0.000869931304, 0.00198214431, -0.0266439505, 0.00168982625, -0.0158431083, -0.0435685478, 0.01351861, -0.00120701874, -0.0127882538, 0.008687024, -0.0345233679, -0.0135045648, -0.00965615, 0.000564884802, -0.0126478011, -0.0108780917, -0.000620627077, 0.0224022679, 0.00761958025, -0.000190050589, 0.033146929, -0.006706635, 0.0326974802, 0.00765469344, -0.00731760589, -0.00827268697, -0.0174583197, 0.0240315236, -0.00486318814, 0.000972637674, -0.00921372231, 0.0295232404, -0.000147695202, 0.0355065428, 0.0079004867, 0.0162504222, 0.0200847927, 0.0138837881, -0.0232028514, -0.00152216037, -0.00853954814, 0.0186802614, 0.0102811661, -0.0252956022, 0.00704723364, -0.0166436918, 0.019326346, -0.00495097134, -0.012437121, -0.00839207228, 0.00284944219, -0.0197196137, -0.00863786507, -0.039214503, 0.0218825918, -0.0019294743, -0.0146071212, -0.0191858914, -0.00618695887, 0.0101407133, 0.00119297346, -0.000882659864, 0.00901708845, -0.0132447267, -0.0250006504, 0.00149670325, -0.015829064, 0.00500013, -0.0435966402, 0.00692433724, 0.0242983848, 0.00510195829, 0.0144666685, -0.0320513956, 0.00908029266, -0.018961167, -0.0041012303, -0.00931906234, -0.017837543, 0.0112573151, 0.00191542902, 0.0167700984, 0.0109553412, 0.00433297781, -0.00746508176, -0.00362368976, -0.0129567981, 0.025745051, -0.0160256978, 0.0191016197, -0.0216016863, 0.00486318814, -0.00740187801, -0.00886961259, -0.0333997458, 0.00209099543, 0.00404856028, -0.000556984276, 0.0375852473, -0.00276165898, 0.0126267327, 0.0327255689, -0.00544958, -0.00505982246, 0.00127285614, -0.00938928872, 0.00295127067, 0.012128124, 0.0126056653, 0.00989492051, 0.0131253414, -0.0359279, -0.00154586183, -0.00756339915, -0.00842016283, 0.0166717824, -0.00145368953, 0.00998621434, 0.00347972522, 0.0117348554, 0.00356575288, 0.00983873941, 0.0373043418, 0.0231607147, 0.00538286474, 0.00758446706, -0.0457596183, -0.0102671208, -0.0103865061, -0.0242000669, 0.0282170251, 0.0176830441, 0.0119455354, -0.0231747609, 0.0060078809, 0.0308715887, 0.0416022055, 0.030478321, 0.00781621411, 0.00866595563, -0.0178937241, 0.0215033684, -0.0252394211, 0.0235961191, -0.028062528, -0.00270547764, -0.0014545673, -0.00929097179, -0.00386597123, 0.0146071212, 0.023792753, 0.01592738, 0.00459281588, -0.00160116528, 0.00457174797, -0.00208572834, -0.000755374262, 0.0173178669, -0.0257731415, -0.0193123, 0.0148880277, 0.000521432084, -0.00730356062, 0.0511249267, 0.00836398173, -0.00903113373, -0.0079496447, 0.00312859262, -0.0282029808, -0.0146633023, -0.00709990365, -0.0149722993, 0.025646735, 0.0121421693, -0.0115663121, 0.0234837569, 0.00323042111, -0.00604650564, 0.0139961503, -0.000522748858, 0.00228587398, -0.0055303406, -0.0171071868, 0.0100283511, 0.00775301084, 0.0190454386, -0.0288771559, 0.0148318466, 0.0176970903, -0.000510459184, 0.00281784, -0.0144104874, 0.0126337558, 0.004677088, 0.00982469413, -0.0113907456, -0.00908731483, -0.0157588366, -0.0154077038, 0.013160455, 0.00750721758, 0.0059762788, -0.0103443703, -0.000722016674, 0.0226831734, 0.00465953117, 0.022458449, -0.00530210417, -0.00440671574, 0.0123809399, 0.0117840143, 0.0069173146, -0.00606757356, 0.0150706163, -0.0169807784, -0.000680319674, 0.0243686121, -0.0244388375, 0.00211908598, -0.00807605311, 0.0108500011, 0.00217702286, -0.0132868625, 0.00478242757, -0.020295471, -0.0152953416, -0.00520378724, 0.0184274446, -0.00346919126, 0.00799178053, 0.022823628, 0.0161801968, -0.00729653798, 0.00780919194, 0.0132938847, -0.00474731438, 0.00645381957, 0.00562514644, -0.00592712034, 0.00760553498, 0.0185257625, 0.00167578098, -0.013925924, 0.0312367678, -0.0201128833, -0.00229289662, -0.00212084176, 0.0108148884, -0.00735974172, -0.0217842739, -0.00175215234, 0.00865893345, 0.000819017063, 0.000720261, 0.00963508245, 0.0164891928, 0.0134764742, -0.0146352118, -0.0123528494, 0.000833501283, 0.025492236, 0.000502558716, -0.0238629803, -0.0248040166, 0.0133289983, 0.0171212312, 0.0215174127, 0.015829064, 0.00992301106, -0.0307030454, 0.0118331732, 0.00530912681, 0.00662938599, 0.0061378, 0.0309839509, -0.00972637627, 0.00288806669, 0.0235680286, -0.00352537259, -0.00899602, -0.0030372981, -0.028315343, 0.0148178013, -0.00456823688, 0.00902411062, 0.0152391605, -0.023694437, 0.00442778366, -0.0172055028, -0.000540744397, -0.0110957939, 0.00174776313, -0.00571644073, -0.0205482878, -0.0178234968, -0.0243545659, 0.00678037293, 0.0159133356, -0.0213207789, 0.0177392252, 0.00598330144, 0.0104005514, -0.0221634973, 0.0126829138, -0.0181184486, 0.0118893543, 0.00228236266, 0.0156886093, -0.00586040504, 0.00453663478, 0.0185819436, 0.0155341122, 0.00328660221, 0.0111098392, -0.0115101309, -0.0298041459, 0.0182027202, 0.0100564416, 0.0244247932, 0.0160256978, 0.0218123645, 0.0245231092, -0.000789170794, 0.00577262184, 0.000271030585, -0.00550927268, 0.0178937241, -0.00426626252, -0.00227007316, 0.0151689341, -0.0182308108, 0.0171774123, -0.0157588366, 0.0146913929, -0.00658725, -0.00857466087, -0.0134834964, -0.0143823968, -0.010175826, -0.00349201495, -0.0181886759, -0.00564621435, -0.00469815591, 0.0192982554, -0.00801284891, 0.00937524345, 0.000995461247, -0.00036122778, 0.00590254134, 0.00158624211, -0.0121702608, -0.0188768953, -0.00862382, -0.00791453198, -0.0106042083, 0.0100072827, -0.00974042155, -0.0245792903, 0.00749317231, 0.0146352118, 0.0163487401, 0.00438564783, 0.0162223317, 0.0102952113, -0.0342424624, 0.0158009734, 0.00566025963, 0.0201831087, -0.0130621372, 0.00820246059, 0.0280203912, 0.00791453198, -0.000648278801, -0.0145509401, -0.0206746943, 0.0106322989, -0.020042656, 0.00557949906, -0.00946653821, -0.0063168779, -0.00874320511, 0.0234556664, -0.0125003252, 0.00311630289, -0.00436458, -0.0191578, -0.00987385213, 0.00538988737, -0.034748096, -0.00532668363, 0.00891877152, 0.0132236583, -0.00426275143, -0.00974744465, -0.00219633523, 0.00671365764, -0.0130621372, 0.0176549535, -0.0126548233, -0.0115171531, 0.0250849221, -0.00773194246, 0.0158431083, 0.0167279635, -0.00755637605, -0.0186802614, -0.0118823312, -0.0102881892, 0.0107587064, 0.028160844, -0.00993705634, -0.0169386435, 0.0107446611, 0.00919967704, -0.0151127521, -0.0385122374, 0.0155902933, 0.00543904584, -0.0164470561, 0.00540393265, -0.00142647675, 0.0106674125, 0.0277675763, -0.000290123426, -0.0139750829, 0.000678564, -0.0129146613, 0.00318828505, -0.00723333424, -0.0159133356, 0.00560758961, -0.0345514603, -0.00687166769, -0.00776003348, 0.00224373816, -0.00921372231, 0.00411878666, 0.0140944673, -0.00262471708, -0.0129848886, 0.0283293892, 0.00570590701, -0.00177673157, 0.00797773525, 0.0108851148, 0.00280379481, 0.0331750214, -0.00615184521, -0.0322199389, -0.0131955678, 0.0109342728, 0.000751424057, 0.0138627198, 0.000910311588, -0.00360613316, -0.0217140485, -0.00591307506, 0.0129357297, -0.0132938847, 0.0253096465, -0.0296075121, 0.00399940182, -0.00219984655, 0.00552682905, -0.0139891282, 0.0106463442, -0.0114188362, -0.0077389651, -0.009712331, -0.00801284891, -0.029551331, -0.00996514689, 0.028680522, -0.00863084197, 0.0183853097, -0.00937524345, -0.0186521709, 0.0065275575, -0.0079496447, -0.00924883597, -1.46488183e-05, 0.0122194188, -0.0128725255, 0.00231396477, -0.00382734672, -0.0375290662, 0.0184274446, 0.019424662, -0.00936822128, -0.00529508153, 0.00153269432, 0.00650648959, 0.0187926237, 0.00608161883, 0.00563216908, 0.0212926883, -0.00792155415, 0.0130691603, 0.0075282855, -0.0321075767, 0.0150425257, -0.00500364136, 0.0195651148, 0.0157869272, -0.00847634394, 6.26552428e-05, 0.0279923, -0.000568835, -0.0049439487, -0.0187645331, 1.3784703e-06, 0.00867297873, -0.00529859262, -0.000563568, -0.0161240157, 0.0144526232, 0.00273181265, -0.0200988371, -0.000797071261, -0.00142647675, 0.0247618798, 0.009663173, -0.0185819436, 0.00638359319, -0.015520067, -0.0039151297, 0.000955081, 0.00308294524, -0.00311630289, 0.0334840156, 0.01058314, -0.0200286116, 0.0178656336, -0.000231528145, 0.0188488048, -0.00355521892, -0.0118401954, 0.0128093222, 0.00322515401, -0.0250849221, 0.0195229799, 0.00435404573, 0.00565674808, 0.000109180335, -0.00451205531, -0.00448045367, -0.0124511663, -0.026981039, -0.0189190321, -0.00369391637, -0.012900616, 0.00586391659, 0.008736182, 0.0160537884, 0.0113767, 0.00177146459, 0.0169807784, -0.0113626551, 0.00385543727, -0.0144104874, 0.0162785128, -0.0221354067, 0.0131253414, -0.0101898713, -0.0231045336, -0.014080422, 0.0277254395, -0.0341862813, -0.00978958048, 0.00902411062, 0.00403100392, -0.00305134337, 0.0107025253, -0.0131393867, -0.0210960545, -0.0160678327, -0.0101196449, -0.026573725, -0.0112081571, 0.000870809134, -0.00387650542, 0.00221038051, -0.0130972508, 0.0183853097, -0.00402749237, 0.0154357944, 0.0137924934, 0.0165875107, 0.00866595563, -0.00153181655, -0.0175004546, -0.0178515874, 0.00243510539, -0.0220370907, 0.00187153742, 0.000160533498, 0.0220932718, -0.00052933261, 0.022205634, 0.000170957748, 0.00621856051, 0.0240455698, 0.00549873849, -0.0022893853, -0.0321637578, 0.00521432096, 0.0143613284, 0.027290035, 0.0234416202, -0.000229991929, -0.00762660289, 0.0203235615, 0.000750985113, -0.0214050505, -0.0105199367, -0.00983873941, 0.00454716897, -0.0192420743, -0.00140101963, -0.00950867403, 0.0275007151, -0.022205634, -0.0307592265, -0.00193825271, -0.00211381912, 0.0151127521, -0.00517920777, -0.00313561526, -0.0213348251, 0.0199864749, 0.0148739824, -0.00879236311, 0.00140101963, 0.0184976719, 0.0102811661, -0.00702616572, 0.00950165186, -0.0138697429, -0.00756339915, -0.00258082547, 0.00956485514, 0.0176409073, -0.0130972508, 0.00336736278, -0.000834379171, 0.0110536581, 0.0153796133, -0.00186451478, -0.00674525974, -0.0206746943, 0.00944547076, -0.00599383563, 0.013258772, -0.0101196449, 0.00865893345, 0.0153936585, -0.0234978013, 0.0307592265, 0.018455537, -0.0188488048, 0.00063993939, -0.0134764742, 0.00435755728, -0.016910553, 0.00651351223, 0.0106674125, -0.000314483244, 0.0180763137, -0.0146773476, -0.0167279635, -0.0205342416, 0.0187364426, -0.0203516521, 0.000668468943, 0.0294389669, 0.00554789696, 0.022009, 0.00429084199, 0.0150003899, -0.00364475767, 0.00961401407, 0.00164769031, -0.0150144352, -0.0114188362, -0.00140628661, -0.0141225578, -0.00360262184, -0.00305485469, -0.0153515227, -0.0153515227, -0.00891174842, 0.00459983852, -0.000867736759, 0.00245968485, 0.00426977407, -0.00012256726, -0.00212610862, 0.000129589927, -0.00066715217, 0.0134062478, 0.00396077707, 3.07241135e-05, 0.0106112314, -0.00104900904, 0.000396779971, 0.0145088043, 0.00161082135, 0.034944728, -0.0116014257, 0.00564972544, 0.0159133356, -0.00764767081, -0.00354819628, -0.0101056, -0.0355346315, 0.00345690176, -0.0149301635, 0.00827971, 0.0106744347, -0.0120157618, -0.00768278399, -0.00896090735, 0.00152216037, 0.0141225578, 0.017935859, -0.0275568962, -0.00111923553, -0.00490532396, 0.00924883597, 0.00384490332, 0.0141155357, -0.0132025909, 0.0100002596, -0.0293266047, 0.0231607147, 0.00894686207, 0.0061307773, -0.0118050827, 0.000906800269, -0.00990896579, -0.00988789741, -0.0183853097, 0.0253517833, -0.00849038921, 0.0040029129, 0.0126197105, 0.0107376389, 0.0209275112, 0.0184836276, 0.0065275575, 0.0144807138, -0.00342354411, -0.0234978013, -0.0112292245, 0.00534072891, -0.0079496447, -0.025028741, -0.00672419183, 0.0133009078, -0.00292317988, 0.00601841509, -0.00231045345, 0.000851496879, 0.0189471226, 0.0487934053, 0.0112502929, -0.00395726599, 7.68651516e-05, 0.0146492571, 0.0163487401, 0.00606406201, 0.0100002596, 0.0122685777, -0.0212926883, -0.00703318836, 0.0115171531, 0.00439618155, -0.0186100341, 0.0131534319, -0.00476487121, -0.0061307773, -0.00329011376, 0.00988789741, 0.00500715291, 0.0147194834, 0.00670312392, -0.0207730122, -0.00771087455, -0.0271355379, 0.013722267, -0.0166296456, 0.00986683, -0.00312859262, -0.0164891928, 0.0136590628, -0.0203656983, -3.78016339e-05, 0.00461739535, 0.00912242848, -0.018343173, -0.000821650552, -0.00671365764, -0.0108219106, -0.00266685314, 0.0315457657, -0.0119034, -0.012331781, 0.00640466111, -0.0167139173, 0.00974744465, 0.00499661872, -0.00903815683, -0.0115873804, -0.0178515874, -0.0175566357, 0.00839909445, -0.00687166769, 0.0169245973, -0.00733165117, 0.0243124291, -0.00074703485, 0.0256607793, -0.00377116539, 0.00438915892, 0.00476838229, 0.0126758916, 0.00989492051, 0.00215068785, -0.00404504919, -0.0142278979, -0.001920696, -0.00148002442, 0.00955783296, 0.0108991601, 0.0204499699, 0.00408718502, -0.0103233019, 0.00561110117, -0.00153708353, -0.000270811113, 0.011664629, 0.0132868625, 0.0123177357, 0.00101389573, 0.00298287254, 0.0111449528, 0.00327606825, 0.0180763137, 0.00658373861, 0.0160397422, 0.0309277698, -0.0243264753, -0.0147756655, 0.00406260556, 0.00525645679, 0.0102039166, -0.00221389183, 0.00359033211, -0.0159133356, 0.0129076391, 0.004701667, 0.0180482212, 0.0145790307, -0.00844123121, -0.0154357944, 0.00714906212, 0.0250849221, -0.00682602031, -0.0229359902, -0.0124160536, 0.0214893222, 0.00389757333, -0.0157588366, 0.00148090231, 0.0164891928, 0.0167700984, -0.0112994509, -0.00310928025, 0.000565323688, 0.009712331, -0.00193474127, -0.0167139173, -0.00156166276, 0.00974042155, 0.0120719429, -0.00521081, -0.0130410697, 0.00856061559, 0.00953676458, -0.00438213628, 0.00699807517, 0.0117348554, 0.0013667841, 0.0154217491, -0.00865191, -0.0160256978, -0.00107622182, -0.00421710405, 0.0231185779, -0.0211522356, 0.0014238432, -0.00946653821, -0.00654862542, 0.020197155, 0.009354176, 2.24807245e-05, -0.0047332691, -0.0144807138, -0.00266509736, -0.00296531594, -0.00724035688, -0.00652053487, 0.010224985, -0.0150003899, -0.0202673804, -1.70491403e-05, -0.0104778009, 0.0123528494, 0.0160818789, 0.0136871533, -0.0117137879, -0.0212505534, 0.000867736759, -0.0180763137, -0.00776003348, -0.0017012381, 0.013567769, 0.00353415101, 0.00896090735, 0.00139136345, -0.00915754121, 0.00734569645, 0.00145105598, 0.000181162541, -0.0131323636, -0.0149442088, -0.00629581, 0.00823757332, -0.011769969, 0.0044664084, -0.00885556731, -0.00136239501, -0.00374307483, -0.0214893222, 0.00901708845, -0.00797773525, -0.0180341769, 0.000752301887, -0.0136731081, 0.000460422802, 0.00947356131, 2.84472371e-05, -0.004034515, -0.0212084167, 0.00731760589, 0.00634496845, -0.01259162, -0.00599383563, -0.00416443404, 0.0261804555, 0.00163188938, -0.0140242409, 0.00821650587, -0.0300288703, 0.00538988737, 0.0117278332, -0.0243405215, 0.00747912703, -0.00641870638, 0.00249128672, -0.01058314, -0.00069348712, -0.00432244409, -0.0130621372, -0.0027212787, 0.0332312025, -0.0285400674, -0.00908731483, -0.0146352118, -0.00420305878, 0.0023824356, 0.0258012321, 0.00239121378, -0.00647137593, 0.00392566388, -0.0317704901, -0.00680144085, -0.0108991601, -0.00478242757, 0.00708585838, 0.0273040812, -0.00341652147, 0.00379223353, -0.0104145966, -0.00886961259, -0.000560495595, 0.0017451297, 0.00541797793, -0.00103145244, 0.0158711988, 0.0126758916, 0.00482456386, -0.0236242097, 0.0209977366, -0.0146913929, -0.0205342416, 0.0147335296, 0.0217561834, 0.0134062478, -0.0173880924, 0.00289333356, -0.00809712056, 0.0208291933, -0.00895388424, 0.00485265441, 0.00287928828, 0.000649595517, -0.0191297103, 0.00590254134, -0.00365529163, 0.0214752778, 0.00577262184, -0.00559354434, -0.00626420788, 0.0052213436, -0.039776314, -0.00436106836, 0.0128584802, -0.00130972511, -0.0239191614, 0.0170650501, -0.0100564416, -0.0299445987, -0.000285295333, 0.021840455, 0.010997477, 0.00162398885, 0.00121228572, 0.0158150177, -0.014803756, 0.00710341521, -0.0203516521, 0.0107095484, -0.0189752132, -0.0212645978, 0.0109834317, -0.0117348554, -0.000234600549, 0.0301412325, 0.0112081571, -0.00496150553, 0.00654160278, -0.0133711342, 0.0134062478, -0.0225005858, 0.00837802701, 0.0135537237, 0.0141787399, 0.00596223352, 0.0147335296, -0.0350009091, -0.02066065, 0.00968424, 0.0114328815, 0.00408016238, -0.0477821417, -0.00371498428, 0.0219106823, -0.00521783251, -0.00266334182, 0.0264894534, 0.00906624738, 0.00678037293, -0.00838504918, -0.0125775747, 0.019326346, -0.00482807495, -0.0179499052, 0.0173319113, -0.0137082217, 0.0013580058, 0.0212365072, 0.00174951879, -0.0100072827, 0.00557949906, -0.00131148077, -0.0135326553, -0.0296917837, 0.00882747676, -0.010639322, -0.0105129136, 0.0117840143, 0.00138609647, -0.011355632, 7.58227252e-05, 0.017472364, -0.00783025939, 0.00153093867, 0.00890472624, 0.0120017165, -0.016390875, 0.00345514598, 0.00461388426, -0.0207730122, -0.020197155, -0.00166612479, 0.00348323653, -0.01058314, -0.00960699096, 0.00404504919, 0.0108148884, -0.0233433042, 0.0116856974, -0.00288806669, 0.00890472624, 0.0181044042, -0.00503173191, 0.000702704361, 0.0118893543, 0.00517218513, 0.00997919217, 0.0245512, 0.00302500837, -0.00964210462, -0.00407313975, 0.0113767, -0.00327782403, -0.0106814578, 0.02230395, -0.00644328538, -0.00636954745, 0.00320057478, 0.0121772829, 0.0213067345, 0.00936822128, -0.0123809399, 0.0102460533, -0.0642713308, 0.014593076, 0.0145790307, 0.0157447923, -0.0199022032, 0.00567079335, 0.0369391628, -0.00290035643, 0.0391864106, 0.00477891648, 0.00408718502, 0.0210539177, 0.0175847262, 0.00249655358, -0.0216719117, 0.00876427256, 0.027599033, -0.00285646482, -0.0163206495, -0.00707883574, 0.00547415903, 0.00337614119, 0.00737378746, 0.00452610105, -0.00245441776, 0.0221213624, 0.00555843115, 0.0101968944, 0.00501768664, -0.00951569714, 0.00460335, 0.00385192595, 0.0097755352, -0.026981039, 0.0228938535, 0.0133360205, 0.0101828491, -0.0219528172, -0.0233011674, -0.00449449895, -0.0124230757, -0.000893632765, 0.00768980663, -0.0162223317, -0.0309558604, 0.00248426409, -0.00420305878, -0.0054320232, -0.00486669969, -0.00459983852, -0.0157307461, -0.00290562329, -0.00987385213, 0.00425924, 0.00736676482, 0.0128935939, -0.0189892575, 0.0102320081, 0.0504507497, -0.00188207137, 0.00369391637, -0.0275568962, -0.010484823, -0.00260013784, 0.0127671864, -0.00417847931, -0.00773194246, -0.0108570242, -0.020197155, 0.0055303406, -0.0211100988, -0.000858080573, -0.0128865708, -0.00820948277, -0.00471571274, -0.00321462, 0.00696296198, 0.00234907796, 0.000317336206, 0.00445236312, -0.00910838321, -0.00250357646, 0.0315457657, 0.0191156659, -0.00589903, -0.0177813619, -0.00750019494, 0.00251937727, 0.0300288703, 0.00738081, -0.00159677607, 0.00658022752, -0.02137696, -0.00238770247, 0.00931906234, -0.00383436936, -0.0107446611, -0.0122615546, 0.00466655381, 0.0083218459, 0.0106814578, 0.0131112961, 0.016390875, 0.00703318836, 0.0267703589, -0.0171352774, 0.00769682927, -0.00100423954, -0.000500364113, 0.00888365787, 0.0140593546, 0.0129638202, 0.00985278469, 0.00318301818, 0.0130621372, 0.00182940147, 0.00490181288, -0.00536530791, -0.0142419431, -0.000715871865, -6.10641728e-05, -0.0168122351, -0.0114469267, -0.0137644028, -0.00891174842, 0.00307943393, 0.000542061171, -0.0141998073, -0.00636603637, -0.00400993554, -0.0143613284, 0.0156886093, -0.0130059561, 0.0108078653, 0.0187785774, -0.00538637582, -0.00835695863, -0.00122808677, -0.00767576136, -0.00277921557, -0.00618344732, 0.00648542168, 0.0155341122, -0.0013185034, -0.0243405215, -0.0276552141, 0.0205763783, -0.022205634, 0.0221494529, -0.0108640464, -0.00936822128, -0.00925585907, -0.00157219684, -0.010175826, -0.00575857656, 0.0150144352, -0.00782323722, 0.0117840143, 0.00969126355, 0.00471571274, 0.028160844, 0.00489127869, 0.015674565, -0.0218123645, 0.0122194188, -0.00044659694, 0.00266509736, 0.0231466684, -0.0146913929, 0.00487021077, 0.00473678065, -0.0189330764, 1.84756173e-05, -0.0251972843, -0.0195370242, -0.0146633023, -0.0028266185, -0.0231747609, 0.0217000023, 0.0172335934, 0.0208151489, -0.0132236583, 0.00956485514, -0.00567079335, 0.0160116516, -0.0174161829, -0.00881343149, 0.00797773525, 0.0145228496, 0.0127742086, 0.0137503576, 0.0270091295, 0.00887663569, -3.82679791e-05, -0.00550927268, -0.00544606848, -0.014593076, -0.0321356654, 0.00214893231, 1.03008078e-05, 0.0231185779, -0.00541797793, 0.00897495262, -0.0161521062, 0.0108991601, -0.0227253102, 0.00466655381, 0.00823757332, -0.00694189407, 0.0112854056, 0.0416022055, -0.00955081, 0.0034762139, 0.00706479046, -0.00830780063, 0.00322339847, -0.0227814913, 0.00998621434, -0.0123668946, 0.00170913851, 0.0162785128, 0.0130480919, 0.0171493217, 0.0141506493, 0.0206887405, -0.00338140805, 0.0126126874, 0.0158150177, -0.0110255675, 0.00219457946, 0.0157167017, -0.00563216908, 0.000916456396, 0.00591307506, 0.00588849606, -0.00692082616, -0.00932608545, 0.000528893666, 0.00133606, 0.0190033037, 0.021278644, 0.020042656, -0.00643275166, -0.0132798394, -0.00794262253, 0.0126478011, -0.000960348, 0.0181746297, 0.0051897415, -0.00933310762, -0.0184695814, -0.00922074541, -0.000849302276, 0.0175285451, 0.0178796779, -0.000648278801, -0.0322480313, 0.0218966361, -0.0111941118, 0.00204885937, -0.0120227849, -0.000473590277, 0.00243334984, 0.00298287254, 0.015520067, -0.00804093946, 0.00265807472, -0.0174864102, -0.00334629486, 0.0131112961, 0.000489830156, 0.0131885456, -0.0137714259, -0.00164681254, -0.0278378017, 0.0198038854, 0.000973515504, 0.023230942, -0.0318828523, -0.00134571618, -0.00856061559, 0.011102817, 0.00102706323, -0.0237646624, 0.00915051904, 0.00887663569, -0.03227612, -0.00742294593, 0.01685437, -0.00549873849, 0.000793559942, -0.0173038207, 0.018806668, 0.0129357297, -0.0231185779, -0.0146773476, 0.0199864749, -0.0162223317, -0.00791453198, -0.00145895651, 0.008736182, -0.0161240157, 0.00269669923, -0.0166156013, 0.0224163141, -0.0122685777, -0.00370093901, -0.019789841, -0.00380627881, -0.0248040166, 0.00654511387, 0.00584987132, -0.00806903, 0.0139399692, -0.0181044042, 0.0250849221, -0.0193965714, -0.000963859318, 0.0171352774, -0.0120578976, -0.00395726599, 0.0113415867, -0.00278272689, -0.0155622028, 0.000486318837, -0.00596574508, 0.0453101657, 0.00280379481, -0.0145790307, -0.025646735, 0.000834379171, -0.00110431248, -0.0124300988, -0.0104778009, -0.0157447923, -0.0154357944, -0.0166577362, -0.00990194269, -0.00275288057, -0.00564621435, -0.0225848574, -0.00645381957, 0.00553385168, 0.00182589015, 0.00144052203, -0.0140242409, -0.00280203926, -0.00728951534, 0.026672041, -0.00127548957, -0.00916456431, -0.0142489662, -0.0108851148, 0.0147897108, -0.0100143058, -0.00331995985, -0.0127882538, -0.00838504918, 0.00960699096, -0.0173600018, -0.00153883919, -0.00198741117, 0.00260891626, -0.048456315, 0.0111730434, -0.00222442579, -0.0079566678, 0.0199583843, -0.0168262795, -0.0111660203, 0.000985805178, -0.0116014257, 0.00401344709, 0.0605633743, 0.0126969591, 0.0330626592, -0.0354222693, 0.00195756485, -0.0052775247, 0.0174021386, 0.0344671868, 0.00054381683, 0.0229781251, 0.00390108465, 0.0077389651, -0.0106182536, 0.0183853097, -0.00023372272, 0.0154638849, 0.019171847, -0.00047754051, 2.27138989e-05, 0.00827971, 0.00964912772, -0.0194948893, 0.0125354379, -0.000483685319, -0.00965615, -0.00711746048, 0.000827795418, -0.00198038854, -0.0234556664, 0.00329011376, 0.00698754145, 0.014494759, 0.018343173, -0.0106182536, -0.0120368302, 0.00632390054, 0.0165594202, 0.0387931429, 0.000167336693, -0.028933337, 0.0225848574, 0.0271776728, 0.00855359342, -0.000328528549, 0.00915754121, -0.0122053735, 0.00727547, -0.0278799385, 0.00267036445, -0.00769682927, 0.0309839509, -0.0288490653, -0.0214331411, -0.00846229866, 0.01068848, 0.00709288102, 0.0347761847, 0.00503875455, 0.0094103571, 0.0208713301, -0.00965615, 0.00184871384, -0.00731058326, 0.00456121424, 0.00129567971, -0.0256748255, -0.0089889979, -0.0114539498, 0.0168684162, -0.00317248423, -0.00821650587, -0.00615886785, 0.00667503336, -0.0214190967, 0.00466304272, 0.016390875, -0.00187153742, -0.00235434482, 0.00813223422, -0.0203656983, -0.0339615569, 0.0137152439, -0.000710165943, -0.0224163141, 0.000478857255, -0.0194667988, -0.00783728249, -0.0165734645, -0.028933337, 0.00931906234, 0.0123388041, 0.0267001335, 0.0148318466, -0.00704372255, 0.0167981889, 0.0225286763, 0.00102267403, -0.0127390949, 0.00269494369, -0.0116856974, 0.0167981889, -0.00928395, -0.00455068, -0.00914349593, 0.00847634394, 0.0258293226, 0.00719822105, 0.012282623, -0.0157588366, 0.00822352804, -0.0152672511, -0.00494746026, 0.00708234729, 0.0154779302, 0.0108710695, 0.00101828494, 0.00544606848, -0.000651351234, -0.00591658661, 0.00361666712, -0.00836398173, -0.013104273, -0.0110747265, -0.0170790963, -0.0117910374, 0.00176795328, 0.0055303406, -0.00517569622, 0.0248180609, 0.0154357944, 0.0110045, -0.00359559921, 0.0110045, 0.00540393265, 0.0287226569, 0.0208853744, -0.00289157801, -0.00592360925, 0.0133781573, 0.00192596298, -0.0141155357, 0.0112292245, 0.0147335296, 0.0263209101, 0.00654862542, 0.00340949884, 0.00573048601, 0.00109290064, 0.0369110741, -0.00175039668, 0.00537233055, -0.01068848, -0.0127320727, -0.000154498397, -0.00590254134, 0.00401344709, 0.0111941118, -0.0170510057, 0.0179779958, -0.0222337246, -0.0078934636, 0.00252288859, 0.0131393867, -0.00948760659, -0.00915754121, -0.012282623, -0.00332171563, -0.00202603592, -0.0053758421, -0.0125354379, 0.0211522356, 0.0240034331, -0.00661534071, 0.00721226633, -0.00647137593, 0.00220335787, -0.0174161829, -0.00242281589, -0.00724035688, -0.0115733342, -0.000934890879, -0.000780831382, 0.0104286419, 0.0492990352, 0.0104145966, -0.0108710695, -0.00119385123, 0.00258433679, 0.0188488048, -0.0118753091, -0.0204218794, -0.0219528172, 0.00415038876, -0.00570590701, 0.0212926883, -0.0159133356, 0.0257871877, -0.00434000045, 0.00478593912, 0.0164330117, 0.0360683538, -0.013258772, -0.00778110139, -0.012900616, 0.0102811661, 0.0142419431, 0.0063168779, -0.00833589118, -0.0110115223, 0.00168543705, 0.00835695863]
24 Nov, 2021
jQWidgets jqxScrollBar value Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The value property is used for setting or getting the value for the specified jqxScrollBar. Syntax: For setting the value property: $('#jqxScrollBar').jqxScrollBar({ value: 300 }); For getting the value property: var value = $('#jqxScrollBar').jqxScrollBar('value'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar value property. In the below example, the value for the value property has been set to 500. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar value Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin: 28px;" id="button_for_value" value="Value of the value property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 300, height: 20, value: 500 }); $("#button_for_value").jqxButton({ width: 250 }); $("#button_for_value").jqxButton().click(function () { var Value_of_value = $('#jqx_Scroll_Bar').jqxScrollBar('value'); $("#log").html((Value_of_value)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm?search= 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 value Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-value-property?ref=asr6
PHP
jQWidgets jqxScrollBar value Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, jQWidgets jqxScrollBar value Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0280445684, 0.0190898851, -0.0112941293, 0.0374599397, 0.0693915933, 0.0236967951, 0.0133168511, 0.0291675031, -0.0186435916, -0.0111789564, -0.0161097907, 0.0433913395, 0.0117548201, -0.00911304448, 0.0107902484, 0.0255395602, -0.0273103416, -0.022602655, -0.0390147753, 0.0249924902, 0.0181397106, -0.0199248884, -0.0392739139, 0.015533926, -0.0682398602, 0.0199536812, 0.00847239606, 0.0222571362, 0.00863795727, 0.0131584881, -0.02875, 0.00705793081, -0.00395186525, 0.00479406631, -0.0329106152, -0.0157642718, -0.0115100779, -0.00244922074, 0.000646947, -0.0352428667, -0.00920662284, 0.0131872818, -0.00476167398, 0.0193202309, 0.00445934525, 0.00376830879, 0.0213069618, 0.00345158367, -0.0187731609, 0.0342351049, 0.00804049894, 0.0319604427, -0.00355415954, 0.0388132222, 0.0194498, -0.0113373185, -0.00596738886, 0.034782175, -0.0041138269, 0.00287751947, 0.0309814736, -0.0274111181, -0.0222283434, -0.0354156233, -0.0150156487, 0.0163401365, -0.00770937698, 0.0316437185, -0.025568353, 0.0314709581, -0.017563846, 0.0172039308, 0.0344942436, 0.0424411632, 0.0118340012, 0.0130217206, -0.027986981, 0.0174342766, 0.0249924902, 0.0244310219, -0.020184027, 0.0042937845, -0.0259714574, -0.00165020977, 0.00409943052, 0.027051203, 0.0349261388, -0.0313845761, 0.0623660497, 0.0197665263, -0.0304631963, -0.0113157239, 0.004470143, 0.0113157239, -0.00106444827, 0.0161097907, -0.0196657497, 0.0158362556, -0.0207598899, 0.014015086, 0.0374887362, 0.0503880829, -0.0117548201, -0.0350125208, 0.00743584149, 0.00113553146, 0.0225450676, -0.00819166284, 0.0234952439, -0.017563846, 0.0261154249, -0.0233944673, 0.0134968078, -0.0304919891, -0.0375463217, 0.020184027, -0.00479046721, -0.0279293954, 0.0331697576, -0.0237255897, 0.0120499507, 0.0301752631, -0.00154223526, 0.0205871314, -0.00480846269, 0.02232912, -0.0150012523, -0.00633810135, 0.0238983482, -0.0220267903, -0.0191330761, 0.0190610923, -0.0158938412, -0.0140006887, 0.00909864809, 0.0329969972, -0.00144865736, -0.000606906484, -0.0147421136, -0.0234520547, -0.0397633947, -0.0298297461, -0.00182926736, 0.0163113419, 0.00469688931, 0.0166856535, 0.0150156487, 0.0346957967, -0.0323059596, 0.0105455061, -0.0123954685, -0.0158362556, 0.0105958944, 0.0172183271, 0.0567225851, -0.0104375314, -0.0252516288, 0.0465010032, -0.0190754887, 0.00188955315, -0.0126834009, -0.0148572866, 0.00760140223, 0.0371720083, -0.00714790961, -0.0230921395, 0.0477103181, 0.000991565525, -0.0610415637, 0.0295418128, -0.00312046194, -0.0358763151, 0.00768778194, 0.0086163627, -0.0385540836, -0.0183412619, 0.0123522785, -0.0389283933, 0.00683478359, -0.0403968468, -0.0247909371, -0.0101208063, -0.0220987741, 0.0173191037, -0.0109846024, -0.0163113419, 0.00116252503, -0.022602655, -0.0417213328, -0.0237399861, -0.0312981978, 0.0123954685, 0.0245030057, 0.0555996522, -0.00259858556, -0.0346094146, -0.0179669503, -0.0125250379, -0.0073350654, -0.0115892589, -0.00499921758, -0.0113229221, 0.00600338029, 0.0295706075, -0.0111429645, 0.0211485978, -0.0121435281, -0.0270080138, 0.0333425142, 0.01826928, -0.0227754135, -0.0175350532, 0.0428442694, -0.0154043566, -0.00403104676, 0.0154907368, -0.000843100599, 0.0113949049, -0.018931523, -0.0274831, 0.00134428206, -0.00998403877, -0.0260722339, 0.0140654733, -0.089546822, -0.0162969455, -0.0095953308, -0.0421820246, -0.0206879079, 0.0177941918, -0.0381221846, 0.00747183291, -0.0269504264, -0.00234484556, 0.00763019547, 0.0338607915, -0.0300312974, 0.0283181034, 0.00227466202, 0.0283900853, -0.00922821742, -0.021623686, 0.00852998253, 0.00537712825, 0.0147709064, 0.0112293446, -0.0168584138, -0.026000252, 0.0140366806, -0.0176358297, -0.0108982231, -0.0121579245, 0.0123234857, -0.025568353, 0.0236248132, 0.01678643, 0.0183988493, 0.0116900355, 0.034897346, -0.0112725338, 0.0229481738, 0.0092426138, -0.016196169, 0.009602529, 0.0395042561, 0.0247621443, 0.0301176775, -0.0231785178, 0.0055786809, -0.0277710333, 0.0197809227, -0.0183412619, 0.040713571, -0.00130289188, -0.026230596, 0.0285484493, -0.0409439169, -0.0137991365, -0.00103655492, -0.0173191037, 0.00695355562, -0.00126330124, 0.0302616432, 0.0726740137, 0.00765179051, -0.00849399157, 0.0337744132, -0.0397633947, -0.00941537321, 0.0283900853, -0.0147997, -0.015303581, 0.0174198803, 0.0303480234, 0.0294698309, -0.00487324735, -0.0176646225, -0.0221851543, -0.00696435291, 0.0117332255, -0.0219548084, -0.0158794448, -0.0358763151, -0.00788213592, 0.0152891846, 0.0336880349, 0.0220699813, -0.0119707687, -0.0132160746, -0.0315861292, 0.0443991, 0.00662603322, -0.0141590517, -0.0390435681, -0.0234376565, -0.000821055844, 0.021551704, 0.0612143241, -0.00180857233, 0.0111573618, -0.00361354533, 0.00966011547, -0.0267056841, 0.0304056089, 0.0183124691, -0.0139287058, -0.00471848436, -0.00629131217, 0.00400225352, -0.0196657497, -0.0462994501, 0.000576763588, -0.0036639336, -0.0203711819, 0.0226458441, -0.0455220342, 0.00127049955, -0.0253668018, -0.0185140222, -0.000147115206, 0.00219907984, -0.00344798458, -0.0155483233, 0.00694275834, 0.0566362068, -0.0485165268, -0.0189459193, 0.00412102556, 0.0564346537, 0.000655495, 0.00128849526, 0.0210046321, 0.0171607416, 0.0114884833, 0.0344654508, -0.0136191789, 0.00739265187, -0.02693603, -0.0233368818, -0.0132880574, 0.0219548084, 0.0223147236, 0.00315825315, 0.0313557833, 0.0151164252, -0.0485453196, -0.00797571428, -0.00772377336, -0.0052151666, -0.01420944, -0.0042901854, -0.0273823235, -0.00693555968, 0.039389085, -0.0251652487, 0.021623686, -0.0323059596, -0.0207598899, -0.0175350532, 0.017491864, -0.0264321491, 0.0228905864, 0.00785334315, 0.0124962451, -0.0131009016, 0.0226602405, -0.0140438788, 0.000529974641, 0.0418077148, 0.0274687037, -0.0391299464, 0.0542463697, -0.00711911637, -0.0370568372, 0.0203135964, -0.00462490646, 0.02896595, -0.019867301, 0.01826928, 0.00941537321, 0.0285196546, -0.0179237612, 0.00759420404, -0.0187587645, 0.0105239116, 0.0232505016, -0.0337456204, -0.0189459193, 0.0281597413, 0.00885390583, -0.00087234372, -0.0178949684, 0.00304847909, 0.0275262911, 0.0112509392, 0.00626611803, 0.0242726598, 0.0301752631, 0.0158218592, -0.0344078615, 0.0382949449, -0.031614922, -0.0119707687, 0.0263601653, -0.047854282, -0.00863795727, -0.085055083, -0.00421100436, 0.0229625702, 0.00490204059, -0.033457689, 0.0210334267, 0.0157354791, 0.0151020288, 0.0383525304, 0.00481926044, 0.0481422134, 0.00123360823, -0.0225594658, -0.0398785695, -0.00120661466, -0.0233800709, 0.0193778165, 0.000180632283, -0.0140438788, 0.01623936, -0.0322195813, -0.0244166255, 0.0220411867, 0.0107542565, -0.00559667638, -0.0475663505, -0.0153755639, 0.00381869683, -0.00444134977, 0.00643887743, 0.0197377317, -0.00699674524, 0.0203711819, -0.0155195296, -0.0444854796, 0.00729187578, -0.026230596, 0.0112509392, 0.010034427, -0.0225738622, 0.00496682525, 0.0359626971, -0.0213069618, 0.0210190285, -0.0298009533, -0.019521784, 0.0272527542, 0.048487734, 0.0108334385, 0.014130258, 0.00580542721, 0.0243302453, 0.0181972962, 0.0199536812, 0.0515110195, -0.0108694294, 0.0158794448, 0.0141374571, 0.0190323, -0.018226089, 0.0190035067, -0.0401377082, -0.00513958465, 0.0214653239, 0.0230777431, -0.00579822902, -0.0275694802, -0.000913284, -0.0200112667, 0.0283756889, -0.0357035547, -0.00225126767, 0.0168152228, -0.00195253827, 0.0211917888, 0.025179645, -0.0252516288, 0.0147709064, 0.0148284929, 0.0120787434, -0.0387556329, -0.0269648228, 0.0115460698, -0.0134032303, 0.021897221, -0.0254243873, -0.0276702568, 0.0179813486, -0.0142166382, -0.0414334, -0.0327378586, -0.0113661122, 0.00754381577, -0.0148284929, 0.0220411867, 0.00474007893, 0.0120787434, 0.0041462197, 0.0329106152, 0.0237687789, -0.0203567855, -0.0275550839, -0.00578023307, 0.026662495, 0.000417951174, 0.0086163627, 0.0222427398, 0.013115298, -0.0290091392, 0.0309238862, -0.0104303332, -0.0134104285, -0.00737825502, 0.0208750628, -0.00533393864, 0.0192194544, -0.0227898099, -0.00685997773, 0.0209470466, -0.0059961821, -0.0034137927, 0.00781735126, 0.0209470466, 0.0390723608, 0.0426139235, 0.000552469341, 0.0137127573, 0.00487324735, 0.0086163627, 0.0138999131, -0.0192770418, -0.0372871831, -0.0167000499, -0.0238551591, 0.000578563195, -0.000519177236, -0.00815567095, 0.0106462827, 0.0214221347, -0.0390723608, 0.00334180961, 0.00659724, -0.0392739139, -0.00153773639, 0.000552469341, -0.00459971232, 0.0118196048, 0.0207310971, -0.0214221347, 0.00194893905, 0.0444278941, -0.0229337756, 0.00989046134, 0.0104519287, 0.0151596153, -0.0513094664, 0.0275262911, 0.0243014526, 0.00250680721, 0.00322123826, -0.0313845761, -0.010228781, -0.0292538814, -0.00801170524, -0.0131009016, 0.032046821, 0.0115316724, -0.00225486676, 0.000673490751, -0.0108190412, -0.0178949684, 0.0247909371, 0.0127481855, -0.0318452679, 0.0305495746, 0.00917063095, 0.0260722339, 0.0113805085, -0.00020188975, -0.0217388589, -0.00712991366, 0.00454572495, -0.000619503495, -0.011905984, -0.0107542565, 0.0055786809, 0.0243302453, -0.00115892594, -0.0363945924, -0.0118340012, -0.0305783693, 0.0345230363, 0.004977623, -0.0144613804, -0.00194354041, -0.0132448673, 0.00880351849, -0.0164409112, 0.019867301, -0.00491643744, -0.0302616432, -0.00230525481, 0.0170887578, -0.0435640961, 0.0101208063, 0.02084627, 0.00304128067, 0.026230596, 0.0287931915, 0.0162105672, -0.0248917136, 0.0342351049, -0.0348397605, 0.0132232727, 0.0264321491, 0.0372008, -0.0276990496, 0.0600625947, -0.00481926044, 0.0177797955, -0.00682038721, 0.0312118195, 0.0067376066, 0.00440535834, -0.0308950935, 0.0054815039, 0.0106102908, 0.00878912117, -0.00215409067, 0.0176358297, 0.0047148848, -0.0122443046, -0.00468609203, 0.0211485978, -0.00697515067, 0.0125178397, 0.0277710333, 0.0160809979, 0.00616894104, -0.028649224, 0.0547934435, 0.0310966466, -0.00486964826, -0.00374311488, -0.0112005509, 0.002693963, 0.0393602923, 0.0134608168, 0.00363694, 0.00700034434, -0.0316725112, -0.0159370303, 0.0209470466, 0.0175350532, 0.0116828373, 0.0206303205, 0.0151884081, 0.0270224102, 0.00694995653, -0.0262018032, -0.0303768162, 0.0149724595, 0.0120787434, 0.0127625819, 0.00393387, 0.0074790311, 0.0153467711, 0.0118483976, 0.0151020288, -0.0124890469, 0.0238983482, 0.0115676643, -0.0254243873, -0.0422684029, -0.00326082879, -0.0240855049, -0.0184564348, 0.00758700585, 0.0104591269, 0.00477607036, 0.0140222842, 0.0212925654, -0.0166568607, -0.00544551201, 0.0163401365, 0.011985166, -0.0131009016, 0.0533537827, 0.0135328, -0.0153179774, -0.00816286914, -0.014403794, -0.0381797701, -0.0161097907, 0.0246469714, 0.0217532553, -0.0135903861, -0.0328818224, -0.00372871826, -0.0127553837, 0.0143893966, -0.0100056333, 0.0179669503, 0.000127769788, -0.016124187, 0.0342351049, 0.0237975717, -0.0182836764, -0.00554988766, 0.0327378586, 0.00632730359, 0.00347497826, -0.0153611675, -0.00887550134, -0.0234952439, -0.0194641966, 0.0238407627, 0.0119491741, -0.0208030809, -0.0446582399, 0.0264177527, -0.016124187, 0.0117260274, -0.00314565608, 0.0174630694, -0.0217532553, 0.0324211344, -0.038842015, -0.0101496, 0.0170023795, -0.00399505533, 0.00039253218, 0.0308087133, -0.0194210075, 0.00624092389, 0.0146557344, -0.0331697576, -0.0111501627, 0.0223147236, 0.031269405, -0.0493227355, -0.000116634918, 0.00869554374, -0.0459827259, -0.00464290194, 0.0149580622, 0.0509927422, -0.010228781, -0.0205295458, 0.0081124818, -0.0247333515, 0.00218648301, 0.00781015307, 0.0120931398, 0.00254639774, 0.00383669278, 0.00527995126, 0.010070418, 0.00763739366, 0.00851558615, 0.0117476219, 0.027986981, -1.1366843e-05, 0.0183700565, 0.0139431022, 0.0106750755, -0.00863795727, 0.00997684058, 0.020961443, -0.0235960204, -0.0134896096, 0.018931523, 0.0298873316, -0.0240567103, 0.0314421654, -0.0180965196, 0.0305783693, 0.0255251639, 0.0191906616, -0.00658284314, -0.0271951687, 0.0269792192, -0.0239415374, -0.0179525539, -0.0431322, 0.00652165757, -0.0143965958, -0.0341775157, -0.0244022291, -0.0173335, 0.0269072372, -0.0194354039, 0.0159082375, 0.0229625702, -0.0294122435, 0.0036225433, 0.0134824114, -0.0243014526, -0.0338032059, 0.0165848788, -0.0215948932, 0.0272239614, 0.0465010032, 0.00851558615, -0.00516837789, 0.0314421654, -0.0424123704, 0.0119707687, -0.0221419632, -0.00115712639, 0.0224442929, 0.0162105672, 0.0089114923, 0.0254675765, -0.00577663397, -0.00102125853, -0.0362794213, 0.00528714946, 0.0212925654, 0.0095953308, 0.00674480479, 0.0267776679, 0.029944919, 0.00475447578, 0.0128705567, 0.0181253143, 0.0270368066, 0.0201696306, -0.0117692165, 0.0359914899, -0.0216092896, 0.0135471961, 0.01272659, -0.0153899603, -0.0357035547, -0.0011751221, -0.00933619216, -0.000207850841, 0.0248917136, -0.0276846532, -0.0110997753, -0.0377190784, -0.00791812781, -0.0118196048, -0.01678643, 0.0298009533, 0.047854282, -0.011790812, -0.00329862, 0.00259498623, -0.0403104685, 0.0348109677, 0.0140078869, -0.0131296953, 0.0343214832, -0.00124710507, -0.0416061617, -0.0246037822, -0.0106534809, 0.0554844774, -0.0437368564, -0.0159658249, 0.0271375831, 0.00129389402, -0.0237543825, -0.00469688931, 0.00174288778, -0.0489772186, -0.0189171266, 0.0220843777, 0.00439815968, -0.0150012523, -0.000642897969, 0.0163113419, 0.0151596153, -0.0212637708, 0.0153611675, -0.022602655, -0.00364413811, -0.0170311723, -0.0274687037, 0.0144973714, 0.00452053081, 0.00689596916, 0.024632575, 0.0257123187, -0.00402024947, -0.0345518291, 0.0272383578, -0.00719469832, -0.0304631963, 0.00853718072, -0.00659004133, -0.000500731578, -0.0234808475, -0.0043801642, 0.0294122435, 0.0172183271, 0.00485165277, -0.0115100779, -0.0455796197, -0.0115604661, -0.0277854297, 0.0148428902, 0.00442335382, 0.000667192216, 0.0363370068, -0.00752941938, -0.0436504781, -0.00368552841, 0.00264537451, -0.00298909307, -0.0320756137, -0.00461050961, 0.0619053617, 0.00425419398, -0.0261154249, -0.0119131831, 0.0025374, -0.0167720336, -0.0459827259, 0.00134518184, -0.00280733616, 0.031269405, 0.0163977221, 0.00832843, 0.0149148731, -0.00494163157, 0.0237255897, -0.0173335, -0.0148140965, 0.00117782142, -0.0209326502, -0.0122227091, -0.0177366063, -0.03708563, -0.0175494496, 0.0064064851, 0.0103871431, -0.0173191037, 0.00246361736, -0.000361939397, 0.0193346273, -0.0302616432, -0.00376470969, 0.00440895744, 0.0499273911, 0.0211917888, 0.00312946, 0.019752128, -0.000474637753, -0.0286636222, 0.0186867807, -0.0131368935, 0.00082870404, 0.0121219335, 0.0220843777, 0.00813407637, 0.010811843, 0.00552109443, 0.0106606791, -0.0226890352, 0.0017644827, 0.0390723608, 0.00896907877, -0.0291243121, 0.021782048, -0.00219548075, 0.0268352535, 0.040799953, 0.0163401365, 0.00367653044, -0.0145261651, -0.0214653239, -0.0138639212, -0.0157786682, 0.0110925771, 0.0277134459, 0.0299737118, 0.000121021381, -0.00317804841, 0.013935904, 0.00225126767, 0.0218540318, -0.0571256913, -0.0124098649, 0.0230921395, 0.0287068114, 0.0411742628, -0.00142346334, 0.0206879079, -0.0163113419, 0.0061437469, 0.0115244742, 0.0134392222, -0.00439456059, 0.0290955193, -0.0160378069, 0.000856597442, 0.00542031834, -0.0021037024, -0.000983467442, -0.00719109923, 0.00743584149, 0.0295706075, 0.00862356089, -0.0171031561, -0.00461050961, 0.0168872066, -0.0131800827, 0.0032500315, -0.0427578874, -0.00124440575, -0.0320180282, 0.0286780186, -0.00238083699, 0.0173047073, 0.0091202436, 0.0180389341, 0.0164697058, -0.00971770193, 0.0200544577, 0.00815567095, -0.0134464204, -0.00316185225, 0.0112509392, -0.000150264459, 0.00086964434, 0.00494523067, 0.00298189488, 0.00323383533, -0.0270943921, 0.010775852, 0.0211629961, 0.0101136081, -0.0163689293, 0.0127769783, -0.00254819728, -0.0159802213, 0.026547322, -0.0100992117, 0.0110421889, -0.00704353442, 0.0272815488, -0.0162537564, 0.0293258652, 0.00835002493, 0.0134104285, 0.00699314615, -0.00653245533, 0.00102755695, 0.00559307728, 0.018154107, -0.0219979975, 0.0118340012, 0.00142796233, -0.00896188058, -8.04747178e-05, -0.00224766857, -0.00770217832, 0.0179093648, -0.00620133337, 0.000179620023, -0.00904826, -0.00334001, 0.00586661277, 0.00419660751, -0.0168728102, -0.0184132457, -0.0332849286, -0.00953774434, 0.088740617, -0.00011596008, -0.0163833257, -0.0104015404, -0.0164265148, -0.0281309467, 0.00756541081, 0.0109558087, 0.0295130201, -0.0109414123, 0.00376470969, 0.0237831753, 0.0184564348, -0.00341559225, -0.0123666758, -0.0209902357, -0.0016043206, 3.49721972e-06, 0.0271087885, -0.0200688541, 0.000964571896, 0.0266768914, 0.00251220586, -0.00653245533, 0.0239847284, 0.0108694294, -0.0454356559, -0.018931523, -0.0340911373, 0.0079325242, 0.0239847284, 0.00758700585, 0.0207167, -0.0042074048, 0.0029998906, 0.0276990496, -0.021508513, -0.00253560045, -0.0386692546, -0.00683478359, -0.0260722339, 0.0108262394, -0.00453852676, 0.0053951242, 0.00948735606, -0.0113085257, -0.0194354039, 0.00572984479, 0.00267596706, 0.0268928409, -0.027598273, -0.0081052836, -0.0273967218, -0.0081124818, -0.00794692058, -0.00760860089, -0.0175062604, -0.0087603284, 0.0222859289, -0.0325363055, -0.0107038682, -9.29592643e-05, -0.00670161517, -0.00395546481, 0.013468015, 0.0178085882, -0.00305747683, 0.0382661521, -0.0156490989, 0.0267056841, 0.0361930393, 0.0225018784, -0.0040562409, -0.00859476719, -0.0185716078, -0.00342638977, 0.0135615924, 0.020256009, 0.0182116926, -0.0217100661, -0.034897346, -0.017491864, 0.0145405615, 0.0173910875, -0.0226170514, -0.00251580495, -0.0103007639, -0.0129425395, 0.00129299425, 0.00671601156, -0.00525115803, 0.0208750628, -0.0332849286, -0.01069667, -0.0144685786, 0.00329862, 0.0442263409, -0.0110133952, -0.0249636956, 0.00111123722, 0.0112077491, 0.00648926524, -0.0042038057, -0.00305027864, 0.0110709816, -0.0145189669, 0.0146557344, 0.0124818478, -0.0102143846, 0.0212205816, 0.0110637834, -0.00486964826, 0.000830503588, 0.0133312475, -0.00355056045, 0.0145981479, -0.0117476219, 0.00131458917, -0.005485103, 0.0141230598, -0.0160522033, 0.0116468454, 0.00832843, 0.0285916384, -0.0103727467, -0.019593766, -0.0157786682, 0.00642448058, -0.000660893682, -0.0137703437, -0.0280445684, 0.00694635743, -0.0275838766, 0.0062265275, -0.00855157804, 0.0167720336, -0.0230345521, 0.0185572114, 0.00696795201, 0.0238983482, 0.000437296578, -0.0048876442, 0.0022800609, 0.0130505133, 0.0256979223, 0.031269405, -0.00139826932, 0.00793972239, 0.0152891846, -0.00866675, -0.0198816974, -0.0136191789, 0.0181972962, -0.0140798707, 0.0177366063, -0.0166136716, -0.00260398421, -0.00888269953, -0.0350125208, 0.0146485362, 0.00625532074, 0.0260146484, 0.0018805553, -0.00285952375, -0.00908425171, -0.00222247443, 0.006500063, -0.0207023043, 0.0232073124, 0.0102215828, 0.00875313, 0.011596458, 0.0225594658, -0.00558947818, 0.0297145732, 0.0101711946, 0.0155627197, -0.00388348149, 0.0197953191, -0.00169879827, -0.0115172761, 0.0108190412, -0.0101496, 0.0067340075, 0.0140654733, -0.0040562409, -0.00867394917, 0.00496322615, 0.00866675, 0.0016916, -0.0246901605, 0.0113661122, 0.02287619, -0.00377550721, 0.0221563596, 0.01475651, 0.0010932415, -0.0195505768, -0.00407783547, 0.0205151476, -0.0134248249, 0.00899787247, 0.0320756137, 0.0252660252, -0.015145218, 0.0142598273, -0.0143462075, 0.0023988327, 0.0071551078, 0.00569025427, 0.00557508133, -0.0136839636, 0.00676280074, 0.00415701699, 0.00468969112, 0.00773097156, 0.00895468239, -0.0232073124, -0.00635609683, 0.000849849, -0.0063165063, -0.0042074048, -0.028303707, 0.00729187578, -0.00584141864, -4.11652654e-05, -0.0276990496, -0.000984367216, -0.0112869311, 0.0235960204, 0.0188595392, 0.019593766, 0.0168440174, 0.0184708312, 0.020961443, 0.0159658249, 0.0152459946, -0.0141230598, 0.00181217142, 0.0174054839, -0.00147925015, 0.0151308216, -0.00192914379, 0.0365097672, 0.00860196538, -0.000157012866, 0.0211342014, -0.00538072735, -0.0155915124, 0.0123666758, 0.0162969455, 0.0189171266, 0.0206447169, -0.0295706075, 0.00321943872, 0.0163401365, -0.0106822737, -0.00549590029, -0.0201984234, -0.0326226838, 0.0100560216, 0.00716230599, -0.00967451185, -0.00369992503, -0.0417213328, -0.0156203061, -0.00915623456, -0.00604297081, -0.011826803, -0.0203279927, -0.00351276924, -0.000937578268, -0.00124530552, -0.00651805848, 0.0218108427, -0.0119131831, 0.0238263663, 0.00824924931, -0.0084076114, -0.0157498755, -0.000949275505, 0.0238839518, -0.0170887578, 0.00676999893, -0.0135256015, 0.0227322243, -0.0124026667, 0.0407711565, -0.00968890823, 0.00552829262, 0.0231065359, 0.0206735115, -0.0242294706, -6.37161793e-05, 0.00729187578, 0.0166568607, -0.00357035571, -0.0293114688, -0.0145549579, -0.0236392096, 0.0133528421, -0.0152747873, -0.0024888115, -0.0150012523, 0.00165560842, -0.00704713352, -0.000294005469, -0.0222715326, 0.0196657497, -0.00254819728, -0.0116540436, -0.0146269407, -0.0123090893, 0.0105599025, -0.0110421889, 0.00524036074, 0.0135831879, -0.013036117, -0.01475651, -0.0101999883, -0.0110709816, 0.000139129595, -0.0259138718, 0.00681678811, 0.0188307464, -0.0116684409, 0.0120427525, -0.0322771668, 0.00530154631, -0.0119995624, 0.00976089202, -0.00343178841, -0.0337168276, 0.00950895157, -0.0193778165, 0.0193922147, 0.00896188058, -0.0212061852, 0.00494523067, -0.00436216826, -0.00549949938, 0.0223435163, -0.0100560216, 0.0196513534, -0.000620853156, -0.00046788936, -0.000901136897, -0.00322483736, -0.0350701064, 0.00407063728, -0.0140366806, 0.00704713352, 0.0290523302, -0.00395186525, 0.0232073124, 0.0381797701, 0.00173658936, -0.0126258144, 0.00640288601, -0.0117476219, -0.0191762652, -0.00231785187, 0.0199680775, 0.00699674524, 0.00773097156, -0.0294266418, -0.0199392848, -0.0079037305, -0.00988326315, 0.00801170524, -0.0124098649, 0.00294050458, -0.00487324735, 0.0146197425, 0.00589180645, 0.00409223232, 0.027641464, 0.000283208035, -0.000256214407, 0.0114165, -0.0436216854, -0.00346418074, -0.0014288621, -0.01623936, 0.0145693542, 0.0258706827, 0.0091202436, -0.0200544577, 0.000983467442, 0.0235960204, 0.0281309467, 0.0286204312, 0.0125826243, 0.0101352036, -0.0177078117, 0.0139143094, -0.030290436, 0.0222283434, -0.0232073124, -0.00364053901, 0.00628051488, -0.00291351089, -0.0112509392, 0.00847959425, 0.0281309467, 0.00817726646, 0.00607176404, -0.0237831753, 0.0102071865, -0.00629131217, -0.0156490989, 0.0274255145, -0.0143534057, -0.00555348676, 0.0207454935, 0.0121579245, 0.00370352413, 0.0600050092, 0.0102503756, -0.00678079622, 0.00310606556, -0.0131009016, -0.0172183271, -0.0128489612, 0.00351816788, -0.0138135329, 0.011790812, 0.00800450705, -0.0078965323, 0.0144685786, 0.00628771307, -0.000229445737, 0.00628051488, 0.0184852276, 0.0136767654, -0.0121939164, -0.0247189552, 0.00669081789, -0.0129425395, 0.017837381, -0.0304056089, 0.014482975, 0.0165992752, -0.000884040957, -0.00149364676, -0.00130829064, 0.0134752132, 0.0164984986, 0.0094225714, 0.00607536314, -0.00626611803, -0.0142958192, -0.00493803201, 0.0154331503, -0.000980768, 0.00131908804, -0.011596458, -0.00148104969, 0.0173191037, 0.0105167134, 0.034350276, 0.00473288074, -0.0240567103, 0.00215589022, 0.0166568607, 0.0191906616, -0.0124386586, 0.00450973352, -0.0222859289, -0.00520796841, 0.00472928165, -0.0201984234, 0.010970206, 0.0016916, 0.0234664511, 0.00233224849, -0.0146053461, 0.00680599036, -0.0216380823, -0.00312766037, -0.00556788314, 0.0211342014, 0.0139790941, 0.0164697058, 0.0222859289, 0.00505680405, -0.010070418, 0.0166568607, 0.0026111824, -0.0177941918, 0.0190610923, 0.00971770193, -0.01623936, 0.00680599036, 0.017563846, 0.0011193353, -0.0025823894, 0.0257411133, -0.0240279175, -0.00612215232, -0.00482645864, -0.0044737421, -0.0147133209, -0.0260866303, -0.00123540789, 0.00265437225, -0.0064064851, -0.00901226886, -0.00602137623, 0.0106030926, -0.00726668164, -0.0123522785, -0.021897221, 0.0159226339, 0.0140582751, 0.00179957447, -0.0230921395, -0.0245174021, 0.0115604661, 0.0166136716, 0.0163977221, 0.0240567103, 0.0160666, -0.043794442, 0.00881791487, -0.000212912142, 0.00153863616, -0.0155483233, 0.021897221, -0.015030046, 0.00839321502, 0.0193058345, -0.0030664748, 0.00103835447, 0.00786054134, -0.0132664628, 0.00830683578, -0.00263817608, 0.00976089202, 0.00906985532, -0.0281165503, 0.00344438548, -0.013662369, -0.0128129702, -0.0141446553, 0.0136335762, -0.00927860569, -0.0359051079, -0.00571184931, -0.0179669503, 0.00665842555, 0.00814127456, -0.0134608168, 0.0205151476, 0.0127625819, 0.0186579879, -0.0165560842, 0.00672680931, -0.00845080148, 0.00537352916, 0.00773097156, 0.0117692165, -0.000104037899, 0.0129065476, 0.0237255897, 0.0147997, -0.00536993, 0.00561467232, -0.0149580622, -0.0245893858, 0.0129137458, -0.0106462827, 0.0101496, 0.0143390093, 0.0219260156, 0.0397633947, 0.00620493246, -0.0103943422, -0.0245605912, -0.00267596706, 0.00971770193, -0.00749342795, 0.0138423266, 0.010423135, -0.00517557608, -0.00505320495, -0.0002946803, 0.0108982231, -0.0174774677, -0.00685277954, 0.00806929171, 0.00513238646, -0.0170023795, 0.00659724, -0.0187587645, -0.00416421518, -0.00549590029, 0.0118052084, -0.0202128198, 0.00586301368, -0.0102503756, 0.0112509392, 0.0126762027, -0.00321583939, -0.0100488234, -0.0268496498, -0.0110277925, 0.00868114736, -0.00344078639, -0.00626971712, 0.00023394468, -0.0318164751, 0.00330761774, 0.000459341361, 0.0181685034, -0.0148140965, 0.0156778917, 0.0183700565, -0.00668002, 0.0167000499, 0.012841763, 0.0202704072, 0.00784614403, -0.000808008888, 0.0205871314, 0.00908425171, 0.0218252391, -0.00956653804, -0.0391299464, -0.00106624782, -0.0101855909, 0.00697874976, 0.00159802206, 0.00010341929, -0.000269936165, 0.0285052583, -0.00238803518, 0.0067412057, -0.00616174284, -0.0104951179, 0.00278394157, 0.000626251916, -0.0451189317, -0.0094513651, 0.00799730886, 0.00408503413, -0.0107686529, -0.00699674524, 0.00742864329, -0.000763019547, -0.0025374, 0.0159658249, -0.00382949435, -0.00828524, 0.0172471218, -0.0223435163, 0.00887550134, 0.0295130201, -0.0121363299, -0.0234520547, 0.00131548895, 0.00229985616, -0.0129857287, 0.0184132457, -0.0092714075, -0.0123306839, 0.0105527043, 0.0190323, -0.000905185938, -0.0349261388, 0.023811968, -0.00728107803, -0.0133456439, 0.0104447296, 0.00805489533, 0.0132664628, 0.0254531801, -0.00334900804, -0.00621932931, 0.0204431657, -0.00462490646, 0.00618693698, -0.0131656863, -0.0250068866, 0.00489484239, -0.0247477479, 0.00909145, -0.0236392096, -0.0077525666, -0.0131728845, 0.0140582751, 0.0115604661, -0.00587021187, -0.00649646344, 0.0213645473, -0.00141986425, -0.00741424644, 0.0131081, 0.0132304709, 0.00772377336, 0.0314709581, 0.008458, -0.025841888, -0.0101855909, 0.0130505133, -0.00336160511, 0.021940412, 0.00591700058, -0.0143606039, -0.00499201939, -0.00608256133, -0.0148860794, -0.00248521217, 0.00903386343, -0.0219836012, 0.00784614403, -0.00613654871, 0.0164553076, -0.0204287693, 0.0120715452, -0.000617703947, 0.0033202148, 0.00315105473, -0.00402384857, -0.0184132457, -0.0200544577, 0.026547322, -0.010970206, 0.0041102278, -0.00170419703, -0.0171895344, -0.00195253827, -0.0112221465, 0.00276774541, -8.09105495e-06, 0.0114452932, -0.0159658249, -0.00324823172, 0.00124980439, -0.0271231849, 0.021508513, 0.0181253143, -0.0162969455, -0.00791093, -0.00916343275, -0.0101136081, 0.0154619431, 0.00988326315, -0.000173996348, 0.0160090141, -0.00501721352, -0.00617254, 0.0100848153, -0.0278574117, -0.00544911157, 0.00241502887, 0.0109342141, -0.00410662871, 0.0048876442, 0.0036675327, 0.0149724595, -0.00188235485, -0.000787313795, -0.00651445938, -0.00615814375, 0.00335080759, 0.0118196048, -0.0160234105, -0.0100992117, 0.000873693381, -0.00650726119, 0.0100992117, -0.00611495366, -0.00919942465, 0.0215948932, 0.00594579382, -0.00554988766, 0.0059889839, -0.0033832, -0.00392307201, 0.0118555967, -0.0035037715, -0.00454212585, 0.00904826, -0.0152315982, -0.0202272162, 0.0172759145, 0.00758700585, 0.0174342766, -0.00298009533, -0.0138855167, -0.00693196058, 0.00605736766, -0.0251076631, 0.0308663, -0.00490204059, 0.00570105156, -0.0111861546, 0.00545630977, 0.00469688931, -0.00317624887, -0.0254675765, -0.0187875573, -0.012373874, -0.00316725089, 0.0198960956, -0.00325902924, 0.0196081623, 0.00336340466, 0.00361174578, 0.0119563723, -0.0134104285, -0.00543111563, -0.00210550218, 0.0249493, -0.0145045696, 0.0165848788, -0.0163113419, -0.0133600403, -0.0151884081, 0.0270943921, -0.0335728601, -0.0104303332, 0.0138063347, 0.00467889337, -0.00439456059, -0.000830953475, -0.0323347524, -0.0275118947, -0.0156203061, 0.00132268725, -0.0162105672, -0.0186723843, 0.00237543834, -0.006050169, 0.00349477353, -0.0116540436, 0.00445214706, 0.0041102278, 0.000801710412, 0.00930739846, 0.0306935422, -0.0133168511, -0.0021145, -0.0214077365, -0.00918502826, -0.00560387457, -0.0181829, -0.00462490646, -0.00195973646, 0.0273967218, 0.00136677676, 0.0141590517, -0.00215589022, 0.0133456439, 0.0246901605, -0.00381149864, -0.00665482599, -0.011085378, 0.00340659427, 0.0135256015, 0.0247765407, 0.00692476239, -0.013856723, 0.000559217762, 0.00505320495, -0.0028361294, -0.0165272914, -0.0126114171, -0.0141806463, 0.00365853473, -0.01826928, -0.00425059488, -0.0171319488, 0.018226089, -0.0204575621, -0.0271807723, -0.00720189698, -0.00860916357, 0.00917782914, -0.00239343406, 0.0026075833, -0.0062301266, 0.00916343275, 0.016196169, -0.0129065476, -0.00174108823, 0.0151020288, 0.0212205816, -0.0121651227, 0.00583062135, 0.00654685171, -0.00276414631, 0.00579103036, 0.00909864809, 0.00624092389, -0.0240423139, 0.00368552841, -0.00301788631, 0.0152747873, 0.0210190285, -0.0210622195, -0.00196333579, -0.0308663, 0.0135471961, -0.00824924931, 0.00675920164, 0.00493803201, 0.0112365428, -0.00263457699, -0.0109342141, 0.0424987487, 0.0290379338, -0.0123090893, 0.00100866146, -0.0107470583, 0.0133528421, -0.0206591152, -0.00360814668, -0.0033724024, 0.00475447578, 0.00806209352, -0.0194641966, -0.0231785178, -0.0119203813, 0.0159802213, -0.00563986646, -0.00263817608, 0.0236392096, 0.00935058855, 0.0301752631, 0.0117260274, 0.00564346556, -0.00898347516, -0.00719829788, 0.0036927266, -1.40099683e-05, -0.0173622947, 0.00981127936, -0.0199536812, -0.0140798707, 0.00768778194, -0.00367473089, -0.0135184033, -0.00650726119, 0.0102791693, 0.00804769713, -0.00503880857, -0.00255179661, 0.00800450705, 0.0135903861, -0.00758700585, 0.00161421823, 0.0175494496, -0.0035037715, -0.00691036601, 0.00745023834, 0.00862356089, 0.00619773427, 0.0204431657, -0.00330761774, 0.0310390592, -0.0193490237, 0.0030700739, 0.0202992, -0.0106678773, -0.00854437891, 0.00671241246, -0.0277278423, -0.00494882977, -0.000285007613, 0.0145045696, 0.0290091392, -0.0157354791, 0.00423979713, -0.00713351322, -0.00454212585, 0.015533926, 0.0148572866, -0.0207310971, 0.0019363421, -0.0047076866, -0.00588460825, -0.00171769375, 0.0212781671, -0.0141158616, -0.00162861485, -0.0279581882, 0.0440535806, 0.00418940932, 0.00561107323, -0.0113805085, 0.00417141337, -0.0143030174, -0.0287068114, -0.0114165, 0.0242582634, -0.0241430905, 0.00606816495, -0.00113733101, 0.000561917142, 0.00494163157, 0.00534833502, 0.0029998906, 0.0102359792, 0.00500641624, -0.0163257383, -0.0105455061, 0.0119275795, 0.00116702402, -0.0138495248, 0.00907705352, 0.0145477597, -0.00305927661, -0.00674480479, -0.00315465406, -0.00389787811, 0.00901946705, 0.0395618454, 0.0079325242, -0.0124458568, -0.00982567668, 0.0187443681, 0.0380070135, 0.00365853473, 0.00968890823, 0.0145837516, -0.0278862044, -0.00880351849, 0.0135687916, 0.0101567982, -0.0149004767, 0.00372511917, 0.0110133952, 0.00585581502, 5.44933646e-05, 0.00971050374, -0.00114992808, 0.00546350796, 0.029628193, -0.0136191789, -0.0151308216, -0.0159514286, 0.00854437891, -0.00190035056, -0.0067412057, -0.000660893682, -0.00570465112, 0.0132520664, -0.0163113419, 0.00113913056, 0.00996244419, -0.00233584759, -0.0227466207, 0.0097824866, 0.00571544841, -0.00532314135, 0.000183331649, 0.0212637708, -0.00458891457, -0.00282173278, -0.01069667, -0.00950895157, 0.00339219789, 0.00302868383, -0.00950895157, -0.0116684409, -0.0269648228, -0.0195505768, -0.00503161, -0.0178949684, 0.0177078117, -0.0340623446, 0.0245893858, -0.0103511522, 0.0341199301, -0.00310246623, 0.011632449, 0.0102143846, 0.00493803201, 0.0133744376, -0.00282353233, 0.00272275601, -0.013000126, -0.00719109923, -0.000655045093, -0.00103025639, -0.00534473592, 0.0195649732, 0.00260938285, -0.0106534809, -0.000376336015, 0.00233224849, -0.0087315347, 0.0269216336, 0.0131872818, 0.0023538433, 0.00697515067, -0.00150174485, 0.00319784367, -0.00731347036, 0.0166568607, 0.00624812255, 0.0058990051, 0.0139862923, -0.0204575621, -0.0231641214, 0.00166910526, 0.00540592149, -8.48049458e-05, 0.00514678285, 0.013468015, -0.0103223585, 0.016901603, 0.00484805368, 0.007925326, 0.0019813315, -0.00207310985, -0.0213069618, 0.0237111934, 0.0132808592, -0.00638129096, -0.0235528294, -0.00736385863, 0.0368840769, -0.00183286658, -0.0134032303, -0.00123090891, 0.0207598899, 0.0191474725, 0.00829243939, -0.00678439578, 0.00407423638, 0.0213933401, 0.00446294434, -0.0118196048, -0.0014738515, 0.00854437891, 0.021623686, -0.0231209323, -0.0169879831, 0.000991565525, 0.00492363563, 5.26375516e-05, -0.010034427, 0.0190754887, -0.0114021031, 0.0116540436, -0.0191186778, -0.0279581882, -0.00240603089, -0.00385828759, 0.00676280074, -0.00873873383, -0.0110277925, -0.0136335762, 0.00356315728, 0.0182836764, -0.00646767067, 0.00377550721, 0.0154619431, 0.00177078124, -0.00731347036, -0.0113733103, 0.0136047825, -0.0026525727, 0.0153611675, -0.00739265187, -0.00999123696, -2.07654011e-05, -0.00965291727, 0.00994084869, 0.0135471961, 0.0222427398, -0.0141590517, -0.000856597442, -0.00706153, 0.00352176721, -0.0102143846, 0.00383669278, 0.0122443046, 0.00134428206, -0.00108964229, 0.005992583, 0.00493443292, -0.00925701112, 0.013856723, 0.00615094556, -0.00450613443, -0.00268676458, 0.0124602532, 0.0219836012, -0.00814127456, 0.00443415157, -0.00265977089, 0.00206951052, 0.0131656863, -0.0199680775, 0.0270943921, -0.0274399109, -0.0150444424, 0.0148428902, -0.00678439578, 0.0131800827, -0.0132376691, 0.00328242383, -0.000938478042, -0.00651805848, 0.0082564475, 0.0125394342, -0.00510359323, -0.00697515067, 0.00068788731, 0.0174774677, 0.018931523, -0.0180245377, 0.0077525666, -0.0104951179, 0.0109054213, 0.0216380823, -0.0164265148, 0.0107470583, 0.0159370303, 0.00896188058, -0.0210910123, -0.0108622313, 0.0134824114, -0.0111069735, 0.0142526291, 0.0157498755, -0.0153755639, 0.00163581315, -0.00854437891, 0.00145585567, -0.00185716082, 0.0291962959, 0.00052277639, -0.00389787811, 0.00952334795, -0.0200544577, 0.00490923924, 0.00416061608, -0.00093037996, 0.00397346029, 0.0244022291, -0.0215948932, -0.0056362669, 0.00698234886, -0.0210478231, 0.0033652042, -0.0001543135, 0.00750062615, 0.00193094334, 0.0179669503, 0.0107974466, 0.00744303968, -0.0116540436, 0.0115748625, -0.00835722405, -0.0258994754, -0.0092714075, 0.00426859036, 0.00597818615, -0.0103583504, 0.0167000499, -0.004470143, -0.00909864809, -0.0080836881, 0.00689956825, 0.0102071865, 0.00753661757, -0.0147709064, 0.00595659157, 0.0109989988, 0.0229337756, 0.00477966946, -0.00257339142, -0.0149724595, 0.00931459758, -0.0245317984, 0.00519717112, 0.017880572, 0.00306467526, -0.0215948932, 0.0163113419, -0.0149868559, -0.015807461, -0.0173047073, 0.0135112051, 0.0137127573, -0.00707952585, 0.0047076866, 0.0100920135, -0.0108766276, 0.0218252391, -0.0292826742, 0.0276558604, -0.00410302961, -0.00723788841, 0.0139790941, -0.00731706945, -0.0118411994, 0.0371432155, 0.00300169014, -0.00651805848, -0.00739265187, -0.00401305081, 0.018154107, -0.0273103416, 0.0122802956, 0.00745743653, 0.0204575621, 0.00339759653, 0.0277710333, -0.0181829, -0.0151020288, 0.0367113166, 0.00865955185, 0.00301608676, -0.0489196293, 0.00380789954, 0.0249349028, -0.00588460825, 0.00384029187, 0.00689956825, -0.0167000499, 0.00684198178, -0.00781015307, -0.00488404511, 0.0135759898, 0.00472928165, -0.00775976479, 0.01623936, -0.0173910875, -0.000646947, 0.0204863548, 0.0229625702, -0.0188451428, 0.0131440917, 0.00557508133, -0.0202128198, -0.0344654508, 0.0081052836, -0.0132376691, -0.00819166284, 0.0167720336, 0.00856597442, -0.0163401365, 0.0120067606, 0.0210046321, -0.023581624, 0.00773817, 0.00675920164, 0.0163689293, -0.0200544577, 1.79113886e-05, 0.00242942548, 0.00115982571, -0.00698594796, -0.00381869683, -0.00484445412, -0.0133024538, -0.015807461, -0.00204791571, 0.00411742646, -0.0136407744, 0.0218396354, 0.00458891457, 0.0019813315, 0.0157930646, -0.00847959425, -0.0159946177, -0.00105545041, 0.00315465406, -0.00247081579, 0.0325363055, 0.0186867807, -0.0132232727, -0.0112581374, 0.0209470466, -0.0129929269, -0.020256009, 0.0228905864, -0.0117188282, -0.00383309345, 0.00452772947, 0.019867301, 0.0331121683, -0.0079325242, -0.0115028797, 0.0177078117, -0.0674336553, 0.0111069735, -0.00117062312, 0.00695355562, -0.00837162, 0.0169591885, 0.0307799205, -0.00685277954, 0.0403968468, 0.0109342141, 0.0107830502, 0.0260578375, 0.00840041321, 0.0107686529, -0.00600338029, 0.00585581502, 0.0253955945, -0.00115082785, -0.0021936812, -0.0141590517, -0.000106174892, 0.00197053398, 0.00383309345, -0.0092714075, -0.00750062615, 0.00235564285, 0.00160612015, -0.0100416252, 0.00121471274, -0.01374155, 0.00616174284, 0.00053987233, 0.00624452345, -0.0129137458, 0.0138135329, 0.00230345526, -0.00322303781, -0.0142454309, -0.0120283552, -0.000626251916, 0.00824924931, -0.0126330126, 0.00574784074, -0.0110637834, -0.0227322243, 0.0116252508, -0.0121435281, 0.00018895531, 0.00165110955, -0.0153899603, -0.007515023, 0.00282893097, -0.00335080759, 0.0080333, 0.00368552841, 0.0134176267, -0.0355307981, 0.00473288074, 0.0450613424, -0.0066440287, -0.0132808592, -0.0237111934, -0.00412822375, 0.00481566135, 0.0135759898, -0.00734226359, -0.012373874, -0.0110637834, -0.00576583622, 0.0129929269, -0.0256979223, 0.012647409, -0.00208390714, -0.0120571489, 0.00914183818, 0.00262737856, 0.0036639336, 0.0190898851, 0.00502801081, 0.00332561345, 0.0164265148, -0.00134338229, 0.021897221, 0.0132952556, 0.000111742323, -0.00873873383, -0.0066512269, -0.000404004444, 0.0273967218, 0.014403794, 0.00749342795, 0.0123882703, -0.042901855, -0.000523226277, 0.0109918006, -0.00897627696, -0.00574784074, -0.00506040314, 0.00272455579, 0.0031186624, 0.0150876315, -0.00135238015, 0.0126546072, 0.00490923924, 0.0336016528, -0.021508513, 0.0289515536, -0.00868114736, -0.00756541081, 0.0191330761, 0.0344654508, 0.0163113419, 0.00719469832, 0.0116540436, 0.0190610923, -0.00827804208, 0.00794692058, -0.00676999893, -0.0219116174, 0.0033688033, -0.0100056333, 0.00228725909, -0.00439456059, -0.0119419759, -0.0110709816, 0.00593139743, -0.00130649109, -0.0125754261, -0.00862356089, -0.0122371064, -0.0145189669, 0.00512158871, -0.0147997, 0.0102143846, 0.029628193, -0.0105383079, -0.001234508, 0.00988326315, -0.00527635217, -0.000893038814, -0.00565786194, 0.00335980556, 0.0169447921, 0.00940817501, -0.026619304, -0.0127913747, 0.00919222645, -0.0167720336, 0.00472928165, -0.00501361443, 0.00639568735, -0.00703273667, -0.00263457699, -0.00274075195, -0.00510359323, 0.000821055844, -0.00269216322, -0.00822045561, -0.000100663696, -0.00832123216, 0.0191906616, 0.000411202753, 0.0246469714, -0.0144541813, 0.0244310219, 0.0127697801, 0.00578383217, 0.0258850791, 0.00247261534, 0.00710472, 0.00881071668, -0.0161817726, -0.0063165063, -0.0304344036, -0.00139916909, -0.00348037691, -0.00392667158, -0.0175494496, 0.0167288445, 0.0127481855, 0.0126618054, 0.00204431661, 0.00669081789, -0.00741424644, 0.0168008264, -0.0256547332, -0.00361534511, 0.00616894104, 0.00499921758, 0.0041102278, 0.0151020288, 0.0284476727, 0.00658644224, -0.00113913056, -0.0118124066, -0.0147349155, -0.0115028797, -0.00946576148, 0.00768778194, 0.00801890343, 0.0184852276, -0.00267236796, -0.00305567728, -0.00137397507, 0.00587381097, -0.0194641966, 0.0154907368, 0.00230345526, 0.00132088759, 0.0168872066, 0.0298585389, -0.0124818478, -0.0209182538, 0.00163401361, -0.00865235366, 0.0209326502, -0.0183844529, 0.00440535834, -0.0168152228, 0.0115532679, 0.0200688541, 0.0138063347, 0.0227178279, 0.0185860042, 0.026662495, -0.0113661122, 0.015807461, 0.0119995624, -0.0122083127, 0.00646047201, 0.0131296953, -0.0131440917, 0.00251580495, 0.00511079142, 0.00233044894, -0.00211629947, 0.00737825502, -0.000407828542, 0.00148014992, 0.00963852089, 0.0163401365, 0.00101765932, 0.00750782434, -0.0138351284, -0.0126690036, 0.0278286189, -0.0235672258, 0.02841888, 0.00636689411, -0.00107524567, -0.00444494886, 0.000311551325, -0.00663683051, 0.02287619, 0.0171319488, -0.00309886714, -0.0240279175, 0.0163401365, -0.00492003653, -0.00353796338, -0.0181829, 0.00670521427, 0.00727028074, -0.00520077, 0.0108046448, -0.0149292694, -0.00798291247, -0.0172183271, -0.00814847276, 0.00866675, -0.0013730753, 0.00428658631, -0.00953774434, 0.0193202309, 0.00617613923, 0.0239127446, -0.00173029082, 0.00770937698, -0.0284044836, -0.00398425758, -0.00924981292, 0.0113805085, -0.016512895, -0.0246613678, 0.0172759145, 0.0011976168, -0.0186723843, -0.0103079621, 0.0121291317, 0.0082276538, 0.0147133209, -0.0150444424, 0.0128705567, 0.00377910631, -0.0220267903, -0.0165848788, 0.0117476219, 0.000661343627, -0.00227466202, -0.0209758393, 0.012373874, -0.0201264396, 0.00622292841, -0.0153755639, 0.0231065359, -0.0200400613, -0.00165470864, -0.0187011771, -0.0058090263, -0.0127913747, -0.00465369923, 0.000448768871, -0.0102647729, 0.0134248249, -0.0213213582, 0.0163833257, -0.0197953191, 0.00353976293, 0.0187875573, -0.0167144481, -0.0237687789, 0.00909864809, -0.00318524684, -0.0245605912, 0.0121435281, 0.00037273686, 0.0176790189, 0.00266157067, -0.0126042189, -0.026230596, 0.0027011612, 0.00537712825, -0.00349117443, 0.00237723789, -0.011438095, -0.0238983482, -0.0211054087, -0.00988326315, -0.0105023161, -0.00737105682, -0.0174198803, -0.0107254637, -0.0114956815, -0.00622292841, 0.00571544841, -0.0130937034, -0.0108478349, -0.0144901732, 0.041577369, 0.00317264977, -0.00408143457, -0.00780295487, -0.0116396472, 0.014130258, -0.0107038682, 0.0113661122, -0.0264897346, -0.0121867182, -0.00273715262, -0.00655405, -0.00773097156, 0.0140870688, -0.0026525727, -0.0382949449, 0.00365673518, 0.0077525666, -0.0223867055, 0.00849399157, -0.0163113419, -0.00804769713, -0.000738725299, -0.00329502067, 0.00111033744, 0.0571544841, 0.0355595909, 0.0323635451, -0.0332849286, 0.000826904434, -0.00853718072, 0.00503880857, 0.0323059596, -0.00639928645, 0.00466449698, 0.0131656863, 0.0210334267, -0.00773817, 0.007572609, 0.00591340149, 0.0173047073, 0.0191906616, 0.0063201054, 0.0173335, 0.00773097156, 0.00867394917, -0.0237399861, 0.00417141337, -0.0168008264, 0.0135831879, 0.00159172353, 0.00727388, -0.0100632198, -0.0123378821, 0.00139916909, 0.00499201939, 0.0243878327, 0.0126042189, 0.00708672404, -0.00776696298, 0.0124602532, 0.00754381577, 0.0258274917, 0.00355595909, -0.027051203, 0.0204287693, 0.013079307, 0.0145477597, -0.00164211169, 0.00612935051, -0.0131081, 0.00186615868, -0.0143606039, 0.00968171, -0.0116396472, 0.0234088637, -0.0297145732, -0.0169879831, -0.0151164252, 0.0158218592, -0.0092426138, 0.0321619958, 0.00769498, 0.00839321502, 0.0118915876, -0.0064100842, 0.0119779678, -0.0106462827, 0.0125610298, -0.00267776684, -0.0397633947, 0.00570825, -0.0192194544, 0.000865145412, -0.0126618054, -0.0185860042, -0.00154133548, 0.000397481, 0.00729907397, -0.00355775864, 0.011438095, 0.0118052084, 0.0104663251, -0.00303408247, -0.00542391744, -0.0275838766, 0.0276270658, -0.00285232556, -0.0308087133, 0.00793972239, -0.0178661756, -0.0159370303, -0.0218108427, -0.0163977221, 0.00401665, 0.0161097907, 0.0275550839, 0.00249960879, 0.00323023601, 0.0105671007, 0.0265905112, -0.0113949049, -0.00642807968, 0.000202902011, 0.00482645864, 0.0156059097, 0.0103727467, 0.00111483631, -0.00389787811, -0.000604207104, 0.0246181786, 0.0154907368, -0.00100596214, -0.00073287671, 0.00624812255, -0.0103943422, -0.00134968082, 0.000766168814, -8.23867667e-05, 0.0109989988, 0.00955214072, -0.00994804781, 0.00883950945, -0.00269936165, -0.00522596436, -0.000447419181, 9.32966868e-05, -0.0318452679, -0.021666877, -0.00989765953, 0.0067412057, 0.0122299073, 0.0160522033, 0.0292682778, 0.00599978119, 0.0146125443, -0.00133438443, 0.00159622252, -0.000395456475, 0.0337168276, 0.0136551708, -0.00274795014, 0.0118915876, 0.00985446945, -0.00472568255, -0.00407063728, 0.0157786682, -0.00408863323, 0.014375, -0.00904826, 0.0097249, 0.00532314135, -0.00559307728, 0.0601777695, 0.00763019547, 0.013820732, -0.0131584881, -0.0169735868, -0.00560387457, -0.00586661277, 0.0135615924, 0.0141950427, -0.0137055591, 0.0128705567, -0.0131800827, 0.00914903637, 0.00299269217, 0.0133816358, 0.0144685786, 0.00801170524, -0.0203855783, -0.00713711232, -0.0149004767, 0.00862356089, -0.00809088629, 0.0154907368, 0.0224586893, -0.0180677269, 0.00541671924, -0.00262198, 0.0089114923, -0.0135615924, -0.00899787247, 0.00254099909, -0.0128777549, -0.000319424464, 0.00169249973, 0.02287619, 0.0564346537, -0.00917782914, -0.0139718959, -0.00220627827, -0.0061401478, 0.0111861546, -0.0122011146, -0.0190754887, -0.0163257383, 0.0055786809, 0.00294590322, 0.0176934153, -8.82353852e-05, 0.0227610171, -0.00711911637, 0.005035209, 0.0157210827, 0.0276846532, -0.0221851543, -0.00597098796, -0.0137847401, 0.0033688033, 0.0162249636, -0.00101945887, -0.00518637337, -0.00744303968, 0.0108478349, 0.00821325742]
24 Nov, 2021
jQWidgets jqxScrollBar width Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The width property is used for setting or getting the width of the specified jqxScrollBar. Syntax: For setting the width property: $('#jqxScrollBar').jqxScrollBar({ width: 300 }); For getting the width property: var width = $('#jqxScrollBar').jqxScrollBar('width'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar width property. In the below example, the value for the width property has been set to 300. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar width Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin: 28px;" id="button_for_width" value="Value of the width property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 300, height: 40 }); $("#button_for_width").jqxButton({ width: 250 }); $("#button_for_width").jqxButton(). click(function () { var Value_of_width = $('#jqx_Scroll_Bar'). jqxScrollBar( 'width'); $("#log").html(( Value_of_width)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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 width Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-width-property?ref=asr5
PHP
jQWidgets jqxScrollBar width Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxScrollBar width Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.00594102917, 0.0257502459, -0.0147640295, 0.044472646, 0.0888897404, 0.000792108243, 0.031805858, 0.0331669822, -0.0140348561, -0.000354604068, -0.0121528935, 0.0408615023, 0.0148473643, -0.0309447404, -0.00848619174, 0.0149723655, -0.0363336802, -0.0169862732, -0.0410281681, 0.0438893065, 0.0146529181, -0.0151251443, -0.043361526, -0.000395403069, -0.0590005629, 0.0225696601, 0.0183612872, 0.0202085264, -0.0086875828, 0.0219029877, -0.0162084885, 0.0170557182, -0.010944549, 0.000471792708, -0.055278305, -0.0181112848, -0.0144168045, 0.00731257, -0.00848619174, -0.0228196625, -0.0177223906, 0.020583529, -0.00431254134, 0.0328892022, 0.0146945845, 0.023264112, 0.00557297, -0.00372225768, -0.0034618387, 0.0125140082, -0.00560074812, 0.0146251395, -0.00581255555, 0.0264585856, 0.0160001535, -0.0211668685, 0.0146668069, 0.0501393676, 0.0056111645, 0.0158612616, 0.0342781059, -0.0410003923, -0.0204029735, -0.00868063886, -0.0250419062, 0.0170418285, -0.0135487402, 0.0364725702, -0.0212085359, 0.015902929, -0.0242085643, 0.00733340345, 0.00649658963, 0.0338892117, 0.00411115028, 0.0148195857, -0.0241252296, -0.00790285319, 0.0252224635, 0.0181251727, -0.0233474448, -0.00441670883, -0.0365281254, 0.00867369398, -0.0214446485, 0.0102153756, 0.0264030304, -0.0257780235, 0.0615561418, -0.00603825226, -0.0334447622, 0.00160852226, 0.00606255792, -0.0103889881, -0.00210939511, -0.000467886421, -0.0251391288, 0.0330558717, -0.0255696885, 0.0167084932, 0.0573894382, 0.0366392396, -0.0102778757, -0.0179862827, 0.0100695407, -0.0133126276, 0.0227085501, -0.0107848253, 0.0167640485, -0.00898619648, 0.021680763, -0.00202779705, -0.011013994, -0.00411115028, -0.0693895519, 0.0306669604, -0.0095417574, -0.0328614265, 0.0248752367, -0.00715979049, 0.0202224161, 0.0112639964, -0.015972374, 0.022166878, -0.0239863396, 0.0221113227, -0.0130140129, 0.00186112884, 0.0184585098, -0.0236946698, 0.00272745662, 0.0211113133, -0.0121320607, -0.0271252599, -0.0069236774, 0.0321669728, 0.00473962864, 0.0122153945, -0.0141737461, -0.0149723655, -0.0258335806, -0.0219168756, 0.00392017653, 0.0287502743, 0.000595057791, 0.0524727218, 0.0025955108, 0.032000307, -0.033666987, 0.0364170149, -0.0207918659, -0.026639143, 0.0184029527, 0.020583529, 0.0600005724, -0.0162501559, -0.0217779856, 0.055278305, -0.0162918214, 0.00489588, -0.00645145029, -0.0264863633, 0.0194585193, 0.0311391857, -0.0127153993, -0.0114306649, 0.0348058864, -0.0105278781, -0.0627228245, 0.0221113227, -0.0161112659, -0.0122362282, -0.0109167714, 0.0116181662, -0.0330558717, -0.0336947665, 0.00141581218, -0.0338892117, 0.00534727331, -0.0164029337, -0.00372225768, -0.00953481346, 0.0062500597, 0.0113334414, -0.0192918517, -0.00125435228, 0.0207779761, 0.00874313898, -0.0338336565, -0.028500272, -0.0264030304, 0.0218057632, 0.00445837574, 0.0422226265, -0.00410420587, -0.0329447575, -0.0317780823, -0.0155973714, -0.00398267712, -0.0102431532, 0.00893064123, -0.0129792904, 0.00519796647, 0.014250136, 0.00141928438, 0.0122362282, -0.00591672305, -0.0527505055, 0.0388892591, -0.0104237106, -0.0192918517, -0.000611985, 0.044889316, -0.0251530185, -0.0221113227, 0.0106251016, -0.00192362943, -0.0022066182, -0.0245974567, -0.0136181852, 0.00933342241, -0.017833503, -0.0275141522, 0.0129376231, -0.085778594, -0.000679259945, -0.00121876167, -0.0189724043, -0.00639589457, 0.0182085074, -0.0430559665, -0.0188612919, -0.0204307511, 0.0208751988, 0.028430827, 0.0376670249, -0.00370489643, 0.0251391288, -0.00904175267, 0.0237363372, -0.0152362566, -0.0193057396, 0.00296183373, -0.00851397, 0.0125209531, 0.00995148346, -0.0239168946, -0.025125239, 0.00888897385, -0.00442365324, -0.0271113701, 0.0198751893, 0.0205279738, -0.017694613, 0.023153, 0.0054722745, 0.0100556519, -0.00204689451, 0.0303614, 0.00677437, 0.0271252599, -0.00702090049, -0.00306252926, -0.0178751703, 0.0242641214, 0.00745146, 0.0392225981, -0.021472428, 0.0172362756, -0.0440281965, 0.011909836, -0.0403614976, 0.0582783334, -0.00112067047, -0.0337781, 0.0350003354, -0.0330280922, -0.0229863301, 0.0147640295, 0.00283162436, 0.0113403862, 0.000152887747, 0.0453059897, 0.0711673498, 0.0175973903, -0.012111227, 0.00686117681, -0.0307502933, 0.00481949048, 0.0228335522, -0.0230141077, -0.0278613772, 0.0203335267, 0.0348058864, 0.0188890696, -0.0147223631, 0.0032726007, -0.0188474022, -0.0271113701, 0.00282120751, -0.0244585667, -0.0188196246, -0.0435281917, -0.031528078, 0.0300558433, 0.027055813, 0.0152640343, -0.0366947949, 0.00700353924, -0.0151945893, 0.0438337512, 5.9787897e-05, -0.0253335759, -0.0376670249, -0.0151529228, -0.00276912376, 0.0337503217, 0.0288613867, -0.0380281396, -0.00280211, 0.0109376041, -0.00438893074, -0.0303891785, 0.0334169865, 0.0172640532, -0.0146112507, -0.022166878, 0.00142362469, 0.00731257, -0.0365836844, -0.0441115312, 0.00355038117, 0.021541873, -0.0226252154, 0.0132084591, -0.0475837886, -0.00514935469, -0.0184446201, -0.0116667785, 0.0183335077, 0.000330949348, 0.00171269, -0.00922231, -0.0259308033, 0.0286113843, -0.0675006434, -0.0361670107, 0.0106945466, 0.0493615828, 0.00355211715, 0.00123091449, 0.042055957, 0.0258474685, 0.0461948849, 0.0224585477, -0.000967023137, -0.033805877, -0.0155001478, -0.0077361851, -0.0142640248, 0.00359031209, 0.0107501028, -0.00338544906, 0.0113195525, 0.0265280306, -0.0348058864, -0.0228057727, -0.00535421772, -0.0202085264, -0.000829435, -0.0120070595, -0.034917, -0.0187640674, 0.0373892449, -0.0158751514, 0.0370281301, -0.00258856639, -0.0171668306, -0.019611299, 0.00995842833, -0.0375281349, 0.0493338034, -0.00419101212, 0.0177085027, 0.000428172498, -0.0106042679, -0.0194446295, 0.00470837811, 0.0437504165, 0.0121251158, -0.0478615686, 0.0615561418, 0.00288718031, -0.0377225839, 0.00167362706, 0.00344794965, 0.0257363562, -0.0228891075, 0.000449657062, 0.00916675385, 0.00562852575, -0.0414170623, 0.0165001582, -0.0100000957, 0.0236946698, 0.00594797358, -0.0293336138, -0.00641672779, 0.0250002388, -0.0241946746, 0.00136546441, -0.0172223859, -0.0114584425, 0.0428337418, 0.0358892307, 0.00154949399, 0.0385837033, 0.0263335854, 0.0184446201, -0.0224585477, 0.0261252504, -0.0263335854, -0.0157223716, 0.0204724185, -0.0368059054, -0.00202953327, -0.085000813, 0.0249307938, 0.0385559238, 0.0145140272, -0.0443615355, 0.026639143, 0.00895147398, 0.0150556993, 0.0437504165, -0.00418059528, 0.0406670533, 0.0265280306, -0.0180279501, -0.0213196483, -0.0244585667, -0.0100000957, 0.0136320749, -0.0038507313, -0.00434726384, 0.0114306649, -0.0292502791, -0.0356670059, 0.000632818555, 0.0135834627, -0.00797924306, -0.0390837081, -0.0202779714, 0.00654867385, -0.0199724138, -0.0121667832, 0.00184029539, -0.00311287702, 0.00905564241, -0.0166807156, -0.0498338081, -0.0163196, -0.0301669538, 0.0201113038, 0.0113612199, -0.0308058504, -0.015902929, 0.0103473207, -0.0117153898, 0.028500272, -0.0452226549, -0.00046615029, 0.0227641053, 0.0402226076, 0.0208890885, 0.00240800902, 0.0116251111, 0.0159445964, 0.00723618036, 0.0107987141, 0.0189585146, 0.00298613962, 0.0112639964, -0.00596533483, 0.0182918422, -0.0144029157, 0.00950703491, -0.0220002104, 0.00205904734, 0.00835424662, 0.0218335427, 0.00439934758, -0.0193890743, -0.00213196478, -0.0200557467, 0.041361507, -0.00640978338, -0.00138195767, -0.00167449517, 0.00332642067, 0.00848619174, 0.0470282286, -0.0258474685, 0.011222329, 0.0436948612, 0.00570144318, -0.028639162, -0.0138265211, -0.0024948155, -0.0161251538, 0.0315003023, -0.00394795416, -0.0393337086, 0.00504518719, -0.022444658, -0.0513616, -0.0334725417, -0.0261113606, 0.0238196719, -0.00276391534, 0.0183057301, 0.0115834437, 0.0116876112, 0.0131320702, 0.0536671802, 0.0370836891, -0.0222779904, -0.0256530233, -0.00518407719, 0.0271530375, -0.0277224872, 0.00415628962, 0.0261946954, -0.0013628602, -0.0440281965, 0.0166251585, -0.00888897385, -0.00399656594, -0.00856258161, 0.0242641214, 0.00589589, 0.0160279311, -0.0274724849, -0.0164584909, 0.0243335664, 0.00105556566, 0.00137935346, 0.0115348324, 0.0126112318, 0.0337503217, 0.0306114033, 0.00137067284, 0.0107084354, 0.00390281505, 0.015625149, 0.00707298424, 6.23378364e-05, -0.0213196483, 0.00154168135, -0.0264030304, 0.0103473207, -0.005506997, -0.0107084354, 0.0138195762, 0.00731951417, -0.0228335522, 0.0125556756, 0.00313544669, -0.0365559049, 0.031666968, 0.0167779382, 0.00970842596, -0.000506515265, -0.00628825463, -0.00736812595, 0.00173612766, 0.043500416, -0.0326114222, 0.0164168235, 0.0206668638, 0.0159862638, -0.0402781628, 0.00132206129, 0.0190835148, 0.0101459306, 0.0219724327, -0.00574311055, -0.020236304, -0.0515282713, -0.0168751609, -0.0102987094, 0.0342503265, 0.00403128844, 0.000552956655, -0.00760423951, -0.00952092465, -0.0168473832, 0.0101389857, 0.0150695881, -0.0455282107, 0.0250280164, 0.0231807772, 0.0350281112, 0.00710770674, -0.0181112848, -0.0051910216, -0.000712246401, 0.0342225507, -0.00287849968, -0.0262085833, -0.0232918896, 0.000933168631, 0.031528078, 0.0045903218, -0.00967370346, -0.0132015152, -0.0179446153, 0.00927786622, 0.00678478694, -0.0120348372, 0.00648270082, -0.00482643489, 0.0105556566, -0.0239446722, 0.0279030446, 0.00593755674, -0.0274447072, -0.0174029432, 0.00391323166, -0.0358336754, -0.003303851, 0.0183612872, -0.00618755911, 0.0160279311, 0.0313614123, 0.0180835053, -0.00378128607, 0.0188612919, -0.0346669964, 0.00579866627, 0.028291937, 0.0404448323, -0.0253891312, 0.0477226786, -0.00361809018, 0.020583529, -0.0226668827, 0.0191807393, 0.0162640437, 0.0153751466, -0.00772229582, 0.0178612825, -0.0129445679, 0.00659034075, 0.00148178497, 0.0225835498, 0.00273960945, -0.00500352, -0.0179585051, 0.0210835338, -0.0169168282, -0.0086181378, 0.0249585714, 0.0157918166, 0.0145556945, -0.030555848, 0.0400003828, 0.0366114601, 0.00535421772, 0.0156668164, 0.00743062655, -0.00539935706, 0.0391948186, 0.00638547773, 0.00109636469, -0.00546533, -0.0254585762, -0.00151216716, 0.026500253, 0.0102987094, 0.01156261, 0.0251113512, 0.00235592527, 0.0214307606, 0.0140626347, -0.0155279264, -0.0332780965, 0.0266669206, 0.0116598336, 0.00802785438, 0.00721534668, -0.00590630621, 0.0228057727, 0.0136945751, 0.0133265164, 0.00378475827, 0.0263335854, 0.00687159318, -0.00210071448, -0.0169168282, -0.0100000957, -0.00727090286, -0.00413892837, 0.0085486928, 0.0196251869, 0.0135279065, 0.00781951938, 0.016930718, -0.0223196577, -0.00523616094, 0.0228196625, 0.0246252343, -0.00703478931, 0.0437226407, 0.0320280828, -0.025125239, -0.0132084591, -0.0191112943, -0.0266947, -0.016861273, 0.0223474354, 0.0092987, -0.0019114766, -0.043917086, -0.0071042343, -0.0168196056, 0.0192501843, -0.00726395845, 0.00319100264, -0.00160505, -0.00334378192, 0.020583529, 0.00648964522, -0.0210696459, 0.00693756621, 0.0279586, -0.00635075523, 0.0187779572, -0.0106876018, -0.0189862922, -0.0215279832, -0.033111427, 0.0153057016, 0.00206078356, -0.00765979523, -0.0325280875, 0.017902948, -0.00273960945, 0.000542105874, 0.0128820678, 3.59975238e-05, -0.0368614644, 0.0263474733, -0.0341947712, -9.69518806e-05, 0.0164862685, 0.00366670173, 0.0239030067, 0.0240974519, -0.0109931603, -0.00870841648, 0.0114653874, -0.0358336754, 0.00299829245, 0.0322225317, 0.0106806578, -0.044194866, -0.00970148109, 0.0281808246, -0.0499449223, -0.0130904028, -0.000145292186, 0.0393614881, 0.000683166261, 0.00185939274, 0.0215002056, -0.0183751751, -0.00836119056, 0.00766674, 0.0177918375, -0.00986815, 0.0130417915, 0.00303995959, -0.0025225936, 0.0170557182, -0.00404517772, 0.00215627067, 0.0156807061, 0.0129376231, 0.021958543, 0.0129376231, 0.00599658489, -0.000561203284, -0.000410377193, 0.00945147872, -0.00565977627, -0.00680562062, 0.0125556756, 0.0370836891, -0.0148890307, -0.000113282331, -0.0110209389, 0.0133681828, 0.0413337275, 0.0120903933, -0.026083583, -0.021958543, 0.0041701789, -0.0236252248, -0.00959037, -0.0298891738, 0.0197085217, -0.0189862922, -0.0122084497, -0.0202224161, -0.0156390388, 0.012180672, -0.0288336091, 0.0200418588, 0.0112431627, -0.031250298, 0.0197224114, 0.0314169675, -0.0234724469, -0.0319725275, 0.0261252504, 0.00366670173, 0.0193335172, 0.0424170718, 0.00126824132, -0.021402983, 0.015972374, -0.0491115786, 0.000783861673, -0.0176668353, 0.000463112054, 0.0192779619, 0.014111246, 0.00445490377, 0.0158890411, 0.00350176962, 0.00450698752, -0.0346669964, -0.00253648264, 0.0301669538, 0.00848619174, 0.00748618273, 0.0214168709, 0.0255419109, -0.0158473738, 0.0187362898, 0.0047639343, 0.0102917645, 0.0220835451, -0.0170418285, 0.0223335475, -0.0214585382, 0.0178196151, -0.00336808781, -0.0114098312, -0.0272363704, -0.0229307748, 0.00491324114, -0.014111246, 0.00978481583, -0.0122223385, -0.00906953122, -0.0372225791, -0.0191807393, -0.00769451773, -0.000328779191, 0.0177918375, 0.0366392396, -0.0161668211, -0.00415976206, 0.00238370337, -0.0366392396, 0.0193474069, 0.00794452056, -0.0106320456, 0.0234863348, 0.00486810226, -0.0445837602, 0.00115973328, -0.0206807535, 0.0443059802, -0.0304447357, -0.0175418351, 0.00397573225, 0.0101389857, -0.0115209436, 0.00942370109, 0.022236323, -0.0511949323, -0.012736233, 0.0349447764, -0.0167084932, -0.0147918081, 0.015694594, -0.000353736017, 0.0199446343, -0.0343614407, 0.00442018127, -0.0371948, -0.00153126463, -0.0164723787, -0.017347388, 0.0277085975, 0.00501393666, -0.00146702793, 0.033528097, 0.019958524, -0.015972374, -0.00498615857, 0.030972518, 0.00619450351, -0.0246252343, 0.0263752528, 0.00510421535, -0.0257502459, -0.0320558622, -0.0098959282, 0.0164446011, 0.0262502506, -0.00869452767, -0.00529866153, -0.0190974046, -0.00601394614, -0.0249307938, 0.00619103154, 0.0188196246, 0.015694594, 0.028500272, -0.0180835053, -0.0475282334, 0.000789504091, -0.00281773531, -0.0115417773, -0.0364170149, 0.0108681591, 0.0293613914, 0.0215140935, -0.0263752528, 0.00693062181, 0.0228057727, -0.0123473406, -0.0425004065, 0.0113820527, -0.0225557704, 0.0328058675, 0.0138195762, -0.00926397741, 0.0179307275, 0.00874313898, 0.0258058012, -0.0241113417, -0.0148751419, 0.0225279927, -0.0125348419, 0.00110244111, -0.00181772572, -0.0364725702, -0.0230141077, 0.00413545594, -0.0231391098, -0.00376739702, 0.00994453952, -0.000673617527, 0.0198335219, -0.0181251727, 0.00522227213, 0.0033698238, 0.0419726223, 0.0157918166, -0.00569449877, 0.0238613393, 0.00746534904, -0.0273474827, 0.0448059849, -0.0211807583, 0.0258335806, -0.0143473595, 0.0195140745, 0.0154307028, 0.0273474827, 0.00202953327, 0.0273613725, -0.0166390482, -0.0201251917, 0.0400559381, 0.00909730885, -0.0344169959, 0.00649311766, -0.00722923549, 0.000905390596, 0.0176112801, 0.0143612484, -0.00900008623, -5.34401806e-05, -0.0225418825, -0.0127292881, 0.00372573, 0.0219168756, 0.0191112943, 0.0246530138, 0.0169029385, -0.0261669159, 0.0291947238, -4.00123172e-05, 0.0229585525, -0.0250835735, -0.0116112223, 0.0193335172, 0.0100278733, 0.042055957, -0.000640631129, 0.013145959, 0.0086875828, 0.013215404, 0.00352433929, 0.0319169722, -0.0208890885, 0.0378614739, -0.020097414, 0.000137479612, 0.00540630147, -0.0149029205, -0.0134029053, -0.00132119318, 0.0188612919, 0.0217779856, -0.00299655646, -0.0183473974, 0.00724312477, 0.00633339398, -0.0129306791, -0.00775007391, -0.0264724754, 0.0130001241, -0.0361114554, 0.0264863633, 0.0100139845, -0.00315280794, -0.00527435588, 0.021611318, 0.00111198984, -0.00870841648, 0.0020104358, 0.00348093593, -0.0129098454, -0.00203647767, 0.0125487307, 0.00717368, 0.000506081211, 0.00917369872, -0.0106667681, -0.00365281268, -0.0299169514, 0.00357989524, 0.0350558907, -0.00377086923, 0.00991676096, 0.0145556945, 0.011215385, -0.010736214, 0.0195279643, -0.0115695549, -0.00340975472, -0.00437156949, 0.015625149, -0.0107153803, 0.0250141285, -0.00332815689, 0.00825007912, -0.0128195668, -0.00617019786, -0.000751743268, -0.00163022394, 0.0113403862, -0.0249307938, 0.0193057396, 0.00142015249, -0.00977092702, -0.00657645147, 0.00383684225, -0.0189168472, 0.0276669301, -0.00850008149, -0.0103264879, -0.007986187, -0.00303995959, -0.000191408079, -0.00834730174, 0.00132119318, -0.0171668306, -0.0374448, -0.0221807677, 0.0907230899, -0.00111719815, 0.00588200055, -0.00767368451, -0.00580908312, -0.0394170433, 0.00551046943, 0.0199307464, 0.0289447214, 0.00583338924, 0.0183473974, 0.0242363419, 0.0187779572, -0.013493184, -0.0117153898, -0.0195001867, -0.00146529172, -0.00259898324, 0.0211529806, -0.0180140603, -0.00783340819, 0.0293613914, 0.000340715051, -0.0108334366, 0.0372781344, 0.0120348372, -0.0364447907, -0.017139053, -0.044472646, 0.0199863017, 0.0158612616, 0.00258335797, 0.017416833, 0.00417712331, 0.00298266741, 0.026916923, -0.0216668732, 0.0113681639, -0.0348058864, -0.0111945514, -0.0265974756, 0.00392712094, 0.00863897149, -0.0136529077, 0.00137674925, -0.0116251111, -0.0323891975, -0.00414240081, -0.0161529314, 0.032416977, -0.044750426, -0.00956259109, -0.0132015152, 0.00294273649, -0.00580561114, 0.00768062891, -0.0125348419, -0.0105139893, 0.0124862306, -0.0500282571, -0.00332121225, -0.00241842587, -0.0105764903, 0.0181807298, 0.0215279832, 0.00792368688, 0.00463893311, 0.0257502459, -0.00602089101, 0.0395281538, 0.0393892638, 0.0232918896, -0.00783340819, -0.00149480591, -0.0245002341, 0.00298961182, -0.0035347559, 0.021472428, 0.0281113796, -0.0219029877, -0.0286669396, 0.00326044788, -0.00440976443, 0.0156807061, -0.0184168424, 0.00492713042, -0.00890286267, 0.00089323771, -0.0054028295, 0.00785424188, 0.00419448456, 0.00143751374, -0.0169862732, 0.00299482024, 0.00535769, -0.00513893785, 0.0401392728, -0.00696881674, -0.00887508504, -0.00700353924, 0.00289759715, -0.00114584423, 0.00429170765, 0.00815285556, -0.0152640343, -0.0280002672, 0.00375003577, 0.0165001582, -0.0133195715, 0.019611299, 0.00566672068, 0.00963203609, 0.0054097739, 0.0192918517, 0.0205557514, 0.00381600857, -0.000413849426, -0.0119376136, -0.000754347479, -0.00317016919, -0.019611299, 0.00784729701, 0.00633686595, 0.0100556519, -0.00687506562, -0.0199029669, -0.0240557846, 0.00850008149, 0.0147084733, -0.0257363562, -0.0323058628, 0.0122292833, -0.026014138, 0.021680763, -0.0200696364, 0.0135209626, -0.00184897601, 0.0249724612, 0.0120903933, 0.00361114554, -0.017069608, 0.00491324114, 0.00526393903, -0.00611811411, 0.026291918, 0.0405559428, 0.0102987094, -0.00326392, 0.00803479925, 0.00839591306, -0.0338892117, -0.021611318, 0.0212085359, -0.00218578475, 0.0182501748, -0.00896536373, -0.0102500981, 0.000314890145, -0.0350836702, 0.0057951943, 0.020236304, 0.0323058628, -0.00998620689, 0.000980912126, 0.000775615044, 0.00905564241, 0.00566672068, -0.0180279501, 0.00523268897, 0.00632992154, 0.00539241266, -0.00405212212, 0.0167223811, -0.00246530143, 0.00934731122, 0.00560074812, 0.00728479167, 0.00158595259, 0.0233891122, 0.00925008859, -0.0123820631, -0.00389587064, -0.0169862732, -0.000945321517, -0.00516324397, -0.00756257214, -0.00980564952, -0.0142154135, 0.0208335314, 0.00137674925, -0.0213474259, 0.0206251964, 0.0258196909, 0.00606255792, 0.0193751846, 0.00402434403, 0.00173265545, -0.0229585525, -0.0106042679, -0.00403128844, 0.000101888996, 0.0105348229, 0.0452226549, 0.0208335314, -0.0127084544, 0.00596186239, -0.0148612531, 0.0174029432, -0.00139584672, 0.00173786387, 0.0103750993, -0.0168751609, -0.000698791409, 0.000616325357, 0.00602089101, 0.00529518956, 0.0116737224, -0.0229307748, 0.0016189391, 0.00180036447, -0.0131112365, -0.00136893673, -0.0273197051, 0.0069584, -0.00628130976, 0.00607644673, -0.0234446675, 0.000658426434, -0.000928828318, 0.0200001914, 0.0115278875, 0.0378059149, 0.028639162, 0.0246391241, 0.00739590405, 0.0111042727, 0.0144862495, -0.0210418683, 0.00938897859, 0.0201113038, -0.0186668448, 0.0170834959, -0.00772229582, 0.026291918, 0.0111042727, -0.000104221916, 0.0261113606, -0.020375194, -0.0106876018, 0.020305749, 0.017694613, 0.0297225062, 0.0150279216, -0.035167, 0.0230557751, -0.00262155291, -0.00193231017, 0.001264769, -0.017555723, -0.0317780823, -0.00229689688, 0.00502435351, -0.000153430286, -0.00973620452, -0.0364170149, -0.0156390388, -0.00589589, 0.0129029006, -0.00638547773, -0.0255419109, -0.00114063593, 0.0172223859, 0.00939592347, 0.00158161228, 0.0137570761, -0.0206807535, 0.0257780235, 0.0175696127, -0.0227641053, -0.010736214, -0.0220418777, 0.0147223631, -0.00643408904, -0.0142084686, -0.0232363325, 0.0186529551, -0.0027153038, 0.0180140603, 0.000975703762, 0.0103334319, 0.0207363088, 0.0186112896, -0.0111667737, -0.00280905468, -0.000637158868, 0.0377503596, 0.0110487165, -0.0365559049, -0.0169029385, -0.0160834864, 0.0220140982, -0.0122570619, -0.00560074812, -0.0150001431, -0.0241252296, -0.015625149, 0.0115765, -0.0126528982, 0.00950009096, -0.0164584909, -0.0150279216, -0.0212363135, -0.0162779335, -0.0192224067, -0.0016519255, 0.00221529882, -0.00334378192, -0.0164862685, -0.0056111645, -0.0206946414, -0.00209029764, -0.00738895964, -0.0410003923, 0.0199863017, 0.0260280259, -0.00615630858, 0.019819634, -0.0325280875, 0.00661464641, -0.0139098549, -0.00300350087, -0.00118837936, -0.024778014, -0.00195140752, -0.0245557893, 0.0241946746, -0.000537765562, -0.0233752225, -0.0066424245, 0.00733340345, -0.0150279216, 0.0134445727, -0.0159307085, 0.0155140366, 0.00469101686, -0.00308683515, 0.00337676844, -0.00104601693, -0.0416115075, -0.00299308402, -0.00108334364, 0.00381600857, 0.0227779951, 0.00895147398, 0.0120695597, 0.0406392775, 0.00714590168, -0.0116876112, 0.0144168045, -0.0173890553, -0.0105834343, -0.00109376048, 0.0250696838, 0.00904869754, -0.00150088244, -0.0368614644, -0.00995842833, -0.0127987331, 0.00839591306, 0.00560422, -0.0149862543, 0.0141459685, 0.00478129555, -0.00201738044, -0.00163369614, 0.0240974519, 0.0199863017, -0.00363892363, 0.00850008149, 0.00796535425, -0.043639306, -0.0102292644, -0.00511463219, -0.00548963575, 0.0124306744, 0.0145140272, 0.00860424899, -0.0135001289, 0.0109306602, -0.00945842359, 0.0389448181, 0.028916942, -0.000798184716, -0.0106667681, -0.0267919227, 0.0251113512, -0.0276252646, 0.0139584662, -0.0177223906, -0.0191390719, -0.00471532298, -0.00781257451, -0.0131112365, 0.00887508504, 0.0246946812, -0.00161546678, 0.0128334556, -0.0226946604, 0.0083056353, -0.0194862969, -0.0101737082, 0.0169862732, -0.0276113749, -0.0035278115, 0.013493184, 0.00740979286, -0.00247224583, 0.0581672229, 0.00827091187, -0.00688548246, -0.0185974, -0.0185974, -0.0192779619, -0.0186807346, -0.00410073344, -0.0272502601, 0.0122917844, 0.00760423951, 0.00643408904, 0.0179307275, -0.00977092702, -0.00476740673, 0.0113681639, 0.00694451062, 0.00738895964, -0.00481601804, -0.0100764846, -0.0107292691, -0.00216147886, 0.0280002672, -0.0299169514, 0.00895147398, 0.0243474543, -0.00177692669, 0.00678478694, 0.00114844844, 0.0136529077, 0.015694594, 0.0135973524, 0.00240106462, 0.000928828318, -0.0148195857, -0.00786118582, 0.0226807725, 0.00425004074, 0.00906258635, -0.00685770437, 0.00181251729, 0.0190696269, 0.0100834295, 0.0261808056, 0.00254169083, -0.0183751751, 0.00117015, 0.0115139987, 0.0123334508, -0.0120348372, 0.0133404052, -0.0172223859, 0.00761118392, 0.0122015057, -0.0316947475, -0.00166841876, -0.00552088628, 0.0181946177, -0.00387850916, -0.0246807914, 0.0110764951, -0.0311669651, 0.00303475116, 0.00545144081, 0.0195001867, 0.00846535899, 0.0117501123, 0.015277924, 0.0130209578, 0.00241842587, 0.00176390575, -0.00223613251, -0.00574658252, 0.0183057301, 0.0124237295, 0.00254689925, 0.0137084639, 0.0183335077, 0.000470490602, -0.00497226976, 0.0289725, -0.0380837, 0.000393015915, -0.0118751135, 0.00659381319, -0.00229689688, -0.0359725654, 0.0104237106, 0.0115139987, 0.00462157186, -0.0186390672, 0.00628825463, 0.019472409, -0.0131529029, -0.0137501312, -0.0275419299, 0.0195279643, 0.0177918375, -0.00469101686, -0.0178057253, -0.00267884508, 0.00916675385, 0.00541671831, 0.0181807298, -0.00614936417, 0.0126876207, -0.041778177, 0.00729173608, -0.0105348229, 0.00452087633, -0.00370489643, 0.0378614739, -0.0140348561, 0.0171112753, 0.0166390482, -0.00443059765, 0.00504171476, -0.00350871403, -0.0178612825, 0.0208057538, -0.011639, 0.00550005259, 0.017000163, -0.0248613488, -3.05992507e-05, -0.0268613677, -0.0124376183, -0.00813896675, 0.00656950707, 0.00322919758, -0.0257780235, -0.0183473974, -0.00969453715, -0.00488893548, 0.0146945845, -0.0154307028, 0.0248196814, 0.0125070643, 0.0102223195, -0.0100417621, 0.00417365087, -0.00915286504, 0.0116459448, 0.00953481346, 0.00342711597, -0.0133265164, 0.0112639964, 0.00836813543, 0.00956259109, -0.00424309587, 0.00103820441, 0.000759121845, -0.026569698, 0.0140834674, -0.0158751514, 0.0175001677, 0.012458452, 0.0210835338, 0.0284030493, 0.00444448693, -0.00540630147, -0.0271252599, -0.00790979806, 0.0120834485, -0.00513199344, 0.00509727094, -0.00128647056, -0.00552783068, -0.0158057064, 0.0047708787, 0.0195001867, -0.0129098454, -0.0101042632, 0.0107848253, 0.0021406454, -0.0193335172, 0.00878480636, -0.000310115807, 0.00165887, -0.00332815689, -0.00775007391, -0.0127987331, -0.0113195525, 0.00701742806, -5.5230561e-05, 0.000806865341, -0.00125348417, -0.0108889928, -0.0142918034, -0.00646186713, 0.00727090286, -0.00304343179, -0.00634381035, 0.00153734104, -0.0243752319, 0.00532643963, 0.00105816987, 0.0181529503, -0.006746592, 0.0255835783, 0.00738895964, 0.000651047856, 0.0184723977, 0.00959731359, 0.026153028, -0.0119653922, -0.00280558225, 0.0248196814, 0.0122848395, 0.0159862638, -0.00247745425, -0.0392781533, -0.000632384501, 0.00160244585, 0.0164723787, -0.000606776623, -0.00331253163, 0.00209724228, 0.0352503359, -0.00154341757, -0.000867195777, 0.000797316665, -0.00970842596, 0.00386462035, -0.0125834532, -0.0412503928, 0.0101250969, 0.00539241266, 0.00116146938, 0.00557297, -0.0144723607, -0.00521879969, 0.00677784253, -0.00343579659, 0.0218474306, -0.00564241502, -0.0139168, 0.0120348372, -0.0123126172, 0.0180418398, 0.0293336138, -0.0113820527, -0.0141390236, -0.0012317826, 0.00615978101, -0.00566324871, 0.0185557324, -0.0168196056, -0.00967370346, 0.00368753518, 0.0222641, 0.000532123144, -0.0278474875, 0.0175140556, -0.00509727094, -0.0238196719, 0.00768757332, 0.0121042822, 0.0151390331, 0.0294447262, 0.00328128133, -0.00950009096, 0.00524657778, 0.00212502037, -0.00138629798, -0.0263891406, -0.0200835243, 0.00374309137, -0.0230974425, -0.000487417856, -0.0160695985, -0.00677089812, -0.0142362472, 0.013215404, 0.0222502127, -0.00597227924, -0.00170227315, 0.0182501748, 0.00829869, -0.0111737177, 0.0145418057, 0.0101042632, 0.00884730648, 0.0339169912, 0.00223092409, -0.0310558528, -0.0154584814, 0.0200696364, -0.00421879, 0.00807646569, -0.000892369659, -0.0190557372, 0.00363892363, -0.0150279216, -0.00677784253, -0.00566324871, -0.00301218149, -0.0269724801, -5.79432599e-05, -0.000841153844, 0.0180696175, -0.0101112081, 0.0272780377, 0.00188022631, 0.0106737129, 0.00419101212, -0.00580908312, -0.0173751656, -0.0190557372, 0.0255974662, -0.0230141077, 0.0132292928, -0.00820841175, -0.011493165, 0.0178890601, -0.0118126124, -0.0059340843, -9.00616214e-06, 0.010048707, -0.0168751609, -0.00422573462, 0.00237502274, -0.0230557751, 0.0147918081, 0.028153047, -0.0148473643, -0.0116806673, -0.00495838048, 0.00482296292, 0.0256252438, 0.0166807156, 0.00202606106, 0.022305768, -0.0104306554, 0.00696187187, 0.0151390331, -0.0217085406, 0.00123872713, -0.0228057727, 0.0109028816, 0.00353822834, -0.00318926666, 0.00530907838, 0.0178057253, -0.0213613156, 0.00888202898, -0.0135140177, -0.000935772841, 0.00917369872, 0.00544796884, -0.00701048365, -0.015902929, 0.0183057301, -0.00407295534, -0.00995842833, -0.00442018127, -0.00296183373, 0.0231252201, 0.0204168614, -0.0156390388, -0.00450698752, -0.00991676096, -0.00229342468, -0.00289759715, 0.00800702069, 0.00147397246, 0.0212085359, 0.00857647, -0.0134029053, 0.0180279501, 0.0124237295, 0.0276252646, -0.00707645668, -0.0145140272, 0.00201390823, 0.0197085217, -0.032972537, 0.0272085927, -0.00343232439, -0.000751743268, 0.000919279584, 0.00794452056, 0.0129098454, -0.00536116213, -0.0281113796, -0.0188057348, -0.00766674, -0.00352433929, 0.0303614, 0.00612505851, 0.00486463, 0.0108612152, 0.00538546825, 0.00662506325, -0.0100695407, -0.0114723314, 0.00293405587, -0.000876744511, -0.0114376089, 0.0153612578, -0.0142779145, -0.0137223536, -0.0113056637, 0.0325003117, -0.0134029053, 0.000888897397, 0.0110973278, -0.00589241739, -0.00368059077, -0.00325176725, -0.0288336091, -0.0289725, -0.006746592, -0.00254689925, -0.0294447262, -0.0122015057, -0.0103681544, 0.00370836863, 0.0133820726, 0.00285593, -0.000763462158, 0.00818757806, 0.0181112848, 0.0213890933, 0.0204585288, 0.0043785139, 0.00498615857, -0.00918758754, -0.00196356047, 0.00130469992, -0.0219168756, 0.00557991443, -0.00297745899, 0.0306669604, 8.75116893e-05, 0.00662159082, -0.00166234223, 0.0133612389, 0.0268891454, 0.00699659437, -0.0156112602, -0.0188751798, -0.000589849369, 0.00740979286, 0.00779174129, 0.0129723465, -0.00734729227, -0.0100070396, 0.000992197, -0.0120209483, -0.00867369398, -0.00808341056, -0.00977092702, 0.0172918309, -0.00107553112, -0.00232814718, -0.00137761736, 0.0137917986, -0.0262363609, -0.0230279975, -0.00890980754, -0.00465629436, 0.00226911879, 0.0061458922, -0.00624658726, -0.00643408904, 0.00978481583, 0.0127640106, -0.0103820432, 0.0105209341, 0.0174446106, 0.0147362519, -0.00941675622, 0.000113282331, -0.00872925, -0.00975703727, -0.00109810079, 0.00652089575, 0.00460768305, -0.0266530327, -0.0118681686, -0.000879348663, 0.0140140224, 0.0087570278, -0.0299725085, -0.005437552, -0.0269585904, -0.0042396239, -0.00818757806, 0.00315454393, -0.00242884271, 0.0204585288, 0.00586116686, -0.0149445869, 0.0283197146, 0.0145695833, -0.00564588746, -0.000552088604, -0.00518754963, 0.0114098312, -0.0208057538, 0.00775007391, -0.0169029385, 0.00284724939, 0.0133056827, -0.00562852575, -0.0252502412, -0.0141945798, 0.0205279738, -0.00550352456, 0.000954870251, 0.0140001336, 0.0127501218, 0.0316391923, 0.00768062891, -0.00210765912, -0.00310072396, 0.0167918261, -0.00139845081, -0.0080209095, -0.0202224161, -0.0038542035, -0.00747229345, -0.0171529409, -0.00269273412, -0.0133681828, -0.00632297713, -0.0134723512, -0.0153890355, 4.86929566e-05, 0.00477435114, 0.00573269371, 0.00981953833, 0.0239446722, -0.00206425576, 0.0047014337, 0.0191946272, -0.00154341757, -0.00920842122, 0.0195974093, 0.00570491562, 0.00506949285, 0.0148473643, -0.0125209531, 0.0348336659, -0.0141529134, -0.0021718957, 0.00563894259, -0.0134654064, 0.00253127422, -0.0138890212, -0.0342225507, 0.0035660062, -0.00386114791, 0.0301669538, 0.0181251727, -0.0122223385, 0.0270141475, -0.0131181804, 0.00495490851, 0.026291918, 0.0192779619, -0.0290280543, 0.000599832099, 0.00881952886, 0.00599658489, 0.00392712094, 0.0230418872, -0.00303995959, -0.00398614909, -0.0186807346, 0.0258613583, -0.000819452282, 0.00188022631, -0.0113126077, -0.00256946892, -0.0164029337, -0.0239446722, -0.017902948, 0.00909036491, -0.0141668022, 0.010736214, 0.00739590405, 0.0135904076, 0.00299482024, 0.0164307132, 0.0195696317, 0.00287329126, -0.00927786622, -0.017555723, -0.0146668069, 0.00268058106, 0.00382989761, -0.0212502033, 0.00438893074, 0.0215140935, -0.00842369162, -0.015972374, 0.00247050961, 0.00693756621, 0.00536116213, 0.0411948375, 0.00839591306, -0.00124393543, -0.0112917749, 0.0169168282, 0.0378059149, -0.00345142186, 0.0144029157, -0.00449657068, -0.0198057443, -0.00573963812, 0.00013856469, 0.00411809469, -0.0152223678, 0.00706604, 0.0171946082, 0.00843063649, -0.00402781647, 0.00940286741, -0.00261634449, 0.0140279122, 0.0300558433, -0.0114792762, 3.24981411e-05, -0.00988898333, 0.0292780567, -0.00582644437, 0.00560769252, -0.00250523235, -0.00786118582, 0.0159584861, -0.00175088481, 0.00592366746, 0.0140556898, 0.00224481313, -0.0192501843, -0.0131737366, 0.0140348561, -0.00148525729, 0.00605214108, 0.0193474069, 0.00246530143, -0.00708687305, -0.00520143844, -0.0234030019, 0.0169168282, -0.00803479925, -0.0136737414, -0.00572227687, -0.0336114317, -0.0221113227, -0.000274959224, -0.0125001194, 0.011354275, -0.0355281159, 0.0117778899, -0.000575092272, 0.0177362803, 0.00183855917, 0.00456948811, 0.0170973856, 0.00979176, 0.0162362661, 0.00165713392, 0.00123612292, -0.00944453478, -0.00104948913, -0.00684728753, 0.00776396319, 0.00515282713, 0.0214168709, 0.00582644437, -0.00686117681, -0.000556863, 0.0162918214, -0.00373961893, 0.00161025848, 0.00890980754, -0.00881952886, 0.00522921653, 0.00577783305, 0.00207814481, -0.00310593238, 0.0228196625, -0.000428389496, 0.0149029205, 0.00708340108, -0.0298336186, -0.0320558622, -0.00254516327, 0.0159445964, 0.00505907601, 0.0128542893, 0.0180279501, -0.0163751561, 0.00700006681, -0.000323570799, 0.00739590405, 0.00654172897, 0.00208161701, -0.0205279738, 0.0101389857, 0.0205696411, -0.00816674437, -0.0160695985, -0.00968064833, 0.0277641546, 0.00517366035, -0.0135279065, 0.00915981, 0.0137015199, 0.0179446153, 0.0046944893, -0.0110417726, 0.0021753679, 0.00633339398, 0.00115278875, -0.00761118392, -0.00621186476, 0.00253648264, 0.00106077397, -0.0254030209, -0.019611299, 0.00342190778, -0.000140517834, -0.00712506799, -0.00870841648, 0.00621880917, -0.00725006917, 0.00742368214, -0.00328996195, -0.0187362898, -0.000658426434, -0.00577088865, 0.025125239, -0.012389007, 0.00997926202, -0.0156390388, -0.00443754252, 0.014250136, -0.00896536373, -0.00510421535, 0.0102778757, -0.00148438918, -0.00710770674, -0.00297745899, 0.00164324488, -0.0013923744, 0.0153057016, -0.0130695691, -0.0260558035, -1.88396989e-05, -0.00282988814, 0.00972926, 0.00619450351, 0.0244863443, 0.00149393792, -0.00517018838, -0.00975009333, 0.00855563767, -0.0263196956, 0.0165834911, 0.0138126323, 0.00607991917, 0.000362416642, 0.00499657542, -0.00582644437, -0.00881258398, 0.00253995485, -5.50135446e-05, -0.00486463, -0.0066424245, -0.013215404, 0.021889098, 0.00675700884, -0.000684034312, 0.0109514939, -0.000450091116, 0.00800702069, -0.0102223195, 0.0187640674, -0.0245557893, -0.0200835243, 0.0211113133, -0.0033073232, 0.00850008149, -0.0124515081, -0.00624658726, -0.0161945987, -0.0122640058, 0.00926397741, -0.00299482024, -0.0108612152, 0.00105903787, -0.00568408193, 0.0332225412, 0.0119237248, -0.0160973761, 0.000707906089, -0.0044132364, 0.00535769, 0.0140695786, -0.0184307322, 0.0184862874, 0.0137431864, 0.00401392719, -0.0217779856, 0.00513546588, 0.0170279406, -0.0029844034, 0.0107292691, 0.0166529361, -0.0083056353, -0.00324135041, -0.0185696222, 0.0117778899, -0.0071042343, 0.033805877, 0.00635075523, 0.000982648227, 0.003493089, -0.0267224777, -0.00520838285, 0.0162918214, -0.00221182662, 0.00530560641, 0.00909036491, -0.00911119767, 0.00713895727, 0.00575352693, -0.0165140461, 0.00831257924, 0.00956259109, 0.0194862969, 0.000581602799, 0.0119931698, 0.00680214819, 0.0111181615, -0.0100139845, 0.0107501028, -0.00359031209, -0.0283474922, -0.00488893548, 0.00642367266, 0.00497574173, -0.000365888904, 0.0235835593, -0.00851397, 0.014389026, -0.00683339871, 0.00361809018, -0.00730562536, 0.00409726147, -0.0272085927, 0.00265801139, -0.00285072159, -0.000613721146, 0.00381253636, -0.00428129081, -0.00584727805, 0.00478129555, -0.0279863775, 0.00556602515, 0.010048707, -0.00146442372, -0.0293336138, 0.0111251064, -0.0181390624, -0.0216668732, -0.0153195905, 0.0248752367, 0.0177362803, 0.000756951689, -0.00602436299, 0.0117778899, -0.0201807488, 0.0255002435, -0.0172501653, 0.0187085122, -0.00578477746, -0.00314759952, 0.0194307417, -0.0199863017, -0.0124098407, 0.0375003591, -0.00122310198, -0.00852091424, 0.00271356758, -0.0180279501, 0.0221391, -0.0264863633, -0.00734729227, -0.00171616219, 0.0286669396, 0.00853480399, 0.0187085122, -0.0138195762, -0.0117501123, 0.0264724754, 0.00209203386, 0.013493184, -0.0493060276, -0.00582297239, 0.0333614312, -0.00510768779, 0.000114367409, 0.0130556803, -0.00310072396, 0.0149584757, 0.012048726, 0.00461809942, 0.0204585288, 0.00542713515, -0.0033385735, 0.0238891169, -0.0267224777, -0.00314759952, 0.0177779477, 0.0126876207, -0.0115834437, 0.00236286968, 0.0152501455, -0.00994453952, -0.0438337512, 0.0150834769, 0.00386462035, -0.0103820432, 0.0224863254, 0.00295141712, -0.0163890459, 0.00109202426, 0.0232502222, -0.00652436772, 0.00775701832, 0.0014253608, 0.00592714, -0.0104792668, -0.00308509893, 0.00673617562, 0.00308683515, 0.0104306554, -0.00839591306, 0.00247050961, -0.00923619885, -0.00985426083, -0.0107987141, 0.00286113843, -0.0130626252, 0.0212918706, 0.0171529409, 0.0010034818, 0.020583529, -0.000921015744, -0.0122709507, 0.0161529314, 0.00526741147, -0.00564588746, 0.0240418967, 0.0166946035, -0.0129029006, -0.0107153803, 0.001523452, 0.000848966418, -0.00297225057, 0.0231807772, -0.0170557182, -0.0029462087, 0.00245141238, 0.00559033128, 0.0315558575, -0.0134862401, -0.0102362093, 0.0200001914, -0.0652228445, 0.00093056442, 0.0146945845, -0.00675700884, 0.00495838048, 0.00422226265, 0.0315003023, -0.00175869733, 0.0442226455, -0.00088412303, 0.0114792762, 0.0162223764, 0.00152605621, 0.0137570761, -0.0186529551, -0.000453129323, 0.0140209673, 0.000224611518, -0.0206113085, -0.0180001725, 0.0104098218, 0.00930564478, 0.012736233, -0.0077014626, 0.00742368214, 0.0023993284, 0.0101320408, -0.00816674437, -0.0113264974, -0.0238335617, 0.00981953833, 0.0128334556, 0.00682645384, -0.0209724233, 0.0182085074, 0.00369100738, 0.00522227213, -0.00731257, -0.0117084449, -0.00748618273, -0.000187935817, -0.00568061, 0.00806257688, -0.0105973231, -0.0231807772, 0.00922231, -0.00128039415, -0.00337503222, 0.00652436772, -0.00099046086, -0.0142918034, 0.00373614673, -0.00662853569, -0.00341843534, 0.0139168, 0.00938897859, -0.0281947143, -0.000435117, 0.0257919133, -0.00884730648, 0.00833341293, -0.0226807725, -0.0168057159, 0.00850008149, 0.00545838568, -0.0166668259, -0.00343232439, -0.00808341056, -0.0105487118, 0.0305280685, -0.0183751751, 6.78717406e-05, -0.00406253897, -0.00968064833, -0.00364239584, 0.00786118582, 0.0103612104, 0.0136876311, 0.00176824606, -0.00153386884, 0.00262328889, -0.00698270556, 0.0306391809, 0.0116667785, 0.00542019075, -0.00322225294, -0.0159584861, 0.00359378429, 0.0222918801, 0.0127709555, 0.0111737177, 0.015347369, -0.028778052, 0.00227953563, 0.0023403, -0.00870147161, -0.00298787584, -0.0123612294, -0.00673270319, 0.00642714463, 0.022236323, -0.00612853095, 0.0237502269, 0.000911467, 0.0423059613, -0.00926397741, 0.0212502033, -0.00369447982, -0.00478129555, 0.0143473595, 0.0230974425, 0.00942370109, 0.00576741621, 0.0066424245, 0.0227502175, -0.000745666854, -0.00425698515, -0.000787767931, -0.00602436299, 0.000102757054, -0.00879869517, -0.0105001, -0.0167918261, -0.0174307227, 0.00156077882, -0.00392017653, 0.00610422483, -0.00786118582, 0.00888202898, -0.0212224256, -0.0138126323, 0.00689242687, -2.19186113e-05, 0.0168890506, 0.0127778994, -0.00017220217, -0.00255210768, 0.0167779382, 0.00201911642, -0.00214585382, 0.00825702306, 0.00583686121, 0.0167084932, 0.0190974046, -0.0214585382, -0.00898619648, 0.0014887295, -0.0138265211, 0.0210557561, -0.00788896438, 0.00827785674, -0.00146702793, -0.00238891179, -0.0070278449, 0.00224654912, -0.00452782121, -0.00847230293, -0.0071320124, 0.00188717083, -0.0137570761, 0.00610422483, -0.000593755685, 0.0141876359, -0.0178473927, 0.00832646806, 0.0169446059, 0.00377781386, 0.0185835101, -0.00398267712, 0.0107917693, 0.00324482261, -0.00984731596, -0.00282467972, -0.00979176, -0.000889765448, -0.0150418105, 0.00368406298, -0.0187085122, 0.00740284845, 0.0118542798, -0.000916675432, 0.00896536373, 0.0165001582, -0.0160695985, 0.0157362614, -0.0218057632, -0.00569797121, 0.0129376231, 0.0164584909, 0.0117431674, 0.0155001478, 0.0301113985, 0.00972231477, -0.00270488695, -0.0196529645, -0.0146945845, -0.00785424188, 0.00377086923, 0.00226564659, -0.000250436424, 0.017902948, 0.00377434166, 0.00302780676, -0.00238370337, -0.0057951943, -0.00376739702, 0.0126945656, -0.00351392245, -0.00495490851, 0.0159584861, 0.0373336896, -0.00517366035, -0.0119515033, -0.00361809018, -0.00341149094, 0.0189724043, -0.0149445869, -0.00439240318, -0.00836119056, 0.00534727331, 0.015555704, 0.0223335475, 0.0137431864, 0.0123959519, 0.0377225839, -0.00926397741, 0.0101112081, 0.0192362946, -0.0202224161, -0.00556602515, 0.0125140082, 0.00514588226, -0.000400394434, 0.00206078356, 0.00492365798, -0.00255557988, 0.0126945656, 0.00790285319, 0.00551741384, 0.0131529029, 0.0323891975, 0.00413545594, 0.00351045025, -0.0120695597, -0.0103264879, 0.0169723835, -0.0207501985, 0.0256808, 0.00304343179, 0.00403823284, -0.00119706, -0.0137084639, -0.0128542893, 0.0257780235, 0.015277924, -0.00218752096, -0.0152640343, 0.0244446769, -0.0127223441, -0.000396488147, -0.0188196246, -0.00474310108, 0.0062917266, -0.0110001052, 0.00958342478, -0.000497834641, -0.00149654201, -0.00981953833, -0.00492365798, 0.00751396082, 0.00180557277, 0.00829869, -0.00853480399, 0.00532643963, -0.00822230056, 0.0200140793, 0.00225870218, 0.00845146924, -0.0259030256, 0.0031076686, -0.0069931224, 0.00975009333, -0.0108126029, -0.00501393666, 0.0344447717, 0.0092987, -0.0251113512, -0.0170557182, 0.0124445632, 0.00661811884, -0.000102594298, -0.00300523709, 0.0272919275, 0.00673964759, -0.0229307748, -0.0186946224, 0.0174723882, -0.000953134091, -0.0128820678, -0.0123265069, -0.0014557431, -0.030694738, 0.00123872713, -0.00220141, 0.0229863301, -0.0209724233, -0.0017500167, -0.015972374, -0.00700701121, -0.0254169088, -0.0122778947, 0.00707645668, -0.0103750993, 0.00443407, -0.0114167761, 0.0201390814, -0.0196390767, 0.00725701358, 0.0132084591, -0.0143473595, -0.0217085406, 0.0178196151, 0.00747229345, -0.0108403815, -0.00892369635, 0.0034045463, 0.00486115739, -0.00526741147, -0.0119445585, -0.0449170955, 0.00335072633, 0.00544796884, 0.00612853095, -0.0149306981, -0.00813896675, -0.0213335361, -0.0256946906, 0.00680909259, -0.00824313425, -0.00379864732, -0.0196251869, -0.00471185055, -0.0138404099, -0.00715979049, 0.0148890307, -0.0157084838, -0.0104862116, -0.0064202, 0.0241252296, 0.00117449043, -0.00344621344, -0.020097414, -0.0152918128, 0.0123265069, 0.00774312951, 0.0154723702, -0.0178751703, -0.0110070491, 0.00628825463, -0.00224828534, -0.0133473501, 0.0111806626, -0.00727784727, -0.0413337275, 0.0147084733, -0.0046250443, -0.0113751087, 0.0114723314, -0.0112084402, -0.0184446201, -0.00106511428, -0.0020712004, 0.0133751277, 0.0630006045, 0.0268891454, 0.0256808, -0.0203890838, 0.00317884982, -0.00364239584, 0.00468754489, 0.0308614057, -0.0188612919, 0.00510421535, 0.00305037643, 0.0263196956, -0.00724312477, 0.0106806578, 0.003819481, 0.0131390141, 0.0257085785, -0.00827785674, 0.00149480591, -0.0100278733, 0.00269794231, -0.0236391146, 0.00510074338, -0.0154723702, 0.00733340345, -0.00336461538, 0.0105417669, -0.00828480162, -0.0088264728, 0.019889079, 0.00404517772, 0.00783340819, 0.0132917939, 0.00304516801, 0.00535074575, 0.0123612294, 0.0114376089, 0.0350836702, -0.00560074812, -0.0426948518, 0.0186112896, 0.013007069, 0.0194029622, 0.000652784, 0.00673617562, -0.0243057869, -0.00431601331, -0.00372225768, -0.00977787096, -0.0187501796, 0.0189307369, -0.0359725654, -0.017833503, -0.00704520615, 0.0124723418, -0.0108264927, 0.0391392633, -0.000160700321, 0.0153751466, 0.00734034786, -0.00143924984, 0.00234203623, -0.0127987331, 0.00940981228, -0.0165279359, -0.0261946954, 0.0021718957, -0.0155695928, 0.011215385, -0.0118959472, -0.0165834911, -0.00587158371, 0.017000163, -0.00644103391, -0.0043785139, 0.017486278, -0.00396878785, 0.00199307455, -0.00348440837, -0.00483337929, -0.0319169722, 0.0103195431, 0.00244099554, -0.0345281065, 0.00715284608, -0.00981953833, -0.00196008827, -0.0175140556, -0.0216252059, -0.00233856402, 0.0117431674, 0.0328614265, 0.00583338924, 0.000745232799, 0.00499657542, 0.0193890743, -0.00419795653, -0.00346357469, 0.00314412732, 0.00696881674, 0.00612505851, -0.00163630035, -0.00049349427, -0.00157293165, 0.00323266978, 0.0222918801, 0.000568581803, 0.00913203135, -0.00607991917, 0.00161720288, -0.0109514939, 0.00435073581, 0.020027969, 0.00131598476, 0.0142640248, 0.00854174793, 0.000831605168, 0.00764590641, -0.0049826866, -0.0122778947, 0.00887508504, -0.00552783068, -0.0167084932, -0.0119584473, -0.00471879495, -0.00458337693, 0.000744364748, 0.0149168093, 0.0214168709, -0.000330515322, 0.000128473446, -0.0154029252, 0.00204863073, 0.00729868095, 0.0214307606, 0.0331669822, -0.0100556519, 0.0069931224, 0.0163751561, 0.0108126029, -0.00893064123, 0.0149723655, 0.00927786622, 0.0218613204, -0.001944463, 0.0118334461, 0.0159862638, 0.00965981465, 0.0426948518, 0.00654172897, 0.00457990495, -0.0220002104, -0.0237224493, 0.00733340345, -0.0107987141, 0.00488546351, 0.0109584378, -0.00430559646, 0.0205001961, -0.0294447262, 0.00675006444, 0.00325350324, 0.0116112223, -0.00131945708, 0.0016198071, -0.0143751372, -0.0154584814, -0.0180557277, 0.0146806957, 0.00139931892, 0.0095417574, 0.0202501938, -0.00805563293, -0.0107848253, -0.0152223678, 0.00915286504, -0.0162918214, -0.00619103154, -0.00363197923, -0.00831952412, -0.0101042632, 0.006607702, 0.0144445822, 0.0509449318, -0.00015994077, 0.00868063886, -0.000447486906, -0.00628130976, 0.0165140461, -0.0209029783, -0.0185140651, -0.0134167951, 0.00241495366, -0.00727090286, 0.0296391714, 0.00378823071, 0.0179307275, -0.00684034312, 0.00820841175, 0.00575352693, 0.0293613914, -0.0162223764, -0.000690978835, -0.0191807393, 0.0148612531, 0.0186529551, -0.00703131733, -0.00112414267, -0.0122084497, 0.0136598526, -0.0063889497]
24 Nov, 2021
jQWidgets jqxScrollBar height Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The height property is used for setting or getting the height of the specified jqxScrollBar. Syntax: For setting the height property: $('#jqxScrollBar').jqxScrollBar({ height: 40 }); For getting the height property: var height = $('#jqxScrollBar').jqxScrollBar('height'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar height property. In the below example, the value for the height property has been set to 40. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar height Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin: 28px;" id="button_for_height" value="Value of the height property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 300, height: 40 }); $("#button_for_height").jqxButton({ width: 250 }); $("#button_for_height").jqxButton(). click(function () { var Value_of_height = $('#jqx_Scroll_Bar'). jqxScrollBar( 'height'); $("#log").html(( Value_of_height)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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 height Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-height-property?ref=asr4
PHP
jQWidgets jqxScrollBar height Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxScrollBar height Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0271962099, 0.00831112824, -0.0107854335, 0.0330189355, 0.0893851593, -0.00313517754, 0.0380944312, 0.0351337269, -0.0207672454, -0.0101157492, -0.0147612402, 0.0179052297, 0.0246866588, -0.013478267, 0.00670036254, 0.013393675, -0.0288739447, -0.0290713254, -0.0333009064, 0.0187511463, 0.0187229477, -0.029917242, -0.0357258655, 0.0255325753, -0.042775169, 0.0137179429, 0.0300018322, 0.0201610066, -0.010848877, 0.0153110856, -0.0338366553, 0.0102144396, -0.0028866895, -0.00629502721, -0.0402374193, -0.00148035365, -0.000616373436, 0.0049274629, -0.0301146209, -0.0310169328, -0.0179052297, 0.0472021326, -0.00654527778, 0.0191036109, 0.00793046597, -0.0174822714, 0.0278165489, 0.017665552, -0.0236856584, 0.0159455221, -0.000544118055, 0.0289585367, 0.000912003568, 0.0385173894, 0.00186630292, -0.0169747211, 0.0261106174, 0.0473995134, 0.00848736055, 0.00995361526, 0.0229948256, -0.0234177839, -0.0235587694, -0.0289021414, -0.0134148235, 0.00527640339, -0.00554075185, 0.0264771823, -0.0242073052, 0.02062626, -0.00989722088, 0.0130835064, 0.0305939745, 0.0300864242, 0.015734043, 0.0186383575, -0.0285355784, -0.00410269434, 0.0182717927, 0.0228679385, -0.0209505279, -0.00102831703, -0.0340904295, 0.00537861791, 0.00266287406, -1.38714313e-05, 0.0159173254, -0.0287893526, 0.052108448, 0.00585797057, -0.0207672454, 0.0200482178, 0.0232767984, -0.0134853162, -0.0169747211, 0.0211761054, -0.0299736355, 0.0202314984, -0.0111238, 0.0104823131, 0.0492323302, 0.034146823, -0.0142113948, -0.0114198709, 0.00904425513, 0.0127592385, 0.0118710259, -0.00420490932, -0.000578042818, -0.0128156329, 0.0167350452, -0.0150432121, -0.0217259508, -0.00272279326, -0.041139733, 0.0396452807, -0.00693651382, -0.00986902416, 0.0192023013, -0.0266604628, 0.00993951689, 0.0118780751, -0.0175527632, 0.0204711761, -0.00322858058, 0.00852965657, -0.0130482595, -0.0107008414, 0.0424368046, -0.0505294, -0.0031845225, 0.0162979886, 0.00993951689, -0.00824063458, 0.00188040151, 0.0409423523, 0.00309640635, -0.00361629226, -0.0229243319, -0.0171580035, -0.042605985, -0.0273653939, -0.00146977964, 0.0149868177, -0.00548435748, 0.0578042828, 0.00342596113, 0.0312707089, -0.0453129187, 0.0201892033, -0.014916325, -0.0135417106, 0.021697754, 0.0212325, 0.0473995134, 0.00768374, -0.0357822627, 0.0534901097, -0.0288739447, 0.0289867334, -0.015452072, -0.0311015248, 0.017298989, 0.0221630074, -0.0171580035, -0.00171562412, 0.0160583127, 0.0039617084, -0.0467791744, 0.0207390487, 0.0102637848, -0.0118569275, -0.00774718402, 0.01253366, -0.0400964357, -0.0174681731, 0.00131821958, -0.0251378138, -0.00139047496, -0.0255043767, -0.00135787192, -0.00793751515, -0.00929098111, 0.0145356627, -0.00948131271, 0.00202138769, 0.0152969873, 0.0159173254, -0.0284932815, -0.0404911973, -0.0382918119, 0.0295224804, 0.0183140896, 0.0325113833, -0.00544206193, -0.0485274, -0.00268578436, -0.0135699082, -0.00742996531, -0.0210351199, -0.00756390207, -0.00807145145, -0.0184409767, 0.0198790338, -0.00308230775, 0.0153815784, 0.0260401238, -0.0350773297, 0.0612443425, 0.00816309266, -0.0217682477, -0.00948836189, 0.0460742414, -0.0232063048, -0.0156212552, 0.0132033443, -0.00250778953, -0.0086001493, -0.0295224804, -0.00582977338, 0.0189485252, -0.00584739679, -0.0098901717, 0.0220361203, -0.10173554, 0.00876933243, -0.0192586947, -0.0187229477, -0.00886097364, 0.0334982872, -0.0415062942, -0.0174681731, -0.0201469082, 0.0139082745, 0.0386583768, 0.0335828774, -0.0155225648, 0.0317782573, 0.0226000641, 0.0180462152, -0.0307631567, 0.00305234804, -0.00555837527, 0.0131962951, 0.0123785762, 0.00334489415, -0.0174822714, -0.0345415846, 0.00425072946, 0.000917290512, -0.0156917479, 0.014091556, 0.0376714729, -0.0107008414, 0.0479352586, 0.00898081157, 0.0109264189, 0.000131954133, 0.0151700992, -0.00929803, 0.0294942837, 0.0125266109, 0.00518476218, -0.0117864339, 0.0324831866, 0.0286624655, 0.0465817936, 0.00289550121, -0.00312284124, -0.0511215441, 0.0237420518, -0.0382636152, 0.0503038242, 0.00802915636, -0.0353875, 0.040265616, -0.0263220966, -0.0158045366, 0.0368255563, 0.016396679, 0.0102919824, -0.010228538, 0.0450309478, 0.0757941, 0.015903227, -0.0110815037, 0.0129354708, -0.0329343416, 0.00298009277, 0.0129989143, -0.0322012156, -0.0224590786, 0.0213311911, 0.0322576091, 0.0328779481, -0.00649593258, -0.0194842722, 0.00022579798, -0.0025782825, -0.00304882345, -0.0310451295, -0.00189978711, -0.0372203179, -0.0184691735, 0.00127416151, 0.027449986, 0.00405687373, -0.0067884787, 0.00146625494, 0.00759209925, 0.0499654599, 0.00437056785, -0.0204288792, -0.0200764146, -0.0209223311, -0.0108206803, 0.0263784919, 0.0399554484, -0.0322576091, 0.00408859551, -0.000541034, 0.0108700246, -0.0240663197, 0.0614135265, 0.0416754782, -0.0127662877, -0.0193996821, -0.0279152393, 0.00905835442, -0.00224872772, -0.0218810365, 0.00462081796, 0.00836752262, -0.0283663943, 0.010559856, -0.0353875, -0.0112083917, -0.038009841, -0.0195688643, 0.0319756381, -0.0223885849, -0.0107078906, -0.00862129778, -0.00995361526, 0.0411115326, -0.061921075, -0.0142466407, 0.0116102016, 0.0591013543, 0.0135487597, 0.00121600472, 0.0395324901, 0.00927688275, 0.0329061449, 0.0320320316, 0.00504025165, -0.00635494664, -0.0206967536, -0.00679905247, -0.0217400491, 0.0263220966, -0.00129178469, 0.00847326219, -0.00160459755, 0.0331599191, -0.0565072112, -0.0119062727, -0.0279575344, -0.0242496021, -0.0116102016, -0.00271045696, -0.0567327887, 0.00261529139, 0.0382072218, -0.0290713254, 0.0187934414, -0.030650368, -0.0199072305, -0.019145906, 0.0218246412, -0.0285073798, 0.0557740852, -0.00766964164, 0.020175105, -0.00343653513, -0.00119838153, -0.015903227, -0.00777538121, 0.0296070725, 0.0235164743, -0.0597216934, 0.0444670022, -0.00504025165, -0.0367973596, 0.00375022902, 0.00533984695, 0.0229102336, -0.016763242, -0.0032338677, 0.00797276106, 0.0315526798, -0.0280562248, 0.0102426372, -0.0164671708, 0.0172566939, -0.0147753386, -0.00737357093, 0.0103413276, 0.00523058278, -0.0320320316, 0.00631265063, -0.0204852745, -0.00631265063, 0.0078035784, 0.0306221712, 0.00690126745, 0.0428033657, 0.0253069978, -0.00477942731, -0.00262762769, 0.0144369723, -0.0333854966, -0.0305093825, -0.0050578746, -0.0451437347, -0.00431769807, -0.0706622079, 0.013393675, 0.0349363461, -0.0177642424, -0.0341186263, 0.0196393579, -0.00405687373, 0.0124772657, 0.0276473649, 0.0197521467, 0.0501346402, 0.0146343531, -0.0201469082, -0.0417318717, -0.0253633913, -0.01931509, 0.0146061555, -0.0032091951, -0.0139505705, -0.00141426641, -0.0246443618, -0.0126253013, 0.0104470672, 0.00874818489, -0.00159754825, -0.0339212455, -0.00116049149, 0.0165517628, -0.00136668363, -0.0222616978, 0.0122234914, -0.000500059919, -0.0123574277, -0.0042577791, -0.0419010557, -0.00926983356, -0.0310169328, 0.0256171674, 0.0399272516, -0.0301146209, -0.0113352789, 0.00884687528, -0.0144158239, 0.0182576943, -0.0275909714, 0.000101003294, 0.0109616658, 0.0361488238, 0.0123785762, 0.00624920707, 0.00319509651, 0.00977738295, 0.0256594624, -0.000669243163, 0.0416190848, 0.010848877, 0.0263925903, 0.0189062301, 0.00956590381, -0.01253366, 0.0147189442, -0.0269706324, 0.00370440865, 0.014465169, 0.022106614, 0.00171121827, -0.00843801536, -0.00534337154, 0.0115608564, 0.0358668528, -0.0134077743, -0.0124702165, 0.0205275696, -0.00131910085, 0.00601658, 0.0384046026, -0.0271680132, 0.0145638594, 0.0141409012, -0.000498297566, -0.0412525199, -0.0140351616, -0.0204570759, -0.0181449056, 0.04305714, 0.00165922963, -0.0428879596, 0.0106796939, -0.0340058357, -0.0442696214, -0.02983265, -0.0230794176, 0.0178065393, -0.0211197119, 0.0167773403, 0.0121318502, 0.0113775749, 0.01273809, 0.0466663837, 0.018863935, -0.0245456733, -0.0125900544, -0.017665552, 0.0128015336, -0.0253492929, 0.00278976164, 0.0212888941, -0.0183845814, -0.0273089986, 0.0270552244, -0.0262375046, -0.00141426641, -0.00591436494, 0.0124843149, -0.001936796, 0.0243200939, -0.0247430522, -0.0115820048, 0.0206685551, 0.00374317984, 0.0316936672, 0.0104823131, 0.0183422863, 0.0325959772, 0.0329907387, -0.0161852, 0.0215849653, 0.0079586627, 0.00232979469, -0.00202138769, -0.021655459, -0.0283663943, 4.75827947e-05, -0.0112154409, -0.00455032475, -0.000737092749, -0.00514951581, 0.0115608564, 0.00435646903, -0.0335828774, -0.0055478015, 0.00588264316, -0.0297762547, 0.0217823461, 0.000493010622, -0.000398946489, 0.0137672881, 0.00353522529, 0.0028514429, 0.01253366, 0.0428033657, -0.0360078402, 0.0130835064, 0.0238971375, -0.00514599122, -0.0265758708, 0.0223321915, 0.013027112, 0.00451507838, 0.00986197498, -0.00680610165, -0.0387147702, -0.0234459806, -0.0174963698, -0.0118851243, 0.0412243232, -0.00521648396, -0.00623158365, 0.000522089, -0.00479705073, -0.0269847307, 0.013640401, 0.0108770747, -0.0236856584, 0.0042366311, 0.0192164, 0.0226564594, 0.0100452565, -0.0207531471, 0.00316866161, 0.00384539459, 0.00345768314, 0.00577690359, -0.0080996491, -0.0209223311, 0.00981967896, 0.0326241739, -0.0073383241, -0.036205221, -0.00707045058, -0.00797276106, 0.0266745612, 0.00256242161, -0.0137320422, -0.00967164338, -0.00757095125, 0.0124349706, -0.0114128217, 0.00122305402, 0.0122728366, -0.0373049118, -0.0101227993, -0.000262366229, -0.0370511338, -0.0103695244, 0.0101298485, -0.0150573105, -5.61465968e-05, 0.0393069126, 0.0191177092, 0.0035669473, 0.0218387395, -0.0417882688, 0.0198226403, 0.0244610813, 0.0342878103, -0.0300582275, 0.0507267825, -0.0145497611, 0.00473008212, -0.0170734115, 0.0287611559, 0.00825473387, -0.000117855532, -0.0205557663, 0.00422253227, -0.00802915636, 0.00870588887, -0.00839571934, 0.0322012156, -0.0105034616, -0.0174117777, -0.011546758, 0.0229807273, -0.0198226403, -0.0221348107, 0.035049133, 0.0214721765, 0.0188498367, -0.00752865523, 0.0356694721, 0.0219233315, 0.0288175493, 0.00539271673, 0.00522000855, -0.00939672068, 0.0204570759, 0.0227974448, 0.00485344511, 0.00344358454, -0.0199072305, 0.00864244532, 0.00946016423, 0.0335546806, 0.0211056136, 0.00620691106, -0.00317042391, 0.0166081581, -0.0109052714, -0.0280703232, -0.0160583127, 0.0215567686, 0.0285919718, 0.0122305406, 0.0174963698, 0.0012688745, 0.0210492183, 0.015409776, 0.0101016508, -0.00268049748, 0.0325677805, 0.0193714835, -0.00645011198, -0.0166786499, -0.00104770262, -0.0025782825, 0.000401810248, 0.020132808, 0.00766259199, 0.0165658612, 0.0077542332, 0.0144933667, -0.0103272283, -0.00338014076, 0.0234741792, 0.0269142389, 0.00657699956, 0.0538566746, 0.0422394238, -0.0342032164, -0.0238266438, -0.0250532217, -0.0282818023, 0.0104188696, 0.0194701739, 0.0237843469, -0.0209505279, -0.0433391146, 0.00276861363, -0.0154379727, 0.030650368, 0.00391588779, 0.00280562253, 0.00481819827, -0.00401105313, 0.0137108937, 0.00987607334, -0.0230653193, 0.00218880852, 0.0482736267, 0.0104400171, 0.00798686, 0.0066439677, 0.00312636583, -0.0253210962, -0.0434801, 0.0147048458, -0.000904073066, -0.00591084035, -0.0222898964, 0.0132808862, -0.0199354291, 0.0107995318, -0.00247430522, -0.00326735177, -0.0249686297, 0.0349645428, -0.0406885743, 0.00061549223, 0.037107531, -0.00265406258, -0.00343301054, 0.0211197119, -0.0128156329, -0.00737357093, 0.0227551498, -0.0428033657, 0.00127504265, 0.0132244918, 0.0245033763, -0.0316654667, -0.00553017808, 0.0147894369, -0.0470611453, 0.000355989789, 0.0114269201, 0.035331104, -5.75509475e-05, -0.0102426372, 0.00564296683, -0.0171721019, -0.00439524045, 0.00723963417, 0.0202174, -0.00383834541, 0.00223991601, 0.0257299561, 0.00672503468, 0.00566059025, -0.00343653513, 0.0156212552, 0.0208095424, 0.0168760307, 0.0275204778, 0.0307913553, 0.0192868933, 0.00225753919, 0.0114903636, 0.0127874352, -0.0153533816, -0.0312143136, 0.0210210215, 0.0389403477, -0.010150996, 0.00432122266, -0.00549140712, 0.0258427449, 0.0361770205, -0.00430007465, -0.0291559156, -0.0206685551, 0.013929422, -0.0175245665, -0.00208130665, -0.0294660851, 0.0194842722, -0.0276191682, -0.0276191682, -0.0167068485, -0.0149304233, 0.0191177092, -0.018863935, 0.0251660105, 0.0182999894, -0.0433391146, 0.0205980632, 0.0146202538, -0.0253210962, -0.0311579183, 0.0261388142, -0.00436704326, 0.0113070821, 0.0241932068, -0.00486754347, -0.0111308489, 0.0154661704, -0.0353593044, 0.00986197498, -0.0109123206, 0.005033202, 0.0118921734, 0.00806440227, -0.000517242588, 0.0149022266, -0.000183722455, -0.00127944851, -0.0342032164, 0.0224590786, 0.0188498367, 0.0182294976, -0.00646068621, 0.022064317, 0.0145074651, 0.00750045804, 0.0258286446, -0.000231966114, 0.0218387395, 0.0394197032, -0.016312087, 0.0260824207, -0.0287611559, 0.0080926, 0.0260119271, -0.00664044311, -0.0271116178, -0.00650298176, 0.00760619761, -0.0101439469, 0.033864852, -0.00358104589, -0.0121529978, -0.0360924304, -0.0305093825, -0.00898786075, 0.00253246212, 0.00954475626, 0.0475123, -0.025969632, 0.0014248403, -0.00677790446, -0.0452001281, 0.0290995222, -0.0117370896, -0.0150573105, 0.0401810259, 0.00302415085, -0.043931257, 0.000890855619, -0.00570641086, 0.0529825613, -0.0253210962, 0.00338542764, 0.016312087, 0.013393675, -0.011793484, -0.00202843687, 0.0172566939, -0.0400400385, -0.0176514536, 0.024038123, 0.00037295217, 0.00115961034, 0.00284615601, 0.00452917721, 0.0238830373, -0.0347107686, 1.31899069e-05, -0.0224731769, 0.0133443298, -0.0163684804, -0.00234389328, 0.0189626254, 0.0156776495, -0.0025412736, 0.0282536056, 0.0112013426, -0.000432871253, -0.0245033763, 0.0136685986, -0.00334136956, -0.0279293377, 0.0211761054, 0.00212007784, -0.0239817277, -0.00609412231, -0.0174540747, 0.0107219899, 0.0160160158, -0.00984787568, -0.0141479503, -0.0249686297, -0.00513894157, -0.018779343, 0.00621043565, 0.0218951348, 0.00776833156, 0.0276191682, -0.0041872859, -0.0369101502, 0.00974213611, -0.000482436648, -0.00850145891, -0.0425213948, 0.00659814756, 0.030199213, 0.0343724, -0.0193291884, 0.00857195258, 0.0200482178, -0.0122375898, -0.04914774, 0.00533279777, -0.011793484, -0.00560772046, 0.0258568432, 0.013435971, 0.0284932815, 0.0200200193, 0.0265758708, -0.0256876592, -0.00914294552, 0.0214439798, -0.0179052297, -0.0111097014, 0.005177713, -0.0345133878, -0.00870588887, 0.00364096486, -0.0197944418, -0.000516361441, 0.00524115656, -0.0129354708, 0.0120684067, -0.0269706324, 0.00913589634, 0.00567116402, 0.0409987457, 0.00937557314, -0.00165129919, 0.0259414352, 0.00716209179, -0.0349645428, 0.0319756381, -0.0233613905, 0.0222616978, -0.0066686403, 0.0254197866, 0.0105316583, 0.0177783426, 0.00405334914, 0.00776128238, -0.0167491436, -0.0185678639, 0.039194122, 0.01536748, -0.0354156978, 0.0144792683, -0.0113282297, 0.00170328782, 0.0288598463, 0.0139223728, -0.0139858164, -0.00993951689, -0.0394479, -0.00941786822, 0.0002192994, 0.0101580452, 0.00759209925, 0.0433391146, 0.0214862749, -0.00211831555, 0.0134148235, -0.0120895542, 0.0240804181, -0.0370793343, 0.00203901087, -0.00201610057, 0.013435971, 0.0329061449, 0.000704489707, 0.0164107773, -0.0038665426, 0.0159455221, 0.0152828889, 0.0242214054, 0.0048569697, 0.0310451295, -0.00888212118, -0.00167509064, 0.0129636675, -0.014831733, -0.0107360883, 0.00212360243, 0.0137954857, 0.0205416679, 0.00412384234, -0.01273809, -0.0175668634, 0.000462169904, -0.0115961032, -0.00800800789, -0.0203583874, -0.000922577514, -0.0304247905, 0.027985733, 0.00124684547, 0.00141602871, 0.00136756478, 0.0022681132, 0.00592846377, 0.00209364295, 0.0129918652, -0.00684487307, -0.0060729743, -0.00300652767, 0.0140563101, 0.00556894904, -7.42379707e-05, -0.00530812517, 0.000912884716, -0.0171862, -0.0189203285, -0.000967516797, 0.0232345015, 0.00388416578, -0.00603772793, 0.0255043767, -0.00244610803, -0.0176937506, 0.0282959, -0.0106726447, -0.0154661704, -0.00754980324, 0.0169747211, -0.00349292951, 0.0209787246, -0.00633732323, 0.00044542781, 0.013478267, -0.00460319454, 0.00381014822, 0.00998886209, -0.0115538072, -0.0317500606, 0.00437409244, -0.000572315301, -0.0186806526, 0.0133725274, -0.0109828142, -0.00486401888, 0.0259978287, 0.00421900768, -0.0138518801, -0.00559362164, -0.00535747036, -0.00638314383, -0.00108206796, -0.00301886396, -0.00612231949, -0.0252788, -0.0122657865, 0.0858323127, -0.00422958191, 0.006347897, -0.0241650101, -0.0214157812, -0.0437902696, 0.020795444, 0.021162007, 0.0174540747, -0.000453798857, 0.00841686781, 0.0366281793, 0.0126253013, -0.012244639, -0.0166927483, -0.0106232995, -0.00677085528, 0.000809788646, 0.01972395, -0.0151700992, 0.0028496806, 0.0202033017, -0.0138659785, 0.00551255466, 0.0458486639, 0.0167773403, -0.0304811858, -0.0268578436, -0.0290713254, 0.0126112029, 0.0126816956, 0.0155648608, 0.0226000641, -0.00725373253, -0.00276508904, 0.0190613139, -0.0156917479, -0.00495566, -0.0453975089, -0.00696118642, -0.00988312252, -0.000170505009, 0.0146343531, -0.0146625498, -0.00814194512, -0.00767669082, -0.0333009064, -0.00327263889, -0.00692241546, 0.0270552244, -0.0369665436, -0.00751455687, -0.0162556916, -0.000729162246, -0.0146907475, 0.0047829519, -0.00280209794, -0.0311297216, 0.016354382, -0.0607931875, -0.0115538072, 0.00424720487, 0.000294088095, 0.00687307026, -0.00565354107, 0.0128649781, 0.00815604348, 0.0241086148, -0.0209223311, 0.029381495, 0.02983265, 0.012822682, -0.00187687692, -0.00242672255, -0.0180039201, -0.000408418971, 0.00206544576, 0.000668362, 0.0191318076, -0.0338930488, -0.0343442038, -0.0191741046, -0.0186101589, 0.0236715581, -0.0217964444, 0.0118005332, -0.030283805, -0.00179845339, -0.00599543191, 0.00895966403, -0.00771898637, -0.000125896142, -0.0324831866, 0.00781062758, -0.0136544993, -0.0070845494, 0.0295788739, -0.00876933243, -0.0131328516, -0.01253366, 0.0114903636, 0.00925573427, 0.0120895542, 0.0240099262, -0.00594608672, -0.0220784172, 0.030368397, 0.0175104681, -0.00777538121, 0.0224026851, 0.00662634475, 0.00182400714, 0.000583770394, 0.0243059956, -0.00711627118, -0.000773661, -0.0213593878, -0.00244434574, 0.00275803963, 0.00548788207, -0.0285778735, 0.00333960727, -0.00659814756, 0.0134148235, -0.00778947957, -0.0126323504, -0.010228538, -0.0142677892, 0.00560419587, -0.0278870426, -0.0284932815, 0.0078247264, -0.0247148555, 0.00812079664, -0.0243200939, 0.0137038445, -0.0186524559, 0.0213593878, 0.00617518928, 0.0177783426, -0.00731012691, 0.00477237813, 0.00817014184, 0.00135170377, 0.0326241739, 0.0397862643, 0.0123221809, 0.00435999362, 0.00573813263, -0.00366563746, -0.024940433, -0.00831112824, 0.0310451295, -0.00277037593, 0.0102567356, -0.0185255669, 0.0012759238, 0.006369045, -0.0243059956, -0.00816309266, 0.0191882029, 0.0392505191, -0.00551607925, -0.0068131513, -0.00488516688, 0.00940377, 0.0104400171, -0.022148909, 0.0133584291, 0.00473360671, 0.0130412104, -0.00125565706, 0.00568526285, -0.0124843149, 0.0108136302, 0.000573196448, -0.00103007932, -0.00168302108, 0.0155225648, 0.0189203285, -0.0188780334, 0.00921343919, -0.0155366631, 0.0119274203, -0.0110674053, -0.0170029178, 0.00434589526, -0.0110815037, 0.0199777242, 0.00109969126, -0.0204993729, 0.0234036855, 0.0297198612, 0.000167641236, 0.0296634659, 0.00682724966, 0.0055478015, -0.022106614, -0.00575928, 0.00752865523, -0.0199777242, 0.0124490689, 0.0450873412, 0.0139505705, -0.0201046113, 0.00132174429, -0.00991132, 0.00305939745, 0.000685985258, -0.00805735309, 0.0146625498, -0.0134430202, 0.00476885354, 0.0078247264, 0.0173694827, 0.0158750303, 0.00987607334, -0.0253210962, 5.07494733e-05, -0.00149621454, -0.011997913, -0.018863935, -0.0334418938, 0.0057487064, -0.0110392086, 0.00917114317, -0.033864852, 0.0107501866, -0.00845916383, 0.0385737866, 0.00123450917, 0.0386865735, 0.0295788739, 0.0261670128, 0.00149709568, 0.00252365042, 0.0135064647, -0.00857195258, 0.00563944224, 0.0138095841, -0.0275063794, 0.0149727194, -0.0186665542, 0.0387993641, 0.0106867431, -0.000155415095, 0.0199213289, -0.00798686, -0.015818635, 0.0118357791, 0.00685192226, 0.0146061555, 0.00796571188, -0.0351619236, 0.0121670971, 0.00872703735, -0.0161992982, -0.0019508946, -0.0153392833, -0.0375022925, 0.0141479503, 0.0103272283, -0.0166081581, -0.000423619029, -0.0291559156, -0.0136967953, -0.000959586352, 0.00950950943, -0.013971718, -0.0119908638, 0.00637961924, 0.00998886209, 0.0032585403, 0.00422253227, 0.0227833465, -0.0246302634, 0.0227833465, 0.0238125455, -0.00407449715, -0.0123574277, -0.0183845814, 0.0120754559, -0.00674970727, 0.00309640635, -0.0192445964, 0.0308477487, 0.00754275406, 0.032342203, -0.0068342993, 0.00454327557, 0.0257863495, 0.0208095424, -0.0173412841, -0.00233155699, 0.0144792683, 0.0340904295, 0.0139435213, -0.024940433, -0.00924163591, -0.0223744866, 0.0162838902, -0.0152687896, -0.0093896715, -0.00955885462, -0.0219374299, -0.0134571195, 0.00895966403, -0.0201046113, 0.0165376645, 0.000636199606, -0.00460319454, -0.023586968, -0.0196111612, 0.0105739543, -0.00201786286, 0.00788817, 0.0121670971, -0.00852260739, -0.0180744119, -0.00950246, -0.0169606227, -0.0120261107, -0.0293532964, 0.00221171882, 0.0339494422, -0.0219374299, 0.0231922064, -0.0250391234, 0.0120966034, -0.0155648608, -0.0161006078, -0.00160107296, -0.0321448222, 0.00268578436, -0.022557769, 0.0093896715, 0.00126623106, -0.0344287939, -0.0049274629, -0.0124490689, -0.0109475674, 0.024122715, -0.0164953694, 0.0351901203, -0.00734537374, 0.0102003412, 0.00574165722, -0.0114128217, -0.0364308, -0.00156406406, -0.000924339809, -0.00258004479, 0.0240663197, -0.00434589526, 0.0051530404, 0.0348235555, 5.82118228e-05, 0.00576280523, -0.00353875, -0.013478267, -0.00491688866, -0.00202667457, 0.0157058463, 0.0148458313, 0.00742291566, -0.0340622328, -0.0139223728, -0.019766245, 0.00820538867, 0.0209364295, -0.000905835419, 0.00621748529, 0.00748635968, -0.00394760957, 0.00301886396, 0.021077415, 0.0321166255, 0.0241368134, -0.00115961034, 0.00804325473, -0.0244610813, -0.00637961924, -0.00461729337, -0.00876228325, 0.0310733262, 0.018201299, 0.00609412231, -0.000346517278, 0.00315103843, -0.000451595959, 0.0265617725, 0.0149727194, 0.00742996531, -0.00123362802, -0.0173271857, 0.0317782573, -0.0292687062, 0.0301428195, -0.0266322661, -0.00641839, 0.0111378981, -0.0107149407, -0.0122798858, 0.0136544993, 0.0247853491, 0.0138236824, 0.00831817742, -0.0211338103, 0.00507902261, -0.014091556, -0.00180638384, 0.0290149301, -0.0207672454, 0.00530107552, 0.019145906, 0.00178523595, 0.00245315745, 0.0535183065, 0.0149022266, -0.0157622416, -0.0223321915, -0.0161711015, -0.00295013329, -0.0175809618, -0.00863539614, -0.0213170908, 0.0107995318, 0.0105739543, -0.0106514962, 0.0277319569, 0.00630207686, -0.00237737736, 0.00146625494, 0.0190331172, 0.010228538, -0.00502967741, -0.0139223728, -0.00693298923, 0.00874818489, 0.0201610066, -0.0351619236, 0.0159173254, 0.0224308819, 0.00244787033, 0.000727840525, -0.0011164333, 0.00904425513, 0.0111097014, 0.00432827184, 0.00624568248, -0.00277742534, -0.0204852745, -0.00535042072, 0.026956534, -0.00089966727, 0.0150009161, -0.0194560755, 0.00198261649, 0.0248135459, 0.0125548085, 0.0314116925, 0.00270693237, -0.00596371, 0.0185255669, -0.00305058574, 0.00680257706, -0.00697881, 0.0057487064, -0.0166222565, -0.000437497365, 0.0247289538, -0.0200200193, 0.000158609313, 0.0110392086, 0.014874029, -0.00711627118, -0.018779343, 0.00828293059, -0.0208800342, -0.0107713351, 0.000964873296, 0.0112224901, 0.0108770747, 0.019766245, 0.0121811954, 0.00691536628, 0.00140986056, 0.0114128217, 0.0189626254, -0.0110392086, 0.0243905876, 0.00445868401, 0.00486049429, -0.00129707169, 0.0178206377, 0.00219057081, 0.00645716116, 0.0194278788, -0.0287329592, 0.00110762171, 0.00822653621, -0.00397933135, 0.00636199582, -0.0237984471, 0.0151419025, 0.0262375046, 0.00309993094, -0.0220502187, 0.00456794817, 0.0125759561, 0.000443004625, -0.00376432762, -0.0123997238, 0.0164248757, 0.0107008414, -0.0163684804, -0.00697528524, -0.0133302314, 0.0118428292, 0.00969279092, 0.020259697, 0.00378547562, 0.01426074, -0.0349081494, 0.00805030391, 0.00168302108, 0.0108277295, -0.00306292204, 0.0317500606, -0.014958621, 0.00695766183, 0.0318628475, -0.0060976469, 0.000317218626, -0.00511779403, -0.0169888195, 0.0263643917, -0.0167209469, -0.00417671213, 0.00891736802, -0.0258709416, -0.0040674475, -0.0192023013, 0.0018962624, -0.0073594721, 0.00741586648, 0.000605358859, -0.0260683224, -0.008134895, -0.00616814, 0.00426482828, 0.0152264945, -0.0150996065, 0.0268578436, 0.00919934, 0.00913589634, 0.00148740294, 0.0129989143, -0.00224872772, 0.0113493772, 0.00139752426, 0.0106937923, -0.00533984695, 0.00784587394, 0.00881867763, 0.0117018428, -0.000110420719, 0.00778243039, -0.0118498784, -0.0134923654, 0.00483582169, -0.00977738295, 0.0131539991, 0.0180462152, 0.0208659358, 0.0328779481, 0.00411326811, -0.00565001601, -0.0287893526, -0.0130482595, 0.0160583127, -0.00674265809, -0.00400047936, 0.0161711015, -0.0171721019, 0.0139364721, 0.00539271673, 0.0183704831, -0.0143453311, -0.00766259199, -0.0037925248, -0.00606592512, -0.0276896618, 0.000577161671, -0.00323034311, 0.00922753755, -0.0252224058, 0.0074088173, 0.00139223726, 0.00307349605, -0.000475387351, -0.000182510863, 0.0045468, 0.00159490481, -0.0179193281, -0.00593551295, -0.0188075397, -0.000365682587, -0.000520767237, -0.00920638908, -0.00204253546, -0.0203583874, 0.00610117149, -0.00332374638, 0.0110744545, 0.00830407906, 0.0105105108, 0.0184127782, -0.0111519974, 0.014465169, 0.0114903636, 0.0322858058, -0.00948131271, -0.00064413005, 0.0284227896, 0.00533279777, 0.0307913553, -0.00414499, -0.0331317224, 0.00901605841, 0.00327263889, 0.0215567686, -0.0126464497, -0.00338542764, -0.0145074651, 0.0305093825, 0.0038277714, 0.0155789591, -0.00172972272, -0.00830407906, 0.00384891941, -0.000571434095, -0.0394760966, -0.00107942452, 0.00408859551, 0.0173553843, 0.00535394531, -0.00563591765, -0.00145568105, 0.0100100096, -0.0108629754, 0.029917242, -0.0111731449, -0.0104047712, 0.0194983725, -0.0181167088, 0.0180180185, 0.023460079, -0.00781062758, -0.00570641086, -0.00714446837, 0.00760619761, -0.00456442358, 0.0187088493, -0.0124138221, -0.0170452148, 0.00414499, 0.0190472156, 0.0025888565, -0.0312707089, 0.00596723473, 0.014465169, -0.0239676293, 0.0064430628, 0.0137108937, 0.0179616231, 0.0368819535, 0.00141514756, -0.00988312252, 0.00932622794, -0.00604477711, -0.00509312144, -0.0146343531, -0.0188780334, 0.00170240668, -0.0315808766, 0.000887771603, -0.0180885103, 0.00630207686, -0.0220079236, 0.00108647381, 0.0184268784, -0.00605887594, -0.015325184, 0.0133161331, 0.0114551168, -0.0148458313, 0.0047371313, 0.00322681828, 0.00116225379, 0.0305375792, -0.00990427, -0.0229666289, -0.0303120017, 0.0137884365, -0.00263820169, 0.0201469082, -0.0141972955, -0.00986902416, -0.00326382718, 4.53523498e-05, -0.00232979469, -0.0116243, -0.00785997231, -0.0345697813, 0.00264877547, 0.00764849363, 0.0200905129, -0.0048041, 0.012984816, -0.000739295618, 0.00436351867, -0.00109528541, -0.00166187319, -0.0125759561, -0.00903720595, 0.0240663197, -0.0231640097, 0.00862834696, -0.00828998, -0.0204147808, 0.0138095841, -0.0213311911, 0.00212712702, -8.94931054e-06, 0.0139646688, -0.0124631673, 0.0211902037, 0.00877638161, -0.017298989, 0.026420787, 0.0104259187, -0.0209082328, -0.0128438296, -0.00106268236, 0.00738062, 0.00840276852, 0.0131399008, 0.00226987549, 0.0352465138, -0.0117441388, 0.01031313, 0.0155225648, -0.0236574598, 0.00522000855, -0.00535042072, 0.0188075397, 0.00422958191, -0.00328497519, 0.00210950384, 0.025518477, -0.0122234914, 0.00624215743, -0.0161992982, -0.00607649889, 0.00397580676, -0.00130235869, -0.00821948703, -0.018779343, 0.0169888195, -0.00882572681, -0.00482172333, 0.0139153237, -0.0102849333, 0.0133654783, 0.011011011, -0.0135558089, 0.00779652875, 0.000900989, -0.0141268028, -0.00654175319, 0.0145920571, 0.00626683, 0.0254338849, 0.0118357791, -0.00951655861, 0.0147048458, -0.0048322971, 0.014831733, 0.014916325, -0.0110744545, 0.0100382073, 0.0058227242, -0.0263784919, 0.0225718673, 0.0077542332, 0.016805537, 0.00208483124, 0.013562859, 0.0165094677, -0.00544911111, -0.010968715, -0.029917242, -0.00975623541, -0.00759209925, 0.0208659358, 0.00799390953, 0.00320567051, 0.00995361526, 0.00544206193, 0.017214397, -0.00681667589, -0.00883277599, -0.00184163032, 0.0215144716, -0.0198508371, 0.0152546912, -0.00431769807, -0.01031313, -0.0147189442, 0.0420984365, -0.0243341941, -0.0035792836, 0.00648535881, -0.00112612615, -0.00301710167, 0.0041872859, -0.00951655861, -0.0222335011, -0.0134430202, -0.000485080149, -0.0229807273, -0.0162979886, -0.00295718247, -0.000184493474, 0.0169747211, -0.0140986061, 0.0029095998, 0.0074793105, 0.0203019921, 0.00883277599, 0.0230794176, 0.00970689, 0.00568173826, -0.00657699956, -0.0218246412, -0.00922048837, -0.0146343531, -0.00615051668, -0.00501205446, 0.0263925903, -0.000557335501, 0.0113564264, 0.0149304233, 0.0123151317, 0.0253210962, 0.010397722, -0.0134289218, -0.0175386649, 0.00589674199, 0.0172707923, 0.0171298049, 0.0119908638, -0.0151278041, -0.00330436067, 0.00238795136, -0.0102496864, -0.00750045804, -0.0112224901, -0.00891736802, 0.018243596, -0.00800095871, -0.005177713, 0.00104417803, 0.024940433, -0.0181449056, -0.0298608467, 0.00263996399, 0.00434942, 0.00297656818, -0.00533984695, -0.0113775749, -0.00936147384, 0.0153533816, 0.00751455687, -0.0201046113, 0.0105175599, 0.0229807273, 0.00550903, -0.00484639546, -0.00311226724, -0.0116102016, 0.00394760957, -0.00491336407, 0.00512131862, 0.0140704084, -0.0248981379, -0.0191036109, -0.00179492868, 0.015325184, 0.00679905247, -0.00974213611, -0.00771898637, -0.0337238647, 0.0058438722, -0.00399695477, 0.0101791937, -0.006347897, 0.0176373553, 0.00589321693, -0.00967869256, 0.0344005972, 0.0227833465, -0.00398990558, -0.00705282763, -0.0144510707, 0.0298044533, -0.0219797269, 0.0107995318, -0.0106937923, 0.00690831663, 0.00281619653, -0.0155789591, -0.0283663943, -0.000777185662, 0.0179334264, -0.0116454484, 0.00444458565, 0.0112083917, 0.00150590728, 0.0262657031, 0.0100805033, 0.0174117777, -0.00307702064, 0.0219233315, -0.00330612296, -0.00766259199, -0.0259132367, 0.00608354853, -0.0177219473, -0.00294308388, -0.0126394, -0.0164671708, -0.0159455221, -0.0172707923, 0.00453975098, -0.00472655753, 0.00192974659, 0.0107995318, 0.00300476537, 0.0113352789, 0.00955885462, -0.00506492425, 0.00857900176, -0.00402867654, -0.00870588887, 0.0258286446, 0.00480057532, -0.000456442358, 0.00866359286, -0.00877638161, 0.043226324, -0.0132244918, -0.00616814, 0.0113493772, -0.0098901717, -0.00621748529, -0.00943901669, -0.0351901203, 0.000913765864, -0.00726783136, 0.0195124708, 0.0130694071, -0.0140563101, 0.000515920867, -0.0226987544, 0.00844506454, 0.02547618, 0.0292687062, -0.0279575344, 0.010270834, 0.00279504852, 0.011997913, -0.00167773408, 0.0246302634, -0.0104259187, 0.000649857626, -0.0246161651, 0.0314962864, -0.00706692599, -0.000619898085, 0.00151560013, -0.00907950196, -0.0150150154, -0.0186524559, -0.0112365885, 0.0277460553, -0.0221348107, 0.0147612402, 0.00285320543, 0.00746521167, 0.0132244918, 0.00955885462, 0.0161429029, 0.0110603562, -0.00886802282, -0.0167914387, -0.0109616658, 0.00298890448, -0.0115608564, -0.0144933667, -0.00230512209, 0.0022311043, -0.00606944971, -0.00621396024, 0.0108629754, 0.0017473459, 0.0146061555, 0.0438184664, 0.00967869256, 0.00990427, -0.00154027261, 0.0164248757, 0.030452989, 0.00440228963, 0.00271045696, 0.00536451954, -0.027449986, -0.00363039086, -0.000461288757, 0.0107360883, -0.0172425956, 0.00398638053, 0.00723963417, 0.00228044949, -0.0101791937, 0.00967869256, -0.012286935, 0.00667569, 0.0153956776, -0.0141831972, -0.0105951019, -0.0213593878, 0.0254479833, -0.0100311581, 0.0102849333, 0.00612584408, -0.0206685551, 0.0226000641, -0.0117229903, 0.00381014822, 0.00463844137, 0.00531517435, -0.0219374299, 0.000918171718, 0.0049027903, -0.0198226403, -0.00688011944, 0.0282113105, 0.00794456434, -0.00753570488, -0.000546321, -0.023460079, 0.0189062301, 0.00122305402, -0.0091077, -0.00860719848, -0.0300864242, -0.0098408265, 0.0086001493, -0.00556894904, 0.010270834, -0.0305375792, 0.0129918652, -4.68806184e-06, 0.0203160904, -0.000190441322, -0.00606240053, 0.0168619324, 0.0079093175, 0.021613162, -0.00330788526, 0.00769783882, -0.0285778735, -0.00526935374, -0.00716209179, 0.00355813559, 0.010968715, 0.0226282626, 0.0116736451, -0.0145920571, 0.00789521914, 0.00471950835, -0.00738766929, 0.00894556567, 0.0142818876, -0.00237913965, 0.0155930575, 0.0076343948, 0.0134923654, -0.014176148, 0.0101016508, 0.00407449715, 0.0135487597, 0.0124984141, -0.0198931322, -0.0322294123, 0.00267697265, 0.0137813874, 0.00765554281, 0.00781062758, 0.00998181291, -0.0208377391, 0.0123715261, 0.00575928, 0.015818635, -0.00431769807, 0.00576280523, -0.00515656499, 0.00482172333, 0.0244187843, -0.0119556179, -0.0180744119, -0.0219515283, 0.0351055264, 0.0169606227, -0.0121388994, 0.00260471739, 0.00982672814, 0.0145920571, 0.000659991, 0.000104638086, 0.0118921734, 0.00466663856, 0.0057028858, -0.0252365042, -0.00304529886, 0.00711274659, 0.00755685242, -0.0139576197, -0.00779652875, -0.00179492868, 0.0143664796, -0.00633732323, -0.00685192226, 0.00905130524, 0.00274570356, 0.0123644769, -0.0149445217, -0.0250532217, -0.0103272283, -0.0049274629, 0.0109616658, -0.010891173, 0.00209188065, -0.0115608564, -0.0127451392, 0.00732422573, 0.00112348259, -0.0079586627, 0.00924868509, -0.0047829519, -0.00347178173, -0.000924339809, 0.00187511451, -0.00398990558, 0.0152687896, -0.0252083074, -0.0204852745, -2.00326867e-05, 0.00126975565, 0.0165658612, 0.014380578, 0.0260683224, -0.00881162845, -0.0188216381, -0.00437761704, -0.00431769807, -0.0130200619, 0.00647126, 0.00445163483, 0.00464549055, -0.00304353656, 0.0150291137, -0.0103272283, 0.00923458673, -0.00238618907, 0.0019685179, 0.000210157334, -0.00164424989, -0.00332550867, 0.0243059956, 0.0070140562, 0.00149004639, -0.00698585901, 0.00249016611, 0.00655585155, -0.0150432121, 0.0119415186, -0.013027112, -0.0176514536, 0.00267168577, -0.00754275406, 0.00883277599, -0.018737046, 0.00543853734, -0.0098408265, -0.00988312252, 0.00754275406, -0.00287787779, -0.0196957514, 0.00309640635, -0.000783353753, 0.021655459, 0.00876933243, -0.0301710162, 0.00372908125, -0.0137743382, 0.0047829519, 0.0126534989, -0.0220925156, -0.00206015864, 0.0181167088, -0.00318099791, -0.0214721765, 0.00606240053, 0.0156776495, 7.58901515e-05, 0.0131892459, 0.0227128528, -0.00627740426, -0.00101333729, -0.0138236824, -0.000520767237, -0.00479000108, 0.0197803434, 0.00699290819, 0.00353698758, 0.0102849333, -0.0271398164, -0.00480057532, 0.00863539614, 0.000589938543, -0.00290431269, 0.0185960606, -0.00696118642, -0.00475123, 0.00286906632, -0.0147189442, 0.00931212865, -0.00357575878, 0.0144369723, 0.00919229072, 0.0103695244, 0.0126816956, 0.00340305082, -0.0205980632, 0.00102479244, -0.00249192864, -0.0158891287, -0.00843801536, -0.00182048243, 0.00627387967, -0.0048781177, 0.0237420518, -0.0120684067, 0.0211479086, -0.00999591127, 0.00283734431, 0.00273336726, -0.00276508904, -0.0135417106, -0.000678054814, 0.0164107773, 0.00658404874, -0.000735770969, 0.0147612402, -0.00756390207, 0.00637609418, -0.0389403477, 0.0130200619, 0.00157199451, -0.00399695477, -0.0209364295, 0.00141779101, -0.0144158239, -0.0294942837, -0.00823358539, 0.0131328516, 0.000870588876, -0.00326206489, 0.00122041057, 0.00994656608, -0.0193573851, 0.0101227993, -0.0195547659, 0.0150855081, -0.0187511463, -0.0120543074, 0.0107854335, -0.00313870213, -0.00771898637, 0.0314116925, -0.00231745839, -0.0136192534, 0.0127451392, -0.0210492183, 0.00824768469, -0.0249122363, 0.00302415085, 0.0149868177, 0.016396679, 0.00517418841, 0.0203724857, -0.0118710259, -0.0136333518, 0.0187511463, 0.0104329679, 0.00513189239, -0.0525032058, -0.00745816249, 0.0214439798, -0.00596723473, -0.00768374, 0.00265758717, 0.00454327557, 0.0182717927, 0.0123574277, 0.0038665426, 0.0219797269, 0.000222383474, -0.0090936, 0.0103695244, -0.0224026851, 0.00320214592, 0.0146061555, 0.0264630821, -0.010602151, 0.00179581, 0.000107997519, -0.0130764572, -0.0302274097, 0.00967869256, 0.00105387077, -0.00912884716, 0.0174681731, 0.00704577798, -0.0211056136, -0.00502262823, 0.0211338103, 0.000806704571, 0.00265053776, 0.0039370358, 0.00931917876, -0.00315103843, 0.00453975098, 0.00186454062, -0.0143523803, 0.00622805906, -0.00401457818, -0.000921696366, -0.00323915458, -0.0108841239, -0.000249369099, -0.00393351074, -0.0243905876, 0.0210633166, 0.015325184, 0.00163279474, 0.0214721765, 0.00260471739, -0.0129777668, 0.00793751515, 0.0019085987, 0.00184163032, 0.019597061, 0.0133654783, -0.0106585454, -0.016354382, 0.0178488344, -0.00192445971, -0.00439171586, 0.0238689389, -0.00170416897, 0.00348588033, -0.00642191479, -0.00674265809, 0.0278165489, -0.000283954723, -0.016312087, 0.0249263346, -0.0685756207, 0.0167914387, 0.00186982763, 0.00116665964, 0.00178523595, 0.0160442125, 0.0220925156, -0.00208835606, 0.0306785665, 0.00389826437, 0.00217647222, 0.0209364295, 0.0139999157, 0.0131751467, -0.0256594624, -0.000367444911, 0.0231499113, 0.000550286204, -0.00544911111, -0.00566763943, 0.0146625498, 0.00630912604, 0.00948131271, -0.0124772657, 0.00612584408, 0.00803620555, 0.00867064204, -0.00510017062, -0.0110815037, -0.0190895125, 0.00179404754, 0.0161429029, 0.0152123952, -0.008423917, 0.0270270277, 0.014874029, 0.00729602855, -0.014014014, -0.0134289218, -0.0163402837, -0.000228221179, -0.00757800043, 0.00750045804, -0.00771898637, -0.0248417426, 0.00919229072, -0.0142395915, -0.00216237362, 0.00629502721, -0.00617166469, -0.0123433294, -0.000989545835, -0.0105669051, 0.00538566755, 0.0206685551, 0.00633379864, -0.0301146209, 0.0067638061, 0.0327651612, -0.000858693209, 0.00323739229, -0.0313271023, -0.00839571934, 0.00526582915, 0.0146907475, -0.0130764572, -0.0102003412, -0.00762734562, -0.0132597387, 0.00756390207, -0.012984816, -0.00142307801, 0.00191212341, -0.0174117777, -0.0123856254, 0.00176408805, 0.00442696223, 0.0155366631, -0.00765554281, -0.00745111331, 0.00440228963, 0.00162927015, 0.0107290391, 0.0151419025, 0.00954475626, -0.00339423935, -0.00519181136, 0.0162556916, 0.0196111612, -0.00297833048, 0.000695678056, 0.0121882446, -0.0304247905, -0.0104047712, 0.00695766183, -0.00154467847, -0.00173236616, 0.00196146849, 0.00171650527, 0.00854375493, 0.0199213289, -0.00142660271, 0.0286765639, 0.000609764713, 0.0349363461, -0.000691712834, 0.0120049631, -0.00441991305, 0.00529402634, 0.00953770708, 0.0166081581, 0.0238266438, 0.0123151317, 0.0107360883, 0.013724993, -0.00397228217, -0.00579452701, 0.00707397517, -0.0154661704, -0.0042366311, 0.00480057532, 0.00568878744, -0.014465169, -0.0298608467, -0.00519886101, -0.00848736055, -0.00130147755, -0.00899491087, -0.00371850724, -0.0223039947, -0.0116454484, 0.0195688643, -0.00442696223, 0.000253334321, 0.00988312252, -0.00991132, 0.00162574544, 0.0154238744, -0.00568878744, -0.0185114685, 0.00404277537, -0.000687747612, 0.0212184023, 0.0126464497, -0.0346261747, -0.0209928229, 0.00278976164, -0.00277213822, 0.0161429029, -0.0181167088, 0.000437277078, 0.00157199451, -0.000380221783, -0.00640076678, -0.0111378981, 0.000659991, 0.000541034, 0.00941786822, 0.00926278345, 2.6503727e-05, 0.00973508693, -0.00298537966, 0.0105528068, -0.0132808862, 0.00465253973, 0.00201610057, -0.00757800043, 0.015903227, -0.00327440118, 0.0109123206, -0.00157463807, -0.000800095848, -0.00371145783, -0.0217400491, -0.0167350452, -0.0242777988, -0.00843096618, -0.0246443618, 0.00848031137, 0.020710852, 0.000661312719, 0.00185044203, 0.00258180709, -0.00312636583, 0.00316689932, -0.0349081494, -0.00628092885, 0.00919934, 0.0181731023, 0.0106937923, 0.0161852, 0.0294942837, 0.0155366631, 0.000212139959, -0.00939672068, -0.0161711015, -0.0102567356, -0.00827588141, -0.00652413, 0.00207778206, 0.0172848906, 0.00513541698, 0.00694356347, -0.0135135138, -0.00234741787, 0.00102038658, -0.000471862702, -0.015452072, 0.00418023672, 0.0233049951, 0.0247148555, -0.0159878191, -0.0152687896, 0.00774718402, -0.0203442872, 0.0085931, -0.0192445964, 0.0087904809, -0.0136544993, -0.00869179051, 0.0218951348, 0.0160160158, 0.0105739543, 0.003246204, 0.0281408168, 0.00497328304, 0.00543148769, 0.026054224, -0.0188780334, 1.67696307e-05, 0.0183422863, 0.00758504961, -0.00981263, -0.00789521914, 0.00724668335, -0.0038876906, 0.01426074, 0.0126746465, 0.00591084035, 0.00205310946, 0.0185960606, 0.0222757962, 0.00335546816, -0.00914294552, -0.00665454194, 0.028803451, -0.0174258761, 0.0244751796, -0.00852260739, -0.00154908432, -0.0118075823, -0.000734008674, -0.0110603562, 0.0321166255, 0.0157904383, -0.00156670751, -0.0282818023, 0.0185255669, -0.0149445217, -0.00499443104, -0.0280844215, -0.003246204, 0.014874029, 0.000236592226, 0.0038771166, -0.00339952623, 0.00932622794, -0.00154908432, -0.00465958938, -0.000464372832, 0.00233860617, 0.00974918623, -0.0140492609, -0.000369427522, -0.0147753386, 0.0273935907, -0.00420843391, -0.00189978711, -0.0271398164, -0.00315103843, -0.00740176812, 0.0213170908, -0.0019138857, -0.0217823461, 0.020132808, -0.00101598073, -0.00720086275, -0.00718676439, 0.0102567356, 0.00125653821, 0.000559097854, 0.000165768768, 0.0298890434, -0.00322681828, -0.0177360456, -0.0186524559, 0.0168337356, -0.00472655753, -0.00351407751, -0.0251942091, 0.0124420198, -0.0264630821, 0.00565706566, -0.0146484515, 0.0155648608, -0.0103695244, -2.19051581e-05, -0.0222898964, -0.00545968488, -0.0161711015, -0.00599543191, 0.0150714098, -0.00871998724, 0.0192868933, -0.0076343948, 0.0207531471, -0.014218444, -0.00268754666, 0.00576633, -0.0214580782, -0.0242073052, 0.0208800342, -0.0058685448, -0.0208800342, 0.00687307026, -0.00484639546, 0.0164953694, 0.00208835606, -0.0264771823, -0.0164389741, -0.000272719917, 0.0102003412, 0.00706692599, 0.00277390075, -0.00191212341, -0.018243596, -0.0178629328, -0.00555837527, -0.00352641381, -0.0063937176, -0.0192164, -0.0143453311, 0.00254479842, -0.015409776, 0.003246204, -0.0187229477, -0.000994832837, -0.00546673452, 0.0264771823, -0.000955180556, -0.00494861044, -0.0120190615, -0.0105316583, 0.0303965937, 0.000659109792, 0.0273512956, -0.0214298815, -0.0179193281, 0.00224696519, -0.00745111331, -0.0167350452, 0.00689774286, -0.00171121827, -0.0347389653, 0.00671446091, 0.000722112949, -0.0156917479, 0.00398285594, -0.0107572358, -0.018694751, -0.00482524792, -0.00378900021, 0.00523410738, 0.0584246218, 0.0192164, 0.0338084549, -0.0226282626, -9.12554315e-05, -0.00400047936, 0.00757800043, 0.0306785665, -0.0192586947, 0.00679200329, 0.00720438734, 0.0177783426, -0.014958621, 8.48119234e-05, 0.000139774464, 0.00914294552, 0.012491365, 0.0018892131, 0.00412384234, -0.00294132158, -0.0038171974, -0.0244187843, 0.0168337356, 0.00106180122, 0.00540681509, -0.0146484515, 0.00891031884, -0.003544037, -0.0234036855, 0.0188498367, 0.0016354383, 0.00754980324, 0.0217541493, -0.000749429, -0.010602151, 0.00898786075, 0.0131892459, 0.0249686297, -0.00472655753, -0.0345697813, 0.0203865841, 0.0198649354, 0.00563944224, 0.000579805172, 0.00875523407, -0.0192727931, 0.0123574277, -0.0150150154, -0.00402162736, -0.0169042274, 0.0321166255, -0.0422676206, -0.0234318823, -0.0151137048, -0.00152617402, 0.00105739548, 0.0388557576, 0.010764285, 0.00601658, 0.0210915133, 0.00389473978, 0.0038876906, -0.00929803, -0.00333432015, -0.0100311581, -0.0286765639, -0.0105810035, -0.0197944418, 0.00817719102, -0.00389473978, -0.0149445217, -0.00795161352, 0.00171826757, -0.00853670575, -0.0153392833, 0.0100382073, 0.0029219361, -0.002516601, 0.00137549522, -0.0103695244, -0.0294378884, 0.019681653, -0.0117159411, -0.0168901291, 0.00140369241, -0.022642361, -0.00309993094, -0.0158045366, -0.0127733368, -0.00811374746, 0.0135064647, 0.0276473649, 0.0104188696, 0.00272103096, 0.012695794, 0.0112647861, -0.00891736802, -0.0131046539, 0.00577690359, -0.000349601352, 0.0166504532, -0.0061187949, 0.00688364403, -0.00739471847, 0.0120120123, 0.0275627747, 0.00955180544, 0.00867064204, -0.0172566939, -0.00322858058, -0.00725373253, -0.0125477593, 0.0198226403, 0.0077542332, 0.00891031884, 0.00240028766, -0.00209188065, -0.00210774154, -0.00774718402, -0.0142677892, 0.0109052714, -0.0110462578, -0.018243596, -0.00696823606, -0.00830407906, -0.00548435748, -0.000390134839, 0.000140655626, 0.0218528379, 0.0096082, 0.00389121519, -0.00840981863, 0.00466311397, 4.34523427e-05, 0.0301710162, 0.0242918972, -0.0108418278, 0.0112154409, 0.0248276442, 0.00452212756, -0.0126464497, 0.0233331919, -0.00852965657, 0.0160442125, -0.00153322332, 0.0221630074, 0.00998181291, 0.0201187097, 0.0519674607, 0.00136580237, 0.00984787568, -0.00461024418, -0.0212888941, 0.00996066444, -0.00716561638, 0.00720791193, 0.00473008212, -0.014916325, 0.0246443618, -0.0260965191, 0.00517066382, 0.00364096486, 0.0163402837, -0.00292017381, -0.00217294763, -0.0138448309, -0.0174117777, -0.0146061555, 0.0016213397, -0.00722553534, 0.0196957514, 0.0140210632, -0.0144158239, 0.0102849333, -0.0113916732, 0.0127662877, -0.0098055806, -0.018863935, -0.0143594295, -0.0137179429, 6.90060624e-05, 0.00204782258, 0.00910064951, 0.0515445024, -0.00100452569, -0.00514246663, -0.000645451772, 0.00950246, 0.0254056882, -0.0126675973, -0.0138448309, -0.00938262232, 0.00567116402, -0.00360748079, 0.0224026851, 0.00180814613, 0.0242496021, -0.00032647085, 0.00749340886, 0.00155701477, 0.0268296469, -0.0208800342, 0.00566059025, -0.0160583127, 0.0113634765, 0.017792441, -0.0119556179, -0.0165658612, -0.00496270927, 0.0138166333, 0.00209892984]
24 Nov, 2021
jQWidgets jqxScrollBar disabled Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollBar is used for representing a jQuery widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. The disabled property is used for setting or getting whether the scrollbar is disabled or not. Syntax: For setting the disabled property: $('#jqxScrollBar').jqxScrollBar({ disabled:true }); For getting the disabled property: var disabled = $('#jqxScrollBar').jqxScrollBar('disabled'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollBar disabled property. In the below example, the value for the disabled property has been set to true. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollBar disabled Property </h3> <div id='jqx_Scroll_Bar'></div> <input type="button" style="margin: 28px;" id="button_for_disabled" value="Value of the disabled property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_Bar").jqxScrollBar({ width: 300, height: 40, disabled: true }); $("#button_for_disabled").jqxButton({ width: 250 }); $("#button_for_disabled").jqxButton(). click(function () { var Value_of_disabled = $('#jqx_Scroll_Bar'). jqxScrollBar( 'disabled'); $("#log").html(( Value_of_disabled)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollbar-disabled-property?ref=asr3
PHP
jQWidgets jqxScrollBar disabled Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0314662717, 0.0121971173, -0.0145663936, 0.047127828, 0.079768, 0.00361475605, 0.000576213584, 0.0135642821, 0.0100855269, -0.00770193571, -0.017250618, 0.0337568112, -0.0027056986, -0.0275437254, 0.0112164803, 0.0215310622, -0.0325829089, -0.00436276, -0.0239361264, 0.0337281786, 0.0183815714, -0.0178375691, -0.039397262, 0.0266704578, -0.0601838976, 0.0280018337, 0.00979921, 0.0212304294, -0.00306180562, -0.00882573146, -0.0282595176, -0.0158619788, -0.000632134906, 0.00879709888, -0.0310940593, -0.0207150578, -0.000960952486, -0.0103503708, -0.0240649693, -0.00165616674, -0.0332987048, 0.0122973286, -0.00803120062, 0.0204430558, -0.00204895833, 0.0244658142, -0.0158619788, 0.0112307966, -0.0161339808, 0.0332700722, 0.0140653383, 0.0274864621, 0.00145395508, 0.0295479465, 0.0301778447, -0.0045882347, 0.00403707428, 0.0241508652, 0.00221538, 0.00806699, 0.00326222787, -0.0375648327, -0.0153609235, -0.0351883955, -0.0126194358, 0.0163916666, 0.00361833489, 0.0145449191, -0.029834263, 0.0147023937, -0.0357037671, 0.034014497, 0.0150030274, 0.0187108368, -0.00108263735, 0.0106223719, -0.0445796065, 0.0269710906, 0.0277298316, 0.0102859493, -0.0176944099, -0.0176085141, -0.0535127036, 0.0186535735, -0.00608424284, 0.0183386244, 0.0177516732, -0.0376793593, 0.0751296654, 0.0152177652, -0.0236354936, -0.00969184097, 0.00300812116, -0.010894374, -0.0117533254, 0.00197737897, -0.0359900855, 0.00891878456, -0.0157617684, 0.015031659, 0.0462116152, 0.0239933897, -0.00758740865, -0.0273146722, -0.0138148097, 0.00263590878, 0.0314949043, 0.0115027977, 0.0297197364, 0.0209154803, 0.00357180834, -0.018009359, 0.00267348788, -0.00870404579, -0.0382233597, 0.0457535051, -0.00144142867, -0.00863962527, 0.0237929691, -0.0162485074, 0.000500607945, 0.0235066507, -0.0307791103, 0.0400271602, 0.00212590606, 0.0302637387, -0.0143659711, -0.005869505, 0.0214737989, 0.00215811678, 0.00314054289, 0.0317812227, -0.0229769647, -0.023520967, 0.0179234631, 0.0310081653, -0.00393686304, 0.0103288973, -0.039397262, -0.00336064934, -0.0324397497, -0.0298056323, -0.00106653199, 0.0290039442, -0.016320087, 0.0527969114, -0.00420528557, 0.03707809, -0.0223327503, 0.00944847148, -0.0101571064, -0.0278729908, 0.00541497627, 0.00847499259, 0.0569771454, 0.0142872334, -0.00403349521, 0.0169643015, -0.022275487, -0.010271633, -0.00418023253, 0.0058158203, 0.0306359529, 0.0266275089, -0.0310081653, -0.0110089006, 0.0236211773, -0.00599834742, -0.0275007784, 0.0278729908, -0.00878994167, -0.0405425318, -0.015604293, 0.00712930085, 0.000247619726, -0.000295264734, 0.00960594602, -0.0355606116, 0.0168354586, -0.0332700722, -0.0382233597, -0.00980636757, -0.0241079181, 0.0102430014, 0.00899752136, -0.0093053123, 0.000655398238, 0.0133352289, -0.0577502027, -0.0142800761, -0.0457535051, -0.0104291076, 0.0276868846, 0.036505457, 0.0103074228, -0.00891162641, -0.0187824164, -0.0163057707, 0.000100714351, -0.014051022, -0.000179060167, 0.0205289517, 0.020586215, 0.0297197364, -0.00858236104, 0.033041019, 0.00822446495, -0.0255251881, 0.0510503761, 7.20267e-05, -0.0158619788, 0.00780930463, 0.0294047873, -0.00697898446, 0.00484234141, 0.00846783444, -0.0201567393, -0.0265129823, -0.0379943065, -0.00614508521, 0.00405139, -0.0123259602, -0.0390536822, 0.0230485443, -0.115614928, 0.00305643724, -0.0125335399, -0.0243083388, -0.00195590523, 0.0148598682, -0.0400271602, -0.00897604786, -0.0133065972, -0.0135857565, 0.0225761198, 0.0510790087, -0.00878994167, 0.0215453766, 0.00273433025, 0.0232775975, -0.00443791831, -0.00111574272, -0.0252961349, -0.0146880783, 0.0127554359, -0.00773056736, 0.00132063858, -0.0330982804, 0.0142657598, -0.0173365138, -0.00886152, 0.00622740155, 0.00966320932, -0.0193121023, 0.0302923713, 0.0111305853, 0.00911920611, -0.0191689432, 0.0199849475, -0.013428282, 0.0306932162, -0.00429833867, -0.0249668695, -0.00884720497, 0.00878278352, 0.0436061248, 0.0253104493, -0.0115672192, 0.0129988063, -0.0365340896, 0.0339572318, -0.019655684, 0.043262545, -0.00141369167, 0.000433502311, 0.0245660245, -0.0405139, -0.0184102021, 0.0314662717, -0.00374717778, 0.00698614214, 0.006291823, 0.0239074957, 0.0710639581, 0.0270569865, -0.00276654097, 0.0220464338, -0.0171217751, -0.0197845269, 0.0468701422, -0.0254536085, -0.00979921, 0.0146093406, 0.0171790384, 0.0457535051, -0.0129773319, 0.000872373057, -0.000371765142, -0.0166636668, 0.0372785144, -0.0231344383, -0.000636608631, -0.0354174525, -0.0113596395, 0.01111627, 0.0300633181, 0.0296338424, -0.0126194358, 0.00501771085, -0.0395404212, 0.0243656039, -0.00350201852, -0.0211015865, -0.02738625, -0.0118964845, 0.0166636668, -0.000381383608, 0.0399126336, -0.0193121023, -0.00753730303, 0.00986363087, 0.00853225589, -0.039969895, 0.03707809, 0.039884, -0.0420886427, -0.0161482971, -0.00891162641, 0.00328907, -0.0266990885, -0.0530545972, 0.0259117167, 0.0129487, -0.0152750285, 0.000811978, -0.0463834032, -0.0196843147, -0.0229483321, -0.0150746061, 0.00150763954, -0.00502486899, -0.0152750285, 0.0152750285, -0.00150674488, 0.0545434467, -0.0540280752, -0.029304577, 0.0114025865, 0.0440642349, -0.00859667733, 0.00122311176, 0.0260691904, -0.0031834906, 0.0049532894, 0.0174939875, -0.00605561119, -0.0212161131, -0.0332987048, -0.0453240313, -0.0104792137, 0.0364768244, -0.005336239, 0.0150030274, 0.0325542763, 0.0208295844, -0.0405711643, -0.00683940481, -0.0182813611, -0.0147739733, 0.0239361264, -0.0114455344, -0.0431480184, -0.0121326959, 0.0231058076, -0.0423463285, 0.0231773853, -0.0265702456, -0.0297197364, -0.0090762591, 0.0123188021, -0.0473568812, 0.0463261418, 0.015031659, 0.032726068, -0.000167204838, -0.017293565, -0.00841057114, -0.00062452961, 0.0186678879, 0.0139293373, -0.0425753854, 0.0496760532, -0.00250348705, -0.0450663455, 0.00928383879, 0.00285959407, 0.0111735333, -0.000186218094, 5.39081811e-05, 0.00579434633, 0.0256826635, -0.0257542413, -0.00119000627, -0.0120253274, -0.0110303741, 0.00590529433, -0.0246519204, -0.0113882711, 0.00841057114, -0.0185963102, 0.00712930085, -0.032640174, 0.0126981726, 0.0416878, -0.00776635716, 0.00859667733, 0.032726068, 0.0221036971, 0.0134569136, -0.0451236069, 0.0347302891, -0.00989226345, -0.0182384122, 0.0297197364, -0.0359614529, -0.00429833867, -0.0890446827, -0.00463834032, 0.04366339, 0.00124995399, -0.00223506452, 0.0387387313, 0.00924089085, -0.020099476, 0.0265129823, 0.0361905061, 0.0408288501, 0.0202855822, -0.0212447438, 0.00513223791, -0.0184388347, -0.0253820289, 0.00217422214, -0.0207723211, -0.00315664825, 0.00214201142, -0.025611084, -0.00894025806, 0.0290612075, 0.0071185641, -0.0171217751, -0.0504777431, -0.0133352289, -0.0126409093, -0.0140796537, -0.00798825268, 0.0237929691, 0.0037972834, 0.0195411555, -0.0280018337, -0.0373357758, 0.0161482971, -0.0155040827, -0.00215990632, 0.0241222326, -0.0225331727, -0.0195841044, 0.0155470297, -0.0224329606, 0.0131777544, -0.0287462585, -0.00415160088, 0.0229340158, 0.053884916, -0.0111019537, 0.0420600139, -0.00851078238, -0.00217422214, -0.0254965555, 0.00934826, 0.030721847, 0.00667477213, 0.0554596633, 0.00302959513, 0.0194982085, -0.00567981973, 0.0260978229, -0.0144232344, -0.0115743773, 0.00916931219, 0.00844636094, -0.00164453499, -0.0366772488, -0.00170537748, 0.0093625756, 0.0202855822, -0.0323824883, -0.00218674843, 0.00829604361, 0.0105722668, 0.0313803777, 0.0310081653, -0.0222898033, -0.00156669249, 0.0374503024, -0.0157904, -0.0464120358, -0.000941268168, -0.00637771795, -0.0140581802, 0.0170931425, -0.0117032202, -0.0343008153, 0.0109015312, -0.0173508283, -0.0455244519, -0.0539708138, -0.0141297588, 0.0145735508, -0.00763751427, 0.0368776694, -0.00572992535, 0.00189506274, 0.00780930463, 0.0383665189, 0.0507067963, -0.0148598682, -0.0335563868, -0.0257542413, 0.019698631, -0.0103646871, 0.0099423686, 0.0417736955, 0.0317812227, -0.0314090103, 0.0317812227, -0.0193836819, -0.0231917016, -0.00644213939, 0.0201137904, -0.000510897429, 0.0361046121, -0.0347589217, -0.009971, 0.0248380266, 0.00723309116, -0.00724740699, -0.00232274923, 0.0153466081, 0.0264270883, 0.0203857925, 0.00471349852, 0.00564760901, 0.00272896187, -0.010715425, -0.0213592704, -0.0289753117, -0.0101284748, -0.00375433569, -0.0354460813, -0.00446297089, 0.00120432221, 0.00994952675, 0.00631687557, 0.0173078813, -0.0267420374, 0.0078952, -0.00520381704, 0.0050642374, 0.00238180207, 0.000620950654, 0.00423033815, -0.00576929376, 0.00715077482, -0.0134139657, 0.00651014, 0.0338140726, -0.00944847148, 0.0149887111, 0.0259403475, 0.00952720828, -0.0381088331, 0.0170358792, 0.0188683104, 0.00787372608, 0.0111234272, -0.00200243178, -0.020901164, -0.0300060548, 0.00187000993, 0.00408717943, 0.0246089734, 0.0156615563, 0.00144053402, 0.0217171684, -0.00530760735, -0.0108800577, 0.0243226551, 0.000362146646, -0.0417450629, -0.0039476, 0.0178518835, 0.0138649158, 0.012805542, 0.0112522701, -0.00176353566, -0.0277011991, 0.00927668065, 0.023921812, -0.0191689432, -0.0143015496, 0.0157617684, 0.0322965942, -0.0132493339, -0.0199992638, -0.0475573055, 0.0128771206, 0.0190544166, 0.00696466863, -0.00643140264, -0.018095253, -0.00264127715, 0.0357324, -0.0105937403, 0.0268422477, -0.0126480674, -0.0275580417, -0.0155756613, 0.00494971033, -0.0400271602, -0.00400486356, 0.00923373364, -0.0145019721, 0.0191546287, 0.0203571599, 0.0221752748, -0.0141297588, 0.0303782672, -0.0404852666, 0.0181525182, 0.0473855138, 0.0458107702, -0.0289753117, 0.0553737693, -0.00857520383, 0.0266131945, -0.0116674304, 0.00365770352, 0.0162628237, 0.00993521, -0.0144447079, 0.00121148012, -0.00785941, 0.00664971955, -0.013342387, 0.020672109, 0.00141637598, -0.017966412, -0.0151748173, 0.0394831561, -0.0402275808, -0.00622740155, 0.0429475978, 0.0176657774, -0.0019791685, -0.0131705962, 0.0612719059, 0.0304068979, -0.00821014866, 0.0230628587, 0.00582655706, -0.0126337511, 0.0261407699, 0.00834615, 0.00253569777, 0.00401917938, -0.0270569865, 0.00836046506, 0.0295193139, 0.0190401, 0.00925520714, 0.0195697881, 0.000576213584, 0.0159621909, 0.0142156547, -0.0211015865, -0.0263125598, 0.00511792209, 0.0186392572, 0.0101141585, 0.0019362208, 0.00820299052, 0.020142423, 0.0279588848, -0.00073413545, -0.00334812305, 0.0105436351, -0.00449518161, -0.0280018337, 0.00646719243, 0.00522887, -0.0283167828, -0.017207671, 0.00331591233, 0.013292281, 0.00139221794, 0.011917958, 0.0194695778, -0.0174653567, -0.0134640718, 0.0210729539, -0.00682866806, -0.00200780015, 0.0337568112, 0.0154468184, -0.0176800936, -0.0124834348, -0.0208009519, -0.0141082853, -0.0254106615, 0.00355212414, 0.0250098165, -0.0170215648, -0.0262123495, 0.00701477425, -0.020228317, 0.0067535094, -0.0174653567, 0.0192691553, 0.0019362208, -0.000742188131, 0.0424035937, 0.0365627222, -0.0253247656, -0.0141082853, 0.0206864253, 0.0104434239, 0.0187681, 0.00306538469, 0.00299022649, -0.0109015312, -0.0253390819, 0.00473855156, 0.0232919138, -0.0118392203, -0.0380515717, 0.0203285292, -0.0103002656, 0.0143659711, -0.00768762, -0.000510897429, -0.029304577, 0.0328405946, -0.0444364473, -0.00625961227, 0.0233634934, -0.0032837016, 0.0147739733, 0.0157474522, -0.0136215463, 0.00698972121, 0.0181095693, -0.0190114696, 0.00252317125, 0.0142442863, 0.0142084965, -0.0473568812, -0.00294727879, 0.0144590242, -0.0594394729, -0.0122114336, -0.00808130577, 0.0510503761, -0.00594824227, -0.00380444131, 0.0311226919, -0.0221895911, -0.0207723211, -0.00489244703, 0.0162628237, -0.0227049626, 0.0174653567, 0.014187023, -0.00345191313, 0.00150763954, -0.00648508687, 0.000275804108, 0.00937689189, 0.0141226016, 0.0131133329, -0.000507765857, 0.0168640893, 0.0135571249, 0.00288106804, 0.0253390819, -0.0205289517, -0.0182097815, 0.0322679617, 0.010493529, -0.0325542763, -0.000570397766, -0.0154611347, 0.00855372939, 0.0188396797, 0.0165205095, -0.0201567393, -0.0314949043, 0.00718298554, -0.0233062282, -0.00527181756, -0.0306645837, -0.0015362713, -0.0390823111, -0.0123832235, -0.0248809736, -0.0116960621, 0.0169499852, -0.0154038714, 0.00808846392, 0.0307791103, -0.0111806905, -0.00357538741, 0.0134068076, -0.0122973286, -0.0256253984, 0.0412869565, -0.0118964845, 0.0151605019, 0.0243656039, 0.00389033649, -0.00884004682, 0.0178662, -0.0400271602, 0.0171360914, -0.029834263, 0.00707203755, 0.0237213895, 0.0119966948, 0.015475451, 0.0163773503, 0.0181954652, -0.00341612333, -0.0267993, 0.00441286573, 0.00899752136, 0.0224472769, -3.76909884e-05, 0.0149457632, 0.0338140726, 0.00410149526, 0.0253104493, 0.0111520588, 0.0179807264, 0.0267134048, -0.0294620506, 0.0274864621, -0.0119251162, 0.0154325031, 0.012805542, -0.0169356689, -0.0183958877, -0.0141440751, -0.00136716512, 0.0110804802, 0.00528613338, -0.0147882886, -0.0137074413, -0.0430621244, -0.0223327503, 0.0049855, -0.0154897664, 0.029748369, 0.0160337687, -0.00802404247, -0.00223327498, -0.00807414856, -0.0320961699, 0.0112164803, -0.0162914544, -0.0291041546, 0.0537417606, 0.00647435, -0.0440642349, -0.0098851053, -0.00590171572, 0.0468128808, -0.028144991, -0.0235925466, 0.0198561046, 0.00800256897, -0.0140080741, 0.00646003429, 0.0050642374, -0.0524247, 0.00420528557, 0.0278873052, -0.0123116439, -0.0359900855, -0.0107512148, 0.00277012, 0.00919794384, -0.0164918769, 0.0126409093, -0.0207007416, 0.00496760523, 0.00446297089, -0.00454528723, 0.0140581802, 0.0099423686, -0.00812425371, 0.0375362, 0.0106366882, -0.00793814752, -0.0143731292, 0.0325829089, -4.57995848e-05, -0.0251386594, 0.0123259602, 0.0286746789, -0.03458713, -0.00888299476, -0.0132350177, 0.0156329256, 0.0223327503, -0.00620234851, -0.011917958, -0.00452739233, 0.00751582952, -0.0372785144, 0.0187251512, 0.00762319844, 0.00894025806, 0.0353601873, -0.00814572722, -0.0215167459, -0.0124905929, 0.00858951919, 0.00575139886, -0.0405425318, -0.00455602398, 0.0458394028, 0.0161769278, -0.0261980332, -0.0036433877, 0.0186965205, -0.0123402765, -0.0479867794, 0.0194552615, -0.0209727436, 0.0152607122, 0.00860383548, -0.00257864525, 0.020629162, 0.0092695225, 0.0123331184, -0.0289037321, -0.0191546287, 0.000936794444, -0.0357610323, -0.0126337511, -0.00664614048, -0.0378797799, -0.012404697, 0.0106295301, 0.0119394315, -0.0161196645, -0.00186285202, -0.00353959785, 0.0165491402, -0.017565567, -0.00741561828, 0.000566371426, 0.0605274774, 0.0249668695, -0.00808846392, 0.00936973374, 0.0244514979, -0.0430907533, 0.0250957124, -0.0221466441, 0.00443791831, -0.00869688857, -0.00365591422, 0.00990657881, 0.000668819353, 0.01360723, 0.0104147922, -0.0218173787, -0.0187537838, 0.0257256106, 0.0155899776, -0.0276725683, -0.006603193, 0.00778783066, 0.0165205095, 0.024680553, 0.0232919138, -0.0127339624, -0.0205432661, 0.000225922253, -0.0110375322, -0.00719014322, -0.000843293965, 0.0202569496, 0.0301492121, 0.0305500571, -0.00599834742, 0.0320389085, 0.00845351815, 0.0131562799, -0.0359900855, -0.0189112574, 0.0016570614, 0.0239790753, 0.0481585711, -0.000424107508, -0.00791667402, 0.0137790209, 0.00449518161, 0.0113310078, 0.0235925466, 0.019698631, 0.0210729539, -0.0305786878, 0.00616298, 0.00798825268, 0.00514297467, -0.00776635716, -0.0119108, 0.00731182843, 0.0127411205, 0.0105507933, -0.0228624362, 0.0118034314, 0.00958447158, -0.0109015312, -0.0102644758, -0.0333846, 0.00618803268, -0.0147310253, 0.030235108, 0.00554024, 0.00785225257, 0.0184674673, 0.00873267837, 0.0144733395, -0.00415875902, 0.00971331447, -6.91747118e-05, -0.0409147441, 0.0214022193, 0.00971331447, -0.000848215, -0.0256397147, 0.0147739733, 0.00154700817, -0.00242117071, -0.0394545235, 0.00672487775, 0.0163344033, 0.00601624232, -0.0130560696, -0.00574424118, 0.00330875441, 0.00470634084, 0.0204001088, 0.00228159106, -0.0033570705, -0.0151605019, 0.0253677145, -0.013342387, 0.0225331727, 0.0020364318, 0.0170358792, 0.0105436351, -0.0114097446, 0.0103933187, 0.0110590057, 0.0142228119, -0.0257542413, 0.0110375322, 0.0029777, -0.0175798833, -0.00329264905, -0.0114097446, -0.0116316406, 0.0142657598, -0.0143731292, -0.0189255737, -0.012447645, 3.18472084e-05, 0.00408717943, 0.0177087262, -0.00597329484, -0.0255538207, -0.0319530107, -0.0062381383, 0.0856088772, -0.00422675908, 0.00414802181, 0.00317096431, -0.0213020071, -0.0270713, 0.0253963452, 0.0175512508, 0.0215310622, -0.00173937762, 0.0160624012, 0.0154181868, 0.00127590157, -0.00251601334, -0.0144017609, -0.0187967308, -0.0104076341, 0.00529329106, 0.0163916666, -0.0203857925, 0.0108013209, 0.0168211423, -0.0050642374, -0.00855372939, 0.027300356, 0.0265129823, -0.026856564, -0.00210622163, -0.0401703194, 0.0145592354, 0.0127124889, 0.0326688066, 0.0314949043, -0.00198095781, 0.00917646941, 0.0224902239, -0.0242510755, -0.00059768738, -0.0311513226, -0.00735835498, -0.0205003191, 0.00346086058, -0.0030528584, 0.00766614592, 0.00150048162, -0.017250618, -0.0140223904, -0.00580866262, -0.029347524, 0.0311513226, -0.0223327503, 0.00678572, -0.0150889223, -0.00995668489, -0.00433770707, 0.00482444651, -0.00827457, 0.00580866262, 0.0132994391, -0.0237070732, 0.00454528723, -0.0101284748, -0.00424465397, -0.0227765422, 0.0298915263, 0.0177516732, 0.00358254532, 0.0348734483, -0.015117554, 0.0268708803, 0.0362191387, 0.0170501955, -0.00622382248, -0.00532192318, -0.0172649343, 0.00878994167, 0.00563329319, 0.00351812388, 0.00691456301, -0.0312372185, -0.0293761566, -0.0036433877, 0.00393686304, -0.012182802, -0.0133853341, 0.0216312725, -0.0171647221, -0.00209369534, 0.00271285651, 0.000308014802, 0.000179731214, -0.00827457, -0.042203173, -0.00316738524, -0.0166064035, -0.0187251512, 0.0348734483, -0.00646719243, -0.00813141186, -0.00901183765, 0.024007706, 0.00705414265, 0.0200422108, 0.0169213526, 0.00185032561, -0.00546150282, 0.0132278595, 0.0137217566, -0.0277011991, 0.0366199836, 0.0383092575, -0.000987794716, 0.00728677539, 0.0226620156, -0.00983499922, 0.00514297467, -0.0016293244, -0.000682687853, -0.00596255809, 0.0139078638, -0.0190257858, -0.00279696216, -0.00768046174, 0.0117461672, -0.00738698663, -0.00750867138, 0.00670698285, 0.0145234456, -0.00518592214, -0.00613792753, -0.029834263, 0.00810278, -0.0250384491, 0.00204180041, -0.0161769278, 0.0208295844, -0.0173651446, 0.0281736236, -0.00853225589, 0.0343867093, -0.0104291076, 0.00295622624, -0.00811709557, 0.0168640893, 0.0125406981, 0.0323538557, 0.0108585842, -0.0164489299, -1.99569308e-06, -0.00293833134, -0.023520967, -0.00570487231, 0.0180666223, 0.00246232888, 0.0162485074, -0.00600550557, -0.00871836208, 0.00596971577, -0.0245660245, 0.0156758726, 0.0227908585, 0.036505457, 0.0299201589, -0.0164346136, -0.00538992323, -0.00522887, -0.00432339124, -0.0257112943, 0.0268708803, -0.00109874271, -0.000813320104, -0.00705772173, 0.0351311341, -0.0197558943, 0.0168211423, 0.014759657, 0.00324433297, -0.0112307966, 0.0205432661, -0.00484949956, -0.0033570705, 0.00921941735, -0.0161482971, 0.023034228, 0.0131276483, -0.000633029675, -0.00150406058, -0.0101284748, 0.0188396797, -0.00179037789, -0.0313803777, 0.0152463969, 0.02596898, 0.00468844594, 0.0332987048, 0.00736551266, 0.0103503708, -0.00225295941, -0.00934110209, 0.0122543806, -0.00974910427, 0.0161769278, 0.0292186812, 0.030235108, -0.00523244869, 0.00774488319, -0.0123545919, 0.00540423905, 0.00123832235, -0.0116173252, 0.0154897664, -0.0123975398, 0.00347338687, 0.0148312366, 0.00393686304, 0.00198811572, -0.00164274557, -0.0230628587, -0.016320087, 0.0104434239, -0.000655845564, -0.00497476337, -0.0215024296, 0.0106796352, -0.00193801033, 0.00378296734, -0.0171790384, -0.00676424662, -0.0106080566, 0.0262982454, 0.00525392266, 0.0271715131, 0.0110160587, 0.0181382019, 0.00145037612, 0.00732972333, 0.00683582574, -0.0121684857, -0.00330875441, 0.0167209301, -0.00391181046, 0.0207007416, -0.00676782522, 0.0283024665, 0.00755161885, -0.000113408496, 0.020099476, 0.0101356329, -0.0177230407, 0.0229483321, 0.0130202798, 0.0106008984, 0.0297197364, -0.02738625, 0.0165491402, 0.0172649343, -0.0248523429, -0.0102072125, -0.0106080566, -0.0467842482, 0.0133924922, 0.00613792753, -0.0126337511, -0.00610571681, -0.0211015865, -0.00398338959, -0.0158906113, 0.0127769103, -0.0221036971, -0.0323252231, 0.00303854235, -0.00160248217, 0.0198990535, -0.0100354217, 0.0250527654, -0.0192262065, 0.0396549478, 0.00070729322, -0.00630971789, -0.0092695225, -0.0133065972, 0.0423749611, 0.00566192484, 0.00211159023, -0.0119966948, 0.0181238856, 0.0185963102, 0.0326974355, 0.0133638605, 0.00147811312, 0.0190973654, 0.0059554, -0.0160480849, 0.00821730681, 0.0122758551, 0.0455244519, 0.00509644812, -0.0298915263, -0.0224043299, -0.0102072125, 0.0076160403, -0.00763751427, 0.00780930463, -0.00576929376, 0.00105937407, 0.00605561119, 0.00107637409, -0.0212017968, 0.0168211423, -0.0172363017, -0.0111305853, -0.0240936019, -0.00117211149, 0.00429833867, -0.00609140098, -0.012139854, 0.0171504077, -0.0116960621, 0.00782362092, -0.0093625756, -0.019698631, -0.00946278684, -0.0295479465, 0.0163487177, 0.0165061932, 0.00264306669, 0.0023209597, -0.0191689432, 0.0126051195, -0.00603771629, 0.0200278964, -0.011960906, -0.0270426702, 0.00928383879, -0.0102430014, 0.00852509774, -0.00525392266, -0.0150746061, -0.00321749086, 0.0203857925, -0.0159478746, 0.0312372185, -0.0126480674, 0.0249811858, -0.0126552247, -0.014408919, -0.013829126, 0.000671503542, -0.0269567743, -0.00117211149, -0.00583013613, 0.00969899911, 0.0212876927, -0.00284885732, 0.0226333831, 0.0367917754, -0.0131491227, -0.00822446495, 0.00558676664, 0.000582476787, 0.00499981595, 0.0135571249, 0.0199849475, 0.0179091468, -0.00465981429, -0.0282452032, -0.00225653825, -0.00198990526, -0.020228317, 0.00570487231, -0.00513223791, -0.00336422841, -0.0135284932, 0.00916931219, 0.0199276842, 0.00547939772, 0.0248380266, 0.0121470122, 0.00478507811, 0.0219319053, -0.0195697881, -0.00133137545, -0.0145663936, -0.00852509774, 0.0113453232, 0.0212017968, 0.00319780642, -0.00896173157, -0.00535055483, 0.0310081653, 0.0457248725, 0.0278873052, 0.009827842, -0.00778067298, -0.0285315197, 0.0216169562, -0.0492465757, 0.0318384841, -0.028588783, -0.00664971955, -0.00281127798, -0.00384023087, -0.0191116799, 0.0144303925, 0.0270283539, 0.0133567024, 0.00659603486, -0.0184674673, 0.0224472769, -0.00827457, 0.00280412, 0.0169643015, -0.0221609604, 0.00153716607, 0.0170215648, 0.0213163234, -0.00238001253, 0.0473855138, -0.00795962103, -0.0074657239, -0.000918004895, -0.00767330406, -0.0237357058, -0.00726888049, 0.0054292921, -0.0142228119, 0.0242510755, -0.0055044503, -0.0179807264, 0.0104291076, -0.00222253823, -0.0141655486, 0.0100425798, 0.00477434136, -6.69937799e-05, -0.00520381704, -0.02223254, 0.00481013069, -0.0121971173, 0.00543287117, -0.0270426702, 0.000840162334, 0.0300919488, -0.00108084781, 0.00296875252, -0.0173078813, 0.0196127351, -0.00923373364, 0.0115314294, 0.00821730681, 0.00433054939, -0.0207866374, -0.00831036, 0.0250670798, -0.00435918104, 0.0012848489, 0.000687608903, 0.00210085325, 0.0167352464, 0.00371854613, 0.0237786528, 0.00134211243, -0.0110446904, 0.0116602723, 0.0203571599, 0.0187537838, -0.00623455923, 0.0149314478, -0.0123975398, -2.16415629e-05, 0.0110804802, -0.023120122, 0.00573708303, -0.00229411735, 0.0115743773, -0.000411581132, -0.0213306397, 0.000641977065, -0.0179234631, -0.00423749629, 0.00530402828, 0.0267134048, 0.00565476669, 0.00969899911, 0.0257828739, 0.0131634381, 0.00149690267, 0.00643140264, 0.00645287614, -0.0126623828, 0.0285601523, 0.00818867516, 0.00177695684, -0.00933394395, 0.0220607482, -0.0020919058, -0.0145520773, 0.0292473137, -0.024680553, -0.00200780015, 0.00278980425, 0.0074084606, -0.0184102021, -0.0275294092, 0.0133495443, 0.00748719787, 0.00232990715, -0.00753014535, -0.00520739611, 0.0137933362, -0.0024390656, -0.0110804802, -0.0255967677, 0.0178662, 0.00671056192, -0.00395475794, -0.0159621909, -0.00992805231, 0.0103360545, 0.0190973654, 0.0181811489, 0.0099423686, 0.0123903817, -0.0409433767, 0.0182670448, -0.0100568952, -0.00383665203, -0.00311191124, 0.0191975757, -0.0125621716, 0.00239074952, 0.0199992638, -0.00878278352, -0.0159908216, -0.00741561828, -0.0274291988, 0.0222611707, -0.016363034, 0.000163514022, 0.0254249778, -0.0308077428, 0.0190114696, -0.0238788631, -0.0142371282, -0.0142013384, -0.00730109122, 0.00130721752, -0.0188396797, -0.00749435555, -0.00606992701, 0.00964173581, 0.00873267837, -0.0212304294, 0.0135356504, 0.0169929322, -0.00172595656, -0.0256683473, 0.00731898611, -0.00177158834, 0.00446655, 0.00303496351, 0.00537202833, -0.00141727063, 0.00401202124, 0.0141082853, 0.015604293, -0.000389212597, 0.0099781584, -0.0110446904, -0.0177087262, 0.0145950252, -0.0136788096, 0.015518398, 0.00871120393, 0.0305786878, 0.0249955, -0.00260548759, -0.0026072769, -0.0227622259, 0.00532192318, 0.0281593073, -0.00620234851, -0.00375791476, 0.0156186093, -0.00615582196, 0.0139651271, 0.000686266809, 0.0174653567, -0.00886867847, -0.00149332371, 0.00237106532, -0.00104326871, -0.00445939228, 0.00350738713, -0.0186106246, -0.0100139482, -0.0111878486, 0.00396549469, -0.016806826, -0.00444149738, 0.00283812033, 0.00485665724, 2.83381432e-05, 0.0106152147, -0.0130345952, -0.0187824164, -0.00488171028, 0.00149421848, -0.0148026049, -0.00262875087, -0.00196127361, -0.0221895911, -0.00112200598, -0.00320854341, -0.00183422025, -0.00734403916, 0.0167495627, 0.0113882711, -0.00530044921, 0.0157617684, 0.00650656084, 0.0214022193, -0.00459897192, 0.00775919901, 0.0172363017, 0.012182802, 0.0175941978, -0.00608782191, -0.0226333831, 0.000758740876, -0.00749435555, 0.0180236753, -0.00644571846, -0.00183958875, 0.0149743957, 0.0198417902, -0.0173651446, -0.00240327581, -0.0114956396, -0.0263984557, 0.00620950665, 0.000240238121, -0.0389964171, -0.00369707216, 0.00741561828, 0.0167925097, 0.00545792375, -0.011603009, 0.0101642646, -0.00400486356, 0.00766614592, 0.0239933897, 0.00339822867, -0.00766614592, 0.0166493524, -0.0176371466, 0.0188826267, 0.0158190317, 0.00384381, -0.0148885, 0.00151211326, 0.00716866972, 0.00770193571, 0.0218030624, -0.00765898824, -0.0210013743, 0.010092685, 0.00853225589, -0.00658887718, -0.0262266658, 0.0234637037, -0.0029437, -0.0209297948, 0.0118320631, 0.0015362713, 0.0219462216, 0.0382519923, -0.0119394315, -0.000227823577, 0.0100354217, -0.00694677373, -0.016091032, -0.0177373569, -0.0253963452, 0.00948426127, -0.0182240959, 0.00360222976, -0.0194552615, 0.00213306397, -0.021788748, 0.0182956755, 0.0204144251, 0.00760172447, -0.00687161554, 0.0204716884, 0.000511344813, -0.00343401823, 0.0111663751, -0.0045488663, 0.0116173252, 0.0352170281, -0.000967215688, -0.0301205814, -0.000621845422, 0.00600908464, 0.00836046506, 0.0175798833, -0.00238538114, -0.00833899155, -0.0132851228, -0.0142442863, 0.000589187315, -0.007025511, 0.0053935023, -0.0229912791, 0.00263411924, 0.0130345952, 0.022547489, -0.0111234272, 0.0124548031, 0.000172014072, 0.00179574639, -0.00176174624, -0.0143588129, -0.0266275089, -0.010937321, 0.0311513226, -0.00795962103, 0.0123188021, -0.0175798833, -0.0179807264, 0.0110661639, -0.0100282636, 0.00321749086, -1.2274736e-05, 0.00154790294, -0.00928383879, -0.00604129536, -0.00540781813, -0.0121112224, 0.0193836819, 0.0352742933, -0.00351812388, -0.00785225257, -0.00213485351, -0.00441286573, 0.0145234456, 0.00297054206, 0.00561897736, 0.017565567, -0.00400128448, 0.0133065972, 0.0166064035, -0.0235066507, 0.00850362424, -0.014136917, 0.00591245247, 0.016405981, 0.00255717151, -0.00128663843, 0.0144303925, 0.0019738, 0.00671056192, -0.0150173428, -0.00220285379, 0.00610929541, 0.000901899533, -0.00952720828, -0.0202140026, 0.0119322743, 0.00530044921, -0.00374359894, -0.000467502483, -0.00950573478, 0.0101427911, 0.0159192421, -0.00451307651, -0.00420528557, 0.000643319217, -0.00890446827, 0.000495686836, 0.00430191774, -0.00811709557, 0.0152177652, 0.000926952285, -0.0200135801, 0.0141154435, 0.00463118264, 0.0229483321, -0.00889015291, -0.0213020071, -0.00187000993, 0.00793814752, -0.0190114696, 0.0169643015, 0.00675708847, -0.000169777224, 0.0033946496, -0.0034322287, -0.00185748353, -0.00350559759, -0.0127124889, -0.00315664825, 0.00886867847, -0.000402857404, 0.017966412, 0.00236748625, 0.0114097446, 0.0215740092, 0.0007292144, 0.0216742195, -0.0152034489, -0.00525392266, -0.00561539829, 0.0175512508, -0.025253186, 0.0275294092, -0.0190687329, -0.004491603, -0.02143085, 0.0303496346, -0.0446655, -0.00449518161, 0.00708993245, -0.00827457, -0.0109731108, 0.00199885271, -0.00751582952, -0.0210443214, -0.00592318922, 0.00177606207, -0.0219032746, -0.0173794609, -0.00184674666, -0.00644929754, -0.000913083786, -0.00939836539, 0.0105293188, 0.0211302172, 0.029834263, 0.0150602907, 0.0220893808, 0.00309759541, -0.0117246937, -0.00531118596, -0.0158047155, 0.00473497249, -0.0200565271, -0.00422318047, 0.0133924922, 0.0165348239, -0.00703624776, 0.00916931219, -0.0041838116, 0.0198990535, 0.0203142129, 0.024494445, 0.00351096597, -0.0178948324, -0.00235674926, 0.0342721827, 0.0180379897, -0.00184853608, -0.0153752398, 0.00511434302, 0.0105722668, 0.0112522701, -0.0150030274, -0.0115242722, -0.00279696216, 0.0178375691, -0.00476718321, -0.00511792209, -0.00912636425, 0.0343867093, -0.032726068, -0.0438351817, -0.0014861658, 0.00901899487, 0.00947710313, -0.00617371686, 0.000842846581, -0.00816004351, 0.00995668489, 0.0205432661, 0.00059366104, 0.00359149277, 0.0224759094, 0.00922657549, -0.00944847148, 0.0062381383, 0.0153609235, -0.00156221876, 0.00573708303, 0.0171933547, -0.000822714879, -0.00686803646, 0.000562792469, -0.0114312181, 0.0220750645, 0.0221895911, -0.0345298685, -0.00444507645, -0.0224615932, -0.00764467195, -0.00608066376, 0.00515013281, 0.000794083171, -0.000833451806, 0.00821730681, -0.0278873052, 0.030235108, 0.0249668695, -0.0126910144, -0.00605919026, -0.0066210879, 0.00832467619, -0.0328119621, 0.00540423905, 0.00405854778, 0.0117318518, 0.00779498881, -0.0157474522, -0.00945562869, -0.0135356504, 0.0148741845, -0.0126552247, -0.0101714227, 0.0213306397, 0.0142442863, 0.0285744667, 0.00726172281, 0.000127388834, -0.0135571249, -0.00266096159, 0.0185104143, -0.0102501595, -0.0116316406, 0.00974910427, -0.0044737081, -0.0173651446, -0.00157563994, 0.00302243698, -0.0105722668, -0.0198847372, -0.0163773503, 0.00259832968, 0.00170269329, -0.00233169668, 0.00531476503, 0.00741561828, -0.00957015622, -0.0071937223, 0.0133209126, -0.00679645734, 0.00488528889, 0.0127339624, 0.00463476125, -0.000900557439, 0.0157331359, -0.00529687, 0.0325542763, -0.0122686969, 0.00838193949, 0.0187681, -0.0101785799, -0.00388675742, 0.00272896187, -0.0489888899, 0.000776188332, -0.00180111488, 0.0158619788, 0.00155595562, -0.00785941, 0.00979205221, -0.011338165, 0.0140796537, 0.0195125248, 0.0191403124, -0.0281163603, 0.00277548842, -0.00515729049, -0.00639919192, -0.00195053662, 0.0114383763, -0.0136573361, -0.00748003973, -0.0219032746, 0.0264843516, -0.000274461985, 0.00914783776, -0.0106223719, 0.0104792137, -0.000880425738, -0.00928383879, -0.00924089085, 0.0238931794, -0.0249382369, 0.0184388347, 0.0227622259, 0.00970615726, 0.0206434783, 0.00769477757, 0.00755161885, -0.000555187173, 0.0196413677, -0.0182813611, -0.00931962859, 0.00209369534, 0.00264485623, -0.0253963452, -0.0171360914, 0.0165634565, -0.00646003429, -0.00708635338, 0.00833183341, -0.000337093894, 0.00633477047, 0.0376793593, 0.00329085952, -0.00455960305, -0.0155899776, 0.010493529, 0.020672109, 0.0132421758, 0.00406928454, 0.00790235773, -0.0121326959, 0.00502486899, -0.0120181693, 0.00250527635, -0.015833348, 0.0137360729, 0.0160337687, 0.00423033815, -0.0109587954, 0.00294191041, -0.0022654857, 0.0137217566, 0.0248952899, -0.00873267837, -0.00405139, -0.0145807089, 0.0166779831, -0.0265129823, 0.0024390656, -0.0101284748, -0.0112880599, 0.0029723316, -0.0117604835, 0.000680003606, 0.00128395413, -0.00369707216, -0.0163344033, 0.0180379897, 0.0238216, -0.0108729, -0.00223506452, 0.0288751014, -0.0221752748, -0.00644929754, 0.00600550557, -0.0124834348, 0.00430191774, -0.0050284476, -0.00810278, 0.00341970241, -0.0168784056, -0.0148885, -0.000248514465, -0.0108729, 0.0216169562, -0.0244085509, 0.0170645118, -0.00682508899, 0.0140796537, -0.00864678249, 0.0108084781, 0.000214514293, 0.0172363017, 0.00425897, -0.00526108034, 0.00460255053, -0.0161053482, 0.0154325031, -0.00760888262, 0.0207866374, 0.00177337788, 0.0207293741, 0.00919794384, -0.0123259602, 0.0162771381, 0.0103861606, -0.0243226551, 0.00827457, 0.00468486687, -0.00121505908, 0.0153752398, -0.000406660052, -0.00381159922, 0.00826741196, 0.027658252, 0.00566550391, -0.00133853348, 0.00489960518, -0.0274005663, -0.0322679617, 0.0128198573, 0.016091032, 0.0121899592, 0.00175458821, 0.0148885, -0.0103002656, 0.0193550494, 0.0131705962, 0.00300096325, 0.0181811489, 0.000584713649, -0.0182813611, 0.0122758551, 0.0157617684, -0.00736551266, -0.0343580768, -0.0210013743, 0.0292759445, 0.00691814208, -0.00880425703, 0.000404646882, 0.0205718987, 0.0257542413, 0.00241043395, -0.00480655162, -0.00415518, 0.0131133329, -0.00476002507, -0.000331949122, -0.0147310253, -0.000976163079, 0.0153179765, -0.0135284932, -0.0177946202, 0.00483876234, 0.000817793829, 0.00398338959, 0.00681077316, 0.015117554, -0.00164811406, 0.0101642646, -0.0141440751, -0.0264414027, 0.000464370882, -0.00718656462, 0.00526465941, -0.01298449, 0.0119895376, -0.00727603864, -0.00309580588, 0.018896943, 0.00199527387, -0.0132708075, -0.000123809863, -0.00482086791, 0.00793814752, -0.00362549303, -0.000383844133, -0.000541766058, -0.00284348871, -0.00891162641, -0.00467055105, -1.68463066e-05, -0.00949141849, 0.00496760523, 0.024809394, 0.015475451, -0.00773056736, 0.00214380096, -0.00544002885, 0.00982068386, -0.0151605019, -0.00406570593, 0.00856804568, -0.00131079648, 9.80860495e-05, -0.0055044503, 0.0089331, 0.00555097684, -0.00920510106, 0.000276027771, -0.00864678249, -0.00168479839, 0.000605740061, 0.00869688857, 0.00317275361, 0.0163773503, 0.00828172825, -0.00280233077, 0.00397265283, -0.017565567, 0.0180236753, -0.015561346, -0.00963457767, 0.017207671, -0.00410507433, 0.00153985026, -0.0151318694, 0.00137790211, -0.00382233597, -0.0282308869, 0.019254839, 0.0117032202, -0.00630613882, 0.00207043206, -0.023077175, 0.0127268042, 0.0215167459, -0.0283024665, -0.00432339124, -0.0063132965, 0.0110518485, 0.0164202973, -0.0251386594, 0.00756593468, 0.00783077814, 0.00245159189, -0.0275437254, 0.00450591883, 0.00855372939, 0.00406212686, 0.0251386594, 0.00482802559, -0.016363034, -0.00777351484, 0.00107905839, -0.00519665936, 0.000431041757, 0.0363622978, 0.00641708681, 0.00462044543, 0.01360723, -0.019211892, 0.00643856032, 0.00322822761, -0.00241043395, -0.00117837463, 0.0161912441, -0.00525392266, -0.0157331359, 0.00338928122, -0.0152607122, -0.00777351484, -0.00777351484, -0.0125335399, 0.00536487065, 0.0107440567, 0.00292401551, 0.0129129104, -0.00157832413, 0.0210586376, -0.00182974653, -0.0205289517, -0.00138506, 0.0127769103, 0.012003853, -0.0102430014, 0.021874642, -0.0042017065, 0.0149314478, 0.00374001986, 0.00499623688, -0.00581224123, 0.000314725359, -0.0136788096, -0.00748003973, 0.0109731108, 0.0108872158, 0.00606634794, -0.00817435887, -0.00518592214, 0.00868257228, -0.0310654286, -0.00372928288, 0.0142657598, 0.00135105976, -0.0228338055, 0.0161339808, -0.0190973654, -0.0124905929, -0.0132779656, 0.0210729539, 0.0126337511, 0.00962026138, 0.00979205221, 0.0146164987, -0.00576571468, 0.0173078813, -0.0228194892, 0.0145019721, 0.00658171903, -0.0136788096, 0.00292580505, 0.00943415519, -0.00179574639, 0.037393041, 0.000323001703, 0.000923373329, -0.00572634628, -0.0187967308, 0.014272918, -0.0221323278, 0.0081958333, 0.0044737081, 0.0193836819, 0.0106366882, 0.0185963102, -0.0240792856, -0.0142013384, 0.0232489649, -0.00909057446, 0.00616298, -0.0278729908, 0.0033391756, 0.0317239575, -0.000123586186, -0.0196699984, 0.00964889303, 0.00399412634, 0.0059554, -0.00855372939, -0.00873983558, 0.0164918769, 0.00439497083, -0.00353780831, 0.0234207567, -0.00906910095, -0.0126623828, 0.0232060179, 0.00908341631, -0.00987078901, -0.00161321904, 0.00932678673, -0.0276439358, -0.0343867093, 0.00871836208, -0.0108657423, -0.0184817817, 0.00642066589, -0.00115958508, -0.00665329862, 0.010937321, 0.0196127351, -0.0217601154, -0.00475286739, 0.00615582196, 0.0116101671, -0.0214451663, -0.00100300531, 0.0135785984, -0.00684656249, 0.00283990987, -0.00239969697, 0.00248738169, 0.00088668894, 0.00078603049, -0.00210085325, 0.0146451304, -0.0239933897, 0.0144303925, 0.000217534049, 0.00603055814, 0.00760172447, -0.000844636059, -0.0105436351, -0.00318885897, 0.00792383123, 0.00248201308, 0.0201281067, 0.0168211423, -0.010049738, -0.00856804568, 0.0169786159, -0.00215274817, 0.00419096975, 0.0294620506, -0.0140653383, 0.00439854944, 0.00173221971, 0.0157617684, 0.0156758726, -0.00173043029, -0.0188253634, 0.0124691185, -0.0707776397, -0.0019362208, 0.00490318378, -0.00673919357, -0.0184245184, 0.0048960261, 0.02347802, -0.0118392203, 0.0527969114, 0.00399412634, 0.00891162641, 0.014759657, 0.00570845138, -0.0023030648, -0.0194982085, -0.00833899155, 0.0199706331, -0.000764556695, -0.00401917938, -0.00558676664, -0.0014986922, 0.00383665203, 0.000590976793, -0.0128699634, 0.0027987517, 0.00925520714, 0.00470634084, -0.00421244325, 0.00748719787, -0.00387244159, 0.000904583721, -0.00351812388, 0.0144375507, -0.0124404868, 0.0176371466, 0.00380802015, -0.000668371969, -0.0229912791, -0.000924268039, -0.00537202833, -0.00553308195, -0.00131348066, -0.00341075496, -0.018009359, -0.0212876927, 0.00602340046, -0.01360723, -0.00468844594, -0.00198811572, -0.00426970702, -0.0155756613, -0.00629898068, -0.00544360792, 0.0158619788, 0.0318384841, 0.0207293741, -0.021831695, 0.0114455344, 0.0191546287, -0.0153322918, 0.00570845138, -0.0374216735, -0.0121971173, 0.00194695767, 0.0213735867, -0.00133405975, -0.0125621716, -0.0110661639, -0.00388317858, 0.020672109, -0.0132636493, 0.0132779656, -0.00164095603, -0.0163344033, 0.00262696133, 0.00305464771, 0.00270033022, 0.0153322918, 0.000127388834, 0.010228686, 0.00758740865, 0.00737982849, 0.022805173, 0.0127482777, 0.000583818881, 0.0017098512, -0.00358433486, 0.0114025865, 0.0215310622, 0.0166207198, 0.0188683104, -0.0013251123, -0.0349020809, -0.0167352464, 0.0174653567, -0.0113596395, -0.00389391533, 0.00600550557, 0.00871836208, 0.00596971577, 0.0167495627, -0.00872552, -0.000347159745, 0.0174080916, 0.0266704578, -0.0286603626, 0.00855372939, -0.00984931551, -0.00170895644, 0.00595897902, 0.00736551266, 0.0103861606, 0.00937689189, 0.0248666592, 0.0224759094, -0.00216527469, 0.00300454232, -0.000246948679, -0.00518950121, -0.0247950796, 0.00162127172, 0.00508929, 0.000711319561, -0.0128985951, -0.00113632181, 0.0186822042, 0.00599118974, -0.000326357, -0.00248201308, -0.020099476, -0.0196843147, 0.0160767175, -0.000499713176, 0.00618445408, 0.00510718487, -0.0210729539, 0.0119394315, 0.00398696866, -0.014673762, -0.00602340046, 0.0115457457, 0.000578003062, 0.0128914369, 0.0175369345, -0.0156329256, -0.0241651814, -0.00070639851, -0.00421602232, 0.0104648974, -0.0107941628, 0.0187824164, -0.00163290335, 0.00667477213, -0.0121326959, 0.00525750173, -0.00273433025, -0.00628824392, -0.00164006138, 0.00318528013, -0.008983206, 0.00843204465, 0.0144661823, 0.0101427911, -0.00810278, 0.0142657598, 0.00231917016, 0.00417307485, 0.0182384122, -0.00152285025, 0.00925520714, -0.00844636094, -0.00356644, 0.0100282636, -0.0171933547, -0.0104147922, -0.0163487177, 0.00128216471, -0.00543287117, 0.0193979982, 0.0137647046, 0.0115027977, 0.00209011626, 0.00384381, -0.00122758548, 0.0150030274, -0.032726068, 0.00062452961, 0.00621308573, 0.0186106246, 0.016806826, 0.0116459569, 0.0336709172, 0.014759657, -0.0058337152, 0.00604487397, -0.0119966948, -0.00959878787, -0.0215024296, 0.0102787912, 0.00101911067, 0.0138863893, -0.00113453239, -0.0197558943, -0.00928383879, 0.00637056027, -0.0245230775, 0.00838193949, -0.0018986417, -0.0119680632, 0.00455602398, 0.0378797799, -0.00803120062, -0.0110590057, -0.00622024341, 0.00747288158, 0.0264843516, -0.0200565271, -0.000637503399, -0.0198417902, 0.00419096975, 0.0238788631, 0.0202712659, 0.00528613338, 0.00884004682, 0.0194695778, -0.00686803646, 0.0271715131, 0.0176228303, -0.00186643098, 0.00304927933, 0.00838909671, 0.00411939, 0.0151891336, -0.00221001171, 0.00181632547, 0.000784688396, 0.00255717151, -0.00196485245, 0.00258043478, 0.0135356504, 0.0174224079, 0.0127697522, 0.00375075685, -0.0127769103, -0.0173078813, 0.028502889, -0.0227908585, 0.0312372185, 0.0104577402, -0.000155908725, -0.00411939, 0.00231559132, -0.0191832595, 0.018896943, 0.0145091293, 0.00181185175, -0.0124977501, 0.0322106965, -0.00590171572, 0.00310117425, -0.0101785799, -0.00914783776, 0.0152463969, -0.00841772929, 0.0125478562, -0.00402275799, -0.00565118808, 0.00190579961, -0.0083676232, 0.00375791476, 0.00709709, -0.00669266703, -0.00622382248, 0.00811709557, -0.00589455757, 0.0335850194, -0.00816004351, 0.000485397322, -0.0422604345, 0.00235674926, -0.00371138821, 0.00267348788, -0.0198417902, -0.0215596929, 0.0212161131, 0.00262517179, -0.0221036971, -0.00277548842, 0.00518950121, -0.00604487397, 0.0106366882, -0.00914068054, 0.0129916482, 0.0196127351, -0.021788748, -0.0184388347, 0.0282308869, -0.00308327959, -0.0106581617, -0.00610929541, 0.00976342056, -0.0405139, 0.00864678249, -0.00339643913, 0.0217458, -0.0130918594, -0.00757309282, -0.0216455888, -0.00969184097, -0.0122830123, 0.00723309116, 0.00621308573, -0.00261443504, 0.00523602776, -0.00948426127, 0.0141727068, -0.0128556471, -0.00247843424, 0.00978489406, -0.0167352464, -0.018496098, 0.0172792505, -0.0203857925, -0.0182240959, -0.00284527824, 0.0153609235, 0.0225618035, 0.0121470122, -0.0163773503, -0.0304068979, 0.00798825268, 0.00233706506, -0.00263948762, 0.0118392203, -0.00645645522, -0.0157617684, -0.014408919, -0.000862978282, 0.000433054927, -0.0207866374, -0.0159049258, -0.0105221607, 0.00439854944, -0.00565834576, -0.00726172281, -0.0179377794, -0.00684656249, -0.00970615726, 0.0462975092, -0.00390465232, 0.00253748707, -0.0118606947, -0.0124977501, 0.0108657423, -0.00319422758, 0.0104792137, -0.00708993245, -0.0148598682, 0.0169643015, -0.00302064768, -0.00408717943, 0.00445939228, 0.00482086791, -0.0362764038, 0.00404065289, 0.0100783696, -0.0106796352, 0.00698972121, -0.0215167459, -0.0150459744, 0.00742277643, 0.00241222326, -0.00696466863, 0.0637915, 0.0277441479, 0.0159621909, -0.020142423, 0.00899036322, -0.00143963925, 0.0104792137, 0.034186285, -0.0184388347, 0.0131562799, 0.0147739733, 0.0157617684, -0.012225749, 0.0110303741, 0.0099996319, 0.0089331, 0.0164632462, -0.0074657239, 0.00470992, -0.000469291961, -0.00214201142, -0.0261837188, 0.013292281, -0.0209584273, 0.00885436311, -0.011517114, 0.0124190133, -0.0168927219, -0.0373357758, 0.0171647221, -0.00520739611, 0.014759657, 0.0213163234, 0.00926236529, 0.00531834411, 0.0142084965, 0.0171790384, 0.0178518835, 0.00323717506, -0.0232489649, 0.0216742195, 0.0190544166, 0.0113882711, -0.00755161885, 0.00452023465, -0.0143301813, 0.00479223579, -0.0183529388, 0.000631687581, -0.0313517451, 0.0185533613, -0.0270426702, -0.0147739733, -0.00887583662, 0.0171217751, -0.0166493524, 0.0277441479, 0.000561897701, 0.0133352289, 0.0011416903, 0.00143427076, 0.00506781647, -0.000814214873, 0.00390107324, 0.000378475699, -0.0251243431, 0.00633477047, -0.00168927212, 0.00733688101, 0.0100282636, -0.013915021, -0.00609497959, 0.0140868118, 0.0024014865, -0.00337317586, 0.0192834716, -0.0107870046, 0.000481370982, 0.00887583662, -0.010450582, -0.0345012359, 0.0137861781, 0.000254777668, -0.0209870581, 0.00446297089, -0.0238788631, -0.00604487397, -0.0199276842, -0.01173901, 0.00615224335, 0.0237643365, 0.01298449, -0.00648866594, 0.00445939228, 0.0200565271, 0.0207293741, -0.0084606763, -0.00315485895, 0.00538992323, 0.006603193, 0.0168211423, 0.00426254887, 0.00507855322, 0.00555455592, -0.00674993079, 0.0202140026, 0.00373286195, 0.000161724543, 0.000651371898, 0.00901183765, -0.015518398, 0.00144053402, 0.015031659, 0.00873267837, 0.0259832963, 0.00414802181, -0.00787372608, 0.0208582152, 0.00647077104, -0.00917646941, 0.00123742758, -0.00111037435, -0.0142084965, -0.00392612629, -0.0144017609, 0.00778783066, 0.0120539591, 0.00699687935, 0.0334704928, 0.0125120664, 0.0169070363, -0.00739414431, 0.0133137545, 0.00579076773, 0.0135284932, 0.0215167459, -0.0021473798, 0.0031101217, 0.022275487, 0.00714361668, -0.0128771206, 0.01471671, 0.0132851228, 0.0154325031, 0.0144232344, 0.000954689283, -0.00413728505, 0.00608424284, 0.0420886427, 0.0121684857, 0.0123474337, -0.0170645118, -0.0157045051, -0.0113238497, -0.00763035612, 0.00509286905, 0.0244801305, -0.00857520383, 0.00326043833, -0.0120253274, -0.00654950831, 0.00599476881, 0.0109659526, 0.00703982683, 0.0032210697, -0.00640992867, -0.00377580943, -0.00450949743, -0.00808846392, -0.000693424721, 0.0142156547, 0.0133853341, 0.00497834245, 0.018896943, -0.0103575289, 0.00795246288, -0.00284885732, -0.0135141769, -0.00348412385, -0.0104291076, -0.00489960518, 0.00298664742, 0.00917646941, 0.0522242785, 0.00591961, -0.000644213927, -0.000130632267, -0.00335170189, -0.00698972121, -0.0249239225, -0.0260119271, 0.00899036322, -0.000407554791, -0.00674993079, 0.0234207567, -0.00501771085, 0.0153036602, -0.000130632267, 0.0144804977, 0.0125478562, 0.0259117167, -0.0209584273, -0.00362728233, -0.00524318591, 0.0218030624, 0.023563914, -0.00160069275, -0.00187000993, -0.012848489, 0.00478149904, 0.00609855866]
24 Nov, 2021
jQWidgets jqxScrollView disabled Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that are present at the bottom of the jqxScrollView widget. The disabled property is used to set or return the jqxScrollView widget disabled property. It accepts Boolean type values and its default value is false. Syntax: Set the disabled property. $('selector').jqxScrollView({ disabled: Boolean }); Return the disabled property. var disabled = $('selector').jqxScrollView('disabled'); Linked Files: Download jQWidgets from the link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> Example: The below example illustrates the jqxScrollView disabled property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView disabled Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired-300x121.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring-300x115.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade-300x126.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg-300x110.png" alt=""> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0], disabled: true }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-disabled-property/?ref=next_article
PHP
jQWidgets jqxScrollView disabled Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.033318121, 0.0344760045, -0.0116150267, 0.0447811745, 0.0775782466, -0.00309734046, 0.00624895701, 0.0112170046, 0.023302421, 0.00217465148, -0.0126209389, 0.0336075909, -0.00219274336, -0.0277168564, 0.00856834371, 0.01856957, -0.0313497186, 0.0182222035, -0.0311470889, 0.0315234, 0.00796045456, -0.0146182897, -0.0560994931, 0.0196550861, -0.0583863147, 0.0395417474, 0.00717526441, 0.0227813739, -0.0123531781, -0.0115933167, -0.0258931872, -0.0106742457, 0.00597034115, 0.0193945616, -0.0409601592, -0.00824992545, 0.00291642104, -0.0022198814, -0.0290918425, 0.0149656544, -0.0303944629, 0.00972622819, -0.00265408796, 0.0048631141, -0.0065782303, 0.0216669105, -0.0266602859, 0.0268194955, -0.0284694806, 0.025994502, 0.006686782, 0.019278774, 0.00904597156, 0.0357496776, 0.0151538113, -0.00333615416, 0.00198468613, 0.0244024117, -0.00391509617, 0.0112097673, -0.00318418187, -0.0588205233, -0.010703193, -0.0264287088, -0.0112966085, 0.0158630144, 0.00217103306, 0.0103558274, -0.04744431, 0.0110939788, -0.0208274443, 0.0432180315, 0.0127946213, 0.0105584571, -0.00138674735, 0.00827887282, -0.0468074717, 0.0244747791, 0.0219998024, 0.00505127, -0.0235339981, -0.0221300647, -0.0685467497, 0.00493910024, -0.00659270398, 0.0244892538, 0.0203498174, -0.0419733077, 0.0644941553, 0.0131926443, -0.0312628746, -0.0156459119, 0.00229224912, -0.0219563805, -0.00953083485, 0.000202968979, -0.0270510726, 0.0051489668, -0.0220576953, 0.0118248938, 0.039223332, 0.00790979713, 0.00952359848, -0.0289181601, -0.0173393171, 0.00152153231, 0.047878515, 0.00756243197, 0.0184682552, 0.00542396447, 0.0182656255, -0.0299892034, 0.00881439447, -0.00732361805, -0.0407285802, 0.0391654372, -0.0129610673, -0.00254553626, 0.0205669198, -0.00582198706, -0.0101893824, 0.0135472463, -0.0247931983, 0.0381812342, 0.000821826456, 0.0351417884, -0.00707394956, -0.00438548671, 0.0370522961, 0.00808347948, 0.00830782, 0.0386443883, -0.0215655956, -0.0120202862, 0.0195971914, 0.0267326534, 0.0177590512, 0.0162538011, -0.0613678694, 0.00769269373, -0.025994502, -0.0150959166, -0.0030575383, 0.0180629957, -0.0248221457, 0.0433627665, 0.00598843303, 0.0243445169, -0.0242142566, 0.00328368763, -0.0159643292, -0.0321602374, 0.00490291649, 0.0256616119, 0.0576915853, 0.015356441, -0.000433980458, 0.0069328323, -0.0185985174, -0.0113979233, 0.00981306937, -0.00903149787, 0.0411627889, 0.0171656348, -0.0293378942, -0.00509469118, 0.0223326944, -0.0028205337, -0.0267760754, 0.0308286697, -0.015356441, -0.030857617, -0.0181787834, 0.00822821539, -0.00335967378, -0.00636836374, 0.0193656143, -0.0315812938, 0.00603909045, -0.0346207395, -0.0482548289, -0.00909662899, -0.00243155705, -0.000499337621, 0.0176722091, -0.0140972417, 0.00502232322, 0.0285563227, -0.050802175, -0.0169195849, -0.0388180725, -0.0126354126, 0.0385286, 0.0457074828, 0.00934991613, -0.0186998323, -0.0250537209, -0.0100591201, 0.00617658906, -0.0294536818, 0.00257086498, 0.0269931778, 0.0119406823, 0.0309734046, -0.00688217487, 0.0328549668, 0.00898084, -0.0271813348, 0.0585310534, -0.00525028165, -0.00590882823, 0.014980128, 0.0328839161, -0.0023772812, 0.00250754319, 0.00995780528, -0.00963938702, -0.0279194862, -0.0350549482, 0.0169485323, -0.00147630251, 0.00115969346, -0.0332891755, 0.0223761145, -0.112256885, 0.00547100324, -0.00809071679, -0.00873479, 0.0118466038, 0.0030774395, -0.0382391289, -0.013185408, -0.0116801579, -0.000362743449, 0.0435943455, 0.0455916934, -0.00700881844, 0.0333470665, -0.0128380423, 0.00280425115, 0.00841637142, -0.0269208103, -0.0330575965, -0.0165287983, 0.0179037862, 0.00188156206, -0.0143215815, -0.0107176667, 0.0183958877, -0.0118248938, 0.00368351955, 0.00848873891, -0.0151248639, -0.00851768628, 0.0260234494, 0.00768545689, 0.00593053875, -0.0212037563, 0.00104209583, 0.00477265427, 0.0267760754, 0.0082137417, -0.0338970646, -0.000947113207, -0.0025545822, 0.0513521694, 0.0127584375, -0.017295897, 0.0370522961, -0.0451864339, 0.0333760157, -0.0185840428, 0.0255892426, 0.0105874045, 0.00553251617, 0.0196840335, -0.0480811447, -0.0255313497, 0.0402075313, 0.00461706379, 0.0108262179, 0.00620553643, 0.0118104201, 0.0742782801, 0.029439209, -0.000970632711, 0.0320733972, 0.00314437947, -0.0207116548, 0.0587626286, -0.019611666, -0.0156603847, -0.00401279284, -0.00288928323, 0.0457364321, -0.016441958, 0.0130768558, 0.0107972715, -0.0241708346, 0.0225497968, -0.0289036874, 0.00227777543, -0.0289760549, 0.00688217487, 0.00899531413, 0.0201037657, 0.0311470889, -0.0177590512, -0.000222304749, -0.0448390692, 0.0396285914, 0.0013758922, -0.00672658393, -0.0332023315, -0.00330539793, 0.0229695309, -0.0142926341, 0.0302207805, -0.017816944, -0.0101170139, 0.00855387, -0.0162972212, -0.0235918928, 0.0125919916, 0.0445785448, -0.0407864749, -0.0116946315, -0.00863347482, -0.0117380526, -0.0170643199, -0.0486600883, 0.0134748789, 0.016876163, 0.00333072664, 0.0263418686, -0.031899713, -0.0210011266, -0.0106235882, -0.0187722, -0.00124563021, -0.00572790904, -0.0304523576, 0.0303076226, -0.00811966415, 0.0553758182, -0.0487179831, -0.0262260791, 0.0131926443, 0.0403812155, -0.0204800796, 0.00125829456, 0.0274129119, 0.00222892733, -6.75621e-05, -0.000296707847, 0.0081558479, -0.0210734941, -0.0350549482, -0.0620626, -0.0273550171, 0.0258352943, -0.0128452787, 0.0235195253, 0.0177445766, 0.0174116846, -0.0219853278, -0.0212471765, -0.0100012254, -0.0133446166, 0.0364733562, -0.00491377153, -0.0317839235, -0.0180340484, 0.0205669198, -0.0388180725, 0.011766999, -0.0165432729, -0.0290484224, -0.0194379836, 0.0139090857, -0.0154288085, 0.0497600771, 0.00478712795, 0.036154937, -0.000113809627, -0.0184827279, -0.00143740478, -0.0295694713, 0.0186708849, 0.0193945616, -0.0386154428, 0.037660189, 0.00668316334, -0.0494416617, 0.00309914979, 0.00529008405, 0.0079387445, 0.000486673263, 0.00242793863, 0.00273731095, 0.0148788132, -0.0261392388, -0.00027092683, -0.0206537619, -0.00989267416, -0.00685684616, -0.0285129, -0.00811242685, 0.0114630545, -0.024619516, 0.0177156292, -0.0106235882, 0.00794598088, 0.0525390022, -0.00832229387, 0.0288168453, 0.0270655453, 0.0366470367, 0.00448680157, -0.0288892128, 0.0157182794, -0.00195031136, -0.0100446464, 0.0154288085, -0.0447811745, -0.0127439639, -0.0790834948, 0.00262875925, 0.0437969752, 0.0118393674, 0.0125268605, 0.0344181098, 0.0245182011, -0.0262550265, 0.0227524266, 0.0513232239, 0.0486021936, 0.0257050321, -0.0150814429, -0.0063213245, -0.0250247754, -0.0175274741, -0.00269931788, -0.0203932375, -0.00108189811, 0.00309553137, -0.0184827279, -0.00175130006, 0.0228392687, 0.0172524769, -0.0221734848, -0.0415969938, -0.0300181508, -0.0276589617, -0.00835847761, -0.000410687091, 0.0218405928, -0.00122934743, 0.0158630144, -0.017295897, -0.0216234904, 0.0112893721, 0.00065990357, -0.0148136821, 0.021406386, -0.0222892724, -0.0264431834, 0.021174809, -0.0173827391, 0.00830782, -0.0493548177, 0.0151393376, 0.0193221942, 0.0687204301, -0.00762032624, 0.0303365681, -0.0104643796, -0.00556508126, -0.0427548774, 0.00845979247, 0.056475807, 0.0019611665, 0.0450706482, -0.00146182894, 0.0161959063, -0.0190037768, 0.0305970926, -0.00926307403, -0.0200313982, -0.000183293989, 0.00378483441, 0.00514173, -0.0440575, -0.00269750855, 0.00900978688, 0.00647329679, -0.0303365681, -0.0112531884, 0.00687493803, 0.0229116362, 0.0169630051, 0.031754978, -0.0108334552, -0.00214751344, 0.0221445374, -0.0245037265, -0.0342733748, -0.00124201179, -0.00163279776, -0.0307128821, 0.00525028165, -0.0115933167, -0.0438259207, -0.0120492335, -0.011390687, -0.0411338396, -0.0525968932, -0.0146544734, 0.0074755908, -0.00330539793, 0.0345628485, 0.000201838237, 0.00222169049, 0.00232119625, 0.0305970926, 0.0531179421, -0.0136702713, -0.017513, -0.0331154913, 0.0327102318, -0.0185261481, 0.00539863575, 0.0263418686, 0.0379786044, -0.0230997913, 0.0171945821, -0.00780124543, -0.0320155025, 0.0018155264, 0.00863347482, -0.00898807682, 0.0162827484, -0.0520179532, -0.0148788132, 0.017860366, 0.0028205337, -0.00593053875, -0.00997227896, 0.000884243695, 0.0182800982, 0.0312339291, 0.0176287889, -0.000641359366, -0.00433482928, -0.0158051215, -0.0238089953, -0.0196985062, -0.00138674735, -0.00814137422, -0.044896964, -0.0152117051, -0.0052539, 0.0248221457, 0.0059667225, 0.0272392277, -0.01885904, -0.00644435, -0.00323664839, 0.0106742457, -0.00526475534, 0.0087565, 0.00231938693, 0.000496623805, 0.0034519427, 0.000230219972, 0.00104028673, 0.0289036874, -0.0146110523, 0.0143939489, 0.0192353539, 0.00832953, -0.0321023427, 0.0125268605, 0.0209866539, 0.00563744921, 0.00410325266, -0.00159751857, -0.0256037172, -0.034447059, 0.000439181895, 0.00946570467, 0.0280497465, 0.0123965992, 0.00826439913, 0.0356628373, 0.00263418676, -0.0166735332, 0.0178314187, -0.00898084, -0.0355759971, 0.00121396931, 0.0152695989, 0.0199156106, 0.0170643199, 0.0104571423, 0.00155771628, -0.0156603847, 0.0229261089, 0.0266023912, -0.0153419673, -0.0147123672, -0.00374141359, 0.0278471168, -0.00401641103, -0.0182222035, -0.0269208103, 0.0106959566, 0.0303076226, 0.00447594654, -0.00118321308, -0.00879268441, 0.00377036072, 0.0447232798, 0.00137770141, 0.0365312509, -0.01354001, -0.0179472063, -0.00394404354, 0.00144011865, -0.0235918928, 0.00715355389, 0.00539139891, -0.0275576469, 0.00496804714, 0.0219419077, 0.0200603455, -0.0150235491, 0.025140563, -0.0305681452, 0.0189314093, 0.0364733562, 0.0347075835, -0.0179761536, 0.0508600697, -0.0111084525, 0.0135834301, -0.00553251617, 0.0100591201, 0.0139018483, -0.000899169536, -0.00437101349, 0.00601376174, -0.00386082055, 0.00862623844, -0.00638645561, 0.0298734158, -0.00413581822, -0.0189458821, 0.000771621359, 0.0470101, -0.04064174, -0.0103196437, 0.0375444, 0.0213050712, 0.00148987141, -0.0197708737, 0.0475311503, 0.0281365886, 0.00671934756, 0.0265300237, 0.0170353726, -0.0117597627, 0.0280497465, 0.00790979713, 0.00504765194, -0.00960320327, -0.0168906376, 0.0104137221, 0.0213340186, 0.0293089468, 0.00573152723, 0.0210734941, 0.00516705867, 0.0088650519, 0.0189314093, -0.0232011061, -0.0269208103, -0.00781571865, 0.0226076916, 0.0216958579, 0.00287842797, 0.0213484913, 0.0233747903, 0.0279484317, -0.00225787447, -0.00471476, 0.00564830424, -0.000886505179, -0.0287878979, 0.00742493337, -0.000235421394, -0.0299313087, -0.0324497074, 0.00444338098, -0.00599205121, 0.00882163085, 0.011267662, 0.0336365402, -0.019278774, -0.0131926443, 0.0227090064, -0.000610603078, -0.0148932869, 0.0388759673, 0.00476179924, -0.0143577652, -0.0128235687, 0.000696087489, -0.01266436, -0.00471837865, 0.00586178945, 0.0289905276, -0.00687855668, -0.0148932869, 0.00311724166, -0.0241418872, 0.0213484913, -0.0312339291, 0.00285671768, 0.00668316334, 0.00466048438, 0.0435653962, 0.0454469584, -0.0256181899, -0.0220721699, 0.0234037358, 0.0160366986, 0.0119841024, 0.00577132963, 0.012642649, -0.00175853679, -0.0346207395, -0.00395489857, 0.01710774, -0.00245145825, -0.0425233021, 0.0167459026, -0.00530817593, 0.0058581708, -0.0312628746, -0.00328006921, -0.0159209091, 0.0272971224, -0.0433048718, 0.0102617498, 0.00922689, 0.0073561836, 0.0158919618, 0.01856957, -0.00471476, 0.0103196437, 0.0331154913, -0.0239103101, 0.0100446464, 0.0222458523, 0.0176143143, -0.0435653962, -0.0104354322, 0.0175564215, -0.0455627479, -0.00101586257, -0.0162827484, 0.0505416505, -0.0141913192, -0.0234905779, 0.03062604, -0.0207695495, -0.0156603847, -0.00108642119, 0.00648053363, -0.0229405835, 0.02032087, 0.00691835862, -0.0132288281, 0.00123477506, 0.00541310897, 0.0088650519, 0.0101097776, 0.00993609428, 0.00360753341, -0.00783019233, 0.0134386951, 0.00983477943, -0.00645882357, 0.0153274937, -0.00808347948, -0.0281221159, 0.0265010763, 0.0120709436, -0.0400338508, -0.00742493337, -0.0189748295, 0.0186564103, 0.0140031632, 0.00534435967, -0.019756401, -0.0234471578, -0.00575685594, -0.0254879277, -0.0164998509, -0.0217537507, -0.00267760758, -0.0357496776, 0.00181914482, -0.0241708346, -0.0134314578, 0.00764927315, -1.20071136e-05, 0.00335786445, 0.0243010968, -0.0051091644, -0.00738513097, -0.000769359875, -0.0120709436, -0.02928, 0.0440285504, -0.0145459212, 0.0114485808, 0.0170209, 0.000440312637, 0.00495719211, 0.0261971317, -0.0517284833, 0.0234037358, -0.0256471373, 0.0056410674, 0.0198577158, 0.0216234904, 0.00400193781, 0.00786637608, 0.0227090064, 0.00905320793, -0.0276879091, 0.00963215, 0.0124110729, 0.0325944424, -0.000153442292, 0.00956701953, 0.0290918425, 0.0104499059, 0.0282668509, 0.00121125556, 0.0167024806, 0.0183669403, -0.0334918052, 0.0195103511, -0.0072476319, 0.00920518, 0.0105729308, -0.0173248444, -0.0279194862, -0.0147051308, 0.0143143451, 0.00792427082, 0.00361296092, -0.0082137417, -0.0217682254, -0.0358944125, -0.0295694713, 0.00743216975, -0.0225642696, 0.012121601, 0.00861900114, 0.00532264961, -0.00246231328, -0.0245182011, -0.0294826292, -0.00388614926, -0.0149511816, -0.0321602374, 0.0560705476, -0.00213665841, -0.0568231717, 0.00573876407, -0.00853939634, 0.0254300348, -0.0313207693, -0.0281365886, 0.0202340279, 0.00585455261, -0.0227669, -0.00576409278, 0.0149946017, -0.0368496664, 0.0223471671, 0.0206827093, -0.00609336607, -0.0424943529, -0.00421904074, 0.0179616809, 0.0082137417, -0.00548185874, 0.0185116753, -0.0222169049, 6.31521834e-05, 0.00282596145, 0.0033452, 0.0263852887, -0.00439996039, 0.00372332172, 0.0379207097, -0.00011703225, -0.0127873849, -0.0117018679, 0.0211169142, 0.00176758273, -0.0116801579, 0.0278760642, 0.0341286398, -0.0373996645, -0.00903873425, -0.00898084, 0.0247353036, 0.0300470982, -0.00785190333, -0.0155880172, -0.0072584874, 0.00355868507, -0.0504548103, 0.00927754771, 0.00488844281, 0.0146110523, 0.0501074418, -0.0131926443, -0.0190761443, -0.0232155807, 0.0134097477, 0.00937162619, -0.0228537414, 0.0125558078, 0.0610205047, 0.0114485808, -0.0222748, -0.0110867424, 0.00435654, -0.0151682841, -0.0459390618, 0.0111663472, -0.0315234, 0.0125919916, 0.00863347482, 0.00378845283, 0.024055047, 0.00955254585, 0.0207840241, -0.0346207395, -0.019568244, 0.00232662377, -0.0258642416, -0.0113689769, -0.0055433712, -0.0454759076, -0.00417923881, 0.0187577251, 0.0323339179, -0.00762032624, 0.00594863063, 0.00293994066, 0.0127150174, -0.00805453304, -0.00627066707, 0.000384906074, 0.0604994558, 0.0211892836, -0.00180919422, 0.0069617792, 0.0178893134, -0.0461416915, 0.0072584874, -0.0112531884, -0.00115155207, -0.0128669897, 0.00219455268, 0.00451574894, 0.00548909511, -0.00570258033, -0.00318237254, -0.0266313385, -0.0235050507, 0.0114920018, 0.0261681862, -0.0182656255, -0.011622264, -0.000986915431, 0.0114992382, 0.0163551159, 0.0273550171, -0.00897360314, -0.0288602673, 0.00355687598, -0.0131781707, -0.0121143647, 0.000258262473, 0.0103413546, 0.0380365, 0.0300760455, -0.00416476512, 0.0255313497, 0.0134821152, -0.00526113668, -0.0252129305, -0.0125268605, -0.01531302, 0.0154867023, 0.0465469509, -0.00577132963, -0.0114413444, 0.0293668415, -0.000702419668, 0.010326881, 0.0307418276, 0.0231432132, 0.00792427082, -0.0408733152, 0.00917623285, 0.0132215917, -0.00405983208, -0.011057795, -0.0061150766, 0.00490291649, 0.0134459315, 0.0113038458, -0.00793150719, 0.00914004911, -0.000571253069, -0.00997951534, -0.00851768628, -0.0276734345, -0.00219636178, -0.0156024909, 0.0169630051, 0.0133084329, 0.0124400193, 0.0195537712, 0.00364009873, 0.00730914483, -0.00338862091, 0.00710289646, -0.011434108, -0.0396864861, 0.0230708458, 0.00261609489, 0.00238813646, -0.0252708253, 0.0194379836, -0.0114847654, -0.00432759244, -0.0407285802, 0.0119479187, 0.0166156404, 0.00512363808, -0.00957425591, 0.00421180436, -0.00252020755, 0.00757690566, 0.0142057929, 0.00260343053, 0.00496804714, -0.0123242307, 0.0178893134, -0.0155590707, 0.0173972119, -0.00715355389, 0.0126137026, 0.0288457926, -0.0139090857, 0.0270221252, 0.00529008405, 0.00619468093, -0.019987978, 0.015356441, 0.00967557076, -0.0191050917, -0.00280063273, -0.0075334846, 0.00279882341, 0.01266436, -0.0130985659, -0.0125340978, -0.00378845283, 0.00138765201, 0.0103847748, 0.0309444573, 0.000227393102, -0.0292365793, -0.0215655956, -0.0143432915, 0.0738730207, -4.72934698e-05, 0.00788808707, 0.00408877898, -0.0154143348, -0.0234761052, 0.0112170046, 0.0237800498, 0.0138656646, -0.00785914, 0.0296418387, 0.00301230839, -0.000986010884, 0.0018688977, -0.0166445877, -0.00914728642, -0.00924136396, 0.0109926639, 0.018005101, -0.0322470777, -0.00690750359, 0.0163406432, -0.0209721792, -0.0129321208, 0.0264721308, 0.0314076133, -0.0309155118, -0.00552889751, -0.019611666, 0.00847426616, 0.0170932673, 0.0326812863, 0.0336075909, -0.00429864554, -0.00308286701, 0.0305970926, -0.0251984578, 0.00463153701, -0.0386443883, -0.0120781809, -0.0206248146, -0.0060463273, 0.000970632711, 0.0104137221, 0.000253061036, -0.023012951, -0.00475818105, -0.0201182403, -0.0298734158, 0.0319286585, -0.0184972025, 0.0076420363, -0.0266313385, -0.0174551066, 0.00663974276, 0.0149656544, -0.00473647052, 0.00487396913, 0.0162538011, -0.0276589617, 0.00826439913, -0.0105078, -0.00607165601, -0.0191340391, 0.0115716066, 0.0096466234, -0.0107393768, 0.0260089766, -0.0212182291, 0.0251550358, 0.0268484429, 0.00816308428, 0.00298336125, 0.00105385564, -0.0212761238, 0.0123025207, 0.0014880622, -0.0089446567, 0.012454493, -0.0280642211, -0.0267905481, 0.0119913397, -0.000782024232, -0.0269352831, -0.0169774778, 0.0243445169, -0.0199590307, -0.00584731577, -0.00466410257, 0.00226330198, -0.0104064848, -0.0138801383, -0.0342154801, -7.42900374e-05, -0.00658546714, -0.0216090158, 0.0313207693, -0.00904597156, -0.0031461888, -0.0139525058, 0.0215077, 0.010703193, 0.0323339179, 0.016022224, 0.00485225907, 0.000435789669, 0.00940781, 0.0213629659, -0.0266747605, 0.0359812565, 0.0435075, -0.00212399405, 0.00275902124, 0.0265444983, -0.00511278305, -0.000494362321, 0.0102328025, -0.0123893619, -9.92795322e-05, 0.0230563711, -0.0239247847, -0.00721506681, -0.00164003461, 0.0121288383, 0.00169702421, 0.00608251104, 0.0114196343, 0.0167169552, -0.00246050418, 0.00997227896, -0.0325365476, 0.00190146314, -0.0149511816, 0.00840913504, -0.016398536, 0.0157472268, -0.0224629547, 0.0300760455, -0.0103124073, 0.0293234196, -0.00251297071, 0.00666507147, -0.014270924, 0.00867689587, 0.00957425591, 0.0391654372, -0.000172212676, -0.00960320327, -0.00699796341, 0.00682066241, -0.0335207507, 0.00665783463, 0.0122446269, -0.00148896687, 0.0087275533, -0.00974070188, -0.00536968838, 0.0102906972, -0.0184972025, 0.000850321318, 0.0290918425, 0.0310891941, 0.030481305, -0.016586693, 0.00683513563, -0.0158195943, 0.000483507145, -0.0279339589, 0.0268050209, -0.00827887282, -0.00382463657, -0.0186419375, 0.0366470367, -0.0183235183, 0.0162972212, 0.00945846736, 0.00633218, -0.00581836887, 0.0275576469, -0.00486673228, -0.00168255065, 0.00109727634, -0.0081558479, 0.0296707861, 0.0111446362, 0.000750363281, 0.00319322781, -0.0115281856, 0.0232011061, 0.00166536332, -0.0334049612, 0.0127367275, 0.0336075909, 0.00927754771, 0.0193656143, 0.00430588238, 0.0132360654, -0.00147358875, -0.00291280262, 0.0197853483, -0.00405259524, 0.0170209, 0.0201471876, 0.0250247754, 0.00512363808, 0.0105367471, -0.024576094, -0.0027029363, 0.00466772122, -0.0218550656, 0.0132433018, -0.0217971727, 0.00463877385, 0.0112314774, -0.00871308, -0.00553975254, 0.000384001469, -0.00800387561, -0.00692197727, 0.016876163, 0.00180919422, 0.00415029144, -0.0223326944, 0.00506212562, -0.00422627758, 0.0082137417, -0.0120564699, -0.00247497763, -0.0102183288, 0.0170064252, -0.00848150253, 0.0198142957, 0.0263418686, 0.0162103809, 0.00553251617, 0.00061738753, 0.00342480466, -0.00832229387, -0.0170209, 0.0185116753, 0.000232255305, 0.0098709641, -0.00555060804, 0.0185550954, 0.0082137417, -0.000108382039, 0.0119623924, -0.000747197191, -0.0169195849, 0.0259800293, 0.0112387147, 0.00822097901, 0.0315523483, -0.0241418872, 0.0169919524, 0.019278774, -0.0212327037, -0.00862623844, 0.00432759244, -0.0349681079, 0.0129031735, 0.00615126034, -0.0217537507, -0.0123748882, -0.0145314485, -0.00112531881, -0.0107176667, 0.0147557883, -0.0196261387, -0.02357742, -0.00162194262, 0.00349174486, 0.0245471466, -0.0170209, 0.017440632, -0.0289615821, 0.0373417698, -0.0147992084, -0.00273007411, -0.0109275328, -0.0266458131, 0.0489785075, 0.00561573869, -0.00115969346, -0.0161235388, 0.0195392985, 0.0161959063, 0.0244458318, 0.0150814429, 0.00722592184, 0.0213340186, 0.00549995061, -0.0106887193, 0.0096538607, 0.0191195644, 0.0428127721, 0.00103847752, -0.0207406022, -0.0093861, -0.0128235687, 0.00480160164, 0.00136051408, 0.0154143348, -0.00336329197, 0.00776506169, 0.00756966881, 0.0126788327, -0.0252274051, 0.0254445076, -0.0154577559, -0.0135689564, -0.0236353129, -0.00520324241, 0.00628514076, 0.0110071376, -0.0161959063, 0.0167748481, -0.0169630051, 0.0049318634, -0.0115716066, -0.028310271, -0.0167893227, -0.0307997223, 0.0084308451, 0.00991438422, -0.00756243197, -0.0142275039, -0.019611666, 0.0106091145, -0.0101531977, 0.0265010763, -0.0197853483, -0.0242142566, 0.0167459026, 0.00420094887, 0.00642625801, -0.00395851675, -0.0124617303, 0.00911110174, 0.0234761052, -0.017151162, 0.0251550358, -0.00893741939, 0.0200313982, -0.00560126547, -0.0187577251, -0.0261681862, -0.0176143143, -0.00840189774, -0.00601376174, -0.000198785216, 0.00864071213, 0.0248076711, 0.0154432822, 0.016586693, 0.0285129, -0.0144228963, -0.00918347, 0.00586178945, 0.0168327428, 0.0121867321, 0.0167893227, 0.0208129697, 0.00650586234, 0.00046631982, -0.0232734755, 0.00324750366, -0.00180828967, -0.0255602971, 0.00890847202, -0.0148209194, -0.00381739973, -0.00806900673, 0.0083729513, 0.0234761052, 0.00263780518, 0.0280063264, 0.0228247941, 0.00225968356, 0.0125630451, -0.0202774499, -0.00355144823, -0.0128452787, 0.00149077608, 0.00449042, 0.0107538505, -0.00103576365, -0.0220866427, -0.0109275328, 0.0349681079, 0.0451864339, 0.0114413444, 0.0187722, -0.00934267882, -0.0169630051, 0.0105584571, -0.0358944125, 0.0178748388, -0.0337812752, 0.00105295109, -0.00611869479, 0.00563383102, -0.0124689667, 0.0139018483, 0.0312339291, 0.0172090549, 0.00673382077, -0.00650586234, 0.0138873747, 0.000654476, 0.00581836887, 0.0143794762, -0.0142636877, -0.0198866632, 0.00927031133, 0.019568244, -0.0114485808, 0.0504548103, -0.0152695989, -0.00579304, 0.00247316854, -0.00796769187, -0.0321602374, -0.0109637175, 0.00584731577, -0.00787361339, 0.0237511024, -0.0141117154, -0.0177445766, 0.00433844794, -0.0162972212, -0.01710774, 0.00853939634, 0.00379930786, -0.000334022479, -0.00238813646, -0.0153274937, 0.0133156693, -0.0131926443, 0.00827163644, -0.0239392575, 0.00231757783, 0.0291063171, -0.0104571423, -0.00146997033, -0.0159064364, 0.0124617303, -0.00762032624, 0.0157906469, 0.00884334184, 0.00412858138, -0.0130696194, -0.00927031133, 0.0199735034, -0.00509107253, 0.00229586754, 0.00808347948, 0.00408516079, 0.0111591099, 0.00719697447, 0.0204945523, 0.00062236283, 0.00252382597, 0.00699072657, 0.0217537507, 0.0170209, -8.47494448e-05, 0.00609336607, -0.00830058288, -0.003343391, 0.0136775086, -0.0211024415, 0.00154143351, -0.00996504165, 0.00836571399, -0.00319503713, -0.017484054, 0.000575323764, -0.00924136396, -0.000770264422, 0.0147774983, 0.0191195644, 0.00411048951, 0.00256001, 0.0313207693, 0.00738513097, 0.00212761248, -0.000201725154, 0.00864071213, -0.0200169254, 0.0260523967, 0.00588711817, -0.00219093426, -0.0200313982, 0.0258208197, 0.00110360852, -0.01885904, 0.0249524061, -0.0188011471, -0.00493910024, 0.00453384081, 0.00716440938, -0.0142564503, -0.0214208607, 0.0111374, 0.0070015816, -0.000282686611, -0.000694278278, -0.0066904, 0.017860366, 0.000491196231, -0.00534797832, -0.0174985267, 0.0303076226, 0.00524666347, -0.00427693501, -0.0179327335, -0.00588711817, 0.00157399895, 0.017860366, 0.0148932869, 0.00548909511, 0.0101821451, -0.0401496403, 0.0243445169, -0.00730552617, -0.0115064755, -0.00413581822, 0.0205524471, -0.00746835396, 0.00246050418, 0.00835847761, -0.00734171038, -0.0137136923, -0.007041384, -0.033462856, 0.0186564103, -0.016731428, -0.00431673741, 0.0211603362, -0.0263852887, 0.0249379333, -0.0172814243, -0.014082768, -0.0199156106, -0.00353154703, 0.00449765706, -0.0146761835, -0.00640454749, -0.0169195849, 0.0032149381, 0.00352973794, -0.025473455, 0.0168616902, 0.0195537712, -0.00428779051, -0.0127512012, 0.00889399927, -0.0100084627, 0.0042914087, -0.00108099356, -0.00768545689, -0.000242658178, 0.00577494781, 0.00738513097, 0.0153274937, 0.00374503201, 0.00707756775, -0.00569534348, -0.0220721699, 0.000991438399, -0.0125847552, 0.0167893227, 0.00727296062, 0.0209866539, 0.0203787647, -0.000270700693, 0.00126191298, -0.0132505381, -0.00139398419, 0.035865467, -0.00399108231, -0.00404173974, 0.0111084525, -0.000690659916, 0.0198287684, 0.00475094421, 0.0180340484, -0.00100048445, -0.00379568944, 0.00918347, 0.000165541278, -0.00656375661, 0.00674829446, -0.0199011359, -0.00388253084, -0.0074755908, 0.0101531977, -0.0147196045, -0.00575323775, -0.00654204655, 0.00360210566, -0.00493548205, 0.00742493337, -0.0110722687, -0.0156459119, -0.00684237247, -0.00479074614, -0.0192353539, -0.00399831915, -0.00668316334, -0.0369944051, -0.00315885316, 0.00246050418, -0.00146635191, -0.00771440426, 0.0128018586, 0.00148896687, -0.00352250109, 0.0109420065, 0.00767822051, 0.0124617303, 0.00258714776, 0.0055433712, 0.0212905984, 0.0195248239, 0.0151393376, -0.0072476319, -0.0175998416, -0.00452660397, -0.0107972715, 0.0256760847, 0.000224905452, -0.0100735938, 0.0193656143, 0.0130623821, -0.0215366483, -0.00506212562, -0.0103413546, -0.0248655658, 0.012809095, 0.00579304, -0.0401785858, -0.000206700439, 0.0112531884, 0.0192932468, 0.0133880377, -0.015877489, 0.00286757294, -0.00469305, 0.00935715251, 0.0219853278, 0.00432035606, -0.00272283726, 0.0223905873, -0.0186853576, 0.0169630051, 0.00713546202, 0.00496081077, -0.0166156404, 0.00466410257, 0.0165143255, 0.0123459417, 0.0229695309, -0.00324750366, -0.0159064364, 0.00798940193, 0.00610422157, -0.00896636676, -0.0258931872, 0.01856957, 0.00679171504, -0.0136702713, 0.00683513563, 0.0109709539, 0.0178748388, 0.0347944237, -0.0101170139, -0.00611145794, -0.00437825, -0.0167893227, -0.0128163323, -0.0213340186, -0.0163551159, 0.0163840633, -0.0186419375, 0.00848150253, -0.0199445579, 0.00227777543, -0.0117380526, 0.0242142566, 0.0145242112, 0.0161235388, -0.00153691054, 0.0159353837, 0.00727296062, -0.00436377665, 0.0139452694, -0.00977688562, 0.00440719724, 0.0324207619, -0.00146544736, -0.0245037265, 0.00407792395, 0.00559402863, 0.00759137888, 0.0151972314, -0.0038065447, -0.0105874045, -0.0125630451, -0.00849597622, 0.0016282748, -0.0125196241, -0.0022669204, -0.0166011658, -0.00104209583, 0.0170643199, 0.019756401, -0.0187866725, 0.011057795, -0.00290194759, -0.0058292239, -0.00642625801, -0.00671934756, -0.0334918052, -0.00602823496, 0.016731428, -0.00512725627, 0.0134169841, -0.0206103399, -0.0186129902, 0.0237366278, -0.00491015334, -0.0121794958, -1.40283228e-05, 0.000186573161, -0.0186853576, -0.000886957452, -0.0087565, -0.0155445971, 0.0196840335, 0.0430732965, 0.00212942157, -0.00520686107, -0.000167915845, -0.0064298762, 0.017151162, -0.00769269373, -0.00641540298, 0.0274273846, 0.00351526449, 0.017513, 0.0128887, -0.0211892836, 0.00907491799, -0.0104281958, 0.0151393376, 0.0150235491, -0.00459173508, -0.00318599096, 0.00437825, 0.00496442895, 0.000339676219, -0.00789532345, 0.0028404349, -0.00249849726, 0.00296707847, -0.00738151232, -0.0285997428, 0.00678086, 0.00149077608, -0.00977688562, 0.000899169536, -0.00177843799, 0.011578843, 0.0146689471, 0.00260885805, -0.00100048445, -0.00336691039, -0.012099891, -0.00381739973, -0.00263780518, -0.00859729107, 0.01356172, 0.00869860593, -0.0207406022, 0.0124255456, -0.000752172491, 0.0246774089, -0.0096538607, -0.00729828933, -0.00257629249, 0.00973346457, -0.00438910536, 0.00609336607, 0.00459535327, -0.00422989624, 0.00261971331, -0.00554698939, -0.00332529889, -0.00268665352, -0.0113400295, 0.00206429069, 0.000222530885, -0.00386082055, 0.00994333159, -0.00381739973, 0.00889399927, 0.0207261294, 0.0131781707, 0.0223471671, -0.0136919823, 0.000180014831, -0.00567363296, 0.000974251074, -0.0262405537, 0.0302497279, -0.00995056797, -0.00064362085, -0.0285563227, 0.0252129305, -0.0384128131, -0.00828610919, -0.0106308255, -0.0126281753, -0.00296707847, 0.00274273846, 0.00155771628, -0.0233892631, -0.00362019776, -0.00240984675, -0.0240839943, -0.0136557985, -0.012642649, 0.00195754808, -0.0126281753, -0.00670125522, 0.00915452279, 0.0188011471, 0.0280642211, 0.0128814634, 0.015689332, 0.00354240229, -0.0156169645, -0.00680618873, -0.00717164576, -0.0014509738, -0.0239392575, -0.00634665322, 0.0134386951, 0.0125630451, -0.00542758266, 0.00770716742, -0.0060463273, 0.00793150719, 0.0102183288, 0.0201471876, 0.0115281856, -0.0179037862, 0.00705947587, 0.0303944629, 0.0223182198, -0.000150502339, -0.00746111711, 0.007750588, 0.00184085511, 0.0187432524, -0.0153998611, -0.00895912945, 0.00546014821, 0.0241129398, -0.00484140357, -0.00923412759, -0.00952359848, 0.0371391401, -0.0296273641, -0.0461416915, -0.00997227896, 0.0117018679, 0.0024641226, -0.006154879, -0.000272509875, -0.00208057347, 0.0009688235, 0.0125051504, -0.00637921877, 0.00582560524, 0.0189893022, 0.0100012254, -0.00926307403, 0.00824992545, 0.0150380228, -0.00645882357, 0.00686046435, 0.0133952741, -0.0073670391, -0.00460259, -0.00012641745, -0.0218695402, 0.0193656143, 0.012852516, -0.0334918052, -0.00722230319, -0.0203932375, -0.00553251617, 0.00449403841, 0.00942228362, 0.00357858627, -0.00819926802, 0.0139235584, -0.0217103306, 0.0297576264, 0.0179037862, -0.00990714785, -0.00506936247, -0.0165722184, 0.00329273357, -0.0248510912, 4.77387e-06, -0.000127435123, 0.010659772, 0.0103196437, -0.022636639, -0.0201906078, -0.0239392575, 0.0169195849, -0.0150090754, -0.00647329679, 0.0244892538, 0.0169630051, 0.025849767, 0.00551442383, -0.00253829942, -0.00791703351, -0.0142419767, 0.00986372679, -0.0202050805, -0.0173827391, 0.0048631141, -0.00688579306, -0.0297865737, 0.00344651495, 0.00423351442, 0.000218120986, -0.0121794958, -0.0161380135, 0.00259981211, 0.00386443897, -0.0092992587, 0.00602823496, 0.0140031632, -0.00248945132, -0.00154143351, 0.00797492824, -0.000743126555, -0.000152763838, 0.0244168863, 0.000719154719, 0.00401641103, 0.013018962, -0.00446147285, 0.0323049724, -0.0168472175, 0.00606803736, 0.0159209091, -0.0102400398, -0.00597757753, -0.00417562, -0.0467495807, -0.000486220961, -0.00052059564, 0.010659772, 0.00598481437, 0.00887228828, 0.0034121403, -0.0132360654, 0.0138150072, 0.0154432822, 0.0096466234, -0.0289181601, -3.18305101e-05, -0.0076420363, -0.0185261481, -0.00468943128, 0.00565554108, -0.0120202862, -0.0140031632, -0.0226655845, 0.0175419468, -0.0016716955, 0.011412397, 0.00274635688, 0.00849597622, 0.000916356861, -0.00451574894, -0.00900978688, 0.0207116548, -0.0178458914, 0.0150669692, 0.0188156199, 0.00439996039, 0.016022224, -0.00027590213, 0.00635027187, -0.00318780029, 0.0257050321, -0.00462430064, -0.00555060804, -0.00345556089, -0.00446147285, -0.0225497968, -0.0133301429, 0.0206392873, -0.00325835892, -0.0028404349, 0.00695454283, -0.00352431042, 0.00353697478, 0.0254300348, 0.00368171022, 0.000327916467, -0.0147340782, 0.0104571423, 0.0128235687, 0.0205379725, -0.00514173, 0.0135110626, -0.0151972314, 0.00720059313, -0.0129538309, 0.00470028678, -0.0068242806, 0.00858281739, -0.00415752828, 0.00143921399, -0.00221445365, 0.000261202425, 0.00945846736, 0.0179616809, 0.0188156199, -0.0121794958, -0.0015296737, -0.0119768661, 0.0206682347, -0.0253866129, 0.00264504203, -0.00903873425, -0.011578843, -0.00335062761, -0.00114612456, -0.00209323782, 0.00512363808, -0.000181824027, -0.0226076916, 0.0191050917, 0.0231142659, -0.00758414203, -0.000163053628, 0.0332312807, -0.0298734158, -0.0111446362, 0.00107104296, -0.0145459212, 0.000715536298, 0.00344108744, -0.00696901605, 0.0167459026, -0.0146906571, -0.0244458318, 0.00364009873, -0.00287842797, 0.0255024023, -0.0150669692, 0.00460982695, -0.00940057356, 0.0105512207, -0.0124617303, 0.0189169347, -0.00872031599, 0.0219129603, 0.00631770631, -0.0024170836, 0.00822097901, -0.00914004911, 0.0206827093, -0.00763479946, 0.0230274238, 0.00460982695, 0.0216669105, 0.00822821539, -0.00998675171, 0.0151682841, 0.010348591, -0.0259800293, 0.00866242219, 0.00521409791, 3.6099078e-05, 0.00893741939, 0.00119497278, -0.00290194759, 0.00412858138, 0.02532872, 0.00315523474, -0.00608974788, -0.00139760249, -0.0245905686, -0.0222169049, 0.00751177454, 0.0157038067, 0.0115933167, -0.0201906078, 0.0141478991, -0.0050802175, 0.0262839738, 0.00018352014, -0.0014980128, 0.0293813143, -0.00421180436, -0.0130261984, 0.0180485211, 0.0121867321, -0.0096466234, -0.0314076133, -0.0164709035, 0.0276300143, 0.00960320327, -0.00433482928, -0.00604994548, 0.0101749087, 0.0215221755, 8.8650515e-05, 0.00212218473, -0.00741769653, 0.0196550861, -0.000987820094, 0.000947113207, 0.000374050898, -0.00164727133, 0.0106380619, -0.0213050712, -0.0131130395, 0.00879268441, 0.00548185874, 0.00392957, 0.00130895199, 0.00704862084, 0.00907491799, -0.00706671271, -0.0103992485, -0.0243734643, -0.00743216975, -0.00346641615, 0.0168037955, -0.0172669496, 0.0166590605, -0.00349355396, 0.00187432521, 0.0208274443, 0.00948017742, -0.00715355389, -0.00230491348, -0.00587626267, 0.00610060291, -0.00874926336, -0.00359667814, -0.00716440938, 0.000810066704, -0.00336329197, -0.00167621847, -1.8318091e-05, -0.0069617792, 0.0069617792, 0.0278471168, 0.0102255661, -0.00491377153, -0.000131392735, -0.00641540298, 0.00216922397, -0.0246050414, 0.00155771628, 0.0046858131, -0.00240622833, 0.001872516, 0.00620553643, 0.00646244176, 0.00314076128, -0.00330177951, 0.00175130006, -0.00158123579, 0.00181009888, 0.00780848227, 0.00797492824, 0.00857558101, 0.0254300348, 0.0115281856, -0.00535159651, -0.000328142603, -0.0140393469, 0.0177301038, -0.0138150072, 0.00331444386, 0.00805453304, -0.0134025104, 0.00626704888, -0.0130768558, 0.00992162153, -0.00728381611, -0.0250247754, 0.0171222147, 0.0113038458, -0.0113038458, -0.00208781, -0.0305391978, 0.00863347482, 0.0196406133, -0.0386154428, -0.00313895196, -0.00510192756, 0.00477989111, 0.0163406432, -0.0167024806, 0.00526113668, 0.00901702419, -0.00362381595, -0.0295405239, 0.00533712283, 0.0115426593, 0.0108624026, 0.0238379426, 0.0025057341, -0.0120926546, -0.00991438422, 0.000750363281, -0.00618744409, 0.000224227013, 0.0279484317, -0.00170335639, 0.0073670391, 0.00796045456, -0.0228103213, 0.00567001477, 0.0017739149, -0.00110089465, 0.00627428573, 0.0171945821, -0.0155880172, -0.0229550563, -0.00102852692, -0.0130406721, -0.0129827783, -0.00784466602, -0.0145025011, 0.00135689566, 0.0133446166, 0.0117380526, 0.0149367079, 0.000379252335, 0.0130406721, -0.00565554108, -0.0268773902, 0.00419733068, 0.0126209389, 0.0181208886, -0.0149511816, 0.02386689, -0.0122012058, 0.0102762235, 0.00797492824, 0.00472199684, -0.00430588238, -0.00637921877, -0.00759861572, -0.00402364787, 0.0075334846, 0.0129321208, 0.00715355389, -0.0169919524, 0.00261428556, 0.00149348984, -0.0262405537, -0.00190508156, 0.0154722286, -0.00301049929, -0.0126860701, 0.00447232835, -0.0176577363, -0.000673472532, -0.000258714776, 0.0225208495, 0.0191919319, 0.0104354322, 0.0155735444, 0.0171656348, -0.00149620359, 0.01885904, -0.0262695011, 0.0121650221, 0.0106308255, -0.0169340577, 0.00606441917, 0.0151827578, -0.00335424603, 0.0348233692, -0.0053262678, -0.000248311902, -0.0064986255, -0.0234326832, 0.0115354229, -0.0218405928, 0.0055687, -0.00252201688, 0.01531302, 0.0110071376, 0.00996504165, -0.0247497763, -0.0199156106, 0.0323049724, -0.00406345027, 0.00577494781, -0.021927435, 0.0140972417, 0.0418864638, 0.00690026674, -0.0168037955, 0.013872901, 0.011434108, 0.00373417698, -0.00676276814, -0.00957425591, 0.0196550861, 0.0141696092, -0.0127439639, 0.0250826683, -0.0106525356, -0.0188300945, 0.0165577456, 0.0117308153, 0.00430226373, -0.00388976769, 0.00878544711, -0.0240261, -0.0248945132, 0.0132288281, -0.0166880079, -0.0151103903, -2.3434719e-05, 0.00412134454, -0.00859005377, 0.00947294105, 0.01710774, -0.0113834497, -0.0104137221, 0.00546014821, 0.00183271372, -0.0124327829, -0.00461344514, 0.00865518488, -0.00942952, 0.00477265427, -0.00751177454, -0.00032271503, 0.00390062272, 0.00374503201, -0.00172778044, 0.0138584282, -0.0127077801, 0.0156024909, -0.00763479946, -0.00743940659, 0.0107827978, 0.0100229364, -0.00383549184, 0.00289832917, 0.00323845772, 0.00311543257, 0.0185261481, 0.0286576375, -0.00454831449, -0.00647691544, 0.0057604746, -0.00163370243, 0.00168707361, 0.0325654969, -0.00555060804, 0.00653119106, 0.00934991613, 0.0121722585, 0.0140682943, -0.00409963401, -0.0167748481, 0.00976964924, -0.0686046481, -0.00418647565, -0.000285626535, -0.00108823029, -0.0203063954, 0.00598843303, 0.0216090158, -0.0123242307, 0.0443759151, 0.00796045456, -0.000498433, 0.0169630051, 0.00971899182, 0.00584007893, -0.0159932766, -0.00394042488, 0.0198432431, -0.00623448333, -0.00559764681, -0.00462791882, -0.00115788425, 0.0150235491, 0.000924046, -0.00953807216, 0.00590882823, 0.0111084525, 0.00238632713, -0.00291461195, 0.0041430546, 0.00363828964, 0.00290556601, 0.00460982695, 0.0188156199, -0.0117525253, 0.00949465111, 0.00574238272, -0.000480793358, -0.0189169347, -0.00168255065, -0.0135110626, -0.00521409791, 0.00258352933, -0.000832681661, -0.0187432524, -0.0163840633, 0.00603185361, -0.0102110924, -0.0168906376, -0.00676638633, -0.00070920412, -0.0246050414, -0.010348591, -0.0069726347, 0.0156603847, 0.0106018782, 0.0162682738, -0.0164853781, 0.0114920018, 0.0087275533, -0.0122808106, 0.004537459, -0.0332891755, -0.0166590605, 0.000827254087, 0.0169051103, 0.00674467627, -0.0171945821, -0.0106959566, -0.0034121403, 0.0321023427, -0.0179037862, 0.0106018782, -0.0163406432, -0.0108551653, -0.00117145327, -0.0121577857, 0.000788808684, 0.0227669, -0.0013306624, 0.0066180327, 0.0061150766, 0.00480160164, 0.0143071078, 0.017440632, 0.00780848227, 0.0106742457, -0.00718250126, 0.0117163416, 0.0204800796, 0.0182366781, 0.0218695402, -0.00648777047, -0.0259800293, -0.0184682552, 0.016876163, -0.0133373803, -0.00565554108, 0.0118466038, 0.0126064653, 0.000171760374, 0.00378483441, -0.00496442895, -0.00315342564, 0.0162827484, 0.0198866632, -0.0285129, 0.00616211537, -0.0109202964, -0.00983477943, -0.00403450336, -0.00352431042, 0.0159498565, 0.0143722389, 0.0246918835, 0.026703706, -0.00287842797, -2.27916075e-06, -0.00429502688, -0.00444699964, -0.0361838862, 0.00511278305, -0.00193583779, 0.00354421162, -0.00432759244, 0.000958872959, 0.0245182011, 0.0100374101, 0.00957425591, 0.00335967378, -0.0174695794, -0.0243734643, 0.00719697447, -0.00309372204, 0.00692559546, 0.0101749087, -0.0204221848, 0.0075334846, -0.0110143749, -0.014270924, -0.0184827279, 0.0106308255, -0.000562207133, 0.00866965856, 0.0264287088, -0.0179906283, -0.0218550656, -0.00517067732, 0.00534074148, 0.0105222734, -0.0117959464, 0.0143505288, -0.00113888772, 0.0123676518, -0.0103630647, -0.00985649, -0.00452298578, -0.00582198706, -0.0102979336, -0.00620553643, 0.000992343063, -0.00391147798, 0.00802558567, 0.0200169254, -0.00319322781, 0.00985649, -0.00163460698, 0.00704862084, 0.00716440938, 0.00731638167, 0.00454469584, -0.00443976279, 0.00526475534, 0.0105584571, -0.0212327037, -0.00859005377, -0.0247063562, 0.0101459613, -0.0123676518, 0.0200458728, 0.00734894676, 0.00946570467, 0.000920427556, 0.00118140387, 0.00402726652, 0.0144518437, -0.030481305, 0.00178567471, 0.00575323775, 0.0190616697, 0.0141840829, -0.0024659317, 0.0393680669, 0.0101676714, -0.00325112208, 0.0127294902, -0.0125123877, -0.00383549184, -0.0184248332, 0.0248655658, 0.00419009384, 0.0194090363, 0.000650405302, -0.0179472063, -0.00095254078, -0.0033452, -0.0218116455, 0.0171222147, 0.000597486389, -0.0154432822, 0.0116150267, 0.0237800498, -0.0064407317, -0.00822097901, -0.00256905588, 0.00603909045, 0.0236642603, -0.0277602766, -0.00592330191, -0.0177301038, 0.0154288085, 0.02532872, 0.0211169142, 0.00285129016, 0.00466772122, 0.0239537321, -0.0108479289, 0.0251260903, 0.0184248332, -0.015834067, 0.00387891242, 0.0102328025, 0.00485587725, 0.0123965992, -0.0119117349, 0.0038970043, 8.72370874e-05, 0.00212761248, -0.00906044431, 0.00311181415, 0.0143650025, 0.0154143348, 0.00291823037, -0.00718611944, -0.00863347482, -0.0135834301, 0.0211024415, -0.029062897, 0.0190761443, 0.017440632, 0.00199373206, -0.00155771628, -0.00380292628, -0.00981306937, 0.0183814131, 0.0105222734, -0.003875294, -0.00642263936, 0.0267760754, -0.00473285234, -0.00229043979, -0.00955254585, -0.00759861572, 0.00853939634, -0.00969728082, 0.0107104303, 0.00287842797, -0.00272102817, -0.00163641619, -0.0180919431, -0.0019828768, 0.00812690053, -0.00759137888, -0.00559402863, 0.00434568478, -0.00759861572, 0.0307707749, -0.00288747391, -0.00577856647, -0.0425811969, 0.00116602564, -0.00243879389, -0.004182857, -0.0112821348, -0.0145459212, 0.0157182794, 0.00899531413, -0.025285298, -0.0139307957, 0.000956159143, -0.00823545177, 0.0144952638, -0.00641178433, 0.00838742405, 0.0124906767, -0.023722155, -0.0214932282, 0.021406386, -0.00745388027, -0.00110813149, -0.00372694014, 0.0140104005, -0.0468653664, 0.000980583252, -0.0088650519, 0.0221300647, -0.0122373896, -0.00672296574, -0.022303747, -0.00766374683, -0.0164274834, -0.00192136422, 0.00739236781, -0.00578218466, 0.00374503201, -0.00782295596, 0.000894646568, -0.0106670093, -0.00453384081, 0.0092196539, -0.0156459119, -0.0179327335, 0.0181643106, -0.00695092417, -0.0107538505, 0.000215294116, 0.0114268707, 0.0319865532, 0.0124110729, -0.00963215, -0.0344760045, 0.0134242214, 0.000662165112, -0.00402726652, 0.0111156898, -0.00331444386, -0.0124472566, -0.00653119106, -0.00177210581, -0.00298878876, -0.020176135, -0.013373564, -0.0152695989, 0.00648415228, -0.00203534355, -0.0182222035, -0.0108406916, -0.0159932766, -0.00417923881, 0.0388180725, 0.00223978236, 0.000607437, -0.0123676518, -0.0169919524, 0.0154143348, -0.00697625289, 0.0110867424, -0.00982030667, -0.00336510129, 0.0306549873, -0.00827163644, -0.00352611952, 0.0088650519, 0.0080762431, -0.0305391978, 0.00784466602, 0.00756966881, -0.006686782, 0.0109564802, -0.0253431927, -0.00464962935, 0.00971899182, 0.00698710792, -0.0171656348, 0.0650730953, 0.0218405928, 0.016586693, -0.0127005437, 0.00586540764, 0.00207514572, 0.00339766685, 0.0329418071, -0.0245905686, 0.00859729107, 0.0193511415, 0.0127150174, -0.0158485416, 0.00777953537, 0.0105367471, 0.00833676662, 0.0242287293, -0.00151158182, -0.00341394963, -0.00390062272, -0.00744664343, -0.016876163, 0.0193511415, -0.0216958579, 0.0072476319, -0.0137932971, 0.0146834208, -0.00946570467, -0.0429575071, 0.0175564215, -0.0122735733, 0.0149077605, 0.0155156497, 0.00627428573, -0.00157580816, 0.00776506169, 0.0186708849, 0.0125123877, 0.0087275533, -0.0157472268, 0.0150235491, 0.0226221643, 0.00690026674, -0.00975517556, -0.000790165563, -0.00253106281, 0.00191231829, -0.0137715861, -0.00559402863, -0.0259800293, 0.013373564, -0.0260523967, -0.00543843769, -0.00687493803, 0.0134676415, -0.017440632, 0.0289615821, 0.00259800302, 0.0106380619, 0.00670849206, 0.00491738971, 0.00270836381, 0.00107013842, 0.00172868511, 0.00793150719, -0.0227090064, 0.0161090661, 0.00716440938, 0.0154288085, 0.0108045079, -0.0103920121, -0.00840189774, 0.00981306937, 0.00580027653, 0.00555422623, 0.0192932468, -0.010869639, 0.00180648046, 0.00551442383, -0.0165143255, -0.0225353241, 0.0113617396, 0.00618744409, -0.0192643, 0.00237004436, -0.0178458914, -0.00895189308, -0.00521047926, -0.00900255051, 0.00811966415, 0.0135544837, -0.00244422141, -0.00468943128, 0.00576771144, 0.0243010968, 0.0117597627, -0.0171222147, 0.00557955494, 0.00524666347, 0.0108913491, 0.0122518633, -0.00363286212, -0.00261428556, 0.00225063763, -0.0164274834, 0.0207406022, 0.00228139386, 0.00392595166, 0.0114920018, 0.0089446567, -0.0209287591, 5.05302296e-06, 0.0150814429, 0.00932096876, 0.0252997726, -3.59011974e-05, -0.00762756309, 0.0185550954, 0.00659270398, -0.00582198706, 0.00663612457, -0.000861176464, -0.0063611269, 0.00132613932, -0.0158485416, 0.0114775281, 0.0150090754, 0.00860452745, 0.0393101722, 0.00841637142, 0.0132577755, -0.00138855656, 0.0161380135, 0.00794598088, 0.0188735146, 0.0223471671, 0.00219455268, -0.00154776569, 0.0120347599, 0.00539863575, -0.0139814531, 0.0073670391, 0.0155156497, 0.0148932869, 0.0122735733, -9.5604606e-05, -0.00110360852, 0.00191231829, 0.0394549072, 0.0070811864, 0.0113689769, -0.0207116548, -0.0101025403, -0.00936439, -0.0104281958, 0.00361296092, 0.028730005, -0.0166445877, 0.00350260013, -0.0094367573, 0.00322579336, 0.00194126542, 0.0117742363, 0.00415391, 0.00763479946, -0.00405983208, -0.0118321301, -0.000603366294, -0.0103196437, 0.0012320613, 0.0167748481, 0.0248076711, 0.0127077801, 0.0154143348, -0.0132433018, -0.00409601582, -0.00368894706, -0.0119262086, 0.00663974276, -0.0136123775, -0.00719335629, 0.000175491834, 0.0128597524, 0.0555784479, 0.00804729573, -0.00553613435, -0.00475094421, -0.0134748789, -0.00756966881, -0.0169340577, -0.0386154428, 0.0131419869, -0.0167748481, -0.00563383102, 0.0159498565, -0.00513449311, 0.0169919524, -0.000206248136, 0.014625526, 0.00625619385, 0.0194524564, -0.0189458821, 0.00983477943, -0.00123839348, 0.0260089766, 0.028020801, 0.00601376174, -0.00470390497, -0.00498252083, 0.00916175917, -0.00366]
24 Nov, 2021
jQWidgets jqxScrollView slideDuration Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that presents at the bottom of the jqxScrollView widget. The slideDuration property is used to set or return the duration in milliseconds of a time interval. It accepts Number type values and its default value is 300. Syntax: Set the slideDuration property. $('selector').jqxScrollView({ slideDuration: Number }); Return the slideDuration property. var slideDuration = $('selector').jqxScrollView('slideDuration'); Linked Files: Download jQWidgets from the link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> The below example illustrates the jqxScrollView slideDuration property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView slideDuration Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired.png" alt="GetHired"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring.png" alt="hiring"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade.png" alt="upgrade"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg.png" alt="gethiredgfg"> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0], slideShow: true, slideDuration: 1000 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-slideduration-property?ref=asr10
PHP
jQWidgets jqxScrollView slideDuration Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0149778072, 0.0312747881, -0.0148666408, 0.0468973592, 0.0388341, -0.00551755447, 0.00976781268, 0.0441700816, -0.0160672367, 0.00717393262, -0.00453188, 0.0237303, 0.0108646536, -0.0273024458, -0.00275136624, 0.0070664715, -0.0181126967, 0.00445406325, -0.0141551765, 0.0388341, -0.0111092199, 0.00136456639, -0.062431, 0.0337352678, -0.0377965458, 0.0144516202, 0.0175198093, 0.0242490768, -0.0231522359, -0.00259202765, -0.0363736153, 0.00527669396, 0.0141477659, 0.0286809076, -0.0402866714, -0.0103829335, 0.0217441302, 0.00396122597, -0.0291107502, 0.000481720665, -0.038774807, 0.0203360226, -0.00621419679, 0.026161138, -0.0154595282, 0.010294, -0.0216255523, 0.00818925165, -0.0142515209, 0.00347209442, -0.00463192957, 0.0278508663, -0.00976781268, 0.0351878405, 0.00474309595, -0.0432511047, 0.0213291086, 0.0313637219, -0.00739997067, 0.00388340978, 0.0488538854, -0.04820171, -0.00240860344, -0.00739626493, 0.00343133346, 0.00345541933, -0.00574729824, 0.032490205, -0.0535080507, 0.0231522359, -0.0169713888, 0.00282732979, 0.021936819, 0.0098271016, 0.0115094185, -0.00373889343, -0.0362846814, 0.0231670588, -0.00823371764, 0.00292737945, -0.0443479456, -0.00264575821, -0.101087227, -0.00594369182, 0.00679967273, -0.000233680839, 0.0238785222, -0.0371443704, 0.0440515019, -0.0121615939, -0.013591934, -0.0391898304, 0.019935824, -0.0200099349, -0.0180978756, -0.0201581568, -0.0071294657, 0.0176532101, -0.0242194328, 0.00196764362, 0.0361661054, 0.0234783236, 0.00341095286, -0.0399605818, 0.00394640397, 0.0313044339, 0.0339131355, -0.0353064202, 0.000532671867, -0.0358696617, 0.0330238044, -0.0323419832, -0.00175828044, -0.0330238044, -0.0505139716, 0.0178310759, -0.0231818799, -0.029333083, 0.0144367982, 0.0021343932, 0.00631424645, 0.0128285922, 0.00981228, 0.046037674, 0.00254756119, 0.0286364406, -0.0118132727, 0.00608820794, 0.0527372956, -0.0365218371, -0.0210771319, 0.0344467349, -0.0260722041, 0.000922680367, 0.0530930273, 0.0158004388, 0.0168379899, -0.00456152437, -0.0105237439, 0.018720407, -0.0236858353, -0.00778905256, 0.0339427777, -0.0145479646, -0.00520258304, 0.00873026066, 0.00536192162, 0.0177717879, -0.0209140889, 0.0347728208, -0.0154891722, -0.0182609186, -0.0108201876, 0.0255386066, 0.0317194536, -0.00198246585, -0.0073629152, 0.018750051, -0.0178607199, -0.0134955896, 0.0159338377, -0.0181126967, 0.021936819, 0.00569542032, -0.0253014509, 0.00315156486, 0.0332313143, -0.00976781268, -0.0253755618, 0.0338538475, -0.00824854, -0.0117910402, -0.0207362212, -0.010294, -0.0130138695, -0.0273172669, 0.0181868076, -0.0405534692, -0.0264575817, -0.0174308773, -0.0348321088, -0.00446147472, -0.0210178439, 0.0193132926, -0.000897204736, -0.0274654888, 0.0206769332, 0.000755004527, -0.0454447865, -0.0128137702, -0.0098271016, 0.0255830735, 0.0412056446, 0.0567689277, -0.0098271016, -0.0227520373, -0.00104033132, 0.00247159763, -0.0335574038, -0.0192836486, -0.00161746982, -0.0215810854, -0.000820777903, 0.0108424202, 0.0102569452, 0.0150222741, -0.0248271413, -0.0423914194, 0.0359289497, -0.010931354, 0.0131843239, 0.0103384666, 0.0168528128, -0.00649581803, -0.00347950542, 0.0170751456, -0.000854127808, -0.0249308981, -0.000100628669, 0.000793449522, -0.00778905256, -0.00543603254, -0.0212846417, 0.0145924306, -0.086798653, -0.012043017, -0.00722951535, 0.00586217, -0.00212327647, -0.00704053277, -0.0339427777, -0.012598848, -0.020958554, 0.00712576043, 0.0296443496, 0.0497135743, 0.00350359152, 0.0213735756, -0.022944726, 0.00569912605, 0.025093941, -0.0442293696, 0.00352767762, 0.00108572433, 0.0021455097, 0.012569204, -0.00792245194, -0.000854590966, 0.0160820596, -0.00818184, -0.00559166539, -0.00559907639, -0.0201878, 0.000547957257, -0.00513217784, 0.0313340761, 0.0133399572, 5.4627817e-05, -0.000960662204, 0.0252125189, 0.0598222949, 0.0187648721, -0.0410574228, 0.0167787019, -0.00941949151, 0.026220426, 0.0108572431, -0.0308004785, 0.0292145051, -0.0567096397, 0.0117984507, -0.0309783444, 0.0420949757, 0.0288439523, -0.0343578, 0.0143700978, -0.0442293696, -0.0255089626, 0.0518183224, 0.0058139977, 0.0159338377, 0.00568059832, -0.00112185336, 0.0716207474, 0.00821148418, 0.0200840458, 0.0366404168, -0.0310079884, -0.0117021063, 0.0406720452, -0.0172826555, -0.0296888147, 0.0331127383, 0.0153261283, 0.0222777277, 0.0180237647, 0.00729251, -0.00123116688, -0.0349210426, -0.00290699885, -0.0401384495, 0.00984933507, -0.00456893537, -0.00809290726, 0.013621578, 0.00683672773, 0.0135252345, -0.0252421629, -0.00622901879, -0.0137179224, 0.0468677171, 0.0178458989, 0.0152520174, -0.0268133134, 0.0202619117, 0.0242490768, 0.00898964889, 0.00775199709, 0.0127396593, -0.0236710124, 0.0218330622, 0.00259202765, -0.0366997048, 0.0128508257, 0.0560871065, -0.0231374148, -0.0126581369, -0.0227965042, -0.00634759618, 0.00929350313, -0.0338834897, -0.00285882689, 0.0295405928, 0.00752225332, 0.0160968807, -0.00398345944, 0.0142811649, 0.00146554247, -0.0160820596, 0.025093941, -0.00855239481, -0.0293775499, 0.0221443288, -0.0260425601, 0.0368182808, -0.0256127175, -0.0142589314, 0.0121912388, 0.0561167523, -0.0158745497, 0.00137290393, 0.0246344544, 0.0481127799, 0.0085820388, 0.00947878, -0.020588, -0.00801879633, -0.0166304801, -0.0493578427, 0.00861909427, -0.00228076219, 0.000915732468, 0.0143404538, -0.0233597476, 0.018853806, -0.0298518594, -0.0226631053, -0.0225741714, -0.0115835294, 0.0052322275, -0.00453188, -0.00344245, -0.0103384666, 0.0316008776, -0.0437254161, 0.0279842652, 0.00439106906, -0.0137920333, -0.0277915765, 0.01356229, -0.0220553949, 0.0538637824, -0.0268429574, 0.0312451441, -0.00758524798, -0.000141158045, -0.015637394, -0.0264724027, 0.0421246216, -0.0208251551, -0.0455040745, 0.0522629879, 0.00532486616, -0.0348024666, -0.00216033193, 0.00843381695, 0.0205731783, -0.00406498136, 0.0336463377, -0.000157717193, -0.00941949151, -0.0200544018, 0.0288291294, -0.0329348706, 0.0216996633, 0.00186296203, -0.0140217766, -0.0300593693, 0.0168528128, 0.00315527036, -0.00208251551, 0.0152075514, -0.0298815034, 0.017697677, 0.00461710757, 0.0325791389, 0.0354249962, 0.0352471322, -0.00685525546, -0.0126062594, 0.0132436128, -0.00266058021, -0.0339131355, 0.0213142876, -0.0332906023, -0.0174753442, -0.0593776293, -0.00486908434, 0.0388933867, 0.018720407, -0.0233004577, 0.0158449039, 0.0347135328, -0.0254644956, 0.0338834897, 0.00582882, 0.0476977564, 0.00370369083, -0.0226482823, -0.0245455205, -0.0225000605, -0.00410203682, 0.0185277183, 0.00172122498, -0.00824854, -0.0152075514, -0.0245455205, -0.0184980743, 0.0202470906, 0.0154002393, -0.00838193949, -0.039693784, 0.00268651918, -0.00871543866, 0.0270801131, -0.00287550176, -0.0228409711, -0.0184684303, -0.00752595905, -0.00816701818, -0.0106793763, 0.00847087242, 0.00280139106, -0.00323679228, 0.00778164156, -0.0130212801, -0.00518035, 0.0353657082, -0.0184239633, 0.0277767554, -0.0492096208, 0.00707388297, 0.0200840458, 0.0690713301, 0.0293923728, 0.00448000245, -0.0030478097, -0.0137698, -0.0276433546, -0.00498025073, 0.0369072147, -0.00655510649, 0.0275247786, 0.0372333, -0.0187352281, 0.00588440336, 0.00695901085, -0.0370257907, -0.0175346322, 0.00512106111, 0.0146739529, 0.0158004388, -0.0523519218, 2.89061354e-05, -0.00641059037, -0.00541750481, -0.00364810764, -0.00754448678, 0.019876536, -0.00973816868, -0.0114501296, 0.0255534295, -0.0116057629, -0.0018129372, 0.00347765279, -0.0139550772, -0.0273765568, -0.0316305198, 0.00554719893, -0.0369072147, -0.00545456028, -0.0139921326, -0.0215069745, 0.0105682099, -0.0103014112, -0.0248567872, -0.03551393, -0.0173271224, 0.015155673, -0.0182905626, 0.0168379899, 0.0174456984, 0.0109387645, 0.00941208098, 0.0350989103, 0.0276581775, -0.0242046118, 0.00697383285, -0.00199358235, 0.0239674561, -0.0314526558, -0.0116428183, 0.0129842246, 0.0164377913, -0.0241897888, 0.0031182149, -0.023004014, 0.00795209687, 0.00103569939, 0.0110721644, -0.0172233675, 0.0129175251, -0.0527965836, 0.0140662435, 0.013050925, -0.00752966478, -0.00319603132, 0.000652638846, -0.0171937216, 0.0273913778, 0.0316305198, 0.00696642185, 0.00370739633, -0.00588440336, -0.0170899667, 0.0210623108, -0.0161561705, 0.00977522414, -0.00337204477, -0.00408350909, 0.00122746127, -0.00362772727, 0.0297629256, 0.0174160544, 0.00809290726, -0.0210178439, -0.00551384874, 0.0221146848, -0.0337352678, 0.0036925741, 0.0169121, -0.0172085445, 0.0012598848, -0.0263093598, 0.00716281589, -0.00122097658, 0.0436068363, -0.0280287322, 0.00948619191, 0.0174605213, 0.0230929479, -0.00212698197, 0.000487278972, 0.0300149024, -0.0332313143, -0.0113019077, -0.0122653497, -0.0352471322, -0.0314526558, -0.00290144072, -0.00338871963, 0.0197876021, -0.000629016, 0.0180682298, -0.00656251796, -0.000137915704, 0.00626978, 0.0089081265, 0.00726657081, -0.022989193, 0.0249308981, 0.038656231, 0.0144145647, 0.0116057629, -0.00692936638, 0.0137327444, 0.0183350295, 0.0325494967, 0.0103310551, -0.0207806882, -0.0309783444, 0.00770753063, 0.0273913778, 0.00956030283, -0.0176532101, -0.00582511444, 0.0122282943, 0.0267688464, -0.00134603877, 0.00581770344, 0.0123765152, 0.0248419642, 0.0128211807, 0.0151927285, 0.0177717879, 0.0331127383, -0.00602521375, 0.0171047896, -0.00662180642, -0.0453262106, -0.00252532796, 0.016763879, 0.00440589152, 0.0109980535, 0.0159931257, 0.00228261482, -0.0124432156, 0.0171937216, -0.00708499923, 0.00513958884, 0.000339520426, 0.0141848214, -0.0155929271, 0.0642689466, -0.00272357464, -0.0101680113, -0.0132287908, 0.0352471322, 0.0168379899, 0.0176828541, -0.00567689259, 0.0131176244, 0.0273320898, 0.0203063786, 0.00491725653, 0.0101828342, 0.00225111772, -0.0184239633, -0.00361661054, 0.0689527541, -0.025093941, -0.00352582475, 0.0321048312, 0.0230336599, 0.0361364596, -0.0218034182, 0.0222777277, 0.03346847, -0.00100605504, 0.0228261482, 0.0149629852, -0.0136289895, 0.0259388052, 0.00800397433, -0.0115983514, -0.0192984715, -0.0471345149, -0.00579176471, 0.00442071352, 0.0331423804, 0.000119619581, 0.0161858145, 0.0257164724, 0.0107312547, 0.0151186176, -0.0264724027, 0.00296258205, -0.0122727603, 0.0201285128, 0.00883401558, 0.0194466934, 0.0281176642, 0.0180682298, 0.0269170683, 0.006788556, -0.0154891722, -0.00303298747, 0.0215514414, -0.0337945595, -0.026116671, 0.0114649516, -0.00723692682, -0.0249753632, 0.0272876229, 0.0115909399, 0.0055360822, 7.39299367e-06, 0.032371629, -0.0275099557, -0.0121393604, 0.0201878, 0.0259684492, -0.0106941992, 0.0544566698, 0.00348876929, 0.00757413125, 0.00573618151, 0.00946395844, -0.0384783633, 0.014103299, 0.0145776086, 0.0103681106, -0.0104941, -0.0395752043, -0.0128360027, -0.00971593522, 0.0396048501, -0.0291255731, -0.0255386066, 0.00573988724, 0.0160375927, 0.030355813, 0.0418281779, -0.0102124782, -0.0180237647, 0.0180978756, -0.00403904263, -0.00100512872, 0.0123839267, -0.00417244202, -0.0262945369, -0.0435475484, 0.0163636804, 0.0209882, -0.00179996784, -0.0414428, 0.0202915575, -0.0210178439, -0.00934538059, -0.0398420058, 0.0137031, -0.00546938227, 0.0253162738, -0.0249308981, -0.00177866092, -0.0111610973, -0.00418355875, -0.00369998533, 0.0255386066, -0.006781145, 0.0179348309, 0.03551393, -0.034091, -0.00786316395, 0.0212401766, 0.0377372578, -0.043962568, -0.00229187869, 0.0195208043, -0.0401680917, 0.00326458388, -0.00380559335, 0.0251828749, -0.0327273607, -0.0215959083, 0.0247233864, -0.0139995441, -0.00881178305, 0.00345541933, 0.0254052076, -0.0255089626, -0.00535080489, -0.00605856394, 0.0192391817, 0.0163043924, 0.0169417448, -9.31596805e-05, 0.0310079884, 0.000400661898, 0.0108942986, 0.0153261283, -0.00621419679, 0.00565095386, 0.0151334405, 0.0128211807, -0.0103162332, -0.0407609791, 0.0245010536, 0.00115335046, -0.0410574228, 0.00831524, -0.0201285128, 0.0199951138, 0.02712458, 0.00807808526, -0.0111314533, -0.00427249167, -0.011442719, -0.027243156, -0.00369627983, -0.0389823206, -0.00104866887, -0.0153557723, -0.0224111285, -0.00631424645, -0.00807808526, 0.0126210814, -0.0237747673, 0.00750743132, 0.00990121253, -0.0193281155, 0.000162349126, 0.0392194726, -0.0460673198, -0.0260129161, 0.0222036168, 0.00270134141, 0.0168676339, 0.0312155, 0.0183794964, 0.00835970603, 0.0136438115, -0.0468677171, 0.0355435759, -0.0176828541, 0.00972334668, 0.036670059, 0.00610303041, -0.0227965042, 0.0179200098, 0.00247345027, 0.00955289137, 0.00039348242, 0.0138439108, 0.0173419435, 0.0308894124, -0.0163933244, 0.0124728596, 0.0348913968, 0.0195652694, 0.0342688672, 0.0036740466, 0.0180978756, 0.0247382093, -0.015140851, 0.0325791389, 0.00658104522, 0.0203212015, 0.0239081681, -0.0158152599, -0.00967146922, -0.00393158197, -0.00538044935, -0.00452446891, 0.0234635025, -0.0064995233, -0.014132943, -0.0282214209, -0.0320751853, -0.0326087847, -0.0107683102, 0.0103977555, 0.0117910402, -0.00131083606, 0.0229150821, -0.00358140795, -0.0285326857, 0.0149333412, -0.0162006374, -0.0321641192, 0.0333202481, -0.0285326857, -0.0507511236, 0.00579547, 0.00112463243, 0.0285771526, -0.0656918734, -0.0116798738, 0.0182905626, -0.00376483239, -0.0131769134, -0.0126284929, 0.00411315355, -0.0438736379, -0.0144293867, 0.0172085445, -0.013577112, -0.017786609, 0.0159634817, 0.0175642762, 0.00286809076, -0.00431695813, 0.0231077708, -0.0384190753, 0.00727398228, -0.017727321, -0.00963441376, 0.0251384079, 0.00334795867, -0.00634759618, 0.0245899875, 0.0205731783, -0.0190020278, -0.00614008587, 0.0174456984, -0.00455040764, -0.0064772903, 0.0334981158, 0.00710352696, -0.0119392611, -0.0253162738, -0.0111981528, 0.0190020278, 0.0372629464, 0.0148444073, -0.00652916776, -0.0255682506, -0.0249308981, -0.0191798937, 0.01990618, 0.00567318732, 0.0186018292, 0.0583104342, -0.0250494741, -0.0347728208, -0.0315119438, -0.00542121, 0.0233004577, -0.0282807089, 0.0327866487, 0.0498617962, 0.00727768755, -0.000591497403, 0.0046652793, 0.0152816614, -0.0211364198, -0.0482906438, 0.00988639053, -0.0348913968, -0.00157856161, -0.000909710943, 0.0154002393, 0.036492195, 0.00662551215, 0.0144664422, -0.0304447468, -0.0252421629, 0.0237747673, -0.00130898331, -0.00331275607, -0.00310895103, -0.0215662643, 0.00814478472, 0.0241453219, -0.00422432, 0.00800397433, 0.0274951328, 0.0203656685, -0.00928609259, -0.000559537089, 0.000515533728, 0.00303298747, 0.0566207059, -0.0129619911, 0.015681861, 0.0203656685, -0.00464675156, -0.0380336978, 0.00662180642, -0.0295702387, -0.0107534872, -0.00501730619, 0.0199210029, 0.0144590307, 0.0303113461, 0.00326458388, -0.0414724424, -0.0233449247, -0.00634018518, 0.0101087233, 0.0113241412, -0.0103236446, 0.00812255125, -0.0442293696, -0.00883401558, 0.0230336599, 0.0328162946, 0.00993826799, -0.0243380107, -0.0190168489, -0.0311858542, -0.00591404783, -0.00715169916, 0.0122875823, 0.0376483239, 0.00966405775, -0.00842640642, 0.00940466952, 0.00354805798, 0.00411315355, -0.0347728208, -0.00447629672, 0.0103607, -0.00585105317, 0.0347431786, 0.00708870497, 0.016734235, 0.0100939, 0.00240489771, 0.0052174055, 0.0437847041, -0.00305336784, 0.0273172669, -0.0509289913, 0.00612155814, 0.00933055859, -0.00357399671, -0.0109980535, 0.0155188162, 0.018913094, 0.018824162, 0.00789280795, -0.0135326451, -0.014088477, -0.0112574417, -0.00531745516, -0.00798915233, -0.0154891722, 0.000331646152, -0.0024215728, 0.00539156608, -0.00357770245, 0.0220702179, 0.00303298747, -0.0015850463, -0.0183943193, 0.00266428594, 0.0249605421, -0.01199855, -0.0151779065, -0.00991603453, -0.0163043924, 0.00165823079, -0.0107905427, 0.0154743502, -0.00537674362, 0.00770753063, -0.025064297, 0.0191206057, 0.0106274989, -0.00884883851, -0.00519517204, 0.0055509042, -0.0118058622, -0.00795209687, 0.00549902674, -0.02917004, 0.00610673567, -0.015652217, 0.0123913381, -0.0226186384, 0.00787057448, -0.00782610849, 0.0070183, 0.0136956889, -0.0224407725, 0.0103458781, -0.0111166304, 0.00167490577, -0.00925644767, 0.0207362212, 0.0180978756, 0.00983451307, -0.0114797745, 0.00417614775, 0.00936020352, 0.00789280795, -0.0103236446, -0.00964182429, -0.0166601241, 0.00110425195, 0.00529151643, 0.0145627866, -0.00347765279, -0.0280139092, -0.0216700193, -0.00430213613, 0.0565614179, 0.0110795749, -0.00917492621, -0.00512847258, -0.0128434142, -0.0346838869, 0.00948619191, 0.0211067759, 0.0409981348, -0.0239526331, 0.0117169293, 0.00836711749, 0.00898964889, -0.0196097363, -0.0193132926, -0.0138957882, 0.00690713339, -0.00763341971, 0.0318973176, -0.0140366, -0.032253053, 0.0208548, 0.00148129102, -0.00686266692, 0.0172085445, 0.010960998, -0.0287698414, -0.0228261482, -0.0383005, -6.71050802e-05, 0.0426285751, 0.0214328635, 0.0150889736, 0.00178236642, -0.0279249772, 0.0364032611, -0.00570653705, 0.00969370175, -0.0276433546, -0.00944172498, -0.015667038, 0.000237386383, 0.00411685882, 0.0120504275, 0.0110647529, -0.0201136898, -0.0215366203, -0.0197579581, -0.0102050668, 0.0273024458, -0.0431325287, 0.00923421513, -0.0297481045, -0.000754078152, -0.00267725531, 0.0100864898, -0.0024178673, -0.012013372, 0.0267095584, -0.0301334802, 0.00202322681, -1.13265151e-05, -0.00542491581, 0.00860427227, -0.0245899875, 0.0213142876, -0.00997532345, 0.0061882576, -0.0254052076, 0.0345653109, 0.026146315, 0.0316898078, 0.0145034976, 0.00297740428, -0.0228261482, 0.00979004614, -0.0220405739, 0.0166453011, 0.0145776086, -0.0279249772, -0.0284141079, 0.0152520174, -0.0122801717, 0.00819666218, -0.021862708, 0.0164970793, -0.0216551963, -0.00515441131, -0.0126729589, -0.0130731575, -0.0110573424, -0.0243380107, -0.0328755826, -0.0139476657, -0.00251791696, -0.0209140889, 0.0283399969, -0.0146739529, -0.00759636424, -0.0160968807, 0.0123098157, 0.00303484, 0.0148221748, -0.00939725898, 0.00472827349, 0.00691825, 0.0199506469, 0.025123585, -0.0318973176, 0.0127989473, 0.0152371954, -0.019817248, 0.00270689954, 0.0153557723, 0.0309487, -0.0144442087, 0.00517293904, 0.00467269029, 0.00482832314, 0.0121319499, -0.0341502912, 0.00254015019, 0.0100420229, -0.012524737, 0.0206917562, -0.0145183196, -0.0242490768, 0.0310376324, 0.0238192342, 0.00749260932, -0.0312747881, -0.0010570063, -0.00471345149, 0.0018129372, -0.0074333204, -0.00852275, -0.0117391618, 0.0181571636, -0.00858945, 0.0192391817, 0.00318306196, 0.00278471597, -0.0116279954, -0.00665145088, 0.0139180217, 0.0510475673, -0.00195096876, -0.00503212819, -0.00149333407, 0.0138957882, -0.02610185, 0.00670332834, 0.027673, 0.00764083071, 0.0153854173, -0.0280880202, 0.00191576604, -0.00664774515, -0.0315712318, -0.00384635432, 0.0122727603, 0.0227965042, 0.0118651502, -0.0109684095, 0.00855980534, -0.012013372, 0.0112574417, -0.0326384269, -0.00726286555, -0.00294776, 0.00132287911, -0.00126266398, 0.0372036584, -0.00645876257, 0.0325494967, -0.00517664431, -0.00338871963, 0.0259388052, 0.0273765568, -0.00157022406, -0.0147777079, 0.0106423208, -0.0152668394, 0.0114945965, 0.00449852971, -0.000717949064, 0.000784185657, -0.0181868076, 0.0226482823, 0.00664774515, -0.0201581568, 0.0207510442, 0.0346838869, -0.00572135951, -0.00800397433, 0.00301445974, 0.00378150726, -0.0148962857, 0.000861538865, 0.0237451233, -0.00488020107, 0.0155632831, 0.021981284, -0.0141107105, 0.00270689954, 0.029303439, -0.0148888743, -0.0116872843, 0.0192391817, -0.0117762173, 0.0166601241, -0.020899266, 0.00565465959, 0.0223073717, -0.00686266692, -0.011531652, 0.00990121253, -0.0234190356, -0.0170603227, 0.00786316395, -0.0222332608, 0.0107757207, -0.0317194536, 0.00618455233, -0.00878213812, 0.00904893782, -0.0305040348, 0.0025735, 7.38213785e-05, 0.0248567872, 0.00105144805, 0.0340020694, 0.0452965647, -0.00149055489, 0.0117688067, 0.00413538655, 0.0131324464, -0.0233745687, -0.0267984923, 0.0177124981, -0.00752966478, 0.0046578683, 0.00541750481, 0.0256127175, 0.00901929289, -0.000150074513, 0.0184536073, -0.0316898078, -0.0205731783, 0.00858945, 0.017756965, 0.0204101335, 0.0212401766, -0.0325791389, 0.0159931257, 0.0159338377, -0.00482461788, -0.00539897708, 0.00362402154, -0.00823371764, 0.000403441052, -0.00551384874, -0.0236265454, 0.00375556853, -0.0139624886, -0.0159634817, 0.0124654491, -0.00126359041, -0.0206769332, -0.0133547792, -0.0150296846, 0.0133918347, -0.0166304801, -0.01888345, 0.0225445274, -0.0235672574, 0.0220702179, -0.0143997427, -0.00728139328, -0.00798915233, -0.0348617546, 0.013050925, -0.00897482689, -0.00394640397, -0.00675891154, 0.0133621907, 0.000410157372, 0.00456893537, -0.00421320321, 0.00149703957, 0.0130064581, 0.00239192834, -0.0071146437, 0.00672926707, -0.00583623117, 0.0227372162, 0.0133325458, -0.0126655484, -0.00149611325, -0.0320455395, 0.00118392124, 0.00380929885, 0.0121541834, -0.0127915367, -0.0192391817, -0.00791504141, 0.0316008776, -0.0170455, 0.0205138903, -0.00958994683, -0.0222036168, -0.0104125775, -0.019817248, 0.00795950741, 0.0165711902, -0.0106126769, 0.0133473678, -0.00719246035, -0.027243156, -0.0158597268, -0.00026517795, -0.014132943, -0.0598815866, -0.00499877846, 0.00944913644, -0.0183498524, -0.0181275196, -0.0197431371, 0.0126433149, -0.0113982521, 0.0144664422, 0.00309783453, -0.0179941189, 0.0293182619, -0.00136456639, 0.0336463377, 0.00119411142, -0.0181719866, -0.00394640397, 0.0161265265, -0.0118132727, -0.0069516, -0.0236413684, 0.0180830527, 0.000292043143, -0.011983728, -0.0118503282, -0.00993826799, -0.0106126769, -0.00780387502, -0.00458375737, 0.00966405775, 0.0349803306, 0.00869320519, 0.0157856159, 0.0304447468, 0.0139032, -0.00299778488, -0.00296628755, 0.00529892743, -0.00319973682, 0.0193132926, 0.0242342558, -0.00214736257, 0.00948619191, -0.0267836694, -0.0247085653, -0.00193429377, -0.0155484611, 0.00827818457, -0.0241453219, 0.0141551765, 0.00285512139, 0.00406498136, 0.0088933045, 0.00291811558, 0.0362846814, 0.00665886188, 0.00693677785, -0.00377965439, -0.00796691887, -0.0110202869, -0.0207510442, -0.0191206057, 0.00988639053, 0.0155188162, -0.00660698442, -0.0158004388, 0.00620678533, 0.0282807089, 0.0163933244, 0.017697677, 0.0285919737, -0.00476532895, -0.00262723048, -0.00193429377, -0.0215514414, 0.00768529763, -0.0344763771, -0.00275507174, 0.0191798937, -0.00634389045, 0.00329422834, 0.00881919358, 0.0454151407, 0.00290514622, 0.00888589397, -0.00437624706, -0.00180459977, -0.018720407, -0.00848569442, 0.00249938923, -0.0173715893, -0.0251087639, 0.00779646356, 0.00899705943, 0.00499877846, 0.0514329448, -0.00891553797, 0.00402422, 0.00494319526, -0.0117095178, -0.0348024666, -0.0195504483, -0.00938984752, -0.014132943, 0.0181126967, 0.0021418042, -0.0024326893, 0.0212698206, 0.00113019079, 0.000508585887, 0.00501360046, 0.00893036, -0.00471345149, -0.00529892743, -0.0216848403, 0.0182016306, -0.00569171505, 0.0276433546, -0.0237006564, -0.00525075523, 0.0210030209, -0.00313303713, -0.00446518, -0.00955289137, 0.015140851, 0.0164526142, 0.00505806692, 0.00938984752, -0.000834210485, -0.00489502307, -0.00223814836, 0.0042984304, 0.00423914194, -0.0138439108, -0.00781128602, -0.000206468263, 0.00691825, -0.00256053056, 0.0151334405, -0.00261981925, -0.000181455835, -0.00487649534, 0.0127026038, -0.00956030283, 0.00881919358, 0.0139032, -0.00977522414, 0.00122746127, 0.000649396505, -0.0197283141, -0.0157856159, -0.0204842445, 0.0177717879, -0.00500618946, -0.0139698992, -0.0108275982, 0.000944913598, -0.0172233675, -0.00480238441, -0.00163877662, 0.0153261283, 0.0185277183, 0.0186314732, 0.00195837975, -0.0143923312, 0.00563983759, 0.00233819801, 0.00389823178, 0.0123172272, 0.00092221715, -0.00690713339, -0.00644394057, 0.0218478851, 0.0092193922, -0.012554382, 0.0102791777, -0.0234190356, -0.00156188663, 0.00524705, 0.00107738678, -0.0168231688, -0.0112277968, 0.0118132727, 0.0037129547, 0.00338501413, 0.0115390625, 0.0170603227, 0.0204694234, -0.00185184542, 0.00164155581, 0.00351285539, 0.029362727, 0.00801879633, -0.00526187196, -0.0168379899, -0.00691083865, -0.00996050145, 0.0108424202, 0.0178607199, 0.00239192834, -0.0103532886, -0.0379447676, 0.00606597494, -0.00100420229, -0.00654769549, -0.00179626222, 0.0153261283, 0.000184119199, 0.00790763, 0.00752595905, -0.00815960672, 0.00780387502, -0.00190650218, -0.0146887749, -0.00157856161, -0.0100864898, 0.000120545963, 0.0181719866, -0.0238785222, -0.00360549404, -0.0277322885, -0.0175939202, -0.0162599254, 0.00860427227, 0.00796691887, -0.0246048104, -0.0229150821, -0.0240563899, -0.000363143277, 0.00535451062, -0.0267836694, 0.0378854796, 0.00923421513, -0.00609932467, 0.00917492621, 0.00851533934, -0.0130212801, 0.0154002393, -0.0027402495, 0.00637724064, 0.000194656837, 0.00595110282, 0.00936020352, 0.0258646943, 0.00295517105, 0.00715540489, -0.0210623108, -0.0197727811, -0.00907858182, -0.011546474, 0.0245010536, 0.0107460767, 0.0110795749, 0.0408795588, 0.00303854584, -0.00875249412, 0.0174901653, 0.00203434355, 0.0274062, -0.00109035615, 0.00899705943, 0.0176087432, -0.00237710611, 0.0141774099, 0.00668109534, 0.0285919737, -0.0218034182, -0.0070924107, -0.000560463464, -0.00232152315, -0.0268577803, 0.0120800724, -0.0116354069, 0.00238822284, -0.01560775, -0.0107386652, 0.00287920749, 0.00137938862, -0.0122579383, -0.00706276624, 0.0106719658, -0.000896741578, -0.00319047295, -0.0157263279, -0.00407239236, 0.0144442087, -0.0302817021, -0.00857462827, 0.0138735557, -0.0320751853, 0.014644308, 0.000781406532, 0.0130583355, -0.0131472684, 0.0171640776, 0.00494319526, -0.000430537853, 0.0107831322, 0.0101087233, 0.00655881222, -0.00266243308, 0.00784834102, 0.0179051869, 0.00263278885, 0.00816701818, 0.00215847907, -0.00873767212, -0.012495093, 2.80810727e-05, 0.0195059814, 0.00113019079, -0.00659586769, -0.000828189, 0.0196393803, -0.0106052654, 0.000681356818, -0.0130435135, -0.0137772113, -0.00610303041, 0.018838983, -0.0153409503, 0.00140810653, 0.00439848, 0.0138365, -0.0126655484, -0.0108868871, 0.000651249313, -0.00676261727, -0.0235079695, 0.015652217, 0.00725916, -0.00732956547, 0.0146368975, -0.0167194121, -0.00437624706, 0.0163933244, -0.0182016306, -0.0256720055, -0.00481720688, 0.00690342765, -0.00282918266, 0.0246789213, -0.00472086249, -0.00895259343, 0.010990642, -0.00704053277, 0.000116956224, -0.0484092236, 0.0123765152, 0.0140514215, -0.000519239285, 0.00731844874, 0.0182757415, 0.00994567946, 0.0377669, -0.00351285539, -0.0129916361, 0.00784093048, -0.000711001165, -0.00276063, -0.0222629067, -0.01151683, -0.00684784446, -0.0289773513, 0.00287735462, -0.0269615352, -0.000608635542, -0.0168231688, 0.0192243606, -0.00449111871, 0.0048987288, -0.00932314806, 0.00565095386, 0.0190168489, -0.0126655484, 0.0177124981, -0.00639206264, -0.00948619191, 0.0329645164, -0.00140718021, -0.0275544226, -0.0149555737, 0.0152520174, -0.00586217, -0.00211586547, 0.000252671744, -0.019935824, 0.0183498524, -0.0157559719, -0.0073629152, -0.00644764584, -0.00472086249, -0.0242490768, -0.00396122597, -0.00285326852, 0.0124506261, -0.0216996633, 0.0208251551, -0.013110213, 0.0171789, 0.00430213613, -0.00750002032, -0.0203063786, 0.00469121803, 0.0112648522, -0.0170455, 7.00000382e-05, -0.0143775092, -0.021996107, 0.0163933244, -0.0136660449, -0.021981284, -9.90798708e-06, 0.0134140681, -0.00881178305, 0.0244714096, -0.000139305281, -0.0221591499, 0.02195164, 0.0245010536, -0.0126507254, -0.00463563483, -0.0170899667, -0.00567689259, 0.02297437, -0.00652916776, -0.0121023059, 0.0201136898, 0.0118947951, 0.00918974821, 0.00107831322, -0.0131250359, 0.0179051869, -0.00194170489, 0.00654399, -0.00606226921, -0.00722951535, 0.0052655777, 0.00601409748, 0.00914528128, -0.00758154225, -0.00719987135, 0.00779646356, -0.0147258304, 0.0116576403, -0.00289032399, -0.0161117036, 0.00581029244, 0.00058501272, -0.00898964889, -0.0199802909, 0.0013821678, 0.00405386463, 0.00608079694, -0.00684784446, 0.00390564301, 0.00909340382, -0.0171492565, -0.0123468712, -0.00685525546, -0.00342762773, 0.00922680367, 0.00539897708, -0.0194615144, 0.017786609, -0.000795302272, 0.0312747881, -0.00301260687, 0.00056972733, 0.00809290726, 0.0189279169, -0.0088933045, 0.0213587526, 0.00393528724, 0.00174345821, 0.0127915367, -0.00140440103, 0.00764083071, -0.00436883606, -0.0244714096, -0.00317379809, -0.00731474301, 0.00423543621, 0.0122134713, -0.00570653705, 0.00273469114, 0.012554382, 0.00987897906, 0.00735920947, -0.00834488403, -0.0021733013, -0.00767047517, -0.0169121, -0.0166601241, 0.0170010347, -0.0175049882, -0.0037203657, -0.018838983, 0.013050925, -0.0241897888, -0.0161413476, 0.00604003621, -0.00778905256, 0.0204694234, -0.00269022468, -0.0162302814, -0.0247678533, 0.00162395451, -0.0220257509, -0.0135326451, -0.0255089626, -0.0278508663, -0.017756965, 0.000250819, 0.00434289733, 0.00526187196, 0.0151927285, 0.0106793763, 0.015711505, 0.012057839, 0.00614008587, -0.0200988688, -0.0127767147, -0.00104588969, -0.00493578427, -0.0126877809, 0.00165730435, 0.00372407143, 0.0129545806, -0.015696682, 0.00886366051, -0.00356102735, 0.00237340061, 0.0251532309, 0.0135326451, -0.00150537712, -0.0374408141, 0.00792986341, 0.00996050145, 0.0233301017, 0.00735920947, 0.00756672025, -0.0061178524, 0.00614379114, -0.0214921534, -0.0129323471, -0.0243528318, 0.00447259098, 0.016793523, -0.00725545455, 0.0108350096, -0.0165267251, 0.0118725616, -0.0198913589, -0.0143997427, -0.0139698992, -0.000305244146, 0.00971593522, 0.0126210814, 0.0101087233, 0.000556294748, 0.00904152635, 0.00260314438, -0.0140069546, -0.0105533879, 0.0290514622, 0.0217885971, 0.00013513655, 0.0313044339, -0.00849310588, -0.00214365707, 0.00624384079, 0.00841899496, -0.00229558419, -0.0180682298, -0.000746203819, -0.00699236058, 0.0176828541, 0.0124580376, -0.0163488593, 0.000826799427, -0.0251828749, -0.00282918266, -0.00418355875, 0.0121912388, 0.00124969461, 0.00228632032, 0.0106200883, -0.0190909598, 0.0295405928, 0.0141255325, -0.0194911603, -0.00625495752, -0.0222629067, 0.012584026, -0.0100939, 0.010449633, -0.0138290888, 0.00462822383, -0.00137660943, -0.0086635612, -0.0351285525, -0.0308004785, 0.0258943383, -0.00380929885, -0.0138142668, 0.0393973403, 0.00681820046, 0.0171789, 0.00334795867, 0.00231596478, -0.0113463746, -0.0159190148, -0.012524737, -0.0215217974, -0.0281621311, -0.00819666218, -0.00795950741, -0.0147035969, -0.00118299481, -0.00148777571, 0.00401680917, 0.0123542827, -0.00455411291, 5.87386567e-05, -0.000977337128, -0.0127989473, 0.0109535865, 0.0372036584, 0.00959735829, -0.000872192322, 0.000530355901, 0.0106126769, -0.0129175251, 0.0172233675, -0.00795950741, 0.0198024251, 0.0098271016, 0.00407980336, 0.0405831151, -0.0242639, 0.00786316395, 0.0128508257, -0.0210623108, 0.00542491581, -0.0102273, -0.0253014509, 0.00157856161, -0.01888345, 0.0127915367, 0.00158134068, 0.0133992461, 0.0294813048, -0.0110276975, 0.0120504275, 0.00873767212, 0.0184980743, -0.0199506469, 0.00376297953, 0.00360549404, -0.0172974784, -0.0124876816, 0.00716652116, -0.00739255967, -0.00355546898, -0.035632506, 0.0259239823, -0.00117002544, 3.60060153e-06, 0.00413168129, -0.00378891826, -0.011472363, -0.0380633436, -0.00776681956, 0.0260129161, -0.00317935646, 0.0175791, 0.00916751474, 0.0106423208, 0.0117021063, 0.0058399369, 0.000374723109, 0.0290811062, 0.00372221856, -0.0130731575, -0.0105607994, 0.0158597268, -0.0140069546, -0.0181571636, -0.00376668503, 0.0220405739, 0.00775199709, -0.0111092199, -0.00513958884, -0.00804844, -0.00468380703, 0.0095010139, -0.00939725898, 0.00161283789, 0.00124784186, 0.00810031872, 0.0341799334, 0.00281065493, 0.00974558, 0.0137327444, -0.0167194121, 0.0043614246, -0.0143775092, -0.0095010139, -0.0161265265, -0.00742220366, -0.0164822582, -0.00601409748, 0.0089081265, 0.000793912739, 0.0150296846, 0.00994567946, 0.0232708137, -0.00857462827, 0.00292552658, -0.00851533934, 0.0407016911, -0.0236265454, 0.0106200883, 0.00117280451, 0.00167212659, 0.0100272009, -0.0101235453, 0.00762600871, 0.00499877846, -0.0170751456, -0.0149555737, 0.00934538059, 0.00519517204, -0.00936761405, 0.000988453743, 0.01990618, 0.00103847857, -0.0142441094, -0.00302742911, -0.0153409503, 0.00129879301, 0.0170751456, -0.0119466726, 0.000192456675, -0.0295257717, -0.020839978, -0.00361105218, -0.00341836386, 0.0214773305, -0.0290366393, 0.0194466934, 0.00542121, 0.01356229, -0.00503212819, 0.0118429177, -0.00549532101, 0.0146813635, -0.00664033415, -0.0037129547, 0.00999755692, -0.0239674561, -0.0157856159, -0.00304225134, 0.00922680367, -0.0100568449, 0.0285326857, -0.00583623117, -0.00651805103, -0.00249568373, 0.0107238432, -0.00286067976, 0.00854498334, 0.0133103123, -0.00976781268, 0.0138439108, -0.00644764584, -0.000993085676, -0.00203990168, -0.00500248373, -0.000830505, -0.00519887777, 0.00795209687, -0.0172233675, -0.0110054649, -0.00318676746, 0.0180682298, 0.00276618823, -0.00486537861, 0.0112055643, -0.000958809396, 0.0118799731, 0.0040427479, 0.010946176, -0.00193429377, 0.00731844874, -0.0353360623, 0.0214476865, 0.0110351089, -0.00171566673, -0.0112203863, -0.011531652, 0.0341799334, 0.00107182853, -0.0191206057, -0.00339613063, 0.00124135707, 0.0163340364, -0.00232893415, 0.000619752158, 0.00884883851, 0.0144812642, 0.0021177181, -0.00812996272, 0.0209140889, -0.00138031505, 0.00495060626, -0.00971593522, -0.015652217, 0.0055286712, 0.0137772113, -0.0129027031, -0.00284956302, 0.000592887, -0.000425442733, -0.00432807487, -0.0147258304, -0.00332016707, -0.00917492621, -0.0168231688, 0.0318676755, -0.00731474301, 0.0138142668, -0.0133325458, 0.0089081265, 0.0189575609, -0.00858945, 0.0131620904, -0.00542491581, -0.0132213794, -0.0112500302, -0.00628830772, -0.0107831322, -0.00507288938, 0.0241601449, -0.0102198897, -0.0115094185, -2.31306985e-05, 0.00160172128, 0.0114797745, 0.0206176452, 0.0194318704, -0.00115427689, -0.0113241412, -0.000576212, -0.0107312547, -0.0201433357, 0.0175049882, 0.0192243606, -0.00245492253, 0.0021177181, 0.0143849207, 0.0143849207, -0.00223444286, 0.0140514215, -0.000550273224, 0.00369813247, -0.0104051661, 0.00987897906, 0.00715911, 0.0172085445, 0.0110573424, 0.0092193922, -0.00120893365, 0.000812440412, -0.0228113271, 0.0132806683, -0.013050925, -0.00365181314, -0.0337649137, -0.0117095178, 0.0225593504, -0.0200840458, 0.0122579383, -0.0144071532, -0.00670332834, 0.00835970603, -0.0105904434, -0.00708870497, -0.0130583355, -0.017756965, 0.00901188236, 0.00390934851, -0.036670059, -0.00896741543, 0.0113982521, 0.00546938227, 0.00316082872, -0.0183794964, 0.00796691887, 0.0201581568, -0.00244565867, -0.0124209821, -0.000568337739, 0.00890071597, -0.00459858, 0.0259239823, -0.00399828143, -0.01888345, 0.00462451857, -0.00565836532, 0.0148814628, -0.0122727603, 0.0349803306, 0.003661077, -0.00667368388, -0.00251976959, -0.0342095792, -0.0055360822, 0.00534709962, -0.00184165512, 0.0250198301, 0.0108498316, -0.0171492565, 0.00271801627, 0.00105052162, 0.0102495337, -0.0289328843, 0.00669221161, 0.0123024052, -0.0112796752, 0.00223814836, 0.0171047896, 0.00882660504, -0.0183053855, 0.00926385913, -0.0108127762, -0.0232708137, -0.0155039942, 0.0130361021, 0.0199951138, -0.0112129748, 0.0201136898, -0.00761118671, 0.00665886188, -0.00146924809, 0.0170899667, 0.0042910194, -0.00363328541, -0.0133177238, 0.00682931673, 0.00410203682, 0.0199210029, 0.00483202888, -0.00944913644, -0.0104570445, 0.0104051661, -0.0305929687, -0.00506177265, 0.0155039942, -0.00350729702, -0.0272579789, -0.00410574209, -0.00507659465, -0.00280880206, 0.0010570063, 0.0193874035, 0.00759636424, -0.000512754603, 0.00860427227, 0.0210474879, -0.00893036, 0.0372036584, -0.0242194328, 0.0218775291, 0.00402422, -0.00210474874, 0.00141922315, 0.00133862766, -0.0142292874, 0.0180682298, -0.00763341971, -0.00718504889, -0.00752225332, -0.0112129748, 0.0086487392, -0.0180978756, 0.00700347731, -0.00670332834, 0.010990642, 0.0129694026, 0.021862708, -0.0213735756, -0.00987897906, 0.026087027, 0.0194911603, 0.00513958884, -0.0194170494, 0.0117391618, 0.0194615144, -0.0104051661, 0.00956771336, 0.0197431371, -0.00695901085, 0.014132943, 0.0147851193, -0.0123616932, 0.0113611966, 0.019935824, -0.00783351902, 0.0251976959, -0.0113463746, -0.015622572, 0.00512476685, 0.0241305, -0.00100142311, 0.00590293109, -0.00704053277, -0.00697753858, -0.00748519832, 0.0216403753, -0.0182609186, -0.00692936638, 0.0110351089, 0.0191057827, -0.00450594118, -0.00329608098, 0.0285326857, -0.0129545806, 0.00987156853, -0.00147665909, -0.0046504573, -0.00927127, -0.00493948953, -0.00176291238, -0.0256275404, 0.0308597665, -0.0159486588, -0.00636241818, -0.00847087242, 0.0049209618, 0.0121023059, 0.00233449251, -0.0163488593, 0.0321344733, -0.00463563483, -0.00545085454, 0.0269911792, 0.00546938227, -0.0113241412, 0.017756965, 0.00968629122, -0.010419989, 0.0224407725, 0.0215366203, -0.000947229564, -0.00896741543, 0.00118392124, 0.0135400565, -0.00514329458, 0.0124876816, -0.00417244202, 0.00390934851, 0.0150815621, 0.0042984304, 0.0252421629, -0.0233893916, -0.0160524156, 0.0205435343, -0.0652175695, 0.00643282384, -0.00158226711, 0.0174605213, -0.0120800724, 0.0222925507, 0.018913094, -0.0232115258, 0.0308894124, 0.0194170494, 0.00415020902, 0.0172974784, 0.0085968608, 0.0161858145, -0.0155484611, 0.000346699933, 0.0058473479, -0.0146813635, -0.0102791777, -0.00786316395, -0.00566577632, -0.00328496448, 0.00819666218, -0.00229743705, 0.00945654698, 0.00818925165, 0.00574729824, -0.0150815621, -0.00864132773, -0.0102421222, 0.00821148418, 0.0064217071, 0.0223518386, -0.0101976562, 0.00694789412, -0.000357816549, 0.00731844874, -0.00939725898, -0.00986415707, -0.0108127762, -0.00137846218, 0.00561019313, 0.00372592406, -0.0179496538, -0.0110943979, -2.85732149e-05, -0.000634111173, -0.0158597268, -0.00256423629, 0.00239378121, -0.00734438747, -0.00110147288, -0.00482461788, 0.0168972798, -0.00244195317, 0.00142200233, -0.0242342558, 0.000503027521, 0.00891553797, -0.00770011963, -0.0111981528, -0.030326169, -0.00694418885, -0.00266428594, 0.00738144293, -0.0124135707, -0.00959735829, -0.00258461665, -0.00710352696, 0.0184832513, -0.025093941, -0.00164526131, -0.0227520373, -0.00412797555, -0.00415020902, -0.00784093048, -0.00148036471, 0.0209437329, 0.0108794756, -0.000537767, -0.00191947154, 0.0215514414, 0.00518776104, 0.021936819, 0.0201136898, 0.0114204856, -0.00426508067, 0.00879696, 0.0135697005, 0.0158449039, 0.0061734356, 0.0158449039, -0.0174901653, -0.00698865531, 0.0061252634, -0.0178458989, -0.00330163934, -0.0088933045, 0.0158449039, 0.00110795756, 0.0252273418, 0.0111240419, 0.00900447089, 0.0181868076, 0.0149185183, -0.0129471691, 0.0234042127, -0.0143330423, -0.0108572431, 0.00775199709, 0.0146961864, 0.0112574417, 0.00249753636, 0.00679967273, 0.0289773513, -0.00872284919, 0.00153594778, -0.0110276975, -0.00893036, -0.00986415707, -0.0049283728, -0.00701459404, -0.0144812642, -0.00593257509, -0.00239007571, 0.0160820596, -0.0119763166, 0.00415020902, -0.0108201876, -0.027673, -0.0232263468, -0.00371110183, -0.0117762173, 0.0070442385, 0.0196245592, -0.0136882784, -0.00655140122, 0.0166897681, -0.00266984408, -0.0101606008, 0.0098419236, -0.00410203682, 0.0181719866, 0.0155336391, -0.0342688672, -0.0120059615, 0.0121986493, -0.00488761207, 0.021862708, -0.0278360434, -0.00767047517, -0.0106941992, 0.012554382, -0.0162599254, -0.0122282943, -0.0212105308, 0.00432066387, -0.0119466726, -0.00193799927, 0.00141181215, 0.000615120225, 0.000989380176, 0.041739244, -0.015711505, 0.0131991459, -0.000304317771, 0.0119614946, 0.0130731575, 0.0229150821, 0.00668480061, -0.000994938426, 0.00290144072, -0.00115149771, -0.0172233675, -0.0064772903, -0.0207214, 0.00765565317, -0.0181275196, 0.00682190573, 0.0107905427, 0.00651064, -0.00551384874, 0.0132584348, -0.00356288021, 0.0106867878, -0.0259388052, 0.000716559472, 0.0147999413, 0.016734235, -0.00561389839, -0.00202878518, 0.0316601656, 0.00548791, 0.0141403545, -0.00745184813, -0.0178755429, -0.00873767212, -0.0127174258, 0.0114056636, 0.00470604049, 0.0153113063, -0.00310524553, -0.0122727603, -0.0145034976, -0.0115909399, -0.0108794756, 0.0269170683, -0.0149629852, -0.00522852223, 0.0255682506, 0.00974558, -0.0171047896, 0.000457866234, 0.00508771138, 0.00265316921, 0.0174160544, -0.0184387844, -0.0098567456, -0.0208548, 0.00556572666, 0.0158893708, 0.0127470698, 0.0055842544, 0.0168824568, 0.0270949341, -0.0209733769, 0.0176235661, 0.0126062594, -0.0248419642, 0.0027402495, 0.00810031872, 0.00284585753, -0.00761859771, -0.00486908434, -0.00136549282, -0.00784093048, 0.00847828388, -0.0077223531, -0.00565465959, -0.00348506379, 0.0128360027, -0.00163414469, 0.000134094356, -0.0117539847, -0.00291070458, 0.0154150613, -0.0333795361, 0.0108424202, 0.0131695019, 0.00510253338, 0.0098271016, -0.0106645543, 0.0106719658, 0.0231670588, 0.0169269238, -0.0169713888, -0.0107460767, 0.0241305, -0.00654028449, -0.0103829335, -0.014103299, -0.0163488593, 0.0221295059, -0.0199654698, 0.00362216891, -0.0103384666, 0.00488390634, -0.00776681956, -0.0116205849, 0.00413909229, 0.0037166602, -0.012013372, -0.00979004614, -0.00503583392, -0.00940466952, 0.0285326857, 0.00276248273, -0.00670703407, -0.0160968807, -0.00374630466, 0.00941949151, -0.00253088633, 0.00691825, -0.0009203644, 0.0179941189, -0.00761859771, -0.00199172972, -0.0231967028, 0.00239378121, -0.000313350029, 0.00130342494, -0.00748519832, 0.0160524156, -0.00569542032, -0.030355813, -0.013606756, 0.00608450267, 0.00788539648, -0.000988453743, -0.0130435135, 0.0170306787, -0.0190168489, -0.00551755447, -0.0172826555, 0.0127470698, -0.0176828541, 0.00653657876, -0.0224704165, -0.00711834943, -0.0191650707, -0.0416206643, 0.0162154585, 0.0014275607, 0.0134214787, -0.0186462961, 0.00475791795, -0.0169121, 0.00621049106, 0.0204249565, -0.00641800137, -0.01560775, 0.0148962857, 0.0128137702, 0.000899057544, -0.00936020352, -0.00276063, 0.0391601846, -0.0123024052, -0.0143552758, -0.0357807279, -0.000967146887, -0.000270041492, -0.0176383872, -0.00115798239, -0.00410203682, 0.00352026639, 0.00170455012, -0.0131546799, -0.000836989668, -0.00720728235, -0.0123098157, -0.00442441925, 0.00501730619, -0.00760377571, 0.00217144866, -0.00986415707, -0.0103903441, -0.0238044113, 0.0171344336, 0.0151186176, 0.00477644568, -0.00387229305, -0.0190613158, 0.0297925714, -0.00787798595, 0.00348135829, -0.0170010347, 0.00386488205, 0.0070590605, -0.00430954713, -0.00587328663, 0.0142959869, 0.00534709962, -0.0226038154, -0.000751298969, 0.00298852101, -0.00271986891, 0.0036777521, -0.0277767554, -0.01560775, 0.0115761179, -0.00444665225, 0.00743702613, 0.0669962317, 0.0142218759, 0.0263093598, -0.011968906, -0.00476162368, 0.00412427, 0.00947878, 0.0343578, -0.0301186591, -0.0140514215, 0.0125321485, 0.0200247578, -0.00519146677, 0.0161117036, 0.0195800923, -0.00910081528, 0.00516182231, 0.00645135157, -0.00050626992, -0.0150889736, -0.00691825, -0.0169862118, 0.0127174258, -0.0131472684, 0.010990642, -0.0110276975, 0.000467130099, -0.00256979442, -0.0206176452, 0.00513588358, -0.0130435135, 0.0155781051, 0.00885624904, -0.0052729887, -0.010931354, 0.00564354286, -0.000783722498, 0.0152964843, 0.00870802719, -0.0246640984, 0.0228261482, 0.033349894, 0.0112648522, -0.0122208828, -0.00406868709, -0.00265872758, -0.00920457, 0.00340724736, -0.0119022056, -0.00566207059, 0.0297481045, -0.0244565886, -0.00468380703, 0.00179255672, 0.0256127175, -0.0163043924, 0.023018837, 0.004961723, 0.0201581568, 0.0342688672, -0.00884883851, -0.00389823178, -0.00962700229, -0.00466898503, -0.00871543866, -0.0342095792, 0.0173123, 0.000181571639, 0.0207510442, -0.00233449251, -0.0171640776, -0.00990862399, 0.00652546249, -0.00148777571, 0.00746296486, 0.0224852394, -0.0123394607, 0.0150296846, -0.000593813369, -0.0200840458, -0.0224852394, 0.00698865531, -0.0016591571, -0.0216551963, 0.00193614652, -0.0131546799, -0.0130286915, -0.00685896119, -0.00760377571, 0.0130435135, 0.00716652116, 0.0160375927, 0.00732585974, -0.0111240419, 0.011546474, 0.0122208828, -0.0140958875, 0.00786316395, 0.00498766173, 0.00106534373, 0.00597333629, -0.0040279259, -0.00546938227, -0.0129842246, -0.00417244202, 0.0277322885, -0.00475050695, 0.00215292093, 0.01097582, 0.00731474301, -0.00268651918, -0.00205657678, -0.000104739505, -0.00174531108, 0.0275099557, 0.0131546799, 0.012598848, 0.00857462827, 0.00778164156, -0.00824854, 0.0095158359, -0.0095158359, -0.00948619191, 0.00182405382, -0.00881919358, 0.00015991737, 0.00800397433, 0.000416178867, 0.0358993076, -0.000146947961, 0.00223073736, -0.0202470906, 0.0027476605, 0.00493948953, 0.0307115447, 0.00827818457, -0.0110647529, 0.000245723873, 0.00944172498, 0.00481350115, -0.0134955896, 0.0121986493, 0.0103829335, 0.018853806, -0.00956771336, -0.00730733201, 0.015696682, -0.000606782793, 0.0351285525, 0.00567318732, 0.0185277183, -0.0244862325, -0.00638835737, 0.0039871647, 0.0167194121, 0.0129694026, 0.00240304507, -0.0164526142, 0.00800397433, -0.020869622, 0.0127618918, 0.00295146555, -0.000505806704, 0.00188797445, 0.011502007, -0.00568059832, -0.0100272009, 0.00650693476, -0.00390564301, 0.00572506478, 0.0203212015, 0.0251532309, 0.000646154163, -0.00408350909, 0.000453697488, -0.0132658463, -0.0233301017, 0.00266799144, 0.00929350313, -0.0114945965, -0.0176680312, 0.00284400466, -0.00462081283, 0.0498025045, 0.0052729887, 0.00944172498, 0.00136178732, -0.0243380107, 0.00840417296, -0.0116724623, -0.0363143273, -0.00378336012, -0.0098567456, -0.00519887777, 0.00941949151, -0.0242639, 0.016674947, -0.012057839, 0.0031145094, -0.00281621306, 0.00895259343, -0.00440218579, 0.00909340382, 0.00571394805, 0.014103299, 0.0257461164, -0.00558795966, -0.00747408159, -0.0155188162, 0.0352471322, -0.0126803704]
09 Feb, 2022
jQWidgets jqxScrollView slideShow Property 09 Feb, 2022 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that are present at the bottom of the jqxScrollView widget. The slideShow property is used to set or return whether the slideShow mode is enabled or not. This mode is used to change the pages automatically in a time interval. It accepts Boolean type values and its default value is true. Syntax: Set the slideShow property. $('selector').jqxScrollView({ slideShow: Boolean }); Return the slideShow property. var slideShow = $('selector').jqxScrollView('slideShow'); Linked Files: Download jQWidgets from the link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> The below example illustrates the jqxScrollView slideShow property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView slideShow Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired.png" alt="GetHired"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring.png" alt="hiring"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade.png" alt="upgrade"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg.png" alt="gethiredgfg"> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0], slideShow: true }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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 slideShow Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-slideshow-property?ref=asr10
PHP
jQWidgets jqxScrollView slideShow Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView slideShow Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0039332374, 0.0266226772, -0.0117320279, 0.0623301566, 0.0406710282, -0.0131985312, 0.0181696024, 0.0333610736, -0.00343876262, 0.0133564621, -0.0240506567, 0.0130706821, 0.0172821786, -0.0139054609, -0.0135595165, 0.0124765597, -0.0189366955, 0.0107694, -0.0273145661, 0.0357375592, -0.0213733483, 0.0162293054, -0.0767695755, 0.0217644144, -0.0515306741, 0.031676475, 0.00969396345, 0.0203054324, -0.0245620534, 0.000895413163, -0.0285479333, -0.00151068659, 0.00453111948, 0.0205611307, -0.0638342649, -0.0235242192, 0.0198391601, -0.00900959503, -0.035166, 0.0104986606, -0.0180943962, 0.0141160358, 0.0167707838, 0.0224863868, -0.0216290448, 0.0239604097, -0.0266678017, 0.000402113365, -0.0182297658, 0.00716706552, -0.0165752489, 0.0389563479, 0.00186321139, 0.0315561444, -0.0102279214, -0.0316163115, 0.00485450262, 0.0158984, -0.0195684209, -0.00423029857, 0.0156727862, -0.0363392048, 0.00513276225, 0.00312290038, -0.0189968608, 0.00141009944, 0.00358917308, 0.0318870507, -0.0594422743, 0.0102128806, -0.0224563032, 0.0236144662, 0.0280666202, 0.0233286861, 0.0132135721, 0.00476049585, -0.0263068154, 0.0122208623, -0.00476801628, 0.00849819928, -0.0352863297, -0.00201362208, -0.0779728591, 0.0107994815, -0.00412125047, 0.00568552082, 0.0396783203, -0.046206139, 0.0554413497, 0.0190119017, -0.0166654959, -0.0423556268, 0.00121738587, -0.0163947567, -0.00508011831, -0.0143792545, -0.016184181, 0.0207867455, -0.0228022486, 0.00450479751, 0.026743006, 0.0109799746, 0.00557271298, -0.0357977264, -0.002906685, 0.0263218563, 0.02325348, -0.0131534077, 0.00616683485, -0.0323683619, 0.0403401256, -0.0260360762, 0.00775366696, -0.0155223748, -0.0492143519, 0.0344440304, -0.025569804, -0.0151613895, 0.021990031, -0.00433182577, -0.00550126797, 0.00418893527, 0.00198542, 0.0217042509, -0.0080695292, 0.0230579469, 0.00571184279, -0.00423029857, 0.0673839524, -0.0328496769, 0.00580208935, 0.0296158493, -0.0162593871, -0.00581337, 0.0417239033, 0.0254043527, 0.0257502962, 0.000982369296, -0.0438296497, -0.00364933745, -0.04762, -0.0244868472, 0.0308943391, 0.00653534103, -0.00904719811, 0.00843051448, 0.0213432647, 0.020531049, -0.0341732912, 0.0215388, -0.0229526591, -0.00730619533, -0.0138302557, 0.00788151566, 0.0315260626, 0.017583, 0.0109423716, 0.0221254, -0.0142213227, -0.022666879, 0.000849819917, -0.0308642574, 0.0324886926, 0.0129653942, -0.0175980404, -0.0139581049, 0.033421237, 0.00811465271, -0.0409417674, 0.0336618945, -0.0129052298, 0.00738516077, -0.0188614912, -0.0030589758, -0.0101978397, -0.0118072331, 0.0181696024, -0.0534559302, -0.0192976817, -0.0399791412, -0.0357676446, -0.0322179534, -0.0118448352, 0.00918256771, 0.0134843113, -0.00225991942, 0.0236144662, 0.0119501231, -0.049605418, -0.0010331329, 0.00206626579, 0.00230316236, 0.0519518256, 0.0299166702, -0.00524181, -0.0222607702, 9.88832253e-05, -0.00685120327, -0.00866365153, -0.0170114394, 0.0123562319, -0.0171768907, -0.00347072491, 0.0165301263, 0.0136648035, 0.0267881304, -0.0166805368, -0.0365798585, 0.0466272905, -0.0317366384, 0.00331091345, -0.000693298876, 0.0181094371, 0.00318870484, -0.00120046467, 0.0159435254, -0.005474946, -0.0119426027, 0.00119388418, 0.00181526807, -0.00315674255, 0.0157179087, -0.0254494753, 0.0166654959, -0.0777322054, -0.0119802048, 0.0111379055, -0.0137625709, -0.00312478049, -0.00280327769, -0.0546592139, -0.0178537387, -0.0126720937, 0.0138829, 0.0445516221, 0.0461459756, -0.00442583207, 0.00422653789, -0.0295256022, 0.0126044089, 0.0129428329, -0.0377229825, -0.0111604668, -0.00505379634, 0.0116944248, 0.035647314, -0.0202903915, -0.00518540572, 0.00494474871, -0.000847469782, -0.0238400809, 0.0106866742, -0.0379636362, 0.00627964316, -0.00574568519, -0.00885918457, 0.000734191795, -0.0112582343, -0.00173254218, 0.0381441303, 0.0416035727, 0.0204708837, -0.0228323303, 0.0118673975, 0.00867869239, 0.0233587679, 0.0192976817, -0.0221554823, 0.012980436, -0.0256450083, 0.0303378198, -0.035647314, 0.00438446924, 0.0394075811, -0.0157780722, -0.00293488707, -0.0601040795, -0.026066158, 0.0386555269, 0.00118260342, 0.0215087179, 0.00521548791, 0.0256299675, 0.0542380661, -0.00312666059, 0.0191021468, 0.0334513187, 0.00530197378, -0.0336017311, 0.0269385409, -0.0169963986, -0.0363392048, -0.000300821208, 0.00482818065, 0.057456851, 0.0286381803, 0.00288036326, 0.00934801903, -0.0184704233, -0.00332783465, -0.036820516, 0.0157479905, -0.0185606685, 0.0106866742, -0.00637364946, -0.000216567772, 0.0384148695, -0.00414757244, -0.00967892259, -0.0354066566, 0.0469581932, 0.00283712, -0.00750548951, -0.0313455723, 0.00885166414, 0.0236144662, 0.00632852642, 0.00260962406, -0.0148530472, -0.0179289449, 0.00994966179, -0.0041701342, -0.0229827408, 0.00551630929, 0.0365196951, -0.011905, 0.0087313354, -0.019177353, -0.00710314093, 0.00372454268, -0.0356773958, -0.010506181, 0.0433182567, 0.0226518381, 0.0364294499, -0.0274800174, 0.00278447638, -0.00111679872, -0.028382482, 0.00464016711, -3.34017313e-05, -0.0246974211, 0.0434385836, -0.0309545025, 0.0232233983, -0.046687454, -0.0074340445, 0.00849819928, 0.060826052, -0.0116192196, 0.00138847798, 0.0326391, 0.0426564477, -0.0136422422, 0.00647893688, -0.00751677, -0.0102279214, -0.0194631331, -0.0531551093, 0.0101602366, -0.00338987913, -0.0263368972, 0.0213883892, -0.00475297542, 0.0336618945, -0.00540350098, -0.0327895135, -0.0266978834, -0.00912992377, 0.00864108931, -0.0159435254, 0.000498705194, -0.0273296069, 0.0291495752, -0.0275251418, 0.0206664186, -0.00788151566, -0.0210123621, -0.0196135435, 0.000770854356, -0.00731371576, 0.0455744155, -0.0301723685, 0.044160556, -0.0138377761, 0.000157108589, 0.0146424724, -0.0429572687, 0.0244868472, -0.00496731047, -0.0552909411, 0.0471687652, 0.0116493013, -0.0187862851, 0.00885918457, 0.0082048988, 0.00506883767, 0.000864391, 0.0257954188, -0.0194932148, 0.0346546061, -0.0352261662, 0.000588951516, -0.0142814871, -0.0267730877, -0.00727987336, -0.0236144662, -0.00864861, 0.00518916594, 0.0216440875, 0.00967892259, 0.0140182683, -0.0252689831, 0.0526437126, 0.0170716047, 0.06239032, 0.0268934164, 0.0561332405, 0.0176732466, -0.0110175768, 0.0117470687, -0.0103933727, -0.0136121605, 0.0237197522, -0.0296910536, -0.0241709854, -0.0447321162, 0.0022730804, 0.0305032711, -0.0188464485, 0.0107844407, 0.0109348511, 0.0108671663, -0.0232083574, 0.0262616929, 0.0328195952, 0.0417840667, -0.0095886765, -0.0209672395, -0.0208920334, -0.0340228789, 0.0140709123, 0.00225991942, 0.00691888807, -0.0292097405, 0.012160698, -0.0048056189, -0.00825002231, 0.0209822804, 0.026442185, -0.0209371559, -0.0515306741, -0.0440402254, -0.0122659849, 0.0028747227, -0.0046702493, -0.0191923939, -0.00912992377, -0.00619315682, -0.0093404986, 0.0107694, 0.0199143644, -0.00367565919, -0.00689632632, -0.00643381383, -0.015793113, -0.0102655245, 0.0376026519, -0.00944578648, 0.00183030905, -0.0441304743, 0.0151538691, 0.0333610736, 0.0610967912, 0.00744156493, 0.00382418977, -0.00198542, 0.0075355717, 0.000994590111, -0.00349704665, 0.0229677, -0.00514028268, 0.0277206749, 0.0301874094, 0.00539974077, -0.0163345914, 0.0245620534, -0.0180492736, -0.0263218563, 0.00580208935, 0.00832522754, 0.0208769925, -0.0407612734, 0.0135519961, -0.00646765623, 0.000800466456, -0.00935553946, -0.00432806509, 0.00917504728, 0.0243364368, 0.0016225545, 0.0216140039, -0.0201099, 0.00712570269, 0.00765966, -0.0235091783, -0.0186809972, -0.017583, 0.0137700913, -0.0303378198, 0.00423405878, -0.0144845415, -0.025765337, -0.00357977254, 0.0019496975, -0.0373319127, -0.0431678444, -0.0224863868, 0.019763954, -0.0325789377, 0.0146875959, 0.019177353, 0.0203806367, 0.0137174474, 0.0233738087, 0.0154772513, -0.0282170307, 0.00878397934, -0.0335415676, 0.0247124638, -0.0157780722, 0.00857340451, 0.0128751481, 0.0314659, -0.0127322581, 0.00373394345, -0.00479809847, 0.00252501806, -0.00161033357, -0.00527189206, -0.0295406431, 0.00260586385, -0.0382945426, -0.0151388282, 0.0117094656, 0.00855836365, 0.000658046396, 0.00168553891, -0.000351584808, 0.0369408466, 0.0338423885, 0.00774614653, 0.00840043277, 0.00296872947, -0.00858844537, 0.014529665, -0.0338423885, -0.000758163456, 6.50995935e-05, -0.0258706249, -0.0135595165, -0.0111905495, 0.0301573277, 0.0169963986, 0.00782135129, -0.0150786638, -0.00822746, 0.0309545025, -0.010363291, -0.0105813863, -0.000742182368, -0.00286344206, -0.00391067564, -0.0114161652, -0.00119858456, 0.00507259788, 0.0384449512, -0.0258555841, 0.00296872947, 0.0162142646, 0.00874637719, -0.019673707, 0.0149132116, 0.0263218563, -0.0331504978, 0.00175510382, -0.000754873268, -0.00884414371, -0.0211928543, -0.0076032565, 0.0122133419, 0.0185155459, 0.0117846709, 0.0153268408, 0.0172821786, -0.00973908696, -0.0145747876, 0.00919760857, -0.00922017079, -0.0386856087, 0.0267580468, 0.0306536816, 0.0353164114, 0.0125743272, 0.00206626579, -0.0127548194, 0.0030777771, 0.0237648766, 0.0180492736, -0.00688504567, -0.0257051736, -0.0130556412, 0.0194631331, -0.00625332119, -0.0102956062, -0.0169362351, 0.0144093363, 0.0345342755, 0.00210574851, -0.00445215404, 0.0351058356, 0.00346696447, 0.0218847431, 0.00894191116, 0.0308040921, 0.0320374593, -0.031375654, 0.00139129814, 0.00565919932, -0.0302325319, 0.012589368, 0.00953603256, -0.00548246689, -0.0153945256, 0.0180643145, 0.0149808964, -0.0167858247, 0.00752429059, 0.00503499527, 0.01191252, 0.0204859246, 0.0300670806, -0.0112507138, 0.0782736838, 0.00123430707, 0.00975412782, 0.00604274636, 0.00982181262, 0.0121005336, 0.00697905244, -0.0209521987, 0.00363429636, 0.0233888496, 0.0120403692, 0.00452359905, 0.00753181148, 0.000602582528, -0.0154471695, -0.00644133426, 0.0391669236, -0.0130782025, 0.0172520969, 0.0237498358, 0.0100699905, 0.0186208338, -0.0139731457, 0.020636335, 0.0374221578, -0.000699879369, 0.0146875959, 0.0144168567, -0.0119877253, 0.0192074347, 0.00350080687, 0.00825754274, -0.024020575, -0.0330602527, -0.00837787054, 0.00806200877, 0.0201700628, -0.0130105177, 0.0305784773, 0.0351058356, 0.0192976817, 0.0180793554, -0.0262616929, 5.37012893e-05, -0.00687000435, -0.00476801628, 0.00952851214, -0.0105212219, 0.019372886, 0.0273596905, 0.0126194498, -0.00592241762, -0.00631348509, -0.0205460899, 0.0229225773, -0.0303979833, -0.0304882303, -0.00409492897, -0.0141686797, -0.0308943391, 0.000617153535, 0.00825754274, 0.0167557411, 0.00252501806, 0.0272694435, -0.0374522433, -0.0125968885, 0.0212078951, 0.0268633347, -0.0289991647, 0.0599235855, 0.0145747876, 0.00891934894, -0.0101151131, -0.0166504551, -0.0303979833, 0.0100323875, 0.0184854642, 0.00922017079, -0.0356172323, -0.029254863, -0.00015863619, -0.0235543, 0.0106565915, -0.0363993682, -0.0104535371, 0.00340304, 0.0203355141, 0.0380238034, 0.0370912552, -0.0102053601, -0.00508763874, 0.0109950155, 0.011092782, -0.000375791511, -0.000466272875, 0.0104760993, 0.000629844435, -0.0373619944, 0.00298189023, 0.020440802, 0.0215989631, -0.0325789377, 0.0174025074, -0.0158833601, -0.0128225042, -0.0373920761, 0.0104234554, 0.00591865741, 0.0230579469, -0.0423255451, 0.00340116, -0.000126321407, -0.00254005915, -0.000956987496, 0.0292999875, -0.0123111084, 0.0162443463, 0.0394978262, -0.0306837652, 0.00912240334, 0.0158382375, 0.0213432647, -0.0447321162, -0.00337483804, 0.0205912124, -0.0208168291, 0.0149056911, -0.00098330935, 0.0351058356, -0.039708402, -0.0415133275, 0.00817481615, -0.0189968608, -0.00306461612, 0.00524933031, 0.0337521397, -0.0099271005, -0.00245169294, -0.00931041688, -0.003899395, 0.0166053306, -0.0173273031, 0.0137024065, 0.0310447495, 0.0113635212, 0.00724227075, 0.0292849448, 0.00699033309, -0.000941476435, -0.0054411036, 0.00610667095, -0.0147477603, -0.0240356158, 0.0265775546, 0.00400468241, -0.0481313951, 0.0208920334, -0.019087106, 0.0399490595, 0.0392270871, 0.0240506567, 0.000984249404, -0.0236144662, -0.0174325891, -0.0302475728, 0.00367377908, -0.0218095388, -0.0050086733, -0.0170866456, -0.00198354, -0.012890189, -0.0055087884, 0.00633604685, -0.0222758111, 0.00684744306, -0.0101978397, -0.0152817182, -0.00459128385, 0.0155524574, -0.0564340614, -0.0255547632, 0.0256299675, -0.0185757093, 0.02353926, 0.0160187297, 0.000403758488, 0.0134843113, 0.00741148274, -0.035948135, 0.0503574722, -0.0202452671, 0.0171919335, 0.0367904343, 0.00939314254, 0.000100704601, 0.00946834777, -0.0037471042, 0.00696401112, -0.0113033568, 0.0105287423, 0.00373582356, 0.0284576882, -0.0127623398, 0.0167858247, 0.0460557267, 0.0090020746, 0.0364896134, -0.0109198103, 0.0216140039, 0.0269686226, -0.0130255586, 0.0146123907, 0.00167613826, 0.0132210925, 0.0293451101, 0.0147628011, -0.000757693429, -0.0022373579, 0.0156276617, -0.00709186029, 0.0162894689, 0.00128883088, -0.00150692626, -0.0278109219, -0.0399490595, -0.0230278634, -0.0236445479, 0.0136272013, -0.00908480119, 0.00662558712, 0.013995707, -0.0239002462, -0.0364294499, 0.00874637719, -0.0142664462, -0.0291947, 0.0349554271, -0.0253742691, -0.0552608594, 0.00188859319, -0.00785143394, 0.0481915586, -0.0570056215, -0.0249531195, 0.0321277045, -0.00804696791, -0.019372886, -0.00707305875, 0.00142608059, -0.0354969054, 0.00483194087, 0.0354367383, -0.0177484527, -0.0400693864, 0.0201550219, 0.0130932434, 0.00495979, -0.00649773842, 0.01773341, -0.0113259191, 0.0186358746, -0.00645261491, 0.00742276339, 0.0336318128, -0.0013602759, 0.00520420726, 0.0109874951, 0.00351208774, -0.0141611593, -0.0197489131, 0.0149658555, -0.000111985399, -0.00088460237, 0.0165602081, 0.0253291465, -0.00674215565, -0.0158081558, -0.0234189313, 0.0310146678, 0.043288175, 0.0105964271, -0.00246673403, -0.0259909537, -0.00761829736, -0.0461760573, 0.0127773816, 0.00112901966, 0.0213883892, 0.0570056215, -0.0177183691, -0.0148229655, -0.0288036317, -0.00116756232, 0.0338123031, -0.00846059714, 0.032067541, 0.0495452546, 0.000392947724, 0.00209822808, 0.00837787054, 0.00127096963, -0.0203655958, -0.0541478209, -0.00172408158, -0.0179740675, -0.000484604185, 0.00414005201, 0.00228248094, 0.0226518381, -0.00889678765, 0.0222758111, -0.0270588677, -0.0258255024, 0.00655414211, -0.0149808964, -0.00821994, 0.00353840948, -0.0365497768, 0.00564039778, 0.0139205018, 0.0107468376, -0.00122866663, 0.0105437841, 0.00980677176, -0.0056892815, -0.0123562319, 0.00367941963, 0.00257390155, 0.0673839524, -0.0071633053, 0.0159435254, -0.00814473443, -0.0147402398, -0.0382042937, -0.00084511959, -0.0114913704, 0.00418141484, -0.0084079532, 0.00360985473, 0.00260962406, 0.0117169861, -0.028969083, -0.0363993682, -0.0278560445, -0.00328647182, 0.00705049746, 0.0167707838, -0.0119726844, 0.0109649338, -0.0255547632, 0.00200610142, 0.0378132276, 0.0313154906, 0.00181902829, -0.0259909537, -0.0152666764, -0.0208318699, -0.0246673394, 0.00576824695, 0.00931041688, 0.0317968, -0.00501995394, -0.0160187297, 0.0126044089, 0.00186133129, 0.00543358317, -0.0285178516, 0.00865613, 2.76438241e-05, 0.000812217302, 0.0295105614, 0.0141085153, 0.00767470151, 0.0204107203, 0.0224713441, 0.0144469393, 0.0280214958, -0.00451607862, 0.0294052735, -0.0274800174, 0.00501995394, 0.0148154451, -0.0223510172, -0.0110100564, 0.0178386979, 0.00275251409, 0.0212379787, 0.0223660581, -0.0136873657, -0.00742276339, -0.0106641119, -0.00931793731, -0.0098594157, -0.0202302262, -0.00332031422, -0.00139505835, 0.00299505121, -0.0161992218, 0.0260360762, 0.00370010105, 0.000602582528, -0.00328271161, -0.0116342604, 0.0381441303, -0.0125668067, -0.00917504728, 0.000127378982, -0.0119877253, -0.00811465271, -0.00511020049, 0.015402046, -0.0187712442, 0.00429422269, -0.0275552236, 0.00492970785, 0.00361737516, -0.00230880291, -0.0172520969, -0.00812969357, -0.00436942838, 0.000271914178, -0.000875201717, -0.00728363357, 0.00479809847, 0.00670831325, 0.0124916015, -0.0223359764, -0.000467212958, -0.0134993521, 0.0222457293, 0.00931793731, -0.00142138021, 0.0225615911, -0.0104008932, 0.0154772513, -0.00725355186, 0.0206212942, -0.00405732635, 0.00266038766, -0.00111585867, 0.0072648325, 0.0188765321, 0.00612923224, -0.0223510172, -0.015402046, 0.000240892, 0.00432054466, 0.0192675982, 0.0213883892, -0.00581713, -0.0226819199, -0.00952099171, -0.016951276, 0.0693693757, 0.0044747158, -0.00782135129, -0.00494474871, -0.0202001445, -0.0337220579, 0.000629844435, 0.0343537815, 0.0414230824, -0.027028786, 0.0180643145, -0.00212078961, 0.0010669753, -0.0150335403, -0.00552382972, -0.0229827408, 9.66505686e-05, 0.0057231239, 0.0263368972, -0.0154321287, -0.0345643573, 0.021990031, -0.00534709729, 0.00924273208, 0.00487706391, 0.017823657, -0.038836021, -0.00916752685, -0.0407311916, 0.00170528027, 0.0243213959, 0.030322779, 0.0296609718, 0.00383359031, -0.0245018881, 0.045815073, -0.0176882874, 0.00667823106, -0.0188614912, -0.00527189206, -0.0172671378, -0.00348200556, 0.00966388173, 0.0143266106, 0.00587353436, -0.00246297382, -0.0192976817, -0.0278259628, -0.0227721669, 0.0291796587, -0.0386254452, -0.00803192612, -0.0246522985, -0.00880654156, -0.00666695042, 0.0222908519, 0.0056554391, -0.0110702207, 0.0296609718, -0.0184704233, 0.000502935494, -0.00765213976, 0.00527565228, -0.00327143073, -0.0131609282, 0.0230729878, -0.0242762715, -0.000652876042, -0.0305634364, 0.0366400257, 0.0224412624, -0.00864861, 0.0013602759, 0.00165921706, -0.0156577453, 0.00609539, -0.0228924956, -0.00530573446, 0.0205611307, -0.0286983438, -0.0372416675, 0.024607176, 0.00401220284, 0.00942322426, -0.0200798158, 0.00833274797, -0.0325789377, -0.0141611593, -0.00703545613, -0.00777622871, -0.00593369873, -0.0171919335, -0.023629507, -0.0194029678, -0.00506131677, -0.0111604668, 0.0286532212, 0.00208694721, -0.000247942487, -0.0120328488, 0.0107844407, 0.0177634936, 0.00755437277, 0.00556519255, 0.00227496051, 0.0162293054, 0.0183651354, 0.0216140039, -0.0267129242, 0.016184181, 0.00853580236, -0.0325789377, 0.00891934894, 0.0247124638, 0.00409116875, -0.00516660465, 0.0124539984, -0.0144544598, -0.010844605, 0.0191923939, -0.0360684656, -0.0026697882, 0.0027036306, -0.0181846432, 0.0257803779, 0.00463264668, -0.00356285134, 0.0244266838, 0.0141085153, 0.00343124196, -0.0144845415, -0.0111529464, -0.0123336697, 0.0154170878, -0.00941570383, -0.00832522754, -0.0147477603, 0.00873885676, 0.0070279357, 0.0153118, -0.00347636524, -0.000644415442, -0.00803944748, -0.00334287575, 0.0158532783, 0.0335716493, -0.004407031, 0.00247989502, -0.00219787494, -0.00618563639, -0.0236445479, 0.00637740968, 0.00717082573, -0.0080695292, 0.026156405, -0.0247726273, -0.00553135, -0.0109348511, -0.011378563, -0.0069940933, 0.0154170878, 0.0206965, 0.0182448067, -0.00209822808, 0.00548998732, -0.0169663168, 0.00443711318, -0.0373619944, 0.0141536379, 0.00405732635, -0.000871911529, -0.0203204732, 0.0191923939, -0.0266226772, 0.0279312506, -0.0049409885, 0.00353276916, 0.0321878716, 0.0280666202, 0.00804696791, -0.00152666774, 0.00518916594, -0.0234339722, 0.00662182691, 0.00782887265, -0.00982933305, -0.00569304172, -0.0118598761, 0.0220201127, -0.000350879738, -0.0238701645, 0.0267279651, 0.0411824249, -0.00633604685, 0.00538846, 0.0140934745, 0.0127322581, -0.00897199288, 0.00750548951, 0.0274649765, -0.0229827408, 0.0224713441, 0.0172520969, 0.0101827979, 0.00738892099, 0.0241860263, -0.0265324321, -0.0064939782, 0.0119726844, -0.0237347949, 0.0254945979, -0.0252539404, 0.00293864729, 0.026833253, 0.00865613, -0.010415935, 0.00724979118, -0.000114570583, -0.0131082842, 0.024607176, -0.01360464, 0.0188163668, -0.0268633347, 0.0185606685, -0.0097917309, 0.0134241469, -0.0147477603, 0.00568552082, -0.0107167559, 0.0206664186, 0.000437835872, 0.0358578898, 0.0283373594, -0.0015041061, 0.00620443746, 0.0067571965, 0.0117545892, -0.0189818181, -0.0287585091, 0.0262316111, 0.00575320562, 0.000198001464, 0.00137249683, 0.0341131277, 0.00850572, -7.85542943e-05, 0.0111529464, -0.0162142646, -0.0155374156, 0.0172220152, 0.00961875822, 0.0142814871, 0.0229376182, -0.037482325, 0.0209221151, 0.0229376182, -0.0219599493, -0.0111153442, 0.0048733037, -0.0121983, 0.0038317102, 0.00694521, -0.015687827, -0.00853580236, -0.0171317682, -0.000833838829, 0.0069264085, -0.0165902898, -0.0237498358, -0.0158683192, -0.0178988632, 0.00135369552, -0.00198918022, -0.0236746296, 0.00774614653, -0.013033079, 0.0317065567, -0.0240506567, 0.00236144662, -0.00647893688, -0.0329098403, 0.0176582057, -0.00697153155, -0.0170866456, -0.00930289645, 0.0284576882, 0.00117696298, 0.00507259788, -0.00130387198, 0.0162293054, -0.00807705, -0.0018904733, -0.0172671378, 0.00453111948, 0.00335039641, 0.0271340739, 0.0169663168, -0.0235242192, 0.0137700913, -0.0412425883, -0.00840043277, -0.00684368284, 0.0279312506, -0.0118598761, -0.0097240461, 0.0103181675, 0.0267580468, -0.00485074194, 0.0132210925, -0.0299467519, -0.0160939358, -0.0229075365, -0.0168760698, 0.0171016864, 0.0188464485, -0.0104084145, 0.0130857229, -0.0132361334, -0.018891573, -0.0192525573, -0.00535837794, -0.0258706249, -0.0583292358, -0.0157329496, 0.00687376503, -0.0299768336, -0.0117921913, -0.014672555, 0.0161691401, -0.0262767337, 0.0148831299, 0.0122810267, -0.00288600358, 0.0149508147, -0.00540350098, 0.0191322286, 0.00737388, 0.00127943023, 0.00651653949, 0.0174325891, -0.0220050719, -0.00319998572, -0.0218847431, 0.0111003034, 0.00150034588, -0.000862980844, -0.0184553824, -0.0185757093, -0.00929537602, -0.0232083574, -0.006392451, 0.00462888647, 0.0365798585, 0.00539222034, 0.00703169592, 0.0235693417, 0.00882910285, -0.00248929556, -0.00539974077, 0.00963379908, -0.0078664748, 0.0321577899, 0.0126194498, 0.00187543232, 0.0228473712, -0.0336919762, -0.0168309473, 0.000782135176, -0.00441455143, 0.00895695202, -0.0242762715, 0.0181094371, 0.0101527162, -0.00434686663, 0.01773341, -0.00545238471, 0.0254945979, 0.0191021468, 0.010754359, 0.000651465962, -0.0203204732, -0.00351208774, -0.0113484804, -0.00752429059, 0.0164398793, 0.0172520969, -0.0029743698, -0.0259307884, -0.00343124196, 0.01773341, 0.00636988925, 0.014529665, 0.0330602527, -0.0122960676, 0.00277507585, 0.00303265383, -0.0285479333, 0.0118448352, -0.0231030695, 0.000886952563, 0.0101903183, 0.00930289645, -0.0193277635, 0.0130706821, 0.0313455723, 0.00306837633, 0.0120027671, 0.00441079121, 0.000217742854, -0.0140709123, -0.0117320279, 0.0177183691, -0.0153268408, -0.0312252417, -0.0102805654, 0.00644885469, 1.53348319e-05, 0.0450931, -0.00221667625, -0.00754685234, -0.00233324454, 0.00389187457, -0.0482818037, -0.00360797439, -0.00392571697, -0.0130180381, 0.0267129242, -0.00376026519, -0.0105437841, 0.0250734482, 0.00180022698, -0.000900583516, 0.0134767909, 0.0135745574, 0.0105813863, -0.00993462093, -0.022576632, 0.0314057358, 0.00391067564, 0.0254344344, -0.0250283256, -0.011235672, 0.0165752489, -0.00742276339, -0.00259646308, 0.00773862563, 0.00489962567, 0.00259270286, 0.0188765321, 0.00916752685, -0.00849067885, -0.0104309758, -0.0303378198, 0.00658422429, 0.00617059506, -0.00665566931, -0.00489210524, -0.00571560301, 0.0106716324, 0.0186659563, 0.019673707, -0.0068248813, -0.00677223783, 0.00274875388, 0.0136121605, -0.00451231841, 0.000663216808, 0.00613299245, -0.00385427196, -0.0026697882, 0.00254569948, -0.0233738087, -0.0170114394, -0.0163345914, 0.0201099, -0.000473323395, -0.0117771504, 0.000575790589, -0.00407236721, -0.00821994, -0.00700161373, 0.00861852802, -0.00404604524, 0.0101075927, 0.02538931, 8.69561336e-06, -0.0113860834, 0.00768974237, 0.0197188314, -0.00802440569, 0.0234038904, -0.00187543232, 0.00094946695, -0.00592617784, 0.00700537395, 0.00782887265, -0.0235242192, 0.0191021468, -0.0272544026, -0.0104911402, 0.0114988908, -0.00415885355, -0.0186809972, -0.00649021799, 0.00382606988, 0.00513652246, 0.00015193822, -0.00309657841, 0.0191472713, 0.0251636952, 0.00770854391, 0.000554169063, -0.000699409342, 0.0216290448, 0.00507259788, -0.0127472989, -0.0331204161, -0.00506507745, -0.0111003034, 0.0184704233, 0.0249982439, 0.00734379794, 0.00544862449, -0.0408214405, 0.0180943962, 0.00588105479, -0.0056554391, -0.00780631043, 0.00277695595, -0.000573440455, 0.000298706058, 0.00579832913, -0.00567424, 0.00148906501, -0.0093404986, -0.0195533801, 0.0102429623, -0.00556143234, -0.00373958377, 0.0186057929, -0.0242612306, 0.000125968887, -0.0193879269, -0.0123562319, -0.00159341237, -0.00697905244, 0.00453111948, -0.0183500946, -0.0235543, -0.0214335117, 0.0128225042, 0.00803192612, -0.0235994253, 0.0394075811, 0.0200346932, -0.00247237436, -0.000706929888, 0.00488834502, -0.0141461175, -0.000356990175, -0.000618093589, -0.00162913487, 0.00551254861, -0.00728363357, 0.0107092354, 0.0068587237, -0.000247002434, 0.0142288441, -0.00952099171, -0.0274048131, -0.0095886765, 0.0026697882, 0.022185564, 0.00718210638, 0.00376966596, 0.0280666202, -0.00680608, -0.000627024216, 0.00221667625, -0.00609915, 0.0278109219, 0.00443711318, 0.00229752203, 0.0111604668, -0.00745660579, 0.0179891083, 0.0101226335, 0.0179740675, -0.0116417808, -0.0138001731, 0.00524557, 0.000629844435, -0.00580961, -0.000194006177, -0.0188163668, -0.000209282269, 0.00381290889, -0.00445967447, 0.00407236721, -0.00546366535, -0.0121456571, -0.0102354418, 0.000581901055, -0.0106189894, -0.000273559301, -0.0116568226, -0.00486578327, 0.00147120375, -0.0298865885, -0.00694521, 0.0150786638, -0.0306386407, 0.00960371736, -0.00335039641, 0.0153042795, 0.000433370558, 0.0201399811, -0.000912804389, 0.00671207346, 0.0108671663, 0.000672617462, -0.00481313933, -0.00519292615, 0.0112431934, 0.0275251418, 0.00761077693, 0.0134617491, 2.88923511e-05, -0.017913904, -0.0162593871, 0.00723475032, 0.0176582057, -8.33721278e-05, 0.0015717909, 0.00865613, 0.0118749179, -0.00734379794, -0.00183124922, -0.00333911553, -0.0220050719, 0.00438070903, 0.00555015169, -0.0200948566, -0.00153230806, -0.00244229217, 0.0249079969, -0.015259156, -0.0125216832, 5.16742693e-05, -0.00395203894, -0.0173273031, 0.0246222168, 0.00812969357, 0.00142044015, 0.0165451672, -0.0100474283, -0.00290480489, 0.00594497938, -0.0039746, -0.0263669789, -0.00720090792, 0.00822746, -0.00551630929, 0.0329098403, -0.00549750775, -0.00991958, 0.0173423439, -0.00355345057, -0.00114312058, -0.0304882303, 0.0167557411, 0.0010265524, 0.00195157761, -0.00306461612, 0.020350555, 0.00578704802, 0.0276454706, -0.00269987038, -0.00180680747, -0.00112431927, -0.00171562098, -0.00486578327, -0.0122735053, -0.0163496323, -0.00438446924, -0.0188013259, 0.00955859385, -0.0175077952, 0.00223547779, -0.0183801763, 0.00973156653, -0.00150692626, 0.00877645891, 0.000562629662, 0.00213019014, 0.0111153442, -0.00393699761, 0.0235242192, -0.00146932364, 0.00706553832, 0.0354969054, 0.00511772092, -0.0247726273, -0.00563287735, 0.0123637524, 0.000433370558, 0.00125592854, 0.000518446555, -0.013033079, -0.00778374914, -0.00894191116, -0.00698281266, -0.0031962255, 0.00237836782, -0.0361887924, 0.00283712, 0.00202114251, 0.0133339008, -0.0159284826, 0.0176582057, -0.0129503533, 0.0019666187, 0.00149000506, 0.00172784191, -0.0201099, -0.0030270135, 0.00522300834, -0.0133489417, -0.000658986508, -0.0209672395, -0.017583, 0.0220652372, -0.0198692419, -0.013371503, -1.5613914e-05, 0.00436190749, -0.00392947719, 0.00114312058, 0.01176963, -0.00985189527, 0.0243514776, 0.0300520398, -0.0097917309, -0.010844605, -0.00797928311, -0.000268388918, 0.02905933, -0.00320562604, -0.00116004178, 0.030608559, 0.0116944248, 0.0169813577, -0.002323844, -0.0147853633, 0.0161691401, -0.0125818476, 0.0073325173, 0.000246297364, -0.00670455303, -0.00138847798, -0.00679479912, -0.00307965721, -0.00363805657, -0.00425286, 0.000331373361, -0.0120779723, 0.0118523557, -0.00182842894, -0.0296308901, 0.00145146239, 0.00442207186, -0.0115440143, -0.0167407, -0.0104460167, 0.00730995554, 0.00492218696, -0.00234828563, 0.0177634936, 0.00517788529, -0.0117169861, 0.000416919414, -0.018891573, -0.00375274476, 0.0131308464, 0.0138377761, -0.0163797159, 0.0138227353, -0.00528693292, 0.0307288878, -0.0134692704, -0.000261573441, -0.000707869942, 0.0123787932, -0.00265098689, 0.00201926241, -0.000314922218, -0.00324134855, -0.0029931711, 0.00854332279, 0.0134316674, -0.00192901609, -0.0273145661, -0.000312807068, -0.0195082556, -0.00934801903, 0.00425662, 0.00556143234, 0.00142232038, 0.00727611315, 0.0154321287, 0.00014136247, -0.00951347128, 0.00101151131, -0.00532829575, -0.0112281516, -0.0150410607, 0.0125818476, -0.0159736071, 0.00507259788, -0.027615387, 0.00458000321, -0.0288788378, -0.00964884087, 0.00476049585, -0.00244417251, 0.0344139487, 0.00388811436, -0.015010979, -0.0151764303, -0.00445967447, -0.0177935753, -0.022666879, -0.0299768336, -0.0170565639, -0.00233700476, -0.0198842827, 0.000930195616, -0.00524933031, -0.000780725095, 0.0153042795, 0.0167557411, 0.00867117196, -0.00179928693, -0.0128676277, -0.0220953189, -0.00988197699, -0.017237056, -0.0128450664, -0.000714920403, 0.0155073339, 0.0162142646, -0.0138979405, 0.00417765463, 0.00211326894, 0.0108370846, 0.0191021468, 0.00500115287, -0.00874637719, -0.0220501944, 0.00514780311, 0.0150861843, 0.0175529178, 0.0167557411, 0.00170716038, -0.0119802048, -0.00142044015, -0.0215989631, -0.0148756094, -0.0162293054, -0.000774614629, 0.0159134418, -0.0191021468, -0.00465144822, -0.0110175768, 0.0144544598, -0.00703169592, -0.0240656976, -0.0244417246, 0.00821994, 0.00964132, 0.00546742557, 0.0135745574, -0.0122058205, 0.0142890075, 0.00710690115, -0.0220652372, -0.00764837954, 0.0209371559, 0.0137400087, -0.00513276225, 0.0211477317, -0.00938562211, -0.00298565067, 0.00630972488, 0.0121682184, -0.00834778883, 0.00244041206, -0.00846059714, -0.0223810989, 0.0126645733, 0.00919008814, -0.0214485526, -0.00708434, -0.0111379055, -0.011822274, 0.000253582897, 0.00919008814, 0.00919760857, 0.000341714098, 0.00415509287, -0.0153569235, 0.028472729, 0.0261413641, -0.00175886403, 0.0075280508, -0.0226969607, 0.0138302557, -0.0128375459, 0.000933485862, -0.0202001445, 0.00457248231, 0.00696777133, -0.0142138023, -0.0257954188, -0.0260059945, 0.0242762715, -0.0223660581, -0.00983685348, 0.0391067602, 0.0112206312, 0.0200948566, -0.000508105848, 0.00356285134, -0.0114236856, -0.0111303851, -0.00140539918, -0.0227120016, -0.0292247813, 0.000841829402, -0.0074265236, -0.0078664748, 0.00145898294, 0.00212266971, 0.00699785352, 0.0138829, 0.00429422269, 0.00341432076, 0.0103332093, -0.0140633918, 0.0191021468, 0.0299166702, 0.000846999756, -0.0102128806, 0.0146951163, -0.00410620961, -0.011145426, 0.00682864152, -0.0122133419, 0.0104760993, 0.00779126957, 0.00715954509, 0.0490338579, -0.0195533801, 0.0127999429, 0.0127021763, -0.0156577453, 0.00714450376, -0.00656918343, -0.0268934164, -0.00122114609, -0.00710314093, 0.000805166783, 0.00232572411, 0.00167895842, 0.0254193936, 0.00231632334, 0.0132812569, 0.0110175768, 0.0239002462, -0.0220351536, 0.00229564193, 0.00083242869, -0.0156727862, -0.00989701785, 0.0116192196, -0.00419269595, 0.00321690692, -0.03119516, 0.0239453688, -0.0137776118, -0.00737012, 0.00289728446, 0.00218283385, -0.00733627751, -0.0262767337, -0.00379034737, 0.0367904343, -0.00556519255, 0.0249079969, 0.00577576738, 0.00367189897, 0.0159435254, 0.00109893747, -0.0149959382, 0.0192224756, -0.0032131467, -0.00478681782, -0.00966388173, -0.00398588134, -0.025479557, 0.00310033862, -0.0121456571, 0.0187411625, 0.00513276225, -0.00890430808, -0.00372266257, -0.013266216, 0.00173442229, 0.0270438269, -0.022576632, -0.00838539191, 0.00121080538, 0.00112995971, 0.02353926, 0.00430926401, -0.00559151452, 0.0172220152, -0.0184252989, 0.0137174474, -0.0195383374, -0.00593745895, -0.0104460167, -0.0101602366, -0.0192976817, -0.00244605262, -0.0045348797, 0.00661806669, 0.0131684486, 0.0123111084, 0.0208318699, -0.00195157761, -0.00131421268, -0.0104234554, 0.0249681603, -0.0400994681, 0.0102128806, -0.00479057804, -0.00287096249, 0.0016244346, -0.0155524574, -0.0014279607, 0.00577952759, -0.00988949742, -0.0188163668, 0.00809209049, 0.0114161652, -0.0104384962, -0.000740302203, 0.0338123031, -0.00624956097, -0.00280327769, 0.00659926562, -0.025479557, 0.000780725095, 0.0120629305, -0.00633980706, 0.0195232965, -0.0238250401, -0.0186057929, 0.00172314153, 0.00201362208, 0.0225916728, -0.019372886, 0.00558399409, 0.000182372867, 0.00583217153, -0.0105437841, 0.0128525868, -0.00673839543, 0.0409718491, -0.00544486428, -0.00541102188, 0.00912992377, -0.0107468376, 0.00522676855, -0.00287096249, 0.0134542286, -0.00161315373, 0.0303979833, 0.00435814727, -0.00973156653, 0.00673087453, 0.0041362918, -0.000250997691, 0.0194029678, 0.00506131677, 0.000867211143, 0.0107994815, 0.00171186076, 0.0030946983, -0.00994214136, -0.00402348395, -0.00271491148, -0.00129635143, 0.00698657287, -0.0111303851, -0.0168760698, 0.00591489719, 0.0184403416, 0.00308341742, -0.0165301263, 0.00968644302, -0.00747164711, 0.0249380786, -0.00303077372, 0.00900959503, 0.00894943159, -0.00888926722, -0.021027403, 0.0141235562, 0.000439481, -0.00250245654, -0.0105513046, -0.00783639308, 0.0297512189, 0.0156276617, -0.0113936039, -0.00127096963, 0.000948996923, 0.0148530472, -0.0226217564, 0.00711818226, 0.00238964846, 0.0244567655, -0.0155674983, -0.00433182577, 0.0131684486, -0.00683992263, 0.0150711434, -0.0115289735, -0.0134091061, 0.0156126209, 0.00662558712, -0.0137249678, 0.000166156722, -0.0127247376, -0.000685308361, -0.0132737365, -0.00818985794, -0.0177935753, -0.0103181675, -0.00555015169, 0.0344139487, -0.0200046115, 0.0144770211, -0.00392947719, 0.00500491308, 0.0360985473, -2.06373934e-05, 0.0115515348, -0.0209070742, -0.00648645731, -0.000315627258, -0.0144995824, 0.00228248094, -0.0229977816, 0.0294503979, -0.00716706552, -0.00401972374, -2.01673593e-05, 0.00962627865, 0.00788903609, 0.0215237588, 0.0228323303, 0.00177672529, -0.00258706254, 0.00812969357, 0.00068013795, -0.0242762715, 0.0249982439, 0.0119576436, 0.00811465271, 0.00566671975, 0.00224111811, 0.0156727862, 0.00879902, 0.0117470687, -0.00443711318, 0.00171844126, -0.00852076057, 0.0211026091, 0.00399716198, 0.0157179087, 0.0104008932, -0.0045348797, -0.00334099564, -0.00603146525, -0.0263218563, 0.0163045097, -0.0259458292, -0.00142232038, -0.0230278634, -0.0119275609, 0.026246652, -0.0114387264, 0.00496731047, -0.00678727869, -0.018304972, 0.0148079246, 0.0029405274, -0.00894191116, -0.0173573848, -0.0195684209, 0.0123562319, 0.00585473282, -0.0242612306, 0.00577200716, -0.0149282534, 0.00586977415, 0.00917504728, -0.0251486544, 0.00990453828, 0.0138302557, -0.00857340451, -0.0242762715, -0.00548622711, -0.00492594764, 0.00343688251, 0.026156405, 0.016469961, -0.00239340891, 0.000458517345, -0.00630596466, -0.00127002958, -0.00351208774, 0.0184704233, 0.00330715324, 0.00347072491, 0.0121155744, -0.0317065567, -0.0122810267, 0.00238588825, -0.00539222034, 0.0259608719, 0.0202302262, -0.0259007066, 0.00601642439, -0.0014364213, 0.00454240059, -0.0236746296, 0.00187449227, -0.00420021638, -0.00976916868, 0.00534333708, 0.0040009222, 0.0120178079, -0.0200647749, 0.0130105177, 0.000844649563, -0.0249230377, 0.00119670446, 0.0199444462, 0.0299467519, -0.0221404415, 0.0216892101, -0.0136873657, 0.0134316674, -0.00324886921, 0.0150410607, 0.00521548791, 0.00322066713, -0.0117921913, 0.00363053614, 0.00961123779, 0.024802709, 0.00323758833, -0.0103482502, -0.0027882366, 0.00351960817, -0.0349855088, -0.00252689817, 0.0198241174, -0.0070617781, -0.00401596306, 0.00510644028, -0.011431206, -0.000371326198, 0.00893439, 0.0366701074, 0.0267279651, -0.0162593871, 0.00625332119, 0.0189216547, -0.00579456892, 0.0380839668, -0.031375654, 0.0258405432, 0.00418517506, -0.021027403, 0.00372642279, -0.0083402684, 0.00304769492, 0.0158984, 0.00011316048, -0.0211928543, -0.00922769122, -0.012980436, -0.0028578015, -0.028292235, 0.00555015169, 0.00265850755, 0.00615179399, 0.00899455417, 0.0208469108, -0.0146875959, -0.02353926, 0.0382343754, 0.0115891378, 0.00203054328, -0.0172069743, 0.00137625705, 0.0326691829, 0.0124314371, -0.00462136604, 0.00888174679, -0.0206664186, 0.0138076935, 0.00828010403, -0.0108746868, 0.010701715, -0.00164887635, -0.0155524574, 0.0140709123, -0.0122359032, -0.0128601072, 0.00455744145, 0.0197940357, -0.00510268, 0.000113219234, 0.00664062845, -0.0241860263, -0.0167106185, 0.0236144662, -0.0174325891, 0.00125686871, 0.00722723, 0.0112657547, -0.00744908536, 0.000589891628, 0.0220050719, -0.00616683485, 0.0157630313, -0.00126532919, -0.00566295953, -0.00192901609, -0.0133113386, -0.000238424313, -0.00575696584, 0.0164549202, -0.0208920334, -0.00845307577, -0.0030439347, 0.00719338749, -0.00717458595, 0.0113108782, -0.00855836365, 0.0293601509, -0.0167707838, 0.000234194013, 0.0223961398, 0.00495602936, -0.00779126957, 0.0122885471, 0.00257014134, -0.00479433825, 0.0228172895, 0.0265474729, -0.00217531342, -0.00339927967, -0.00410997, 0.011822274, 0.0104836198, 0.00931793731, -0.00661054626, 0.00139223819, 0.0192375164, 0.00942322426, 0.0163947567, -0.0130255586, -0.0156126209, 0.0255848449, -0.0655790269, -0.00206062524, -0.00462136604, -0.00229376182, -0.0166203715, 0.0185757093, 0.0131007638, -0.0102655245, 0.0220953189, 0.00566671975, -0.00324510899, 0.0143266106, 0.014672555, 0.0107844407, -0.0128977094, 0.00531325489, 0.0233888496, -0.0205460899, -0.0151313068, -0.00367189897, -0.00698657287, 0.00825002231, -0.0032300679, -0.000831018609, -0.000217390334, 0.0110852616, 0.00598634221, -0.00521924812, -0.00252501806, -0.0130405994, 0.00620443746, 0.00768598216, 0.027419854, -0.012108054, 0.0150937047, -0.00132079318, 0.00423029857, -0.0189366955, -0.00911488291, -0.000248412514, -0.00550502818, 0.0131609282, 0.00806200877, -0.0238551218, -0.00707681896, 0.00812217314, -0.00257766177, -0.00994966179, -0.0044747158, -0.0074340445, -0.0333009101, -0.0160036888, -0.00465896865, 0.0164248385, -0.0194480922, 0.00455744145, -0.0208469108, 0.00155392964, 0.00903967768, -0.00997974351, -0.00983685348, -0.0329700038, -0.00651653949, -0.010558825, 0.0134166265, -0.000547588628, -0.0216140039, -0.0137550505, -0.0269535817, 0.0340529606, -0.0276605114, -0.0056554391, -0.0200948566, 0.00270927115, -0.00816729572, -0.0124840802, 0.00084934989, 0.0146575142, -0.00355157047, 0.00594121916, 0.0126119293, 0.021027403, 0.0152365947, 0.0232835617, 0.0124163954, -0.00825754274, -0.00928033423, 0.0139205018, 0.0203355141, 0.00497107068, 0.00862604845, 0.00124182762, -0.0245018881, 0.00200986187, 0.0122659849, -0.0300971624, -0.0090697594, -0.000430080341, 0.0249230377, -0.00367753929, -0.00558023341, -0.0022561592, 0.00836283, 0.0139806662, 0.0359180532, -0.0221404415, 0.0172520969, -0.0127999429, -0.00150974654, -0.00717458595, 0.0229827408, 0.00741900317, 0.0142589258, 0.00908480119, 0.029841464, 0.00303829438, 0.0100925518, -0.0132511742, -0.0155374156, -0.0108897286, 0.00475673564, -0.0186057929, 0.000499175221, -0.0150937047, 0.00954355299, 0.0180943962, -0.00139223819, 0.00327331084, -0.00703545613, -0.0284576882, -0.0166504551, -0.00643757405, -0.00846059714, 0.0104309758, 0.0194330513, -0.0166654959, 0.000301526277, -0.00619691703, -0.00181808823, -0.0134542286, 0.00219975505, 0.00705049746, 0.0188765321, 0.0297813, -0.0296609718, -0.00464392733, 0.00388059369, 0.00187261205, 0.0193277635, -0.0176882874, 0.00485450262, 0.00485074194, 0.0172220152, -0.0255246796, -0.0102580031, -0.00624956097, 0.00360985473, -0.00411749026, 0.00702417549, 0.00251373742, 0.00451607862, 0.00191115483, 0.034774933, -0.0128225042, 0.0103933727, -0.0110476594, 0.00796424132, 0.00085358019, 0.0223209336, 0.00172220147, -0.00256638112, -0.00435062684, 0.00160939351, -0.0117470687, -0.0124088749, -0.0128074633, 0.0132135721, -0.0105813863, 0.0022561592, 0.00602394482, 0.0123261493, 0.00374898454, 0.0121907797, -0.00315110222, 0.00885918457, -0.0212078951, 0.000885542482, 0.0143416515, 0.015259156, -0.00591865741, 0.0152290743, 0.0391067602, 0.00326579041, 0.00946834777, 0.00423029857, -0.0136497626, -0.00692264829, -0.016184181, 0.00726859272, -0.000305991591, 0.0251636952, -0.00861100759, -0.0133263804, -0.00720466813, -0.000254287937, -0.0209822804, 0.00736259948, 0.00111585867, 0.0031285407, 0.0297211371, 0.000196003821, -0.0177033283, -0.00262842537, 0.0110627, 0.00971652567, 0.0283524, -0.0306687225, -0.00521548791, -0.0239453688, 0.0107317967, 0.0166805368, 0.0218697023, 0.00791911874, 0.0159585662, 0.0285328925, -0.00697529223, 0.0234189313, 0.020049734, -0.0265023485, 0.00831770711, 0.00594121916, 0.00346132414, -0.00598634221, -0.00505379634, -0.0042716614, 0.00274687377, -0.00384675129, -0.000863920955, -0.0106265098, 0.000745472556, 0.0210424438, -0.00689632632, -0.00943826605, -0.0200948566, -0.0142664462, 0.0139054609, -0.0246823803, 0.00422653789, 0.0178386979, -0.00489210524, 0.0043731886, -0.0063586086, -0.00780631043, 0.0117245074, 0.0199444462, -0.0194631331, -0.0110025359, 0.0168309473, 0.00391443633, -0.00332595455, -0.0148380063, -0.00357225188, 0.0232685208, -0.0149357738, 0.00805448834, -0.0209070742, -0.00405356614, -0.0258856658, -0.0202753507, 0.0122885471, 0.010506181, -0.0118297944, -0.00395579915, 0.00196849881, 0.00366625865, 0.0292398222, -0.003814789, 0.00303641427, -0.0238400809, 0.0015971727, 0.00878397934, -0.0166955777, 0.0028747227, -0.00172408158, 0.00918256771, 0.00845307577, -0.0165000446, -0.0218396205, -0.00267354865, 0.000618563616, 0.006223239, -0.0065955054, 0.0104836198, 0.0155524574, -0.0302174911, -0.0235843826, 0.00509515917, -0.0142138023, 0.00149188528, -0.00850572, 0.0104084145, -0.0232233983, -0.0101451958, -0.00865613, 0.0234640557, -0.024216108, -0.00445215404, -0.0167707838, -0.0144093363, -0.00922769122, -0.0330903344, -0.0117395483, -0.0136873657, 0.00288600358, -0.026442185, 0.00510268, -0.00341432076, -0.00202678307, 0.0218245797, -0.00174006273, -0.0114913704, 0.00666695042, -0.00333911553, 0.000103818573, -0.00327143073, 0.00426790118, 0.0337521397, -0.00639997143, -0.0117621096, -0.0463866331, -0.00284276041, -0.00377342617, -0.0208017863, 0.00220539561, -0.00744156493, -0.00819737837, -0.009205129, -0.0110326186, -0.00281267846, -0.0152441151, -0.0180643145, -0.00212454982, 0.00289916457, -0.0045687221, -0.00317178364, -0.00364933745, -0.0150260199, -0.00856588408, 0.0131985312, -0.00107825606, -0.000475673558, -0.0126194498, -0.00854332279, 0.0320073776, -0.00849819928, 0.0177033283, -0.031676475, 0.00989701785, 0.00431302423, -0.0124013545, -0.00348012545, 0.00454616081, 0.00973156653, -0.0232083574, -0.00162067427, 0.00372078246, 0.00438070903, 0.0101000722, -0.0220351536, -0.0142062819, -0.00346320425, 0.00248177513, -0.000394592818, 0.0691888779, 0.0200948566, 0.017913904, -0.0208920334, 0.00543358317, 0.0145371854, 0.00196849881, 0.0337220579, -0.0246673394, -0.00407612743, 0.0106866742, 0.0158833601, 0.00465520844, 0.00969396345, 0.0102580031, 0.0032469891, 0.0152290743, 0.0130481208, 0.00549750775, -0.015402046, -0.004068607, -0.0208769925, 0.0145447059, -0.0154321287, -0.00538093969, -0.0157780722, -0.000820677902, 0.00384299108, -0.0330000892, 0.0116643431, -0.0202302262, 0.0262165684, 0.0138152149, -0.0048394613, -0.009205129, 0.0139656253, 0.0148229655, 0.0176130831, 0.00335227652, -0.014386775, 0.0177033283, 0.0360383801, 0.00620819768, -0.0125292037, 0.00114218052, 0.00894943159, 0.003899395, 0.00234452542, -0.00998726487, -0.00547118578, 0.0250132848, -0.0239002462, -0.00961123779, -0.00541102188, 0.012303588, -0.0186659563, 0.0254043527, 0.0113560008, 0.00717834616, 0.0272544026, 0.00309845852, -0.008866705, -0.0106716324, 0.000422559795, 0.00634732749, -0.0224563032, 0.0196436252, 0.00488834502, 0.00967892259, -0.00175604387, -0.00664814888, -0.00914496463, -0.000628904381, 0.0153794847, 0.00938562211, 0.0219599493, -0.0191472713, 0.0107393172, -0.0100699905, -0.0275401827, -0.0131609282, 0.00600138353, 0.00585473282, -0.020726582, -0.00412125047, -0.0203655958, -0.0205009654, -0.00694145, -0.00715954509, 0.0115139317, 0.00385803217, 0.0092728138, 0.000279904751, -0.0193428043, 0.0231030695, 0.0135369552, -0.0182297658, 0.0166354142, 0.00624204, 0.00368129974, 0.0072648325, -0.0106039476, 0.0164097976, 0.00229376182, -0.00628716359, 0.0338423885, 0.00764837954, -0.00140821934, 0.0129954768, 0.015687827, 0.0022035155, -0.00427542161, 0.00140069879, 0.0187712442, 0.00768974237, 0.00875389762, 0.00911488291, 0.00532077532, 0.0285028107, -0.00407988764, 0.00847563799, -0.00505003612, -0.00933297817, -0.00561407581, -0.00661806669, -0.000402818405, 0.0173423439, 0.00776118739, 0.0183952171, -0.00705801789, 0.00926529337, -0.0110326186, 0.0123411901, 0.012589368, 0.0168911107, 0.0120779723, -0.00931041688, -0.00492218696, 0.00339551945, 0.016274428, -0.00447095558, 0.000978609081, 0.0151313068, 0.0166354142, -0.00994966179, -0.0125592863, 0.00663310802, -0.00367001886, 0.0154321287, -0.00743780471, 0.00811465271, -0.0200948566, -0.00775366696, -0.00225239876, 0.00099365, 0.0048394613, 0.00885166414, -0.0299016293, 0.00569304172, -0.00893439, 0.00832522754, 0.00853580236, 0.00559151452, -0.00553135, 0.00154358882, -0.00801688526, -0.00880654156, 0.000103994833, -0.000750642968, -0.0143717341, 0.0237648766, 0.0283524, -0.00380350836, 0.00304017449, 0.00298941089, -0.00952851214, -0.0179439858, 0.000861100736, 0.0176130831, -0.0107694, -0.0075694141, 0.000317272381, 6.13393277e-05, 0.0559226647, 0.00198165979, 0.00712570269, -2.95606787e-06, -0.00964132, 0.017146809, -0.0104535371, -0.0337822214, -0.00186979189, -0.0164097976, -0.0122058205, -0.00657294365, -0.0100098262, 0.00456120167, -0.0229376182, 0.000786365476, -0.00200986187, 0.0153042795, -0.000917034689, 0.0121306153, -0.00439198967, 0.026351938, 0.0225916728, 0.00936306082, -0.00458376342, -0.00402724417, 0.0288186725, -0.0117621096]
24 Nov, 2021
jQWidgets jqxScrollView width Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that presents at the bottom of the jqxScrollView widget. The width property is used to set or return the width of the jqxScrollView widget. It accepts Number/String type values and its default value is 320. Syntax: Set the width property. $('selector').jqxScrollView({ width: Number/String }); Return the width property. var width = $('selector').jqxScrollView('width'); Linked Files: Download jQWidgets from the link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> The below example illustrates the jqxScrollView width property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView width Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired.png" alt="GetHired"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring.png" alt="hiring"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade.png" alt="upgrade"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg.png" alt="gethiredgfg"> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0] }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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 slideShow Property/jQWidgets jqxScrollView width Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-width-property/?ref=next_article
PHP
jQWidgets jqxScrollView width Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxScrollView width Property, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView slideShow Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.00173872011, 0.055030968, -0.0127005177, 0.0387787297, 0.0810400769, -0.00314921699, 0.0324492, 0.0322557203, -0.0138613917, 0.00483352132, -0.00907278527, 0.0400225222, 0.00970159192, -0.0207575373, -0.0159896612, 0.010910836, -0.0296022929, 0.0107519068, -0.0500834323, 0.039276246, 0.0145385684, -0.00935609359, -0.0652853549, -0.00477824127, -0.0558878034, 0.0327256, 0.0151466448, 0.0209095571, -0.0175098535, 0.0105169676, -0.0192235243, 0.0135780824, -0.0109937554, 0.0187121872, -0.0595362671, -0.00571108656, -0.00483352132, 0.014345089, -0.0191820655, -0.000583892106, -0.0181455705, 0.02209807, -0.0035655424, 0.0209371969, 0.0073383837, 0.0131565752, 0.00295573799, 0.00960485265, -0.0205778778, 0.00840942841, -0.0177447926, 0.0141377905, 0.00489571085, 0.0262025911, -0.00153055741, -0.0194031838, 0.0178000722, 0.0449976958, 0.00349817029, 0.0153401243, 0.032311, -0.0681599, -0.00813303, -0.00170676154, -0.0157547221, 0.0181455705, -0.0188503861, 0.0362082198, -0.0332783945, 0.0144832889, -0.0142483497, 0.0151466448, 0.0113392537, 0.0219736919, 0.00717254449, 0.00376247638, -0.0294088144, -0.00616023457, 0.0105653377, 0.012921636, -0.0269765072, 0.00212654192, -0.0559707247, -0.00593911577, -0.0255945139, 0.0144556481, 0.0312054064, -0.0329743586, 0.043781545, -0.00847161841, -0.0400225222, -0.00427035894, -0.00114359939, -0.0144832889, 0.00657137763, 0.00078255363, -0.0158100016, 0.0282617602, -0.0254701339, 0.00651609758, 0.0488396399, 0.0255115945, 0.0066681169, -0.0208957363, -0.00367264682, -0.0113461642, 0.0389445685, -0.00977760181, 0.00867200736, -0.0305144098, 0.0309290066, -0.017965911, -0.000567049079, -0.00720018428, -0.0799897611, 0.0327808782, -0.0200665407, -0.0275569446, 0.0292982552, -0.00189160311, 0.00594602572, 0.00086374575, -0.00862363726, 0.0160449408, -0.0218769517, 0.0319240429, -0.00488189096, 0.00219391426, 0.0291047767, -0.0243230797, 0.00719327433, 0.0340523124, -0.00910042506, -0.0115465531, 0.00731074391, 0.0221533496, 0.0328361578, 0.0194170047, -0.0250969958, -0.00454330258, -0.0325873978, -0.00856835768, 0.00703780027, 0.0173992943, -0.00835414883, 0.0441685021, 0.0162246, 0.0199559815, -0.0385299698, 0.03023801, -0.0257465336, -0.0438644625, 0.000377672812, 0.0380877331, 0.0422613509, -0.0178138912, -0.0146214878, 0.0420678705, -0.0172472745, 0.00416670926, 0.00266379188, -0.0326426774, 0.0286348984, 0.0165700987, -0.00911424495, -0.0099849, 0.0333336741, -0.0119887907, -0.0588729084, 0.0231898446, -0.0163766183, -0.00449147774, -0.00495099043, 0.00982597098, -0.0252075549, -0.0392486043, 0.0157685429, -0.0273772851, -0.017703332, -0.0101783797, -0.0174822137, -0.0138406614, 0.0186569076, 0.00680286158, -0.0101023698, -0.00762860244, 0.0248205978, 0.0264928099, -0.0248758774, -0.0356277823, -0.0291876961, 0.0194170047, 0.0187121872, 0.0421784297, 0.00336515345, -0.0511337481, -0.0216972921, -0.00841633882, -0.00630879868, -0.01603112, 0.0176756922, -0.0181317497, -0.0140894204, 0.0186292678, 0.0129630957, 0.0168603174, -0.0150360856, -0.0471259654, 0.0497241132, -0.0111941444, -0.0060013053, 0.00802938, 0.0438921042, -0.0243369, -0.0248482376, 0.0083886981, 0.0176618733, -0.0040250551, -0.00682359142, 0.00827122945, 0.00307320734, -0.00251868251, -0.024806777, 0.00643663341, -0.0864574909, -0.00803629, -0.0081123, -0.0017413114, 0.0128663564, 0.00737984339, -0.0386958085, -0.022208631, -0.0259814709, 0.0362635, 0.0485632382, 0.0370097756, -0.000997626339, 0.0372861773, -0.0381982923, 0.00916952454, 0.00671994174, -0.0526815802, -0.0101023698, -0.00628115889, 0.0162246, 0.0188227464, -0.034494549, 0.00480933627, 0.0112217842, 0.00268452172, -0.00961867254, 0.0176342335, -0.00175167632, -0.0178829916, 0.0180211905, 0.00413215952, 0.00554179261, -0.0011695117, 0.0196243022, 0.0221118908, 0.0185463484, -0.00771843176, -0.0177586116, -0.0081814, 0.0168188568, 0.0259952918, 0.0334718749, -0.0368439369, 0.047153607, -0.054395251, 0.010786457, -0.0339417532, 0.0527921394, 0.00770461187, -0.0467666499, 0.0252628345, -0.0363464206, -0.0278609823, 0.024157241, 0.00859599747, 0.0147735067, -0.00658865226, 0.0310948454, 0.0830301493, 0.00195724773, -0.00175513129, 0.0193340853, -0.0112217842, 0.00906587485, 0.0383364893, -0.0179382712, -0.0368439369, 0.00887930579, 0.0199007019, 0.0146353077, -0.018864207, 0.00726928422, -0.00771152182, -0.0322280824, -0.0166944768, -0.0311501268, -0.0222639106, -0.0259538312, -0.0162384193, 0.0204673186, 0.0125761377, 0.0146491276, -0.0430352688, 0.0077668014, -0.0125554083, 0.0665015131, -0.00215763692, -0.0122997388, -0.046490252, -0.017178176, 0.0101300096, 0.0279577225, 0.0131911244, -0.0314541645, 0.00138026569, 0.0122928293, -0.0286901779, -0.0156718027, 0.0156165231, 0.0347709469, -0.0130114658, -0.014980806, -0.000660765509, -0.00999872, -0.0231898446, -0.0295193736, -0.00237184577, 0.0259952918, -0.00526539376, 0.0332507566, -0.0269765072, -0.00278817117, -0.0138061121, -0.0185601674, 0.0209924765, 0.00253423, -0.00662320247, 0.0120648006, -0.0213517938, 0.0261611305, -0.0631847307, -0.0335547924, 0.014469468, 0.0463520512, -0.0022129165, 0.00122133642, 0.0438368246, 0.0365122594, 0.0436986238, -0.000647809298, 0.0122237299, -0.0336100757, -0.0193202645, -0.026879767, -0.0392486043, -0.014020321, -0.00587001583, 0.00044310157, -0.00658174232, 0.0236873627, -0.00793264061, -0.0358489044, -0.00892076548, -0.0110075753, 0.0114567233, -0.00318722171, -0.020536419, -0.02209807, 0.0325597599, -0.0141239706, 0.0239637624, 0.003423888, -0.0175927728, -0.0212826952, 0.0103787687, -0.0132049443, 0.0522946231, -0.0148426071, 0.0299892519, -0.00454675732, -0.00337379077, -0.0161831398, -0.0301827304, 0.0412939563, 0.0192235243, -0.0503874719, 0.0465455316, 0.00537595339, -0.0439750217, -0.00287454575, 0.00135867205, 0.00427381368, -0.021310335, 0.00483006611, 0.00283481344, 0.000898295548, -0.0447489396, 0.0179244522, -0.0230792854, 0.029712854, -0.00706198532, -0.0313712433, -0.02222245, 0.027653683, -0.0280406419, 0.00645390805, 0.0073522036, -0.0276675038, 0.050111074, 0.0463520512, 0.0190576855, 0.0299616121, 0.0381982923, 0.0116294725, -0.00936991349, 0.00362773216, -0.0239637624, -0.0025929648, 0.00805011, -0.0538424551, 0.00183286844, -0.0797686428, 0.0370374173, 0.026603369, 0.0204396788, -0.0330019966, 0.0209095571, 0.0326703191, 0.00963249244, 0.0346880294, 0.000511337479, 0.0413768739, 0.0214623548, -0.00049103942, -0.0274463836, -0.0291600563, 0.000223710143, 0.0147182271, -0.00793264061, -0.00420471421, 0.00909351464, -0.0265204497, -0.0301827304, 0.00106758974, 0.0137715619, -0.00974996202, -0.0323939212, -0.0306802485, -0.0105446074, -0.00435327832, -0.00430836389, -0.00903823506, -0.00780826155, 0.00382466614, -0.0152019253, -0.0303485692, -0.0223191902, -0.0188089274, 0.00429454399, 0.0129285464, -0.0280130021, -0.0209233761, 0.0176618733, -0.00994344056, 0.0219184123, -0.067054309, 0.0231760256, 0.0163351595, 0.0568828396, 0.0160725806, -0.0073522036, -0.00120319775, -0.00102267496, -0.00981215108, 0.0060324003, 0.055307366, 0.00702052517, -0.00457785232, -0.0134260636, 0.00963940192, -0.0295470133, 0.0102820294, -0.0139028514, 0.00183459593, 0.00748349307, 0.0253042951, 0.0145662082, -0.0205225982, -0.00201771013, -0.0216558333, 0.0285243392, -0.00194688293, -0.0137231918, 0.00420471421, 0.0224573892, -0.00515137939, 0.0427588671, -0.0147873266, 0.0164042581, 0.0295193736, 0.000196610126, -0.0232727658, -0.0100885499, 0.00847161841, -0.0304591302, 0.0260505714, 0.00254977751, -0.0486185215, -0.0166391972, -0.0166115575, -0.0491160378, -0.0301550906, -0.025055537, 0.0193893649, -0.00419434905, 0.0161278602, 0.0198039617, 0.0146905873, 0.00612913957, 0.0481486432, 0.0417914726, -0.029464094, -0.0144141885, -0.00392140541, 0.0430352688, -0.0289112963, -0.00514792465, 0.0154921431, 0.0115880128, -0.0338864736, -0.00489916559, -0.00753877265, -0.0107933665, 0.00325113884, 0.022485029, -0.00446383795, 0.00401814515, -0.0356001444, -0.024406, 0.0240052212, 0.00931463391, -0.0019088781, -0.0050926446, -0.00128525367, 0.0272529051, 0.0460203737, 0.00930772442, 0.00179831858, -0.000190347972, 0.00965322275, 0.00594257051, 0.0040112352, -0.0221809912, -0.00236148085, -0.0293811746, 0.00185187079, 0.00031418752, 0.0115949223, 0.0175513141, 0.0190576855, -0.00979833119, -0.00384194101, 0.0076078726, -0.0402989201, 0.0290771369, 0.0295470133, 0.00719327433, -0.00119110534, -0.00832650904, 0.0108071864, -0.00721400417, 0.0447489396, -0.031398885, 0.01007473, 0.0122859189, 0.0172334556, -0.0294917338, -0.0014485016, 0.0237841029, 0.00822285935, 0.0152710248, 0.00100453629, -0.0318411216, -0.0549480468, -0.0198868811, -0.00903823506, 0.0358489044, -0.00319758663, 0.00673030689, -0.00220255158, -0.00121529028, -0.012009521, 7.63335265e-05, 0.00563853234, -0.0433945842, 0.0272390861, 0.0239499416, 0.0325044803, 0.0162384193, -0.0255254135, 0.00524120918, 0.0151328249, 0.0425653905, 0.00175254012, -0.0198177826, -0.0216005538, -0.00197797781, 0.032946717, 0.00360700209, -0.00636062352, -0.00395941036, -0.0129976459, 0.0183528699, 0.00471950648, -0.00106154347, 0.0157409031, -0.000306845672, 0.0104755079, -0.0131565752, 0.0345498286, 0.00746276323, -0.014593848, -0.0143312691, -0.00693415059, -0.0234662443, 0.00961176213, 0.0152710248, -0.0281788409, 0.000567049079, 0.0274740234, 0.0133500537, -0.0080086505, 0.0146629475, -0.0237426423, 0.00203498499, 0.012721247, 0.0358212627, -0.0163075197, 0.0491989553, -0.00355517748, 0.0102682095, -0.0161140412, 0.025055537, 0.0155612435, 0.00506500481, 0.00519629428, 0.0168879572, -0.00123861141, 0.00375902141, 0.000896568061, 0.0344116315, -0.00109263835, -0.000967395201, -0.0022129165, 0.0319240429, -0.0230516456, -0.0112563344, 0.0218354929, 0.0192235243, 0.0149669861, -0.0373690948, 0.0269903261, 0.0393591672, 0.00827122945, 0.0139857708, 0.0143865487, -0.00373138161, 0.0388063677, 0.0118575012, -0.0055245175, -0.0181732103, -0.0175927728, -0.00744894333, 0.0254701339, 0.0271561649, 0.0108071864, 0.0251799151, 0.00801556, 0.0170676149, 0.00351717253, -0.0199421607, -0.0215452742, 0.0130874757, 0.0207298975, 0.00938373338, 0.00916261505, 0.0158376414, 0.0220151506, 0.0195966624, 0.0105722481, 0.00497172028, 0.0237979218, 0.011173415, 0.00206953473, -0.02209807, -0.0152572049, -0.00816758, -0.025829453, 0.00430145394, 0.0105584282, 0.0256774332, 0.00379357114, 0.0333889537, -0.0235215239, 0.0017680875, 0.0242954399, 0.0342181511, -0.0230792854, 0.0567722805, 0.0245303791, -0.0202738401, -0.0149117066, 0.00116519304, -0.0323662795, -0.00140876928, 0.0229134466, 0.00735911354, 0.00538631855, -0.0278886221, -0.0114083532, -0.0189609472, 0.0324768387, -0.0259952918, -0.0110697653, 0.0026724292, -0.0018086835, 0.0136817321, 0.0144832889, -0.0192926247, 0.000987261417, 0.0372861773, -0.00930081401, 0.0084370682, -0.0227476079, -0.0171367154, -0.0158238225, -0.0406858772, 0.0114636337, -0.00219391426, -0.00277780625, -0.037203256, 0.013232585, -0.00461585727, -0.01208553, -0.0127972569, -0.00427726889, -0.0238255616, 0.0209648367, -0.0243092608, 0.0145247485, 0.00389031088, 0.0153263044, 0.0132947741, 0.0211997759, -0.00581473624, -0.00591838593, 0.0271699857, -0.0347156674, 0.0114636337, 0.0438644625, 0.0163351595, -0.0463244095, -0.0130183753, 0.025193736, -0.0369544961, -0.00133794209, -0.00678213127, 0.0403818414, -0.0107795466, -0.00530685391, 0.0216281936, -0.0141101498, -0.010586068, 0.0149393464, 0.0011695117, -0.00320276921, 0.00809157, 0.00752495276, -0.00736602349, 0.00901059527, 0.00600821525, 0.00282790349, 0.0132533144, 0.0105031477, 0.00962558202, 0.00943210348, -0.00640208321, -0.00283999601, -0.00426690374, 0.00167653046, 0.00728310412, -0.0234662443, 0.00211099465, 0.0329190791, -0.0307078883, -0.0035517225, -0.00873419642, 0.0275984034, 0.0305420496, -0.000375297532, -0.0237011835, -0.00629152404, 0.00250659022, -0.0274878442, -0.0213656146, -0.0217249319, 0.0116018327, -0.0193340853, 0.000562298461, -0.0132947741, -0.0218907725, 0.0124793984, -0.0147596868, 0.0218493119, 0.00712417485, -0.0194584634, 0.0137853818, 0.013308594, -0.0248758774, -0.0365951806, 0.0249726158, 0.00245649274, 0.0151051851, 0.0473470874, 0.00080760225, -0.00348089519, 0.0172334556, -0.0606971383, 0.00992271118, -0.0139166713, 0.00234766095, 0.0192235243, 0.0146491276, -0.0138475718, 0.00793264061, 0.00739366328, 0.00411488488, -0.0241434202, 0.00394904567, 0.0293811746, 0.0119404206, 0.0084992582, 0.0194722842, 0.0199836213, -0.00822285935, 0.014856427, -0.00515828934, 0.0201080013, 0.0216420125, -0.0182975903, 0.0141654303, -0.0207851771, 0.0123411994, 0.00170244288, -0.00904514547, -0.0357383415, -0.017965911, 0.0161278602, -0.0233695041, 0.0125899576, -0.00742821349, -0.0209786557, -0.0208957363, -0.019499924, -0.0153263044, -0.00253768498, 0.00431872858, 0.0348815061, -0.00881020632, 0.00119801529, -0.00504773, -0.0289112963, 0.0140963299, -0.00164629938, -0.0157409031, 0.0238393825, -0.00185705337, -0.0541188531, 0.0167359374, -0.0226646885, 0.0260505714, -0.0359871, -0.0259400122, 0.0121339, 0.00492680585, -0.0185048878, -0.00170330657, 0.0305144098, -0.0352961048, -0.00503391027, 0.0287454575, -0.0166115575, -0.0186154488, 0.0195690226, 0.0203429386, 0.0174269341, -0.0224021096, 0.0186292678, -0.0356830619, -0.00546923792, -0.0181455705, -0.00823667925, 0.0375349335, -0.00354481256, 0.00623278925, 0.0469877683, 0.00990198087, -0.0278748013, -0.000988988904, 0.0165009983, 0.00725546433, -0.00791191123, 0.046904847, 0.00193997286, -0.0342457891, -0.0352684669, -0.00652991794, 0.0168603174, 0.0255945139, -0.0062569743, -0.00344634545, -0.0228858069, -0.0162522402, -0.027778063, -0.00273116399, 0.018601628, 0.0250831768, 0.0482592024, -0.0237288233, -0.0451911762, -0.00583892129, -0.00541050313, 0.00559016224, -0.0140548702, 0.0388616472, 0.041984953, 0.0138544813, -0.0152572049, 0.0089000361, 0.00413215952, -0.0261611305, -0.0396079235, 0.0064469981, -0.0333613157, 0.0212550554, 0.00898295548, -0.00110818574, 0.0151328249, 0.0177447926, 0.0429247096, -0.0271561649, -0.0148702469, 0.0270870663, -0.0164595395, 0.0127488868, 0.00553142745, -0.0453017354, -0.0147182271, 0.0177862514, -0.00451566279, 0.00884475652, 0.0124448482, 0.00790500082, 0.0148149664, -0.00779444166, 0.00307838968, -0.00499590533, 0.0451911762, 0.0014079056, -0.000530771737, 0.025718892, -0.00743512344, -0.0338864736, 0.0248205978, -0.0229549073, 0.0176756922, -0.0198039617, 0.0228858069, 0.00193824538, 0.0300445314, -0.0130874757, 0.008851666, -0.0185739882, -0.0265895482, 0.0300445314, 0.017827712, -0.0264651701, -0.000723387056, -0.017703332, -0.000503563788, 0.0122306393, 0.0275707636, -0.00273634656, -0.0161693208, -0.0206055176, -0.025843272, -0.00228547119, 0.025718892, 9.12331452e-05, 0.0314818062, 0.0137646524, -0.017689513, 0.0230378266, -0.00040272146, 0.00245822035, -0.0244612787, -0.0117676714, -0.00188814814, 0.000209890219, 0.0401330814, -0.0110628549, 0.00456403242, 0.022084251, 0.00664738705, -0.00365537195, 0.0359318219, -0.0123895686, 0.0325597599, -0.0391933247, 0.00590456603, 0.00900368579, -0.0237150025, -0.0159205608, 0.0084370682, 0.0125415884, 0.0210892148, -0.00580437109, -0.00314230705, -0.00396632031, -0.00858908799, -0.00517210923, -0.00357245235, -0.0165009983, 0.00365882693, -0.0365122594, 0.0138337519, 0.0161002204, 0.00293155294, -0.000126430779, 0.0117123919, -0.00923862401, -0.00245994795, 0.0025463223, -0.0128870867, -0.0190438665, 0.00137940189, 0.0129700061, 0.00858908799, -0.000532067381, 0.0121960901, -0.0218631327, 0.00182768598, -0.0353237465, 0.00308357226, 0.0257603526, -0.00467113685, 0.0139926812, 0.0188780259, 0.00312848715, -0.00879638642, 0.00907969475, -0.0132602248, 0.00217491179, -0.00386267086, 0.00834032893, -0.0154230436, 0.0231069252, -0.00509955501, 0.00043295254, 0.0110835852, -0.00759405224, 0.0121062603, -0.00983288139, 0.00782899093, -0.0136195431, 0.0254563149, 0.00706889527, -0.0040907, -0.00936300401, 0.0171090756, -0.00674067158, 0.0257465336, -0.0050926446, -0.0101852892, 0.00758023234, 0.000513496809, 0.00738675334, 0.00286936341, 0.00607386, -0.025055537, -0.0253595747, -0.0272805449, 0.0750145912, -0.000967395201, 0.00180522853, -0.00674067158, -0.0015046451, -0.0342734307, -0.00581819145, 0.0245580189, 0.02841378, 0.00183114095, 0.0289942175, 0.013432974, 0.0185187086, -0.012203, -0.0146491276, -0.0114014437, -0.000512201223, 0.000533362967, 0.0270732455, -0.030099811, -0.024157241, 0.0330019966, -0.0149669861, -0.0145800281, 0.0311777666, 0.0122651896, -0.0432287455, -0.0100816404, -0.0365399, 0.0102612991, 0.0262855105, 0.013308594, 0.0243645404, 0.00664738705, -0.0190715063, 0.0291600563, -0.0178000722, 0.0206193384, -0.0369544961, -0.0193479043, -0.0306526087, -0.00853380747, 0.0109039266, -0.00734529365, 0.00901059527, -0.0239223018, -0.0223330092, -0.0198868811, -0.0183114093, 0.0312883258, -0.0358212627, -0.00542086829, -0.0264098886, -0.00481624622, 0.00324768387, 0.0123481089, -0.000109587738, -0.0147735067, 0.0169017762, -0.0574909151, -0.00514792465, -0.00387303578, -0.0148287863, 0.027515484, -0.00680286158, 0.00220600655, -0.00762860244, 0.0154506834, -0.0144141885, 0.0360976607, 0.0356830619, 0.0116778426, -0.00947356317, 0.00480242632, -0.0272529051, 0.00756641245, -0.0106206173, 0.00501663517, 0.0217940323, -0.0207437184, -0.02209807, 0.012272099, -0.0113254339, 0.0102889389, -0.0246132985, 0.00640899315, -0.00997108, -0.00758023234, -0.0212412346, 0.00410451973, -0.0127627067, -0.0108555565, -0.00802247, 0.00957030244, 0.0142483497, -0.00963249244, 0.0325321183, -0.0110904956, -0.00764933228, -0.0149255265, 0.00425999379, 0.00449147774, 0.0108624659, 0.00124984, -0.0141792502, -0.0219322313, 0.00942519307, 0.019375544, -0.0158652812, 0.0285243392, 0.00997108, 0.0106758969, 0.0055245175, 0.0180211905, 0.0299339723, -0.00331160123, 0.011622563, -0.0262164101, -0.00145368406, 0.00554870255, -0.0214070734, 0.00846470799, 0.0100332703, -0.00114100811, 0.00788427144, -0.00612913957, -0.0152986646, 0.0125139486, 0.0222639106, -0.0204535, -0.0307631679, 0.00820903946, -0.00599439535, 0.0297404937, -0.0158376414, 0.00638135336, -0.0119957011, 0.0212274157, 0.0147735067, -0.000101814025, -0.0104202284, 0.0123204691, -0.00207126234, -0.022084251, 0.028551979, 0.0535936952, -0.000165083402, 0.00462622195, 0.00104772358, 0.00831959862, -0.0445831, -0.00409415457, 0.0188227464, -0.00565235224, 0.0107449973, -0.0167497564, -0.00943901297, 0.015243385, -0.0256359726, -0.0168741364, 0.0254839547, 0.030099811, -0.00873419642, -0.00108054595, 0.0146076679, -0.00437055342, 0.00778062176, -0.022208631, 0.00190542312, -0.00453639263, -0.00437746337, -0.00832650904, 0.0263684299, 0.00151069125, 0.0162107795, -0.00413561473, 0.00119542412, 0.00871346705, 0.0253457539, 0.0029781952, -0.00523429923, -0.00825741, -0.00710344501, 0.00282272114, -0.00506846, -0.00493717054, 0.000866768823, -0.0145109287, 0.0190991461, -0.00118937786, -0.0214761738, 0.0265480895, 0.0312330462, 0.00790500082, 0.0139512215, 0.000665084226, 0.003342696, -0.0196243022, -0.00453293743, 0.00747658312, 0.0116156526, 0.0083886981, 0.0318411216, 0.0135504426, -0.00576636661, 0.0075456826, -0.027778063, -0.0101922, 0.00508573465, -0.00185014331, 0.00861672778, -0.0318687633, 0.00319413166, -0.00297992281, -0.00363464211, 0.00346016535, 0.0093768239, -0.0167773962, 0.011373804, 0.00645390805, -0.0117400317, 0.00389376585, -0.0265204497, 0.00427726889, -0.00631916383, 0.0115396427, -0.0217940323, 0.00500972522, -0.00343252555, 0.0159620214, -0.00538286334, 0.0306802485, 0.0375625752, 0.0214761738, 0.00701016048, 0.00430145394, 0.0125070382, -0.0135780824, -0.00132757716, 0.0260782111, -0.00859599747, 0.0202738401, -0.00263787946, 0.021448534, 0.00661629252, -7.04492631e-05, 0.0181041099, -0.029712854, -0.0080432, 0.0258156322, 0.0119887907, 0.0281373803, 0.0118022216, -0.0285243392, 0.0216834731, 0.0013232585, 0.0048888009, 0.00494062575, -0.00455712248, -0.0160587598, -0.00213690684, 0.00307320734, -0.00434291363, -0.0108140968, -0.024032861, -0.0143312691, -0.00151414622, 0.0146629475, -0.0144280083, -0.0168879572, -0.00492680585, 0.0307908077, 0.00503391027, -0.00467459206, 0.0139304912, -0.024157241, 0.0293535348, 0.0105376979, -0.0193617251, -0.0106966272, -0.0377836935, 0.0198592413, -0.0132878646, -0.0116502028, -0.0253457539, 0.0153539442, -0.00546232797, 0.00949429348, -0.00198143278, 0.00767006213, 0.0183943287, 0.0163213387, -0.00846470799, -0.00490607554, 7.04492631e-05, 0.0383917689, 0.00556597766, -0.0262578707, 0.00255841482, -0.0247238576, 0.0164595395, 0.00520320423, 0.00249622506, -0.0161831398, -0.0153263044, -0.0128525365, 0.0211306754, -0.0177447926, 0.0159620214, -0.0122513697, -0.0197210424, -0.0173578337, -0.0214623548, -0.0163351595, 0.0157547221, 0.0023252035, -0.00207471731, -0.019651942, -0.0181041099, -0.0207298975, -0.00240466814, -0.00448111305, -0.0439197421, 0.00742130354, 0.0156303421, -0.0173716545, 0.0017965911, -0.0377284139, 0.00671303179, -0.0199974403, -0.00602894509, -0.0166253783, -0.0201218203, 0.00659901742, -0.010586068, 0.0181593895, 0.00580437109, -0.0161831398, -0.000355215423, 0.00954266265, -0.0182423107, 0.0122997388, -0.0112839742, 0.0168879572, 0.0148978867, -0.00465386221, -0.00775989145, -0.00904514547, -0.0174545739, 0.000616714475, -0.00151328254, -0.000543296046, 0.0354343057, 0.0267139282, 0.00213863445, 0.0393315256, 0.00696524559, -0.00292464299, 0.00666120695, -0.00219045929, -0.00720018428, 0.00120060658, 0.0262302309, 0.00916952454, 0.00189160311, -0.0379495323, -0.00461240206, -0.0124033885, 0.00268106675, 0.0161278602, -0.0217111129, 0.0101645598, 0.00436709821, -0.0101783797, 0.00308184465, 0.0252490155, 0.0235353429, 0.00155301485, 0.0121753598, -0.00675449148, -0.0423442721, -0.0116709322, -0.0153954038, 0.00354135758, 0.00865127705, 0.0105376979, -0.00425653905, -0.0219598711, 0.00139581307, -0.002228464, 0.0298234131, 0.0116847521, 0.00883093663, -0.0104133189, -0.0126521476, 0.0136471828, -0.0102060195, -0.000518679328, -0.0249035172, -0.0106689874, -0.0055694324, -0.00518592959, -0.00294710044, 0.00764242234, 0.0278609823, -0.00107104471, 0.0144280083, -0.0141170602, -0.00823667925, -0.0107311774, -0.0163213387, 0.012921636, -0.017178176, -0.0170952547, 0.010275119, 0.000262578717, -0.0110144857, 0.0557496026, 0.000179767085, -0.0108348262, -0.0157823619, -0.0280268211, -0.0299892519, -0.0239637624, -0.00724164443, -0.0278333426, 0.0181317497, 0.0106206173, 0.00770461187, 0.0136402724, -0.0182284899, -0.003118122, 0.0146491276, 0.00473332638, 0.00851307809, -0.00720709423, -0.00710344501, -0.00505118491, -0.00621896936, 0.0309290066, -0.0316476449, 0.0114705432, 0.0216005538, -0.00729692401, -0.000906933041, -0.000108670007, 0.0040907, 0.0157132614, 0.0137922922, -0.000568344665, 0.0062224241, -0.00830577873, -0.0132187642, 0.0182423107, 0.00786354113, 0.00365882693, -0.00070654403, 0.00370719656, 0.0115120029, 0.0137853818, 0.0179935507, 0.00266724685, 0.000300367567, -0.00165925559, 0.0115120029, 0.0118713211, -0.00487843575, 0.00214208942, -0.0128663564, 0.00302138249, 0.0152019253, -0.024406, -0.00181559357, -0.00872728694, 0.0206607971, -0.00542432303, -0.0198868811, 0.00758023234, -0.017689513, 0.00258778222, 0.0137231918, 0.0123066492, 0.00736602349, 0.00581819145, 0.0164180789, 0.00470914179, 0.00576636661, -0.00728310412, -0.00495444564, -0.00923171453, 0.0145800281, 0.0142345298, -0.00328223384, -0.00671994174, 0.0234109648, 0.00431181863, -0.0127350669, 0.0251246355, -0.0279162619, -0.00241157808, -0.0127281575, 0.00963940192, 0.00422889926, -0.0259400122, 0.00725546433, 0.00997108, 0.00589420088, -0.006716487, 0.00456403242, 0.0222639106, -0.00280717365, -0.00724164443, -0.0155612435, 0.0262025911, 0.0202047396, -0.00200216263, -0.0198316015, -0.00136558199, -0.00470914179, 0.00566962687, 0.0148287863, 0.000684518483, 0.0109315664, -0.0431734659, 0.0117814913, -0.00934918411, 0.00099849, -0.0080708405, 0.0365122594, -0.00320795155, 0.0185739882, 0.00296783028, -0.0048853457, 0.00564544229, -0.00799483061, -0.0201080013, 0.0111043155, -0.00819522, 0.00441201311, 0.0156718027, -0.019513743, 0.00261887698, -0.0207575373, -0.0158238225, -0.013508983, 0.00407342473, 0.00279680872, -0.0206331573, -0.0178829916, -0.018864207, -0.0098674316, 0.00744894333, -0.0185739882, 0.0303209294, 0.0129769156, 0.00755259255, 0.00210753968, 0.00270352419, -0.0158514623, 0.0104685985, -6.89377048e-05, -0.00698252069, -0.00993653107, 0.0123204691, 0.00410451973, 0.0163351595, 0.00153833115, -0.00301101757, 0.000901750522, -0.0314265229, -0.00677522132, -0.0159205608, 0.0161555, 0.0120578902, 0.00968086254, 0.0301827304, 0.00218009413, -0.00698943064, -0.019513743, -0.00830577873, 0.0271838065, -0.00105204235, 0.00494408049, -0.00122220023, 0.00420125946, -0.00503736502, 0.00251004519, 0.0182008501, -0.011560373, -0.0179935507, 0.0121753598, 0.00760096265, -0.0252351947, 0.00529994396, 0.00543814292, 0.000749299419, -0.0029937427, -0.00316130929, -0.00921789464, -0.0160725806, -0.00190024066, -0.00587692577, -0.00496135559, -0.00465731695, -0.00507537, -0.0136817321, -0.00703434506, 0.00285554328, -0.0100056306, -0.00649882294, -0.00112546072, -0.0364293382, 0.00153573987, 0.00396286556, 0.0199283417, -0.00500627048, 0.0247653183, 0.000824445277, 0.000397323049, 0.012859446, 0.01019911, 0.0159620214, -0.0114290835, -0.0118713211, 0.0256636124, 0.0161278602, 0.0194446445, -0.00692724064, -0.0335824341, -0.00150550879, -0.000663788582, 0.0269074067, 0.00392140541, -0.0135573531, 0.00736602349, 0.0265066288, -0.0106828073, 0.00280717365, 0.00391104072, -0.00675103674, -0.000336428959, 2.99611802e-05, -0.0375902131, 0.0078013516, 0.0112977941, 0.00744203338, 0.0158376414, -0.0171367154, -0.00943210348, 0.00799483061, -0.00770461187, 0.0204258598, -0.0097430516, -0.00242021563, 0.0120717101, -0.00744203338, 0.012783437, 0.0164733585, -0.0105446074, -0.0208128169, 0.00350162527, 0.0122168195, -0.00022543763, 0.0214208942, -0.0131842149, -0.00813994, 0.000567049079, 0.0137439221, 0.00298856013, -0.0313159637, 0.011049035, 0.0125554083, -0.0154921431, 0.00604622, 0.0211583152, 0.00712417485, 0.023908481, 0.00284172338, -0.0134122437, -0.00306629739, -0.0122513697, 1.46027014e-05, -0.0270041469, -0.0164871793, 0.0110144857, -0.0237011835, 0.00748349307, -0.0183666889, -0.00628461409, -0.00451566279, 0.01408251, 0.0182284899, 0.000403585203, 0.00121529028, 0.0159205608, 0.0148840668, -0.0122790094, 0.0197072234, 0.00452257274, 0.00504082, 0.0318687633, 0.00405960483, -0.0286348984, -0.013571173, 0.0162107795, -0.00928699411, 0.000987261417, -0.00464349706, -0.02039822, 0.00169466913, -0.0145662082, -0.00526539376, -0.0158791021, -0.00988816097, -0.0237011835, -0.0014744139, 0.00680631632, 0.0166944768, -0.0192788038, 0.0266724676, -0.00600821525, 0.00822285935, -0.000665516069, -0.00570072187, -0.0245165583, -0.012721247, 0.0120578902, -0.0195690226, 0.0124517586, -0.0143174492, -0.0165148191, 0.0263960697, -0.00684777601, -0.0188918468, -1.29966738e-05, 0.016791217, -0.0229134466, -0.000674585404, 0.00383848604, -0.026617188, 0.0223191902, 0.0309290066, -0.00752495276, -0.00535522355, -0.00441546831, 0.0109522957, 0.0230654664, 0.00963940192, -0.00862363726, 0.0287454575, 0.000564025948, 0.0106206173, 0.004488023, -0.0172610953, 0.00302656507, -0.0114014437, 0.0163351595, 0.00375902141, -0.0164180789, -0.00299547031, 0.0139097609, -0.0126659675, -0.00300238025, -0.00706889527, 0.00522047933, 0.00368301175, 0.00436364347, -0.00173094647, -0.0203014798, 0.00967395213, -0.0136817321, -0.0174269341, -0.00161174953, 0.00346016535, 0.0145109287, 0.00994344056, -0.00870655663, 0.0021179046, -0.00684086606, -0.00075707311, -0.0190162268, 0.0108901057, -0.000759232498, 0.0217802115, 0.0232727658, -0.0171090756, 0.0117676714, 0.00336342584, 0.0312054064, -0.00631570863, -0.00144418282, 0.00186741829, 0.0188780259, -0.0196657628, 0.0166253783, -0.00400087, -0.00843015872, -0.00649536774, 0.00630534394, 0.0123550193, -0.00598748541, -0.0297957733, -0.0169570558, -0.0161555, -0.00462276721, 0.0158238225, 0.00414943462, -0.00399050536, 0.00961176213, 0.0199283417, 0.00721400417, -0.00767697208, 0.00087367883, -0.00623278925, -0.0175236743, -0.016141681, 0.0174545739, -0.0111872349, -0.0122237299, -0.01420689, 0.0244474597, -0.0197486822, -0.00256705238, 0.00130684732, -0.0073383837, 0.00209371955, -0.00932154432, -0.0182284899, -0.0304591302, -0.00626388425, -0.00349644269, -0.0326426774, -0.00861672778, -0.0196934026, 0.0107519068, 0.00401814515, 0.00337379077, 0.00385230593, 0.00926626381, 0.010662077, 0.0175651331, 0.00820903946, 0.000926799141, -0.000537249842, -0.0123066492, 0.00269661425, -0.00483352132, -0.0243921801, 0.00088318, -0.00874801632, 0.0312883258, 0.00619478431, 0.002147272, -0.00261542201, 0.00186914578, 0.0151466448, -0.0058251014, -0.00453293743, -0.0230931062, 0.00747658312, 0.00253941235, 0.0208819173, 0.0101922, 0.0104271388, -0.00548305782, -0.00936991349, -0.00436364347, -0.00585619593, -0.0106828073, 0.000253509381, 0.0221118908, -0.00273980154, -0.000706975872, -0.00367264682, 0.020798998, -0.0208819173, -0.0218354929, -0.0185739882, 0.000407256099, -0.000807170407, 0.00375902141, 0.00127143366, -0.00421507936, 0.00266551925, -0.00227510626, -0.0113047045, 0.0133776935, 0.0143589089, 0.0237011835, -0.00226128637, 0.00858217757, -0.0118091321, -0.00664393231, -0.00119024166, 0.00728310412, -0.00056964031, -0.0275707636, -0.00519629428, -0.00861672778, 0.014980806, 0.000535522355, -0.0250140764, -0.00131116598, -0.025193736, -0.000118765041, 0.000827900309, 0.010973026, -0.000995898852, 0.0116156526, 0.00978451129, -0.00332023855, 0.0248344168, 0.0080708405, 0.00352753745, -0.00256532477, -0.0133362338, 0.00462276721, -0.0152710248, -0.000528180506, -0.0171919949, -0.000240121313, 0.0122582791, -0.0137231918, -0.0352961048, -0.0250140764, 0.0255115945, -0.0104271388, 0.00295919296, 0.0167773962, 0.0133431442, 0.0296299327, 0.00622933405, -0.00923862401, -0.002309656, 0.00383848604, -0.0132740447, -0.0149669861, -0.0312883258, -0.00249277, -0.0071172649, -0.025829453, 0.00861672778, -0.0182699505, 0.00621205941, 0.000988988904, -0.0123619288, -0.00224746647, 0.0104478681, 0.00628115889, 0.00954266265, 0.0350197069, 0.00285381591, 0.00648500305, 0.0120164305, 0.00641244836, -0.020536419, 0.0286348984, 0.00143986417, 0.00726237427, 0.00660247216, -0.00943901297, 0.0405200385, -0.0223744698, -0.00377629627, 0.00586310588, -0.0106828073, -0.000358022604, -0.0270041469, -0.0276260432, 0.00373483659, -0.00567308208, 0.0254563149, 0.0222639106, 0.00513410475, 0.0246271174, -0.0186569076, 0.0053310385, 0.0264928099, 0.0104478681, -0.0282341205, -0.00629497878, 0.0106758969, -0.00182077603, 0.00138026569, 0.0114705432, -0.000841720204, -0.0130460151, -0.0257741734, 0.0164733585, -0.00102440245, -0.00569726666, -0.00044828403, -0.00796719082, -0.021572914, -0.0219736919, -0.0198592413, 0.0121615399, -0.0131427553, 0.00829886924, -0.0058112815, 0.00831268914, 0.00154351362, 0.00965322275, 0.0172887351, 0.00594948046, -0.00430490868, -0.00767006213, -0.0154921431, -0.00178795366, -0.00648154784, -0.0203844, 0.00506155, 0.0299616121, -0.00916952454, -0.0084992582, 0.00384194101, 0.0001759882, -0.000710430846, 0.0252766553, 0.011622563, 0.00894149579, -0.00873419642, 0.0164733585, 0.0334718749, 0.00111595949, -0.0002608512, -0.00234247837, -0.0241848808, -0.00326323137, 0.00286936341, 0.006654297, -0.0084370682, 0.00218182174, -0.00280371867, 0.00370028662, 0.000703089, 0.00606004, 0.00744894333, 0.019651942, 0.0230516456, -0.0172334556, 0.0002418488, -0.0129630957, 0.0379218943, -0.00845779851, 0.00388685567, 0.00233556842, -0.00827813894, 0.0129078161, 0.00878947694, 0.00247895019, 0.0107657267, 0.00183977839, -0.0218907725, -0.0131151155, 0.0141447, 0.00149082509, 0.0106067974, 0.0173992943, -0.00453293743, -0.0132740447, -0.00732456381, -0.0224159285, 0.0142483497, -0.00226819632, -0.0131980348, 0.00760096265, -0.0292429756, -0.0286348984, 0.00142777164, -0.00574909151, 0.0150913652, -0.0271147061, 0.00264133443, -0.000436407543, 0.0126245078, -0.00285381591, 0.0151051851, 0.00659210747, 0.0119058713, 0.0186845474, 0.00569726666, 0.00908660516, 0.00244785543, 0.00149341638, -0.00740057323, 0.0106828073, 0.00455712248, 0.0199559815, 0.00293673552, -0.00689614611, -0.00618787436, 0.0179935507, -0.00989507139, 0.00029885603, 0.00655064778, -0.00540359318, 0.00227337866, -0.00242539798, 0.00825049914, -0.00990889128, 0.0156027032, -0.00538631855, 0.0108693764, 0.00972232223, -0.0283585, -0.0183805097, -0.00918334443, 0.0172196347, 0.004232354, -0.0154921431, 0.0189471263, -0.0128110768, 0.0150913652, 0.000634853088, 0.00183114095, 0.0186154488, -0.00189505809, -0.0172887351, 0.00990889128, 0.0189471263, -0.0112425145, -0.0136195431, -0.0126245078, 0.0241019614, 0.00449147774, -0.00872037653, 0.00471950648, 0.00152796623, 0.0118644116, 0.0055383374, -0.000720795826, 0.00199698, 0.0125415884, 0.0104271388, -0.0062258793, 0.00693069585, 0.00419780426, 0.00505809486, -0.0330572762, -0.0108901057, 0.00556252245, 0.00761478255, -0.010275119, -0.0139235808, 0.000535090454, 0.0042358092, -0.00803629, 0.00029367354, -0.0092939036, -0.0118920514, -0.0046780468, 0.0401330814, -0.0156027032, 0.0145800281, -0.0127765266, 0.00160224829, 0.00954957306, -0.00303347502, 0.00866509695, 0.00700670527, -0.00365537195, -0.0125899576, -0.00869273674, -0.00174994883, -0.00855453778, 0.0194722842, -0.00675794668, -0.0274463836, -1.90428946e-05, 0.00120838033, 0.00973614212, 0.0156579819, 0.0209786557, -0.00110386708, -0.00973614212, -0.0134606138, -0.00510646496, -0.0301827304, 0.0172196347, 0.00759405224, 0.00429454399, 0.00717254449, 0.0117538515, -0.0159343816, -0.00508573465, 0.00877565704, 0.00248758774, -0.00630879868, -0.00467459206, -0.00598748541, 0.0201080013, 0.0175789539, 0.00775989145, 0.0110283056, -0.00510300975, -0.00102612993, -0.00859599747, 0.0166253783, -0.0194584634, -0.00477133133, 0.0036622819, -0.0233695041, 0.0158100016, -0.0117331222, 0.00269661425, -0.0158791021, -0.00678558648, 0.00490953075, -0.00382121117, -0.0160725806, 0.00170589786, -0.00641935831, 0.0263269693, 0.00652991794, -0.0381706506, -0.00203671237, -0.00250831759, 0.000997626339, 0.0146214878, -0.0119404206, 0.0205225982, 0.0101576494, 0.004425833, -0.0220427904, 0.00123256515, 0.0172749143, -0.0027553488, 0.0084370682, 0.0104340483, -0.00925935432, -0.00602894509, -0.0156994425, 0.0149393464, -0.0111319553, 0.018601628, 0.00146664027, 0.00188987562, 0.00220427918, -0.0334442332, -0.0121408096, 0.0108486461, 0.00101144623, 0.0119887907, 0.00800174, -0.0208957363, 0.0026879767, -0.00358627224, -0.0118575012, 0.00474714674, 0.00606004, 0.0157685429, 0.000146728809, 0.0111595951, 0.0159205608, 0.0171228945, -0.00702398038, 0.00360700209, -0.0111526847, -0.0371203348, -0.00514792465, 0.00608768, 0.0158100016, -0.00611531967, 0.0191406049, -0.0198868811, 0.0129354559, -0.00426344899, 0.00112200575, -0.00191751553, 0.00305075, -0.0172334556, 0.00952193327, -0.00485770591, -0.00136817328, 0.00349126034, -0.0102198394, 0.00660592737, -0.00495099043, -0.0236873627, 0.00521702413, 0.0139857708, -0.000460376468, -0.0234247837, -0.006429723, -0.0169432368, -0.00636062352, -0.00142949913, 0.0265480895, 0.0216834731, -0.00132844097, 0.00196588528, 0.010399499, -0.0181179307, 0.027639864, -0.0259261914, 0.0203844, -0.00119456032, -0.00876874663, 0.0139857708, -0.0157547221, -0.0116502028, 0.0336100757, -0.00914879516, -0.00483352132, 0.00640553841, -0.014593848, 0.0193064455, -0.0291324165, -0.0143174492, -0.00979833119, 0.0156303421, 0.00901059527, 0.0113530736, -0.0144556481, -0.0184496082, 0.0348538682, 0.00863745715, 0.0103234891, -0.0395802855, 0.00689614611, 0.0387234502, -0.000364284759, 0.00391104072, 0.0181041099, 0.00311293965, 0.0167773962, 0.0119611509, 0.000296480721, 0.0243369, 0.0150775453, -0.0153539442, 0.0181041099, -0.0205916986, -0.011885141, 0.0023234759, 0.0183390491, 1.7376135e-06, 0.00587001583, 0.00737293344, -0.00688232621, -0.0342181511, 0.0153539442, -0.00852689799, -0.00778753171, 0.0140617806, 0.0143174492, -0.0204396788, 4.48338033e-05, 0.0215314534, -0.000919889193, 0.00431527384, -0.00301620015, -0.0104064085, -0.00204189494, -0.00650227768, -0.000203196178, -0.00444656285, 0.0071172649, -0.0154921431, 0.00511337491, 0.00119024166, -0.00793264061, -0.0147458669, -0.000390844943, -0.00600821525, 0.0286901779, 0.0127074271, -0.0107588172, 0.0259400122, 0.00852689799, -0.00907278527, 0.0246409383, 0.00150119013, -0.0057940064, 0.0197210424, 0.0227614269, -0.00931463391, -0.00567999203, -0.0139235808, 0.00516865449, -0.00634680362, 0.0238255616, -0.00592184067, 0.00114532688, 0.00680977153, -0.00219736923, 0.0252904743, -0.0124102989, -0.00399396, 0.0159620214, -0.0601996221, 0.00353617501, 0.01220991, 0.00455021253, -8.65365218e-05, 0.00699979533, 0.0273358244, -0.00239775819, 0.0412939563, 0.00290909573, 0.00247031287, 0.0193479043, 0.010786457, 0.0215038136, -0.0181179307, 0.00438091857, 0.012334289, -0.00316130929, -0.0228858069, -0.0132740447, 0.00763551239, 0.0166530181, 0.0156579819, -0.00630188873, 0.00374865648, 0.00030619785, 0.00894149579, -0.00867200736, -0.0146491276, -0.012921636, 0.0150637254, 0.0224021096, 0.0184357893, -0.018726008, 0.0140617806, 0.00571454177, 0.0114083532, -3.08249255e-05, -0.00695488043, -0.0218907725, 0.000586483337, -0.00788427144, 0.0131911244, -0.015119005, -0.0126936072, 0.010786457, -0.00498899538, -0.0122237299, 0.00108572841, 0.00040531269, -0.0189747661, 0.000347657653, -0.00794646051, 0.00406306, -0.00177931623, 0.00888621621, -0.0289665777, 0.00742130354, 0.0105584282, -0.00628806883, 0.00272943662, -0.0215314534, -0.0250140764, 0.00862363726, -0.000931117916, -0.0109315664, -0.0114221731, -0.00745585328, -0.0109937554, 0.0303762089, -0.0211306754, -0.00635716878, -0.020412039, -0.00859599747, -0.00300410762, -0.00483006611, 0.0112701543, 0.0147044072, 0.00373829156, -0.000392788381, 0.00199870765, -0.0108002769, 0.0223330092, 0.0128179863, 0.0101576494, 0.0071310848, -0.0229687262, 0.00594257051, 0.0222500898, 0.0143174492, 0.00766315218, 0.00991580077, -0.0203705784, -0.00693069585, -0.00393522577, -0.00904514547, -0.00179140863, -0.00952884275, -0.00232693111, 0.00167825795, 0.0138268415, 0.00277262391, 0.0216005538, 0.00330123608, 0.0401330814, -0.011373804, 0.0241434202, -0.00069401972, -0.0171090756, 0.00812612, 0.0197348632, 0.01627988, 0.00671994174, 0.0108624659, 0.0270179659, -0.00448456779, -0.0055728876, -0.0069237859, -0.00551069761, -0.00858217757, -0.00800174, -0.0157685429, -0.0183666889, -0.0150222657, 0.000676312891, 0.00683050137, 0.00559707219, 0.00267761177, 0.0113461642, -0.019513743, -0.019638123, -0.00147959648, -0.00525157386, 0.0169432368, 0.014593848, 0.00411142968, -0.00251868251, 0.00318549434, 0.00573872682, -0.0245856587, 0.00544159813, 0.00148737011, 0.0171919949, 0.0250002556, -0.0253733937, -0.0112217842, -0.00532412855, -0.0117676714, 0.0229549073, -0.010910836, 0.00694797048, -0.00558325229, 0.00611531967, -0.00680977153, -0.00595984561, -0.00650573289, -0.000639603706, -0.0135504426, -0.00570763182, 0.00468495674, -0.00535522355, -0.0078013516, 0.0269488674, -0.00932154432, 0.00226992369, 0.00778753171, 0.00898986589, 0.00737984339, 0.00273807393, 0.00821594894, 0.00347571285, -0.00587001583, -0.00584583124, -0.0138268415, 0.0011841954, -0.0180211905, 0.0150499055, -0.030099811, 0.00270006922, 0.00440164842, 0.000487152603, 0.00834032893, 0.0182146691, -0.00758714229, 0.0116087422, -0.0264513493, -0.00584237603, 0.013958131, 0.018477248, 0.00505464, 0.0130252857, 0.037452016, 0.00587347103, -0.000707839616, -0.00961176213, -0.0139235808, -0.00403542025, -0.000424531027, 0.0134882536, 0.00877565704, 0.0221948102, 0.000428633823, 0.0048715258, 0.00119974278, -0.0139650414, 0.000505291275, 0.020798998, 0.00110300328, -0.0153124845, 0.0236459039, 0.0162107795, -0.00277435128, -0.00727619417, 0.00226301374, -0.0010174925, 0.0108831963, -0.0205225982, -0.0166530181, -0.00105722481, 0.0161002204, 0.0144141885, 0.0195828434, 0.0115811024, 0.00598403, 0.0386681706, -0.0145523883, 0.00587001583, 0.0161969606, -0.0288283769, -0.00695488043, 0.011249424, 0.00621896936, -0.00570072187, -0.0100401808, 0.006654297, -0.00299028773, 0.0103856791, -0.00167221169, 0.000232779479, 0.0138130216, 0.0319240429, -0.00636407873, -0.0084370682, -0.0121200802, -0.0038039363, 0.006460818, -0.0278609823, 0.00999181066, 0.0135988127, 0.0098397918, 0.0027708963, -0.00643317821, -0.00589420088, 0.0262716897, 0.0107519068, -0.00883784611, -0.0101576494, 0.021572914, -0.0102474792, -0.0046331319, -0.0136264525, -0.00582164619, 0.00149514386, -0.00480588106, 0.0114843631, 0.00960485265, 0.00414252467, -0.0170952547, -0.0161140412, 0.00990889128, 0.00332542113, 0.00525157386, -0.0064780931, 0.000299287902, -0.0154230436, 0.0168188568, 0.0103096692, -0.000876701903, -0.0238670222, 0.00174476637, 0.00616023457, -0.00202980242, -0.00930772442, 0.00618787436, 0.0260229316, 0.0147458669, -0.0218493119, -0.0228167064, 0.00482315617, 0.00359318219, -0.00041006328, 0.000432520668, 0.0213794336, -0.00778753171, -0.0300721712, -0.0233280454, 0.0118160415, -0.00508228, -0.00354135758, -0.0100885499, 0.00563162239, -0.0299339723, -0.00295919296, -0.00789809134, 0.0280959215, -0.0242816191, -0.00360354711, -0.0160587598, -0.000925935397, -0.0307631679, -0.0137162823, 0.0168188568, -0.0152019253, 0.00543123297, -0.0151881045, 0.0122928293, -0.0161831398, 0.0114705432, 0.00692033069, -0.00971541181, -0.0195413828, 0.0187536478, 0.0162936989, -0.0053621335, -0.0105100581, -0.00225610379, 0.0183252301, -0.00483697606, -0.0131012956, -0.0442237817, 0.00585619593, -0.00280544604, 0.00566962687, -0.0155612435, -0.00551760755, -0.0164595395, -0.0153539442, 0.0104962382, -0.0181041099, -0.00308875483, -0.0155750634, -0.0116018327, -0.00840942841, -0.00444656285, 0.0106551675, -0.00877565704, -0.0119127808, -0.00248758774, 0.0131427553, 0.00630534394, -0.00698943064, -0.0180764701, -0.00613604952, 0.019499924, 0.00502354512, 0.0185739882, -0.0235353429, -0.00187432824, 0.0159758404, -0.00887930579, -0.00946665276, 0.0150775453, -0.00215245434, -0.0364846215, 0.0161693208, -0.00658174232, -0.0025325024, 0.0129976459, -0.0142483497, -0.00582855614, 0.00730383396, 0.000816239743, 0.00414597942, 0.0643456, 0.0146491276, 0.0315923654, -0.0100263609, 0.00229929108, -0.00213345187, 0.000826604664, 0.0293535348, -0.0180350114, 0.000578709645, 0.0057940064, 0.0247653183, -0.0107449973, 0.0039006758, 0.00918334443, 0.0114290835, 0.0261196718, 0.00231311098, -0.00293155294, -0.0178829916, -0.0120371608, -0.0106137078, 0.0147044072, -0.016791217, 0.00801556, -0.0041874391, 0.00673721684, -0.00259641977, -0.012009521, 0.0222362708, 0.00329087116, 0.00379011617, 0.00856835768, 0.000864177593, -0.00417707441, 0.00379702612, 0.0142483497, 0.0337482728, 0.000967395201, -0.0334995128, 0.008851666, 0.0201632809, 0.0152019253, 0.00027596677, -0.00261714961, -0.011822952, -0.00389031088, -0.00194515544, -0.00879638642, -0.00854762737, 0.0150499055, -0.0341352299, -0.0137992017, -0.00701016048, 0.0124655785, -0.0126936072, 0.0377836935, 0.0053621335, 0.016929416, 0.0127005177, 0.00378320622, 0.00188642065, -0.0158376414, 0.00559361745, -0.0119818812, -0.0215038136, 0.0098052416, -0.014732047, 0.0228996277, -0.00538977329, -0.0196657628, -0.0093284538, 0.0146767674, -0.00480242632, 0.00540704839, 0.0163351595, -0.00650573289, 0.0014476378, -0.00673721684, -0.0166391972, -0.0221257098, 0.00310084713, 0.00542086829, -0.0315370858, 0.00659556221, -0.00235975324, -0.00333751342, -0.00255841482, -0.0154921431, -1.14446311e-05, 0.00201425515, 0.01420689, 0.00996417087, -0.000682791, 0.00608077, 0.00383503106, -0.00984670129, 0.00904514547, 0.00158756471, 0.00681322627, -0.000957894, -0.00731765386, -0.00820212904, -0.00583546609, -0.00773225166, 0.0198730621, 0.00412179483, 0.0155336028, 0.00544159813, -0.000208702564, -0.0167359374, 0.000771756808, 0.0156303421, 0.0061015, 0.0143589089, 0.00965322275, 0.00524120918, 0.0035655424, 0.000304686313, -0.00787045155, 0.0184219684, -0.000776075525, -0.00847161841, -0.00616368931, -0.00581473624, -0.000999353826, 0.00431872858, 0.013819932, 0.0323662795, -0.00132757716, 0.00209371955, -0.00657483237, 0.000825309, 0.00119024166, 0.0216972921, 0.0274049249, -0.0114221731, -0.00242539798, 0.00550378766, 0.0142345298, -0.00793264061, 0.0158791021, 0.00913497526, 0.0198039617, -0.00708271516, 0.0101438295, 0.0156718027, 0.00479206117, 0.0432563871, -0.00547614787, 0.00361391203, -0.0246823989, -0.0171090756, 0.00707580522, -0.0148702469, 0.00816758, 0.0157961827, -0.0112148747, 0.0231069252, -0.0260643903, 0.0139235808, 0.000688405358, 0.0084854383, -0.00732456381, -0.00347053027, -0.0176065937, -0.0231898446, -0.0104824184, 0.0165977385, 0.001518465, 0.00859599747, 0.021324154, -0.00234247837, -0.0132394945, -0.0205640588, 0.00212481455, -0.0174683928, -0.00210581208, 0.00380739127, -0.0130114658, -0.0152019253, 0.0037728413, 0.014020321, 0.0530685373, 0.00268452172, 0.00205571484, -0.00102440245, -0.0137853818, 0.0203844, -0.0177862514, -0.0330849178, -0.0060013053, -0.010012541, -0.00758023234, 0.020536419, 0.0110006658, 0.0213517938, -0.00806393, 0.0110904956, -0.00335306092, 0.0203152988, -0.0112632448, 0.00874110684, -0.0201356411, 0.0121546304, 0.0241987, 0.00698252069, -0.0046953219, -0.00936300401, 0.0214347132, -0.00876183715]
24 Nov, 2021
jQWidgets jqxScrollView theme Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that are present at the bottom of the jqxScrollView widget. The theme property is used to set or return the theme for the jqxScrollView widget. It accepts string type value and its default value is empty (“”). To use this property, first, we need to include the theme stylesheet (jqx.energyblue.css) in the header section. The theme file includes after “jqx.base.css” file. Syntax: Set the theme property. $('selector').jqxScrollView({ theme: Number/String }); Return the theme property. var theme = $('selector').jqxScrollView('theme'); Linked Files: Download jQWidgets from the link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> The below example illustrates the jqxScrollView theme property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView theme Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired.png" alt="GetHired"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring.png" alt="hiring"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade.png" alt="upgrade"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg.png" alt="gethiredgfg"> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0], theme: 'energyblue' }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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 slideShow Property/jQWidgets jqxScrollView width Property/jQWidgets jqxScrollView theme Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-theme-property/?ref=next_article
PHP
jQWidgets jqxScrollView theme Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxScrollView width Property, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxScrollView theme Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView slideShow Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0329699889, 0.0358237438, -0.0128115425, 0.04620656, 0.0582894832, 0.017122535, 0.0198244955, 0.0133731859, -0.0157260168, -0.0149973985, 0.00795408525, 0.0115819983, 0.0166823287, -0.0134035451, 0.00239836937, 0.0222684033, -0.0372506231, -0.00592002552, -0.0555875227, 0.0257748812, -0.0134263141, -0.0235434864, -0.0647863299, 0.00232436904, -0.037584573, 0.0206138324, 0.0202798825, 0.0250918, -0.0264731403, 0.0312091596, -0.0211147573, 0.0159385297, 0.0247426704, 0.0204923954, -0.0652113557, -0.01901998, -0.016378738, 0.0107167643, -0.0190958772, -5.48479948e-05, -0.0177145377, 0.00223708665, 0.0203102417, 0.0121664116, -0.0153389378, 0.0199003927, 0.00278165308, -0.0134414937, 0.00856126752, -0.00238888222, -0.0141701121, 0.038161397, 0.00625018077, 0.0365220048, 0.00565817812, -0.0251373388, 0.0163180195, 0.0363398492, -0.0223139431, 0.00894075632, 0.0312091596, -0.0563768595, -0.0118476413, -0.00948722, -0.00309093646, 0.0260632914, -0.0117110247, 0.0234068707, -0.0479977466, 0.0092291683, -0.0107015846, 0.0218281969, -0.00756321196, 0.0353076383, 0.0186860301, -0.00385750388, -0.0113087669, 0.00135192892, -0.00601869263, 0.0103296861, -0.0261999089, 0.0122423097, -0.0521569438, 0.0228300467, -0.0136691872, 0.0251828786, 0.0368559547, -0.0457815304, 0.0596252829, 0.0140334964, -0.0298885386, -0.01728951, 0.0231639966, 0.017456485, -0.0138209825, -0.00784023944, 0.000501399627, 0.00962383673, -0.0432617255, 0.0112252794, 0.035064768, 0.0124168741, -0.0204164982, -0.0501228832, 0.0169252, 0.0242872853, 0.035277281, 0.00102556858, -0.0209477823, -0.0462976359, 0.0331217833, -0.0256838035, -0.0107698925, -0.0272624772, -0.0519444309, 0.0357933864, -0.00867511425, -0.0283250455, 0.0300706942, -0.00568853738, -0.0139879575, -0.0074949041, -0.00707367156, 0.0230122022, -0.0212665536, 0.0163939167, 0.000519425317, 0.00775295636, 0.0500014462, -8.8720335e-06, -0.00821213797, 0.0335771702, 0.0207959879, 0.009365784, 0.0217674784, 0.00852331892, 0.0107167643, 0.00799203478, -0.0358237438, -0.0173350498, -0.035398718, -0.0103904037, 0.00642854068, 0.00140126247, -0.0172136128, 0.0432010069, 0.0235434864, 0.0214790665, -0.03457902, 5.91468888e-05, -0.018853005, -0.0174261257, 0.00395427365, 0.032757476, 0.0251069795, 0.00198093173, -0.022814868, 0.0231488179, -0.0138513418, -0.00282908906, 0.001095774, -0.0168341249, 0.0365220048, -0.000758503273, 0.00374745205, 0.00163085316, 0.029994797, -0.00401119702, -0.0605664141, 0.0301465914, -0.00891039707, 0.00741141662, 0.0180333089, 0.0169403814, -0.0472691283, -0.017243972, 0.0354594365, -0.045963686, -0.017699359, -0.0200825483, -0.0452350676, 0.00226365076, 0.00690290146, 0.0210540388, 0.00751008373, 0.00359945139, 0.0107015846, 0.0157867353, -0.040104378, -0.0193539299, -0.0206441917, 0.0393757597, 0.0483013354, 0.0364916436, 0.0142080616, -0.0295545887, -0.0207656287, 0.00809070189, -0.0139803682, -0.0119083589, 0.0265490375, -0.0427759811, -0.000726246741, 0.0262150876, 0.0180940274, 0.0412883833, -0.0199914705, -0.0246667732, 0.0477245152, -0.0195816234, -0.00425027497, 0.0145192426, 0.0400740206, -0.0125534898, -0.0104587115, 0.0111417919, 0.0126066189, -0.022936305, -0.000878516643, 0.0275205299, -0.00982117094, 0.00737346755, -0.0069446452, 0.0107471235, -0.0873735, 0.00307006459, -0.00442863442, -0.0206138324, -0.00423889, 0.0232550744, -0.0407419205, -0.0180181284, -0.0173957683, -0.01051943, 0.061234314, 0.0464190729, -0.0176841784, 0.0221166089, -0.014215651, 0.020052189, 0.0149518596, -0.0738333464, -0.0304957218, -0.00755182747, 0.0157411955, 0.000264219096, 0.00176462298, -0.00560884457, 0.0185494144, 0.023756, -0.0189137235, -0.00721787754, -0.0076846485, 0.00184621313, 0.0228907652, 0.0499710888, -0.0144357551, -0.00391632458, 0.01728951, 0.0167734064, 0.0280214548, 0.0323628075, -0.0115212807, 0.0246819537, -0.00102082489, 0.0244542602, 0.0306323376, -0.0334860943, 0.0250614416, -0.0561643466, 0.0306323376, -0.0442028567, 0.0450832732, 0.0113543058, -0.0193539299, 0.00334139913, -0.0379792415, -0.0411669463, 0.0384649858, -0.020629013, 0.0187012088, 0.000155709, 0.0440510623, 0.0626611933, 0.00427683908, 0.00156823755, 0.0387989357, -0.0365220048, -0.0134870326, 0.0373720601, -0.0177145377, -0.0337896831, 0.0045121219, 0.00695223501, 0.0301921312, -0.0148380129, 0.00981358066, -0.0132138, -0.0193842892, -0.00708885118, 0.00546843372, -0.0178663339, -0.0236345641, 0.0180940274, 0.0100185052, 0.0536749, 0.0116654867, 0.00161662232, 0.00740382681, -0.0109368674, 0.0646648929, 0.0047512, -0.0131454924, -0.048270978, 0.00159290433, 0.0145192426, -0.00390493986, 0.0177904367, -0.00897870585, 0.0282946862, -0.00236990768, -0.0201584455, -0.0133883655, 0.0186556708, 0.0511854514, -0.0124472333, -0.0128494911, -0.0119311288, -0.0105118407, 0.022693431, -0.0321199335, -0.00169821247, 0.0326056778, 0.0147848846, 0.06411843, -0.00329775782, -0.0129633378, 0.0192780327, -0.0110127656, -0.00797685515, -0.00533561269, 0.00220103515, 0.0189744402, -0.0310573652, 0.0310877245, -0.0660006925, -0.017699359, 0.000103647886, 0.0548892617, -0.0047512, 0.00139177521, 0.0317859836, 0.0428367, 0.0008917987, 0.00655377191, -0.0100109149, 0.0103524551, -0.0316949077, -0.0168341249, 0.0062463861, -0.00334898871, -0.0105725583, 0.0411669463, -0.0136615979, 0.034457583, -0.0236952826, -0.0244542602, 0.00373037509, -0.0100109149, 0.0373113416, -0.00060196413, -0.0191565957, -0.0394061208, 0.0385560654, -0.0325146019, 0.0100488635, 0.0136919562, -0.00901665445, -0.0221166089, 0.0176538192, -0.00884967949, 0.0249703638, -0.00686115772, 0.0593824089, -0.0163028389, 0.0122878477, -0.00653100247, -0.0472387671, 0.0346701, -0.0191414151, -0.0457815304, 0.0273839124, -0.00203595753, -0.0368863121, -0.000210734885, -0.0140031371, 0.0190655179, -0.0114985108, 0.0239229742, 0.00788577739, 0.0184583366, -0.0370684676, 0.0115136905, -0.0190958772, -0.00263744732, -0.00329775782, -0.0187619273, -0.0346093811, 0.0190351587, -0.0207200889, -0.00431478769, -0.00104169676, -0.00111664587, 0.0496067777, 0.0142004713, 0.0409544334, 0.0110962531, 0.0738940611, 0.00919880904, -0.0246212352, 0.00780229, -0.0262302663, -0.032423526, 0.0328485519, -0.0306930561, 0.00669038808, -0.0497282147, 0.0186860301, 0.0218889154, 0.0143750366, -0.00213462464, 0.013471853, 0.00763531495, -0.00440586498, 0.0223898403, 0.0125155412, 0.030860031, -0.0101475306, -0.00740003213, -0.0086068064, -0.00425786432, -0.0154376049, 0.0115668196, -0.00906978268, -0.037584573, 0.00518761203, -0.0235131271, -0.00891798735, 0.0192628521, 0.0236193836, -0.0260784719, -0.0128039531, -0.0417437702, 0.013616059, 0.0157867353, 0.0119614871, -0.0154755544, 0.00726341596, 0.0224657375, -0.0227237903, -0.0199155733, -0.0049637137, 0.0102917366, -0.0193539299, 0.00396565814, -0.0313002393, -0.0122043602, 0.0344272256, -0.0188681837, 0.0253802128, -0.0532802306, -0.00283288397, 0.0321199335, 0.0617504194, 0.0051724324, -0.0170314573, 0.00596935907, 0.00929747615, 0.0177297182, 0.00418955646, 0.0467530228, 0.000679759367, 0.0331825, 0.013160672, 0.0188074652, -0.0105649689, 0.0263213441, -0.0240444113, -0.031816341, 0.015968889, 0.0150049878, 0.00552915223, -0.0403168909, -0.00540771568, -0.0147772944, 0.00941132288, -0.034457583, -0.0221469682, 0.0289625861, -0.000954414369, 0.00226934324, 0.0194601864, -0.0127128754, 0.0023964718, 0.0171377156, 0.00308903889, -0.0281580705, -0.0031687317, 0.0178056154, -0.0313913152, 0.0364309251, -0.00995019637, -0.0259722155, 0.00781747, -0.00815901, -0.0333646573, -0.0369470306, -0.00137944182, -0.00358616933, -0.0261240099, 0.0161965825, 0.0185342338, 0.0327878334, 0.00874342211, 0.0129177989, 0.0458726101, -0.00776054617, -0.00649684854, 0.017699359, 0.0188833643, -0.00670936238, -0.0127963629, 0.025577547, -0.0231488179, -0.0085688578, 0.0134111345, -0.0127735939, -0.0367345177, -0.00259570358, -0.000946824613, -0.0176538192, 0.0159992483, -0.0449921936, -0.0316341892, 0.0184127968, 0.0128419017, -0.0047929436, -0.0148911411, -0.00139462145, 0.0160447881, 0.0268526282, 0.0136615979, 0.0151719628, 0.00063137454, -0.0145040629, 0.00739244232, -0.0169859193, -0.0119083589, -0.0263972431, -0.0253043137, -0.00398463244, 0.0130164661, 0.0306323376, 0.000915042416, 0.0345183, -0.0166216101, -0.00394668384, 0.0182154626, -0.0129633378, -0.0152554503, 0.0234372299, -0.00725962128, 0.0108837392, -0.00224088156, 0.00606802618, 0.00273611443, 0.0581680462, -0.00825008657, -0.000378777273, 0.0232398957, -0.0113694854, -0.0301465914, 0.0245605167, 0.0397097096, -0.00186139264, 0.00330345, -0.0034172968, -0.0169100221, -0.0317556262, -0.00727100577, -0.00242493348, 0.0361880548, 0.0111493813, 0.00487643154, 0.0134111345, -0.011718615, -0.00242493348, 0.0118172821, 0.00743039092, -0.0287197139, 0.0275053494, 0.0136767775, 0.00989706814, 0.0335164517, -0.00760116102, 0.00270575518, 0.0178663339, 0.00273801177, 0.00916086, 0.00606802618, -0.00920639839, 0.0086068064, 0.0387685783, 0.00255965209, -0.00970732421, 0.0142080616, -0.00879655126, 0.0433528, 0.0125079518, -0.0163939167, 0.00442863442, 0.00569233252, 0.0174413063, -0.0128494911, 0.0345486626, 0.00693326071, -0.017532384, -0.00555951102, -0.00226554833, -0.0386775, 0.00481571304, 0.0186708495, -0.0387685783, 0.0100260945, 0.00909255166, 0.0101854801, -0.0101019926, 0.0173198693, -0.0105118407, 0.00266780634, 0.0279303771, 0.0119387181, -0.00763911, 0.0542820804, -0.0101171723, 0.0275357086, 0.0109672267, 0.032180652, 0.0153996563, 0.0010483379, 0.0058137686, 0.020173626, 0.000258526765, 0.0119159492, 0.00969214458, 0.0133200577, -0.00575684523, -0.0106560457, -0.00407570973, 0.0255623665, -0.0137526747, 0.00753664784, 0.0322413705, -0.000218917616, 0.0259418562, -0.0141169839, 0.0357933864, 0.040802639, -0.000194962384, 0.0128874406, 0.00453489134, 0.00118210772, 0.00597694889, 0.0132745188, 0.00639438676, -0.020173626, -0.0167430472, 0.0148380129, 0.0127432346, 0.0326056778, -0.00229401, 0.0258507784, 0.0367041603, 0.00859162677, 0.00429960852, -0.0339718387, -0.0217371192, 0.0161206853, 0.0106712254, 0.0239229742, 0.000297187187, 0.00773398206, 0.0301921312, 0.0234979484, -0.00975286309, -0.0261240099, 0.00185664906, -0.0014714679, -0.0213120915, -0.0310421847, 0.0020928809, -0.0258052405, -0.0335771702, 0.0405901223, 0.0128570814, 0.0119159492, 0.00813624, 0.0241051298, -0.017410947, -0.000309757743, 0.030738594, 0.00954793859, -0.0208567064, 0.068915166, 0.0163331982, -0.00489920052, -0.00963901635, -0.00407570973, -0.0252132379, 0.00330534764, 0.0149518596, 0.0111797405, -0.012128463, -0.0262302663, -0.0153844766, -0.0245149769, 0.0238774363, -0.0384649858, -0.00062568218, 0.00917604, -0.011574409, 0.0229970217, 0.0263668839, -0.00162800704, -0.0102158394, 0.0413794592, 0.00406053057, -0.00967696495, -0.0186253116, -0.00830321573, -0.0119766667, -0.0245605167, -0.000498553447, 0.00736208307, -0.00572648644, -0.0411669463, 0.00887244847, -0.0137906233, 0.00271144765, -0.0390418097, 0.000132465313, -0.0273687337, 0.0197030604, -0.0482102595, 0.0096466057, -0.00648166891, -0.0148683721, -0.00253688265, 0.0212210156, 0.00126844132, -0.0038518114, 0.0458422489, -0.0386167839, 0.0213879906, 0.0177752562, 0.0254864693, -0.0521265827, -0.0136540076, 0.0285223797, -0.00928988587, -0.0100412741, -0.0109596374, 0.0453565046, -0.0152630406, -0.0142232412, 0.0214335285, -0.00297898729, -0.0042123259, 0.00213082973, 0.0197485983, -0.00185475161, 0.0326056778, 0.0397097096, -0.00508515025, 0.0120449755, -0.00723685184, 0.0170769971, 0.0140410867, 0.00900906418, 0.0137450853, 0.00890280772, 0.0083639333, 0.00206062431, 0.0151416035, 0.0202647038, 0.0101019926, -0.020097727, 0.0365220048, 0.0244087204, -0.0241658483, -0.0116275372, -0.017699359, 0.0276571456, 0.0142687792, 0.0162724797, -0.010663636, -0.0267160125, -0.013494622, -0.00900906418, -0.00839429256, -0.0218889154, -0.0186404902, -0.0182002839, -0.00637541199, -0.0144964727, -0.00875101238, 0.0155742215, -0.0132896984, 0.00711921044, 0.0145268319, -0.0262758061, 0.0179422311, 0.0178056154, -0.00947963074, -0.0417741276, 0.0419562832, -0.015346528, 0.0234068707, 0.0163939167, -0.00658033602, 0.00507756043, 0.0115061011, -0.0557393171, 0.0247426704, -0.0043223775, -0.0172591507, 0.0280518141, 0.0117717432, -0.00162800704, 0.0239229742, 0.00316114188, 0.00713818474, -0.0269285273, 0.0178815126, 0.00927470718, 0.0295545887, -1.9033736e-05, 0.0331217833, 0.0137906233, 0.0173046906, 0.0114833312, -0.00314785982, 0.0151567832, 0.0364309251, -0.0262454469, 0.0360666178, -0.0079464959, 0.0239988733, 0.00264124223, -0.00811347086, -0.0255168285, 0.0160599668, 0.0163180195, 0.0103296861, 0.00921398867, -0.0144053958, -0.0132365702, -0.00218585553, -0.0390721671, -0.0249551851, -0.0109065091, -0.0122119505, 0.0330307074, 0.000337507867, 0.00530904857, -0.0117869228, -0.0185797717, -0.00669038808, 0.00656515639, -0.000673592673, 0.021615684, -0.0378881618, -0.0376149304, 0.0150353471, -0.0117110247, 0.0250462629, -0.0229514837, -0.0207808074, 0.0202647038, 0.00829562545, -0.0332432203, 0.00813624, -0.00267349882, -0.0375542119, -0.0113391262, 0.017669, -0.00312888529, -0.0330003463, -0.00441345479, 0.0339718387, 0.0212817322, -0.0159385297, 0.00675869593, -0.0339414813, -0.00344006624, -0.0216915812, -0.00896352623, 0.0284313019, -0.00901665445, 0.00451591704, 0.0316341892, 0.0203102417, -0.0229970217, -0.0197030604, 0.00222759927, -0.0137754446, -0.00899388455, 0.0338200442, 0.0171073563, -0.0299188979, -0.00736208307, -0.0126673365, 0.0145116523, 0.0223291218, 0.00957829785, -0.0239988733, -0.0494246222, -0.0136843668, -0.0333039388, 0.0129709281, 0.00865993463, 0.0209781416, 0.0421384387, -0.00791613664, -0.0256686229, -0.0218585562, 0.0061932574, 0.0313609578, -0.0378881618, 0.0138058029, 0.0629647821, 0.0354897939, -0.0260025747, -0.00827285647, -0.00318201375, -0.040104378, -0.0406204835, 0.01256108, -0.0345486626, -0.00340970699, 0.0218585562, 0.00274370424, 0.0300403349, 0.0130316457, 0.0440207, -0.0142991384, -0.0181092061, 0.0179877691, 0.00135003147, 0.0193387493, -0.00598074356, -0.0351254866, -0.00928229652, 0.030617157, 0.0109672267, -0.0193235707, 0.00152175012, 0.0248185694, -0.00130069791, -0.0182154626, -0.00954034925, 0.00407191506, 0.0382221155, -0.0223898403, -0.00399601739, -0.00251980568, 0.0111949202, -0.0213120915, 0.00991983805, -0.0201888047, 0.0157563761, -0.00574925542, 0.0156045798, -0.00288221752, 0.0171680748, -0.0144964727, 0.00576823, 0.00357478461, -0.0230122022, 0.0382828303, 0.0283250455, 0.00546084391, -0.000400835066, 0.00212324, 0.00107869692, -0.00634884788, 0.0387382172, 0.0224202, -0.0177600775, -0.0335468128, -0.0244390797, -0.00365068251, 0.0173654091, 0.0206441917, 0.0421687961, 0.0182761811, -0.0125383101, 0.00142308313, 0.0231639966, 0.00416299235, -0.0269285273, -0.0105118407, -0.0229514837, 0.0216005035, 0.0346397385, -0.00530145876, 0.01155164, 0.00200939318, 0.0242721047, 0.00925952755, 0.017532384, -0.000286039693, 0.0193235707, -0.0350344069, 0.00673213182, 0.0184735153, 0.0016023916, -0.00639059162, 0.0151036549, -0.00459560938, 0.0200066511, 0.00986670889, 0.000492386753, -0.0159992483, 0.00587828178, 0.00743418606, -0.0026260626, -0.0350951254, -0.00865234528, -0.0161055047, 0.0245605167, -0.00650823303, 0.0236042049, 0.0114150234, 0.00606423151, 0.00480053341, -0.0179877691, 0.00910773128, 0.00634884788, -0.0229970217, 0.0128494911, -0.0119159492, -0.0111266123, 0.00633366825, 0.00676628575, 0.00092405529, 0.0142080616, -0.0217674784, 0.0250310823, 0.0198548548, -0.00343057886, 0.000821118942, -0.00378160598, -0.00825767685, -0.0144509338, 0.0285223797, -0.016257301, 0.00133200572, 0.00302642328, 0.0302224904, -0.0102613773, 0.00780987972, 0.000142782665, -0.00683838874, 0.0184583366, -0.00582135841, 0.0309662875, 0.0113694854, 0.00929747615, -0.0257748812, 0.0347611755, -0.0041136588, -0.00508135511, -0.0185038745, -0.00825008657, -0.00185190549, 0.0107547129, -0.0304350033, 0.00168398162, -0.00594279496, -0.00131113385, -0.0017722128, 0.00993501768, 0.00305488496, -0.0286893547, -0.0214031693, -0.00802998338, 0.0884057134, 0.0132669294, -0.00565817812, -0.0242417455, -0.0299644377, -0.0260025747, -0.00629571965, 0.013471853, 0.0291143823, -0.00557848578, 0.0355808735, 0.0342754312, -0.0117034353, -0.00824249722, -0.00656136172, -0.0090242438, -0.00589346141, 0.0219648127, 0.010830611, -0.0400436595, -0.0233765114, 0.0218281969, 0.00356150256, -0.00989706814, 0.0185038745, 0.0238015391, -0.0257597, -0.0278544798, -0.0283705834, 0.0200218298, 0.0396186337, 0.0168341249, 0.037918523, 0.00626156572, -0.0104663018, 0.0235283077, -0.0246212352, 0.0135629307, -0.0339111201, -0.0293724351, -0.0157411955, 0.0025273955, 0.00585551234, -9.06622518e-05, 0.00842465181, -0.0275812466, -0.014071445, -0.016211763, 0.0108685596, 0.0397400707, -0.00848537, -0.0191262364, -0.0242265668, -0.0179725904, -0.009965376, 0.0135629307, 0.00101323519, -0.0203557797, 0.0288259704, -0.0251069795, -0.00437930087, -0.00422750553, 0.01901998, 0.0127432346, -0.0127660036, 0.00562781934, -0.0302983876, 0.0268526282, -0.0201888047, 0.0391936041, 0.0290384851, 0.0100185052, -0.0121891806, -0.00236421544, -0.0255927257, 0.0161662232, -0.00623500114, -0.013494622, 0.0117110247, -0.0153389378, -0.0129633378, -0.0191414151, 0.00753285317, 0.00421612058, -0.0233765114, 0.0131682623, -0.029584948, 0.00247806194, -0.0143067287, 0.00734310877, -0.0286589954, -0.00795408525, -0.0215246063, 0.00363929779, -0.00404535094, -0.0310421847, 0.0275812466, 0.00178739231, -0.00918362942, -0.0213272721, 0.0248185694, 0.0141397538, 0.0154679641, -0.00687633734, -0.0146862175, -0.0134035451, 0.0119235385, 0.0142611898, -0.0185797717, 0.0175475627, 0.0135932891, 0.00512309885, -0.010397994, 0.0149973985, -0.00644372031, -0.00178549485, 0.000319956511, -0.0163180195, 0.00136710843, 0.00648546405, -0.027975915, -0.00648925873, 0.00810588151, 0.00218206062, 0.0139955478, 0.00900147483, -0.00495612388, 0.0256989822, 0.00943409186, -0.0141397538, -0.0149290897, -0.00100374792, 0.00882691, 0.0118248714, -0.00869029388, -0.00802998338, -0.024135489, 0.0101019926, 0.00415540254, 0.0381006785, -0.00244390802, -0.00359755405, -0.0226175338, 0.0170162786, 0.0415616147, 0.0243480019, -0.0129026202, 0.0075859814, 0.0103069162, -0.00253688265, -0.040225815, -0.0173805878, 0.00818936899, -0.00234334357, 0.0270803217, -0.0159992483, 0.000675490126, -0.00625397591, -0.00628813, -0.0152858095, 0.00065509259, 0.0220255312, 0.0122878477, 0.00640956638, 0.0163331982, -0.0013566725, 0.0100716334, -0.0209174231, 0.0238015391, -0.000184526434, -0.0175475627, -0.012007026, 0.00988188852, -0.00718372315, 0.00329396292, -0.0101475306, 0.0301314127, 0.00469807163, 0.0171528943, 0.0122802584, 0.00638679694, -0.000909824448, -0.00306816702, 0.0125914393, -0.00451971171, -0.00855367817, -0.0169859193, -0.0114453826, 0.00617807778, -0.00609838543, -0.029843, 0.0464190729, 0.0150049878, 0.00748351961, -0.0047512, 0.0108685596, 0.00397704262, -0.0234675892, 0.00116313319, 0.00257672905, -0.0034533483, 0.0189744402, 0.0203557797, 0.0188833643, -0.00956311822, 0.0265793968, -0.0175172035, -0.00762393046, 0.00781747, -0.012318207, 0.0214487072, -0.0311788023, -0.00251221587, -0.000321142405, 0.00376832392, 0.00265452429, 0.0167278666, -0.0166216101, -0.00774536701, 0.00656515639, -0.0141625227, 0.0118931793, -0.0350040495, -0.00219913782, -0.0123713352, 0.0132441595, -0.0240595918, -0.00137849315, -0.0118931793, 0.00390873477, 0.00047104049, 0.020629013, 0.0155894011, 0.00762772514, 0.0143067287, -0.000589156407, -0.00784782879, -0.0168189444, -0.00726341596, 0.0117337946, -0.0177904367, 0.00480053341, 0.021539785, 0.0243935417, 0.00714197941, -0.000107205589, 0.0308296718, -0.0241203085, -0.000743798097, 0.0239685141, 0.00510033, 0.0138665214, 0.0332735814, -0.00879655126, 0.0167734064, 0.00803757273, -0.013471853, -0.00432617264, -0.011407434, -0.0191717744, -0.00260898564, 0.00546843372, -0.0111721512, 0.000599592342, -0.0261999089, -0.0163939167, -0.015513503, -0.0147621147, -0.0454779416, -0.0102917366, 0.00366586191, 0.0122498991, 0.00843983144, -0.021084398, 0.0296608452, -0.0188833643, 0.029994797, -0.00439827563, -0.00170959719, -0.00841706246, -0.0195968021, 0.0143902162, -0.00329206558, 0.00356909237, -0.0267311931, 0.0277482215, -0.0069066966, 0.0147545254, -0.0145040629, 0.00689531164, 0.0242265668, 0.0283705834, -0.0206745509, -0.0180636682, -0.000302879518, 0.0296760257, 0.00385940121, -0.0150125781, -0.00863716565, -0.0234068707, 0.00787818804, -0.00533561269, -0.00588966627, -0.00775295636, -0.0231184587, -0.00715715904, -0.000527963799, -0.00792372692, 0.0167734064, -0.0183520801, -0.0316645466, -0.0134035451, -0.00328827067, 0.00735828839, 0.0145192426, -0.00544186961, 0.00284996093, -0.0163331982, -0.0312091596, -0.0135857, -0.0137830339, -0.0210388601, -0.0367952362, 0.0225871745, 0.0159840696, -0.0283402242, -0.00299985916, -0.0143750366, 0.0178966932, -0.00158910942, 0.0128039531, -0.0189592615, -0.00906219333, 0.0156804789, 0.00577582, 0.0184886958, 0.00900147483, -0.009365784, -0.00959347747, 0.00818177871, -0.00751767354, -0.000864285801, -0.0242265668, 0.0300251562, 0.000774631568, -0.00762393046, -0.0178207941, -0.0141777024, -0.00858403742, -0.00897111557, 0.0150429364, -0.00246667722, 0.00194013654, 0.0173502285, 0.00201129075, 0.0385864228, 0.00991224777, 0.0124851819, 0.0038688886, 0.011840051, 0.00434514694, 0.00459940452, 0.0198396761, -0.000255206221, 0.00381006766, -0.0269892439, -0.0287804324, -0.00284996093, 0.012439643, 0.0174868442, -0.0227237903, 0.0147469351, -0.00292396126, 0.0124927722, 0.00614392385, 0.0241506677, 0.0274142716, -0.00559366541, 0.0152934, -0.000791234197, -0.0186253116, 0.00658413116, -0.0249248259, -0.00103790197, 0.0154603748, -0.00650443835, -0.0120601542, -0.0234827679, -0.00243062596, -0.00140695483, 0.0114757419, 0.00531284325, 0.00434894208, 0.00957829785, -0.00737726269, -0.00125515927, -0.0132441595, 0.00748351961, -0.0306475163, 0.00327309105, -0.00427683908, -0.0020928809, -0.00888762809, 0.00982876, 0.0270044245, 0.0124700023, 0.00628813, -0.0243480019, -0.00117167179, 0.0106332768, -0.0156652983, 0.00403017132, -0.0274598114, -0.0145951398, -0.00555951102, 0.0137754446, -0.00441345479, 0.0207504481, -0.0017560845, -0.0017446999, 0.00678146537, -0.0242113862, -0.0266401153, -0.0111417919, 0.00168208417, -0.0353076383, 0.028385764, 0.00637541199, -0.0113543058, 0.0193842892, -0.00650064368, -0.00882691, 0.0014913911, -0.00142592925, -0.00096579903, -0.016135864, -0.0217978377, 0.0161662232, -0.014769705, 0.0250007231, -0.0231943559, 0.00554812653, 0.0217371192, -0.00437930087, -0.0135705201, 0.0027569863, 0.00731274951, 0.0135857, 0.00928229652, -0.0023774975, 0.00114036386, -0.00603007711, -0.0159537103, 0.00648166891, 0.000925478351, 0.00963142607, -0.0138665214, 0.00716095418, 0.000571130658, 0.00564299896, 0.0153085785, 0.000254969054, -0.00608320581, 0.00574925542, 0.0139196496, -0.000588682, -0.00475878967, -0.0173198693, -0.00854608789, 0.00103505573, 0.0193235707, -0.0335164517, 0.00320857787, 0.00565058831, 0.0164546352, 0.0056847427, -0.00858403742, 0.0254409313, -0.00943409186, -0.00122100522, 0.00247047213, 0.00822731759, 0.00571889663, 0.00645889947, 0.0191414151, 0.00934301503, -0.00878137164, -0.00040629023, 0.0100564538, -0.00464873808, 0.0226023532, 0.00521038147, -0.00483848248, 0.00108154316, 0.00991983805, 0.0141625227, -0.0123485662, 0.0111873308, -0.0110203549, -0.000397040189, -0.00376642658, -0.00900147483, 0.000551207515, -0.000468668703, 0.00812106114, 0.011574409, -0.00229401, -0.0100640431, 0.0143674463, 0.0250918, 0.00673972163, -0.0103448648, -0.028385764, 0.017577922, 0.00452730153, -0.0108761499, -0.0272776559, -0.00560125476, 0.00618187292, 0.018443156, 0.024256926, 0.00666002883, 0.0156197594, -0.0259722155, 0.00875860173, -0.0126901064, 0.00440207031, 0.000433328794, 0.0321502909, -0.0146786273, 0.0235890243, 0.00426545413, -0.00554812653, -0.000337745063, -0.00173236651, -0.0254409313, 0.00947963074, -0.0117717432, -0.0102841472, 0.0199459326, -0.0108761499, 0.00925952755, -0.013881701, -0.00544945942, -0.00957070757, 0.00697879959, -0.00656136172, -0.01256108, -0.0131758517, -0.0205986537, 0.00060623337, 0.0151567832, -0.0123865148, 0.0364309251, 0.0136236483, 0.00636023283, 0.00193064939, 0.00510412455, -0.0109292781, 0.00174944347, -0.00724444166, 0.00565058831, -0.012151232, -0.0068156193, 0.00113656896, 0.0109216878, 2.57044376e-05, 0.0042313, 0.00575305056, -0.0270803217, -0.00329965539, 0.00113182538, 0.00428063376, 0.0254105721, 0.00323893712, 0.0416830517, -0.000356482313, -0.00131208263, -0.0150201675, -0.00842465181, 0.0139196496, -0.017456485, 0.00143826264, 0.0125762597, -0.00451591704, 0.00817418937, -0.00142213434, 0.0209022444, 0.00142498047, -0.00843983144, 0.00472843088, -0.00544945942, -0.0275812466, 0.00226365076, -0.00971491355, 0.00617048843, 0.00362032326, -0.00916845, -0.0142080616, -0.0103448648, -0.0115819983, -0.0112556387, -0.00741900643, -0.00356909237, -0.0251373388, -0.0151416035, 0.00417058216, 0.0041136588, -0.0162724797, 0.00158910942, 0.00629951432, -0.0182154626, -0.00442104461, 0.00162136601, 0.00688392716, -0.00263365242, 0.0156501196, 0.00725962128, -0.00919121876, 0.0183217209, -0.000659361831, 0.0119159492, -0.00658033602, -0.00484986696, 0.0217371192, -0.000195673929, 0.0185797717, -0.0120905135, -0.0179877691, 0.014913911, 0.0193539299, 0.0169100221, -0.00777952094, -0.016135864, -0.00576443505, 0.00838670321, -0.00339073269, -0.00341919437, -0.00590484589, -0.00497509819, -0.0136312386, 0.0208111666, -0.0411365889, 0.00179782824, 0.0156956576, 0.00607182132, -0.000724823622, 0.0055519212, 0.00174754602, 0.00210616295, -0.0182154626, 0.00887244847, -0.0108913295, -0.000422892859, 0.0162876602, -0.00853090826, 0.0202343445, 0.0184735153, -0.0212665536, -0.0265642181, 0.00407570973, 0.00455386564, 0.00809070189, 0.0130923642, -0.00696362, -0.00939614326, 0.0165608916, -0.00494094426, 0.000387552951, -0.0243631825, 0.0119235385, 0.00503581669, -0.00104738912, 0.00938096363, 0.0138361622, 0.0163483787, 0.0284920204, 0.00535079231, -0.0180181284, 0.00211375277, -0.0215853248, -0.00178928976, -0.010997586, -0.00428063376, 0.0161206853, -0.0183976181, 0.00228831754, -0.0238774363, 0.00222190702, -0.00615910348, 0.0213272721, 0.00232816394, -0.000345809181, -0.0066638235, 0.0115819983, -0.00390114496, -0.0126673365, 0.0100792227, 0.0180029497, 0.0023964718, 0.0389203727, 0.00778711075, -0.0240747705, -0.00524074072, 0.0126293879, 0.00038186062, 0.00697500445, 0.00490299566, -0.0281277113, 0.00432617264, -0.00391632458, -0.00749869924, -0.0165457129, -0.00157203246, -0.0191414151, -0.000859542168, 0.00714577455, 0.0124851819, -0.0127963629, 0.029706385, 0.00097433757, 0.00613253936, -0.0181243867, -0.00437930087, -0.0391632468, 0.00592382066, 0.0109899966, -0.0114605622, 0.0113087669, -0.0133959549, -0.0192932114, 0.0233309735, -0.0151340142, -0.0231639966, -1.49349607e-05, -0.0041326331, -0.00686495285, 0.0026981656, 0.0164546352, -0.0185190551, 0.0255623665, 0.0345183, -0.0178966932, -0.00117451791, 0.000668374705, 0.0101019926, 0.0199155733, 0.00892557669, -0.00482709799, 0.015801914, 0.00305488496, 0.00091836293, 0.0012542106, -0.0206745509, -0.00357668218, 0.00566956308, 0.022526456, 0.00735069858, -0.00547602354, 0.00273231952, 0.0099881459, 9.90228655e-05, -0.00725582615, -0.010663636, 0.00267729373, 0.00124662078, 0.00412124861, -0.00871306285, -0.0326967575, 0.00371709303, -0.0102234287, -0.00329016801, -0.00394668384, -0.0103828143, 0.00796926487, 0.0009392348, -0.013471853, -0.00125231314, -0.00819695834, -0.00524074072, -0.00426924927, -0.004754995, -0.0110051753, 0.0191565957, 0.016378738, -0.0227693301, 0.00385560631, 0.00671695219, 0.00879655126, -0.00492197, -0.00416678702, 0.00913050119, 0.00576443505, -0.0221469682, 0.0203861389, 0.0113770748, -0.00105497893, -0.00615151366, 0.014192882, 0.00711921044, 0.00581756374, -0.0230273809, -0.0183824375, -0.00829562545, -0.0158929918, 0.0227693301, -0.00650443835, 0.00957070757, 0.013616059, 0.0136691872, -0.000886580732, -0.00483848248, 0.00931265578, 0.00780987972, 0.00301314122, -0.0206897296, 0.022936305, -0.0108609702, -0.00508894492, -0.034821894, 0.0273231957, -0.0384953469, -0.00875101238, 0.0108609702, -0.00727859559, 0.0123789255, 0.00721787754, -0.00545325456, -0.0288563296, 0.00606802618, -0.008644755, -0.0280214548, -0.0099274274, -0.00888762809, -0.0126217986, -0.00420473609, 0.00136141619, 0.00735069858, 0.0102158394, 0.00749110943, 0.00371140055, 0.0158170946, 0.00697121, -0.00445899367, -0.0179118719, -0.00363740022, -0.0102917366, -0.0213272721, 0.00500166276, -0.00158816075, 0.0175172035, 0.00177980261, 0.0153161688, 0.000400123536, 0.00641715573, 0.0178663339, 0.000647502777, 0.0084626, -0.0217371192, 0.0156501196, 0.012151232, 0.0192932114, 0.00420473609, 0.0147317564, -0.0135477511, -0.00963142607, -0.000463450706, -0.0125534898, -0.00429960852, -0.00852331892, 0.0103600444, -0.0198548548, -0.0142004713, 0.00523694558, 0.0177600775, -0.0212210156, -0.00613253936, -0.00695223501, 0.00627674488, 0.00174754602, -0.0066638235, 0.0136843668, -0.00198852131, 0.00119254366, 0.00206441921, -0.0120677445, 0.0116047682, 0.0165608916, 0.0158626325, -0.0121664116, 0.0173654091, 0.00127887737, -0.00855367817, -0.000440207019, 0.0147013972, 0.00339832227, -0.0127735939, 0.00648925873, -0.023270255, 0.0096466057, 0.0041136588, -0.0160144288, 0.00754044298, -0.0227086116, 0.000815426582, -0.0130695952, 0.0106105078, 0.013327647, 0.00223139417, 0.0143978056, 0.00555951102, 0.0304957218, 0.0358844623, -0.0171984341, 0.00134244165, -0.00829562545, -0.000518951, -0.0139272399, 0.0106712254, -0.00173805875, 0.00152744248, 0.00484227715, -0.0247730296, -0.0410151519, -0.0105270194, 0.00527109951, -0.00735069858, 0.00273990934, 0.0284768417, 0.00922157802, 0.0275812466, 0.00134623656, 0.00558228046, 0.00636782218, -0.00720649259, -0.00725203147, -0.0140031371, -0.0210236814, 0.00897870585, -0.00754044298, -0.0108382, -0.00186044397, 0.00187752093, 0.00360514387, 0.00363550289, 0.00156823755, 0.00679285, 0.015225091, -0.00472084107, 0.012318207, 0.00869788416, 0.00417058216, -0.0158322733, 0.00365068251, 0.0092671169, 0.00451591704, 0.0173350498, -0.000813054794, 0.0217523, 0.0132593391, -0.0214335285, 0.0381310359, -0.0216005035, 0.012750824, 0.0202495232, 0.001443955, -0.0101171723, -0.0136995465, -0.0290384851, -0.00838670321, -0.00695223501, 0.013760265, 0.0231336392, -0.00350268185, 0.0143446773, -0.016211763, 0.000347943802, 0.00825008657, 0.0114150234, -0.0293876138, 0.00306057744, 0.0123106176, -0.00607182132, -0.0122423097, 0.0126521569, -0.00418196665, -0.0089862952, -0.0361273363, 0.0227996875, 0.0046639177, -0.00573028112, 0.00453109667, 0.000254020328, -0.0161965825, -0.00983635057, -0.0120753339, 0.014481293, -0.00756700709, 0.00571130682, -0.00478914892, 0.00526350969, -0.00157582737, 0.00266970391, 0.00784023944, 0.0196423419, 0.00691808108, -0.00448555779, -0.0132593391, -0.00119918468, 0.000831554877, -0.017122535, -0.00591623085, 0.0137374951, 8.9239169e-05, -0.00257103681, 0.00546843372, -0.00897870585, 0.0145496009, 0.0197789576, 0.0184583366, -0.00881173, -0.0104283532, 0.0130012874, 0.0231488179, 0.00749110943, 0.0131379031, 0.01085338, -0.0228755865, 0.00292396126, -0.00639818143, 0.00462976377, -0.0193539299, 0.00523694558, -0.00162231468, 0.000148830775, -0.0046639177, -0.00345524563, 0.0120146163, 0.0261543691, 0.0209933221, -0.00405673543, -0.00123713352, -0.00900906418, 0.00822731759, -0.0271714, -0.00193729042, -0.00347042526, -0.0101627102, -0.010830611, -0.00330345, 0.000254969054, 0.00746454485, -0.000667900313, -0.0279910956, 0.000190337363, -0.00185759773, -0.00859921705, -0.00570751168, 0.0225416366, -0.0251221601, 0.00281011476, 0.000245481817, -0.0208567064, 0.0103904037, 0.0125686694, -0.00407950487, 0.0205682945, -0.0275964271, -0.032636039, -0.00338883512, -0.014215651, 0.0154451951, -0.0161055047, -0.00255965209, 0.000681182428, 0.0173654091, -0.00435653143, 0.0193994679, -0.000862388348, 0.0144661134, 0.0135477511, -0.00608700048, 0.00899388455, -0.0191110577, 0.00663346471, -0.0102386083, 0.0111493813, 0.000493809814, 0.0278848391, -0.00176462298, -0.0037019134, -0.00925193727, 0.0132517498, -0.00127318501, -0.000807362434, 0.00787059776, 0.0151340142, 0.00402637618, -0.000363834901, -0.00733172381, -0.0186708495, 0.0180333089, -0.00113182538, 0.0107319439, 0.0122347195, -0.0213576313, -0.0171984341, -0.0133580063, 0.016090326, 0.0152175017, -0.0124624129, 0.00410227431, -0.0143294977, 0.0284616612, -0.00977563206, 0.0189744402, 0.0109444577, 0.00453489134, -0.0230881, 0.0109596374, 0.0109899966, -0.00413642824, -0.0158474538, 0.00302452594, 0.0324538834, 0.00734690344, -0.0109672267, -0.0199459326, -0.00692187622, 0.0146786273, -0.00492197, -0.0160296075, 0.00360893877, 0.00913809054, 0.00195246993, -0.00895593595, 0.00195436738, 0.00757459691, 0.0145951398, -0.0182154626, 0.00252170325, 0.000492386753, 0.0169859193, -0.00963901635, -0.00431478769, 0.0106332768, 0.0119387181, -0.00818177871, 0.00704710744, -0.0181092061, -0.00276078121, -0.0022067274, 0.0209629629, -0.0139196496, 1.36008202e-06, -0.0140562663, -0.00521417661, 0.00337175815, -0.00872065313, 0.00727859559, -0.000154878871, -0.00469427649, -0.0156804789, -0.0127811832, -0.00893316697, -0.00705849193, 0.0135022122, -0.0128646707, -0.0205379352, -1.97601021e-05, -0.0165760722, -0.000476970017, 0.0145344222, 0.018898543, -0.00300934631, -0.00929747615, -0.00799203478, -0.000275603757, -0.0130468253, 0.00594658963, 0.00276267854, 0.0222380441, 0.004982688, 0.0138513418, -0.00575305056, -0.0109672267, 0.00615151366, -0.00229211245, -0.0154300155, -0.00263175485, 0.00925952755, 0.0160296075, 0.00139462145, 0.00757839158, 0.00695223501, -0.00769603346, 0.004982688, -0.0205075759, 0.0136995465, -0.0191414151, -0.0158170946, 0.00441725, -0.00727480045, 0.0236042049, -0.0143826259, 0.0122650787, 0.00928229652, -0.0130544156, -0.00298847444, 0.00806793198, 0.0011868513, 0.000925478351, -0.00302642328, 0.0171984341, -0.00438689068, -0.0173805878, 0.00330155273, -0.0107319439, -0.00353304087, 0.0114529729, 0.00947963074, 0.0158626325, 0.00568094756, -0.00395427365, -0.0215701442, -0.00478914892, 0.0156804789, -0.00599212851, 0.0234827679, 0.0151871424, -0.0225416366, 0.0129405688, -0.0133200577, -0.00475878967, 0.0043034032, 0.0182154626, -0.0134794433, -0.00181016163, 0.00880414061, -0.0378578044, 0.0154603748, -0.00590484589, -0.00675110612, 0.0194146484, 0.018610131, -0.0268678088, -0.00251411344, 0.00577961467, -0.0008543242, -0.0139500089, -0.00302452594, 0.0169100221, -0.00315734698, 0.00689151697, 0.015923351, 0.00735449325, 0.00202836771, 0.00352734863, -0.00900147483, -0.0230425615, 0.0117262043, 0.026488319, 0.0213576313, -0.0080072144, 0.0155590419, -0.0164849944, 0.0108761499, -0.0162724797, 0.0135022122, -0.00835634395, -0.00825008657, -0.0148000643, 0.00104454299, 0.00900906418, 0.00613253936, -0.00525971502, -0.00831839535, 0.000714862079, 0.00344955339, -0.0209781416, -0.00941891223, 0.0147772944, 0.000818747154, -0.0192021336, 0.00103790197, -0.0126369772, 0.00255585718, 0.0135857, 0.0278848391, 0.0238926169, -0.0128494911, -0.00429581339, 0.0227389708, -0.0118021024, 0.0192780327, -0.0308903903, 0.0205227546, -0.00897111557, -0.0153237581, 0.010663636, -0.00472084107, -0.00194298278, 0.0162724797, -0.00248754909, -0.00439068582, -0.016135864, -0.0120373853, 0.00815901, -0.0153920669, 0.017577922, 5.77534556e-05, 0.00847778, -0.00447796797, 0.0174261257, -0.0192021336, -0.0243176427, 0.0204772167, 0.0276571456, 0.00673972163, -0.0158170946, 0.0183672588, 0.0274294522, 0.00706608174, 0.00648166891, 0.0244846195, 0.0194601864, 0.0154983234, 0.00181680277, -0.00819695834, 0.0151567832, 0.00768085383, -0.00574925542, 0.0246667732, -0.0142991384, -0.0180788469, 0.0139803682, 0.010086813, -0.0141018042, 0.0115895886, -0.00545325456, -0.000368578505, -0.0195057262, 0.0038518114, -0.00165362249, -0.000163061603, 0.0212210156, 0.00314406492, -0.00641715573, 0.0110886637, 0.0253650323, -0.0117869228, 0.0108154314, 0.00906219333, -0.00384422182, -0.0100260945, -0.00981358066, -0.0064361305, -0.000695887604, -0.00062568218, -0.0101703005, -0.00387837575, -0.00929747615, -0.00406053057, -0.0023964718, 0.0136236483, -0.0160144288, 0.0125534898, 0.00280062738, -0.0061932574, 0.0148683721, 0.00684977323, -0.0138665214, 0.0109520471, 0.00637161732, -0.00366775948, 0.00887244847, 0.0171984341, -0.0190806985, -1.75068872e-05, 0.000906503934, 0.0140790353, -0.0136312386, 0.0188681837, 0.0105953282, 0.00429581339, 0.0115212807, 0.00965419598, 0.0185949523, -0.00348560489, -0.0277330428, 0.0093278354, -0.0573787093, 0.00457284041, -0.00738105737, -0.00132062112, -0.0220407099, 0.0185494144, 0.0207959879, -0.0127735939, 0.030860031, 0.00556710083, 0.000170532789, 0.0283098668, 0.0142004713, 0.0117945122, -0.0107091749, 0.0143143181, 0.0126293879, -0.00715715904, -0.0187619273, -0.00758218672, 0.00212134258, 0.0172591507, 0.00459940452, -0.0102917366, -0.00359565648, 0.00981358066, 0.0111873308, 0.00824249722, -0.00970732421, -0.00427683908, 0.0148000643, 0.0129102096, 0.016135864, -0.0207808074, 0.0185494144, -0.00587448711, -0.00118305639, 0.001792136, 0.00278544798, -0.0142991384, -0.00123239, -0.00712300511, 0.00699397875, -0.018443156, -0.0224353783, 0.0131075438, -0.0170314573, -0.0190655179, -0.0107850721, -0.00562022952, -0.0164090972, 0.00177790516, 0.00274180667, 0.0152175017, -0.00264313957, 0.0122271301, -0.0294938702, -0.00666002883, 0.0213272721, -0.00547602354, -0.00809829123, -0.0170618165, -0.0285830982, 0.00494853407, 0.00562781934, 0.00776813598, -0.0179422311, 0.00184621313, -0.012151232, 0.0202798825, -0.0189592615, -0.0137678543, -0.00878896099, -0.00514207361, -0.00806034263, -0.0194146484, 0.0161814038, 0.00853849854, 0.00276457611, 0.00979081169, 0.00386509369, 0.000491438, 0.0155059127, 0.0118628209, 0.0184279773, -0.00748351961, -0.0324842446, 0.00561263971, 0.0224505588, 0.00276837102, 0.00595038477, -0.00214790669, -0.0119083589, -0.00776434131, 0.00348181, -0.00620084722, -0.0111873308, 0.00955552887, 0.00261278055, -0.00155116059, 0.0044931476, 0.000954888761, 0.0243176427, 0.0105801485, 0.0340022, -0.0143826259, 0.0238926169, -0.00457284041, -0.00762013532, 0.0132593391, 0.00114131265, 0.0216308627, 0.0101703005, 0.012750824, 0.0315734707, -0.0159385297, 0.00694085052, -0.0144129852, -0.00809829123, -0.00314027, 0.00795408525, -0.00452350685, -0.00398083776, -0.0129026202, -0.00552915223, 0.00481191836, -0.000940183527, 0.0177752562, 0.00305109, -0.00956311822, -0.0291447416, 0.0055860756, 0.00587069197, 6.91974128e-05, 0.0218130182, -0.00613253936, -0.00788577739, 0.001245672, -0.00891798735, -0.00942650251, 0.0155894011, 0.00566956308, 0.020219164, 0.00637541199, -0.0278241206, -0.00731274951, 0.00796167552, 0.00173426385, 0.0135553405, -0.0193994679, 0.0112556387, -0.00389735028, 0.00720269792, -0.0209477823, -0.0187163893, -0.0238318983, -0.00122859504, -0.00812106114, -0.00107110722, 0.0197334178, 0.00421991572, -0.0131986216, 0.0386775, -0.0177752562, 0.00161282753, -0.00861439575, 0.00225795852, 0.0207200889, 0.00500166276, 0.00277785817, 0.0123561556, -0.00271903747, 0.0072140824, -0.0172136128, -0.0123637458, -0.0253802128, 0.00472084107, -0.0314216726, -0.00365447742, -0.00487643154, 0.00226365076, -0.00403017132, 0.00979840104, -0.00875860173, 0.0118855899, -0.0238167178, 0.00459560938, 0.0175627433, 0.00871306285, -0.00133769808, 0.00404535094, 0.0273839124, 0.00675490079, -0.0122498991, -0.0117869228, -0.0137374951, -0.00482709799, -0.0120222056, 0.0170011, 0.0148759615, 0.0232247151, -0.00109862012, -0.00334329647, 0.004682892, 0.00550258765, -0.0280214548, 0.017699359, -0.00292585883, -0.0300858729, 0.0261543691, 0.0136236483, -0.0243328232, -0.00841706246, 0.0234827679, -0.000519425317, 0.00698638894, -0.0188226458, -0.00331103988, -0.010974817, 0.0205075759, 0.0174868442, 0.0165760722, 0.013449084, 0.00881932, 0.0301314127, -0.00777193112, 0.0231184587, 0.018777106, -0.0190503392, 0.00529766409, 0.0123257972, -0.00267539616, -0.00286514056, -0.0118324617, -0.00300744898, 0.00588207692, -0.000219154797, 0.00624259096, 0.00103695318, 0.00234713824, 0.0117565636, 0.00112613302, -0.00389355537, -0.0147393458, -0.00405294076, 0.0231943559, -0.018564593, 0.02310328, 0.0105801485, -0.000525117677, 0.0167278666, -0.0180181284, -0.0079085473, 0.0156501196, 0.0120677445, -0.000565438357, -0.00841706246, 0.0116654867, -0.0124092847, -0.0021118552, -0.0158170946, -0.00890280772, 0.0145571912, -0.0180484876, 0.0139727779, 0.00107869692, 0.00347042526, -0.0219040941, -0.00443242956, -0.000667426, 0.00357478461, 0.000733362162, -0.0107698925, 0.00321237277, -0.00712300511, 0.0362791307, 0.0011432101, 0.00482709799, -0.017122535, -0.00353683578, 0.00814383, -0.010830611, -0.0096466057, -0.00966178533, 0.0051534581, 0.00552915223, -0.00962383673, -0.0316645466, 0.00529386895, -0.000785541837, 0.00455007097, -0.00824249722, 0.0163180195, 0.00560884457, -0.0217978377, -0.0231791772, 0.0055860756, -0.00979081169, -0.000997106894, -0.0130468253, 0.00823490694, -0.048604928, -0.0126749268, -0.0147241661, 0.0175172035, -0.0258507784, -0.000696362, -0.028385764, 0.00125610793, -0.010686405, -0.0170011, 0.00686874753, -0.0219799932, 0.0125155412, -0.0207808074, 0.00329016801, -0.0243480019, -0.000284379435, 0.00674351631, -0.0146634476, -0.0139879575, 0.0221773274, 0.0104663018, -0.00741521129, 0.0120677445, 0.0112935873, 0.028385764, -0.0073051597, -0.0193387493, -0.0266097561, 0.0072861854, 0.00555571634, -0.00659172097, 0.0115364604, -0.0162269417, -0.00401878636, -0.0207808074, -0.00549120316, -0.00212324, -0.0135857, -0.0120753339, -0.00850055, 0.00307006459, 0.00557469064, -5.4403281e-05, -0.0136464182, -0.00550638279, 0.0117337946, 0.0128343115, 0.000691144, -0.00341919437, -0.0031687317, -0.0158170946, 0.0251069795, -0.00525971502, 0.00563540915, -0.021949634, -0.00535079231, 0.00711162062, -0.0149063207, -0.0068535679, 0.00827285647, -0.0105118407, -0.0397097096, 0.00272283237, 0.0010758508, 0.00645889947, 0.0283250455, -0.0204164982, 0.00666761864, 0.013494622, 0.010231019, 2.16723693e-05, 0.0650899187, 0.0145344222, 0.0217523, -0.0201584455, -0.00355391274, -0.00969214458, -0.00585171767, 0.0360666178, -0.0148076536, 0.0202950612, 0.0189896207, 0.0125534898, -0.0202798825, 0.00680043967, 0.00869029388, 0.00878137164, 0.0201432668, -0.00725962128, 0.0134566734, -0.00138513418, -0.0260784719, -0.0168341249, 0.0190351587, -0.0150049878, 0.00112044078, 0.00735069858, -0.00318580866, 0.00615910348, -0.0181395654, 0.012750824, 0.0113543058, 0.0166519694, 0.00253878022, 0.00240406161, -0.00493335444, 0.0116654867, 0.0114985108, 0.0192932114, 0.0102993269, -0.017577922, 0.026488319, 0.0130240563, 0.00258431886, -0.01085338, 0.00683838874, 0.00463735359, 0.00220862497, -0.00976045243, -0.0117262043, -0.0267311931, 0.0164849944, -0.0287045334, -0.0263668839, -0.0236952826, 0.00545325456, -0.00182723871, 0.0276116058, 0.009365784, 0.0126142083, 0.0155590419, 0.00368673378, 0.00184052077, -0.00483089266, 0.0012817235, 0.00613633404, -0.0344272256, 0.0142839588, -0.0132213905, 0.00490299566, -0.00237180502, -0.00765049458, -0.00677387556, 0.0202950612, 0.00267349882, -0.0108609702, 0.0131075438, -0.00426924927, -0.00719131297, 0.0055329469, -0.0210085, -0.028218789, 0.00362791307, 0.0175627433, -0.00925952755, -0.00367155438, -0.0136312386, -0.015346528, -0.00582515355, -0.00891798735, 0.004982688, -0.00361463102, 0.024302464, 0.00875101238, -0.00826526619, 0.00302073103, 0.0129405688, 0.00175039214, 0.000899862847, -0.005939, -0.00847778, 0.013616059, -0.000868555042, -0.0110127656, -0.000272046047, -0.0133731859, 0.0243176427, 0.0068535679, 0.011263228, 0.0131834419, 4.67542086e-05, -0.000767041754, 0.00204354734, 0.000566387083, 0.0192476735, 0.00502822688, 0.0106332768, -0.00261278055, 0.00655377191, 0.0021118552, 0.0017760077, 0.0244997982, -0.0205682945, -0.0155210923, -0.00207390636, -0.0104207629, 0.00879655126, 0.00723305671, 0.017122535, 0.0342754312, 0.00245149783, -0.0037778113, -0.00527489465, 0.0178815126, 0.0105725583, 0.0205531139, 0.0164242759, 0.00766946888, 0.011840051, 0.00541151036, 0.00863716565, -0.0144433444, 0.00672074687, 0.00541151036, 0.00658033602, -0.0151643734, 0.0038518114, 0.0198700354, 0.00520279165, 0.0234372299, -0.00729377521, 0.0016137762, -0.0109520471, -0.0107319439, -0.00239267689, -0.0264731403, 0.0103524551, 0.00931265578, -0.0296304878, 0.00410227431, -0.0152934, 0.00697500445, 1.57280319e-05, 0.0165912509, -0.0209629629, 0.00548740849, -0.0274598114, -0.0106180971, -0.00853090826, 0.003362271, 0.0126749268, 0.0142763695, 0.0162876602, -0.0139196496, 0.000615246245, -0.0149973985, 0.00210426562, -0.00928229652, -0.000490014965, 0.0118704103, -0.0331217833, -0.0151036549, 0.000106731233, 0.00759736635, 0.0584109202, 0.00922157802, -0.0116275372, 0.00919121876, -0.00884967949, 0.0107850721, -0.0133655965, -0.0333646573, 0.00139557011, 0.00973768346, -0.00584033271, 0.0200066511, 0.00212324, 0.0223139431, -0.0216460414, 0.0190351587, 0.010542199, 0.0216308627, -0.0159385297, 0.025167698, -0.0199155733, 0.0199762918, 0.0309359282, 0.01728951, -0.00113277417, -0.0173350498, 0.0296456665, -0.0014553396]
24 Nov, 2021
jQWidgets jqxScrollView showButtons Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that are present at the bottom of the jqxScrollView widget. The showButtons property is used to set or return whether the navigation buttons are visible or not. It accepts Boolean type values and its default value is true. Syntax: Set the showButtons property. $('selector').jqxScrollView({ showButtons: Boolean }); Return the showButtons property. var showButtons = $('selector').jqxScrollView('showButtons'); Linked Files: Download jQWidgets from the link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> The below example illustrates the jqxScrollView showButtons property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView showButtons Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired.png" alt="GetHired"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring.png" alt="hiring"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade.png" alt="upgrade"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg.png" alt="gethiredgfg"> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0], showButtons: false }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-showbuttons-property?ref=asr9
PHP
jQWidgets jqxScrollView showButtons Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0260080416, 0.0237520952, -0.00990748312, 0.0391988605, 0.0890883207, 0.00179344125, 0.0170561019, 0.0293273, -0.000659181736, -0.0114377905, -0.0211656597, 0.0445441604, 0.0133848013, -0.00368926232, -0.00308396458, 0.034083467, -0.0349743515, 0.000144252132, -0.0425324887, 0.0313533396, -0.0064589032, 0.00804668665, -0.0652931184, -0.000146946331, -0.0502343178, 0.0431359895, 0.00514413184, 0.0151306456, -0.034916874, 0.00115491508, -0.0243124906, 0.00116928422, -6.38750644e-05, 0.0155760869, -0.0577349775, -0.020892648, 0.00882980227, -0.0176308658, -0.0213093515, -0.00125819293, -0.0174871758, 0.0212806128, 0.00569734164, 0.0110929329, -0.023421606, 0.0216254704, -0.0119191548, -0.00354736764, -0.0230336413, 0.0237808339, -0.00427121, 0.0260511488, 0.00388683728, 0.0162945408, -0.00349707576, -0.00514772441, -0.0188091304, 0.0144050065, -0.00548180565, 0.0204615761, 0.0138158742, -0.0639711618, -0.0193695258, 0.00202424475, -0.00905970763, 0.0234359764, 0.00542073697, 0.0272150449, -0.0601202473, 0.0126447938, -0.0163089093, 0.0342271589, 0.0189815592, 0.0169124119, 0.00227749976, 0.0197574906, 0.00279299077, 0.000674448849, 0.0278903916, 0.0148720015, -0.00746473903, -0.00768027548, -0.0553784482, 0.00724201836, 0.00161023543, 0.0223008189, 0.0326465592, -0.0461822338, 0.0522459894, 0.0276461169, -0.0162658021, -0.0190390367, -0.00558238896, -0.0214961488, -0.00179793162, -0.00101391843, -0.00223259651, 0.0148288943, -0.0241687987, 0.0110282721, 0.032387916, 0.0169842578, -0.0283070952, -0.0498032458, 0.00552491285, -0.00163987174, 0.040520817, -0.00320430566, -0.0117539102, -0.0351755172, 0.026094256, -0.0237520952, -0.00505791744, -0.00923213642, -0.0492572188, 0.0236515123, -0.032387916, 0.00913873687, 0.0107408902, 0.0031755676, -0.0083412528, 0.0112797311, 0.00727434875, 0.032387916, -0.0105469078, 0.0278903916, -0.00856397394, -0.00134171324, 0.0504354835, -0.0110713793, -0.000477323018, 0.0408656746, 0.0199442878, 0.0029959539, 0.0245567635, 0.026999509, 0.0473605022, 0.00384372985, -0.0690290779, 0.00319532491, -0.0411817953, -0.0269420315, 0.0268270802, 0.00917466, -0.0242406446, 0.0341696814, 0.00854960456, 0.0276030097, -0.0297727417, 0.0223870333, -0.0155904563, -0.0290399175, -0.00136057264, 0.0330776311, 0.0650057346, 0.0141176246, -0.0112581775, 0.0249878373, -0.000563088455, -0.00555724325, 0.00697619, -0.0310084838, 0.029097395, 0.0243843347, -0.0282352492, -0.00359227089, 0.0204184689, 0.0143834529, -0.0317269377, 0.0325603448, -0.0270138774, -0.00707318168, -0.000739558775, 0.00854960456, -0.0168693047, -0.00717735756, 0.0398598388, -0.0333650112, -0.00986437593, -0.0264534838, -0.0502343178, -0.0230336413, 0.0167399831, 0.00870048068, -0.00898067746, -0.0029474583, 0.0088369865, 0.0156191941, -0.0407507233, -0.0165388156, -0.0202891473, -0.0111935167, 0.0357215442, 0.0213668272, 0.000998651376, -0.0395724587, -0.0177170802, 0.00141266058, -0.0188666079, -0.0131261582, 0.00936145801, -0.00359047484, -0.00561471935, -0.00594880059, 0.00705162808, 0.0307211019, 0.00680376124, -0.0421588905, 0.0358652323, 0.00737852463, 0.00992903672, -0.00593443168, 0.0565567128, -0.0120915845, -0.0146923885, 0.0215248875, -0.00844902173, -0.00362460129, -0.0260511488, 0.00801076461, -0.0139739336, 0.022372663, -0.0190821439, 0.00524112349, -0.0786851048, 0.0118473098, -0.00601705397, -0.0247866698, -0.00557520473, -0.0157054085, -0.0395724587, -0.0473892391, -0.028537, 0.00778804347, 0.0508090816, 0.0535966828, -0.0051980163, 0.0259074587, -0.0225307234, 0.00831969921, 0.002665465, -0.0254620165, -0.0115383742, -0.0159496833, 0.0305199344, 0.0171854235, -0.0126519781, -0.0319281034, 0.0195850618, 2.28866957e-05, -0.0156335626, 0.0230911169, -0.00753658451, -0.01395238, -1.44392452e-05, 0.0105684614, -0.0250740517, 0.00281813648, 0.0150588, 0.03353744, 0.0214961488, 0.035779018, -0.0233066548, 0.0275311638, 0.0075222156, 0.0248010382, 0.0212231372, -0.0300026461, 0.00900223106, -0.0239676312, 0.0333937518, -0.0150300618, 0.0237377267, 0.0191683583, 0.0053201532, 0.0174871758, -0.0569590479, -0.0170129947, 0.0383367166, -0.0137943206, 0.0103170024, 0.0295715742, 0.0337960869, 0.0522747263, -0.0065271561, -0.00788862724, 0.00791736506, 0.0175590198, -0.0206627417, 0.0485675037, -0.0121275065, -0.02602241, 0.0115599278, -0.00555724325, 0.0409806259, 0.00937582739, -0.0105469078, 0.00369285466, -0.0108630275, -0.0129896514, -0.0257206596, -0.00497529516, -0.03353744, 0.0081185326, 0.00658822479, -0.00493937265, 0.0462109745, -0.0180619378, -0.0095123332, -0.0182056297, 0.0382792391, -0.00913873687, -0.0163807552, -0.0312671252, -0.00255410466, 0.0169411507, 0.00284867082, 0.0118616791, -0.0317269377, -0.0259361956, 0.0179900937, -0.0163232796, -0.0306348875, 0.0308360532, 0.0356065892, -0.0257925056, -0.0107337059, -0.00134710164, 0.0145702511, 0.00178715482, -0.0401472189, 0.00377906905, 0.00104175857, 0.00550695136, 0.0523896813, -0.0337960869, -0.0123071205, -0.000530758058, -0.0151593834, 0.00596676208, 0.00259182346, 0.000530758058, 0.0219559595, -0.0309797451, 0.0147714186, -0.0553784482, -0.0161077436, 0.000205208475, 0.0437107533, 0.00370722357, 0.00139469921, 0.0333937518, 0.0321580097, -0.00129321753, 0.00256308541, 0.00096901512, -0.0120628458, -0.00602783076, -0.0461822338, -0.0065271561, -0.00566141913, -0.0182487369, 0.0321292728, 0.0216973163, 0.0148001565, -0.0257493984, -0.0414404385, 0.00500762556, -0.00649123359, 0.0123502277, -0.00592365488, -0.0197143834, -0.0204759445, 0.0402334332, -0.00921776704, 0.026712127, -0.0207633264, -0.0174296983, -0.0227749981, 0.00774493627, -0.00319532491, 0.0543151386, -0.00778804347, 0.0398598388, -0.00560394255, -0.00674987724, -0.00715939607, -0.0398598388, 0.0215823632, 0.018105045, -0.0628791079, 0.0610398687, 0.022660045, -0.0299739093, -0.0069905594, 0.00195958372, -0.0102595259, -0.000618319667, -0.0101733115, -0.0106762294, 0.0456362106, -0.00821193121, -0.00313605252, -0.0047022826, -0.0154036582, 0.000137404364, -0.0380493328, -0.0321005322, -0.000818139699, 0.00136416487, 0.009469226, 0.000916478108, 0.000331611518, 0.0454925187, 0.00873640273, 0.0282496195, 0.0221714955, 0.0502917953, 0.0338248238, -0.0174009614, 0.017530283, -0.0320143178, -0.0224876162, 0.0125729488, -0.0398598388, -0.0198293366, -0.0634538755, 0.00593802379, 0.0443142541, -0.010625938, 0.0289537031, 0.0406070314, 0.00202065241, -0.000742702046, 0.00908126123, 0.0328764655, 0.0467857383, -0.000277951971, -0.0161364805, -0.0321867466, -0.0250309445, 0.00812571682, 0.00676065404, -0.0161364805, -0.0390551686, 0.0165675543, -0.00343959942, -0.0184499044, 0.0234790836, 0.0299451705, -0.0262666848, -0.0433371551, -0.0390264317, -0.0259793028, 0.00671754684, -0.0152743366, -0.00773775158, 0.00141984515, 0.0108989505, -0.0113731297, 0.00086214504, 0.00742881652, -0.00385450665, -0.0116245886, 0.0362388305, -0.0261229947, -0.0188666079, 0.0202604085, -0.0133488793, 0.00682172272, -0.0408656746, 0.0125873173, 0.0272150449, 0.0655230209, 0.0207776949, -0.00851368252, -0.0149294781, 0.0013219557, -0.00462684501, 0.00134530547, 0.0445154235, -0.0221858658, 0.009469226, 0.0121203223, 0.00849931315, -0.0350893028, 0.0223582946, 0.00314682932, -0.00452626124, -0.00560035044, 0.00071306579, 0.00409518881, -0.0463259257, 0.00435024034, -0.0243124906, 0.0312958658, -0.0348593965, 0.000452850654, 0.0253039561, 0.0331351086, -0.00163178903, 0.01521686, -0.026712127, 0.00614637556, 0.0192976799, -0.0177170802, -0.0278616529, 0.0037611078, 0.0235940348, -0.0352329947, -0.00587695511, -0.00688997563, -0.0300888624, 0.00123484316, -0.00737852463, -0.0580223612, -0.0541427061, -0.0163089093, -0.00251099747, -0.0333650112, 0.0172716379, 0.00168118277, -0.00475975918, 0.030146338, 0.0270426162, 0.0100655435, -0.0122711975, -0.0173434839, -0.0345432758, 0.036612425, -0.0262092091, 0.0177745558, 0.0149294781, 0.01662503, -0.0175159127, 0.00602064608, 0.00862863474, 0.00276964088, -0.0225594621, -0.0119478935, -0.0208351724, 0.000456218404, -0.0214243047, -0.0267408658, 0.00861426536, 0.0220278054, -0.00573326461, -0.0101445736, 0.0131117888, 0.0277467016, 0.0201885626, 0.000702289, 0.00134979584, 0.00348270661, 0.00345935696, -0.0165100768, -0.019987395, 0.00284867082, -0.00947641116, -0.0119478935, -0.0207776949, -0.000756173045, 0.0220565442, -0.0046232529, 0.0266546514, -0.00616433704, -0.00629725121, 0.0191396195, -0.0103672938, -0.00308216852, -0.000502468902, 0.00153749192, -0.00657026377, -0.0121562453, 0.00359047484, 0.0028720207, 0.0427336544, -0.0144840367, 0.00306420703, 0.017458437, 0.000490345, -0.0231054872, 0.0147139421, -0.00712706568, -0.0262666848, 0.00877951, -0.0053093764, -0.00486393506, -0.0233784989, -0.0156910401, -0.00742163183, 0.0354341604, 0.0144768516, 0.0102667101, 0.0276317485, -0.0219128523, -0.0163951255, 0.0113228383, -0.0109420577, -0.0263385307, 0.00740007823, 0.0284364168, 0.0384804048, 0.0237233583, -0.0107408902, -0.0224157702, 0.00320610194, 0.0203466229, 0.0204328373, -0.0159353148, -0.0418715104, -0.00798202585, 0.0220852811, -0.0136506297, -0.0292267166, -0.0243843347, -0.00606734585, 0.0350318253, 0.000662773964, -0.00705522, 0.0259074587, 0.00348270661, 0.0425612256, 0.0197574906, 0.0249303598, 0.000337897975, -0.0226169378, -0.0124867335, 0.0129537294, -0.0329339392, -0.0004016608, -0.0185648557, -0.0156048248, -0.00851368252, 0.0166825056, 0.0146564655, -0.0104894312, 0.0168405659, -0.0314682946, 0.0300313849, 0.0137152905, 0.0322154872, -0.0316407233, 0.06086744, -0.0046016993, 0.0117395418, 0.0110857477, 0.0155760869, -0.00413111178, -0.00979971513, -0.0122568281, 0.017027365, -0.0121203223, 0.00716658076, -0.00276066014, 0.00399819762, -0.0102020493, -0.00848494377, 0.00224696542, 0.0342558958, -0.0296003129, 0.00219128537, 0.027574271, 0.0187085476, 0.0101661272, -0.0158203617, 0.0282783564, 0.0479352623, 0.0144840367, 0.0224732477, 0.0194270015, -0.00774493627, 0.0175159127, 0.0132411104, -0.00194701087, -0.0174296983, -0.0247866698, -0.0118473098, 0.00691152923, 0.0145989889, 0.0120197386, 0.0365836881, 0.0209932309, 0.00852805097, -0.011423422, -0.0249447301, -0.0248154085, -0.00341984187, 0.0113587612, 0.0121921673, -0.00593443168, 0.011746726, 0.0456074737, 0.01850738, -0.0164957084, -0.0207202192, -0.00921776704, -0.0180188306, -0.0070695891, -0.0145989889, 0.00311629497, -0.0182199981, -0.0366411656, -0.00110372528, 0.0088369865, 0.0102164187, 0.00733541744, 0.0372446664, -0.0098787453, -0.00253793946, 0.0348593965, 0.0297152661, -0.0205477905, 0.0582810044, -0.0304911956, -0.00205118675, -0.00936145801, -0.0143762687, -0.0333937518, 0.00494296476, 0.0101804957, 0.011854494, -0.00603142288, -0.00721687218, -0.00923932064, -0.0264534838, 0.0209501237, -0.0287525374, -0.00113605568, -0.00281993276, 0.00726716407, 0.0478777885, 0.0130327586, -0.0163663868, -0.0215105191, 0.0296290517, 0.00139649538, 0.00303367293, -0.0015985606, 0.0023942485, -0.00451907702, -0.0204615761, -0.0102523416, 0.0230192728, 0.00990748312, -0.0327902511, 0.010697783, -0.000970811234, -0.0169124119, -0.0366411656, 0.00348629896, -0.00142702961, 0.0161221121, -0.0400897451, 0.0199586581, -0.00530219171, 0.013880535, 0.0138949044, 0.0087938793, 0.0100152511, 0.0141248098, 0.0220996514, -0.0213955659, 0.0159927905, 0.00996496, 0.012723824, -0.0329914168, -0.00972068496, 0.0304049812, -0.0214817803, 0.00757969171, -0.000134934671, 0.0484238118, -0.0242119059, -0.0146780191, 0.00560394255, -0.0268989243, -0.0140888868, -0.010302633, 0.0151593834, -0.0140817026, -0.00197215681, 0.0037647, -0.00297799264, 0.0111719631, -0.00562908873, 0.00290794345, 0.020677112, 0.0105612762, 0.00393353682, 0.0112940995, -0.00681094592, 0.00179703359, 0.0134207243, 0.000496631488, -0.0175590198, -0.0035060565, 0.0230049025, 0.00687919883, -0.0450327098, 0.00595239317, -0.0212231372, 0.0286663231, 0.025232112, 0.0245280266, -0.0233353917, -0.0274162125, -0.00225415, -0.0263816379, -0.00909563, -0.00893757, -0.00506869424, -0.0238814168, 0.00425684126, -0.00552850496, -0.013988303, 0.0132554797, -0.012616056, 0.0092033986, 0.00373955397, -0.013880535, 0.0109995333, -0.00485315826, -0.0398598388, -0.0335949175, 0.0303475056, -0.0274880566, 0.0222720802, 0.0261086244, -0.0148145258, 0.00343241496, 0.0229474269, -0.0569590479, 0.0466995239, -0.0156048248, 0.000167040605, 0.0183493197, 0.00888727792, -0.00132105767, 0.043595802, 0.00702289, 0.00675706146, -0.0360664, 0.0189528223, 0.0170848407, 0.0326752961, 4.78782349e-05, 0.0321292728, 0.0174009614, 0.0115455585, 0.0278903916, 0.011818571, 0.013047128, 0.0261373632, -0.0224157702, 0.00311988732, -0.0288531203, 0.0106546758, 0.00928242784, 0.0110282721, -0.0452626124, -0.00394431362, 0.0208495408, 0.00077862473, -0.00139380118, -0.0154611338, -0.0175015442, -0.0417565592, -0.0337673463, -0.0121275065, -0.00557879684, 0.000232150516, -0.00618589064, 0.0163089093, 0.000236191816, -0.0195994303, -0.0386815742, 0.00583744049, 0.0130974203, -0.0208208021, 0.0585396476, 0.00423528766, -0.0732823312, 0.002042206, -0.00660618627, 0.0351755172, -0.0310946982, -0.034370847, -0.00153659389, 0.00592006277, -0.0257062912, -0.0203897301, 0.0143044228, -0.0316407233, 0.0119766314, 0.0193407871, -0.0120197386, -0.0431072526, 0.012867515, 0.0123645971, 0.00952670258, -0.00141355861, 0.0133704329, -0.0173722226, -0.00831251498, -0.0141751012, 0.00305343024, 0.0404920764, 0.00370722357, 0.00852086674, 0.0388827398, 0.00738570932, -0.0108271046, -0.00576918712, 0.00698337471, 0.0105325384, -0.0195132159, 0.0433371551, 0.0335949175, -0.0317269377, -0.00555724325, -0.0118760476, 0.0181337837, 0.0365262106, 0.00713065779, -0.00902378466, -0.0247866698, 0.00442927, -0.0544588268, 0.00143601035, 0.00239604479, 0.00870048068, 0.0456074737, -0.0126447938, -0.0154898725, -0.0224732477, 0.00692949072, 0.0222720802, -0.00636550412, 0.0222864486, 0.0613847263, 0.0114665292, -0.0251458976, -0.00634035841, -0.0128603298, -0.0484238118, -0.0434521101, 0.00521957, -0.00814727, 0.0181768909, 0.0186941773, -0.00543510588, 0.0242406446, 0.0019290495, 0.010769628, -0.0239820015, -0.0247148238, 0.00357969804, -0.0207776949, -0.00718094967, 0.00203502155, -0.0402909108, 0.0031647908, 0.0161077436, 0.0333937518, -0.00468072901, 0.00373955397, 0.00574404141, -0.00447237724, 0.0023673065, 0.0100583583, 0.0064589032, 0.0544300899, 0.0171854235, -0.000626402267, 0.0111504095, 0.00540996, -0.0273012593, 0.00201346795, 0.00333901588, -0.000208688492, -0.0236515123, -0.00175482442, 0.0035060565, 0.0197574906, -0.0197143834, -0.0041023735, -0.0231342241, -0.00745037, 0.0209501237, 0.0287525374, -0.0290830266, 0.00314682932, -0.0163807552, 0.0023942485, 0.0252177417, 0.0564130247, -0.00137404364, -0.0230911169, -0.024614241, -0.0198580734, -0.0101517579, 0.0128603298, 0.0149294781, 0.0292123482, 0.022660045, -0.00449752342, 0.0120843993, 0.0150875384, -0.00129142136, -0.0339397751, -0.00497170305, -0.00548899, 0.0199730266, 0.0290399175, 0.00301211909, -0.0225450918, 0.0152455978, 0.0317269377, 0.0137081062, 0.0271575693, -0.000734619389, 0.0438831821, -0.0395149812, 0.00566141913, 0.00921776704, -0.0200305022, -0.0110857477, 6.28647422e-06, -0.00728871766, 0.0102667101, 0.0257781371, -0.00508306362, -0.00740726292, -0.00225953851, -0.0113012847, -0.0155329797, -0.0174153298, 0.00200987561, -0.0291548707, 0.0185504872, -0.0107049672, -0.00180152385, 0.00956262555, -0.0019128843, -0.00296182744, -0.0124436263, 0.0218553767, -0.0162658021, -0.0186654404, -0.000298607512, -0.0130255744, -0.00637628091, -0.0102810794, 0.0187372845, -0.0101589421, 0.00673910044, -0.0278041773, 0.0283789411, 0.00931835081, 0.00935427379, -0.0157772545, -0.00844183657, -0.00103277795, 0.00175841665, 0.00553209707, 0.00491422648, -0.0064373496, -0.01836369, 0.0274305809, -0.0272006765, 0.0104750618, -0.0163663868, 0.0237233583, 0.00742881652, -0.00939738099, 0.00961291697, -0.00974223856, 0.0186510701, -0.0122640133, 0.0199155509, -0.009181845, 0.00470946729, 0.0183924269, 0.00171620748, 0.00737852463, 0.0228324737, -0.0193407871, -0.0138158742, -0.022157127, 0.0018967191, 0.025806874, 0.00721687218, -0.00503277173, -0.0279047601, -0.026712127, -0.0155617176, 0.0782252923, 0.00306959543, -0.0155760869, -0.010913319, -0.0248728842, -0.0305486731, -0.000101818427, 0.03353744, 0.0244992878, -0.0134279085, 0.0135069387, -0.0063834656, 0.00543510588, -0.00811134744, -0.00861426536, -0.0186223332, -0.0173865911, 0.0145558817, 0.00602783076, -0.0268845558, -0.0144624831, 0.0204615761, -0.00741444714, 0.0104750618, 0.0201023482, 0.0136721833, -0.0415841304, -0.00598113099, -0.0242119059, 0.00765872188, 0.0212949831, 0.00998651329, 0.0201454554, -0.001577007, -0.00674269255, 0.0452051386, -0.0145630669, 0.0112940995, -0.0400897451, -0.00982126873, -0.0145343281, -0.00903096888, 0.0127884848, 0.0212375056, 0.0077090133, -0.00893038604, -0.00287561282, -0.0133057721, -0.0268127099, 0.0228612125, -0.028537, -0.0125082871, -0.0303762425, -0.0117610954, -0.0122568281, 0.0105756456, 0.00240322924, -0.00640861131, 0.0426187031, -0.0283645708, -0.00340726902, -0.00514053972, 0.0142541314, -0.000490345, -0.00121957599, -0.00450111553, -0.0166393984, -0.00122855662, -0.0368710682, 0.0373883545, 0.0230767485, -0.0132195568, 0.00870048068, -0.000232375023, -0.0240251087, 0.0126232402, -0.00831969921, -0.00511898613, 0.0113084689, -0.0253758021, -0.0334512256, 0.0229905341, -0.0191970952, -0.00355994049, -0.0143762687, 0.0179326162, -0.0292985626, -0.00829814561, -0.0104391398, 0.00720968796, -0.0162801724, -0.0159927905, -0.0157054085, -0.00392994424, -0.00227929582, -0.0274018422, 0.0106115686, 0.00540636759, -0.000808261, -0.0184211656, 0.0148863709, 0.0063726888, 0.00980689935, 0.00292770076, 0.0101589421, 0.00525908452, 0.0306348875, 0.0162945408, -0.0250740517, 0.0224588774, 0.0220565442, -0.0239388943, 0.00034755221, 0.0230192728, 0.00149079249, -0.00531656109, -0.00246968633, -0.00832688436, -0.0069690058, 0.0165244471, -0.0125657637, 6.88705695e-05, 0.00588414, 0.00946204178, 0.0144624831, 0.00981408451, -0.00028536102, 0.0103816632, 0.00424606446, -0.00820474699, -0.0318993665, -0.00385809899, -0.00407722732, 0.0105828298, -0.0182918441, 0.0026277462, -0.0179757234, 0.0110354563, 0.0121131381, 0.0242262762, 0.000490794, -0.00547462096, -0.00605297647, 0.0102236029, 0.0182918441, 0.044457946, -0.00646249531, 0.00390839064, -0.0045801457, -0.00634754263, -0.0288674887, 0.00598472357, 0.00926087424, -0.0103816632, 0.0154036582, -0.0354916379, -0.0195706915, 0.0112725459, -0.00658463268, -0.0149438474, 0.00429994846, 0.0190390367, 0.0239532627, 0.00906689186, 0.0041490728, -0.0124364421, -0.00649841828, -0.0379056446, 0.0185361188, 0.00862145051, 0.00742163183, -0.0279047601, 0.0149294781, -0.0195563231, 0.0113084689, 0.00261876546, 0.00365154352, 0.00946204178, 0.0286806915, 0.0153892888, -0.00616792915, 0.0181625225, -0.0296865273, 0.0190965123, 0.00663492456, -0.00684327632, 0.00191108813, -0.00440053176, 0.0263241623, -0.00501481025, -0.0253901705, 0.0269420315, 0.0323017, 0.0147570493, 0.0182487369, 0.00381858414, 0.0125442101, -0.00997214392, 0.00307498383, 0.0154180266, -0.00821911637, 0.0171279479, 0.00976379216, 0.0156191941, -0.00340008456, 0.00622181315, -0.0201167166, 0.0155760869, 0.0155760869, -0.0181912594, 0.0252752192, -0.0125370258, 0.000257520936, 0.00719531858, 0.0186367016, 0.00116838608, 0.0161652192, -0.00267444574, -0.00156263786, 0.0146852033, -0.00654871, 0.0170129947, -0.0296577886, 0.00955544, -0.00452626124, 0.0095123332, -0.00569015741, -0.00299415784, -0.00993622188, 0.0119910007, -0.00144948135, 0.0241113231, 0.0198149662, 0.0135284923, 0.00566860335, 0.0115455585, 0.0152312284, -0.0156766698, -0.00847057533, 0.0201598238, -0.003180956, 0.000281319721, 0.0120772151, 0.0263529, 0.0164526012, -3.83082e-05, 0.0195706915, 0.00317197526, -0.00607453, 0.0087723257, 0.0219846983, 0.0053632604, 0.0168549363, -0.0314970315, 0.0283645708, 0.00497888774, -0.00673550786, -0.00833406858, 0.00808979385, -0.0313246027, -0.00537044508, 0.0154898725, -0.0135931531, -0.0207920652, -0.018579226, 0.00859989692, -0.00430354057, -0.00526986131, -0.0302612912, -0.0229761656, -0.00867892709, 0.0135644153, 0.0229761656, -0.0224588774, -6.32576484e-05, -0.023708988, 0.0338535607, -0.0164526012, -0.00276604854, -0.0129178064, -0.0182487369, 0.00700492831, -0.0121921673, -0.0169267803, -0.0159065761, 0.0307785776, -0.0110282721, 0.00844902173, 0.00258284272, 0.0253470633, 0.00980689935, 0.00463762181, -0.0269564018, 0.00995777547, 0.0130255744, 0.0384804048, 0.00705881231, -0.0194413699, -0.00373955397, -0.0103601096, 0.00310372212, 0.00304085738, 0.00607093796, -0.0138015049, 0.00290075876, 0.00622899784, 0.019771859, -0.03672738, 0.0253614336, -0.014203839, -0.00559316576, -0.0471593328, -0.00373596186, -0.00145666592, 0.00830533076, 0.00211944, 0.0193838943, -0.0109636113, -0.00502558704, -0.0126519781, -0.0248728842, -0.0335949175, -0.0578786694, 0.0103241866, 0.0223439261, -0.0200448725, 0.000467893289, -0.0110929329, -0.000142231482, -0.0356353261, 0.00275706802, -0.00037494328, -0.0145271439, 0.000371351023, 0.00464121392, 0.0102810794, -0.00738570932, -0.00705881231, 0.00368207763, 0.00699774362, -0.0148001565, 0.0158203617, -0.0108127352, 0.0104678776, 0.00218410068, -0.00200269115, -0.00813290104, -0.0226887837, 0.003261782, -0.0145271439, -0.0163663868, 0.0171566866, 0.026094256, 0.0162370652, 0.0130327586, 0.0342846327, 0.00299236178, 0.00309653766, -0.0204903129, 0.0150156925, 0.00145037938, 0.0168261975, 0.0212949831, 0.005873363, 0.00692949072, -0.0205046833, -0.00957699399, 0.00429276377, -0.0029797887, 0.0156623013, -0.0160358977, 0.0118113868, -0.0112366239, -0.00682531483, 0.0282496195, 0.013664999, 0.0296577886, 0.0154180266, 0.010554092, 0.0155042419, -0.0270282459, -0.0112653617, -0.00526986131, 0.00658463268, 0.0220278054, 0.00257745432, -0.00420654938, -0.0134925693, -0.0111360401, 0.00826222356, 0.0520160832, 0.00146564655, 0.0154898725, -0.0162658021, -0.0232348088, -0.00935427379, -0.0194988474, 0.0076443525, -0.0385666229, 0.000275033235, -0.00106151612, 0.0139954872, -0.00691871392, 0.0160358977, 0.0304624569, -0.00439334754, 0.00207274035, -0.0120915845, 0.00136326684, 0.00436101714, -0.0184786413, 0.0190534052, -0.0135069387, -0.0272437837, 0.0150300618, -0.00902378466, -0.0129249906, 0.026783973, -0.00575841032, -0.0132339261, -0.00714502716, -0.0130040208, -0.0400035307, 0.0016093374, -0.0107911816, -0.00986437593, 0.0216973163, -0.00350246415, -0.0204040986, 0.0300313849, 0.00105792377, -0.0040161591, 0.0102164187, 0.0122640133, 0.0173434839, -0.0037826614, -0.0164957084, 0.0236946195, 0.00482442, 0.0145055903, -0.0203178842, 0.00538481399, 0.0133273257, -0.0102164187, 0.00120251265, -0.00267803809, 0.00327974348, -0.0019344379, 0.0117610954, 0.00878669508, -0.00453344593, -0.0287956446, -0.0251458976, 0.0103457402, 0.0052087931, -0.00535966828, 0.00278760237, 0.00645171851, 0.019412633, 0.0150444312, 0.0190965123, 0.00069779862, -0.00207274035, 0.00590928551, 0.0184499044, 0.00939019583, -0.00686842203, -0.00722764898, 0.00310192606, -0.000111304267, 0.00540277548, -0.0197431203, -0.00890164729, -0.0178607721, 0.0300601237, 0.00649123359, -0.0137009211, 0.0135500459, 0.00161831803, -0.0031701792, 0.00644453429, 0.00131566927, -0.00234934525, 0.00544947525, 0.0281777736, 0.00895194, -0.00434664777, 0.00778085878, 0.00723124156, -0.00654511759, 0.0194413699, 2.13010444e-05, -0.00323124765, 0.00285405922, 0.0199586581, 0.0138158742, -0.0232635476, 0.029744003, -0.0261229947, -0.0132482955, 0.00641938811, 0.00506869424, 0.00150785572, -0.0138517972, -0.00071845419, -0.00885135587, -0.0064373496, -0.00490704225, -0.00492141116, 0.0291405022, 0.0158059914, 0.000646159751, -0.00705522, 0.0271288306, 0.0192258339, 0.00747910794, -0.0343995877, -0.00535966828, 0.000327570218, 0.0176883414, 0.0295140985, 0.0125011029, 0.0158778373, -0.0359227099, 0.0203322545, 0.00361921289, -0.00979253091, -0.00913873687, 0.0130974203, -0.00988592952, -0.0020583712, 0.015145014, -0.00484956568, -0.00699415151, -0.0163951255, -0.0319281034, 0.0225738306, -0.00773775158, -0.00740726292, 0.00928961299, -0.0145199588, 0.0153461816, -0.00933272, -0.0116245886, -0.00556083536, 0.00393353682, -0.00396945933, -0.0026277462, -0.0123574119, -0.0147570493, 0.00655589439, 0.00341445347, -0.0182199981, 0.0277898088, 0.010697783, 0.000220363378, -0.0175015442, -0.00256128912, -0.0140817026, 0.0123717813, -0.00669599324, -0.00296182744, 0.00738570932, 0.00486393506, 0.00026493, 0.0123574119, -0.00351324095, 0.00671754684, -0.000672203721, -0.0234647132, -0.0023134225, -0.00715580396, 0.012580133, 0.0197862294, 0.0179900937, 0.0341409445, -0.00340906507, 0.00315760612, -0.0227175225, -0.01662503, 0.0261804704, 0.00296003139, 0.00987156, 0.0071126963, -0.00432509417, 0.00395149784, 0.0106834136, 0.0124077043, -0.00886572432, -0.0144624831, 0.00847776, 0.00190031133, -0.0176164974, -0.00313605252, -0.00859271176, -0.00769464439, -0.00961291697, 0.00395868253, -0.00339469616, 0.0115455585, 0.00046250489, -0.0032456168, -0.00892320089, 0.0157485157, -0.00962010119, 0.000997753232, -0.00436101714, -0.00160484703, -0.0307785776, -0.000927704, 0.00564704975, -0.0423887968, 0.00319891726, -0.00442208536, 0.00696182111, 0.00887290947, 0.0189097151, 0.00107678317, -0.00554287387, 0.00338751148, 0.00330309314, -0.00547462096, 0.00172429008, 0.00380062265, 0.0319855809, 0.00902378466, 0.023708988, -0.00627928972, -0.0145486975, 0.000742253, -0.00292231236, 0.010625938, 0.00455499953, -0.00827659201, 0.00184463116, 0.00936864223, -0.00669958536, 0.00200269115, 0.0026223578, -0.0232060701, 0.0219990667, -5.92724718e-05, -0.0101445736, -0.00216434314, 0.00853523612, 0.0116605116, -0.00769464439, -0.00126537739, -0.00402334332, -0.014239762, -0.0153030744, 0.0192689411, 0.000756173045, 0.0046448065, 0.0159640517, -0.00398742082, 0.0184211656, 0.0121490601, -0.00551772816, -0.0140529638, -0.0137583977, 0.0112581775, 0.00829096138, 0.0236946195, 0.00113425951, -0.028407678, 0.00859271176, 0.006415796, -0.00335338502, -0.0372734033, 0.0137871355, 0.0107911816, -0.00644094171, 0.00625055144, 0.00738570932, 0.0314970315, 0.0360089242, -0.00540996, -0.00406645052, -0.000441175769, -0.013988303, -0.0148145258, 6.76357231e-05, -0.00658822479, 0.00976379216, -0.0169555191, 0.0151162762, -0.0058625862, 0.00132824224, -0.0175015442, 0.00830533076, 0.00579792541, 0.00020419815, -0.000416254392, 0.0109564262, 0.00969194714, -0.00614996767, 0.00829814561, 0.0105325384, 0.0113731297, 0.028881859, 0.00474898238, -0.0426187031, -0.008096979, -0.000687919906, 0.00737134, 0.005819479, 0.000281319721, 0.00101661263, 0.000437808019, -0.0132051883, -0.00631521223, -0.00658822479, -0.000607093796, -0.0161795877, 0.00946204178, 0.00580511, 0.0213668272, -0.0116174044, -0.00180870842, -0.00423888, -0.00509743253, -0.00615715235, -0.000958238263, -0.0227606297, -0.00731386384, 0.00701570511, -0.013154896, 0.00907407608, -0.0131405275, -0.0141894706, 0.0276892241, -0.0136865526, -0.000949257577, -1.24817379e-05, -0.000933990465, -0.00873640273, -0.00533093, 0.0150156925, -0.0103098173, 0.0256344453, 0.0296865273, -0.0120053692, -0.0075222156, -0.00247148238, -0.000840142369, 0.0198868122, -0.0104678776, -0.00502199493, 0.0301176, 0.00798202585, 0.0183205828, -0.0001286482, -0.0184930116, 0.0035114449, 0.000305567548, 0.0161221121, 0.00722764898, 0.00064166938, -0.0149869546, 0.00196497212, -0.00424606446, 0.00713065779, 0.00513694761, 0.011998185, -0.00048450756, 0.0103529245, -0.000191961983, -0.0296577886, 0.0218122695, -0.00570093421, -0.0145415133, -0.00730667915, 0.00409878138, 0.0178751405, 0.00722405687, 0.00344139547, 0.0142541314, 0.00576200243, 0.00240143319, 0.0101302043, -0.0242406446, -0.019987395, 0.0180763081, -0.0040484895, -0.0251458976, 0.00156084169, 0.00224157702, 0.0257062912, -0.0123574119, -0.00623259, 0.000587785325, 0.00256667752, -0.00974942371, 0.00341265742, -0.00605297647, -0.000280646171, -0.00418499578, 0.00171890168, 0.00447956193, -0.00518005481, -0.0311234351, -0.0124005191, -0.0172285307, -0.0188666079, 0.00555365114, 0.00163448334, 0.00909563, 0.0122783817, 0.00442567794, 0.0136147067, -0.0174009614, -0.00197215681, -0.00588054769, -0.000679837307, -0.0180763081, 0.0238239411, -0.0212662444, -0.0181194153, -0.0333075374, 0.01066186, -0.0174296983, -0.00610326836, -0.00167220214, -0.00469509792, 0.0106403064, -0.00517287, -0.0108702118, -0.011674881, 0.000788054429, -0.0140314102, -0.0293991454, -0.0092249522, -0.0107552595, 0.000609339, -0.00979253091, -0.00416344218, -0.00458733, 0.00970631652, 0.0206052661, 0.0077090133, 0.0174871758, -0.00185181573, -0.00858552754, -0.0190677736, -0.0211225525, -0.0108845811, -0.0286519527, -0.00489626545, 0.0032402284, 0.0112438081, 0.0032671704, 0.0027031838, 0.00230444176, 0.0154755032, 0.0103241866, 0.0182774737, 0.000926805893, -0.00309114926, 0.00837717578, 0.0128818834, 0.0186079629, 0.0171423163, 0.00695463642, 0.00486393506, 0.00359047484, -0.00190929207, -0.0223870333, -0.0134566473, -0.00859271176, 0.020964494, -0.0227606297, -0.0218410082, -0.0113731297, 0.0139020886, -0.0177027117, -0.0394287668, -0.0220278054, 0.00329411239, 0.00136236881, -0.00442567794, 0.00585540151, -0.0172572695, 0.00148270989, 0.0114808977, -0.0189959295, 0.00737134, 0.00746473903, 0.0213093515, 0.00310731446, 0.0016093374, 0.000597664097, 0.00458733, 0.00563986553, 0.011998185, -0.00905970763, -0.00265648449, 0.00149797695, -0.0225450918, 0.0148432637, -0.0101373885, -0.00588773191, -0.0148288943, -0.00665288605, -0.00114952668, 0.0139739336, 0.0181194153, -0.00112438085, 0.010518169, 0.0101661272, -0.00990748312, 0.0196856447, 0.0248872526, -0.00390120619, -0.00431431737, -0.0132554797, 0.0120772151, 0.00168297894, 0.00161742, -0.0170129947, 0.0120484764, 0.00936145801, -0.0191970952, -0.0294853598, -0.0205908976, 0.0102236029, -0.00962728634, -0.0100296205, 0.0334799662, 0.01850738, 0.015145014, -0.0031755676, -0.00576918712, -0.005819479, -0.00620744424, 0.0123143047, -0.014203839, -0.0205334201, 0.0103457402, -0.0180475693, -0.0177027117, -0.00458373781, -0.00392994424, 0.00118634745, -0.0103601096, -0.00398742082, 0.00537763, -0.000956442149, -0.0109564262, 0.0144624831, 0.00774493627, 0.00188953453, -0.000682980521, 0.0173578542, -0.00933272, -0.00668521645, 0.0185361188, -0.0032510052, 0.0173722226, 0.0169267803, -0.00483519677, 0.0339685157, -0.0310372207, 0.0168261975, 0.00656667119, -0.0127813, 0.00442208536, -0.00435742456, -0.0215536263, 0.0019344379, -0.000694655406, 0.0133488793, 0.0215823632, -0.00658822479, -0.00125190639, -0.0139020886, 0.0163520165, 0.0176308658, 0.0310084838, -0.0201598238, 0.00747192372, -0.00865018833, -0.00663133198, 0.00178086828, 0.0178032946, -0.0114377905, -0.00725279516, -0.0314682946, 0.0240969528, 0.00423528766, 0.0069905594, -0.00634395052, -0.00934708863, -0.0143116079, -0.0262523163, -0.0135644153, 0.0290399175, -0.015360551, 0.00251818192, 0.00887290947, -0.00249842438, 0.0207633264, 0.00677502295, -1.5225055e-06, -0.00145756395, -0.00286483602, -0.00188953453, -0.0208064336, -0.0120987687, -0.00132105767, -0.0199299194, -0.0135572311, 0.0168836731, -0.00899504684, 0.00507947104, -0.00283430167, 0.00400897441, -0.00673191575, 0.0455499962, -0.0146133583, -0.000878310238, -0.0156623013, 0.0115886657, 0.0224301405, 0.0212375056, -0.0100008827, 0.0173434839, -0.0222002342, 0.00173057651, -0.00608171476, -0.00597753888, -0.00569374952, 0.000871574739, -0.0133273257, -0.0153030744, -0.00671036215, -0.00839154515, 0.0173578542, 0.0258212443, 0.00346474536, -0.00728153344, -0.01434753, -0.00821193121, 0.0102451565, -0.0342558958, 0.00388324494, -0.00726357196, -0.0162801724, 0.0087507721, -0.0192545727, -0.00363897043, 0.00334260822, 0.00666366285, -0.0378481671, 0.00501481025, 0.00687201414, -0.00214099349, -0.000126403029, 0.0331351086, -0.00466995221, 0.000281768764, 0.0110139027, -0.00970631652, 0.00977097731, -0.00802513305, -0.0100008827, 0.00870048068, -0.0179182477, -0.0227606297, 0.010482247, 0.00151683646, 0.0132985869, 0.00707677379, 0.0107121523, -0.00762998359, 0.0102236029, -0.0113587612, 0.00703725871, 0.00336775393, 0.0153318122, 0.00352401775, 0.00214458583, 0.0064265728, -0.00502199493, 0.0158778373, -0.0052662692, 0.00629365863, 0.00492500328, 0.0139308264, -0.00190390355, -0.0101014655, 0.010625938, -0.00737852463, -0.00347013376, -0.005819479, 0.00116030348, 0.00493218796, 0.0102595259, 0.0140314102, 0.00523753092, -0.0127310082, 0.00429994846, 0.00419936469, 0.0159353148, 0.0185504872, -0.0133129563, -0.0195132159, 0.00042905187, 0.00311090657, 0.0136937369, -0.015360551, 0.0139667494, -0.00857834332, 0.0354054235, -0.00777367456, 0.00711628888, 0.0176308658, -0.00890883151, -0.0116605116, 0.0190534052, 0.0129249906, -0.00437897816, -0.0244274419, -0.0209501237, 0.0279047601, 0.0149151087, -0.0185217485, -0.0172572695, 0.00397664402, 0.0160502661, -0.00844902173, 0.0141176246, -0.00303546898, 0.0126807168, 0.00244454038, -0.00176111085, 0.00923932064, 0.00472024409, 0.0208208021, -0.0156048248, 0.00431072526, 0.00629725121, 0.0105971992, -0.0160933733, -0.0075868764, -0.00435024034, 0.0173291154, -0.011387499, 0.000563986541, -0.00690434501, -0.0088369865, 0.00944048818, 0.0347731821, -0.0299164318, 0.0104966154, -0.0236084051, 0.00547821308, 0.0109420577, -0.000639424252, 0.00352940615, -0.0121921673, -0.0118257562, 0.0144768516, -0.0179326162, 0.00171890168, -0.00483160466, 0.0212375056, -0.00686123734, -0.00828377716, -2.17921752e-05, -0.00305881863, 0.0126591632, 0.00608171476, 0.0160790049, -0.00396945933, -0.0151162762, -0.00171171711, 0.0031863444, -0.0133416941, 0.00670317747, 0.00527345389, -0.00404489692, 0.0069797826, 0.0103457402, 0.0113946833, -0.00442567794, 0.00810416322, -0.00355275604, 0.0135500459, -0.00512617081, 0.015719777, 0.0081400862, 0.0145055903, 0.00854960456, 0.00448674662, -0.0151019068, -0.016337648, -0.0137512134, 0.0118113868, -0.0210219696, 0.00445800833, -0.00513335504, -0.0176596045, 0.0113443919, -1.40603734e-05, 0.00739289355, -0.00179882965, -0.0399747901, 0.0028774091, -0.000873370853, -0.0108414739, -0.00185540796, -0.0162658021, 0.0286950599, 0.00679298444, -0.032818988, 0.00632958161, 0.00131207693, -0.00810416322, 0.0349456109, -0.0150156925, 0.0200017653, 0.00801794883, -0.0120412922, -0.0143116079, 0.00309653766, 0.0130902352, -0.00991466828, 0.00444723153, 0.0185361188, -0.000156600567, -0.00591287808, -0.00414188858, 0.000994161, -0.0135787847, 0.0156910401, 0.00187696156, 0.0111935167, 0.00470587518, -0.0332500599, 0.0101589421, -0.0106834136, 0.000345307053, 0.01850738, 0.0232922845, -0.0292123482, 0.00121149339, 0.00848494377, -0.0149725853, -0.0283358339, -0.0122280903, -0.00436101714, 0.00088549481, 0.0191970952, 0.00427121, 0.00933272, -0.0133632477, 0.0111144865, 0.000879657338, -0.031956844, 0.0190390367, 0.0261661019, 0.0159927905, -0.00571171101, 0.0270857234, -0.0123358583, 0.0104966154, 0.00357790198, 0.0189097151, -0.00128782913, -0.00307857618, -0.00801076461, 0.00997932907, -0.000964524748, 0.0166681372, 0.0109923491, -0.00668521645, -0.00284328242, 0.0102451565, -0.0272725206, 0.000762459531, 0.0176596045, -0.00460529141, -0.00261337706, 0.00819756277, -0.018938452, -0.00247148238, 0.01676872, 0.0265109595, 0.0413254835, -0.00146205432, 0.00216973177, 0.0180332, 0.0102595259, 0.0234072376, -0.0233066548, 0.00996496, 0.00846339, -0.0187660232, -0.0019021075, -0.00842746813, 0.00332644302, 0.0233353917, -0.00285585551, -0.0230336413, -0.00643375749, -0.0200448725, 0.00763716828, -0.0218841154, 0.011890417, 0.00430713268, 0.0139308264, 0.00803950243, 0.0118329404, -0.00381858414, -0.0209070165, 0.0281346664, 0.0149869546, -0.000567578827, -0.0237808339, 0.0178320333, 0.0315832458, 0.00497529516, -0.0117754638, -0.00102200103, -0.00570811843, 0.0113659455, -0.00303546898, 0.000638526166, 0.0191108808, 0.0107265208, -0.026927663, 0.0240251087, -0.0281490348, -0.0135572311, 0.00375751546, 0.0184499044, -0.0081185326, 0.00389042939, 0.00745755434, -0.0259649344, -0.00772338267, 0.0139020886, -0.0102667101, 0.000318365026, 0.00449393084, 0.0110713793, -0.0195706915, 0.0125370258, 0.0178320333, -0.00466995221, -0.000518185087, 0.0103672938, -0.000925907865, -0.00201167166, -0.00304444972, 0.00695104431, -0.0296290517, 0.00669958536, -0.0162945408, 0.00129860593, 0.00659900159, -7.24067104e-06, 0.00333542353, 0.00430354057, -0.00537403719, 0.0198868122, -0.00342343422, -0.00742163183, 0.0235221907, 0.0199299194, -0.00633317372, -0.00112887111, 0.000209698817, 0.00553568965, 0.024829777, 0.0285513699, -0.00568297273, -0.00857115816, 0.00168657117, 0.00552491285, 0.0119191548, 0.0175877586, 0.00511180144, -0.00146385038, 0.0207633264, 0.00395509042, 0.0157628842, -0.0122711975, -0.0216685776, 0.0195563231, -0.0670174062, -0.0104606934, -0.000433317677, 0.0115168206, -0.0112150703, 0.0104750618, 0.0253901705, -0.00776649, 0.0293847769, 0.011674881, -0.00989311468, 0.00847776, 0.0308360532, 0.0090166, 0.00179254322, -0.00549976667, 0.0168836731, -0.0065271561, -0.0124867335, 0.00494655734, 0.00302648824, 0.0253326949, -0.000127413354, -0.000782666029, -0.00528423069, 0.000671754649, 0.0197000131, 0.0007965861, -0.00185900019, -0.00419218, -0.00101751077, 0.0130327586, 0.0147570493, -0.0151162762, 0.00982126873, -0.00381139945, 0.016553184, -0.0120843993, -0.00872203428, -0.0141607318, -0.00874358788, 0.0101445736, 0.0113587612, -0.026496591, -0.00950514898, 0.00823348481, -0.00660977839, -0.0144696673, 0.00593443168, 0.0065271561, -0.0269564018, -0.0135859689, -0.00996496, 0.00413111178, 0.00273012603, 0.0013515919, -0.0134710157, -0.0031594024, 0.0207345877, -0.00925369, -0.00195239927, -0.0375033095, -0.0135931531, -0.00217871228, 0.01521686, 0.0163807552, -0.00936864223, -0.0134566473, -0.0281490348, 0.0277754385, -0.0300601237, 0.00171171711, -0.0165675543, -0.00723124156, 0.00083340687, -0.00279837917, -0.00143511221, 0.0149007402, -0.00444004685, 0.00189492293, 0.017673973, 0.00581229432, 0.0195706915, 0.037991859, 0.0123358583, -0.00859271176, -0.0126376096, -0.00476335129, 0.0159209445, 0.00891601667, 0.0272437837, -0.00222002342, -0.0138733508, -0.00387246814, 0.0047022826, -0.013916458, -0.0128962528, 0.0020799248, 0.0217835307, 0.00062954548, -0.00562908873, -0.00417781109, 0.000331611518, 0.0194413699, 0.0323304385, -0.0204615761, 0.0248010382, -0.00497170305, -0.00673191575, -0.00908844545, 0.0153174438, 0.00429276377, 0.015288705, 0.019010298, 0.0189959295, -0.00116659, -0.00505073275, -0.0144624831, -0.0153749194, -0.0110282721, 0.00433227886, -0.00562908873, -0.00179344125, -0.0110570099, 0.0129680978, 0.00861426536, 0.00907407608, 0.00979971513, -0.0032671704, -0.0202604085, -0.031841889, 0.0040269359, -0.00954107195, 0.00565423444, 0.0209501237, -0.0111073023, 8.6719665e-05, -0.00880106352, -0.00938301161, -0.00664210878, 0.00332823908, 0.00992903672, 0.0152455978, 0.0168118272, -0.0215679947, -0.00255410466, 0.00267803809, -0.00331746228, 0.0145702511, -0.0149582159, -0.00104714697, -0.0041023735, 0.0111791473, -0.0111863315, -0.0198868122, 0.00395509042, -0.0277323313, -0.00733541744, -0.000332958618, 0.0108486582, 0.0168405659, 0.0104750618, 0.017458437, -0.0237520952, 0.0154467653, 0.00323484, 0.0182631053, 0.000441400305, 0.0076874597, -0.0111073023, -0.0189528223, 0.00544947525, 0.0048100506, -0.00788144208, -0.00906689186, -0.0200879797, 0.0134710157, -0.0172572695, -0.00438616285, -0.00018881874, 3.48281901e-05, 0.00690075243, 0.0171279479, 0.00147193298, 0.0147857871, -0.0317269377, 0.00882980227, 0.0126376096, 0.0192689411, 0.00788144208, 0.010625938, 0.0294135138, -0.00345396856, 0.00612123, 0.0311809126, -0.0147283105, -0.00153389969, -0.00810416322, 0.00791736506, 0.0183205828, 0.0280915592, -0.00154377846, -0.00804668665, -0.0158059914, -0.00521597732, -0.016409494, 0.00637628091, 0.00718454178, -0.011638958, 0.0144193759, 0.00446519302, -0.00401975121, -0.00236012205, 0.00715939607, 0.00664929347, 0.0170848407, -0.0233928692, 0.00343241496, -0.0051872395, 0.021797901, 0.0230192728, 0.0175877586, 0.0138302436, 0.0110929329, 0.0397448875, -0.0105469078, 0.0118113868, 0.019412633, -0.0341696814, 0.00204041, 0.00483878888, 0.0053093764, -0.00592006277, 0.00474539, 0.00201167166, 0.000831610756, 0.00285226316, -0.00418858789, -0.00565064233, 0.0230049025, 0.0163807552, -0.0127741154, 0.00173865911, -0.00706599699, -0.00163538137, 0.00097440352, -0.0222864486, 0.010805551, 0.0203609914, -0.00149618089, -0.00257386221, -0.0139380116, -0.0134422779, 0.0109205041, 0.0126304245, -0.0100008827, -0.00965602417, 0.0255482309, -0.00169285771, -0.00857834332, -0.0139236422, 0.00348270661, 0.0150444312, -0.010518169, 0.0179469865, -0.00579074072, -0.00515490863, -0.0218841154, -0.0214961488, 0.000538840657, 0.00683609163, -0.0168549363, -0.00746473903, -0.00550335925, -0.0069151218, 0.0266977586, 0.00337314233, 0.0126950853, -0.0343421102, 0.00537763, -0.000557700056, -0.00234395685, 0.00501840236, -0.0150300618, 0.0171279479, 0.00778085878, -0.0228324737, -0.00940456521, 0.00620025955, -0.00802513305, 0.019987395, -0.00400897441, 0.0124005191, 0.0288243815, -0.0324166529, -0.0184642728, -0.00403052801, -0.011638958, -0.00461606821, -0.0065163793, -0.0037934382, -0.0299164318, -0.0145918047, -0.0107480744, 0.0275599025, -0.0235652979, -0.0069258986, -0.0214961488, -0.00105702574, -0.0134494621, -0.0130399438, 0.00460888352, -0.0157341473, 0.0008046687, -0.0181337837, 0.00720968796, 0.00195239927, 0.000404355, 0.00463043712, -0.00956981, -0.0136793675, 0.0176883414, -0.0110641941, 0.00488908077, -0.00342702656, 0.00765872188, 0.040405862, 0.00813290104, -0.0182343666, -0.0287525374, 0.0120341079, 0.00391557533, -0.0262666848, 0.00676065404, -0.0140385954, -0.0121777989, -0.00972068496, -0.00140008761, -0.0257493984, -0.00875795633, -0.0211656597, -0.00509743253, -0.00783833489, -0.0112797311, -0.0131333424, -0.00757250702, -0.00949078, -0.000731925189, 0.0130974203, -0.0040377127, -0.0088154329, -0.0274305809, -0.00404130481, 0.0349456109, 0.00740726292, 0.011638958, -0.0182774737, -0.00512976293, 0.0171854235, -0.0199155509, -0.0153892888, 0.0155617176, 0.00340906507, -0.0405495539, 0.0175877586, 0.00526267709, -0.00721328, 0.0121059529, -0.018722916, 0.00140817021, 0.0103529245, -0.00105433154, -0.00616433704, 0.067419745, 0.0292267166, 0.019987395, -0.0284938924, -0.00537044508, 0.012580133, 0.00698696682, 0.032272961, -0.0226744134, 0.00942611881, 0.0168261975, 0.0186941773, -0.00669599324, 0.00627210503, 0.00939738099, 0.0137871355, 0.0249016229, 0.00964884, -0.00900941528, -0.00379703031, -0.0118832327, -0.0131117888, 0.0179182477, -0.00387606048, -0.00216613943, -0.0100296205, -0.00637628091, -0.00542432908, -0.0246717166, 0.0210650768, -0.00388324494, 0.0207202192, 0.0146564655, 0.000815445499, -0.00778085878, 0.0132123725, 0.0181194153, 0.0184211656, 0.00995059, -0.0231342241, 0.0231342241, 0.0309222676, 0.0112509923, 0.00241400604, 0.00218050857, 0.00649841828, 0.00619307533, -0.0104175862, -0.0123430435, -0.0147714186, 0.0216398407, -0.0212231372, -0.000766500831, -0.0105469078, 0.00338032702, -0.0077090133, 0.024183169, 0.0158922076, -0.00648404891, 0.0218841154, 0.0108917654, 0.0035168333, -0.0181625225, -0.000876963139, 0.00612482196, -0.0133488793, 0.00204400206, 0.000211607214, 0.0228899512, -0.00119263399, 0.00903815404, -0.0117682796, -0.0090166, 0.00671395427, 0.0139092728, 0.0133273257, -0.0116102202, 0.00312347966, -0.00344319176, -0.0207633264, -0.0209932309, 0.00747192372, 0.00167669251, -0.0256488156, -0.00818319339, -0.0214530416, -0.0184499044, -0.010913319, -0.011710803, -0.00155096303, -0.00306959543, 0.00664570136, -0.00336056948, -0.00697259791, 0.00501840236, 0.0126088709, -0.015432396, 0.026712127, 0.00474179769, -0.000964524748, 0.0210650768, -0.00385809899, 0.00343421102, -0.00245531718, -0.0106187528, 0.0300888624, 0.00430354057, 0.0192833114, 0.000758867245, -0.00253614341, -0.0180619378, 0.00189312676, 0.00487471186, 0.020677112, 0.0112509923, 0.00570452632, -0.0124939186, 0.0167830903, 0.00491422648, -0.00849212892, 0.00106600637, -0.00470946729, -0.0139236422, -0.00842746813, -0.00590928551, -0.00848494377, 0.0153892888, 0.0131980032, 0.0202316698, -0.00278041768, -0.000211270439, -0.000653793337, 0.00910281483, 0.0042029568, -0.00214458583, 0.00548180565, 0.00772338267, -0.00978534576, 0.000180174844, 0.00602423819, -0.020059241, -0.0114449756, 0.00938301161, 0.011782649, -0.00967039354, -0.00843465235, 0.00148450595, 2.79804226e-05, 0.0242406446, 0.00142343738, 0.0129609136, -0.017602127, 0.00675346935, 0.0100368047, -0.00317197526, 0.00492500328, 0.0189815592, -0.0298302174, 0.0207058489, -0.0098787453, 0.00392276, 0.000678490149, 0.00340906507, -0.00164076977, 0.00194701087, -0.0188953448, -0.00979253091, -0.0110139027, 0.00362998969, -0.0157054085, 0.0173147451, 0.032704033, -0.00862863474, 0.00745037, -0.011998185, -0.00144678715, -0.020964494, -0.00361202843, 0.00412751921, -0.0166825056, -0.00130758667, 0.00438975496, 0.00612123, 0.0580511, 0.0120269228, -0.00835562218, 0.0121993525, -0.0186367016, 0.0173291154, -0.00660259416, -0.0313820802, -0.0101589421, -0.020892648, -0.00857834332, -0.00715221139, -0.00162101223, 0.00183026202, -0.0117323566, 0.0204759445, 0.00161562383, 0.0195994303, -0.0106474916, 0.0119838156, -0.00297619659, 0.0227606297, 0.0152312284, 0.00290794345, 0.000406151143, -0.00422091829, 0.00201706, -0.00476335129]
24 Nov, 2021
jQWidgets jqxScrollView moveThreshold Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that present at the bottom of the jqxScrollView widget. The moveThreshold property specifies that how much the user should drag the current element to navigate to the next/previous element. It accepts Number type values and its default value is 0.5. Syntax: Set the moveThreshold property. $('selector').jqxScrollView({ moveThreshold: Number }); Return the moveThreshold property. var moveThreshold = $('selector').jqxScrollView('moveThreshold'); Linked Files: Download jQWidgets from the link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> The below example illustrates the jqxScrollView moveThreshold property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView moveThreshold Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired.png" alt="GetHired"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring.png" alt="hiring"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade.png" alt="upgrade"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg.png" alt="gethiredgfg"> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0], moveThreshold: 0.6 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-movethreshold-property?ref=asr10
PHP
jQWidgets jqxScrollView moveThreshold Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0561549962, 0.012258, -0.00564543437, 0.0353386551, 0.0412028432, -0.00837412477, 0.0190816447, 0.0456547178, -0.0318692662, 5.16906512e-05, -0.00517338235, 0.0294744652, 0.0257901568, -0.0118358396, 0.00250609708, -0.0149291232, -0.0269108, -0.0113676256, -0.0304415952, 0.0212308243, -0.0065012686, -0.0151210139, -0.0430142954, 0.0320534818, -0.0592866577, 0.0142997205, 0.0291827898, 0.0186671615, -0.0137393987, 0.019879913, -0.0101241712, 0.0180531088, -0.010216279, 0.0156966876, -0.044580128, -0.0186211076, 0.00359795708, 0.0145913949, -0.0261432361, -0.00955617428, -0.0131406989, 0.0175158139, -0.0130485911, 0.0210312586, -0.0159192812, 0.00700402306, 0.0157350656, 0.0230115745, -0.0162416585, 0.024715567, -0.00909563527, 0.0170399249, 0.0132942116, 0.011651624, -0.00399900926, -0.0277244188, 0.0242703799, 0.0266958829, -0.00536527345, 0.0124805933, 0.0436897539, -0.0508127473, -0.0129257804, -0.0309942421, -0.0187285654, -0.0221212, 0.00891142, 0.0196342915, -0.0597778969, 0.0136242639, -0.0269568544, 0.00265769102, 0.0329745561, -0.00346747111, -0.00110625185, 0.00694261817, -0.0142229646, 0.00229693577, -0.00726115704, -0.00829736888, -0.0278011747, -0.0016483441, -0.0560014807, -0.0322683975, 0.0234567616, 0.0324526131, 0.0273713376, -0.0395756103, 0.0408037119, 0.0146911787, -0.0283231176, -0.0172701944, -0.00546889473, 0.00222785491, 0.00970968697, 0.00371692958, -0.014092478, 0.00241590827, -0.0168250073, 0.0161956046, 0.0259590205, 0.0240554605, 0.00402203621, -0.0196342915, 0.00523478771, 0.0103621166, 0.0146835027, 0.0118818935, 0.00572219072, -0.01746976, 0.0522864722, -0.0341105536, 0.00375722675, -0.0139082633, -0.062111292, 0.000900928455, -0.029121384, -0.0105923852, 0.0133863194, -0.0178842451, -0.00379944267, 0.00347898458, -0.00826666597, 0.0450099632, -0.0112755178, 0.0120047033, 0.00942568853, 0.00100934692, 0.0373343229, -0.0330052599, -0.00214342307, 0.0259129666, 0.00523094973, 0.00103909, 0.00592175778, 0.0154280402, 0.0439660773, 9.40266109e-05, -0.025759453, -0.00479727611, -0.018452242, -0.0180070549, 0.0267879907, -0.00242742174, 0.00485100551, 0.0448871516, -0.00365552446, 0.026219992, -0.0423695408, 0.00561089395, -0.0152438246, -0.0245927554, 0.00331203942, 0.0343561731, 0.0450713672, 0.00102277927, -0.0139466412, 0.038808044, -0.00881163683, -0.0291367359, 0.0165333319, -0.0292288437, 0.0335272029, 0.000651949842, -0.026158588, 0.0102700088, 0.0472512506, 0.0202943962, -0.0274173915, 0.038808044, -0.00317963469, -0.0171934385, -0.0107458988, 0.000919637852, -0.00743385917, -0.0227352511, 0.0253449697, -0.029121384, 0.0117897857, -0.0294591133, -0.0173469502, -0.0145913949, 0.0105616832, 0.0079903435, 0.0183754861, -0.029121384, 0.005825812, 0.0105847102, -0.0248383768, -0.0267726388, -0.00835109781, 0.0400668494, 0.0247002151, 0.0460538492, 0.00333314738, -0.0313626714, -0.0211387184, 0.0241322182, 0.00988622662, -0.0221519023, -0.000205683216, -0.0143380985, -0.0157043636, 0.0275862571, 0.00330244494, 0.0136165889, -0.0236256253, -0.0403738767, 0.066501759, 0.00579127157, -0.00339071476, 0.0275402032, 0.046145957, -0.000259532651, -0.0107842768, 0.00494695129, 0.014568368, -0.0171013307, 0.00881931279, 0.0156506337, -0.0120661091, 0.00284190639, -0.0300424621, -0.00029527233, -0.08609, -0.0216453094, 0.00895747356, -0.013094645, -0.00977109186, -0.0110913021, -0.0162109546, -0.00734558934, -0.0146835027, 0.0173008963, 0.00861207, 0.0421546251, -0.011152707, 0.0271257181, -0.0161495507, 0.0360141098, 0.01842154, -0.0452248827, -0.0016483441, -0.00492392434, 0.0233646538, -0.0175158139, -0.0294898152, 0.0115825431, 0.00476273568, -0.00728034601, -0.0199566688, 0.00822828803, -0.0152054466, 0.00518489582, 0.0003665119, 0.0341719575, 0.0019486536, -0.000737821043, 0.0346324965, 0.00768331764, 0.0454705022, 0.0155892288, -0.0313626714, 0.00735326484, 0.0434134305, 0.0460538492, 0.0292595457, -0.0253756717, 0.0291981418, -0.0618656725, 0.0221365504, -0.0200027227, 0.0339570381, 6.86610147e-05, -0.0227199, 0.0101241712, -0.038808044, -0.0450099632, 0.0422774367, 0.00648207963, 0.00682748342, 0.0165793858, 0.0272178259, 0.0869496688, 0.0114367064, -0.0183601342, 0.0194193739, -0.0217681192, -0.0310709979, 0.0342947692, -0.0229962226, -0.028123552, 0.0024024758, -0.00521943625, 0.0607910827, -0.00326214777, 0.00139504788, 0.0128106466, -0.0251914561, -0.0243317839, -0.0536987893, -0.00134995347, -0.00470900629, -0.00934893172, 0.0163798202, 0.0234874636, 0.0235181656, -0.0480802208, -0.0185904037, -0.0269568544, 0.0833267644, -0.0225970894, -0.00469749281, -0.0493390262, 0.00875023194, -0.0312398616, 0.0180838127, 0.0185904037, 0.00280352822, 0.0058181365, 0.0115441652, -0.00629786402, -0.0135091292, -0.000575193379, 0.0187132154, -0.0359527059, -0.00916471612, -0.00316620222, -0.0285840891, -0.0173469502, -0.012142865, -0.0310095921, 0.00545738125, -0.00459003355, 0.00974038895, 0.0142690176, 0.0158271734, -0.0176693276, -0.0478346, 0.0152054466, -0.0160727948, -0.00399517175, 0.00776007399, -0.0204632618, 0.0478960052, -0.0353079513, -0.00491241086, -0.00727267051, 0.0631858855, 0.020816341, 0.00145357463, 0.0235795714, 0.040312469, 0.0197878052, 0.0142229646, 0.0180684607, -0.00850461144, -0.00907260831, -0.0364132449, -0.00341182272, -0.00473970873, -0.0217067152, 0.00990925357, 0.00668932172, 0.0137317227, -0.0194193739, -0.0494004302, -0.00997833442, -0.0107842768, 0.00436360249, 0.00292058173, -0.0187746193, 0.00828201789, 0.0418783, -0.0409572236, 0.0063093775, -0.00655116048, -0.0231497362, -0.0345403887, 0.0173776522, -0.0144302063, 0.0539137088, -0.00285533885, 0.0285226852, 0.00045358247, 0.0200334247, -0.0228273589, -0.0392685831, 0.0324219093, 0.0180684607, -0.0589796305, 0.0513346903, -0.0216606613, -0.0544663556, -0.00111200858, 0.000228110483, 0.00304722972, 0.000883178553, -0.0154740941, -0.0175004639, 0.0332508795, -0.0376106463, 0.0164105222, -0.0216606613, 0.0401282534, 0.0144532332, -0.0270182583, -0.0392992869, 0.00579510955, -0.00439046696, -0.0142229646, 0.00899585243, -0.00656267349, 0.0250993483, 0.0199413169, 0.0134784272, 0.0260511283, 0.049953077, -0.0112908687, -0.044119589, 0.0191891044, 0.00575289363, -0.010676818, 0.0227199, -0.044702936, 0.0282924157, -0.0589182265, 0.0227045491, 0.0297968406, -0.00298966258, 0.00377641572, 0.0156276058, 0.010653791, 0.00187861337, 0.0146528, 0.039790526, 0.0563699119, 0.00645137671, -0.0146067459, -0.0287222508, 0.000227750686, 0.0186518095, 0.00447489927, -0.000694645569, -0.0363211371, 0.023241844, -0.0316236429, -0.01213519, 0.00626716157, 0.0331280716, 0.000136962233, -0.0180838127, -0.016471928, 0.0129334563, 0.0230576284, -0.0198031552, -0.0220444426, -0.0207549352, 0.000232188162, -0.0481109209, -0.0350623317, -0.00594094675, 0.0185597017, -0.0194193739, 0.00691191526, -0.0391457714, -0.0180838127, 0.0351851434, -0.0143534504, 0.00941801257, -0.0506285317, -0.00187189714, 0.0294437613, 0.0760195553, 0.0301959738, 0.0109761674, -0.0154817691, 0.00485484349, 0.00465527689, 0.000820334186, 0.0525320917, -0.0252989158, 0.023303248, 0.00908796, 0.00525397668, -0.0249611866, 0.040251065, -0.0181759205, 0.00165889808, 0.00624029664, 0.022781305, -0.0167329, -0.0162263066, -0.00648207963, -0.0113138957, 0.00253488077, -0.0261125341, -0.00767947966, 0.0229348168, 0.0262046419, -0.0181605686, 0.0216299593, 0.00289179804, -0.00241974602, 0.0027133394, 0.011643949, -0.0479574092, -0.0165640358, 0.0273713376, -0.0250225924, 0.0179149471, -0.0230269246, -0.0279700384, 0.00940266158, 0.00476657366, -0.0359527059, -0.0138315065, -0.0154357152, -0.00872720499, -0.0109761674, 0.0180838127, 0.0186978634, -0.00758737186, 0.00142383156, 0.0312859155, 0.0361062177, -0.0079903435, -0.00454781763, 0.0131867528, 0.0172855444, -0.0164412241, 0.00604073, 0.0148600424, 0.0148677183, -0.000382822647, -0.00176155975, -0.0291981418, -0.00861207, -0.0272485279, 0.0113522746, -0.00792126264, -0.00681597, -0.046084553, -0.012258, -0.00657418696, 0.0227352511, -0.0182373244, -0.0112524908, 0.0288757645, 0.0329745561, 0.0338342302, 0.0173162483, 0.0036612812, -0.00228926027, 0.00614435133, 0.0107151959, -0.0153973373, -0.0241322182, -0.0271103662, -0.0240708124, 0.00409111707, -0.00853531342, 0.0390536636, 0.00437511597, 0.0172855444, -0.012112163, -0.0163184144, 0.0127722677, -0.0380711816, 0.00890374463, 0.00659721391, -0.0202483423, 0.000828489603, -0.00454398, 0.0135014541, 0.00135379133, 0.0369965918, -0.0202483423, 0.00642451225, 0.0166561417, -0.0194654278, -0.0231804382, 0.0239480026, 0.0204939637, -0.011145032, -0.0078176409, -0.0330359638, -0.0277858227, -0.0336193107, -0.0033235529, -0.00528084161, 0.0383168049, -0.00141807483, 0.00229309802, 0.0116593, -0.00627867505, -0.0025943669, -0.000852476, -0.00780996541, -0.0338342302, 0.0372115113, 0.0408037119, 0.030073164, 0.0195882376, -0.0104542244, -0.00695413165, 0.000985360472, 0.0173623022, -0.0107919527, -0.0101241712, -0.0137854526, 0.0311017, 0.0240094066, 0.0184675939, -0.0207702871, 0.00888071768, -0.0031969049, 0.0228273589, -0.00902655441, -0.0106000612, 0.0227966569, 0.0113906525, 0.0207395833, 0.0163951702, 0.0291367359, 0.00690040179, -0.00736477831, -0.000857273233, 0.000440389937, -0.0199413169, -0.00778693845, -0.00203212607, -0.0341412537, -0.0143534504, 0.00812082924, 0.00667013275, -0.0175311659, 0.0341105536, -0.0297047328, -0.00154952018, 0.00668932172, 0.0250839982, -0.0256673452, 0.0630630702, -0.0156506337, 0.00123577833, -0.00269990694, 0.0312552117, 0.00842017867, -0.0116900029, -0.0257441029, 0.0128643755, -0.00104004948, 0.0122887027, 0.0206321254, 0.0055264621, 0.00256366446, 0.00619808072, -0.00551111065, 0.017945651, -0.0155969039, -0.00256558321, 0.0337421224, 0.0391764753, 0.0137777766, -0.0285073332, 0.0302880816, 0.0114827603, 0.000628443144, 0.0164105222, 0.00640532328, -0.0144302063, 0.0294130594, 0.0175004639, -0.00269990694, -0.00483181654, -0.0113676256, 0.000348042377, 0.00570300175, 0.0280160923, 0.0391764753, 0.0272331778, 0.0292748976, -0.0115671922, -0.0201562345, -0.0313473195, -0.0413256548, 0.00600235164, 0.026158588, 0.0197264, 0.00305682444, 0.0182219744, 0.0207702871, 0.0471591428, 0.0188513771, -0.0251914561, 0.0059639737, -0.0117821097, 0.00993995648, -0.0391457714, 0.00421776529, -0.0259129666, -0.0326368287, 0.0305951089, -0.00204172079, 0.0220137406, 0.00434441306, 0.0317771584, -0.0202176403, -0.0120430822, 0.0311938077, 0.0385624245, -0.0124038374, 0.0574445, 0.00629018852, -0.00441349391, -0.0134323733, 0.0134861022, -0.0459924452, -0.00472435728, -0.0147909615, 0.0479574092, 0.0193579681, -0.0252989158, -0.0161188468, 0.00158789835, 0.0417861938, -0.0131406989, -0.00206474774, 0.00742234569, -0.0118051367, 0.0144992871, 0.0279700384, -0.0110836271, 0.000293113582, 0.0307486206, -0.00531538203, 0.000159389499, -0.00964060612, -0.00585651444, -0.0227966569, -0.0233186, 0.01745441, 0.00721126562, -0.00488938391, -0.0375185385, -0.00479727611, 0.00402203621, 0.00643602572, -0.00727267051, 0.00410646852, -0.0176539756, 0.0321762897, -0.0351851434, 0.00543819228, -0.00802104548, -0.00627099955, 0.0161649, 0.0129027534, 0.00677759154, 0.0188206732, 0.0303648394, -0.0250839982, 0.0131406989, 0.0125880521, 0.0387159362, -0.0381325893, -0.0149982041, 0.0225510355, -0.0355842747, 0.0142766936, -0.0136242639, 0.0450713672, -0.0179917049, -0.0135244811, 0.00313741853, 0.00445571, -0.0134630753, 0.00583348796, -0.00456316909, -0.025206808, 0.00466679037, 0.0241015144, 0.000476849236, 0.00722661661, 0.00523094973, 0.00761039881, 0.0384089127, -0.00245044869, 0.00289947377, 0.0139082633, 0.0024658, -0.00257325894, 0.00518105831, 0.00838180073, -0.0101164961, -0.019879913, 0.0102546578, 0.00797499157, -0.0366281644, -0.00478576263, -0.00511197746, 0.0250993483, 0.0358605981, 0.00424079224, -0.00551111065, -0.0201255325, 0.00468214136, -0.046606496, -0.010200928, -0.0351544395, -0.000395775278, -0.00545354327, -0.00539213838, -0.0109915193, -0.00338303903, 0.0181759205, -0.00858136732, -0.00114175177, 0.0282617137, -0.0274787974, 0.00212999061, 0.0274634454, -0.0259743724, -0.0429221876, 0.0274327435, 0.000791070808, 0.0247923229, 0.0462380648, 0.00675840257, 0.0124729183, 0.00690423977, -0.0453476906, 0.0251300503, -0.0127338897, 0.00927217491, 0.00447873678, -0.0119740013, -0.0289218184, 0.024776971, -0.00676224055, 0.00691575324, -0.0283538215, 0.0112908687, 0.0342947692, 0.0248076748, 0.00167424942, 0.0330052599, 0.0392685831, 0.00871952903, 0.0294591133, 0.0191123486, 0.0385317206, 0.0251454022, -0.0116669759, 0.00670851069, -0.0125650251, 0.00462073646, 0.0211694203, -0.0229041148, -0.0330973677, -0.0121889189, 0.00804407243, -0.00503138313, 0.0199259669, -0.00240055704, -0.0314087272, -0.0218141731, -0.0230576284, -0.0138468575, -0.00186901877, -0.00997065846, 0.014092478, 0.00245620543, 0.0151363658, -0.0040719281, -0.0442116968, 0.0105847102, 0.0133786434, -0.0296126269, 0.0439353734, -9.48661327e-05, -0.0476810858, 0.00371884834, -0.0202790461, 0.00810547732, -0.0179149471, -0.00259052915, 0.0215992555, 0.000113575508, -0.00546121923, -0.01650263, -0.00792126264, -0.0291981418, 0.00174045179, 5.09410747e-05, -0.00667013275, -0.0148370154, 0.00343868742, 0.0140464241, 0.0195575356, -0.017930299, 0.0197878052, -0.0243931897, -0.0062095942, -0.0225203335, -0.0067852675, 0.0371501073, -0.0052885171, 0.0140464241, 0.0393913947, 0.00286109536, -0.0263121, -0.0406194963, -0.00211847713, -0.00321417488, -0.00728034601, 0.0380711816, -0.00319306692, 0.00209161243, -0.0215992555, -0.0196649935, 0.00473970873, 0.0290139262, 0.00128567, -0.0367816761, -0.0535759814, -0.0277244188, -0.0179763529, 0.00796731655, 0.00783299282, 0.0206935294, 0.0571067743, -0.0216913633, -0.019895263, -0.0371808074, 0.00768715516, 0.0030856079, -0.0347553045, 0.0326368287, 0.0610060021, -0.0118818935, -0.0262967478, -0.0154203642, 0.0150749609, -0.0180531088, -0.0213536359, 0.00901887938, -0.0265577212, 0.00377833471, 0.000816016691, 0.0124115124, 0.031961374, 0.0100781173, 0.0153666353, -0.000687929394, -0.0203097481, 0.0066394303, -0.0134937782, 0.0100090373, -0.000735422422, -0.0243317839, -0.0253142659, 0.0161188468, -0.00101798202, -0.0241168663, -0.0115518412, 0.0239326507, -0.00065003091, -0.00667397073, 0.00910331123, -0.00695029367, 0.0589796305, 0.0101318471, -0.000361234881, 0.0395449065, 0.0190816447, -0.0309174843, 0.00807477534, -0.0112985447, -0.00294936541, -0.00459770951, 0.0204632618, 0.0117283808, 0.0349088199, 0.0065473225, 0.00127223763, -0.0243931897, -0.00114271115, 0.00864277221, 0.028138902, -0.0189895369, 0.00864277221, -0.00500451867, 0.0118051367, 0.0171473846, 0.0388387479, 0.0062019187, -0.0464529842, -0.0352772512, -0.0424002446, 0.00914168917, 0.00889606867, 0.0133249145, 0.0138929114, 0.00676991604, 0.00247155665, 0.0112294639, 0.00918774307, 0.0147832865, -0.047588978, 0.00805942342, -0.0138468575, -0.00903423, 0.0279546864, 0.00140848022, -0.00144398015, 0.00194769411, 0.0148753934, 0.00400284724, 0.0308867823, 0.00438662944, 0.0220444426, -0.0446722358, 0.0115211383, 0.0145990709, -0.00627867505, -0.0161188468, 0.00485868147, 0.0189895369, 0.0118895695, 0.00642834976, -0.000262411, -0.00461689848, 0.00860439427, -0.0063477559, -0.00843553059, -0.0257133991, -0.00526549, -0.0117130289, 0.0485714599, 0.00246963766, -0.00580278505, 0.0195421837, -0.00811315328, -0.0101702251, -0.00702705, 0.0191737525, -0.0226584952, -0.028123552, 0.00422544079, 0.00730337296, 0.018452242, -0.0121582169, 0.0109761674, -0.00911866222, 0.0113753015, -0.0330359638, 0.0236563273, 0.0174390581, -0.00593327126, -0.0131176719, -0.00448257476, -0.0012386567, 0.000146197, 0.00782147888, -0.00665478129, -0.0127262138, -0.014077127, 0.00166273594, -0.0270950161, 0.0215685535, -0.000696564501, 0.00127031875, 0.020386504, -0.0010467656, 0.0149521502, -0.00290331151, 0.0148523664, -0.0159039292, 0.00158214162, 0.00711148232, 0.013071618, 0.00356917339, -0.0100243883, 0.00409879256, 0.0271103662, -0.0145760439, -0.00298006786, -0.000364353124, -0.00304722972, 0.0122272978, -0.00506208558, 0.00592175778, -0.0219369847, -0.0260050744, -0.0224435758, 0.0946253091, 0.00724196807, -0.0285226852, -0.0140080461, -0.0134170214, -0.0307793226, -0.00688888831, 0.0258208588, 0.0164412241, -0.0149444742, 0.0165640358, 0.00541900331, 0.0176539756, 0.00636310689, -0.00174620852, -0.0115825431, -0.000659625453, 0.0016848034, 0.0288604125, -0.0344482809, -0.0162416585, 0.0264809635, -0.00414484646, -0.0113292476, 0.0105463322, 0.00751061551, -0.0180531088, -0.020386504, -0.0215685535, 0.00474738423, 0.0469135232, 0.018882079, 0.020847043, 0.0164258741, -0.0180224068, 0.0416019782, 0.000428396743, -0.00693878, -0.0477731936, -0.0279239845, -0.0209545027, -0.00898050051, 0.00342909293, -0.0104235215, 0.00429068366, -0.00711915782, -0.0209698528, -0.00784066785, -0.000654348463, 0.0247616209, -0.0263428017, 0.0105233053, -0.0124575663, -0.0049968427, -0.0142076127, -0.00300117582, 0.00521559874, -0.0175925717, 0.0257748049, -0.0341719575, -0.0075720204, -0.00399517175, -0.0186978634, 0.0244852975, -0.0170245729, 0.0167021956, -0.00333890412, 0.0128259975, -0.00827434193, 0.0463608764, 0.0354921669, 0.0187899712, 0.00911098719, -0.000221274357, -0.0156583097, 0.0142076127, -0.00951779541, 0.0260511283, 0.0258515608, -0.0254831314, -0.0228580609, 0.00486635696, -0.0141231809, 0.00785985682, -0.0145990709, 0.0110529242, -0.0320534818, -0.0194193739, -0.00862742122, 0.006063757, -0.0234721117, 0.00744921, -0.0278472286, -0.00221250369, -0.0202943962, -0.0219830386, 0.00520792278, -0.00629018852, -0.00612516236, -0.0164105222, 0.00214917981, 1.18582666e-05, 0.0131637258, 0.000329812727, 0.00645137671, -0.0272485279, 0.0161341988, 0.014514639, -0.0193119142, 0.0299810562, 0.0166561417, -0.00629018852, 0.00186997827, 0.00690807775, -0.00253296178, 0.00940266158, -0.0065933764, -0.0262967478, -0.00335809332, 0.0316236429, -0.0301959738, 0.0157657675, 0.00347706582, -0.00310671609, 0.0129948612, 0.00218755798, -0.0174083561, 0.00360179483, 0.00193714013, -0.0102239549, -0.0241168663, 0.00855834, -0.0133863194, 0.00486251898, 0.00229309802, -0.000812178827, -0.0202022884, 0.0133709684, -0.00737629179, 0.016978519, 0.0124652423, 0.00876558293, -0.0306104589, 0.00591792, 0.00491624838, 0.0483872443, -0.00445187232, 0.00045118382, 0.00836645, 0.0068850508, -0.0310095921, -0.0114520574, 0.0104388725, -0.0142306397, 0.0438125618, -0.0210005566, -0.00346747111, 0.0113138957, -0.00889606867, -0.0102239549, 0.0104388725, 0.0186671615, 0.00590256834, -0.0202943962, 0.00711148232, -0.00954849832, -0.00209545018, -0.0220904965, 0.0209698528, 0.000338207959, 0.00781380292, -0.00783683, 0.00396830682, -0.000957056589, 0.0337421224, 0.00179705967, 0.0234107077, 0.0297047328, 0.0298889484, -0.0137931285, 0.00445187232, 0.0277397688, -0.00571451522, 0.00977876782, -0.00510430196, 0.014077127, -0.00871185306, 0.000517146371, 0.0196956974, -0.00347322784, -0.0258515608, 0.0103390897, 0.00918006711, -0.0119279474, -0.00368430815, 0.00647440366, -0.00839715172, -0.0222286582, 0.00480878958, 0.00800569449, 0.00809780229, 0.0125496741, 0.012626431, 0.029106034, 0.00513500441, 0.0141538838, -0.0157811195, -0.0128336726, 0.0269875564, 7.50773688e-05, 0.0311017, -0.00886536669, -0.00992460456, -0.00294744642, 0.00421008933, 0.00270182593, 0.00213382835, -0.00220099022, -0.00716904923, 0.0112448148, -0.00452095317, -0.00195728871, -0.0137393987, 0.0147602595, -0.00617889175, -0.0104465485, -0.0199566688, -0.00187861337, -0.00827434193, 0.0191123486, -0.00774472253, 0.0189895369, 0.0493390262, 0.00161572255, 0.0119509744, 0.0204479098, -0.00329476921, -0.00486635696, 0.00566846132, 0.00970201101, 0.00934893172, 0.00438279146, 0.00423311628, 0.0123961614, 0.000795868109, -0.000142479097, 0.0113753015, -0.0211387184, -0.0156199308, 0.0193579681, 0.00563775888, 0.00656651147, 0.0203404501, -0.0116823269, 0.0200794786, 0.00118492718, 0.00795196462, 0.0117437318, -0.00889606867, -0.0263735056, 0.00789823569, 0.00233147619, -0.0188513771, -0.0219369847, -0.0321148857, -0.00195728871, 0.0133939954, 0.000902847387, -0.0199259669, -0.0238865968, -0.00614435133, 0.00766029069, -0.00192658603, -0.00388003699, 0.0207549352, -0.021798823, 0.00877325889, -0.00862742122, 0.00497381575, -0.0128950784, -0.0221212, 0.0206781793, -0.0156276058, 0.0110759512, -0.00308368914, 0.00195057248, 0.013079294, 0.0181912705, -0.0150979869, -0.000128207204, 0.0167175476, 0.0167943034, -0.0119893523, -0.0141538838, 0.0152975544, 0.031961374, -0.00538446289, -0.00752596697, -0.00184311345, -0.0247002151, 0.00618272927, -0.000768043916, 0.00809780229, -0.0279239845, 0.000775719527, 0.0137547497, 0.0140157221, -0.0315929428, 0.0200334247, -0.00277858227, -0.0217834711, -0.0152361486, -0.0136856688, 0.00241590827, 0.00871952903, 0.021368986, 0.0134093463, -0.00995530747, -0.0117974617, -0.0194654278, -0.00380136166, -0.0244699456, -0.0574138, -0.00446722331, -0.000515707186, -0.0213843379, -0.00789823569, -0.0259436686, 0.00472435728, -0.017485112, -0.000829928787, 0.00624029664, -0.0186978634, 0.0190355908, -0.00200334261, 0.00752212899, 0.00483565452, 0.00838180073, -0.0114674084, 0.017485112, -0.014077127, 0.00474738423, -0.0174390581, 0.0263428017, 0.00888839271, -0.00980179477, -0.0175772198, -0.0142690176, -0.0147295566, -0.0123347566, 0.00945639051, 0.00124921068, 0.0301345699, 0.00442500738, 0.0207242332, 0.0421546251, 0.0198492091, -0.00212615286, -0.0134861022, 0.0165640358, -0.00256942119, 0.000668740307, -0.00555716455, 0.00160324969, -0.006539647, -0.0118742175, -0.00980947, 0.00451327721, -0.00240631378, -0.00072294951, -0.0023026925, -0.00520792278, 0.00604073, -0.0128259975, 0.0290292781, 0.00648207963, 0.0448871516, -0.0132635087, 0.00482030306, -0.00665861927, -0.0303034335, -0.0105233053, -0.0197878052, -0.010653791, -0.0137854526, 0.00352695747, -0.00243701623, -0.0121582169, 0.00140848022, 0.0125573501, 0.0123961614, 0.0165640358, 0.0129027534, -0.00331395841, 2.92708796e-06, 0.0136165889, -0.0266037751, 0.00709996885, -0.0246541612, 0.00279585249, 0.0171627346, 0.00619808072, 0.00533073302, 0.00550727313, 0.0349395201, 0.0149291232, 0.00835877378, -0.00971736293, 0.00376682123, 0.00161860092, -0.00413717097, 0.0218909308, -0.0276016071, -0.0157350656, 0.00515419338, 0.00482797856, 0.00859671924, 0.0308867823, -0.00825131498, 0.0115978951, -0.000763246615, -0.00980947, -0.0209852047, -0.0349088199, -0.0239480026, 0.00231612497, 0.0177307334, 0.00205707201, -0.0138238305, 0.00751061551, -0.00174428965, -0.0013115753, 0.00990925357, -0.000181696829, -0.00921077, -0.0221979562, -0.0201408844, 0.00569148827, -0.0121658919, 0.0125727011, -0.0165486839, -0.000684091588, 0.00970201101, -0.0144685851, 0.00966363307, -0.00645521469, 0.0100243883, 0.0144225312, 0.0124268644, -0.00346747111, -0.00242166501, -0.00394528, -0.00922612101, 0.0175772198, 0.0132711846, 0.00691959122, -0.0143534504, 0.00846623257, -0.00326790451, 0.0186518095, 0.0157043636, 0.00571451522, -0.00718056271, 0.00818223413, 0.0245620534, 0.0150672849, -0.00574521767, -0.00313549978, 0.0147909615, 0.00362290302, 0.00964060612, -0.018928133, -0.002548313, -0.00288987905, 0.0191891044, 0.00367471343, -0.0171320327, -0.000807381584, -0.00236409763, 0.00735326484, -0.0110529242, 0.0183908381, 0.00879628584, 0.0164565761, 0.0176386256, 0.00745688612, -0.0163030624, 0.010676818, -0.00920309406, -0.0116132461, 0.00789823569, -0.00346939, -0.00696180714, -0.00101126579, 0.00511581544, 0.017930299, -0.00389730721, 0.0245313514, -0.0184982959, -0.0146911787, -0.00287836557, -0.000980083481, -0.0177307334, -0.015059609, 0.00510813948, 0.00882698782, -0.0102239549, -0.000574233942, 0.00224320637, 0.0192505103, -0.0038071184, -0.0062019187, -0.0256212931, 0.020877745, 0.0199413169, 0.0189895369, -0.0274480954, -0.0178995971, -0.00252528605, 0.0119893523, -0.0030318785, 0.00861207, 0.00566462381, -0.0284612793, 0.0347553045, 0.0124422153, -0.0299043, -0.00995530747, 0.00886536669, -0.0143688014, 0.00501219416, 0.0125343231, -0.00754899345, -0.0138238305, -0.00237753, -0.024776971, -0.00140943972, -0.010692169, 0.00317963469, 0.0142229646, -0.0214303918, -0.00468214136, -0.0152515005, -0.000785314071, -0.0217067152, 0.00719591416, 0.00781380292, -0.0118511906, -0.00766412821, -0.0249611866, 0.00126072415, -0.00158693898, -0.00972503796, 0.0201715864, 0.0057183532, -0.000957536337, -0.0113215717, 0.0114367064, -0.0122656757, 0.00212807162, 0.0127338897, 0.000330772193, 0.000475410052, 0.0121582169, 0.00322760735, 0.0144148553, 0.00256942119, 0.0190202408, -0.00417938689, -0.0326061249, -0.00695029367, 0.00492776185, 0.0108380066, 0.0195421837, 0.000885577174, 0.0535452776, -0.0102700088, 0.0056339209, -0.0128643755, 0.00194097788, 0.017945651, 0.00337344455, 9.89438195e-05, -0.0192965642, 0.00626716157, 0.0153973373, 0.00475122221, 0.0147602595, -0.00575673115, -0.0157350656, 0.00494695129, 0.0178228393, -0.0392071791, 0.00317579671, -0.00797499157, 0.00660872739, -0.00665861927, -0.00173373555, -0.00851996243, 0.00860439427, -0.0144839361, -0.000792030303, -0.00750294, -0.00130677805, -0.020877745, -0.0196342915, -0.0108226547, -0.00301844603, -0.0235181656, -0.00153992558, 0.0143457744, -0.0397291221, 0.0100704422, 0.00698483409, 0.0187746193, -0.0193426181, 0.0205246657, 0.0219676867, -0.00761807431, 0.00607143249, -0.00384549657, 0.0237177331, 0.0060560815, -0.00375722675, 0.0180531088, -0.00184599182, 0.00428300817, -0.00777926296, -0.0226738453, 0.0068850508, 0.0104618995, 0.0227352511, -0.00813618, -0.00540365186, -0.00577592058, 0.0068850508, -0.0137240477, -0.00217028777, -0.0190969966, -0.00791358668, -0.00777926296, 0.021829525, -0.0284152254, -0.00402203621, -0.00463225, 0.0176539756, 0.013547508, -0.00435208902, -0.00594862225, 0.00900352746, -0.00975574087, 0.0198492091, -0.00309904036, -0.00427533267, 0.00585651444, -0.00712683331, 0.00238712458, 0.0198492091, -0.00996298343, -0.0152668515, -0.00202636933, 0.00910331123, -0.000147756102, 0.0153436083, -9.87189469e-06, -0.0158271734, 0.0142306397, 0.00717672519, -0.0119893523, -0.0330052599, 0.0226584952, 0.0136779938, -0.00736861629, 0.00372460508, -0.00295128417, -0.00287069, 0.0287376028, -0.0120737841, -0.00427533267, -0.00149483129, -0.0301345699, 0.000737821043, -0.0152054466, -0.0238558948, -0.00199374789, -0.0263735056, 0.00753364246, -0.0107535738, -0.00417554891, -0.00975574087, 0.00788288377, -0.00147564209, 2.53955805e-05, -0.00568381278, 0.0167943034, 0.022812007, -0.0148370154, 0.00690040179, 0.00779845193, -0.00530003058, 0.0360141098, 0.0058718659, -0.0177307334, -0.0123961614, 0.00413333299, -0.00570683973, 0.00603305455, -0.0172548424, -0.00528467959, 0.000900928455, -0.00695413165, -0.00816688314, -0.00676607806, 0.00668164622, -0.0177153815, 0.00852763839, 0.00849693548, -0.00256366446, -0.00201101811, 0.029566573, 0.00463608745, 0.00196880219, -0.0148677183, -0.00268839346, -0.0184061881, -0.0236716792, 0.0199720208, -0.0180838127, 0.00488938391, -0.00519257179, -0.0151133388, 0.0314087272, -0.0110298973, -0.0186978634, -1.00817751e-05, 0.00937963463, 0.00183447835, -0.011636273, 0.00503905863, -0.00738780526, 0.0152822025, 0.0238865968, 0.00410646852, -0.00497381575, -0.00690040179, -0.00265960977, 0.0118742175, -0.00863509718, -0.0117590828, 0.0107766008, 0.00680061849, 0.0104388725, 0.00858136732, -0.0166561417, 0.00442500738, 0.00971736293, 0.0180224068, -0.00102086039, -0.00675840257, 0.0115057873, 0.00587570388, -0.00802104548, 0.00939498562, -0.00536527345, 0.00992460456, 0.00674305111, 0.0109991943, -0.00872720499, -0.00607527047, 0.00635926938, -0.00809780229, -0.0166407917, 0.00985552371, -0.0113983285, 0.0117053539, 0.0136089129, 0.00389730721, 0.00437895348, -0.00171646534, -0.00919541903, -0.00910331123, -0.00356533565, 0.000812658574, 0.0129795102, 0.0108149797, -0.023794489, 0.000660584948, -0.00591792, 0.0128336726, -0.00337152556, 0.00551494863, 0.0171473846, 0.00833574682, -0.0139619922, 0.0368123762, -0.00806709938, -0.00114750839, 0.0053883004, 0.00642451225, -0.00503138313, -0.0148063134, -0.00686586136, -0.00929520186, -0.0182373244, -0.00412565749, 0.000905246, -0.0112755178, 0.010669142, 0.0194654278, 0.0104618995, 0.0103237377, -0.0152207976, 0.0162723605, 0.00620575622, -0.0110145463, 0.00106787367, 0.023733085, -0.00137489929, -0.0103467647, -0.0311631057, 0.0216453094, -0.020386504, -0.0138852363, 0.0107996278, -0.00204939628, 0.0194961298, -0.00866579916, -0.00432522409, -0.0134554, -0.00466679037, 0.00791358668, -0.0253603198, -0.00757585838, -0.0257441029, 0.0103621166, -0.00857369229, -0.0153359324, 0.00595629821, 0.016011389, 0.00482030306, 0.00879628584, 0.014568368, 0.00425614323, -0.0167943034, -0.00365744322, -0.00170495198, -0.0210773125, -0.0178842451, 0.000121311117, -0.0156659856, 0.0186364576, 0.00818223413, 0.00540365186, 0.00982482173, 0.000901408202, 0.00775623601, 0.00222017942, 0.00321609387, -0.0105002783, 0.0136472909, 0.00571451522, 0.0222747121, 0.00228350353, 0.019404022, -0.0120737841, -0.000256894127, -0.00791358668, -0.00785602, -0.0075720204, 0.00586802792, 0.00817455817, -0.0181145146, -0.0178842451, 0.00465527689, 0.0237484351, -0.00768331764, -0.00582965, -0.0101164961, 0.0117897857, 0.00978644285, 0.00520024728, 0.0129181053, -0.0034943358, 0.00760272332, 0.006063757, -0.0132635087, 0.00349817378, 0.0178381912, 0.0180224068, -0.00985552371, 0.0151824197, -0.00572986668, -0.0148753934, 0.00754131796, 0.0139082633, 0.010200928, -0.0180377588, 0.000524822, -0.0289985742, 0.0273406357, 0.00572986668, -0.0151900947, 0.00695413165, -0.023794489, -0.00749142654, 0.00967898406, 0.00822828803, -0.00835877378, 0.00259244791, 0.0141385319, 0.00705775246, 0.0355842747, 0.0190202408, -0.00921844598, -0.000298390572, -0.0256826971, 0.00111680583, -0.00525397668, 0.0139312902, 0.00446722331, -0.00836645, 0.0058718659, -0.0230269246, -0.0270029083, -0.0268340427, -0.00149099343, 0.00209161243, -0.00122522435, 0.0348167121, 0.0210619606, 0.0212001223, -0.002912906, 0.0100704422, -0.00934125576, -0.0258055069, -0.00927985087, -0.012580377, -0.0117974617, 0.00231612497, -0.0181605686, -0.0304722972, 0.00967898406, -0.0165179819, -0.00826666597, -0.0130178882, -0.00581429852, 0.00253104279, 0.00972503796, -0.010216279, 0.0244085416, 0.0430142954, 0.0175925717, 0.00467062788, 0.0136472909, 0.00383973983, -0.0163798202, 0.0315315351, -0.00498149171, 0.0170245729, 0.0128797265, 0.00881163683, 0.032943856, -0.0139236143, 0.00602921657, 0.0194193739, -0.0194961298, -0.0106384391, 0.00377257797, -0.0107689258, 0.00756818289, -0.016011389, 0.0137010207, 0.0210619606, 0.00470900629, 0.0158118214, -0.0199413169, 0.00280352822, 0.0151977707, 0.0171473846, -0.0250532944, -0.00336001208, 0.00480111409, -0.01650263, -0.00250993483, 0.0133095626, -0.00953314733, -0.0130178882, -0.0379483737, 0.0232111402, 0.00246388093, -0.0060177031, -0.0145069631, 0.0165793858, -0.0127799436, -0.0237484351, -0.0174083561, 0.0256366432, -0.0124038374, 0.0217527691, -0.00714986026, 0.00315276976, 0.00423311628, -0.00391073944, 0.0159192812, 0.0185904037, 0.0010199009, -0.00665094377, -0.0372422151, 0.0105079534, -0.0100397393, -0.0235028155, 0.00302804075, 0.021798823, 0.00077476009, -0.00298006786, 0.0122272978, -0.00601386512, -0.0123040536, 0.0149444742, 0.00126072415, -0.00457084458, -0.0168096554, 0.000295512204, 0.0198185071, 0.00900352746, 0.00530770607, 0.0256059412, -0.0272792317, -0.00362674077, 0.012142865, -0.00468214136, -0.00635159342, 0.00243509724, -0.0238558948, -0.00921844598, -0.00510813948, -0.000680733472, 0.0320534818, -0.00723429257, 0.0147986375, -0.020355802, 0.0136933448, -0.0321455896, 0.0335272029, -0.0198492091, 0.00277858227, -0.00699250959, -0.00862742122, 0.00467446586, -0.00905725732, 0.00380328042, 0.00549575966, -0.0142306397, -0.0128566995, 0.00222401717, -0.00386852352, -0.0176386256, -0.0199413169, 0.0303955413, -0.00805174839, -0.0113829765, 0.00624029664, -0.00261163712, 0.0002664887, 0.0121582169, -0.0132328067, 4.43448225e-05, -0.0298428945, -0.0268800966, 0.00488938391, -0.00744537264, 0.0168710612, -0.0178842451, 0.0125112962, -0.00185078918, 0.0152745275, 0.00621726969, -0.00678142952, 0.00178938394, 0.0158732273, 0.0190048888, -0.000826090924, -0.000643794425, -0.023794489, 0.00105827907, -0.00406809, 0.0118204886, 0.0115825431, 0.0225817375, -0.00331779616, -0.0165793858, 0.00242166501, -0.00186997827, -0.0119202714, 0.00984017272, 0.0162570085, 0.00619040523, 0.0159960371, 0.00809780229, 0.00909563527, -0.0103851436, 0.000866388087, -0.0111220051, 0.00281120371, 0.00962525513, -0.0204325579, -0.0129564833, -0.00898050051, 0.0211080145, 0.0120047033, -0.0152822025, 0.0104465485, 0.00771402, 0.0184061881, -7.12395486e-05, 0.00140272349, 0.0191430505, -0.00419473834, -0.0241168663, 0.0113829765, 0.0283231176, -0.00782531686, -0.00918006711, -0.00290714926, 0.0239787046, 0.00488938391, -0.00204555853, -0.00569148827, -0.00019297043, 0.0158271734, 0.00482797856, 0.015535499, 0.00129238621, 0.0227045491, 0.00885001477, -0.0106077371, 0.0201562345, 0.0034425254, 0.0128797265, -0.0344175771, -0.00283806864, -0.0116669759, 0.00287069, 0.0190509427, -0.0173162483, 0.0023506654, 0.0054804082, 0.00845855754, -0.00430219714, -0.0147065297, -0.00755283143, -0.00106019806, 0.0206321254, -0.0079903435, 0.00253871852, -0.0109531404, -0.002786258, 0.0113906525, 0.00263466407, 0.0105233053, 0.00202253158, -0.00856601633, -0.0101241712, -0.0112524908, -0.00371117285, -0.0116593, 0.0165947378, -0.00784450583, -0.00726499502, -2.12579289e-05, 0.000713834714, 0.0240861643, 0.0164565761, 0.016963169, -0.00327366125, -0.0128259975, -0.000489082304, -0.00258477242, -0.0338956341, 0.00347706582, 0.0103774676, 0.00934125576, -7.52572669e-05, 0.00525013916, -0.00079826673, -0.00990925357, 0.0163337663, 0.00472051976, 0.00760272332, -0.00721894111, 0.0130409151, 0.00121275138, 0.0133249145, 0.0106461151, 0.00884234, -0.0100474153, -0.0128950784, -0.0299503542, 0.0196803454, -0.0033504176, -0.00367855141, 0.00247155665, -0.0100243883, 0.00828969292, -4.60838346e-05, 0.0128566995, 0.00305490545, -0.0224742796, -0.00451327721, 0.00694261817, -0.00723045459, -0.0127415657, -0.00683515891, 0.0312859155, 0.00858136732, -0.0258669127, 0.00162339828, -0.00925682392, 0.0173776522, 0.0117514078, -0.0167329, 0.0257748049, 0.00670467317, -0.000280400796, -0.0162723605, -0.010653791, 0.0160574429, 9.18078731e-05, 0.00761423679, 0.00486635696, -0.0203097481, -0.0173469502, -0.0105616832, 0.00304531096, 0.00416787341, 0.0117283808, -0.00780612789, 0.00785985682, -0.00110913021, -0.024715567, -0.0031585265, -0.0127108628, -0.00536911143, 0.0208930969, 0.0212308243, -0.0157657675, -0.000657226832, 0.00666629476, 0.0123117296, -0.0079903435, 0.00156679039, 0.0145376651, -0.00809012633, 0.0101395231, 0.0218141731, 0.00224896311, -0.00778693845, 0.00437511597, -0.00927985087, -0.0309942421, -0.00825131498, 0.00656651147, 0.0144685851, -0.00178170833, 0.0125727011, -0.0134400483, 0.0206781793, -0.0127262138, 0.0122272978, 0.0112141129, 0.0137317227, -0.00361714629, 0.00493543781, -0.00782531686, 0.035922002, 0.00191891042, -0.00422544079, -0.00241398928, 0.00401052274, -0.0292595457, 0.000480926916, 0.0170706268, -0.00505824806, -0.00868115108, -0.00148715556, -0.0152591756, -0.0172394905, 0.00459003355, 0.0245006494, 0.0311170518, -0.00817455817, 0.00238328683, 0.00512732891, -0.016042091, 0.0325754248, -0.00925682392, 0.0199259669, 0.000819374749, -0.00273828511, 0.00841250364, -0.0181912705, -0.0137777766, 0.00838947669, 0.00797499157, 0.00332739064, -0.0183294322, -0.0168864112, 0.0102853598, -0.0200641267, 0.00682364544, 0.00575673115, 0.0102546578, 0.00530770607, 0.00877325889, -0.00815153122, -0.00286493334, 0.0313012674, 0.00371117285, 0.00746456161, -0.031961374, 0.00170974922, 0.0421853289, 0.00651278207, 0.0143534504, 0.00993228052, 0.000887975795, 0.0140464241, 0.00399517175, 0.00653580902, 0.0115902191, 0.00764110126, -0.0200180747, 0.0131637258, -0.00897282548, -0.00513116643, 0.0215685535, 0.0154817691, -0.000641875551, -0.000145837199, -0.0064935931, -0.0129948612, -0.0321148857, 0.0104311975, -0.0128413485, -0.0152361486, 0.00817455817, 0.0112985447, -0.00626716157, 0.0154510671, 0.030564405, -0.0348167121, -0.0064014853, -0.00882698782, 0.00196016696, -0.0113292476, -0.0107151959, 0.00323336408, -0.00690040179, -0.0164105222, -0.0195268318, 0.000447345985, -0.00400668522, -0.00378984818, -0.0032506343, -0.00502754515, -0.0350623317, 0.00166177645, 0.0105616832, -0.00129142671, 0.0284305774, 0.0189895369, -0.0114520574, 0.00516570685, 0.00538446289, -0.0115057873, 0.0206321254, 0.00933358073, -0.0127952946, 0.000293353427, 0.000307265524, 0.00172222208, -0.00394144189, 0.0303955413, -0.000661064638, 0.0154126883, 0.00454398, 0.0101395231, 0.0163951702, -0.0053422465, -0.0116746509, 0.00418322487, -0.056707643, -0.0167943034, 0.00851228647, 0.00166273594, -0.0289064664, 0.0024658, 0.0152131217, -0.000929712085, 0.0203097481, 0.014077127, 0.0186825115, 0.020847043, 0.0153896613, 0.0152668515, -0.0127108628, -0.00186518091, 0.0035672544, -0.0132097797, 0.00114846788, -0.00586802792, 0.00390114496, 0.00442884536, 0.00675456459, -0.00818991, -0.000745016965, -0.00223936839, 0.0128797265, -0.00785985682, -0.0174083561, 0.00809012633, 0.00266536651, -0.000389538822, 0.00858904328, -0.0243010819, 0.0060100276, -0.0168864112, 0.00973271392, -0.00402203621, -0.00248498912, -0.0159653351, -0.00417554891, -0.0125266472, 0.00997833442, -0.0249458365, -0.00646672817, -0.00341949845, -0.0141231809, -0.0151133388, -0.000438950752, 0.00394911785, -0.0128950784, -0.00360947056, -0.0110298973, 0.0185136478, -0.00468214136, 0.0146835027, -0.0244238917, -0.00959455222, 0.0239019487, -0.00837412477, -0.0174390581, -0.0367816761, -0.0187132154, 0.0037130916, 0.0128643755, 0.0132481577, -0.00781380292, 0.00319882366, -0.000705199607, 0.0196189396, -0.0258669127, 0.00611748639, -0.00659721391, -0.00825131498, -0.00210504467, -0.00301460829, 0.0139159383, 0.0162877124, 0.00592943328, 0.0114443814, 0.00129046722, 0.00130581856, 0.000251617137, 0.0281696059, 0.0189741869, 0.00531538203, -0.00336385, -0.00804407243, 0.0133402655, 0.014583719, 0.0104235215, 0.00126935926, -0.0419397056, -0.0181145146, -0.00414100895, -0.0163030624, -0.0201101806, 0.00284574414, 0.0181145146, 0.0100090373, 0.0159039292, 0.00465911441, -0.00972503796, 0.0124805933, 0.0309942421, -0.0125880521, 0.0177921373, 0.0112908687, -0.0142843695, -0.00324871531, 0.0147832865, 0.0100704422, -0.00189780246, 0.00954849832, 0.0140080461, -0.0211694203, 0.0031047971, -0.00868115108, -0.015044258, 0.00635159342, -0.00895747356, 0.00885001477, -0.0060560815, -0.015535499, -0.0132635087, 0.0103160627, -0.00922612101, 0.00481262757, -0.00675456459, -0.0160881449, -0.0116900029, 0.0152207976, 0.000158070252, 0.012104487, 0.0120737841, -0.015980687, -0.00785602, -0.0016848034, -0.00549192168, -0.0103390897, 0.0133479415, -0.00695029367, 0.0200027227, 0.0129257804, -0.0226124413, 0.00210888265, -0.00416019792, -0.00518489582, 0.00442117, -0.0178688932, 0.00387619901, 0.000279921049, 0.00772169558, -0.0258976147, -0.0179763529, -0.0186978634, 0.0120277302, -0.0115825431, -0.00411030604, -0.00973271392, -0.00498532923, -4.70732703e-05, 0.0157350656, 0.00278242026, 0.0139312902, 0.00619040523, 0.0151977707, 0.000387140171, 0.00806709938, 0.0147832865, -0.00112544093, 0.00480111409, -0.00635926938, -0.00595246, -0.0035423087, -0.0193579681, 0.00641683629, -0.021829525, 0.00572219072, -0.000634679629, 6.14051314e-05, 0.0027939335, 0.00449408824, 0.013071618, 0.0172855444, -0.0145760439, -0.00647824164, 0.024715567, 0.0115748681, 0.00825131498, 0.00333122863, 0.0171320327, -0.00175004627, -0.00198031566, 0.00482797856, 0.00309136463, -0.00917239208, -0.0263581537, 0.00738013, 0.0156352818, 0.0342333615, -0.0102546578, 0.0115825431, -0.0233186, -0.00313549978, -0.0177153815, 0.00653580902, -0.00278817676, -0.0159192812, 0.0150135551, 0.018436892, -0.0140541, -0.0120507572, -0.0031777157, 0.00152745272, 0.0049047349, -0.0153359324, -0.0136089129, -0.00170878973, 0.00916471612, 0.0253449697, 0.0159499831, 0.0196189396, 0.0260971822, 0.0302727316, -0.0178381912, 0.00992460456, -0.00165122247, -0.0369351879, -0.00909563527, 0.00780229, -0.00711915782, -0.0158271734, -0.00439046696, -0.00153704721, -0.014077127, 0.0113138957, -0.00688888831, -0.0169017632, 0.00910331123, 0.0199259669, -0.00534992246, 0.00866579916, -0.00137489929, -0.0165793858, 0.00873488, -0.0301499218, 0.0129411323, 0.00371117285, 0.0126801599, -0.0010563602, -0.0129027534, 0.00164930348, 0.0341719575, 0.00921844598, -0.00217604451, -0.00394911785, 0.0223975219, 0.00177019485, 0.0105540073, -0.00525013916, -0.0117821097, 0.0102700088, -0.0210773125, -0.0050505721, -0.0117974617, -0.00908796, -0.0107458988, -0.0121658919, 0.00563775888, 0.0011753327, 0.0134477243, -0.0175925717, -0.00934125576, -0.0154357152, 0.0183601342, 0.0189741869, 0.00927217491, -0.0282156598, 0.00496230228, 0.0031047971, -0.0123808105, -0.00662791682, -0.0113599496, 0.0141538838, -0.004117982, -0.0284612793, -0.0229655206, 0.00164354674, -0.00604840554, 0.000981043, -0.0112831937, -0.00448641274, -0.00242742174, -0.0238251928, -0.0212308243, -0.0181452166, -0.000967610569, 0.00409111707, -0.0277858227, 0.00226047658, -0.0134554, -0.0137931285, -0.0275555532, 0.00536527345, 0.0053883004, 0.00252720504, -0.0307639726, -0.00396830682, -0.0191737525, -0.0193119142, 0.0100550903, -0.0124268644, 0.00673153764, -0.0198031552, 0.00720358966, -0.0152745275, 0.00334466086, 0.011168059, -0.0153436083, -0.00967898406, 0.0231804382, 0.0211847704, -0.00394911785, -0.00728418399, 0.00364209199, 0.0308867823, -0.0117974617, -0.0317157507, -0.0395449065, 0.00670851069, 0.00837412477, 0.00792126264, -0.00266152876, -0.0133786434, -0.0185750537, -0.00889606867, 7.73560805e-06, -0.00838180073, -0.0178842451, -0.0125189722, -0.00475122221, -0.00828969292, -0.0123194046, -0.0152898785, -0.0235795714, -0.00838180073, -0.00670851069, 0.0177307334, 0.00940266158, -0.0036152273, -3.76886019e-05, -0.00950244442, 0.0288143586, -0.00371501059, 0.00199374789, -0.0408651158, -0.00309904036, 0.0148370154, -0.0195268318, 0.00296855439, 0.00869650207, 0.00490857288, -0.0328210443, 0.00148427719, 0.00700786104, -0.00262506958, 0.00949476846, -0.00850461144, -0.00861207, 0.0128106466, -0.000115194591, -0.00335617433, 0.0643525794, 0.0202636942, 0.0189741869, -0.0214303918, -0.00958687626, -0.0029320952, -0.00826666597, 0.0389922597, -0.0121965948, 0.0049316, 0.00585267693, 0.00977109186, -0.0118742175, 0.00185366743, 0.0156966876, 0.00849693548, 0.0167636015, 0.021338284, 0.0036862269, 1.77349302e-05, 0.00296279765, -0.0225663874, 0.016487278, -0.0103314137, 0.0051887338, -0.00337728229, 0.00265385304, -0.00322952634, -0.0200487766, 0.0177614354, 0.01842154, 0.0123577835, 0.0100550903, 0.0162109546, -0.0288911164, 0.0068313214, 0.0054804082, 0.0207242332, 0.0204018559, -0.0283231176, 0.0190048888, 0.0215378515, 0.000586227165, -0.0077178576, 0.00199758587, -0.00324295857, 0.00506592356, -0.00821293704, -0.0115978951, -0.0161956046, 0.0196956974, -0.0385317206, -0.00989390258, -0.0188360251, 0.0137317227, 0.00911098719, 0.0204939637, 0.00010368113, 0.00863509718, 0.0208316911, -0.005334571, 0.00967898406, 0.00154088507, -0.00229885476, 0.0010189414, -0.0257133991, 0.0205707196, -0.0107458988, 0.0270643122, -0.0025214483, 0.00532305753, -0.0142076127, 0.0223361179, -0.00473587075, 6.58426143e-05, 0.00781380292, -0.00494311331, 0.00126839976, 6.25444882e-05, -0.0144992871, -0.0170245729, -0.00109186, 0.0129718343, -0.0260204263, -0.00842785463, -0.00471284427, -0.00484716799, -0.0110375732, 0.00301460829, -0.00269031245, 0.00318731018, 0.0055801915, -0.00774856051, -0.00701169856, 0.0117437318, -0.00261547486, -0.00853531342, 0.0028591766, -0.0180991627, 0.00559554296, 0.00974806491, -0.0119432984, -0.00591408182, -0.00805174839, 0.00674688909, 0.0245774053, -0.0110759512, 0.0238865968, 0.00128087273, -0.00451327721, -0.0153282564, 0.000797307293, 0.0103621166, 0.00817455817, 0.0222747121, 0.0102469819, 0.00535376, -0.000771402, -9.66051448e-05, 0.000957536337, 0.00409879256, 0.00222017942, -0.0134400483, -0.00399517175, -0.00694261817, 0.00815153122, 0.00911866222, 0.0127799436, 0.0336500145, -0.00924914796, 0.0127876196, -0.00688121282, 0.0121505409, 0.00498916721, 0.016978519, 0.00901887938, -0.000920117542, 0.0109684924, 0.0177460834, 0.0125112962, 0.00484333, 0.010200928, 0.00303379749, 0.000820813933, -0.00633624243, 0.00255598873, 0.0172855444, -0.0135091292, 0.0254217256, 0.00472435728, 0.00746456161, -0.0205093157, -0.0133632924, 0.00735326484, 0.00103141437, 0.0216453094, 0.0164258741, -0.00373803754, 0.00578743406, -0.0199720208, 0.000403690792, -0.000568956952, 0.0128183216, -0.000763246615, 0.00227390882, -0.00655499799, -0.00444419635, 0.0107612498, 0.0100320634, 0.00683515891, 0.0219523348, 0.0176539756, -0.00118684606, 0.0053883004, -0.0110606, -0.0147525836, -0.0132404817, -0.00091292162, 0.0248844307, -0.0217067152, -0.00779461442, -0.00369198364, 0.00848158449, 0.0544356517, -0.0117130289, -0.00532305753, -0.0031239863, -0.018943483, 0.0168096554, -0.0255291853, -0.0353386551, -0.00172222208, -0.00632089097, -0.0114827603, 0.00302612176, 0.00378792919, 0.0209391508, -0.0150519339, 0.00909563527, -0.00542284083, 0.0221519023, -0.00503138313, 0.0104465485, 0.00367471343, 0.0157120395, 0.0133018875, -0.00194385624, -0.0144839361, -0.00915704109, 0.0214303918, -0.00317963469]
24 Nov, 2021
jQWidgets jqxScrollView refresh() Method 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that are present at the bottom of the jqxScrollView widget. The refresh() method is used to refresh the widget. It does not accept any parameter and does not return any value. Syntax: $("Selector").jqxScrollView('refresh'); Linked Files: Download jQWidgets from the link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> The below example illustrates the jqxScrollView refresh() method in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href="jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView refresh() Method </h3> <center> <input type="button" id="jqxBtn" value="refresh() Method" style="padding: 5px 15px; margin: 10px;"> </center> <div id="jqxSV"> <img class="photo" src="https://media.geeksforgeeks.org/wp-content/uploads/20211122120057/new-300x170.jpg" alt=""> <img class="photo" src="https://media.geeksforgeeks.org/wp-content/uploads/20211122121015/new-300x115.jpg" alt=""> <img class="photo" src="https://media.geeksforgeeks.org/wp-content/uploads/20211122121111/new-300x125.jpg" alt=""> <img class="photo" src="https://media.geeksforgeeks.org/wp-content/uploads/20211122121244/new-300x110.jpg" alt=""> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0] }); $('#jqxBtn').on('click', function () { $("#jqxSV").jqxScrollView('refresh'); alert("Refresh the widget"); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-refresh-method/?ref=next_article
PHP
jQWidgets jqxScrollView refresh() Method
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0392964557, 0.0490990095, -0.0129502956, 0.0508525483, 0.0516287, -0.00403528893, 0.00461021904, 0.0194038823, -0.00610503647, -0.0046353722, 0.0058103851, 0.0380028635, 0.0104852831, -0.0268923454, 0.00622720923, 0.0171185359, -0.0309887193, 0.00893297326, -0.0456781797, 0.00679854583, -0.00842272304, -0.00041547665, -0.0473742224, 0.00780467317, -0.0388365127, 0.0252394211, 0.00300221192, 0.0206831023, -0.0281859376, 0.00172029797, -0.0129574817, 0.0265473872, 0.00802745856, 0.0178084522, -0.0283584166, 0.000695305818, 0.0292639304, 0.00717584323, 0.00618049596, -0.0181965306, -0.0265473872, 0.0186708476, 0.0173341352, 0.00135198352, -0.0367955118, 0.00725130318, 0.00647155428, -0.00483659748, -0.0122891264, 0.0390952304, 0.0193895102, 0.0208987016, 0.0129071753, 0.0415674299, 0.0125119109, -0.0324835368, 0.0124472314, 0.0166442189, -0.0174922422, -0.00240931544, 0.0273379143, -0.0355019197, 0.0191164184, -0.0118507417, 0.0100540863, 0.00184336887, -0.00802745856, -0.0040927818, -0.0323972963, -0.000683627557, -0.0176359732, 0.049213998, 0.00717584323, -0.00180294411, 0.00250274152, -0.0095079029, -0.0130006019, -0.00425448082, 0.0220629331, -0.00037819604, -0.0113333054, 0.00465333881, -0.0527785607, 0.00218653027, -0.00501985662, 0.00343700266, -0.0108302413, -0.0368242599, 0.057378, 0.00947915576, -0.0126412706, -0.00496955, 0.00191882846, -0.00352324219, -0.000633321179, -0.0158393178, -0.00888266601, -0.00161519356, -0.032684762, 0.0336621441, 0.0136905173, 0.00940010324, 0.00724411616, -0.0204387568, 0.0127346963, 0.0273091681, 0.0245782528, -0.0315061584, 0.010621829, -0.0252394211, 0.0427172892, -0.020309398, -0.0121813267, -0.0254550204, -0.0306437612, 0.0124112982, 0.00772562, -0.0130006019, 0.0338921174, 0.0138701834, 0.0293789171, 0.00697102444, 0.0264611468, 0.0883667171, -0.0376579054, 0.0252825413, 0.00378016382, -0.0168023258, 0.0576654673, -0.0161555298, -0.0209274478, 0.0117213828, -0.00821431074, -0.00670871278, 0.0230834335, 0.0252106749, -0.00295909215, 0.01221726, -0.055078283, -0.00758907432, -0.026992958, -0.0215598699, 0.0298963524, -0.0199500658, -0.00450601289, 0.00852333568, 0.0184265021, 0.0248800907, -0.0490990095, 0.026978584, -0.017291015, -0.031736128, -0.0107296286, 0.0456494316, 0.0327997506, -0.0158968102, -0.0255843792, 0.024118308, -0.00762500754, -0.0137695707, 0.0105643366, -0.0264611468, 0.0371117219, -0.00954383612, -0.0251531824, -0.00717943674, 0.0246932376, -0.029666381, -0.0263174139, 0.0228678361, -0.0308449883, -0.00249375822, -0.0145816589, 0.00804183166, -0.0155087328, -0.0266048796, 0.0417111628, -0.0621499196, -0.0475754477, -0.0179953054, -0.0630123168, -0.0415674299, 0.00385562354, 0.00221887, 0.0263030417, -0.00151368254, -0.00577804539, -0.00730879605, -0.0407050364, -0.0244632661, -0.0344383, 0.0100253392, 0.0323110595, 0.0309312269, 0.0104852831, -0.0261305626, -0.0468855314, -0.0111177061, -0.00655060727, -0.000480156275, -0.0050126696, -0.01221726, -0.0274816472, 0.0142151406, -0.00338669633, 0.0342370719, -0.00209669746, -0.0505363345, 0.0511400104, -0.00726926932, -0.000187413665, -0.0263605341, 0.021430511, 0.00998222, 0.0149050569, 0.0108949207, -0.0207980871, -0.0348694958, -0.00595411751, 0.0086023882, 0.00324296369, -0.00577804539, -0.00846584234, -0.00573492562, -0.0720962062, -0.0224366374, 0.00606191671, -0.0274960212, 0.0116638895, 0.0192314032, -0.0455057, -0.00627392204, -0.00735191582, -0.0172766428, 0.0383190773, 0.0180384237, -0.0097738076, 0.016831072, -0.0179378111, 0.0041754283, 0.0278409794, -0.0133743063, -0.0195763614, 0.0115560908, 0.0246357452, 0.0092994906, -0.00774718, 0.00982411392, 0.00335974642, -0.00142923975, -0.00104745035, 0.00708960416, -0.0292926766, 0.0184839945, 0.00510250265, 0.0360768475, -0.00263569411, 0.00426885439, 0.00269498373, 0.0024919617, 0.018886447, 0.0223503988, -0.00290698907, -0.000762231241, 0.00788372569, 0.031736128, 0.0243914, -0.00235721236, 0.0192745235, -0.0430335, 0.0102624977, -0.00701055117, 0.0625523701, -0.0132808797, -0.0209849402, 0.0151781486, -0.0534397326, -0.0202519055, 0.0371117219, -0.0193032697, 0.0181534104, 0.0262024291, 0.0296376348, 0.0570905358, 9.01135209e-05, 0.00668715313, 0.0116782626, -0.020309398, 0.00631344877, 0.0802027136, -0.0101403259, -0.032684762, 0.00302017853, 0.0118579287, 0.0386352874, -0.0172766428, 0.00429760059, 0.0220629331, -0.0253112875, 0.000304084, -0.0181534104, -0.0215311237, -0.0321385786, 0.00853770878, -0.00852333568, 0.0133743063, 0.0177940801, -0.0240608156, 0.0148331905, -0.0116710765, 0.0429472625, -0.0286458805, 0.000429400738, -0.0408775136, 0.0143588735, 0.0180384237, 0.0129143624, 0.0197200943, -0.0320523418, -0.00110224832, -0.0158105716, -0.024276413, -0.0215023775, 0.0194613766, 0.0463106, -0.0196913481, 0.00542949373, 0.0188289527, -0.0029519056, 0.00546542695, -0.0250094496, 0.0106936954, 0.0237877239, 0.0066081, 0.0411074869, 0.026489893, -0.011908235, -0.0170322973, -0.00532888109, 0.000410086708, -0.026346162, 0.0120016607, 0.0144523, -0.0237733498, 0.0481216311, -0.0155949723, -0.0224653855, 0.000444896898, 0.0599651858, -0.0293789171, 0.00137713668, 0.0129502956, 0.0364505537, 0.0115489038, 0.0180671718, 0.0241901744, -0.00678417226, -0.00112470658, -0.0290195849, -0.0179090649, 0.0144594861, -0.0227815956, 0.0062811086, -0.0135755315, 0.0246644914, -0.038089104, -0.0573492534, -0.0300975777, -0.0122963125, 0.0378016382, 0.0202087853, -0.0108302413, -0.031736128, 0.0451607406, -0.0232415404, -0.00659372704, -0.0151781486, -0.0174060017, -0.0339783542, 0.0221491735, 0.0126053374, 0.0136258379, -0.0118794888, 0.0368817523, -0.00148044445, 0.0234140195, -0.0329434797, -0.0408200212, -0.00305611151, -0.0130221611, -0.0586141, 0.028875852, -0.00588584458, -0.0153362546, -0.00894734636, 0.0107655618, -0.00467130495, 0.00981692784, 0.00181462243, 0.0245351326, -0.0023266694, -0.0118004354, 0.0124400454, -0.0350994691, -0.000825563329, 0.0161555298, -0.00149122439, -0.0287608672, 0.00235002581, 0.0168598182, 0.0264324, 0.0119801015, -0.0026033544, 0.0545895919, 0.0337771289, 0.0159543045, 0.0362493284, 0.0542733781, -0.0129718548, -0.0135252252, 0.019202657, -0.0383478217, -0.0166011, 0.0369679891, -0.0620924272, -0.019058926, -0.0400151201, 0.00617690291, 0.0271366891, 0.0118363686, -0.00222605653, 0.00952946302, 0.0169460587, 0.0147756981, 0.0302700568, 0.0327710025, 0.0409062617, 0.0105212163, -0.0204387568, -0.0234427657, -0.0178803187, 0.00124508247, 0.00434790691, -0.0305000301, -0.0196482278, 0.0161986481, -0.0276828725, -0.0230403151, -0.00666559301, 0.0402738377, -0.0126053374, -0.0254550204, -0.0321673267, 0.00118399621, 0.00672308635, -0.0105858967, -0.0275535136, 0.0116279563, 0.023643991, -0.000671949296, -0.0124400454, -0.0223935191, -0.00652904715, 0.00199249131, 0.00179485918, -0.0431772321, 0.00382328359, -0.00500189, -0.0174347479, -0.00377657055, -0.075028345, -0.0281859376, 0.0180671718, 0.0561131537, 0.0204962492, 0.0214448832, -0.0123466188, -0.00978099462, 0.00204459438, -0.0330584683, 0.0497889258, 0.000798613532, 0.0261161886, 0.00337591628, -0.0160692893, -0.0129574817, 0.0250956882, -0.02824343, -0.00531091448, -0.00830055, 0.0193176437, 0.00412871502, -0.0479204059, -0.0145026064, 0.00563071948, -0.00095492258, -0.0360481031, -0.0095653953, 0.01000378, -0.0130796544, 0.0151781486, 0.0456206836, -0.0160405431, 0.0246213712, -0.0116782626, -0.0075531411, -0.032857243, -0.0216173623, 0.0208124612, -0.0350132287, 0.0267486125, 0.0145672858, -0.0390089899, -0.0207980871, -0.010621829, -0.0460806303, -0.0469142757, -0.00601520389, 0.017291015, -0.00359151512, 0.0189151932, -0.000369437359, 0.00507734949, -0.013324, 0.0372267105, 0.0197632145, -0.0210136864, 0.00621642917, -0.0032609303, 0.0189008191, -0.017305389, -0.0128496829, 0.0274960212, 0.0396701619, -0.00662247324, 0.012375365, -0.0117932493, -0.0263174139, 0.00435509393, -0.00827899, -0.0256993659, -0.0141935814, -0.0335471593, -0.0159111843, 0.0254837666, 0.00732316915, 0.0154799866, -0.000591099786, 0.00170951802, 0.0227672234, 0.0337196365, 0.0290195849, 0.0203812644, 0.0104206037, -0.020956194, 0.0212005395, -0.0197057221, -0.0116279563, 0.00357893854, -0.0151781486, -0.0211861655, -0.00189726858, 0.0182252768, -0.0129934149, 0.0345245376, -0.0210280605, -0.00576726533, 0.00808495097, -0.0300975777, 0.0213730186, 0.0215598699, 0.00917013176, 0.0231553, -0.00604035705, 0.0177509598, 0.000486444565, 0.0597352125, -0.0172335226, 0.0127706295, 0.039037738, 0.027941592, -0.0193463899, 0.00792684592, 0.0370542295, -0.021430511, -0.0165579803, 0.00611222303, -0.0128712421, -0.0406475402, -0.00556603959, 0.00248477492, 0.00453475956, 0.00921325106, 0.0274385288, -0.00243626535, -0.00200147461, -0.00781185972, 0.0157818254, -0.00110674, -0.0214736313, 0.015077536, 0.0183258895, 0.0496451929, 0.0311324522, -0.00506656943, 0.00380172371, 0.0215598699, 0.0261593089, 0.0453619659, -0.00761063397, -0.0165723544, 0.00994628668, 0.0543308742, 0.00371548417, -0.053497225, 0.0100468993, 0.00746690156, 0.0411937237, 0.00272373017, -0.0181390382, 0.0258430969, 0.0159974229, 0.0148906838, -0.00473598484, 0.0212436579, 0.0336046517, -0.0152643882, -0.00786216557, -0.0211717933, -0.0306437612, 0.00394186284, -0.0310174655, -0.0149481762, -0.00876768, 0.0212580319, 0.00986723416, 0.00621283567, 0.0257712305, -0.00459225243, 0.0346970186, 0.00531450799, 0.0251963, -0.0102840578, 0.0586715937, -0.0130868414, -0.0136905173, -0.00587506453, 0.00847302936, 0.00309384125, -0.0103990436, -0.00177779095, 0.0202662777, -0.0167160854, 0.0203668904, -0.0322535671, 0.0114051709, 0.0135611584, -0.010636203, 0.0135611584, 0.0430909954, -0.0138989296, -0.00572773861, 0.017305389, 0.0162561424, 0.0110745868, -0.020309398, 0.026820479, 0.0413087122, 0.00859520119, 0.00110674, 0.0193032697, 0.000979177421, 0.0102912448, 0.0401013568, 0.00235721236, -0.00930667762, -0.0172766428, -0.0207549687, 0.0170179233, 0.0344670452, -0.00800589845, 0.0256849919, 0.0196626019, 0.00478988467, 0.00271115359, -0.0178659465, -0.0293932892, -0.0071902168, 0.0281284433, 0.0090767052, -0.000905963709, 0.0531810112, 0.00409996882, 0.046339348, 0.00583913131, -0.00419698795, -0.00371189089, 0.0105787097, -0.0215311237, -0.00947197, -0.00871737394, -0.00544746034, -0.0626098663, 0.0273666624, -0.00488331076, 0.0288471058, 0.00492643053, 0.030787494, -0.0236871112, -0.00774718, 0.0243482795, 0.0313049331, -0.0204243828, 0.0557969436, 0.00554088643, 0.00187750533, -0.0220341869, 0.00808495097, -0.0361055955, 0.0155949723, 0.0141360881, 0.0313336775, -0.0119154211, -0.022364771, -0.0125262849, 0.00579241849, 0.0561706498, -0.0522036329, -0.0186133552, 0.0067302729, -0.00950071588, 0.0463680923, 0.0158393178, -0.015551853, -0.0290770773, 0.0524048582, 0.000634668686, -0.00423651468, -0.0183115155, 0.00982411392, -0.0351282135, -0.0283440426, 0.00465333881, 0.0176359732, -0.0038951498, -0.0471442491, 0.00804183166, 0.00930667762, -0.0088108005, -0.0171041638, -0.00611940958, -0.00412512198, 0.0504500978, -0.0281859376, 0.00438743364, -0.0176790934, 0.00383047014, -0.00673386594, 0.044930771, -0.00490487041, 0.00325374375, 0.0263030417, -0.0206831023, -0.00558759971, 0.0122460062, -0.00157836219, -0.0275535136, -0.00158105709, 0.0193320177, -0.0421423577, 0.0231840461, -0.0102337515, 0.060310144, -0.00385562354, 0.00454194611, 0.0280134585, -0.00281715626, 0.0202375315, 0.0083508566, -0.00386281, -0.0077902996, -0.0148475636, 0.013324, 0.00470005162, 0.0135252252, 0.0273522884, 0.0207262225, 0.0160117969, 0.00435509393, 0.021416137, 0.0160692893, 0.00317648752, -0.00310462131, -0.0191595387, -0.00231588935, -0.00643921457, 0.000202123789, 0.0190014318, 0.0217179749, -0.0485240817, -0.00111123163, -0.0215311237, 0.013482105, 0.0155231068, 0.000356860779, -0.0124903517, 0.0178803187, -0.0153793739, -0.0202662777, -0.014121715, -0.0393252037, 0.0104924701, -0.0355881602, -0.0124975378, -0.0207405947, -0.0258430969, 0.00519592874, -0.000927972724, 0.000655330194, -0.009522276, -0.00303455163, 0.0104134176, -0.00490846392, -0.010621829, -0.0217610952, 0.000306329806, -0.00630626222, 0.0309887193, 0.0232559126, -0.0064104679, -0.0178659465, 0.0303275511, -0.0397851467, 0.0215023775, -0.00559837976, -0.0030237718, 0.0254406463, 0.0183977559, 0.0058211647, 0.034294568, -0.00139330665, -0.00179306255, -0.016356755, 0.00329327025, 0.010312805, 0.035703145, -0.00270217028, 0.0251531824, 0.0256275, 0.00689915847, 0.0385203026, -0.0194038823, 0.0109092947, 0.00185235217, -0.0325985253, 0.0308162402, -0.0199500658, 0.0474892072, 0.0283152964, -0.00386640336, -0.0327422544, -0.00914138462, 0.0173628815, -0.0256993659, 0.0156668387, 0.00209130743, -0.00702492427, -0.0210424326, -0.015393747, -0.00473239133, -0.0038412502, -0.025541259, 0.00213802047, -0.00965163484, 0.0150487889, -0.0260730702, -0.0107224416, 0.00228534616, -0.000596938888, -0.0328284949, 0.0121166473, -0.00551573327, -0.04188364, -0.00317469076, -0.0135252252, 0.0229540747, -0.0358468778, -0.0259724576, 0.0129431086, -0.00773999328, -0.0289908387, -0.0122244461, -0.0012019627, -0.032857243, -0.0191739108, 0.0202662777, -0.0186277274, -0.0156524666, 0.0085880151, 0.0213155244, 0.00648233434, -0.0111967595, 0.0264755208, -0.000193028216, 0.00852333568, -0.0147900712, -0.014287007, 0.0106649492, 0.0103774844, -0.00173287455, 0.0270360764, 0.020467503, -0.00856645498, -0.0160692893, 0.0134317987, 0.0036579913, -0.0134102395, 0.00479707122, 0.00840834901, -0.0359043702, 0.00116243633, -0.00376579072, 0.0301838182, 0.0170466714, 0.00325554027, -0.011103333, -0.039526429, -0.014596032, -0.0238739625, -0.00819275063, -0.000964804203, 0.00164394011, 0.0524911, -0.0298101138, -0.0414524451, -0.0108518014, -0.0138701834, 0.0328859873, -0.00494799, 0.0174203757, 0.0450457558, 0.000488690392, -0.0111464532, -0.011433918, -0.00799152534, -0.0211430453, -0.0580966622, 0.0164573677, -0.0407337807, 0.0151781486, -0.0113836117, -0.000535403437, 0.017779706, 0.00586069142, 0.009996593, -0.0309887193, -0.0230403151, 0.0153650008, -0.020151291, -0.0153793739, -0.0058103851, -0.0474317148, 0.00242189202, 0.0108661745, 0.00799871143, 0.00352144544, -0.0269210916, 0.0177940801, 0.0221635457, 0.000415925839, 0.0103990436, 0.00687759835, 0.0305862688, 0.0177940801, 0.00186492875, 0.0311324522, -0.013324, -0.0522898734, -0.011426731, 0.00511328271, -0.00837241579, 0.00175623107, 0.0107511887, 0.0041898014, 0.0155374799, -0.0151637755, 0.00410715537, -0.0186421014, -0.00985286105, 0.026346162, -0.00693509169, -0.0124112982, 0.0164286215, 0.00403528893, -0.00503422972, 0.0279703382, 0.0290339589, -0.00615174975, -0.0283727888, -0.00840116292, -0.00403888244, 0.00397779606, 0.00910545141, 0.0148188174, 0.0283584166, 0.0163998753, 0.00563071948, 0.0121885128, 0.00706445053, 0.001547819, -0.0289189722, -0.00227456633, 0.000194600289, 0.0105140302, 0.0395551734, 0.0090910783, 0.0138198771, 0.010629016, 0.0262311753, 0.015882438, 0.00147505442, 0.0036579913, 0.0323398039, -0.0282578021, 0.00771124708, 0.0166442189, -0.0056953989, -0.00424729427, 0.0235146321, -0.0173628815, 0.0229828209, -0.00395623595, -0.0135611584, 0.00768968696, -0.0138701834, 0.00892578624, -0.00680932542, -0.0336908922, -0.00830055, -0.0175784808, 0.0191882849, -0.00387718319, 0.0173197631, 0.0186564736, 0.0256418716, -0.00242548529, 0.000706984079, 0.0186708476, -0.01047091, -0.0102624977, 0.00402810238, 0.00740940869, 0.00708241714, -0.00389155652, 0.0143085672, -0.00340466271, 0.00188109861, -0.0215598699, 0.0229397025, 0.00566305919, -0.00253687799, -0.00426885439, 0.0128209358, -0.00781185972, 0.0115057835, 0.0200794265, -0.0124544185, -0.00665122, 0.0146391522, 0.0172335226, -0.00182180898, 0.027927218, 0.0104062306, -0.00137264503, 0.0179090649, -0.00532169454, 0.0105930828, -0.0139276758, 0.000448714796, -0.0259005912, 0.0276972465, 0.00814244431, -0.0185989812, 0.0205249954, -0.0107368156, -0.0034352059, 0.009047959, -0.0108733615, -0.000716865703, 0.0167879518, -0.00331303338, 0.00484378403, 0.00178138423, 0.0036004982, -0.02983886, -0.0220773071, -0.0332022, 0.0757182613, 0.0040784087, 0.00763938064, -0.00702492427, 0.00554088643, -0.0279847123, 0.0095653953, 0.0287464932, 0.0139420489, -0.00225300645, 0.0368242599, -0.0190158058, 0.0100612724, -0.00776874, -0.0123969251, -0.0252106749, -0.00794840511, 0.016672967, 0.00326632033, -0.0152931344, -0.0396701619, 0.0250956882, -0.0104349768, -0.000798613532, 0.0137983169, 0.00937135704, -0.0227097291, -0.0103918575, -0.0283584166, -0.00225839647, 0.0330009758, 0.0350707211, 0.0381465964, 0.013173081, -0.0214448832, 0.0579241849, 0.00535762776, -0.0051096892, -0.00923481118, -0.0216173623, -0.00637812819, 0.00766094029, -0.000820622547, 0.0121094603, -0.00381969032, -0.00902639888, -0.005235455, -0.0234571379, -0.00127652392, 0.030787494, -0.00629188865, -0.0198782, -0.0155374799, -0.031908609, 0.00206256099, -0.000188087404, -0.00198889803, -0.0373416953, 0.0244776383, -0.0532097593, -0.0148763107, -0.0153506277, -0.00748846168, 0.00624876888, -0.0158968102, -0.00728004938, -0.0151925217, 0.00648592738, -0.0282578021, 0.0230690613, 0.0206543561, -0.0118148085, -0.011261439, 0.00611581653, -0.0189439394, -0.0031495376, -0.0127562564, -0.0224797577, 0.0118723018, -0.0263605341, -0.0365942866, 0.0174060017, -0.0198207069, -0.0134030525, -0.00630626222, 0.0146966446, -0.0186277274, -0.0114051709, -0.00772562, 0.00244704518, -0.0157818254, -0.0219192021, -0.0304712839, 0.0161124095, 0.00461740559, -0.0267486125, 0.0300688315, -0.0028890227, -0.00370111107, -0.0184265021, 0.012691577, 0.000903717882, 0.0102265654, -0.012066341, -0.0181534104, -0.012864056, 0.017291015, 0.00893297326, -0.00666918652, 0.0292783044, 0.016356755, 0.00478269765, -0.0254262742, 0.026346162, 0.0158249438, 0.00643921457, -0.0103846705, -0.0075675142, -0.00225120969, 0.00566665269, -0.0154368673, 0.028717747, -0.0014157648, 0.00175263779, 0.0349557362, 0.00983130094, 0.000797715213, 0.0244345199, -0.0092994906, -0.0100900196, -0.0232990328, 0.0095653953, 0.00276325666, 0.00236799242, 0.00172478962, -0.00408559525, -0.0129718548, 0.0484090932, 0.0167448316, 0.00831492338, 0.00786935259, 0.000237832312, 0.0053181015, -0.00572055206, 0.0338346213, 0.0350419767, -0.0208987016, 0.0070931972, 0.0102193784, 0.00347113912, -0.0247794781, 0.00540434057, 0.00304712821, -0.0119369812, 0.0322823115, 0.000323847227, -0.00329686352, 0.0325410292, -0.0124112982, -0.0274097808, -0.00245782523, 0.0216317363, 0.00481863087, -0.00988879334, 0.00149391929, -0.000399531331, 0.00569899241, -0.00792684592, 0.0164573677, -0.00969475508, -0.0226522367, -0.00578882499, 0.0221635457, -0.00467130495, 0.0293789171, 0.0134246126, 0.0254981406, 0.00573133212, 0.0326560177, -0.0093138637, 0.0038412502, 0.017765332, -0.0114985975, -0.00632063532, 0.000927972724, 0.00131066039, -0.000763578748, -0.0235146321, 0.0273091681, 0.0206399821, -0.0181390382, 0.00920606498, 0.0284446552, 0.0131946402, 0.0132808797, -0.000410985027, 0.0122819394, 0.00628829561, 0.00587147148, 0.022364771, -0.00753158145, 0.0104349768, 0.0178803187, 0.000706534891, -0.00140588323, -0.00524623506, -0.0090910783, -0.00966600887, 0.00271474686, -0.00877486728, 0.0109739741, 0.0113907978, 0.00694946479, 0.00279739313, 0.0138414362, -0.0055732266, 0.0233996455, -0.000275562081, -0.014761324, 0.0166873392, 0.0142438877, -0.0217036027, -0.0254693925, 0.0129502956, 0.0124687916, 0.00979536772, -0.0170610435, 0.00824305695, -0.0116207702, 0.0173772555, 0.00289261597, 0.0250381958, 0.0394689366, 0.0116926366, 0.0130724683, 0.00411793496, 0.0133527461, -0.0161411557, -0.0153362546, 0.0196913481, 0.0206256099, -0.00761063397, -0.00958695542, 0.0305000301, 0.00766094029, -7.75369263e-05, 0.0270648245, -0.0140785947, -0.00607269676, 0.0202231575, -0.000728094776, 0.0155087328, 0.026015576, -0.0114554772, 0.0141648343, 0.00577085838, 0.00465693185, -0.0026177275, 0.0047755111, -0.0216173623, -0.000851165678, 0.000278706226, -0.0213730186, -0.000927972724, -0.0325697772, -0.00285668275, -0.0217179749, -0.00301838177, -0.0329434797, 0.000742018863, 0.00374063756, 0.00164573675, 0.0100612724, -0.0162848886, 0.022695357, -0.0174778681, 0.021890454, 0.00542230718, -0.0169316847, -0.00837241579, -0.035703145, 0.00636734813, 0.000136096685, 0.000885302143, -0.00123340427, 0.0193176437, -0.000874522259, 0.010636203, -0.00665122, 0.0183690097, 0.0153362546, 0.00921325106, -0.00810651109, 0.00420058146, -0.00889704, 0.0314199179, 0.0112542519, -0.0128496829, -0.0107152555, -0.0149769234, 0.00855926797, -0.000672398426, 0.000189322614, -0.0135827186, -0.000357759098, 0.0098025538, 0.0412512198, -0.00950071588, 0.0132305734, -0.0183115155, -0.00266803382, -0.0196626019, 0.00217395346, -0.00158914214, 0.00241829874, 0.00646436773, 0.0083364835, -0.0151494024, -0.0212867782, -0.00859520119, -0.0192888975, -0.0200650524, -0.0429472625, 0.0135467853, 0.00482581742, -0.0270504504, -0.00289800577, -0.037629161, 0.000792325241, -0.0141720213, 0.00740940869, -0.00848740246, -0.0225228779, 0.00899046566, -0.0107368156, 0.0163280088, -0.00212903717, 0.000491385348, 0.000442875666, 0.00235900912, -0.0169173107, -0.00395982945, -0.0128999893, 0.0227815956, 0.0111464532, -0.0183258895, -0.0100325262, -0.0116279563, -0.00610503647, -0.0243339073, -0.0123466188, 0.0101762591, 0.0261593089, 0.0093282368, -0.0039526429, 0.0267773587, 0.00233924598, 0.0209993143, -0.0175928548, -0.000587955641, -0.00689197192, 0.019518869, 0.00924918428, 0.00840834901, -0.00495877024, -0.0376579054, -0.0219192021, 0.0180671718, 0.00786935259, 0.00313336775, -0.00581757165, 0.0117932493, 0.00778311305, -0.0118794888, 0.0379741192, 0.0240033213, 0.0239027087, 0.0291489437, 0.000716865703, -0.00942884944, -0.0230690613, 0.00030992314, -0.0141504612, -0.0154081201, 0.0169460587, 0.00814244431, -0.00651467405, -0.00222964981, -0.0161699019, -0.00727286283, 0.0174922422, -0.0211430453, 0.0295801423, 0.00540434057, -0.0147756981, -0.0131443338, -0.0139276758, 0.0129934149, -0.04188364, -0.00563790603, -0.00965882186, 0.0253400337, -0.000157656556, 0.0112542519, 0.0242045466, 0.0218473356, 0.00143912132, -0.0100612724, 0.00115704641, -0.010952414, -0.0170466714, 0.0113836117, -0.00532888109, -0.0236152448, 0.0119441682, 0.0264180265, -0.0276110061, 0.0528648, 0.00616252935, -0.027452901, 0.00581397815, -0.0298101138, -0.0286171343, -0.0132162, -0.0153362546, -0.0116926366, 0.00828617718, -0.0118076224, -0.00980974082, 0.0138342502, -0.0127921896, 0.00475035794, -0.00244884193, 0.0216173623, 0.020956194, -0.01047091, 0.0120735271, 0.0227672234, 0.007538768, 0.00876049418, -0.0222497862, 0.0102265654, 0.0267773587, -0.0103990436, -0.00752439443, -0.00817837752, 0.00632063532, 0.00300041516, 0.0113189314, 0.00211825734, -0.00691712508, 0.00784779247, -0.014761324, 0.0204962492, 0.00866706762, 0.00766094029, -0.00639968831, 0.0112326927, 0.0156668387, 0.0181821566, 0.00549776666, 0.000476562971, -0.00606910326, -0.00601520389, 0.00960851554, 0.0152212679, -0.00535403425, 0.00505578937, -0.00564149953, -0.0122603793, 0.000529115146, -0.0216029901, -0.0135755315, 0.000662067672, 0.0121957, 0.00311719789, -0.00573851867, 0.007218963, -0.0115632769, -0.00247040181, 0.0115129706, 0.00919887796, 0.00825743, -0.00605473, 0.0306725092, 0.0130796544, -0.0170322973, 0.00516358903, -0.00385921681, 0.00232846593, 0.0191164184, 0.00706085749, 0.002500945, -0.00809213798, 0.0159686767, -0.00651108054, 0.00474317139, 0.019835081, -0.0228390899, -0.00561993942, 0.0118866749, -0.00635656854, 0.00640328135, -0.00195476157, -0.0060475436, -0.00522826845, 0.00186672539, 0.000441079, -0.00111302827, 0.0101762591, 0.0038951498, -0.012059154, -0.0253400337, 0.0251675546, 0.0043011941, -0.00654342072, -0.0242907871, -0.0185414888, -0.00274888333, 0.00304173841, 0.0190158058, 0.00338489958, 0.012389739, -0.0274241548, 0.0102265654, 0.00650389399, -0.00399935571, -0.0161986481, 0.0301263258, -0.0222354122, 0.00434790691, 0.00406044209, -0.00809213798, 0.00272013689, 7.39436146e-05, -0.0170466714, 0.00398857612, -0.00158914214, 0.00626673549, 0.0129862288, -0.0172191504, 0.0266048796, -0.00197811797, -0.00470723817, -0.00876049418, 6.47919e-05, 0.00292315916, -0.0248225965, -0.015868064, -0.0246932376, 0.00483300444, 0.00455631921, -0.0135539714, 0.0388940051, 0.00940010324, 0.0071075703, 0.00608707, 0.00657576043, -0.0124544185, 0.00360588823, 0.00322859059, -0.0203381442, -0.00200866116, 0.0107727489, 0.00349808903, 0.0247794781, -0.00723692961, 0.00819993764, -0.00175353605, -0.0216173623, -0.00170502637, 0.0034118495, 0.00235361909, 0.02696421, 0.00344598596, 0.0308737345, -0.00362744811, 0.0119441682, -0.00942166336, -0.0143085672, 0.0387790203, 0.00414668163, -0.00447726622, 0.00676261261, 0.00282074977, 0.00336693297, 0.00143013801, 0.0117573161, -0.0160261709, -0.00109865505, -0.000903268752, 0.00199967786, -0.0166873392, -0.00960851554, -0.00338849286, 0.00673386594, -0.00690993853, -0.00713991048, -0.000233340674, -0.00318547082, -0.00846584234, -0.00549417362, 0.00199069479, 0.00502344966, -0.0104277907, -0.00539715402, -0.0101906322, 0.0027920031, -0.0291345716, 0.000861047301, -0.00518874219, -0.0300400853, 0.00294112554, 0.0193895102, 0.0151062822, -0.0118507417, -0.00375141739, -0.00469286507, -0.00715069, 0.00574570522, 0.00785497949, 0.0188289527, -0.00360768498, -0.00746690156, 0.0173485093, 0.0132736936, 0.013173081, 0.00222426, -0.028689, 6.60271e-05, 0.00538996747, 0.007218963, -0.0206399821, -0.0124687916, -0.00259616761, 0.00304173841, 0.00473957788, 0.0117573161, -0.0162992626, -0.0228965823, 0.000200439419, 0.0101690721, -0.0310462136, 0.010478097, 0.00167897483, 0.0195763614, 0.00135647517, -0.00484737754, -0.00340825622, -0.0142654469, -0.0038412502, 0.0353869349, -0.00692431163, 0.0163855013, 0.00253867474, -0.00761782099, 0.0237877239, 0.0113189314, -0.0220773071, -0.00592896435, 0.0172191504, -0.0036579913, 0.00294471881, 0.00657935347, -0.00804183166, -0.00629188865, 0.0103343641, -0.00335076312, -0.00748127513, -0.0216748565, 0.0132808797, 0.0131084006, 4.21091215e-08, 0.00615534279, 0.0157530792, 0.0129215484, 0.028875852, 0.00170233136, -0.00476473151, 0.000916743651, 5.46014917e-06, 0.000308126473, -0.0195476152, -0.0167592056, 0.00505578937, -0.0440971218, 0.0115920231, -0.011742943, -0.00303994166, 0.000616252946, 0.0184552483, 0.00366877113, 0.0115632769, -0.0213155244, 0.0113189314, 0.00395982945, -0.011901048, 0.0101978183, -0.0165148601, 6.78658671e-06, 0.026978584, 0.00840116292, -0.033805877, -0.0106865093, 0.0118363686, -0.00675183255, 0.00449164, 0.0158393178, -0.0135324122, 0.0166442189, -0.0125119109, 0.00267162733, -0.0036579913, 0.00830773637, -0.0158393178, -0.00532528805, 0.0155231068, 0.00641765445, 0.00393467629, 0.0138629964, 0.00273451023, -0.00442336686, 0.00413590157, -0.0221635457, -0.0305000301, 0.000642304483, 0.01111052, -0.0303275511, 0.0141863944, -0.0117860623, -0.015551853, 0.02222104, 0.00470364513, -0.0172478966, -1.00219704e-05, 0.01221726, -0.0103343641, 0.0227384772, 0.00519233523, -0.0258287247, 0.0245495047, 0.00899046566, -0.00131964369, -0.00115255476, -0.000456799753, 0.00305072172, 0.0339783542, 0.00474317139, -0.0152643882, 0.0199500658, -0.00270576379, -0.00266084727, -0.00140228984, -0.0124831647, -0.00894015934, 0.00579241849, 0.0270073302, 0.01047091, -0.0231840461, -0.0193751361, 0.0129071753, 0.000119253033, -0.00271654362, -0.0184408762, -0.00361487153, 0.0106649492, -0.0123250587, -0.00550136, -0.0200937986, 0.0147900712, -0.0178084522, -0.00389874307, 0.00430478761, 0.0103559243, -0.00122172595, 0.00752439443, -0.010621829, -0.00573133212, -0.00401013577, -0.0059217778, 0.00659372704, 0.00894734636, 0.00688119186, 0.030155072, 0.0135827186, -0.0351857096, 0.0140498485, 0.00172838289, 0.02475073, 0.00288183591, -0.0131371478, 0.0136617711, 0.0188145805, 0.004286821, 0.000772562, -0.0118723018, -0.0191882849, -0.000912701187, 0.0167592056, -0.00770406, 0.00422214111, -0.0127275102, -0.0254119, -0.019518869, -0.0147469509, 0.0193463899, -0.00966600887, 0.00461740559, 0.00564509258, 0.00791247189, 0.0140929688, -0.0161986481, -0.00743815536, 0.000691712485, -0.00587506453, -0.00738784904, 0.0161124095, -0.0248944629, -0.00620564912, -0.0320523418, -0.0043155672, -0.0306725092, -0.0261449367, 0.00910545141, -0.0180527978, -0.00180204585, -0.0105068432, -0.00633500842, -0.0148619367, 0.00213083392, 0.00224222639, -0.0221060533, -0.0175784808, 0.0029608889, 0.00853770878, 0.000417722476, -0.0023715857, 0.0127131371, 0.0242332947, 0.00203022105, 0.0164286215, 0.00510250265, -0.00860957522, -0.00146427448, -0.0258143507, -0.00291776913, -0.0106505761, -0.0204243828, -0.00501985662, -0.00467849197, 0.0156812128, -0.00477910461, 0.00524623506, -0.00938573, 0.00364541472, 0.00380172371, 0.000875869708, 0.0160117969, -0.00537918741, 0.00413230853, 0.0158105716, 0.0115489038, 0.0227528494, 0.00817837752, 0.0143732466, 0.00111213, 0.00169873808, -0.0160980355, -0.0127203232, -0.0130796544, 0.0107583748, -0.011584837, -0.0137551967, -0.00516358903, 0.0293070506, -0.00914857164, -0.0326560177, -0.0165436063, 0.0130724683, 0.00622720923, -0.00675183255, 0.00368673773, -0.00495877024, 0.00156488724, 0.0099678468, 0.00145798619, 0.00512046926, 0.00894734636, 0.0295513961, 0.000259616761, -0.000637363642, 0.0040640356, -0.00404966203, 0.00964444876, 0.0146822715, 0.0113404915, -0.0115345307, 0.0125981504, -0.025871845, 0.0104924701, 0.00444852, -0.0175353605, -0.00123070925, -0.0136042777, -0.00514921546, 0.0097738076, 0.00722615, -0.00911982544, 0.0206831023, 0.000700246601, -0.00937854312, 0.0280565768, 0.00240572216, 0.00541871414, -0.0133455591, -0.0261449367, 0.0058067916, 0.00763938064, -0.00635656854, -0.00940010324, 0.00346215582, 0.00310462131, -0.0357893854, -0.0296376348, -0.00991754048, 0.00611940958, -0.00500907656, 0.00867425464, 0.0090623321, 0.0137911299, 0.0215742439, 0.00434072036, 0.0128353089, -0.0112111326, -0.0251963, 0.00830773637, -0.0139348628, -0.00761063397, 0.00965882186, -0.0156380925, -0.0268779714, 0.0104565369, -0.00504141627, 0.00877486728, 0.0167160854, -0.00588225108, -0.00517077558, -0.00602598349, -0.00855926797, -0.000355064112, 0.0174060017, -0.00577085838, 0.00404966203, 0.021430511, -0.00256562443, -0.0103846705, 0.00487612374, -0.00476832455, 0.00855926797, 0.0259724576, 0.000804901822, 0.0338921174, -0.0314486623, 0.00431916071, 0.00807057787, -0.0102696847, 0.00347293564, -0.010147512, -0.0173485093, 0.0148331905, -0.00794840511, 0.00187750533, 0.0175353605, 0.00647874083, 0.028415909, -0.0287608672, 0.0145241655, 0.0155805992, 0.0134461727, -0.0262599215, -0.00543668075, 0.00177868933, -0.0155805992, -0.00609425642, 1.23800819e-05, -0.00493002357, -0.00120555609, -0.00721537, 0.0125190979, 0.0103343641, 0.00885392, -0.00087407307, -0.00822149683, -0.00526060816, -0.0229684487, -0.0161124095, 0.0229253285, -0.0317073837, 0.00480066426, 0.0100756455, 0.00166280498, -0.00917013176, 0.00457069231, 0.010154699, 0.00507016294, 0.012864056, -0.00086778478, -0.0135539714, -0.0187139679, -0.0023895523, -0.0151781486, -0.00282613956, 0.0167017132, -0.00141396816, -0.00706085749, -0.00400294922, 0.0104349768, 0.0097450614, 0.0356169045, -0.00497314334, -0.00952946302, -0.0174778681, 0.0160549171, 0.0151925217, 0.0127634434, -0.0149338031, -0.00178587588, -0.0208699536, -0.00284590293, 0.00206256099, 0.00102050055, -0.00383765693, -0.0151206553, -0.00516718207, -0.00479347771, 0.0099391, -0.0021434105, 0.000449613115, 0.0116063971, 0.0194326304, -0.0158393178, -0.0134677319, -0.00509890914, 0.0267342385, -0.0147325778, 0.0112039456, 0.00556603959, -0.00506297639, 0.00328249019, -0.00896171946, -0.000795918517, 0.0150487889, -0.00270576379, -0.0157818254, 0.0118435556, 0.0127634434, 0.000459045579, 0.00404966203, 0.0346970186, -0.0218185894, 1.00500438e-05, -0.011908235, -0.00924199726, 0.000697102456, 0.00392748974, -0.006744646, -0.00181192742, -0.0445570648, -0.00280278316, 0.00842272304, -0.00142744312, 0.0149625503, -0.0123106856, 0.00509172259, -0.0362493284, 0.0213730186, 0.00438024709, -0.00563790603, 0.00825024396, 0.010147512, 0.0123466188, 0.00402091583, 0.0167879518, -0.0162992626, 0.00421854807, -0.00375141739, 0.00524623506, -0.0010312805, 0.0102768717, -0.00272732368, -0.0046353722, 0.00494080363, -0.0108446144, -0.00543668075, 0.00351425889, -0.0127778165, -0.00189547194, 0.0118579287, 0.00618049596, 0.0156093463, -0.0066332533, 0.000277583313, 0.0212005395, 0.00384484348, 0.00894734636, -0.00624158233, -0.0142654469, -0.00526779471, 0.00878924, 0.00394904939, -0.0334034264, -0.00220988668, -0.0113117453, 0.0188289527, -0.0159686767, -0.00867425464, 0.0197057221, -0.000253103877, -0.0230115671, 0.0315349028, 0.0138414362, -0.00222785329, -0.0226378627, -0.00594333746, 0.0380316116, 0.0021344272, -0.0121453935, -0.00361487153, 0.00584272482, 0.0193895102, 0.00923481118, 0.00712553691, -0.00730520254, 0.0274241548, -0.0135827186, -0.00385921681, -7.55718356e-05, -0.00278122327, 0.0178084522, -0.0140498485, -0.00103397539, 0.00951508898, 0.00164663512, -0.0161411557, -0.00486175064, 0.0180527978, -0.00819275063, -0.0031495376, -8.2197e-05, -0.0144235529, -0.0171616562, -0.00729082944, 0.0284590293, -0.0165436063, -0.0090623321, -0.00371907768, 0.00513843587, 0.0145026064, -0.0127059501, 0.00863113441, -0.00295370212, -0.00779748615, 0.00400294922, 0.00107799354, -0.00168885652, -0.0183690097, 0.0123969251, 0.0034837157, -0.00809932407, -2.17423421e-05, -0.0169604309, 0.00285129272, 0.0107368156, 0.0217754692, -0.0122603793, -0.0116135832, -0.0105643366, 0.00203561108, -0.0125478441, 0.00134389859, 0.0145744719, 0.0134533588, 0.00177419768, 0.00900483876, 0.000723603123, 0.00454913266, 0.0114482911, 0.00375501066, -0.00096749916, 0.00239314558, 0.00652545411, 0.0180096775, 0.00429760059, 0.0262311753, 0.00784060638, 0.00152446248, -0.0166011, -0.0172047764, 0.0128928022, -0.0148044443, 0.00796996523, -0.0145816589, -0.0146463383, 0.0130868414, -0.00854489487, 0.0309887193, -0.0119226081, -0.0263030417, 0.0124472314, 0.0061733094, -0.00327171036, -0.0149050569, -0.00960851554, 0.0189008191, 0.0229397025, -0.0448732749, 0.0190014318, -0.0075531411, -0.00294471881, 0.0208268352, -0.0194901228, -0.00144361297, 0.00541152759, -0.00142564636, -0.0125119109, -0.012375365, 0.000841284113, -0.0126197105, 0.0213011522, 0.00284590293, -0.0122460062, 0.00486175064, -0.00330764335, 0.0292351842, 0.00620205607, 0.00917731784, 0.00299143186, -0.000848021533, -0.00800589845, -0.0356456526, -0.00558041316, 0.00209310395, 0.0008987771, 0.020151291, 0.0169748049, -0.00725130318, -0.0113189314, -0.0209705662, -0.0165579803, -0.0208268352, 0.00940729, 0.00940010324, -0.00904077198, 0.0288183596, 0.0171185359, 0.00808495097, 0.00993191358, 0.00236978894, -0.0141648343, -0.0335471593, 0.00615174975, 0.0135036651, 0.00411074841, -0.00980974082, 0.0101259528, -0.00890422612, 0.0045383526, 0.00764656719, -0.000726298138, -0.000171692926, -0.0153218806, -0.0136330249, 0.00228175288, -0.00293932902, 0.0315061584, -0.00567383924, -0.0123034995, 0.00886829291, 0.00591459125, -0.0142223276, -0.0125837773, -0.00432275375, -0.00185594545, -0.00549058, 0.00806339178, -0.0107008824, 5.30013458e-05, -0.0148906838, 0.0139348628, 0.0112829991, 0.00618768251, 0.0092851175, 0.0138629964, 0.00422214111, 0.0403025821, -0.0325985253, 0.0027920031, -0.00513843587, 0.00963726174, -0.0102768717, 0.00146247784, -0.0052210819, 0.0149050569, -0.00781185972, -0.00329147349, 0.00144271459, -0.0138917426, 0.0168741923, -0.0391527228, 0.0034208328, 0.0126628308, 0.0150344158, 0.00267881388, -0.00113368989, -0.00467849197, -0.0139923561, 0.0210568067, 0.00419339491, 0.00636016158, -0.0250238217, 0.0189151932, 0.0302413106, -0.000952227623, 0.0143660605, 0.0234571379, 0.0109739741, 0.00414668163, 0.00788372569, -0.0253687799, 0.0239314549, 0.0286458805, -0.0105858967, 0.0175641067, 0.000278257066, -0.0205968618, -0.00728723593, 0.00814963132, -0.0191882849, 0.000849818229, 0.0184696224, -0.0283871628, -0.018886447, 0.0143516865, -0.00810651109, -0.0178084522, 0.00420776801, 0.000188761158, -0.0222066659, -0.00467849197, 0.0202087853, -0.0053468477, -0.00941447634, -0.000848021533, 0.0110889599, -0.0126484567, -0.00791965891, 0.00495877024, 0.00877486728, 0.0173628815, -0.0121813267, -0.000945939275, 0.00459584547, -0.0283440426, -0.0158968102, 0.00259077782, -0.0118148085, 0.00699617807, -0.0130221611, 0.00412512198, 0.0371692143, 0.00457787886, -0.012051967, 0.00813525729, -0.013173081, -0.00311899465, 0.0108661745, 0.0242332947, 0.00335076312, -0.007218963, -0.00565946568, 0.0197200943, 0.00303455163, 0.0175353605, 0.0181965306, -0.0097306883, 0.00935698394, 0.00683088554, 0.012856869, -0.0213442706, -0.0128999893, 0.0339496098, -0.0631273, -0.00957258232, -0.00496955, 0.00679854583, -0.0133671192, 0.0092994906, 0.0254406463, -0.0154512404, 0.0369679891, 0.00754595455, 0.00527498173, 0.0156668387, 0.00976662152, 0.00743815536, -0.0086167613, -0.00813525729, 0.00219012355, -0.0185414888, -0.00633500842, -0.000265455892, -0.0103415512, -0.00215958036, 0.0227528494, -0.00218653027, 0.00446289312, 0.0032375739, 0.0144882323, -0.0030147885, -0.0199069474, -0.0138558103, 0.0181965306, -0.0216748565, 0.0156237194, -0.00263030408, -0.00332740671, -0.00179935084, -0.00082421588, -0.00127921894, -0.003251947, -0.0251819286, 0.000964804203, -0.0165004879, 0.0081136981, -0.0133958664, -0.0104996571, 0.0102840578, -0.0206256099, -0.0123178726, -0.0114914104, 0.00590381119, -0.0138629964, 0.00708601065, -0.0158968102, 0.00284590293, 0.00712913042, -0.000731688109, -0.0263749082, 0.00423651468, -0.0024524352, 0.0154081201, 0.00314235105, -0.0346682705, -0.0135324122, 0.0205106232, 0.0148763107, 0.0093282368, -0.00352683547, 0.00279559637, -0.0183115155, 0.0125909643, -0.0273810346, 0.0153650008, -0.0146463383, -0.0192888975, 0.00309204473, -0.0109811602, 0.0141576482, 0.0171760302, 0.00692431163, -0.000843529939, -0.00738066202, 0.00726567628, 0.019202657, 0.0152500151, 0.024118308, 0.00261054095, -0.00868144073, -0.0102409385, 0.0325410292, 0.0115129706, 0.000989059, -6.23776432e-05, -0.0228390899, -0.00262491428, 0.0085880151, -0.0202806517, -0.00176611263, 0.00559837976, -0.00889704, -0.00309923128, 0.00834367, -0.00651108054, 0.000324520952, 0.00737347547, 0.0224941317, -0.0124112982, 0.0241470542, -0.0159686767, -0.0149769234, 0.0093138637, 0.0212149117, 0.0149912965, 0.00924918428, 0.0126340836, 0.0195907354, -0.00643202802, -0.00656138733, -0.0211430453, -0.0046353722, -0.0185271148, 0.00730520254, 0.00871737394, -0.0157530792, -0.0102624977, 0.012856869, 0.0109380409, 0.00259796437, 0.00237338245, 0.00598286372, -0.0135252252, -0.0285740141, -0.00850896165, -0.00304353493, 0.00823587, -0.00560197281, -0.0109739741, -0.00314414781, -0.00842272304, 0.010319991, -0.0164142475, -0.00569180585, 0.00971631519, 0.027467275, 0.0213298984, -0.0271941833, -0.0374854282, 0.000298020284, -0.00534325466, 0.00624158233, -0.0129359225, -0.00231948262, -0.00461381208, 0.00364361797, -0.0108086811, -0.00957258232, -0.0235721245, -0.00241111219, -0.0025638279, -0.00219551334, 0.0132952528, 0.00413590157, -0.00243806187, 0.0204243828, 0.00496236328, -0.00182180898, -0.00673386594, 0.0169029385, -0.00357714179, -0.00909826532, 0.00468567852, 0.00910545141, -0.0154081201, -0.003967016, -0.00626673549, 0.00603676355, -0.013489292, -0.00702492427, -0.0336908922, 0.00737347547, 0.000510250276, 0.000193252796, -0.00693868473, 0.00863113441, 1.9124559e-06, 0.0024434519, -0.0213298984, 0.0106505761, 0.0119585413, 0.0136689572, 0.010147512, 0.00529654138, 0.0280709509, -0.00732316915, 0.0020715443, 0.0103487372, -0.0157818254, -0.00318367407, -0.0200363062, 0.0109667871, 0.00193499832, 0.0343233123, -0.00425448082, -0.0126628308, 0.00829336327, -0.00140588323, -0.00266084727, 0.000638261961, -0.00272013689, -0.00476473151, 0.0367380194, -0.00511328271, -0.0165004879, -0.0243051611, -0.00271654362, -0.00505578937, 0.000591099786, -0.0282146838, -0.0108374283, -0.00432275375, 0.0269067176, 0.0281571895, 0.0107080685, 0.0265617594, 0.00675542606, 0.0206974745, -0.0095366491, 0.0149338031, 0.0021523938, -0.00886829291, 0.0123322457, 0.0184983686, 0.00698539801, -0.00490487041, -0.0118651148, -0.0147325778, 0.00447726622, -0.00095492258, -0.00123430253, 0.000432544883, 0.0102121914, 0.0206399821, 0.00107979018, -0.0203237701, -0.0137336375, -0.0153362546, 0.019504495, -0.0271079428, 0.00745252846, 0.0101762591, -0.00799152534, 0.000170906889, -0.0136761442, 0.00101421226, 0.0288327336, 0.0118435556, 0.00280637643, -0.0061589363, 0.00636016158, -0.0108518014, -7.20908138e-05, -0.00113458815, 0.00373704406, 0.00786216557, -0.00526420167, 0.016184276, -0.00759626087, 0.000234239, -0.0127850026, -0.0133671192, -0.00568821235, 0.0108518014, -0.00387718319, -0.0136905173, 4.47479579e-05, -0.00743096834, 0.0190014318, -0.00802745856, -0.00399216916, -0.0328284949, -0.0124328583, 0.00263569411, -0.00922762416, -0.013496479, -0.00100792397, 0.0142941941, 0.0150631629, -0.0090335859, -0.02000756, 0.00208412088, -0.00398857612, 0.0120807141, -0.0129718548, 0.0165148601, 0.0181246642, -0.0262168013, -0.0235290043, 0.00610144343, 0.00401732232, 0.0107296286, -0.00300580519, 0.00519592874, -0.0332022, -0.00987442, -0.0129574817, 0.0189726856, -0.0244345199, -0.00271115359, -0.0114985975, 0.00274529, -0.0183546357, -0.0210711788, -0.00573851867, -0.0173341352, -0.00113548653, -0.0177222136, 0.0114698512, -0.00625954894, -0.00324476045, -0.00384484348, -0.0113117453, -0.0128137497, 0.0155805992, 0.0125550311, 0.00556244655, 0.00855208188, 0.00560556632, 0.0229828209, 0.0134102395, -0.0173916277, -0.0135180382, 0.0184696224, 0.00844428223, -0.0154943597, -0.00266444054, -0.0133096268, -0.0113261184, 0.0086167613, -0.00281176646, -0.0263605341, -0.0188576989, -0.0221779197, -0.0102409385, -0.00380531698, -0.0143660605, 0.00304712821, -0.0140067292, -0.0101762591, 0.00461740559, 0.0198207069, -0.00286925933, -0.0153218806, -0.000690365, 0.000287464936, 0.0125981504, -0.00166011, 0.0141073419, -0.00921325106, -0.00079951185, 0.0126412706, -0.00922762416, -0.00821431074, 0.0131227747, -0.00656498037, -0.0336621441, -0.0134030525, 0.00589662464, -0.00551932678, 0.00713631697, -0.021416137, -0.00654342072, 0.0311324522, -0.00722255651, -0.015709959, 0.060310144, 0.00330584683, 0.0224222653, -0.0234283917, 0.0114195449, -0.0154943597, 0.00361666828, 0.0335184112, -0.0392102152, -0.00275068, 0.00982411392, 0.0189439394, -0.00799871143, 0.00581397815, 0.00618408946, 0.0120879, 0.00463896524, -7.48419479e-05, -0.00279020658, 0.00055202248, -0.0250956882, -0.00852333568, 0.0169460587, -0.00911263842, 0.012382552, -0.0139564229, 0.00878205337, -0.0123681789, -0.0233852733, 0.0160117969, 0.00813525729, -0.00434072036, 0.0118219955, 0.0224366374, -0.0266336259, 0.00408559525, -0.00361666828, 0.0191164184, 0.0127418833, -0.0248225965, 0.0157387052, 0.0173916277, 0.00883236, -0.00287105609, 0.00920606498, -0.00511328271, -0.00845865533, -0.027467275, -0.0217323489, -0.0201369189, 0.00133491529, -0.0129646687, 0.00324476045, -0.0122747524, 0.00984567404, -0.0212005395, 0.00888266601, 0.0113404915, 0.00790528581, 0.0151637755, -0.000775706139, 0.00475754449, -0.00119208114, -0.00521748839, -0.00537918741, -0.0296951272, 0.00888985302, -0.00322140381, 0.0157961976, 0.0111464532, -0.0109955333, -0.00866706762, -9.34822456e-05, -0.00295909215, -0.000914947, 0.020309398, -0.0017131113, -0.00675542606, -0.00209849398, -0.0194038823, -0.0281715635, 0.0060475436, 0.00744534191, -0.0237589777, -0.00588584458, -0.00474317139, -0.0130868414, -0.00786935259, -0.0204387568, 0.0110242805, 0.00246680854, 0.0098025538, 0.00047701213, -0.00688119186, 0.00237338245, -0.00739503559, -0.0235290043, 0.00317469076, -0.00701773772, -0.0162561424, 0.000227726123, -0.00124687911, 0.0128281228, -0.00610144343, -0.00783341937, 0.0164861139, -0.0106433891, 0.0161267836, 0.00561275287, 0.00186492875, 0.00398138957, 0.00402810238, 0.00816400442, 0.0280996971, 0.00783341937, -0.00344778248, 0.0107440017, 0.0149481762, -0.00992472656, -0.00899046566, 0.018555861, -0.0138414362, -0.00431197416, -0.000867335591, -0.0161124095, 0.000471173, 0.011735756, 0.00205178093, 0.0344957933, -0.00222605653, -0.00624517584, -0.00474317139, 0.0139348628, 0.0090910783, 0.0291776899, 0.0180527978, -0.00876049418, -0.00523904851, 0.00265186396, 0.00361307501, -0.0125119109, 0.0223503988, -0.000697102456, -0.000393243041, -0.00114087644, 0.0230115671, -0.0142438877, 0.000872725563, 0.028890226, -0.0116710765, -0.00126933737, 0.00234463578, 0.00068767, 9.45490101e-05, -0.00702851778, 0.0106721353, 0.0160405431, -0.0309024807, 0.00365080475, -0.0103702974, 0.00779748615, 0.00648233434, 0.0264180265, -0.0253256615, -0.00929230358, -0.014437926, -0.0245782528, 0.00300400867, 0.013963609, -0.00267881388, 0.0225228779, 0.026992958, -0.00244165538, 0.0050953161, -0.0167592056, -0.0198638272, -0.0252106749, -0.00187211542, -0.000157544258, -0.0174634941, -0.00898328, -0.000516987697, 0.0196194816, 0.0597352125, -0.00176251936, -0.00798433833, -0.0224941317, -0.0116135832, 0.009047959, 0.0154081201, -0.0317936204, -0.0106865093, -0.00590021769, -0.0017373662, 0.019030178, 0.00620924262, 0.0117285689, -0.00209849398, -0.00169244979, -0.00349449553, 0.0270073302, -0.0120016607, 0.0114051709, -0.00604035705, 0.0175209884, 0.0157387052, 0.0135611584, 0.000894734636, -0.00186313211, 0.0117573161, -0.0146678984]
24 Nov, 2021
jQWidgets jqxScrollView animationDuration Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is used for representing a widget that is used to view content that is wider than the visible area outlined by the screen of the device. Here particular items are chosen using drag movements or clicking/tapping on the buttons at the bottom of the jqxScrollView. The animationDuration property is used for setting or getting the animation duration that starts when the current page is changed. Syntax: For setting the animationDuration property: $("#jqxScrollView").jqxScrollView({ animationDuration: 4000 }); For getting the animationDuration property: var animationDuration = $('#jqxScrollView') .jqxScrollView('animationDuration'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxScrollView animationDuration property. In the below example, the value for the animationDuration property has been set to 4000. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView animationDuration Property </h3> <div id='jqx_Scroll_View'> <div style="background-color: #006400"> First Screen </div> <div style="background-color: #FF0000"> Second Screen </div> </div> <input type="button" style="margin: 28px;" id="button_for_animationDuration" value="Navigate to the next page"/> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Scroll_View").jqxScrollView({ width: 300, height: 200, animationDuration: 4000 }); $("#button_for_animationDuration").jqxButton({ width: 250 }); $("#button_for_animationDuration").jqxButton(). click(function () { $('#jqx_Scroll_View'). jqxScrollView( 'forward'); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-animationduration-property?ref=asr10
PHP
jQWidgets jqxScrollView animationDuration Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0398523211, 0.0277490225, -0.0160590094, 0.044103235, 0.051276654, 0.000252997648, 0.0176826213, 0.0478523038, -0.0244575161, 0.0277490225, -0.00128320779, 0.0212840904, -0.000412130175, -0.0217711758, 0.0257711671, 0.0167970154, -0.0174021795, 0.00152859476, -0.0186715499, 0.0470552593, -0.00225645304, 0.0148412995, -0.0539334752, 0.030154923, -0.04460508, 0.017756423, 0.0213874113, 0.0361622907, -0.0337121114, -0.00547969388, -0.0285755899, -0.0012241673, 0.0348338783, 0.0209150873, -0.0359261297, 0.0134981284, 0.0378449447, 0.00796308368, -0.0242361147, -0.011557173, -0.0235276297, 0.0315276124, -0.00814758521, 0.0134833688, -0.0178745035, 0.00268634153, -0.0108044073, 0.00656825257, -0.0221401788, 0.0139704524, 0.00787452329, 0.0230257846, -0.00158210017, 0.0389371924, 0.00138560613, -0.0295054764, 0.0033118017, 0.020487044, 0.0132914865, 0.00932839513, 0.0524279401, -0.0378154255, -0.00572692603, -0.0127306022, 0.00482655875, 0.0199999604, -0.01859775, 0.017992584, -0.0490035936, 0.0354242846, -0.0203689635, 0.0145756174, 0.00324353599, 0.0153210033, 0.026686294, -0.0184501484, -0.0202656426, 0.0138966516, 0.00217342749, 0.0147970188, -0.0347157978, -0.00336161698, -0.107335582, -0.00580072682, 0.00799260382, 0.00473799789, 0.0115645528, -0.0396752, 0.0478227846, -0.0158228464, -0.0244575161, -0.0334169082, 0.00768264197, -0.0167970154, -0.0293431152, -0.0156309661, -0.0101697221, 0.0152029218, -0.0248412788, 0.0143763553, 0.0269224569, 0.00242988463, 0.00310515985, -0.0506862476, 0.010243522, 0.00800736435, 0.0515128151, -0.0208412874, -0.00353873847, -0.03099625, 0.0364279747, -0.0111955497, 0.00121494231, -0.0132545866, -0.0465238951, 0.0163837317, -0.0153062427, -0.0235128682, 0.00957931671, -0.0109298676, 0.00301659922, 0.00393357174, -0.00984499883, 0.0669519, -0.0011928021, 0.0293873958, -0.00248339, 0.000690958055, 0.0380811058, -0.0364279747, 0.00140682387, 0.0325903408, -0.00380442059, 0.0134686083, 0.0372250192, 0.0166346543, 0.00252582529, -0.00637268135, -0.00536530325, 0.0141770942, -0.0224944204, 0.00104704592, 0.00711806724, -0.0236309506, -0.0125977611, 0.00591142755, 0.0132914865, 0.0363098904, -0.0244722776, 0.0214759726, -0.0238080714, -0.0341549143, 0.00859776884, 0.0404132046, 0.042656742, 0.0072545982, -0.027158618, 0.00676382426, -0.0250774417, -0.0147305988, 0.0141401934, -0.0181697067, 0.0181697067, -0.0024797, -0.0145091964, -0.0213578921, 0.0299778, -0.0241475534, -0.0301254019, 0.0347157978, -0.014590377, -0.0146125173, -0.0169003364, 0.000727397099, -0.0326789021, -0.0308191273, 0.0098819, -0.0243541952, -0.0111586498, -0.0128191635, -0.0351290815, -0.00260516093, -0.00694463588, 0.0253431238, -0.000421355275, -0.0204722844, 0.0304058436, -0.00529519236, -0.0285165496, -0.0105313445, -0.00753504038, 0.0147527382, 0.0502729639, 0.0653578043, -0.0262730103, -0.0165018123, -0.00478227856, -0.00705533661, -0.0317932963, -0.0266272537, -0.0307305679, -0.0112914909, 0.0151438816, 0.00536530325, 0.0100590205, 0.00571216596, -0.0266715344, -0.0354538038, 0.0547895618, -0.00107103109, 0.00286161806, 0.00836160686, 0.03220658, -0.0124427797, -0.00943171605, 0.00875275, -0.0162804108, -0.0330331437, 0.00718817767, -0.0131217455, -0.0141475741, -0.0191291142, -0.0126272812, 0.0253283642, -0.0868485346, 0.00560146524, 0.00652766228, -0.00883393083, -0.00580072682, 0.00125830015, -0.0256973673, -0.0242508743, -0.0243689567, 0.0102804229, 0.0207379665, 0.0456382856, 0.0033929823, 0.0389667116, -0.0249150805, 0.0111217499, 0.0154686039, -0.0295054764, -0.00884869136, -0.00432471465, 0.0145756174, -0.00347969797, 0.00011560171, 0.0127453627, 0.00218080753, -0.00625091046, 0.00375091517, -0.0109372484, -0.0249593612, -0.00200922112, -0.00524722226, 0.030523926, 0.00586714735, 0.0135350293, -0.0101106809, 0.0256973673, 0.0353652425, 0.015970448, -0.0101697221, 0.0197195187, -0.00766788144, 0.0203099232, 0.0218154546, -0.0311143305, 0.0185829885, -0.0716751367, 0.0196604785, -0.0224796608, 0.0532545075, 0.00698522618, -0.0183025468, 0.0206051264, -0.0144649167, -0.00144833664, 0.0529002659, 0.00833946746, 0.012974144, 0.00785238296, -0.00270479172, 0.0674242228, 0.0108117871, 0.00221401779, 0.0315866545, -0.0295202378, -0.0288560316, 0.0368707776, -0.0182877872, -0.025166003, 0.020059, 0.0153800435, 0.0185534693, 0.0012103297, 0.0100664012, -0.020988889, -0.0147158382, -0.0148855792, -0.0324722603, 0.0136826299, -0.00608485891, -0.00909223314, 0.0285608303, 0.0111217499, 0.0138376113, -0.0330921859, 0.0131438859, 0.00202398119, 0.0414464138, 0.0239113923, 0.0151143614, -0.0230700653, 0.0056199152, 0.00637637125, 0.0139925927, 0.0163542107, 0.00695570605, -0.0175497811, 0.0260368492, 0.00538006332, -0.0327084213, 0.0272471793, 0.0442213155, -0.0191586334, -0.035247162, -0.0169593766, 0.00679703476, 0.0124058798, -0.0456087664, -0.0171955377, 0.0205756053, 0.0167232137, 0.0321180187, 0.00184962736, 0.0175350215, 0.00204427633, -0.0121770976, 0.00691511575, -0.0174759813, -0.0172250587, 0.0232914668, -0.00992617942, 0.0251069628, -0.0248855595, -0.0270110164, 0.00622139, 0.049830161, -0.0159852076, 0.0013957537, 0.0248560403, 0.0518375374, -0.00239113928, -0.00584869692, -0.00607378874, 0.00237453403, -0.0245313179, -0.0308191273, 0.01364573, 0.00480072852, 0.0227896236, 0.0389667116, -0.0206789263, 0.0258154478, -0.0473799817, -0.0400294401, -0.00838374719, -0.00614389917, 0.00233763386, -0.00876751076, -0.0166051332, -0.0221401788, 0.0355718844, -0.0522803403, 0.00237822416, -0.00731363893, -0.00671585416, -0.0322951414, 0.0288265124, -0.0278080627, 0.042656742, -0.0209298488, 0.0339187533, -0.000120041281, 0.00865681, -0.000462868105, -0.0289445929, 0.0296678394, 0.00021725049, -0.0419482589, 0.0473799817, -0.0146715576, -0.0433061868, -0.0105977654, 0.00283394288, 0.00949813612, 0.0171955377, 0.0260073282, 0.00383394072, -0.00432102475, -0.0286493897, 0.0456087664, -0.0602508038, 0.023822831, 0.00442434568, -0.0222582594, -0.0376383029, 0.015062701, -0.0227158219, -0.0177121423, 0.00890035182, -0.0232324265, 0.00754980091, -0.00941695552, 0.0294907168, 0.0406198464, 0.0246346388, -0.0189962722, -0.00110424135, 0.0143394554, -0.0205903649, -0.0153948041, 0.0172545779, -0.0301254019, -0.0163099319, -0.051689934, -0.0109077273, 0.0266420133, 0.0247822385, -0.0105534848, 0.0107453661, 0.0407969691, -0.0122804185, 0.025844967, 0.0107748862, 0.0451954827, 0.00169003359, -0.0194833558, -0.0209741294, -0.0363394134, -0.00845016818, 0.0184058677, -0.0218449757, -0.0171807781, -0.0197342783, -0.0290921945, -0.0106420452, 0.0018339447, 0.00128413027, -0.0165018123, -0.0490035936, -0.00800736435, -0.0223763399, 0.0292545557, -0.0149298599, -0.0233062282, -0.0155866854, -0.00681917462, -0.00832470693, -0.0105830049, 0.00634316122, -0.00808854494, -0.00091374357, 0.0205165651, -0.0284870286, 0.00216789241, 0.018228747, -0.0103247026, 0.0342434756, -0.0529002659, 0.014354215, 0.0161475707, 0.0722065, 0.0390257537, 0.00142896397, -0.00758670084, -0.033387389, -0.015129122, -0.00269372156, 0.0511880927, -0.0067527541, 0.0285165496, 0.0318228155, -0.0336235501, 0.00253136037, -0.00267527159, -0.0211217292, -0.0221992191, 0.0259925686, 0.0230257846, 0.0101033011, -0.0587747917, 0.00430257479, -0.010782267, 0.0191291142, -0.0214021727, 0.00455349684, 0.0102066221, -0.0122508984, -0.0231733862, 0.0261106491, 0.00432102475, -0.00155442499, 0.00272139697, -0.0192029141, -0.0337416306, -0.00914389361, 0.0280589852, -0.0511585698, -0.0145977577, -0.0179040246, -0.0280589852, 0.0242213551, -0.0210774504, -0.0244722776, -0.0346862786, -0.010782267, 0.00299814902, -0.00701843621, 0.031468574, 0.0158523675, 0.0115497932, -0.00642803172, 0.0286641512, 0.0249003209, -0.00838374719, -0.00644648168, -0.0201918427, 0.0425386615, -0.0325903408, -0.00906271301, 0.0289445929, 0.012568241, -0.0183911081, 0.0182435066, -0.014789639, -0.00485238899, -0.00479703862, 0.0123468395, -0.0191143528, 0.0228191428, -0.073859632, 0.00813282561, 0.0291217137, -0.0111438893, 0.0036641995, -0.0188929513, -0.00887821149, 0.0146198971, 0.0314095318, 0.0112841111, 0.0161475707, 0.00706271688, -0.0214759726, 0.0172693394, -0.017151257, -0.00203136122, -0.0148191592, -0.0170922168, 0.0123394588, 0.00816234574, 0.0200885218, -0.000619925, 0.0224944204, -0.0102287624, 0.00402582251, 0.0104944445, -0.0388486311, 0.00838374719, 0.0228043832, -0.0190995932, 0.00696308585, -0.0165903736, 0.00976381823, -0.00351290824, 0.0519261, -0.0356309265, 0.00526936259, 0.00869371, 0.0183320679, -0.00398892211, 0.0153652839, 0.0134833688, -0.0379335061, -0.0104944445, -0.0118154753, -0.0213874113, -0.0404132046, -0.00426936429, -0.00402213214, 0.0310552903, 0.00172970141, -0.00735053932, 0.00832470693, 0.0178597439, -0.000604242377, 0.0200442411, 0.0012020272, -0.0369593389, 0.0154833645, 0.0307896081, 0.0190995932, 0.0111143691, -0.00526198233, 0.0151586421, 0.0260663703, 0.0419777781, 0.0119556962, -0.0146641778, -0.0351586044, 0.0309076887, 0.0218597353, -2.96932067e-05, -0.0231438652, 0.00488928938, 0.00451290607, 0.0321180187, -0.00219741277, 0.00283578783, 0.00103228574, 0.0231733862, 0.0303468034, 0.0240147132, 0.0232176669, 0.0361918099, -0.00244464469, 0.00722507806, 0.0025977809, -0.0381991863, -0.00315313041, 0.00254243053, -0.0162361301, 0.0188781917, 0.0371069387, 0.00956455711, -0.00491880951, 8.88489958e-05, -0.00383394072, 0.00113560667, -0.00216973736, 0.014952, -0.0172693394, 0.0600146428, -0.00741696, -0.00332471682, 0.00654980261, 0.0275128614, 0.0143394554, 0.00788928382, 0.00132472068, 0.018125426, 0.00246678479, 0.0238080714, 0.0145387165, 0.0207379665, 0.0149962809, -0.022273019, -0.00873061, 0.0524279401, -0.018966753, -0.00994094, 0.0433652289, 0.0304648858, 0.0241770744, -0.0191881545, 0.0353652425, 0.0185829885, 0.0041070031, 0.0143099353, 0.0144575359, 0.00992617942, 0.0219040159, 0.0143837361, -0.0181401856, -0.00985238, -0.024797, 0.00280257757, 0.00550552411, 0.025638327, -0.00190774538, 0.0248855595, 0.019778559, 0.00685607502, 0.0149446204, -0.0253726449, 0.00661622314, -0.0139778322, 0.0404427238, -0.00308855483, 0.0308486484, 0.0261254106, -0.00570847606, 0.0225977413, 0.000666511594, -0.0260220896, -0.0010571935, 0.020959368, -0.0126641821, -0.0205903649, 0.0209298488, -0.00864942931, -0.0331217051, 0.0155424047, 0.0123985, 0.00400368217, 0.0051549715, 0.0289741121, -0.00656087277, -0.0196604785, 0.0238523521, 0.0258744881, -0.00570847606, 0.062641941, 0.0101328213, 0.0173431393, -0.00353873847, 0.0183763485, -0.0370774195, 0.0179187842, 0.0222582594, 0.0126051409, 0.00163007062, -0.0319113769, -0.00998522062, -0.00380442059, 0.0518080182, -0.0371955, -0.0205313247, -0.00314759533, 0.00204796647, 0.0170774572, 0.0323541798, -0.00867894944, -0.0242656358, 0.0139556918, 0.0061623496, 0.00560146524, 0.000777673733, -0.00182840973, -0.0181992259, -0.0405017659, 0.0114243319, 0.0181549452, -0.016811775, -0.0405903272, 0.0151734017, -0.0199999604, 0.00020260569, -0.0314095318, 0.0118449954, -0.0105239647, 0.0358080491, -0.0187601112, 0.0171660185, -0.000642987667, -0.008287807, 0.016915096, 0.0266715344, 0.0174464602, 0.0209741294, 0.0276161823, -0.0185091887, 0.00536530325, 0.0166051332, 0.0301992036, -0.0230405461, -0.0116457334, 0.0195276365, -0.042686265, -0.0076383613, -0.0287674721, 0.0383467898, -0.00392988138, -0.0249150805, 0.000803042727, -0.010915108, -0.0191881545, 0.00614758953, 0.00639482122, -0.0267010555, 0.0118080946, 0.0132914865, -0.0025202902, 0.0163984913, 0.0105313445, -0.010715846, 0.0295054764, -0.00158486771, 0.0182582662, 0.00755718071, 0.0121032977, -0.00051291415, 0.00741326949, 0.00928411447, 0.00248523499, -0.0282361079, 0.0109298676, 0.0104280235, -0.0319408961, -0.0157638062, -0.0174612198, 0.0163542107, 0.000966787746, 0.0134390881, -0.00419556396, -0.00346124778, -0.0117859552, -0.0191733949, -0.0120073566, -0.0387600698, 0.00291696843, -0.0117047736, -0.0255940463, 0.00412914297, -0.0107748862, 0.0200737622, -0.0170036573, -0.000948337605, 0.00128228532, -0.0176531021, 0.016575614, 0.0262582507, -0.0259187687, -0.0368707776, 0.0221401788, -0.00559039507, 0.031468574, 0.0420072973, 0.00237637921, -0.00808854494, 0.0161918495, -0.0675423, 0.02850179, -0.0072509083, 0.0129815247, 0.031439051, 0.0219482966, -0.0283246674, 0.0212840904, -0.00152859476, 0.0234538279, -0.013881892, 0.00932101533, 0.0157490466, 0.0365165323, -0.00640589138, 0.0140737733, 0.0385534316, 0.013881892, 0.0320589766, 0.00769002177, 0.022169698, 0.0142139941, -0.0173431393, 0.0334169082, -0.0110700894, 0.0241623148, 0.0244870372, -0.0241327938, -0.033387389, -0.0130922254, 0.0142066143, -0.0102730421, 0.0140959136, -0.00182287465, -0.0205608457, -0.0451659635, -0.0320885, -0.0196899977, -0.0140073523, 0.00106734107, 0.015129122, 0.00954979658, 0.00853134878, -0.0108191669, -0.0234243087, 0.014590377, 0.00436899532, -0.0278080627, 0.0366050936, -0.0166789349, -0.0564722158, -0.00339482725, -0.00736898929, 0.0206641667, -0.0365460552, -0.00435792515, 0.0187453516, -0.00449814601, -0.015129122, -0.00853134878, 0.0071697277, -0.0439556316, -0.0129151037, 0.00742064975, -0.00760146091, -0.0151069816, 0.0130479448, 0.0281475466, 0.00783762336, -0.00640220148, 0.0247527193, -0.0281918272, -0.0106272856, -0.00940957572, -0.016442772, 0.0318523347, -0.0051549715, -0.0137711903, 0.0295645185, 0.0305534452, -0.000410977053, -0.00915865321, 0.000368080451, -0.0190257933, -0.0174612198, 0.0363984518, 0.0183911081, -0.0161623303, -0.0067084739, -0.0285165496, 0.0102804229, 0.0349519625, 0.00448338594, -0.0235571489, -0.0399999209, -0.0307896081, -0.0250922013, 0.0180811454, 0.00909961294, 0.0137195298, 0.0391438343, -0.0166494139, -0.0235423893, -0.0215497725, 0.000697415613, 0.0442803577, -0.0159409288, 0.0252398029, 0.0555275679, -0.000576567138, -0.00246124971, -0.00202951627, -0.00553135434, -0.0066272933, -0.0378449447, 0.00801474415, -0.0461401306, 0.00235423888, 0.0128634432, 0.0100885415, 0.0404427238, 0.00153505232, 0.00700367615, -0.0198523588, -0.0216530934, 0.0184944291, -0.0120073566, -0.00280811265, 0.00331733678, -0.030523926, 0.010952008, 0.0142066143, 0.0100885415, 0.00934315473, 0.0187896304, 0.00937267579, -0.0151143614, 0.00664205337, -0.00915127341, -0.000641603896, 0.0349814817, -0.0046974076, -0.00396678178, 0.0241180342, -0.00646862201, -0.037431661, 0.00841326732, -0.0269667376, -0.0077490625, -0.0131512657, 0.0180516243, 0.0126051409, 0.0330331437, 0.00141143636, -0.0177859422, -0.0358080491, -0.00654980261, 0.0220220964, 0.011859755, -0.0186863095, 0.0107084662, -0.0243394356, -0.0189224724, 0.0206641667, 0.0402065627, -0.010309943, -0.0143246949, -0.0247822385, -0.0171364974, -0.0128486836, -0.0104206437, 0.0303763244, 0.021933537, 0.0199704412, 0.00788928382, 0.00189298519, -0.00705164671, 0.00537268305, -0.0192619544, -0.0041512833, 0.0106494259, -0.0023634641, 0.037431661, -0.00444279565, 0.0166051332, 0.0214464515, 0.00726566836, 0.00307379477, 0.0449298024, -0.00859038904, 0.0358966067, -0.0559113286, 0.00681917462, 0.0072140079, -0.00204058643, -0.0101106809, -0.0101106809, 0.0129962843, 0.0137416702, 0.00626936043, -0.0066715735, -0.0111586498, -0.0228634235, 0.0108708274, -0.00159409281, -0.0131955463, -0.00281549268, -0.0150405606, 0.000171355758, 0.00549076404, 0.0148412995, -0.00205903663, 0.0130848456, -0.00874537, 0.00279704249, 0.0104132639, 0.0111217499, -0.0165903736, -0.00198892597, -0.0113800513, 0.0046125371, -0.0136014493, -0.00394464191, 8.42364607e-05, 0.00608485891, -0.0121401977, 0.0153210033, 0.0204575248, -0.00013641578, 0.0167674944, 0.0121032977, -0.0114317117, -0.00378966052, 0.00310147, -0.028132787, 0.0030627246, -0.0130700851, 0.0141475741, -0.0115424125, 0.0147601189, -0.00491880951, 0.00378966052, 0.0159261674, -0.0153357629, 0.00309039978, 0.00253136037, 0.00221586274, -0.0124575403, 0.00495202, 0.019439077, -0.00124169502, -0.00840588752, -0.0135055082, -0.00824352633, 0.00948337652, -0.0162656512, -0.00442803558, -0.0165018123, -0.00250553014, 0.00125368754, 0.000864389469, 0.00783024263, -0.0342729948, -0.0140073523, -0.0247084387, 0.0748633221, 0.0115202731, 0.00551290438, -0.0140368724, -0.0230257846, -0.0276899822, 0.00152951735, 0.0281475466, 0.0285755899, -0.00940219592, 0.015498125, 0.00780810276, 0.0117638148, -0.0178007036, -0.0234981086, 0.00397047214, -0.000863928173, -0.00886345096, 0.0199999604, -0.0264796522, -0.0249150805, 0.010715846, 0.00494832965, -0.00112084649, 0.0195128769, 0.0126125216, -0.00645386195, -0.0174907409, -0.0280885063, 0.00719924783, 0.0458154082, 0.0212102905, 0.0114538521, -0.00146494177, -0.0155276451, 0.0276309419, -0.00975643843, 0.00785238296, -0.0338006727, -0.0177269019, -0.0125756208, -0.0135940695, -0.0055830148, 0.00816234574, 0.0122508984, -0.0252102818, -0.017623581, -0.0191881545, -0.00759408111, 0.0176973827, -0.0548486, -0.000306272472, -0.029549757, -0.00107379863, 0.00936529506, 0.0157047659, -0.00201844634, -0.0107010864, 0.0443689153, -0.0330331437, -0.00282287272, -0.00399261201, 0.00914389361, 0.0166198928, 0.00200368604, 0.00147139933, -0.008221386, 0.0132545866, -0.0194685962, 0.0240294728, 0.0233209878, 0.034302514, 0.0147379786, 0.00380442059, -0.0348338783, 0.0170036573, -0.0136235896, 0.0243984759, 0.00686714519, -0.00671585416, -0.0216530934, 0.0281918272, 0.00571216596, 0.00784500316, -0.0121106775, 0.0137047702, -0.0191586334, 0.00288006826, -0.0203099232, -0.0092250742, -0.0233652685, -0.0203246828, -0.0391733535, -0.00513283117, -0.00127767283, -0.0196457189, 0.0238671117, -0.0153062427, -0.00479334872, -0.0241475534, 0.0165608525, -0.00968263764, 0.0271290988, -0.00637637125, 0.00876751076, 0.00132010807, 0.0276014227, 0.023483349, -0.0155571653, 0.0237195101, 0.0261992104, -0.00845016818, -0.000181272713, 0.00141235883, 0.0194685962, -0.0221844576, 0.00894463155, -0.00601105811, -0.000812729, 0.0143394554, -0.03220658, 0.0137859508, 0.0157933272, 0.00168173097, 0.00478596846, -0.0120073566, -0.0291069541, 0.00310515985, 0.020147562, 0.012974144, -0.0328265056, 0.0143394554, -0.000598707295, -0.000140797696, 0.000846400566, -0.00758670084, -0.0176678617, 0.0168708153, 0.000259224587, 0.0145608569, 0.00378966052, -0.00220110267, -0.00458670687, -0.00902581215, 0.00853872858, 0.052693624, 0.000351475319, -0.00953503698, -0.000455949281, -0.000701566867, -0.025505485, -0.00608854881, 0.0239851922, 0.0122139985, 0.0124206394, -0.0166051332, 0.0046900278, -0.00678227469, -0.0221106578, 0.00374722504, 0.00946123619, 0.0208412874, 0.0107675064, -0.00545755401, 0.00526567223, 0.00297231879, 0.00648338208, -0.0216826145, 0.00429888442, -0.00957193691, -0.00169741362, -0.00910699368, 0.0441917963, -0.0108560668, 0.0330626667, -0.00328781642, 0.0124870604, -0.000504150288, 0.0198966395, -0.00711068697, -0.00528043229, 0.00338744721, -0.0077121621, 0.00494832965, 0.0178449843, 0.0121918581, 0.00287453318, -0.0120811574, 0.0122730387, 0.00115959183, -0.024664158, 0.0202804022, 0.0239113923, 0.00573430629, -0.0117195342, -0.000851474353, -0.00787452329, -0.011490752, 0.00522139203, 0.00491511961, -0.00933577493, 0.0014861594, 0.0260368492, -0.00372139481, 0.0033745321, 0.0184206273, -0.0321180187, -0.007210318, 0.0174759813, -0.00076568115, 0.0104575437, -0.0196309574, 0.00242803944, 0.0097342981, 0.00645386195, -0.00993356, 0.0183025468, -0.0253136028, -0.0147527382, -0.00684869522, -0.0113357715, 0.00623246, -0.0344796367, 0.00340774236, -0.00787452329, 0.015601445, -0.0189077128, 0.0119040357, -0.00936529506, 0.026450133, -0.00709961727, 0.0347157978, 0.0621696189, 0.020059, 0.0284427479, 0.0174759813, 0.0173431393, -0.0243541952, -0.0293873958, 0.00640589138, -0.0101402011, -0.00116881693, -0.000885607093, 0.0111438893, 0.00870109, -0.000141604891, 0.0185682289, -0.0116604939, -0.0136235896, 0.0228929445, 0.00460515684, 0.0192471948, 0.0323541798, -0.0346567594, 0.0224944204, 0.00188929518, 0.00133210071, -0.00464205723, 0.00383763085, -0.0145239569, 0.00216420251, -0.0143394554, -0.0273209792, 0.00210700696, -0.0201328024, -0.00559777487, 0.00687452545, -0.00592618762, -0.0324722603, 9.95731461e-05, -0.0012195548, 0.00462360727, 0.00020410477, -0.0202066023, 0.0171660185, -0.0350995623, 0.023955673, -0.0118154753, -0.021328371, -0.0139556918, -0.0292840749, 0.0166936945, 0.00649445225, 0.00647969218, -0.0202656426, 0.0265386943, -0.00363098923, 0.00782286283, -0.0202361234, 0.00734684896, 0.0325608216, 0.00393726164, 0.00312914513, -0.00421770383, 0.000382840575, 0.0387600698, -0.00111162139, -0.0129298642, -0.0103320833, -0.012737982, 0.00625829026, 0.0181992259, 0.00534316292, -0.0092250742, -0.0102287624, 0.00650921231, 0.0302877631, -0.0126937022, 0.0216235742, -0.00841326732, -0.0110700894, -0.0301106423, -0.0012333924, 0.00161254301, -0.000539205561, -0.0175940618, 0.00901105255, -0.00235608383, -0.0189224724, -0.0207527261, -0.00458301697, -0.0107232258, -0.0440441929, 0.0148339197, 0.0122804185, -0.00909223314, -0.00681917462, -0.0110774692, 0.00679703476, -0.00994832, -0.00874537, -0.0099926, -0.0368707776, 0.0313800126, 0.00814020541, 0.0322951414, -0.00186162, -0.0165460929, -0.00698153628, 0.00693356572, -0.02109221, -0.00888559129, -0.0160442498, 0.0193209946, -0.00624722, -0.00353504834, -0.00858300924, -0.00417342363, -0.00870847, -0.00813282561, -0.0100221206, 0.00696677621, 0.0166198928, 0.0125387209, 0.0197195187, 0.0314980932, -0.00241143443, -0.0113579109, 0.00590404728, 0.0103247026, -0.00326198619, 0.0183911081, 0.0159261674, -0.00794832408, -0.0117785744, -0.028132787, -0.0192471948, -0.0194685962, -0.000914666103, 0.0126272812, -0.0187453516, 0.0126199014, -0.00737636909, 0.0135719292, 0.0261401702, 0.00752766058, 0.0328560248, 0.023114346, 0.00609961897, 0.00271401671, -0.0121180573, -0.01859775, -0.0246789176, -0.0164132528, 0.00381549075, -0.000278136, -0.00816972554, -0.00790404342, -0.00047140129, 0.0232619476, 0.0284575094, 0.00890773162, 0.0159114078, -0.00395202171, -0.00402582251, 0.00204243138, -0.0323837, 0.00448707584, -0.030022081, 0.00405534264, -0.00952765625, -0.00736898929, -0.00625091046, 0.00620663, 0.0369593389, 0.00322693097, 0.000351475319, -0.0061660395, 0.00197785581, -0.0120811574, 0.0104132639, 0.0185829885, -0.0226125009, -0.0189962722, 0.0151069816, 0.00743172, 0.00660515297, 0.0350700431, -0.0113431513, 0.00554980477, 0.00428412436, -0.0109889079, -0.0327969827, -0.0174169391, -0.0222287383, -0.0146346577, 0.0203689635, -0.00288560311, -0.0120221162, 0.0141549539, 0.00635792129, -0.00466419756, -0.00832470693, 0.0107453661, 6.58439676e-05, -0.0143763553, -0.0128929634, 0.00842802785, -0.0175645407, 0.0188929513, -0.0302139632, 0.00307563972, 0.0165903736, -0.00148246938, -0.00656087277, -0.0131807858, 0.0143689755, 0.0209298488, 0.00435423478, 0.00345202279, 0.0055830148, -0.0082066264, 0.00549076404, 0.00974905863, 0.0106863258, -0.00833208673, -0.00837636739, 0.00328228134, 0.00154612248, 0.0030627246, 0.019306235, 0.00190774538, 0.00140313373, -0.00318818563, 0.0140590128, 0.00129889045, -0.00932839513, 0.0110110482, -0.000261761481, -0.00629888056, 0.00635054102, -0.0299630407, -0.0109815281, -0.023955673, 0.0163099319, 0.000559962, -0.0234390683, -0.011557173, -0.00371401478, -0.0139704524, -0.000415128336, -0.0010073781, 0.0249150805, 0.00769740203, 0.0169593766, 0.0213136114, -0.00594094768, -0.00187730254, 0.00159593788, 0.00406272244, 0.0129003441, 0.00676382426, -0.0098154787, -0.0022638333, 0.014590377, 0.00443541585, -0.00282656262, 0.0110110482, -0.0241475534, -0.00924721453, 0.00540958345, 0.00696308585, -0.00220663776, -0.0190257933, 0.0267748553, 0.00459777704, 0.00799260382, 0.00715496764, 0.0138449911, 0.0248560403, 0.00254243053, 0.00128320779, -0.0108044073, 0.0316161737, 0.0119409356, -0.00300552906, -0.0177121423, -0.00819924567, -0.0131955463, -0.00127767283, 0.0194095559, 0.0056974059, -0.00496308971, -0.0427748226, 0.0148191592, -0.0131143657, 0.00535423309, 0.00022578369, 0.0213578921, -0.0111955497, 0.010309943, 0.00179427688, -0.00884131063, 0.00453135651, -0.00482655875, -0.0138892718, 0.000425737177, -0.00555349467, -0.00866419, 0.0199704412, -0.0200885218, 0.0092250742, -0.011490752, -0.0103394631, -0.0213431325, 0.0114095714, 0.00985238, -0.0132545866, -0.0133210067, -0.0295645185, -0.00876013, 0.0151586421, -0.0220368579, 0.0398228019, 0.0135350293, -0.00537268305, 0.00929149427, 0.0143615957, -0.0179187842, 0.0273505, 0.00192066049, -0.011726914, 0.00369740976, 0.00428781426, 0.00819924567, 0.0177269019, 0.00646124175, 0.00788928382, -0.0185682289, -0.0175202601, -0.0160442498, -0.0144870561, 0.0115128923, 0.0317342542, 0.0186420307, 0.0415349752, -0.00304611959, -0.0026162311, 0.0192914754, -0.0107306065, 0.0234538279, 0.00134132581, 0.0071365172, 0.0173578989, -0.00597046781, 0.012804403, 0.00581179652, 0.0284870286, -0.00398523221, -0.0157195255, 0.00819186587, -0.00133394578, -0.0328265056, 0.00648707198, -0.00442065531, -0.000425737177, -0.00794094428, -0.0124575403, 0.00377305527, 0.000234432198, -0.00532471295, -0.00375645026, 0.00702581648, 0.00803688448, -0.00214759726, -0.0183468275, -0.0224206205, 0.0112103103, -0.0254169237, -0.0142656546, 0.0162656512, -0.0342139564, 0.00986713916, 0.00538375322, 0.0150479414, 0.00326567632, 0.00536899315, 0.00743909972, -0.000668817898, 0.0132103059, 0.0185239483, 0.0182582662, 0.00729887886, 0.00665681344, 0.0268929359, 0.00890773162, -0.00620294, -0.012634662, -0.0114464723, -0.00497785024, -0.00262545608, 0.0192914754, 0.0191586334, -0.0210184082, 0.00134040322, 0.0092176944, -0.0183468275, -0.00508855097, -0.0185091887, -0.0134538477, -0.00267527159, 0.0235571489, -0.0165460929, 0.0101918615, 0.00765312137, 0.00724352803, -0.000154750625, -0.00805902481, -0.00223615789, -0.0145091964, -0.0330921859, 0.00299261417, 0.00177490432, -0.00414021313, 0.0103763631, -0.00642803172, -0.00257748575, 0.0207379665, -0.00334316678, -0.0299778, 0.00152121473, 0.00138099364, 0.0135202687, 0.0129889045, -0.00745386, -0.0121401977, 0.0236457102, 0.00696677621, -0.00403689267, -0.0531069078, 0.00584131712, 0.0191143528, -0.0066715735, 0.0128486836, 0.0133800479, 0.014354215, 0.0449002795, -0.0035645687, 0.00204427633, 0.0107232258, -0.008287807, -0.0172693394, -0.00862728897, 0.000377766788, 0.00416604336, -0.0185682289, 0.0123394588, -0.0236604698, -0.00623615, -0.0153062427, 0.00506272074, -0.00129612291, 0.00380811072, -0.0118966559, 0.0158671271, 0.024664158, -0.0170036573, 0.0140590128, -0.0107084662, -0.00832470693, 0.0243689567, -0.00102398323, -0.0224058609, -0.0141918538, 0.0136900097, -0.00590404728, -0.00584500702, 0.00347785302, -0.0239113923, 0.0202804022, -0.00883393083, 0.00490773935, -0.00199446105, -0.0022638333, -0.0310257692, -0.0120073566, 0.00480441842, 0.00510700094, -0.0215645339, 0.00390774151, -0.00412176317, 0.01000736, 0.00384132098, -0.00198892597, -0.0205165651, 0.00969001744, 0.0125461007, -0.0141770942, 0.0144796763, -0.0171364974, -0.0288117509, 0.0174464602, -0.0143689755, -0.0285313092, -9.75839885e-06, 0.00172508892, -0.00696308585, 0.0219187755, -0.00814020541, -0.0295940377, 0.0174021795, 0.0231881458, -0.00584500702, -0.0103173228, -0.00843540765, -0.00857562851, 0.0245608371, -0.000987083, -0.026450133, 0.0180663858, 0.00336715207, 0.00605902867, 0.00219741277, -0.0191438738, 0.0153948041, -0.00221401779, 0.0104427841, 0.00273246691, -0.008221386, 0.000167319784, 0.00728780869, 0.00290774344, 0.0046974076, -0.00539851328, 0.0208855681, -0.021933537, 0.0144132562, -0.0107675064, -0.0255202446, 0.00571216596, -0.00325276121, -0.0187010709, 0.00166143582, 0.00493356958, -0.00211254205, 0.00117711944, -0.000133302325, -0.00554980477, 0.00351106329, -0.0167232137, 0.00176844676, 0.00486714905, 0.00376752019, 0.00857562851, 0.0077490625, -0.0169741362, 0.0180221051, 0.00439851545, 0.024324676, -0.00579334656, 0.00553504471, 0.0107232258, 0.0118154753, -0.0077490625, 0.0104280235, -0.00369925471, 0.0036088489, 0.0132619664, -0.015970448, -0.00512914127, -0.00399261201, -0.0135128889, -0.00927673467, -0.0082066264, -0.0020922469, 0.0202066023, -0.014051633, 0.0093062548, 0.014723218, -0.00348338811, 0.010073781, -0.0188191514, -0.0061660395, -0.00750183035, -0.00892249215, -0.0139556918, 0.0138523718, -0.0117785744, -0.0115055125, -0.0351586044, 0.0152767226, -0.0231733862, -0.0125165805, 0.00774168223, -0.0144722965, 0.00772692217, -0.00576751633, -0.00853872858, -0.0337711498, 0.00292619341, -0.00258855592, -0.0132767269, -0.0137711903, -0.0197195187, -0.00238191406, 0.00836160686, -0.00231918367, 0.0104944445, 0.0097269183, 0.0236014295, 0.0113579109, 0.000934961252, 0.0097195385, -0.0268781763, -0.0141106732, -0.00513283117, -0.00900367275, -0.0266272537, 0.00463098707, 0.00694094598, 0.00757932104, -0.00388191128, 0.0152176823, -0.0140590128, 0.00229335343, 0.0221254174, 0.0221401788, 0.00712175714, -0.0420368165, 0.00165497826, 0.0171660185, 0.026450133, 0.00903319288, 0.0160294883, -0.000794740161, 0.0130774649, -0.00114852178, -0.00358855375, -0.02109221, 0.00119372457, 0.0130184246, -0.00938005559, 0.000720939541, -0.0143615957, -0.00321955094, -0.0234095473, -0.0342434756, -0.00649076235, -0.0128560634, 0.00664205337, 0.00213837228, -0.000794278865, 0.00635792129, 0.00474537816, 0.00395571161, -0.0168855749, 0.0166198928, 0.0258302074, 0.0148781994, 0.00231180363, 0.0166936945, 0.000574260892, -0.0120442566, -0.00129889045, 0.00787452329, -0.00895939209, -0.0356014073, -0.0030590347, -0.0103320833, 0.0253136028, 0.0183468275, -0.0102878027, 0.00815496594, -0.0338892341, -0.000109951354, 0.00114021916, 0.0225829817, -0.00657563284, -0.00352951349, 0.0169593766, -0.0103911236, 0.0369888581, 0.00139114121, -0.0317932963, -0.0115793133, -0.0104058841, 0.0072509083, -0.0150036607, 0.00850182865, 0.000146332735, 0.0176973827, 0.00663836347, 0.00403689267, -0.0307010468, -0.0325017795, 0.0203394443, 0.00350552821, -0.0067453743, 0.0385534316, 0.0102582825, 0.0234538279, 0.00481179869, 0.00819186587, -0.00536899315, -0.0300811213, -0.0124132596, -0.0255645253, -0.0251512416, -0.00759408111, -0.0166494139, -0.0199261606, -0.00905533321, -0.00149446202, 0.000630995084, 0.00148339197, -0.0142804151, 0.00587452715, -0.00129704538, -0.0100959213, 0.00510331104, 0.0295940377, 0.00174630655, 0.00436530495, 0.00394464191, 0.00774168223, -0.0112398304, 0.0212988518, -0.00346678286, 0.0151069816, 0.0100959213, 0.0040664128, 0.0257859267, -0.0255792849, 0.015498125, 0.0114095714, -0.00783024263, -0.0030811748, -0.00535792299, -0.0203099232, 0.00801474415, -0.0118523752, 0.0124870604, 0.0136162098, 0.000189805898, 0.0207674876, -0.007210318, -0.00381549075, 0.00786714349, 0.0318818577, -0.0236604698, 0.00832470693, 0.00409224303, -0.0219040159, -0.0197638, 0.00155257992, -0.01610329, -0.00778596243, -0.0308781676, 0.0189815126, -0.00320479088, 0.0115866931, 0.0030442744, 0.00218080753, -0.00182287465, -0.0378449447, -0.00322324084, 0.0225977413, -0.0020516566, 0.00488190912, 0.0134464679, 0.00378597039, -0.00257748575, 0.00796308368, 0.00490035955, 0.0219187755, 0.00345202279, -0.0129593844, -0.00835422706, 0.0208265278, -0.0153062427, -0.0201770831, -0.00943909585, 0.019778559, -0.00785976276, -0.00520663196, -0.0162508897, 0.00252582529, -0.00349076814, 0.0270110164, -0.0122361388, 0.00244648964, 0.00229519838, 0.00451659644, 0.0240589939, 0.0067527541, 0.00749814045, 0.00907747261, -0.0145018166, 0.00599998841, -0.00602212828, -0.00538744312, -0.00798522402, -0.0117121544, -0.00584131712, -0.0030221343, 0.0190110337, 0.00540220365, 0.0144280158, 0.0233357474, 0.0185239483, -0.00890773162, -0.0015987053, -0.00423615426, 0.0272324197, -0.0197638, 0.0143615957, 0.00855348911, -0.00865681, 0.00633578096, -0.0191733949, 0.0071365172, 0.00493356958, -0.00923983473, -0.0150331808, 0.0112988707, 0.00554242451, -0.000687268039, -0.00739481952, 0.0193357561, -0.0165608525, -0.0103247026, -0.00704795681, -0.00802950468, -0.00153505232, 0.00692618592, -0.0142066143, -0.00406272244, -0.0419482589, -0.0270700585, 0.00486345915, 0.00342988246, 0.0210036486, -0.0307305679, 0.00999998, -0.0110479491, 0.0173874199, -0.00760146091, 0.0122508984, 0.00648707198, 0.0050811707, 0.00103413081, -0.00155903748, 0.0134686083, -0.0256678462, -0.0174759813, -0.00496308971, 0.00484500872, -0.000668356603, 0.0239851922, -0.00923983473, -0.00472323783, 0.00067343039, -0.000742157223, -0.00801474415, -0.00402951241, 0.012804403, 0.00352582335, 0.016811775, -0.0195866767, -0.00877489056, -0.00939481519, 0.0135055082, -0.00764574157, -0.00227305829, -0.00178505189, -0.0266272537, -0.0124796806, -0.0116752535, 0.00856086891, 0.012332079, -0.0115424125, 0.00502582034, -0.0112472102, 0.0163837317, -0.00995570049, 0.011726914, 0.00949813612, 0.00881917123, -0.0319999382, 0.0167970154, 0.0256088059, -0.00710330717, -0.0140737733, -0.00650183205, 0.0388191119, -0.002619921, -0.0103394631, 0.000229127778, 0.0016356057, 0.0134612285, -0.00679334439, -0.000229819663, 0.00029427986, 0.0126125216, 0.00584131712, -0.00645017205, 0.00878227, 0.00126383512, 0.0129962843, -0.0180368647, -0.0116826342, -0.00283578783, 0.0164132528, 0.00322139589, -0.00539113348, 0.00623246, 0.000187384314, -0.00172416633, -0.0103616035, -0.00294095371, -0.0102509027, -0.00346309296, 0.0315276124, -0.00985238, 0.0221549384, -0.0188781917, -0.00101568061, 0.0112029305, 0.000369464222, 0.00658301311, 0.00225829822, -0.012737982, -0.00711437734, -0.00939481519, -0.0106199058, 0.00265313126, 0.0046125371, -0.0138449911, -0.00971215777, -2.39419496e-05, -0.0120516373, -0.000826105417, 0.0169888958, 0.0184058677, -0.0114981327, -0.00839850772, -0.00419925386, -0.0145460973, -0.01610329, 0.0149224801, 0.0174759813, -0.00757194078, -0.00890035182, 0.0240737535, -0.0018606974, -0.0110479491, 0.00977119897, -0.0071697277, -0.00702950638, 0.000652674, 0.00853134878, 0.00992617942, 0.0108044073, 0.0102656623, 0.0148634398, -0.00421770383, -0.00552397454, -0.0101402011, 0.0067010941, -0.007210318, -0.0158080868, -0.0196014382, -0.0249741208, 0.0153800435, -0.0120368768, 0.0186272692, -0.0108634476, -0.00933577493, 0.00281364773, -0.00391143141, -0.0026383712, -0.00620663, -0.012568241, 0.00943909585, 0.00498154, -0.0342434756, -0.00726197846, 0.00153966493, -0.00952027645, 0.011018429, -0.017623581, 0.0163689721, 0.0193800349, -0.00585238682, -0.0142804151, 0.000322877604, 0.00429519452, -0.00643172162, 0.0122066177, -0.000924813678, -0.00952027645, -0.00336530712, -0.00847230852, 0.0222139787, -0.00350921811, 0.0293578766, -0.00497416, -0.011859755, 0.000505072821, -0.0318228155, 0.00254058535, -5.70801458e-05, 0.00328966137, 0.0159852076, 0.0217564143, -0.00825828593, -0.00739481952, 0.0098080989, -0.000659131561, -0.0333578698, 0.0112693505, 0.00714758737, -0.0184206273, 0.010848687, 0.0194243155, 0.0176678617, -0.00970477797, 0.00809592474, -0.0109962886, -0.0241180342, -0.00819186587, 0.00224722805, 0.00788928382, -0.00661991304, 0.0152472025, -0.00795570388, 0.00451290607, 0.00545386365, 0.0364279747, 0.00214944221, 0.00264575123, -0.00762360124, 0.00690035569, -0.00273615704, 0.0205018055, -0.000377536169, -0.0146715576, -0.00585238682, 0.0030442744, -0.0123173194, -0.0116973938, 0.0153948041, 0.00438375538, -0.0199999604, -0.00547969388, -0.00138376118, -0.00387084112, 1.84933906e-05, 0.011859755, 0.0172103, 0.00476751849, 0.00450552627, 0.0161918495, -0.00219741277, 0.0345386788, -0.0241180342, 0.015062701, -0.00649445225, -0.0061660395, 0.0149667608, -0.00431364449, -0.0141032934, 0.0192471948, 0.0072140079, 0.00647231191, -0.00940219592, -0.0137638105, 0.00732470909, -0.0209298488, 0.000193149986, -0.00430626469, 0.00921031367, 0.0102656623, 0.0253874045, -0.0137711903, -0.0156457257, 0.0233062282, 0.014118054, 0.012162338, -0.0192767158, 0.0139335524, 0.03120289, -0.00462360727, 0.0100295, 0.0188191514, -0.00037430739, 0.0166346543, 0.00507010054, -0.0129593844, 0.013579309, 0.0265091732, 0.00187361252, 0.0269224569, -0.0126199014, -0.0219040159, 0.00869371, 0.0163246915, -0.000857470615, 0.0114981327, -0.00776382256, 0.00476751849, -0.0116678737, 0.00743541, -0.0100811608, -0.0177121423, 0.00490773935, 0.0183320679, -0.000524445495, 0.00254612043, 0.0368412547, -0.0213136114, -0.0126199014, -0.00101383566, -0.00436899532, -0.00536899315, -0.00840588752, 0.000477858848, -0.026686294, 0.0281770658, -0.000834408, -0.00652397238, -0.00398523221, 0.00794094428, 0.0114021916, 0.00691880565, -0.0158376079, 0.0182139874, 0.00826566666, -0.0106346654, 0.0222582594, 0.00887083169, -0.00141789392, 0.0129077239, 0.0127232224, -0.0149889, 0.0252250433, 0.0172250587, 0.00756456098, -0.0208708085, -0.00627674069, 0.00397416204, -0.0115866931, 0.00976381823, -0.0028099576, 0.00492987968, 0.00800736435, 0.0051549715, 0.013815471, -0.0146936979, -0.0135866888, 0.0056641954, -0.0628781, 0.00925459433, 0.00117619697, 0.0167232137, -0.0111217499, 0.0193800349, 0.0247379597, -0.0255645253, 0.042686265, 0.0157933272, 0.00848706812, 0.0155719249, 0.00661622314, 0.00415866356, -0.0127970232, 0.009298875, 0.00998522062, -0.00449814601, -0.0151734017, 0.0013099605, -0.0123246992, 0.00280811265, 0.00687452545, 0.00629888056, 0.00512545137, 0.0107896468, 0.00450552627, -0.00950551685, -0.00382656069, -0.00750183035, 0.00704426644, 0.00243172958, 0.00855348911, -0.0306420065, 0.010952008, 0.00202767132, -0.00587083725, -0.000775828725, -0.0112841111, -0.0171217378, 0.0124501605, 0.0143468352, 0.00627674069, -0.0189224724, -0.0234243087, 0.00860515, -0.0018431698, -0.0185387097, 0.00251291017, 0.0199409202, -0.00451659644, -0.00545017375, -0.0114243319, 0.00881917123, 0.00128228532, 0.00280811265, -0.0247527193, 0.00907747261, 0.0152176823, -0.000109605411, -0.0157195255, -0.0257711671, -0.0071291374, 0.00711437734, 0.00740588969, -0.008221386, -0.00914389361, -0.00615496933, -0.0150922211, 0.0166051332, -0.0103837438, 0.00807378534, -0.0202213619, 0.0103542237, -0.00933577493, -0.00935791526, -0.00536530325, 0.0199852, -0.00292065856, 0.0040701027, -0.0045756367, 0.0032712114, 0.0117342947, 0.0237490311, 0.0241475534, -0.000769832463, -0.0199409202, 0.00328597147, 0.0076309815, 0.0174464602, 0.0017619892, 0.0142287547, -0.00744648, -0.00216235733, -0.00377674541, 0.00599998841, -0.00610699924, -0.0112693505, 0.00376198534, -0.000789205078, 0.0320294574, 1.18916972e-07, 0.00863467, 0.0116383536, 0.0145387165, -0.00598153798, 0.02850179, -0.018833911, -0.0103173228, 0.00136346591, 0.0198818799, 0.00155442499, 0.00383394072, 0.0228929445, 0.0163984913, -0.00409593293, -0.0151586421, -0.0121992379, -0.00420294376, -0.0164280124, -0.00923983473, -0.0133062471, -0.0152176823, -0.00526567223, -0.000886990863, 0.00403320231, -0.00711068697, -0.00303135929, -0.00729518849, -0.014051633, -0.0205165651, -0.00737636909, -0.00176752417, 0.00062546, 0.0113283908, -0.0100811608, -0.00768264197, 0.00970477797, -0.00809592474, -0.00814020541, -0.00158025522, 0.000523522962, 0.0133210067, 0.00752028031, -0.0397342406, -0.0170036573, 0.00714389747, -0.00653504254, 0.0229077041, -0.0260811299, -0.00813282561, -0.0101844817, 0.000512452854, -0.0170774572, -0.0192767158, -0.0134981284, -0.00966049731, -0.0117711946, -0.00382287079, 0.00785976276, 0.00728042843, 0.00643172162, 0.0295940377, -0.00095202768, 0.0138597516, 0.00783024263, 0.026346812, 0.0121401977, 0.0164280124, 0.0109962886, 0.00595201785, 0.00389667135, -0.00175091904, -0.0240589939, -0.0057010958, -0.0305829663, 0.00467895763, -0.0248560403, 0.0135940695, 0.0041475934, -0.00470478786, -0.00199077092, 0.0146420375, -0.00510331104, 0.01489296, -0.0237490311, -0.00459039677, 0.0153652839, 0.0200294815, 0.00839850772, 0.00878227, 0.0249888804, 0.00294279866, 0.00563098537, 0.00867894944, -0.0214021727, -0.00534685282, -0.0194243155, 0.0158818886, 0.00677858433, 0.00938005559, 0.00313468021, -0.00319741061, -0.0167527348, -0.0134317083, -0.00652766228, 0.0182877872, -0.00359408883, -0.0166051332, 0.0234243087, 0.026819136, -0.00858300924, -0.00136807852, -0.00748338038, 0.00452397624, 0.00363467913, -0.00273800199, -0.0101992423, -0.0131807858, 0.0169003364, 0.0254316851, -0.000952950155, 0.010612525, 0.0139925927, 0.0238966327, -0.0187158305, 0.0256826058, 0.00191328034, -0.0159409288, 0.00417711353, 0.0146198971, -0.00547969388, 0.00743541, 0.00397416204, -0.00522877183, -0.00878227, 0.012332079, -0.0107010864, -0.0017841293, -0.00384870102, 0.0127896424, 0.00169556867, 0.00120294967, -0.00347785302, -0.0155866854, 0.0252398029, -0.0118080946, 0.0144722965, 0.00264206133, 0.00733577879, -0.00285977288, -0.0188486706, 0.00342988246, 0.0127601223, 0.0071771075, -0.0102656623, -0.0204280037, 0.0179483034, -0.0163246915, -0.00824352633, -0.0170184169, -0.0191291142, 0.0157638062, -0.0146346577, 0.00243172958, 0.00374353514, -0.0125903813, -5.72242898e-05, -0.00900367275, -0.00678596459, 0.00352213322, -0.00882655103, -0.00636530109, -0.00468264753, -0.00695939595, 0.0326493829, 0.0157638062, -0.00244279974, -0.0143025545, -0.0188191514, 0.00298707909, -0.00969001744, 0.00241327938, 0.0018431698, 0.0147010786, -0.0102361422, -0.00253505027, -0.0222435, 0.000273984711, -0.00210147188, 0.00459408714, -0.00664574327, 0.00932839513, -0.00743172, -0.0298449602, -0.0140590128, 0.00550183421, 0.0140737733, 0.00546124391, -0.0208855681, 0.00857562851, -0.0192914754, -0.00710330717, -0.0189815126, 0.0144501561, -0.016915096, 0.00816234574, -0.0293431152, 0.000773983716, -0.0174907409, -0.0301106423, 0.0308191273, -0.0224944204, 0.01000736, -0.0141549539, -0.00134224829, -0.0244427565, -0.00256272568, 0.0207970068, -0.00479703862, -0.0147527382, 0.0364279747, 0.0194243155, -0.00375645026, -0.00505903084, -0.00278597232, 0.0432176292, 0.00423615426, -0.018095905, -0.0282508675, 0.00120294967, 0.0128117828, -0.000209293867, -0.00109224883, -0.000955717696, 0.00825090613, -0.00627305033, -0.0251512416, -0.000898522208, -0.0192324352, -0.00487083895, -0.00455718674, 0.0152914831, -0.00884131063, 0.00551659428, 0.00385239092, -0.00448338594, -0.01980808, 0.0256235655, 0.0212545712, 0.00730256876, 0.00542065362, -0.00871585, 0.034332037, -0.0116014536, 0.004110693, -0.00636161119, -0.00611068914, 0.0119483164, -0.00265497644, -0.0122877983, 0.0193505157, -0.00220294762, -0.0302877631, -0.000241005066, -0.00547231408, -0.00491142971, 0.00639482122, -0.0170184169, -0.0066715735, -4.17434603e-05, 0.00501844054, 0.00535792299, 0.0617563352, 0.00607747864, 0.0211660098, -0.0097342981, -0.00696308585, -0.00733946916, 0.0077490625, 0.034066353, -0.0236752313, -0.00342803751, 0.0109667685, 0.0227896236, -0.0072140079, 0.000387222477, 0.0200294815, -0.018833911, 0.00613282947, 0.000594094803, -0.00436530495, 0.00640589138, -0.00874537, -0.0221254174, 0.0098819, -0.0110996095, 0.0158818886, -0.0102656623, 0.00608854881, 0.0102140019, -0.0184206273, 0.0123615991, -0.00287822308, 0.0175497811, 0.00159501529, 0.00422877399, -0.0135424091, 0.00794832408, 0.000673891685, 0.00682286499, 0.0076752617, -0.0187896304, 0.000799813948, 0.0308191273, -0.00143726659, -0.00358486385, -0.000411668938, -0.0051955618, -0.00575644616, -0.0124132596, -0.00783762336, -0.0212545712, 0.0293283556, -0.0273505, 0.0102582825, -0.00428781426, 0.0115793133, -0.00472323783, 0.0265534539, -0.00162176799, 0.0218449757, 0.0234981086, -0.00138283859, 0.00545017375, -0.0235423893, -0.00296309381, -0.00188099267, -0.0383467898, 0.00514021143, -0.00563836517, 0.0201328024, 0.00459039677, 0.00110608642, -0.00582655706, 0.00224353792, -0.0110996095, -0.00295017869, 0.022169698, -0.00656825257, 0.0102804229, 0.00687452545, -0.0161770899, -0.0215940531, -0.00231364858, 0.00116512692, -0.0265682135, -0.0020959368, -0.00391881168, -0.0142951747, -0.00460515684, -0.0189962722, 0.0175940618, 0.0123615991, 0.0197047591, 0.0112914909, -0.0133579075, 0.00497785024, 0.00653135264, -0.00571585586, 0.00975643843, 0.0162361301, 0.00587083725, 0.0178745035, -5.31306614e-05, -0.00715127727, -0.0118892752, -0.00552028418, 0.0215054937, -0.000725090853, 0.00650183205, 0.00203874148, 0.00960145704, 0.00245202472, -0.0119114155, 0.00144833664, -0.00138929614, 0.00908485334, 0.00507010054, 0.0130922254, 0.0236014295, 0.00890035182, -0.0123025589, 0.0117859552, -0.0067453743, 0.000121425037, 0.000559962, -0.00274169212, 0.00567895547, 0.0116973938, -0.00487821922, 0.0443098769, -0.0138597516, 0.00170571625, -0.000829334196, -0.00399999227, 0.000411438319, 0.0361327715, 0.00438744528, -0.0116531141, 0.0131365051, 0.00620294, -0.0115055125, -0.00177951681, 0.0150405606, 0.00865681, 0.0135571687, -0.00705164671, 0.00326936622, 0.0159556884, 0.0113062505, 0.0420958586, 0.0097342981, 0.0157490466, -0.029682599, 0.00309409, 0.00527305249, 0.00547969388, 0.011490752, 0.00590035738, -0.0208708085, 0.0112250699, -0.0196161978, 0.00148984953, -0.00594094768, 0.00108948129, -0.00285977288, 0.0010839462, -0.00529519236, -0.0122213783, 0.00833208673, -0.00556456484, 0.0156162055, 0.0131512657, 0.0243541952, 0.00851658825, 0.00394095154, -0.00735791912, -0.00276383222, -0.01115127, -0.00443910575, 0.0132545866, -0.0131291253, -0.015970448, -0.00262545608, -0.00207010657, 0.0492102355, 0.00959407724, -0.00221217284, 0.000801658956, -0.0201032814, 0.00847968832, -0.000250230136, -0.0300958827, -0.000306272472, -0.0098819, -0.00744278962, 0.0208708085, -0.0165903736, 0.0163394511, -0.0175350215, 0.0142730344, 0.00335977203, -0.000342711515, -0.00589297758, 0.0178745035, 0.0023044236, 0.0143689755, 0.0295940377, -0.00517711183, -0.00280626747, -0.00731732883, 0.0235866699, -0.00985975936]
24 Nov, 2021
jQWidgets jqxScrollView currentPage Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that are present at the bottom of the jqxScrollView widget. The currentPage property is used to set or return the current page displayed element. It accepts number type values and its default value is 0. Syntax: Set the currentPage property. $('selector').jqxScrollView({ currentPage: Number }); Return the currentPage property. var currentPage = $('selector').jqxScrollView('currentPage'); Linked Files: Download jQWidgets from the link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> Example: The below example illustrates the jqxScrollView currentPage property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView currentPage Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired-300x121.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring-300x115.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade-300x126.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg-300x110.png" alt=""> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0], currentPage: 2 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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 currentPage Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-currentpage-property?ref=asr3
PHP
jQWidgets jqxScrollView currentPage Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxScrollView currentPage Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0254979618, 0.04060895, -0.0125655951, 0.0414892025, 0.00942603, 0.00764352, 0.0210086778, 0.0362663753, -0.0182945672, -0.00215294934, -0.0153163821, 0.0114506092, 0.00193288631, -0.0242509376, 0.0137612699, -0.00776822213, -0.0345058702, -0.00615809485, -0.0356501974, 0.0332148373, -0.0147148762, 0.00126169424, -0.0659602061, 0.0237374566, -0.0360023, 0.0192335024, 0.00369522371, -0.00616543042, -0.0113625843, -0.00916929, -0.032041166, 0.0219622832, 0.0100495415, 0.00120759546, -0.0421640612, -0.0325986594, 0.0258207209, 0.00988082681, -0.0122061586, -0.0240748879, -0.00929399207, 0.0205538794, 0.0160059128, 0.0332441777, -0.00422520889, 0.00779756391, -0.00614342419, 0.00733543187, -0.0382029302, 0.0132624609, 0.0132111125, 0.0137025863, 0.0300312582, 0.0360903256, 0.00131671, -0.0324812941, 0.0128076645, 0.0143260984, -0.0240895581, 0.000427518127, 0.0462132208, -0.046037171, -0.006429506, -0.0255713146, 0.00038992404, 0.0215515, -0.0383202955, 0.0261728205, -0.0423987955, 0.00360903237, -0.00767286168, 0.0176637191, 0.0303393453, 0.0304273721, -0.00208509644, 0.00408583554, -0.0169888604, 0.0297378413, 0.016739456, -0.0104970029, -0.0280213505, 0.00215111533, -0.0445407405, 0.0221970174, 0.0257326942, 0.0048377174, 0.0314249918, -0.0554852076, 0.0615589432, 0.00762884924, -0.0169155058, -0.00476436317, -0.00401981687, -0.010203586, 0.0215661693, -0.0109664705, 0.00867781602, 0.0125949364, -7.96582e-05, 0.0135045303, 0.0220649783, 0.0222557, 0.0164166968, -0.0291363355, 0.020715259, 0.00379975373, 0.03653045, 0.0165634044, 0.0177810863, -0.0306621045, 0.045098234, -0.00697599584, -0.00612508552, 0.00524483388, -0.0383496396, 0.0231506228, -0.0174436569, -0.00785624795, 0.0242069252, -0.016534064, 0.00581699749, 0.0166220888, 0.0178397708, 0.0373226777, -0.0114946216, 0.016020583, 0.00776088703, 0.0219622832, 0.0225931294, -0.0211407151, 0.010408978, 0.0320118256, -0.00123143557, -0.0106950598, 0.0502623804, 0.0177957583, 0.023062598, 0.00447828136, -0.0384670049, 0.0127929933, -0.000981114, -0.0145755028, 0.0248964559, -0.0137539348, -0.0188667309, 0.0204951968, 0.0379388519, 0.0298552085, -0.0173262898, -0.0204805266, -0.0137392636, -0.0173116196, -0.0223877374, 0.00422154088, 0.0553971827, 0.00649185712, 0.0115899825, 0.0375867523, -0.0112672234, -0.0168274809, 0.00481937872, -0.0103502944, 0.0142527437, -0.00751148211, 0.0179718081, 0.00557492813, 0.0311022308, -0.0134605179, -0.0634955, 0.0249111261, -0.0175903663, -0.00606640195, 0.000554742059, 0.00846508797, 0.0120961275, -0.0109958127, 0.00758483633, -0.0453036278, -0.0154484194, -0.00849443, -0.0108564394, -0.0390831828, 0.011428603, -0.0072657452, -0.00536586856, -0.0294444244, 0.0150376353, 9.84552462e-05, -0.0237521287, -0.00170823873, -0.0166220888, 0.00975612458, 0.0488539748, 0.063964963, 0.0125802653, -0.0359142758, 0.00133779936, 0.00207959488, -0.00235100603, -0.00505778, -0.0108931167, -0.012448228, 0.00285348296, 0.0284614749, 0.00753348833, 0.0469174236, -0.0199230332, -0.00693565095, 0.0371759683, 0.0105996989, -0.00315240189, -0.00758483633, 0.0360609815, -0.0187346935, -0.0118687283, 0.0224024095, 0.00311572477, 0.00123968802, 0.0181918703, 0.0152430274, -0.00401614886, 0.028270755, -0.00865581, 0.00377041195, -0.0791639835, -0.0464186147, -0.00712637184, -0.00933800451, 0.0174289867, -0.013988669, -0.0358555913, -0.000546031224, 0.00536220055, 0.0313076228, 0.0171942525, 0.0462425612, -0.019600274, 0.016739456, -0.0319238, 0.0307501312, 0.0101962499, -0.0302806627, -0.00374290417, 0.0113845905, 0.0134825241, -0.00192004931, -0.0431910232, 0.00792960171, -0.0151256602, 0.00655787624, 0.00865581, 0.00897856895, -0.0164753795, -0.0153310522, 0.00199340354, 0.00678527448, 0.0119054057, -0.00328260567, 0.00881718937, 0.0542235114, 0.0240162034, -0.00364937726, -0.0195562616, 0.00354484748, 0.0297378413, 0.0165193919, 0.0238254834, -0.0295764618, 0.0170328729, -0.0390245, 0.0394059382, -0.0323052406, 0.0513480231, 0.0181625299, -0.0413131528, 0.0100275353, -0.037968196, -0.0305740796, 0.0103796357, 0.0275665522, -0.0167687964, 0.0284027923, -0.00911794137, 0.0439245664, -0.0127709871, 0.0135852201, 0.0296058021, -0.00750414701, -0.0109151229, 0.0188373886, -0.0301926378, -0.0415185429, -0.00704201451, -0.0136585739, 0.0237521287, 0.00435357867, 0.00298185297, -0.0136072263, -0.00676326826, -0.0273758322, -0.0154777616, -0.0250871778, -0.0230039135, 0.00378875062, 0.0128956893, 0.0156244701, 0.0288429186, -0.041019734, -0.00523749832, -0.023165293, 0.073295638, -0.0591822639, -0.00576931704, -0.0428389236, -0.00692098, -0.0166514311, 0.00867048092, 0.00952872634, -0.0132184485, 0.00233083358, 0.0238254834, -0.00266459561, -0.00948471297, 0.0128956893, 0.0170182027, -0.0153897358, 0.00572163705, 0.0117220199, -0.00695765717, -0.00301853032, -0.036941234, -0.00501376763, 0.00252338848, -0.00336329546, 0.0301632956, -0.00443426846, -0.00629380066, 0.00814233, -0.0155071029, 0.00292133563, -0.00770953903, 0.0217862334, 0.0158005208, 0.00517514721, 0.0274198446, -0.0491180532, -0.0127489809, -0.0177370738, 0.0502036959, -0.00504677696, 0.00139648281, 0.0380562209, 0.0512013137, 0.00640383223, 0.0121107977, 0.0314249918, 0.0185146295, -0.0342124552, -0.0404329, -0.0551331043, 0.00356318592, 0.00135705492, 0.0142527437, 0.0297231693, 0.0206125639, -0.0181772, -0.019600274, -0.0173116196, -0.010108225, 0.00120851235, 0.00340914191, -0.0101742437, -0.0199523754, 0.0435724668, -0.0260994658, 0.014494813, -0.020509867, -0.0155217741, -0.0178837832, 0.00971211214, -0.0161966328, 0.0444820598, -0.00692831539, 0.0335669369, -0.00325876568, 0.026642289, -0.00331561523, -0.0278012864, -0.000461444521, 0.0170182027, -0.0404329, 0.0321291909, 0.00152393593, -0.0316010416, 0.00900057517, -0.0118320519, -0.00209793355, -0.00200807443, -0.00187145208, -0.0381735861, 0.0340657458, 0.000760134135, 0.032862734, 0.00403815508, -0.00683295494, -0.000375940872, -0.026026113, -0.0308968388, 0.000398864096, 0.0375574119, 0.00367688527, -0.0183239095, -0.0109811416, 0.0240015332, 0.0334202275, 0.0428976044, 0.00509445742, 0.0414011776, -0.0199670456, -0.0102255922, 0.0214047898, -0.0191161353, -0.0302219801, 0.024382975, -0.0624391958, -0.0101155601, -0.0372639932, 0.0197323114, 0.00798095, 0.0274638571, -0.0025618996, 0.0121768173, 0.00679627759, 0.0105263451, 0.00898590405, 0.046946764, 0.0446287692, -0.0251605306, -0.021947613, -0.041430518, 0.00541721657, 0.0141720548, 0.0147295473, 0.0100202, -0.0192188323, 0.0103282882, -0.045215603, -0.014795566, 0.0126976324, 0.0241042282, -0.0123968795, -0.0421347208, 0.0122061586, -0.0114726154, -0.00173391274, 0.00795894396, -0.00533285877, -0.0126242787, 0.0214928146, -0.00773888081, -0.00988816191, 0.00659822114, -0.00695765717, -0.00883186, 0.00269393739, -0.0217275489, -0.00230515958, 0.0140106753, -0.0134385116, 0.00514947297, -0.0130790751, -0.0107097309, 0.0354741476, 0.067544654, 0.00522282766, -0.0166661013, 0.0178104285, 0.00488173, 0.00206309021, 0.00745279901, 0.0508198738, -0.0169595182, -0.0103723006, 0.0132624609, -0.0147368824, -0.0224610921, 0.0199817158, -0.0243096221, -0.0320705064, 0.01265362, 0.0142820859, 0.0169301759, -0.0317770913, -0.00863380358, -0.0241629127, -0.00755549502, -0.0126682911, -0.0326573439, 0.0249551386, 0.0296498165, -0.0112965647, -0.000938935264, -0.0102916108, 0.0220649783, 0.0213754494, -0.00988816191, -0.0213461071, -0.0200110581, 0.0322465599, -0.00993951, 0.00579132326, -0.00574364327, -0.0528444499, 0.0162993297, 0.00840640534, -0.0304860547, -0.0134605179, -0.0117513621, 0.00459564803, -0.0331854932, 0.0285348296, 0.00645884778, -0.00437191734, -0.00872182846, 0.0218302459, 0.027053073, -0.0276545789, -0.0170622151, -0.0074087861, 0.0154190781, 0.00424721511, 0.030016588, 0.0173262898, 0.0355915166, -0.00285898452, -0.00366954971, -0.00928665698, -0.0185146295, -0.00254172715, 0.00544289034, -0.0137319285, 0.0235173944, -0.0126902973, -0.0156391412, 0.0195415914, 0.0194095522, -0.0142013961, -0.0115753114, 0.0089418916, 0.0200550705, 0.0300459284, -0.00982947834, 0.0283294376, 0.00166606, -0.00520082098, -0.00867048092, 0.00295067742, 0.00401614886, -0.00128003291, -0.0287989061, 0.00243903114, -0.00475336, 0.0391712077, 0.015815191, 0.00907392893, -0.0175610241, 0.0070823594, 0.0277866162, -0.0455970429, 0.0210673604, 0.0388777889, -0.00448194891, 0.00692464784, 0.0129176956, 0.00414085109, 0.0202164501, 0.0530791841, -0.0227104966, 0.0247790888, 0.0345352143, 0.00519715343, -0.0334202275, 0.0327453688, 0.00557126058, -0.00318174367, 0.00529618189, -0.0190427806, -0.0221970174, -0.0514947325, -0.0203484874, 0.0208913106, 0.0254686195, 0.0189400855, -0.00137997814, 0.0128223347, 0.0127636511, -0.0181478579, 0.0323639251, -0.00813499372, -0.0423694551, 0.0406676345, 0.0151843438, 0.0263195299, -0.00345132081, -0.0243096221, -0.0109151229, 0.0170035306, 0.0152576985, 0.0260407832, 0.0118027097, -0.0168421511, 0.0234587118, 0.0616176277, -0.01511099, -0.0211407151, -0.0140473517, -0.00861179736, 0.0198056661, -0.0115092928, 0.00673759403, 0.0167834684, -0.00495875208, 0.0141647188, -0.00583533617, 0.00269210339, -0.00414818665, -0.00900057517, -0.0213020947, 0.011025154, -0.0277719442, 0.00692098, 0.00160279183, -0.0149716167, -0.00910327118, 0.0200257283, 0.00324959634, -0.016944848, 0.0117220199, -0.0423107706, 0.00922063831, -0.00177609141, 0.0331561528, -0.0360023, 0.0688356906, -0.0131524289, 0.00737944432, -0.00590869039, 0.0255273022, 0.017355632, -0.00576198194, -0.0261434801, -0.006480854, 0.00199523754, 0.0110324891, 0.00329727656, -0.00143774459, 0.016431367, -0.00278563029, 0.00178159296, 0.0103502944, -0.0194975771, -0.0245590266, 0.0323932655, 0.0129983854, 0.0125582591, -0.03653045, 0.0100275353, 0.0158005208, -0.0196882989, 0.0299432334, -0.0101962499, -0.0231212806, 0.00772420969, 0.0193361975, -0.00980013702, 0.000651478069, -0.0333322026, -0.018573314, 0.0233120024, 0.0467413701, 0.00927198585, 0.0210086778, 0.0176490489, 0.0040931711, 0.00634148065, -0.0280066784, -0.0360316411, -0.0183532499, 0.0276105665, 0.00490373606, 0.0041445191, 0.0278599709, 0.0168421511, 0.0400514565, 0.00867781602, -0.0357675664, -0.00681094872, 0.0252778977, 0.0137319285, -0.0470641293, 0.0293417275, -0.0395526476, -0.0363250598, 0.00587934861, -0.000622136344, 0.0404035598, 0.00715204608, 0.0455383621, 0.00159912417, 0.00172199262, 0.0340364054, 0.0201724377, -0.0285641719, 0.070420146, -0.000693656795, -0.0126169426, -0.0122355, -0.00746746967, -0.0115239639, -0.00330461212, 0.0262901876, -0.00848709513, -0.0104676615, -0.0103869718, -0.0178104285, -0.00281680585, 0.0297818538, -0.0620284118, 0.0154630905, 0.00325509789, -0.0166220888, 0.00480470806, 0.0394059382, -0.0121181337, -0.011428603, 0.0341244303, 0.0101522375, 0.0156831536, 0.00380708906, 0.0111718625, -0.0205685515, -0.0438658819, 0.0257767085, 0.00502843875, 0.00615809485, -0.0416359119, 0.00129653758, -0.00140290137, 0.0078195706, -0.0202898048, -0.00929399207, -0.0154044069, 0.0344765298, -0.0329507589, 0.00553091569, -0.000444022851, -0.0071337074, 0.0043279049, 0.0381735861, 0.00849443, 0.0286375266, 0.0191748198, -0.0215221569, 0.00832571555, 0.0142160673, 0.0194682367, -0.0392298885, -0.0100495415, 0.0161232799, -0.0517881475, -0.0191454776, -0.022153005, 0.0623805113, -0.00602238951, -0.0110838376, 0.0115899825, -0.0166807715, -0.00531452056, 0.00238584913, -0.0110618314, 0.00459564803, 0.0166661013, 0.0144801429, -0.0227104966, 0.0343591645, -0.00244269893, 0.0176197067, 0.0169155058, 0.0202017799, 0.0130423978, 0.00540254544, 0.00229415623, -0.00757750124, -0.000449982908, -0.0173996445, -0.0201284252, -0.0116706723, 0.0409903936, 0.0145608326, -0.0323639251, 0.0109591354, 0.00152760372, 0.0202457923, 0.0382029302, 0.0123161897, -0.00989549793, -0.0152430274, -0.00155511161, -0.0289602857, -0.0141573837, -0.0228425357, -0.000515772554, -0.0126609551, -0.0175903663, -0.0197763238, -0.0222703703, 0.00887587294, -0.0335082524, 0.0116119888, -0.00408583554, -0.0234587118, 0.00967543479, 0.0151403314, -0.0446287692, -0.0100568775, 0.0281974, 0.0102329273, 0.0189547557, 0.0384376645, 0.0171795823, 0.000257886277, 0.0158592034, -0.0489713438, 0.0353861228, 0.0229745731, 0.00759950746, 0.00897123292, 0.0274345148, -0.0282560829, -0.00485238805, 0.00676693581, -0.00871449336, 0.00562994415, -0.00550524145, 0.0255859867, 0.0334495679, 0.0160352532, 0.0226811562, 0.0246910639, 0.0177224036, 0.0230332557, -0.00749314344, 0.0192188323, 0.0190867931, -0.0216982067, 0.0113699194, -0.0104163131, 0.0080029564, 0.0232386477, -0.0110178189, -0.0249551386, -0.00564094726, 0.037850827, -0.000316111255, 0.00722173275, -0.0170328729, -0.00808364619, -0.0128810182, -0.00451862626, 0.00155144383, -0.0200404, 0.0184119344, 0.0302219801, 0.00622044643, 0.00285715074, -0.0282414127, -0.0260554533, 0.0254539493, -0.0147368824, -0.0272291228, 0.0312195979, 0.00480104, -0.0377921462, -0.0164460391, -0.0157711785, 0.0174583271, -0.0112965647, -0.0382029302, 0.0290042982, -0.0352687575, -0.0102255922, 0.00623511709, 0.00319274678, -0.0430443138, 0.0078269057, 0.0237227865, -0.00670825224, -0.0286668669, 0.00357418926, 0.0274198446, 0.00295617897, -0.00362003571, 0.0184266046, -0.0319824815, 0.00136989192, -0.0207739435, 0.0185879841, 0.0278452989, 0.00655054068, 0.00562627614, 0.0278452989, 0.014194061, -0.0267303139, -0.0252192151, -0.000531818834, -0.00985882059, -0.0126756262, 0.0318651162, 0.0181478579, -0.014084029, 0.00990283303, -0.0159325581, 0.0297671817, 0.0239135083, 0.0040785, -0.0125582591, -0.0397873819, -0.0241189, -0.0271117557, 0.0252925698, -0.0121988235, 0.0214781445, 0.0360316411, -0.0314543322, -0.0349166542, -0.0236200914, -0.0188227184, -0.00176967296, -0.0107317371, 0.0322465599, 0.0605026409, -0.00508712186, -0.0106583824, 0.000327114423, 0.00440492667, -0.0054502259, -0.0402568504, -0.000761967967, -0.00659822114, 0.00987349171, 0.0119640892, -0.011428603, 0.0313369632, 0.0141647188, 0.0284908172, -0.0244416595, -0.0195856038, 0.0303100049, -0.0188080482, -0.00667891093, -0.0175756942, -0.0543995611, -0.016431367, -0.000557034335, 0.0224757642, -0.0214928146, -0.0214781445, 0.0123381969, -0.00336879701, -0.0129250307, 0.00532185566, -0.0125949364, 0.0571283437, 0.026128808, 0.0107610784, 0.0284908172, -0.0120301079, -0.0370292589, -0.00395746529, -0.00583533617, 0.0121914875, -0.0264222249, 0.0343885049, 0.00355401682, 0.0166954435, -0.00206125644, -0.0048377174, -0.023986863, -0.00187053508, 0.0200257283, 0.0294150822, -0.00292683742, 0.0170475431, -0.0187493637, 0.023884166, 0.0332148373, 0.0499102771, 0.0166661013, -0.0332441777, -0.00314139877, -0.0356501974, 0.0197029691, 0.0189254135, 0.00275628851, 0.0273024775, 0.0227398388, 0.02326799, 0.0229158886, 0.0188227184, -0.0148029011, -0.0494701527, -0.0204805266, 0.0123675382, 0.00396846887, 0.0526977442, -0.00355034904, -0.0100935539, 0.0075921719, 0.0110324891, -0.00600771885, 0.0194095522, 0.00072116463, 0.0391125232, -0.0150523065, -0.00878784712, 0.00114982889, -0.00714837853, -0.00667891093, 0.0020520871, 0.0150523065, 0.0234000273, 0.00204658555, 0.0039171204, -0.00164863828, -0.00492207473, 0.00963875744, -0.013673245, -0.0381149054, -0.00518615032, -0.0255273022, 0.0359436162, -0.0177517459, 0.0114506092, 0.00864113867, 0.00533285877, 0.000812857528, -0.00575097837, 0.00442693336, -0.0186026543, -0.0259527583, 0.0102109211, -0.0209353231, -0.00174583273, 0.00022350144, 0.00646618335, 0.00330277812, 0.000538237335, -0.0215661693, 0.0136585739, 0.00396480085, 0.00456630625, -0.000957273878, 0.00306254276, -0.0135412076, -0.00299835787, 0.00118192146, -0.016534064, 0.00369705772, 0.00511646364, 0.0106290411, -0.0134971943, 0.0144654717, -0.0185146295, 0.0169888604, 0.0373813622, -0.010922458, 0.00935267564, -0.00919129606, 0.0285935141, -0.0218595862, 0.0187346935, 0.00304603809, 9.3985218e-05, -0.00936734676, 0.00478270138, 0.00350633636, 0.0328920782, 0.000531818834, -0.0135265365, 0.00216578622, -0.00101320655, 0.0259821, 0.0171649102, -0.00433524046, -0.00725840963, -0.0228718761, -0.0213461071, 0.0808071196, -0.00292683742, -0.0183385797, -0.00821568351, 0.00784157682, -0.0303393453, 0.0105776927, 0.0127123035, 0.0429856293, -0.0304273721, 0.0227691811, 0.0115533052, 0.0160059128, 0.00254906248, -0.0237374566, -0.0184119344, -0.00167522929, 0.000779389637, 0.00906659383, -0.0145241553, -0.0165780764, 0.0246617217, -0.00284431363, 0.0161379501, 0.00851643644, 0.0203631595, -0.0256886818, -0.027551882, -0.0152576985, -0.00427655689, 0.0456850715, 0.0228278637, 0.028168058, -0.00639649667, -0.0120961275, 0.0235027242, -0.0278306287, 0.00698699895, -0.0336256213, -0.0184412766, -0.0171208978, 0.0191161353, -0.00743446033, 0.0128443409, 0.0194829069, -0.0284468047, -0.0190134402, -0.0059196935, -0.0127343098, 0.0142600797, -0.0257620364, -0.00529251387, -0.0170475431, 0.00652486645, 0.00807631, 0.025204543, -0.00295801298, 0.000858245534, 0.0322172157, -0.0230332557, -0.0122721773, 0.00183477486, -0.00474235648, 0.0209646635, -0.0153163821, 0.0237227865, -0.036941234, 0.00148909271, -0.00101870811, 0.041019734, 0.0280506909, 0.00456630625, -0.00817900617, -0.00869248714, -0.010717066, -0.00264075538, -0.0171208978, 0.0187053513, 0.00969010592, -0.0335082524, -0.0414892025, 0.0183972623, -0.00176600518, 0.00471668271, -0.0215955116, 0.0142820859, -0.0272291228, -0.0281387158, -0.0118540581, 0.00651753135, -0.0175023396, 0.00521915965, -0.0112452172, 0.00324776256, -0.00187236897, -0.018470617, 0.0209793355, -0.00341464346, -0.0117733683, -0.0315716974, 0.00354851526, 0.00702000828, 0.0224464219, -0.0118907355, -0.0023271658, -0.00853844266, 0.0127123035, 0.014898262, 0.00030602506, 0.0252192151, 0.0265982766, -0.0125802653, 0.00665323669, 0.00348616391, 0.00898590405, 0.00135613792, 0.0160792675, -0.000221323731, 0.00883919559, 0.0253805947, -0.0285054874, 0.0205685515, 0.0129763791, 0.00436825, 0.0257033538, 0.0211260431, -0.0301339533, 0.00946270674, 0.00825236086, 0.00644784467, -0.0489126593, 0.0107830847, 0.00438292045, 0.0117733683, -0.00650286, -0.00561527302, -0.018279897, 0.0351807326, 0.0110985087, 0.0064075, -0.00397213642, -0.00229965779, -0.0318357758, 0.0041445191, 0.00889054313, 0.0389658138, -0.000968277, 0.00764352, 0.0120887915, -0.0238254834, -0.0262901876, -0.000854119367, 0.00555292191, 0.00211627199, 0.0132037774, -0.019600274, -0.015609799, 0.0124628991, -0.00990283303, -0.0229012184, 0.0207739435, 0.037850827, 0.00764352, -0.0011250719, -0.0120887915, -0.0119127417, -0.00201541, -0.0152430274, 0.0145094842, 0.0103943069, 0.0176197067, 0.00675960025, 0.0204658546, -0.00698699895, 0.0133431507, 0.00265542627, 0.0299872458, 0.010108225, 0.0178691112, -0.00250321603, -0.0120741213, 0.00913994852, -0.0160792675, 0.00284981518, 0.0169595182, -0.0107317371, -0.00670091715, -0.00697232783, 0.0158738755, 0.00590135483, -0.0279186536, 0.0174436569, 0.0119494181, -0.00389511441, -0.00103704666, -0.00250321603, -0.00261508138, -0.0399047509, 0.00110214867, 0.0115899825, -0.0160352532, -0.00758483633, 0.0138199534, 0.0157124959, 0.00363103882, 0.00310472143, -0.0304273721, -0.0272731353, 0.0163726844, -0.0132551258, 0.00538787479, -0.0256153289, 0.0138272895, -0.00142032304, 0.0209499933, 0.0118027097, -0.00574364327, -0.00222080201, -0.0163873546, 0.00845041778, 0.00525216945, -0.001045299, -0.0209940057, -0.00273244828, -0.00831104442, 0.00849443, -0.0263195299, 0.0117073497, -0.00115899823, 0.0158885457, -0.0105190091, 0.0333322026, 0.0241482425, 0.00469100848, 0.0209940057, 0.0231066104, -0.000105504143, -0.0187200215, -0.0205538794, 0.0389658138, 0.0128810182, 0.0169155058, 0.000230149177, 0.0273758322, 0.00370072527, -0.000106478379, 0.0232093073, 0.00256923493, -0.0126462849, 0.0150669767, 0.0125215827, 0.0105776927, 0.0157124959, -0.0205245391, -0.00223363889, 0.0137906121, -0.0320998505, 0.00252155471, -0.018881401, -0.0133798281, 0.00231249491, 0.036119666, 0.00171007251, -0.0187200215, -0.0344471894, 0.015815191, -0.00686963182, 0.00301302853, -0.0295471195, -0.0119274119, -0.0206712466, 0.0123748733, -0.00249221292, -0.0029396743, 0.0341244303, -0.00683295494, 0.0153163821, -0.00585734239, -0.00231799646, -0.00893455558, -0.0207592715, 0.0238694958, -0.0270677432, 0.0150376353, -0.00892722048, 0.0237667989, -0.00617276598, 0.0299725737, -0.00299285632, 0.0101889148, 0.0254246071, 0.0107390722, -0.00737944432, 0.0050321063, 0.0210526902, 0.0367065, 0.016020583, -0.00293417275, -0.00429122755, -0.0371172838, 0.00506878365, -0.0125362528, 0.00122501713, -0.0230039135, -0.00862646755, 0.000557034335, 0.0203778297, -0.0309555233, 0.00930132717, 0.000595545396, -0.0157858487, -0.0175316818, -0.0265542641, 0.00933066942, 0.0211993977, 0.0209646635, 0.00139098126, -0.00564828236, -0.00578032, -0.0381735861, 0.000446315185, -0.00430956623, -0.0480910912, -0.01010089, -0.0173849743, -0.0239575207, 0.000422016572, -0.0349753387, -0.00395379774, -0.00481571117, 0.00285348296, -0.0191601478, -0.00655787624, 0.0224757642, -0.0229452308, 0.0166661013, 0.000570788281, -0.00810565241, 0.0102109211, 0.000728958519, -0.00784891192, 0.0107684135, -0.00592336105, 0.0177810863, 0.00846508797, 0.00298368698, -0.0136879161, -0.00618010154, -0.0066128918, -0.0166514311, -0.00836239196, 0.0108050909, 0.0432790481, 0.00634881621, 0.00288099097, 0.0335082524, -0.00727308076, -0.0140693579, 0.000590043783, 0.0189987682, 0.00945537165, -8.13201405e-05, 0.0221823454, 0.00301853032, 0.0108050909, -0.0156538114, -0.00666424, 0.00567028904, 0.00643684156, 0.0344765298, -0.0204658546, -0.000311985088, -0.0121768173, 0.00317440811, 0.0102989459, 0.0133651569, 0.000100002566, 0.0119054057, 0.0215808414, 0.00784891192, -0.0239721909, -0.0254539493, -0.0188960731, -0.0139153143, -0.00024252772, 0.0272291228, -0.0107023949, -0.0100935539, 0.00119750923, 0.0148615846, 0.0238694958, 0.0128956893, 0.0224904343, -0.00475336, 0.00436825, 0.00300936098, 0.00838439818, -0.0124922404, -0.0459784865, -0.0059196935, -0.0101155601, 0.00827436708, 0.0017247434, 0.00662756292, 0.0344178453, 0.0182212126, 0.00244636647, -0.0248671137, 0.0130864102, -0.00150559738, -0.0162553173, 0.0176197067, -0.0196736287, -0.0071740523, 0.0267009716, 0.00984414946, -0.00950672, 0.0530205034, -0.00219696178, -0.0134165045, -0.00982947834, -0.0117000137, -0.0188667309, -0.0242215954, 0.00449661957, -0.0247057341, 0.0207005888, -0.000215363689, -0.0125949364, 0.024471, -0.00999819394, 0.00869982224, 0.0121034626, 0.0234587118, 0.0150523065, -0.00365487882, -0.00517147966, 0.00132496236, -0.0132257836, 0.0226371419, -0.0375574119, 0.011633995, 0.0056849597, -0.0112672234, -0.00882452447, -0.00649552513, -0.0141060352, 0.0191308055, 0.00927198585, -0.00334679079, -0.00127728202, -0.00836972799, -0.0132404547, 0.00921330228, 0.0195856038, 0.00242069247, 0.0038437664, -0.00341280969, -0.0022097989, 0.00946270674, 0.0145094842, 0.0166954435, 0.00062442862, 7.90851209e-06, -0.00221163267, 0.023062598, 0.010819762, 0.00368055305, -0.0157711785, -0.00061663473, 0.010408978, -0.0316010416, 0.00209609955, -0.00895656273, 0.0225051045, -0.000930682931, -0.0266569592, 0.0215955116, -0.0178104285, 0.0117953746, 0.00101320655, 0.00220429734, 0.00120667857, -0.00488539785, 0.0213754494, -0.00787825417, 0.0119054057, -0.00437558489, 0.0194975771, -0.0106877247, 0.00377407973, -0.00123693724, -0.00429856312, -0.00650286, 0.0301046129, 0.0155071029, -0.0223290548, 0.00469834404, -0.0204365123, -0.00352650881, 7.59904869e-05, -0.00448194891, 0.00656154379, -0.012961708, 0.0194242243, -0.00388411107, -0.00365671283, 0.000736293965, 0.00958741, 0.0209793355, 0.00625345577, -0.00626445888, -0.00197323109, 0.0149422744, 0.0126609551, -0.00836972799, -0.0128810182, -0.00985148456, 0.00181827019, 0.00645518024, 0.00872916356, 0.0170768853, 0.0256006569, -0.0513186827, 0.0236054193, -0.00436091423, -0.00420320267, -0.0158298612, 0.0211847275, -0.0170915555, 0.00527784321, -0.000325051311, -0.0115826465, -0.00445994269, -0.00690264162, -0.0239428505, -0.0118027097, 0.000433019712, 0.0111718625, 0.0290189683, -0.0175316818, 0.00242802803, -0.0327453688, -0.000949021487, -0.0123308608, -0.00629746821, 0.000835322309, -0.0221823454, 0.0050321063, -0.0256593414, -0.00952872634, 0.00497342274, -0.0366184749, 0.0289309435, 0.0154044069, 0.010203586, -0.00394279463, -0.00264992472, -0.0196736287, 0.0198790208, 0.0153310522, 0.00961675122, -0.00985148456, 0.00101412344, 0.000539612724, 0.031131573, -0.00291950186, -0.000838073087, -0.00863380358, -0.0305447392, -0.00391345285, 0.0135045303, 0.00974145345, 0.0101375673, 0.0131597649, 0.042340111, 0.000347286841, -0.0129837142, -0.00962408632, 0.00463966047, 0.0119640892, -0.0105190091, 0.00729141943, 0.0181772, 0.00608474063, 0.0103796357, 0.00395379774, 0.0182945672, -0.0226371419, -0.0154924318, 0.00481571117, 0.00353751192, -0.036941234, 0.00651753135, -0.0167101137, 0.00137906114, -0.00352467503, 0.00212360756, -0.0128736831, -0.00605539884, 0.00170365407, 0.0118100457, 0.0109151229, -0.00338163413, -0.00575097837, -0.0178397708, -0.0200697407, -0.00124885724, -0.0238254834, -0.0193068571, 0.0127416449, -0.0363250598, 0.000874291814, -0.00102879433, 0.00885386672, 0.000388090179, 0.0169301759, 0.00391345285, -0.00755549502, 0.0119860955, 0.00779022882, 0.0271557681, -0.00153952371, -0.0142967571, 0.0330094434, 0.00101045577, 0.0103649655, -0.00573630771, -0.0170035306, -0.0161379501, 0.00390244974, 0.026231505, -0.00153677294, -0.0177517459, -0.00463966047, 0.000917387428, -0.0286668669, 0.00472035026, -0.00938201696, -0.00928665698, -0.00159087183, -0.00319091277, -0.0232239775, 0.0154484194, 0.00413351599, -0.000116908443, 0.00213644444, -0.00317074033, -0.0142160673, -0.0133871632, -0.0118100457, 0.0127929933, -0.00899323914, -0.00729875453, 0.0192335024, -0.00993951, 0.0151843438, 0.0196442865, -0.00863380358, -0.0134238405, 0.00156336394, -0.000289749558, -0.00961675122, 0.0311902557, -0.00544289034, -0.0157271661, 0.00938201696, -0.00391345285, -0.00919129606, -0.0254539493, 0.00801762659, 0.0140106753, 0.000235192289, 0.00534019433, 0.0189987682, 0.00611408241, 0.0239281785, -0.0168128107, 0.00630113576, -0.0030313672, -0.0032807719, -0.00275995629, -0.0140326815, -0.0259527583, 0.00311755855, -0.0310142059, 0.0116926786, -0.0201577675, 0.00306621054, -0.00299285632, 0.0131084165, -0.00240418781, -0.00637082243, 0.00185127964, -0.00727674831, 0.0128003284, -0.0162699874, 0.0255419742, -0.00375207351, 0.00236934447, 0.04022751, 0.0050101, -0.0328040496, -0.00246287114, -0.00122410024, -0.0185146295, 0.00275445473, 0.00359986327, -0.0185439717, -0.0306034219, -0.00287182163, -0.0177077334, 0.0124262217, -0.00621311087, -0.0395819917, 0.00057216367, 0.0106877247, 0.0153310522, -0.00777555769, 0.0199670456, -0.00952139, -0.0189987682, 0.0100202, 0.00907392893, -0.0177224036, -0.00966076367, -0.00907392893, -0.0137319285, 0.00994684547, -0.00607007, -0.0403155349, 0.0115166279, -0.0149496105, -0.0115973176, -1.02939603e-05, -0.0101449024, 0.000359206926, 0.000755549467, -0.0020264131, -0.0108784456, 0.0104749966, 0.0155364443, -0.0127416449, -0.00166881073, -0.00600038329, -0.000409638, 0.00990283303, 0.00970477611, -0.00262975227, 0.0227104966, 0.000607923896, -0.000280351029, 0.0116706723, -0.0103356233, 0.00867781602, -0.000143040917, 0.00458464492, -0.00333212, -0.0134311756, -0.00971944723, 0.0182945672, -0.0022611469, 0.00414818665, 0.00232899957, -0.00634881621, -0.00258207205, 0.0133211445, -0.010306282, -0.00527784321, -0.018470617, -0.00825969595, -0.0146855349, 0.00982214324, -0.00317990966, -0.00538420677, -0.00332295056, -0.00362186949, 0.0136805801, 0.00540621346, -0.0142087312, -0.00401248131, -0.00113240734, -0.0110324891, 0.00672659092, 0.0111425212, -0.00233816891, 0.0123015195, 0.0211113729, -0.00485972362, -0.00646251533, -0.00517147966, 0.0172529351, 0.00495141651, -0.0186319966, 0.0254099369, -0.014084029, 0.00411151, -0.00836239196, 0.00770220347, 0.00442693336, -0.00310288765, 0.00134330092, -1.89546408e-05, -0.0227691811, -0.0101669086, 0.00762884924, 0.00387677574, 0.00839173421, 0.0142527437, 0.00137906114, 0.0202164501, -0.0116706723, -0.0162113048, -0.0025875736, 0.000660188845, -0.0245003421, 0.0023931847, -0.0137319285, 0.000740420131, -0.0139373206, 0.00309555233, -0.0186906811, -0.00123510335, 0.01511099, -0.00825236086, 0.007500479, 0.000638641, -0.00788558926, -0.0242949501, 0.00280213496, -0.00161287806, -0.0256886818, -0.0162113048, -0.00395379774, 0.00530351745, -0.0104383193, 0.0171649102, -0.00051989872, -0.0014900096, 0.00628279755, 0.00124702347, 0.00439759158, 0.00775355147, -0.00853844266, -0.0305740796, 0.00865581, -0.0363544, -0.0126242787, -0.00315973721, -0.0072657452, 0.0117220199, 0.00927932095, 0.000697782962, -0.00569596281, -0.00160921039, 0.0107464073, 0.0148175722, 0.00149276038, -0.0152870398, 0.0149862869, 0.0168274809, 0.0286375266, 0.00395746529, 0.00631580688, 0.00902991649, 0.0121401399, -0.000922889041, -0.0273024775, -0.013372492, -0.0132844672, -0.00262608472, -0.0180011503, -0.014186725, -0.0171062276, 0.0200404, -0.0155071029, -0.00605539884, -0.0141720548, -0.000367459288, 0.00706402073, 0.00252338848, 0.00958007388, -0.0109811416, 0.00770953903, 0.0112158749, -0.00825969595, 0.00579499127, 0.00988082681, 0.0265689343, 0.00443426846, 0.0251018479, 0.000303045032, -0.0117513621, -0.00535486545, 0.0328040496, 0.00628279755, -0.0119714253, 0.000374794734, -0.0154190781, 0.0178250987, -0.00315240189, -0.021023348, 0.0063378131, -0.0277719442, 0.00892722048, -0.008157, 0.0183092374, 0.00650652824, -0.0158005208, 0.0117000137, -0.0018549473, 0.0238548238, 0.020113755, 0.0220062956, 0.00964609254, -0.0226371419, 0.0101302313, -0.0112452172, 0.00621311087, 0.00704935, 0.00584633928, 0.0107830847, -0.0239721909, -0.0214634743, -0.0231799651, 0.0072254003, -0.0128076645, 0.00823035464, 0.0297085, 0.00839906931, 0.0233560149, 0.00477903383, 0.00777555769, -0.0139666619, -0.0131817712, -0.0129470369, -0.0252778977, -0.0180891752, -0.0136512388, -0.0175170116, -0.034799289, -0.00159270561, -0.00212177378, 0.00204291777, -0.00269577117, 0.00335962791, 0.00190537842, 0.0135852201, -0.0225197766, 0.0040785, 0.00567028904, -0.00450762268, 0.00221346668, 0.0210380182, -0.00459931558, -0.00889054313, 0.00408950308, 0.00120484468, -0.00714104297, 0.00573997525, -0.00433157245, 0.0236641038, -0.020817956, -0.00270310673, 0.0161672924, -0.0177517459, 0.00260957982, -0.0104603255, -0.0304273721, 0.0211847275, -0.00516047655, 0.00819367729, 0.0271851104, 0.00663856603, 0.00428389199, -0.0117440261, -0.0082890382, 0.0118467221, 0.00809831638, -0.014091365, -0.00922063831, -0.00127361435, -0.00231432868, 0.0128663471, 0.00175500207, -0.00663123047, -0.00538053922, -0.029796524, 0.020715259, 0.00820101239, 0.0100862188, -0.0110618314, -0.00665690424, -0.00634881621, -0.013372492, -0.0082963733, 0.0318064317, -0.0261141378, 0.00666424, 0.00833305065, 0.000550615834, -0.00359619549, -0.0207592715, 0.00928665698, 0.0106583824, -0.00574731082, 0.00292867119, -0.0205978919, 0.00649552513, -0.0156538114, 0.00176417141, 0.0130864102, 0.0102916108, 0.00387310795, -0.00031221431, -0.00823035464, -0.00762151368, -0.00201907754, 0.0209793355, -0.0142820859, -0.00382542773, -0.0209793355, -0.0114506092, 0.0198203363, 0.00127728202, -0.0146341864, 0.0125215827, -0.030001916, 0.00195672642, -0.00331561523, 0.00971944723, -0.0167981386, -0.00385110173, 0.000165505684, -0.00343298214, -0.00104804977, -0.00284798141, 0.0115606403, -0.000219719106, 0.0118613932, -0.0214928146, 0.0147515535, -0.00624978775, 0.0158445332, -0.0136439037, 0.00196589576, -0.00409683865, -0.0046139867, 0.0145975091, 0.000525858777, -0.00583900372, -0.00772420969, -0.00415552221, -0.0234587118, 0.0106950598, 0.0117733683, -0.0113405781, 0.0169741903, 0.0275372118, -0.0253805947, -0.00517514721, -0.0131597649, 0.000949938432, -0.00211627199, 0.0163726844, -0.00888320804, 0.0117807034, -0.0250431653, -0.0227838513, 0.00698699895, -0.00383276306, 0.0212580822, -0.00403815508, 0.0170622151, -0.0208766386, 0.021947613, 0.00269026961, 0.00549423834, -0.00822302, 0.022563789, 0.0162553173, -0.00370622706, 0.00160462572, -0.0155511154, 0.00060563162, -4.57031774e-06, 0.0206419062, 0.0118540581, 0.0115973176, -0.0111865336, -0.0151403314, -0.00103521277, -0.014091365, -0.0100202, 0.00458097737, 0.00822302, 0.0121328039, 0.00198056665, 0.0196736287, 0.0006340564, -0.016431367, 0.00100036955, -0.00173116196, -0.00190354453, 0.00417752843, -0.0475042574, 8.7509412e-05, -0.00417386089, 0.00706035318, 0.00714104297, -0.0143554406, 0.0180158205, -0.00710803363, 0.0190867931, -0.00265542627, 0.0038180924, 0.00702367583, 0.00266276184, -0.0136218974, 0.0155071029, -0.000392674847, -0.00608474063, -0.0320705064, -0.0193068571, 0.0295764618, 0.0208032839, -0.0179571379, 0.00282414118, 0.0259527583, -0.00180176541, 0.00705301762, -0.00924264453, -0.00332845212, 0.0293270573, -0.00673025893, -0.0114065968, 0.00906659383, -0.00307537988, 0.0204658546, -0.024808431, 0.00203558244, 0.00609207619, -0.00502843875, -0.00200440665, -0.00812032353, 0.0102475984, 0.000631764065, 0.00246470515, -0.0158738755, -0.0151403314, -0.00954339653, -0.00445627468, 0.0316890664, -0.0123895444, 0.0169741903, 0.0048890654, 0.00783424079, 0.0134825241, 0.0115239639, 0.0227104966, 0.0113845905, -0.00412251288, 0.00130203913, -0.0167981386, 0.00447461335, -0.0283294376, -0.00436458178, -0.00965342857, -0.00969744101, -2.2651011e-05, 0.000494683161, 0.00242069247, 0.0142600797, 0.0175170116, -0.00681461627, -0.0038437664, -0.00335229235, -0.0059600384, -0.0173849743, -0.00605906686, 0.0160792675, 0.00540254544, 0.00124794035, -0.0076361848, -0.0102696046, -0.00257657049, 0.0108050909, 0.00686963182, -0.00621311087, 0.00141482137, 0.00352650881, 0.0135998903, 0.0135265365, 0.00157069939, 0.00298735453, -0.00821568351, -0.0156684816, -0.0255419742, 0.0258794036, -0.0158885457, 0.00133321469, 0.00116541679, -0.0213020947, 0.00414085109, -0.00886120182, 0.0172529351, 0.000419036543, -0.00175775285, 0.00101320655, -0.010819762, -0.0114579443, -0.0134971943, -0.00974878855, 0.0154924318, 0.00468734093, -0.0221970174, -0.00602238951, -0.00817900617, -0.0104676615, -0.000755091, 0.000643684121, 0.0231506228, 0.0089492267, 0.0121034626, -0.0146855349, -0.0133358147, 0.00225747912, -0.00485972362, 0.00280947052, 0.00325326412, -0.0234587118, 0.000434624351, -0.016636759, 0.0121988235, -0.00776822213, 0.0268916935, -0.00845775288, 0.00293600652, 0.00246470515, -0.0413424931, -0.00803229772, 0.00224464224, -0.0199963879, 0.00649185712, 0.0118100457, -0.0285935141, -0.0067045847, 0.00211443822, 0.0082963733, -0.016944848, -0.00191088, 0.000504310941, -0.00909593515, 0.017854441, 0.0134311756, 0.00722906832, -0.0161526203, 0.0113772545, -0.013988669, -0.0299432334, 0.00547956768, 0.0136365676, 0.0160352532, -0.0175756942, 0.00164221984, -0.0100422064, -0.00505411252, -0.000698699907, 0.0267303139, 0.0120154377, 0.0208766386, -0.0115826465, -0.00196956354, -0.00349166547, 0.0278159585, 0.00546122901, -0.00940402411, -0.0194682367, 0.00100587111, -0.0241042282, -0.0117733683, 0.0175756942, 0.0103796357, -0.00757750124, -0.0047056796, -0.0116780074, -0.00660555623, -0.0132257836, 0.0207739435, 0.0347699486, -0.000816525251, 0.0033064459, 0.0116486661, -3.01153868e-05, 0.0240748879, -0.0172822773, 0.0302513205, -0.00111957034, -0.00560060237, -0.0184119344, -0.00626445888, -0.0122575071, 0.0167834684, -0.00531818811, -0.00583166815, -0.0149129331, -0.013064404, 0.000774804968, -0.0288429186, 0.00228498713, 0.00743446033, 0.00422154088, 0.0162113048, 0.0201724377, -0.0251018479, -0.0190574527, 0.0281240456, 0.00587568106, 0.0146195153, -0.0255713146, 0.0160059128, 0.0320998505, -0.0052154921, 0.00688063493, 0.00831104442, -0.0109444642, 0.00827436708, 0.00443793647, -0.0143260984, 0.0235907491, -0.000425684295, -0.0113625843, 0.0219622832, -0.0116780074, -0.0164020248, 0.00605906686, 0.0169301759, 0.00161746272, -0.0117880395, -0.00936734676, -0.0020264131, -0.0138492957, 0.00658355, -0.0163580123, -0.0111938687, 0.00690264162, 0.00744913099, -0.0115386341, 0.0139739979, 0.0123748733, -0.0230039135, -0.00471301517, -0.00519715343, -0.00820834842, -0.0137539348, -0.00593436416, -0.00843574665, -0.00320741767, 0.00570329838, 0.00101504044, -0.0105923638, 0.00267559872, -0.000837614643, 0.0127856573, 0.00193105242, -0.0150816478, 0.0285935141, 0.0055932668, -0.00301853032, 0.010005529, 0.0172235947, 0.00333395367, 0.00146892027, 0.00739044743, -0.00369889149, 0.003189079, 0.0307501312, -0.0111058438, -3.86829415e-05, -0.00422154088, 0.000695949071, -0.0211260431, 0.027962666, -0.00497342274, 0.0115606403, 0.00600771885, 0.000781223469, 0.0133871632, -0.0131597649, -0.00022751301, 0.0142527437, -0.0791639835, -0.00160921039, 0.0107244011, -0.00927932095, -0.0120521141, 0.0128223347, 0.0294737648, 0.00314323255, 0.0118613932, 0.00277279317, 0.0093086632, 0.022754509, 0.00743446033, -0.00231799646, -0.00702000828, 0.00728775142, 0.0212874226, -0.00691364473, -0.0100935539, -0.0108417682, -0.00783424079, 0.00124794035, 0.00181093474, -0.0127269747, -0.0140253454, 0.00856044888, 0.00157986861, -0.0136805801, -0.00898590405, 0.00495141651, 0.0196736287, 0.013878637, 0.0248817857, -0.0179864783, 0.00933800451, -0.000799562084, 0.000757841801, -0.0141207064, -0.00301669631, -0.0044195978, -0.00294517586, -0.000419724238, 0.0105483513, -0.00525583699, -0.0178250987, 0.013775941, -0.00843574665, -0.0158592034, -0.00770953903, 0.0144067882, -0.0178104285, -0.00268843584, -0.00399781, 0.00338530191, -0.0166220888, 0.0169008356, -0.0257767085, 0.00488539785, 0.0152723696, -0.00112965656, -0.0070823594, -0.0211407151, -0.0262461752, -0.00965342857, 0.00984414946, 0.0107244011, -0.00806897506, -0.0267449841, -0.00737944432, -0.00756283, -0.0167541262, 6.14342425e-05, -0.0211553853, -0.00348066236, -0.0024188587, -0.0277132615, 0.012147475, 0.0182505548, -0.00343848369, 0.004236212, 0.00807631, 0.00480837561, 0.0189694259, 0.016534064, 0.0104749966, 0.00483404938, -0.018470617, 0.0136145614, 0.0215661693, 0.0115899825, 0.00755549502, -0.00834038574, -0.0204805266, -0.0177517459, 0.0121914875, 0.0128663471, -0.0110838376, 0.0108564394, 0.014392117, 0.00171098951, 0.00940402411, 0.00378508284, 0.0126976324, 0.00387310795, 0.0440712757, -0.0132184485, 0.0184119344, -0.0030313672, -0.0254832897, 0.00387310795, 0.0317184068, -0.0118100457, -0.00896389782, 0.0120814564, 0.0191748198, 0.00555658946, -0.00702000828, -0.0113039007, 0.000983864767, 0.0106657175, -0.00947004277, -0.0170035306, -0.0164460391, -0.00908126496, -0.000625804, 0.0119347479, -0.0138126183, -0.00773888081, -0.00677793892, -0.00889054313, -0.00540621346, 0.000438292045, -0.00152668671, 0.00398680707, -0.00588668417, 0.000459381408, -0.00450028758, 0.00468734093, -0.00350083481, -0.0209793355, -0.00489640096, 0.00875117, 0.0156391412, 0.0197616536, -0.0104603255, -0.00480837561, 0.0109811416, -0.00910327118, 0.0060113864, -0.0151550025, -0.00496241963, -0.0146268513, 0.013570549, -0.0261581503, -0.0183679219, -0.0149642807, 0.00346599147, 0.00955073256, -0.00378508284, 0.0019218832, 0.0153603945, -0.00420320267, 0.0367065, -0.0107904207, 0.0212140698, -0.00487439428, 0.0163580123, 0.00897856895, 0.0114726154, 0.00746380212, -0.000723456964, -0.00370439305, 0.00055978517, -0.0268036686, -0.0108857807, -0.0104823317, 0.00630113576, -0.0224464219, -0.00793693773, 0.000876125647, 0.00444893958, -0.00513113476, 0.0135412076, -0.0109958127, -0.00281680585, -0.00931599829, -0.00131029147, 0.0113772545, 0.0273318198, 0.00290299719, 0.0202164501, 0.0343591645, -0.00952872634, 0.00611408241, -0.00188887375, -0.0273905024, -0.0206712466, -0.00755549502, 0.0105776927, 0.00770220347, 0.0182505548, 0.0116560012, 0.0025875736, 0.0101522375, -0.00846508797, -0.0148469144, 0.00511646364, 0.0144287944, -0.0225344468, 0.0194975771, 0.0335375927, -0.00646618335, -0.000205392091, 0.011025154, 0.0158738755, 0.0138566308, -0.0215808414, -0.014091365, 0.0157565083, 0.00544655835, 0.00631213933, 0.0157418363, 0.0024702067, 0.020304475, 0.0212140698, -0.00519715343, 0.00573997525, 0.0044195978, -0.0517881475, 0.0102182562, 0.0078269057, -0.00817167107, -0.000392445596, 0.00392445596, 0.00825969595, 0.00331928302, 0.00540254544, -0.00727674831, -0.00011060456, 0.0166661013, 0.0156538114, -0.0278012864, -0.00156611472, -0.0119787604, -0.00612875354, 0.0198203363, -0.011736691, -0.0032807719, -0.00121126324, -0.00189804297, -0.00758483633, 0.000766094192, 0.020304475, 0.0146415224, 0.0193068571, -0.0102182562, -0.0102182562, 0.00204291777, -0.00579865882, 0.0147662247, -0.0066128918, -0.00315240189, -0.00210343511, 0.0181625299, 0.00741978921, 0.000960024656, -0.0151256602, -0.0253952648, -0.0105630215, 0.0089418916, 0.00569963036, -0.00283881207, -0.00509445742, 0.00110398245, -0.00891254935, 0.0210967027, 0.014487478, -0.00607740553, -0.0184852891, -0.00565561792, -0.00303503498, -0.00322208856, -0.00441593, 0.0109297931, 0.0260847956, -0.010819762, -0.00875850581, -0.026847681, 0.00963875744, -0.0123675382, -0.00481571117, 0.000949021487, 0.00242069247, 0.00923530851, -0.0252338853, -0.0246470515, 0.0232093073, -0.00427655689, -0.0105336802, 0.000678985904, 0.00792226661, -0.0300752707, 0.00716304919, 0.00192555087, 0.0325399749, -0.0146341864, -0.0101595735, 0.00245003426, -0.000149230196, -0.0113552483, -0.00994684547, 0.0161379501, -0.0168568231, 0.000571246783, -0.0116193239, 0.0118100457, -0.0117000137, 0.00470934715, 0.00988082681, 0.0106217051, -0.0193215273, 0.00193105242, 0.00548323523, -0.00677427137, -0.00406382931, -0.00363470661, 0.0122648422, 0.0022097989, -0.0116780074, -0.0311609153, 0.010401642, 0.0156538114, -0.00907392893, -0.00591235794, -0.0110398252, -0.00300752698, -0.00609574374, -0.00140473526, -0.0027049405, -0.0158005208, -0.0113185709, -0.000715663075, 0.00389511441, -0.00839906931, -0.0109811416, -0.00689530605, -0.0114139318, -0.00733909942, 0.014289421, -0.0147882309, -0.00729875453, -0.00102329277, -0.00415185466, 0.030926181, -0.004236212, 0.00496975519, -0.0471521579, -0.00602605706, 0.0219769534, -0.00554925436, 0.00634148065, 0.00388411107, 0.00422154088, -0.0344471894, 0.00344581902, 0.0148322433, 0.00111498567, 0.00711903675, -0.0124335568, -0.0185439717, 0.00777555769, 0.00223363889, -0.0108344331, 0.0624978803, 0.0263928846, 0.0232826602, -0.0116413301, -0.0120961275, -0.0103723006, 0.00856778398, 0.0339190364, -0.0185879841, 0.00376307662, 0.00266826339, 0.0325399749, -0.0166220888, -0.00341097591, 0.0215221569, -0.0031487341, 0.00973411836, 0.0099615166, 0.00274895318, 0.00433524046, -0.0188080482, -0.012859012, 0.00633047754, -0.00546122901, 0.00926465075, 0.00860446133, -0.0118980706, -0.00198973599, -0.0189547557, -0.00362920482, -0.00373923639, 0.0222557, -0.00125894346, 0.00378508284, -0.00598571263, -0.000154731766, 0.0135925552, 0.0109738065, 0.016534064, -0.0148395784, 0.012448228, 0.0291510057, 0.00616176287, -0.00862646755, 0.00805430394, -0.00960941613, 0.00292133563, -0.0348873138, -4.10039174e-05, -0.0145168193, 0.0290629808, -0.0263342, -0.0141133713, -0.0223730672, -0.00814233, -0.0125655951, 0.0214194618, 0.0038437664, 0.01469287, 0.0228278637, -0.00505778, 0.0194388945, 0.00218229089, 0.00765819103, 0.0140987, -0.0105630215, 0.0109297931, -0.00533652678, 0.0212727524, -0.00426188577, -0.0119347479, -0.00821568351, 0.0198056661, -0.00430589868, -0.0177664161, 0.000174101893, -0.0198496785, -0.00561160548, 0.00663123047, -0.0212874226, -0.0232973322, 0.00358335837, -0.00242986181, -0.020715259, -0.0102329273, -0.0213461071, -0.0192775149, -0.0121328039, -0.0242215954, 0.00397213642, 0.00834038574, 0.016636759, -0.0104309842, 0.00315240189, 0.0145828389, 0.016431367, -0.00970477611, 0.00249954849, -0.0050724512, 0.00286081852, 0.0136145614, -0.0038180924, -0.00457730936, -0.0170475431, -0.0132991383, 0.0203338172, 0.00484505296, 0.0198056661, 0.0185439717, -0.00377774751, -0.0165634044, 0.00805430394, 0.0129250307, 0.0233120024, 0.0182945672, 0.00311022322, -0.00132771314, 0.00364387571, 0.00794427283, 0.00403815508, -5.53595892e-05, -0.00792960171, -0.017135568, -0.0156538114, -0.00439759158, -0.0015156836, 0.0268036686, 0.00902991649, 0.0115092928, 0.0114799505, 0.0189107433, -0.00584267126, 0.00567395659, -0.000820651418, 0.0164166968, 0.0147662247, -0.0129250307, -0.00214928156, -0.00636348734, 0.00346599147, 0.00213277689, 0.00269577117, 0.00685129315, -0.00572163705, -0.0200550705, -0.00422520889, 0.0187640339, -0.0115533052, 0.0246910639, -0.00850176532, 0.0115092928, -0.0105923638, -0.00386944041, -0.0107757496, 0.00359069393, 0.0137245934, 0.00298368698, -0.0156831536, 0.0173849743, -0.00699433452, 0.0128883542, -0.00200990844, 0.0110398252, -0.0152870398, 0.00627912953, -0.0198790208, -0.0146341864, -0.00833305065, 0.0132331187, -0.015213686, 0.00821568351, 0.024382975, 0.00155236071, 0.00231066113, -0.00658721803, -0.00101870811, 0.00551991258, -0.012044779, 0.00764352, -0.0151403314, 0.013570549, -0.0153603945, 0.0117807034, 0.0540181212, -0.014084029, -0.0205392092, -0.0111645274, -0.0220943205, 0.0349753387, -0.0161379501, -0.0367358439, -0.00440859469, -0.00421787333, -0.00983681437, 0.00631213933, -0.0040088133, 0.0281533878, -0.0148395784, -0.00509079, 0.00209059799, 0.0221823454, 0.00111681945, 0.0119494181, 0.0118980706, -0.00236200914, 0.0353274383, -0.00136439037, -0.00468734093, 0.0109811416, -0.00195305876, 0.0097781308]
24 Nov, 2021
jQWidgets jqxScrollView height Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that are present at the bottom of the jqxScrollView widget. The height property is used to set or return the height of the jqxScrollView widget. It accepts Number/String type values and its default value is 320. Syntax: Set the height property. $('selector').jqxScrollView({ height: Number/String }); Return the height property. var height = $('selector').jqxScrollView('height'); Linked Files: Download jQWidgets from the link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> Example: The below example illustrates the jqxScrollView height property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView height Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired-300x121.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring-300x115.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade-300x126.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg-300x110.png" alt=""> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0] }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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 currentPage Property/jQWidgets jqxScrollView height Property
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-height-property/?ref=next_article
PHP
jQWidgets jqxScrollView height Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxScrollView height Property, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxScrollView currentPage Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0240793452, 0.0372223668, -0.00870187301, 0.0371668525, 0.07933, -0.00593309524, 0.0375276953, 0.031115789, -0.0145725142, -0.00253631151, -0.00727931783, 0.018527912, 0.0106518138, -0.00748055754, -0.00188401795, 0.0108252969, -0.0210538134, 0.00113891147, -0.0429681, 0.00914598815, 0.0162379444, -0.0204570349, -0.0583455712, 0.016598789, -0.0398037843, 0.0213175062, 0.0249536969, 0.0250092112, -0.0229968168, 0.0104089389, -0.0333641209, 0.00706766965, -0.00089690357, 0.00979134161, -0.0525720827, 0.00863941945, 0.0108322361, 0.0178478602, -0.034196835, -0.0191524476, -0.0146974223, 0.0473537333, 0.00184064743, 0.0111930789, 0.000667906948, -0.0221641, 0.0252312683, 0.0260917414, -0.0367504954, 0.0178062245, -0.00999258179, 0.0234131739, 0.00269591529, 0.0406920128, -0.0151554151, -0.0171122961, 0.0325591601, 0.0463267192, 0.00959010236, 0.00927783456, 0.0276322626, -0.0570132285, -0.0118939476, -0.0233854167, -0.00839654449, 0.00440298114, -0.00669641746, 0.0245928541, -0.032531403, 0.0153913507, -0.00056251639, 0.0176258031, 0.0289229713, 0.0187499691, 0.0141839143, 0.0104575139, -0.0328367315, -0.0052426355, 0.00962479878, 0.0162657015, -0.026910577, 0.00577696133, -0.0577349141, -0.0125323627, -0.000704771897, 0.0077095544, 0.0179311316, -0.0321150459, 0.0356679633, 0.0106587531, -0.0302275587, 0.0161824301, 0.0134205921, -0.0178062245, -0.00603024522, 0.022802515, -0.018236462, 0.0149333579, -0.0151137793, 0.00487485295, 0.0414692126, 0.0301720444, 0.00650211703, -0.0156134088, -0.00718216784, 0.0113526825, 0.0296724159, -0.00395886647, -0.00221710396, -0.0346687064, 0.0277571715, -0.0357789919, -0.00265080971, -0.00873656943, -0.0527386256, 0.0375276953, -0.0190830547, -0.007320954, 0.0260501038, -0.0173898675, 0.00291623781, 0.0010131367, -0.0122547913, 0.0133442599, -0.00499976054, 0.0176119246, -0.0077997651, -0.017306596, 0.0467708334, -0.0479088761, 0.00133841613, 0.0255921111, 0.0152109293, 0.00841042306, 0.0141075822, 0.0363618955, 0.0295058731, 0.00336382212, -0.0396372415, 0.00121090654, -0.0387767665, -0.0131915957, 0.00146158854, 0.0031018639, -0.00948601309, 0.0540154539, 0.0163906086, 0.018625062, -0.0409973413, 0.017306596, -0.0172233246, -0.0248565469, 0.00855614804, 0.0406920128, 0.0325869173, 0.00454176683, -0.0248565469, 0.0355846919, -0.0275489911, 0.0249536969, -0.00539183058, -0.0334751494, 0.02620277, 0.00922926, -0.0161685515, -0.00348525983, 0.0155440159, 0.000752913242, -0.0447445586, 0.0207623634, 0.00170359632, -0.000712144887, 0.000355855591, 0.0148500865, -0.0409695841, -0.02815965, 0.0233299024, -0.0207346063, -0.022705365, -0.0253839325, -0.0177784674, -0.0205403063, 0.0028034742, 0.00377150555, -0.000236152802, -0.00250335, 0.0163073372, 0.0246483684, -0.018430762, -0.0451054, -0.0364174098, 0.0322538316, 0.0333363637, 0.0374444239, -0.00513854623, -0.0653958917, 0.00528080156, -0.00936110597, -0.0049477159, -0.019971285, -0.00464238692, -0.0204986706, -0.0313100889, 0.023538081, 0.00803570077, 0.0214840509, 0.0138369501, -0.0396927558, 0.065062806, 0.00650905631, -0.00795936864, -0.00479505118, 0.0438563302, -0.0177507102, -0.0134205921, 0.0133373206, 0.0116510727, -0.0118245548, -0.0172788389, 0.0181393102, 0.0188471191, -0.00120570208, -0.00461463, 0.0102077, -0.0984269306, -7.763334e-05, -0.0146974223, -0.00330136856, 0.00703644287, 0.0266468842, -0.0345021635, -0.0239960738, -0.0264803413, 0.0266052485, 0.0569022, 0.0256337468, -0.0183197334, 0.0410528556, -0.00818836503, 0.00198810734, -0.0047638244, -0.030921489, -0.0150027508, 0.0125323627, 0.0104644531, 0.0140659465, -0.0238017738, -0.00918068457, 0.00613086531, 0.00946519524, -0.00028082449, 0.0143227, 0.0246344898, -0.00556184305, 0.0449388586, 0.0118523119, 0.00675887102, -0.00291797263, -0.00259182579, 0.0085283909, 0.0273408126, 0.0156272873, -0.00744586112, -0.00266815815, 0.0254533254, 0.0412471555, 0.041136127, -0.00949295238, 0.0280347429, -0.0613988601, 0.0236629881, -0.0292005427, 0.0406087413, 0.0196520761, -0.0472982191, 0.026521977, -0.0336139351, -0.0275073554, 0.0416912697, 0.0125323627, 0.015668923, -0.0135871349, 0.0336972065, 0.0827163681, 0.00230384525, -0.0141908536, 0.0274795983, -0.0173343532, 0.00761934323, 0.0249259397, -0.0279375929, -0.0300332587, 0.0106587531, 0.0218726508, 0.0307827014, -0.00940968096, -0.0167375747, 0.00799406506, -0.00533284619, -0.0240377095, -0.0400258414, -0.012782177, -0.0243985523, -0.012782177, -0.000794115302, 0.0141214607, -0.00214077183, -0.0139965536, 0.00405254681, 0.00707807858, 0.0651183203, -0.00136183621, -0.00743198255, -0.0310602747, -0.0206513349, 0.00800100435, 0.0292560589, 0.0321705602, -0.0168069676, 0.00610310771, 0.00472218869, -0.0129834162, -0.00473606726, 0.0363618955, 0.0521834828, -0.0151137793, -0.020873392, -0.0293670874, -0.00452094898, 0.00508997124, -0.0129903555, -0.00223965663, 0.0169179961, -0.0161963087, 0.0382216237, -0.0168208461, -0.00841042306, -0.0327812172, -0.0212481134, 0.0308104586, -0.0185140334, -0.0177507102, 0.0103117889, -0.00733483257, 0.0385824665, -0.0544595681, -0.0150305079, 0.0123658199, 0.0522389971, 0.00931947, 0.0012074369, 0.0388877951, 0.0255365968, 0.0234270524, 0.0124282734, 0.0192495976, -0.00495465519, -0.0253978111, -0.0225388221, -0.0488526188, 0.00713359285, -0.00650558667, 0.0129348412, -0.0148639651, 0.0279237144, -0.0282012857, -0.0239128023, -0.0316709317, -0.0151276579, 0.000961092, 0.00808427576, -0.0367227383, -0.00611004699, 0.0343633778, -0.0229690596, 0.0076332218, -0.0261888914, -0.0206652135, -0.0248981826, 0.0211787205, -0.00684908172, 0.0559584573, -0.0170290247, 0.0320595317, -0.00522875693, 0.00657844963, -0.0143643357, -0.0388877951, 0.0303385872, 0.0301442873, -0.0652848631, 0.0255365968, 0.000797584944, -0.0380550809, -0.00208178791, 0.00218414236, 0.00300471368, -0.0260501038, 0.000279089669, -0.00110855198, 0.0121576404, -0.0314211175, 0.0173482317, -0.0266746413, 0.0298112016, -0.0217755, -0.00698092859, 0.000478377478, 0.0104713924, -0.0347242206, 0.0154468659, 0.0026421356, -0.0187916048, 0.0157383159, 0.0391098522, 0.0196798332, 0.0390265808, 0.0346964635, -0.0111930789, 0.00474300655, -0.000516543572, -0.0354736634, -0.016154673, -0.0166820604, -0.0592893176, 0.00170533115, -0.0633418635, 0.0269660912, 0.0263693128, -0.00451400969, -0.0270632412, 0.0150166294, 0.0144753642, 0.0150860222, 0.0196104404, 0.0151554151, 0.0473537333, 0.00848675519, -0.00600942736, -0.0424962267, -0.0253006611, -0.012733602, 0.01441985, 0.00642925454, -0.0113735, 0.00152837916, -0.0244124308, -0.00943049882, 0.0022205736, 0.00939580239, -0.00180595089, -0.022747, -0.019430019, 0.00383742875, 0.00829245429, -0.0143227, 0.000663569837, -0.00432664901, -0.00961092, -0.00442032935, -0.0260501038, -0.00999258179, -0.0228441507, 0.0137536777, 0.042801559, -0.0202904921, -0.0125948163, 0.0179588888, -0.0133511992, 0.0156550445, -0.0489081331, 0.0248010326, 0.00716135, 0.0513785221, 0.0106379353, -0.00177212188, -0.00311227283, -0.00643272419, 0.00768873608, -0.00239058631, 0.0633973777, 0.0104436353, 0.013809192, 0.0150721436, 0.00547163235, -0.0283400714, 0.0119425226, -0.0191663262, -0.0020262734, 0.00920150243, 0.0252312683, 0.01305281, -0.0144892428, -0.0104228174, 0.0104575139, 0.0264387056, -0.00737646827, -0.0197908636, 0.0208595134, 0.0115678012, 0.00152924657, 0.0324758887, -0.0217199866, 0.0196798332, 0.00421562046, 0.00412887894, -0.0359455347, -0.00752219325, -0.0068143853, -0.0349740349, 0.0346131921, 0.00338464, -0.0564025715, -0.0157244373, -0.0280069858, -0.0457438156, -0.0312268175, -0.0225804579, 0.0148084508, -0.0289229713, 0.0127960555, 0.0161824301, 0.00582900597, 0.00409418251, 0.0358345062, 0.0247455183, -0.0303663444, 0.0044654347, -0.0120466119, 0.0277016573, -0.023954438, -0.00542305736, 0.00956928451, 0.000680050696, -0.0190830547, 0.00974276662, -0.0259251967, -0.0076332218, -0.00128376915, 0.0157521944, -0.00935416669, 0.00535019487, -0.0372501239, -0.0161269158, 0.0114775905, 0.0113943182, 0.0213591438, -0.00238538184, 0.000338941085, 0.0305328872, 0.0441339, -0.0119980369, 0.0165432729, 0.00127856468, -0.00216852897, 0.00250161509, -0.0150305079, -0.0256753825, -0.0032961641, -0.0210260563, -0.0134344706, 0.0114914691, 0.0156134088, 0.0112902289, 0.0141075822, -0.0205541849, -0.0163350943, 0.00993012823, -0.0336416923, 0.0203182492, 0.017695196, -0.00593656488, 0.0201378278, 0.00625230279, 0.0207623634, 0.00309492461, 0.0429403447, -0.0330587886, 0.0159326158, 0.0141977929, -0.000210997867, -0.0173204746, 0.0208317563, 0.0229551811, 0.00347311608, 0.0011016127, -0.00475341547, -0.0488803759, -0.0367227383, -0.026813427, -0.00212515844, 0.0474092476, -0.0104436353, 0.00303247082, 0.00663743354, 0.00360149285, -0.0311990604, 0.00635639206, -0.00553061627, -0.0159881301, 0.0075430111, 0.0190552976, 0.0214146581, 0.0177229531, -0.0209289063, 0.010485271, 0.0206097, 0.0148778437, 0.00871575158, -0.00233160239, -0.0212342348, 0.00188575278, 0.034391135, -0.00430236151, -0.0365284383, 0.00594003452, -0.00414275751, 0.0340302922, 0.00153358374, 0.00118575164, 0.00328575517, 0.000656630553, 0.0118453726, -0.00419133296, 0.0131915957, 0.0162240658, -0.0254255682, -0.00786221866, -0.00651252596, -0.0212481134, 0.000922058534, 0.00418092404, -0.0336416923, -0.0124213342, 0.0368892811, 0.0113249253, 0.00234548096, 0.0235519595, -0.0314488746, 0.0165432729, 0.00970113091, 0.0305051301, -0.0214979295, 0.0469651334, -0.0136218313, -0.00171660748, -0.0112763504, 0.0361398347, 0.0102632139, -0.00932641, -0.00404213788, 0.00844511949, 0.0028121483, 0.0069982768, -0.00668600854, 0.0422186553, -0.00578390062, -0.0108738719, 0.00692888396, 0.0328922458, -0.0242597666, -0.0264664628, 0.0317542031, 0.0251202397, 0.0187916048, -0.0188054834, 0.0203460064, 0.03069943, 0.0250230897, 0.00532243727, 0.00849369448, -0.00619331887, 0.0215534437, 0.0269522127, -0.00273928582, -0.00634945277, -0.0130319912, 0.00209393166, 0.0111583825, 0.045632787, 0.0186389405, 0.00482627796, 0.00592615595, 0.0177368317, -0.0179311316, -0.0324481316, -0.00776506867, 0.00902801938, 0.0335029066, 0.0221918579, 0.0145308785, 0.0163628515, 0.0182919763, 0.0191524476, 0.00689071743, -0.00354077411, 0.0326701887, 0.0273685697, -0.00513507659, -0.019749226, -0.00722380355, -0.00495812483, -0.0178478602, 0.0207068492, -0.00665131211, 0.0248981826, 0.00550979842, 0.0349185206, -0.00739034684, 0.00242875237, 0.0255504753, 0.0324203745, -0.0081120329, 0.0651183203, 0.0348907635, -0.0241348594, -0.0253561754, -0.00573879527, -0.0310325176, 0.0265636127, 0.019430019, 0.0141075822, -0.00979828089, -0.0291172713, -0.00520446943, -0.0197908636, 0.0439673588, -0.0174592603, -0.0117551619, 0.0085283909, 0.000325062487, 0.00642231526, 0.0185695477, -0.0216783509, -0.0013974, 0.0520724505, 0.0134622278, 0.00206617429, -0.00343148015, -0.00052391662, -0.0183474906, -0.0477700904, 0.0155717731, -0.0020262734, -0.00104609842, -0.0334473923, 0.0103326067, -0.0214146581, -0.00207311357, -0.0200406779, -0.0105893603, -0.0150443865, 0.0342523493, -0.0351405777, 0.0212064777, 0.0176396817, 0.00639108848, -0.0109779611, 0.0243846737, -0.00607188093, -0.00293532084, 0.0430513732, -0.0412471555, 0.0124282734, 0.0229413025, 0.0241071023, -0.0320872888, -0.00858390518, 0.011831494, -0.0399703272, 0.0122547913, -0.00135923398, 0.0353348777, -0.0160991587, -0.0198047422, 0.00846593734, -0.0105616031, 0.000210781014, 0.0144892428, 0.00150148943, 0.00147199747, -0.00628352957, 0.0306716729, 0.000901240623, 0.00123345922, 0.00845205877, 0.0196520761, 0.0244124308, 0.0109085683, 0.0197353475, 0.0274934769, 0.00582206668, -0.00522181764, 0.0110334754, -0.000706073, -0.00118228199, -0.0447168, 0.00963867735, 0.0370280668, -0.021608958, 0.0012716254, 0.00211648433, 0.0386934951, 0.0317819603, -0.0175147746, -0.0187222119, -0.0121923368, 0.00909047388, -0.0136704063, -0.0149611151, -0.0263831913, 0.00850757305, -0.0282151643, -0.00968031306, -0.0202072207, -0.0134483492, 0.0152942007, -0.00184758671, 0.0252312683, 0.00447931327, -0.0376942381, 0.0229551811, 0.00585676311, -0.0240099523, -0.0351128206, 0.0215395652, 0.00011753427, 0.00642231526, 0.0283817071, 0.000304895162, 0.00980522, 0.0130597493, -0.0447445586, 0.0214979295, -0.00178860268, 0.00640843669, 0.00623842422, 0.0156828016, -0.0141145214, 0.00638414919, 0.00280000456, -0.00253284187, -0.0204709135, 0.0244124308, 0.0185001548, 0.018527912, -0.00267683226, 0.0151276579, 0.0108461147, 0.00895168725, 0.024245888, -0.0103187282, 0.0309770033, 0.0366949812, -0.0137675563, 0.0194577761, -0.0247732755, 0.0029734869, 0.0255088396, -0.00428154366, -0.0350850634, -0.00232639792, 0.0241209809, -0.0175564103, 0.0293670874, 0.00225180038, -0.0195271689, -0.0221085865, -0.0262721628, -0.0137744956, -0.000464065204, -0.00454870658, 0.0482142046, -0.0163073372, 0.00475688512, -0.0104644531, -0.0415802412, 0.022608215, -0.00568675, -0.0226359721, 0.033586178, -0.00908353366, -0.0522667542, 0.0169735104, -0.0124629699, 0.0370280668, -0.0248287898, -0.00757076824, 0.021608958, 0.0119633405, -0.0147251794, -0.00752219325, 0.021706108, -0.0201517064, -0.00984685589, 0.0248981826, 0.00130198477, -0.00146158854, 0.0114290146, 0.0253700539, 0.0228163935, -0.0238850452, 0.0136981634, -0.0234686881, 0.00535019487, -0.0167098176, 0.00693929289, 0.0292283, 0.000726023514, 0.00303247082, 0.0411083698, 0.00949295238, -0.0166820604, -0.0217338651, 0.00118488423, 0.00121437619, -0.0110751111, 0.0395817272, 0.00140347192, -0.0268273056, -0.00555490376, -0.00866717659, 0.0134761063, 0.0179727674, -0.0100411568, -0.017403746, -0.032725703, -0.0150305079, -0.0276877787, -0.00404560752, 0.0211648419, 0.0138577679, 0.0467708334, -0.0135246813, -0.0299499873, -0.00579084, -0.00129938254, -0.000634077878, -0.0204709135, 0.035612449, 0.0436342731, 0.0207346063, -0.0100480961, 0.00860472303, 0.00419133296, -0.0229551811, -0.051961422, -0.000691760739, -0.0246622469, -0.0130458707, 0.0201378278, 0.0173343532, 0.0283400714, 0.0293670874, 0.0402756557, -0.0280069858, -0.00757076824, 0.0293393303, -0.0151137793, -0.00256927311, 0.0118245548, -0.0431624, -0.00128897361, 0.0178894959, -0.006061472, 0.002688976, 0.00806345791, -0.00254498562, 0.0061794403, -0.0180421602, 0.00897944439, -0.00331698195, 0.04482783, -0.00538142165, 0.00355118304, 0.0250369683, -0.00886841584, -0.0426072553, 0.014641908, -0.0154329874, 0.0100342175, -0.00166109321, 0.0327534601, 9.15525834e-06, 0.0226776078, -0.0106379353, -0.00248947134, -0.0167514533, -0.0275351126, 0.0350573063, 0.0275073554, -0.0281874072, 0.0126503306, -0.0170567818, -0.00175303884, 0.0230939668, 0.0226220936, -0.00594003452, -0.022747, -0.0352793634, -0.0143365785, -0.00717522856, 0.0165849086, -0.00777894724, 0.0506290793, 0.0133026242, 0.00333259534, 0.0100342175, -0.00523222657, 0.00518712122, -0.0340580493, -0.00560347876, -0.0192079619, 0.00530508906, 0.0267717913, 0.000555577106, 0.00605106307, 0.00925007742, 0.0139757358, 0.00701909466, 0.0326424316, 0.00926395599, 0.0282429215, -0.0275351126, 0.00396580575, 0.0187638476, -0.0261611342, -0.0103256674, 0.0118245548, 0.0105546638, 0.0167375747, 0.00459381193, 0.00393804861, -0.0272714198, -0.0159048587, -0.00216332451, -0.00253284187, -0.013809192, -0.00403866824, -0.0310047604, 0.0128376912, 0.00368129485, 0.0127752377, 0.00282602687, -0.0063355742, 0.000148435807, 0.00316431746, 0.0113388039, -0.0201378278, -0.0158215873, 0.000162205964, 0.00908353366, 0.00878514443, 0.0023819122, -0.00499282125, -0.0105546638, -0.0115192262, -0.0193051118, -0.00151623541, 0.0136218313, 0.00190136617, -0.00202453858, 0.0265774913, -0.00845899805, -0.016154673, 0.0177645888, -0.0142394286, -0.0110820504, -0.0093055917, 0.00854920875, -0.0108946897, 0.019332869, -0.00518018194, -0.00648476882, 0.0308382176, -0.00859778374, 0.0181809478, 0.00031465356, -0.0148639651, -0.0235519595, 0.0112000182, 0.00439604186, -0.0129903555, 0.00756382896, 0.00193432788, 0.00519753, 0.024440188, 0.00600595772, -0.0140381893, 0.000741203199, -0.0008747846, 0.00220669503, 0.00632516528, 0.00479158154, -0.010242396, -0.020262735, -0.0163906086, 0.074333705, -0.00102181081, 0.00628006, -0.0250508469, -0.0185695477, -0.036001049, 0.0127474805, 0.0290062428, 0.0190275405, -0.0031920746, 0.0199018922, 0.0262305271, 0.0165849086, -0.0131152635, -0.0183197334, -0.00270285457, -0.00433705794, 0.00427460438, 0.0235658381, -0.0219559222, -0.0170151461, 0.0220669508, -0.0253006611, -0.00235068542, 0.0348907635, 0.0115400441, -0.0359177776, -0.0249536969, -0.0176258031, 0.00505874446, 0.0191246904, 0.0208178777, 0.0303108301, -0.00369517342, -0.0228302721, 0.0230939668, -0.0158771016, 0.00478117261, -0.0506845936, -0.0128862662, -0.0164461229, -0.00404560752, 0.0155162588, -0.00813285075, -0.00239579077, -0.0158771016, -0.0262444057, -0.0189303905, -0.00650211703, 0.0212203562, -0.0272575412, -0.010582421, -0.0250092112, -0.00775812939, -0.00711971428, 0.0132609885, 0.00415663654, -0.0331698172, 0.027521234, -0.0622870922, -0.00433705794, 0.00225180038, -0.0047881119, 0.0162518229, -0.0292560589, 0.00764710037, -0.00555143412, 0.0139410393, -0.0301998015, 0.0231633596, 0.0272991769, 0.0020262734, 0.0011909561, 0.00451054, -0.0154468659, 0.00730013568, -0.0056971591, -0.0121021261, 0.0129070841, -0.0286176428, -0.0262860414, -0.00929865241, -0.0203182492, 0.0106171174, -0.0252173897, 0.0153080793, -0.0273130555, -0.0128307519, -0.0146002714, 0.00612739567, -0.0155162588, -0.00621760637, -0.0216505937, 0.0146002714, -0.00426419545, -0.0143782143, 0.0259668324, -0.00968725234, -0.00614127424, -0.0206652135, 0.00655763177, 0.013566317, 0.0168624818, 0.0163906086, -0.0112832896, -0.0164044872, 0.0278682, 0.0187222119, -0.0154468659, 0.0269522127, 0.00938886311, 0.00306196301, -0.00254498562, 0.0254672039, 0.00502404803, -0.00570062874, -0.00402478967, -0.0168763604, 0.00736952899, 0.0124143949, -0.0305884015, 0.0035321, -0.0049720034, 0.00664784247, 0.0110612325, -0.00172267936, -0.00193259306, -0.00450360077, 0.0133650778, -0.023149481, -0.0271603912, 0.00616209209, -0.00677621923, 0.0210815705, -0.0208872706, 0.00819530431, -0.0273408126, 0.0192079619, 0.010630996, 0.0134969242, -0.0068803085, 0.0148500865, 0.00207831827, -0.0119147655, 0.0343633778, 0.0490469225, 0.0031677871, 0.0129417805, -0.000721686461, -0.00328402035, -0.0332808495, 0.00319380942, 0.034807492, -0.00965255592, 0.00391376112, -0.023246631, 0.00209219684, 0.0161963087, -0.0195549261, -0.0295058731, 0.0213313848, 0.0338359922, -0.00477076368, -0.00773037225, 0.010402, -0.00489914045, 0.0121992761, -0.019041419, 0.0134622278, -0.00185973046, 0.00482280832, 0.000696531497, 0.0132679278, -0.0072931964, 0.0158909801, -0.0035563875, -0.00535019487, 0.00761240395, 0.0202072207, 0.0128029948, -0.0100272782, 0.00516283372, -0.00200372073, 0.0144337285, -0.00766097894, -0.0112694111, 0.0161130372, -0.0130181126, 0.0213313848, 0.00213556737, -0.023149481, 0.0276739, 0.0361953489, -0.00073469762, 0.0258002896, -0.00119963021, 0.00707113929, -0.0189997833, -0.00228476222, 0.0173482317, -0.00664437283, 0.0108252969, 0.0274934769, 0.00562429661, -0.0127682984, 0.00475688512, -0.0214007795, -0.0179866459, 0.00321462727, -0.0117898583, 0.0136981634, -0.0297279302, 0.00375415734, 0.00146245596, 0.00313829514, 0.0154052293, 0.0105199674, -0.0201933421, 0.00637027062, 0.00207658345, -0.00836184807, -0.00920150243, -0.0308937319, 0.00620025815, -0.0100064604, 0.0130111733, -0.0348352492, 0.0144614857, -0.0066339639, 0.0296169017, -0.00955540594, 0.031115789, 0.0393041521, 0.0189997833, 0.000913384371, -0.00274969474, 0.00997870322, -0.00987461302, -0.00405254681, 0.0221224651, -0.0175286531, 0.0167514533, -0.0119147655, 0.0344744064, 0.00858390518, -0.000107559033, 0.0183058549, -0.0184723977, -0.0101452461, 0.0171816889, 0.00523569621, 0.0148917222, 0.00714053214, -0.0283955857, 0.0130250519, 0.0149472365, -0.0092570167, 0.000334170327, -0.00461116, -0.0182087049, 0.00872963, 0.0101383068, -0.0183891263, -0.00573532563, -0.0209150277, -0.014517, 0.001555269, 0.0115469834, -0.0184168834, -0.00223618699, 0.00041679127, 0.0209566634, 0.000553408579, -0.000324195076, 0.0249259397, -0.0281457715, 0.0214562938, 0.0118176155, -0.00379926269, -0.0120604904, -0.0379440524, 0.0187916048, -0.00979134161, -0.00228476222, -0.0246900041, 0.0304496158, 0.00587064167, 0.0223722793, -0.00978440233, 0.00189963134, 0.0271187555, 0.0184168834, -0.0190830547, -0.00370558235, 0.0156411659, 0.0322260745, 0.00535019487, -0.0108669326, 0.00342454086, -0.0284788571, 0.0121784583, 0.000588972471, -0.00547857163, -0.011095929, -0.0120674297, -0.00743198255, 0.0130319912, -0.0220114365, 0.0219420437, 0.00171313784, -0.0100550354, -0.0185556691, -0.025272904, 0.0124976663, 0.0118245548, 0.0076332218, 0.0116371941, -0.0138716465, -0.0255921111, -0.0132124135, -0.0172094461, -0.00971500948, -0.0316431746, -0.0143227, 0.0226359721, -0.0361675918, 0.00869493373, -0.0342523493, 0.00596432202, -0.0179172531, -0.0134136528, -0.0136704063, -0.0262860414, 0.0121298833, -0.010582421, 0.00206270465, 0.0100550354, -0.0322538316, 0.00516977301, -0.00823000073, -0.0146696651, 0.0178339817, -0.0127613591, 0.0346409492, -0.00125254237, 0.00552367698, -0.00188575278, -0.0157105587, -0.0145031214, -0.00201239483, -0.000889096875, -0.00432317937, 0.0355014205, 0.0163212158, -0.0058810506, 0.0367782526, -0.00179380714, 0.00808427576, -0.00295613869, 0.00141041121, -0.0043995115, -0.00223445217, 0.021803258, 0.0121853976, 0.00752913253, -0.0312268175, -0.0110265361, -0.020262735, 0.00498241233, 0.0288952142, -0.0115539227, 0.00526692299, 0.005201, -0.00508997124, 0.00405948609, 0.019749226, 0.0336972065, 0.0194994118, 0.000662268721, -0.00298042619, -0.0312268175, -0.00475341547, -0.0136495885, -0.0036223107, 0.0272159055, 0.0145308785, -0.000828378077, -0.00911129173, -0.00413581822, 0.010485271, 0.0197075903, 0.000468835962, 0.015668923, -0.00498241233, -0.00664090319, 0.0140867643, -0.00802876148, 0.0173759889, -0.0343078636, -0.00357026607, 0.011512287, -0.0025189633, -0.00684908172, 0.0110681718, 0.0303385872, 0.0150027508, 0.0128238127, -0.0146696651, -0.0147251794, -0.00423643831, -0.0144753642, 0.0240238309, -0.0128168734, -0.00566246267, 0.0133373206, -0.0015075613, -0.00811897218, 0.0499906652, 0.0128723877, -0.0200961921, -0.0196937118, -0.0238572881, -0.0127058448, -0.0271603912, -0.0121853976, -0.0233021453, 0.01441985, 0.010193821, -0.00935416669, 0.0239683166, -0.00795242935, -0.000533891842, 0.000338290527, 0.0178339817, 0.0115747405, -0.0082022436, -0.0107975397, 0.0012074369, 0.0029075637, 0.0201239493, -0.0343078636, 0.0191663262, 0.019430019, -0.00615515281, -0.0074111647, -0.00134015095, 0.00442726864, 0.0130181126, 0.00245824433, 0.00626618136, 0.000513507635, -0.0136981634, -0.0138924643, 0.0163767301, -0.000233767423, 0.0136912242, -0.00990237109, 0.00548204128, 0.0168347247, 0.0117482226, 0.0273546912, 0.0050067, 0.0063355742, 0.0132471099, -0.00289542, 0.00853533, -0.00537795201, -0.00213209772, -0.0106656924, -0.00931253098, 0.025980711, -0.0143920928, 0.000368216221, 0.00117187307, 0.0153219579, -0.00766791822, -0.0156550445, 0.00673458353, -0.00866717659, -0.00948601309, 0.0107003897, 0.0085283909, 0.0101244282, 0.0151692936, 0.0113804396, -0.00359108392, 0.000301859225, 0.00614474388, 0.0156550445, -0.0163073372, 0.0180837959, 0.00819530431, -0.00241660862, -0.0176535603, 0.0198047422, 0.00847287662, 0.0037264002, 0.0157383159, -0.0170290247, -0.000567287148, 0.00622454565, -0.00378191448, 0.0133581385, -0.0212203562, 0.0101313675, 0.0253006611, 0.00496159447, -0.0115469834, 0.00194994127, 0.0161963087, 0.00979828089, -0.0018232991, -0.0041531669, 0.0246067327, 0.0143504571, -0.0144614857, -0.0067241746, -0.012393577, 0.00546816271, 0.0116024977, 0.0163350943, 0.0115400441, 0.0103950603, -0.0391931236, 0.0122756092, 0.00457299408, 0.00728625711, -0.00641537597, 0.0394151807, -0.00900720153, 0.00759852538, 0.0198463779, -0.00664090319, 0.00294399494, -0.0116927084, -0.0237046238, 0.0180005245, -0.0154052293, -0.00353383482, 0.00919456314, -0.0203737635, -0.00158129132, -0.016987389, 0.00192391884, -0.0141977929, 0.0100064604, -7.03145488e-05, -0.0224555507, -0.0127474805, -0.0175425317, -0.00097930769, 0.0089308694, -0.0202488564, 0.0336694494, 0.00955540594, 0.00290062441, 0.00854226947, 0.0124837877, -0.0117274048, 0.0105893603, -0.00470484048, 0.000458427035, -0.00302032707, 0.0127613591, 0.00345923752, 0.0176535603, 0.00439604186, -0.000536927779, -0.010533846, -0.0152386865, -0.00947907381, -0.00845899805, 0.0118453726, 0.0171955675, 0.0072585, 0.0306161586, 0.00664784247, -0.00873656943, -0.0209566634, -0.0144337285, 0.0304496158, -0.00578043098, -0.00195861538, 0.0157105587, -0.00591921667, 0.0213730223, -0.000533458136, 0.0187360905, -0.0118037369, -0.0123727592, 0.000521314389, -0.00163333607, -0.0307827014, -0.00591227738, -6.22909938e-05, 0.0107003897, -0.0195965618, 0.00570062874, 4.23947422e-05, 0.006269651, -0.0119702797, -0.00185973046, -0.00400050217, -0.00400744146, -0.0173482317, -0.00518712122, -0.0167375747, -0.00135316211, -0.00698439823, -0.00988155324, -0.00197249395, -0.0329477601, 0.00292317709, -0.000670075475, 0.0199018922, 0.00884759799, 0.0103464853, 0.00800100435, -0.0120119154, 0.0127544198, 0.0102493353, 0.0219142865, -0.00897944439, -0.00812591147, 0.0350295492, 0.012393577, 0.0317819603, -0.00839654449, -0.0290895142, 0.00305155385, 0.00110508234, 0.0337804779, -0.00632169563, -0.0115747405, -0.010950204, 0.0209150277, -0.00582553633, 0.0188471191, -0.00213903701, -0.00564858411, -0.00118141458, 0.00696358038, -0.0400258414, 0.0015387882, 0.0102493353, 0.022802515, 0.0165155157, -0.00950683095, -0.00272193761, 0.0101730032, -0.0163906086, 0.031726446, -0.0111930789, 0.00173222099, 0.0185417905, -0.0117621012, 0.0134691671, 0.0148223294, -0.00820918288, -0.0100203389, -0.00387559505, 0.0129834162, 0.00287980656, 0.0190830547, -0.000771128922, -0.0140173715, -0.000383395934, 0.0111028682, 0.00471177977, -0.0313378461, 0.00259356061, 0.0268689413, -0.00794549, 0.00388253434, 0.0252173897, 0.00968725234, 0.0306439158, -0.00135923398, -0.01647388, 9.01023814e-05, -0.0193606261, -0.000613693672, -0.0211232062, -0.00902108, 0.00800794363, -0.0338637494, 0.00872269087, -0.022705365, 0.00455911551, -0.0131846564, 0.00568328053, 0.0123172449, 0.00169405481, -0.0154746231, 0.0124560306, 0.0194161404, -0.0152248079, 0.0102354567, -0.00422255974, -0.00514548551, 0.0292005427, -0.00870187301, -0.0225388221, -0.0273963269, 0.0107975397, -0.0117065869, 0.0167375747, -0.020068435, -0.0192773547, -0.00591574702, 0.00136617327, -0.00193432788, -0.0160020087, -0.00969419163, -0.031726446, 0.00184585189, 0.012685027, 0.0214007795, -0.0138508286, 0.0178201031, -0.00748749683, -0.00246171397, -0.00406642538, -0.00501016947, -0.0222890079, -0.00407336466, 0.0107489647, -0.0230800882, 0.0129625984, -0.0132401707, -0.0247177612, 0.0235519595, -0.0138785858, -0.00990237109, -1.19743463e-05, 0.0233576596, -0.0149472365, 0.019776985, 0.00857696589, -0.0217893794, 0.031115789, 0.0202766135, -0.0161269158, -0.00565205375, 0.0018302385, 0.00812591147, 0.00843818, 0.00625577243, -0.0086602373, 0.0426072553, 0.000816668035, 0.010582421, 0.00791079365, -0.0199157707, 0.00347485091, 0.00212862808, 0.0280347429, 0.00213730219, -0.0185140334, -0.0047638244, 0.0195410475, -0.0106379353, -0.00672070496, -0.00877820514, -0.00040031044, 0.000983644743, 0.00211648433, -0.00635639206, -0.0249120612, 0.00997870322, -0.0168208461, -0.00934028812, 0.0143782143, -0.00221710396, 0.00835490879, 0.00402825931, -0.00986767374, 0.0130319912, 0.00555143412, -0.0144892428, -0.0140243107, 0.0132679278, 0.00172961876, 0.0255782325, 0.0230939668, -0.0141284, 0.0125739984, -0.0122131547, 0.0160436444, 0.0136565277, -0.00154572749, 0.00641537597, 0.00201239483, -0.0135940742, 0.0113249253, 0.00121871324, 0.0086602373, -0.00801488291, 0.00940968096, 0.0146696651, -0.00232119346, -0.0162795801, -0.0293948445, -0.0162240658, -0.0112971682, 0.0150166294, 0.00404213788, -0.00633210456, 0.00736258971, 0.0183058549, 0.0223584, -0.00233160239, 0.00254151598, -0.00294226012, 0.00164547982, -0.0186389405, 0.0119008869, -0.000433055247, -0.00792467222, -0.0154746231, 0.0366949812, -0.0287009142, -0.0107281469, -0.00389294326, -0.00325452816, 0.00231945864, -0.000729926862, -0.00530161941, -0.0255643539, -0.0141492179, -0.00535713416, -0.0306439158, -0.0110681718, -0.0121784583, 0.00541611807, 0.0099440068, -0.0132124135, 0.00816060789, 0.00682826387, 0.0065437532, 0.00678662816, 0.0100342175, 0.00523569621, 0.0024061997, -0.00804264, -0.0143920928, -0.0145725142, -0.0187638476, -0.00784834, -0.0147251794, 0.0299499873, 0.00414969726, 0.000189854705, 0.012025794, 0.00399009325, 0.0172649603, -0.000845726288, -0.00199157698, -0.0217755, 0.00884759799, 0.0116094369, 0.0311713032, 0.0122825485, -0.00312094693, 0.00430583116, -0.0116580119, -0.00372986984, -0.00609616842, -0.0108808111, 6.10983043e-05, 0.0240238309, -0.00663743354, -0.00555837341, -0.00061022403, 0.0296724159, -0.0105199674, -0.0254394468, -0.00829245429, 0.0107489647, -0.00128463656, -0.00813285075, -0.0018961617, -0.00341066229, 0.0024860017, -0.00690806564, -0.0212619919, 0.00913904887, 0.0188887548, 0.0144614857, -0.00145117962, 0.0064500724, -0.0137259206, 0.00831327308, -0.00465279585, 0.00370905199, 0.00841042306, -0.024981454, -0.0086602373, -0.00688724779, 0.0139202215, -0.00249814545, -0.00362578034, -0.00523569621, -0.0307827014, 0.00781364366, 0.00379579305, 0.0134136528, -0.00254845526, 0.00459034229, 0.0108391754, 0.00147026265, 0.0296724159, 0.0182087049, 0.00582900597, -0.00431624, -0.0232882667, 0.0250508469, -0.0172372032, 0.00604412379, -0.0124768484, 0.000721252756, 0.00424684724, -0.0230939668, -0.0404699557, -0.0127405412, 0.0198602565, -0.0160436444, 0.00825081859, 0.013517742, 0.00235068542, 0.0215812, 0.00584982382, 0.0121298833, -0.00396580575, 0.00313135586, -0.018625062, -0.0179033745, -0.0375554524, 0.00667906925, -0.0173204746, -0.017792346, 0.000696965202, -0.0239821952, -0.00100099295, -0.00476729404, 0.00438216329, -0.00197769841, 0.00736258971, 0.0097497059, 0.00397621468, 0.0227192435, 0.0133581385, 0.00199678144, 0.00399356289, 0.00498935161, -0.0185973048, 0.0322815888, 0.00209913612, 0.00640149741, 0.00374721806, -0.00886147656, 0.0470484048, -0.020776242, -0.00662702462, 0.0133650778, -0.00801488291, -0.00861166231, -0.0239128023, -0.0277294144, 0.00495118555, -0.00848675519, 0.01647388, 0.0182642192, 0.000526085147, 0.000715614529, -0.0268966984, 0.00906965509, 0.0287286714, 0.0155995302, -0.0266330056, 0.0033048382, 0.00915986672, 0.00509691052, 0.00154486008, 0.012220094, -0.00640843669, -0.0077997651, -0.0306161586, 0.0220114365, -0.00540570915, -0.00464585656, 0.00951377, -0.0111583825, -0.0161130372, -0.0154468659, -0.0143643357, 0.0235658381, -0.0198880136, 0.0102770925, -0.00608922914, 0.00447931327, 0.012247852, 0.00369864306, 0.0147668151, 0.0135801956, -0.0109918397, -0.00732789328, -0.0134414099, -0.000889096875, -0.020262735, -0.0131152635, -0.000819704, 0.00750831468, -0.0040351986, -0.00234201131, 0.00469443155, 0.000218804576, 0.0116927084, 0.0278126858, 0.012025794, 0.0172372032, -0.00193779753, 0.0145031214, 0.0262444057, 0.00831327308, -0.0113110468, 0.0096594952, -0.0282706786, -0.000137701587, 0.00270979386, 0.00711971428, -0.0136773456, -0.00433705794, -0.00807733648, 0.00325105852, -0.0029648128, 0.00727237854, -0.00309318979, 0.0114706513, 0.00766791822, -0.0192218404, -0.00451747933, -0.0210954491, 0.0346964635, -0.0128932055, 0.00689418707, 0.0049962909, -0.0177784674, 0.0171539318, 0.0016931874, 0.000482280855, 0.00307237194, 0.00190830545, -0.021067692, -0.00103135232, 0.00113197207, -0.0155578945, -0.00165675615, 0.027424084, -1.40412249e-05, -0.0112138968, -0.00347138126, -0.0217199866, 0.0148500865, 0.0116441334, -0.0106032388, 0.00627312064, -0.0253978111, -0.0176813174, 0.00494424626, 3.71902715e-05, 0.0159048587, -0.025175754, 0.00386518613, -0.000631041941, 0.0179033745, -0.0044411472, 0.00127075799, 0.00757076824, 0.0110334754, 0.0273963269, 0.000326797308, 0.0134691671, -0.01657103, 0.00105737476, -0.00612739567, 0.00329442928, 0.0107420254, 0.0226914864, 0.00881290156, -0.0138855251, 0.00297869137, 0.00672070496, -0.0136912242, 0.00574226491, 0.0101591246, -0.000751178421, 0.00802876148, 0.00169405481, 0.0153219579, -0.0212064777, 0.0032961641, 0.00360496249, 0.0115886191, 0.0156828016, -0.0140104322, -0.0180144031, -0.00411847, 0.0172927175, 0.00437869364, -0.0173204746, 0.0131707778, -0.0166404247, 0.018527912, 0.000573359081, 0.00769567536, 0.0075013754, -0.000305112015, -0.00635292241, 0.00497894268, 0.0214840509, -0.010950204, -0.0169457532, -0.0180976745, 0.0314488746, 0.0174453817, -0.0110057183, -0.00243222201, -0.00322330138, 0.0111722611, 0.00949989166, 0.00886147656, 0.0161963087, 0.0138785858, 0.0133026242, -0.0224277936, 0.00954152737, 0.00782058295, 0.00720992498, -0.0191108119, -0.0011102868, -0.00261958293, 0.020970542, -0.00482280832, -0.0121645797, 0.00586370239, 0.0113943182, 0.000911649549, -0.0105060888, -0.0165849086, -0.0187083334, -0.00273928582, 0.0281735286, -0.0125948163, 0.00345403282, -0.00917374529, -0.00321983173, 0.00389988255, 0.00420174189, 0.00429889187, 0.00703644287, -0.00518712122, -0.00694623217, -0.00353730447, -1.08629747e-05, -0.0135038635, 0.0175702889, -0.0155162588, -0.0221085865, -2.00588929e-05, 0.00611351663, 0.016695939, 0.0186666977, 0.027521234, -0.00733483257, -0.0212342348, -0.00941662, -0.0145863928, -0.0176813174, 0.00601983629, 0.0036847645, 0.0056728716, 0.00444808649, 0.0220114365, -0.0212897491, 0.00971500948, 0.00667559961, 0.00145031221, -0.000805825344, -0.000614127377, 0.00340198819, 0.021706108, 0.0158077087, 0.0125670591, -0.00958316308, -0.00144771, -0.00195688056, -0.0153774722, 0.0113735, -0.00943049882, -0.0048540351, -0.00816060789, -0.0215673223, 0.0111583825, -0.0187083334, 0.0127752377, -0.00846593734, -0.00738340756, 0.00287113246, -0.0023576247, -0.0248565469, 0.00292664673, -0.00533284619, 0.0166126676, 0.00518018194, -0.0433011875, -0.00396233611, -0.0122131547, -0.000662268721, 0.0106240567, -0.0146002714, 0.000770261511, 0.0123241842, -0.00516630337, -0.0229690596, 0.00361884106, 0.0180144031, 0.00138265407, 0.0150305079, 0.0180976745, -0.00716828927, -0.00464238692, -0.0114775905, 0.00459034229, -0.00380967162, 0.00581859704, -0.00606494164, 0.00568675, 0.0116371941, -0.0336139351, -0.0086186016, 0.00949989166, 0.00330657302, 0.00451747933, 0.0182780977, -0.0170290247, -0.0065437532, -0.00572491623, -0.0147529365, 0.00231772382, -0.00363618927, 0.00897250511, 0.00896556582, 0.00992318895, 0.0229551811, 0.00749443611, -0.0160714015, -0.0089308694, -0.0120882476, -0.0243014023, -0.00325279334, -0.000815366919, 0.0155023802, -0.00666519068, 0.017695196, -0.0205819421, 0.0210260563, -0.00626618136, 0.00128637138, 0.00527733192, -0.00177819375, -0.010998779, 0.00369864306, 0.0106934505, 0.00455911551, 0.00208178791, 0.00594350416, 0.00484015653, -0.000251549354, -0.0320040174, 0.0141006429, 0.00583941489, -0.00495812483, -0.0151137793, -0.0162657015, -0.0151831722, -0.0113457432, 0.00416704547, 0.0137536777, 0.00887535512, -0.00968031306, 0.0081120329, 0.00655416213, -0.0203182492, 0.00919456314, -0.0246483684, 0.0167098176, -0.015863223, -0.0130042341, 0.0107350862, 0.00199851627, -0.00811897218, 0.0263970699, -0.00809815433, -0.0119147655, 0.0144059714, -0.0216644723, 0.00646395097, -0.0256753825, -0.00111115421, 0.00400744146, 0.0105130281, 0.0052842712, 0.0146557866, -0.0125948163, -0.0232605096, 0.0287841856, 0.0197631065, 0.000454089954, -0.0456605442, 0.00445155613, 0.0294226017, -0.00279826974, 0.00198116805, 0.0141908536, 0.0111514432, 0.0195132904, 0.0132818064, 4.5674642e-05, 0.0235103238, 0.00773037225, -0.0187360905, 0.007112775, -0.0207346063, -0.00629740814, 0.00344015425, 0.033197578, 0.000799319765, 0.00133668131, -0.00580818811, -0.00928477384, -0.0203598849, 0.010339546, -0.00869493373, -0.000508736877, 0.00889617298, 0.0145863928, -0.0219420437, -0.0068143853, 0.0179727674, 0.00231945864, 0.00194300199, 0.00292317709, -0.00253284187, 0.00279826974, 0.00114845298, -0.00684561208, -0.0207623634, 0.00571450731, -0.0126572698, -0.00518018194, 0.0028034742, -0.0113596218, -0.00542999664, -0.00490954937, -0.0151831722, 0.0285066143, 0.0100966711, -0.0094374381, 0.0313100889, 0.014739058, -0.0129070841, 0.0166126676, 0.00215291558, 0.0036223107, 0.0155162588, 0.0214007795, -0.00495812483, -0.0132540492, 0.0012716254, -0.00183717778, -0.0140937036, 0.0259668324, 0.00759158609, 0.00769567536, -0.000380143116, -0.0133789564, 0.0234964453, -0.00408030394, -0.00906965509, 0.01657103, -0.0586786605, 0.0211787205, -0.00252243294, 0.0164183658, -0.00606841128, 0.0190691762, 0.0210815705, -0.0030550235, 0.0261750128, 0.00929865241, -0.00516283372, 0.0255643539, 0.0155995302, 0.0188054834, -0.020970542, 0.00799406506, 0.0139618572, -0.00408030394, -0.00959010236, 0.00034674778, 0.0154746231, 0.00875738729, 0.0066339639, -0.00891005155, 0.0042850133, 0.00406295573, 0.0100619746, -0.00390335219, -0.0172510818, -0.00985379517, 0.00523916585, 0.0235242024, 0.0264387056, -0.00456605479, 0.0201517064, 0.0131430207, 0.011415136, -0.00413234858, -0.00890311226, -0.0285066143, -0.0043093008, -0.00397274503, 0.00734871114, -0.00733483257, -0.0154052293, 0.00950683095, -0.0182642192, -0.0133997742, 0.00204535644, -0.00502751768, -0.0188748762, -0.00300818332, -0.0107212076, 0.0117135262, 0.0020175993, 0.00612392602, -0.032531403, 0.00822306145, 0.0216644723, -0.00135749916, -0.00441685971, -0.0270493627, -0.0159326158, 0.00364312856, 0.00714053214, -0.00648823846, -0.0162518229, -0.00607882, -0.0116857691, 0.0105685424, -0.0194716547, -0.00970807, -0.0154746231, -0.0143504571, -0.0129140234, -0.0118245548, 0.00185279117, 0.0152803222, -0.00252243294, -0.00596085237, -0.00135055988, -0.00311400765, 0.00488179224, 0.0189303905, 0.0152803222, 0.00579084, -0.0117482226, 0.0229829382, 0.0220530722, 0.00141041121, -0.00140954379, 0.00786915794, -0.0235519595, -0.0152248079, 0.0027948, -0.00273408135, -0.0065437532, 0.00427460438, 0.00295093423, 0.00548551092, 0.00906271581, 0.00960398093, 0.0269522127, 0.00191177509, 0.0318374746, -0.00564858411, 0.0203182492, 0.00148327381, -0.00913211, 0.0035563875, 0.0125601199, 0.0272297841, 0.0104644531, 0.0112485932, 0.0160020087, -0.00650211703, -0.00697745895, 0.00175303884, -0.0133234421, -0.0101174889, 0.00514895516, -0.00333259534, -0.0155578945, -0.0221363436, -0.00471871905, 0.00155266677, 0.00172007713, -0.00186840456, -0.000574660196, -0.0220669508, -0.0190691762, 0.0104297567, -0.00973582733, 0.00525304442, 0.0128307519, -0.00721686427, 0.0011744753, 0.00112763501, -0.00132540485, -0.0345021635, 0.00257968204, -0.00367088593, 0.0204015207, 0.0194577761, -0.0391931236, -0.0221918579, -0.000826643256, 0.00286245812, 0.0189581476, -0.0226359721, -0.00158042391, -0.000609356619, 0.00831327308, -0.00509691052, -0.0184446406, -0.00255539455, 0.0060371845, -0.000445415848, 0.000177060385, 0.0150999008, 0.000222274219, -0.00838266592, 0.0242181309, -0.0099440068, -0.000977572869, -0.0070225643, -0.00174609956, 0.00628699921, -0.00247559277, 0.0124560306, 0.00304808421, 0.0016125181, -0.00395192718, -0.0245789755, -0.0109085683, -0.0291727856, 0.00152837916, -0.0315876603, 0.00434399722, 0.0138855251, 0.000792814186, -1.40818847e-05, 0.00100359519, 0.000574226491, 0.00855614804, -0.0355569348, -0.00682479423, 0.0116927084, 0.0185834263, 0.00618637959, 0.0113596218, 0.031532146, 0.0113526825, -0.00285898848, -0.00248773652, -0.0164461229, -0.00631475635, -0.00957622379, 0.00618637959, 0.00956928451, 0.0203182492, 0.00157868909, 0.0105963, -0.00387906469, -0.0165849086, 0.00515936408, 0.0107003897, -0.0138716465, -0.00764710037, 0.0311990604, 0.0117343441, -0.0147806937, -0.0112000182, 0.00968031306, -0.020165585, 0.00187881349, -0.023954438, 0.00130111736, -0.00626618136, -0.000358674704, 0.0217199866, 0.0171261746, 0.00771649368, 0.00138612371, 0.033197578, 0.00482627796, 0.00473259762, 0.0251202397, -0.0309492461, 0.000265861658, 0.0158354659, 0.00727931783, -0.0111028682, -0.0178339817, 0.0126156341, -0.00663049426, 0.00725156069, 0.00466667442, 0.00122738734, 0.00338810962, 0.0176258031, 0.00529815, -0.0083479695, -0.00787609722, 0.00192218402, 0.015349715, -0.0297001731, 0.0125046056, 0.00261958293, 0.00523916585, -0.0053606038, 0.0041531669, 0.00252243294, 0.0307827014, 0.0114845298, -0.00655069249, -0.0224694293, 0.0116441334, -0.0134691671, -0.0137536777, -0.0209983, -0.00263866596, 0.00632863492, 0.00341066229, 0.00686296029, 0.00778588653, 0.00800794363, -0.00818142574, -0.0103673032, -0.00121437619, 0.00566593232, 0.0133373206, -0.0127960555, -0.00441339, -0.0206097, 0.0282984357, 0.000901240623, -0.00903495867, -0.0245650969, -0.00525304442, -0.00217199861, 0.0157105587, -0.000854834099, -0.00993706752, 0.0155440159, 0.0108808111, -0.00749443611, -0.0138924643, 0.00735565042, -0.0028121483, -0.00164027535, 0.00218934682, 0.0248565469, -0.00929865241, -0.0273685697, -0.0207068492, 0.0142394286, -0.00827857573, 0.00642231526, -0.0223445222, 0.0205541849, -0.0279514715, -0.00384436804, -0.0210815705, 0.0212897491, -0.0122409118, 0.0024061997, -0.0261888914, -0.000361493789, -0.0210815705, -0.0102632139, 0.0213730223, -0.0153774722, 0.0204292778, -0.00877820514, 0.00914598815, -0.0116302548, -0.00446890434, -0.00076852669, -0.020262735, -0.0192495976, 0.0206513349, 0.00345056318, -0.012636452, 0.00378885376, -0.00949295238, 0.0259945896, 0.00131673075, -0.0222334936, -0.0207207277, 0.00434399722, 0.00313656032, 0.00305155385, -0.00232119346, 0.0044654347, -0.0152248079, -0.0101452461, 0.00115279, -0.011512287, -0.0026421356, -0.0131915957, -0.0153913507, 0.00992318895, -0.0147668151, 0.000659232785, -0.0154746231, -0.00795936864, 0.000550806348, 0.0155856516, 0.00547510199, -0.0124768484, -0.012685027, -0.00769567536, 0.0342523493, -0.00467014406, 0.0256059896, -0.0275767483, -0.0104158781, 0.0114706513, -0.0111375647, -0.00892393, 0.0120951869, 0.0042850133, -0.0275351126, 0.0097497059, -0.000804957934, -0.011560862, 0.00584982382, -0.0135316206, -0.00408724323, 0.00261958293, -0.00368129485, -0.00352169108, 0.0604551174, 0.0145863928, 0.0367782526, -0.0124213342, -0.000955020136, -0.00121611101, 0.00320768799, 0.0278543215, -0.0212481134, 0.00530161941, 0.00839654449, 0.0145586357, -0.0163767301, -0.00369517342, 0.00685602101, 0.00340545783, 0.0137536777, 0.00842430163, -0.000750311, -0.0135385599, -0.018430762, -0.0130042341, 0.0237462595, 0.000997523312, 0.00972194877, -0.01647388, 0.00609616842, 0.0072446214, -0.0249953326, 0.0193606261, 0.00135749916, 0.00308278087, 0.0106865112, -0.00321636209, -0.0171539318, -0.0014017371, 0.0140659465, 0.0255227182, 0.00286766281, -0.0287009142, 0.0065680407, 0.0255782325, 0.00424684724, -0.000249163975, 0.000377757737, -0.0116441334, 0.00965255592, -0.00886841584, -0.00505180517, -0.0108669326, 0.0276045054, -0.0406920128, -0.0134414099, -0.0167514533, 0.00233854167, -0.00193953235, 0.0359732918, 0.0138508286, 0.00795936864, 0.0272852983, 0.0077997651, 0.00176258036, -0.00838960521, -0.0064500724, -0.00482280832, -0.0247455183, -0.000409852, -0.0187916048, 0.0175147746, 0.000629740825, -0.0169457532, -0.00791773293, -0.000642318279, -0.00592962559, -0.00323197548, 0.0107003897, 0.00365006784, -0.00523916585, -0.00477770297, -0.0188748762, -0.0186528191, 0.0121160047, -0.00471871905, -0.0135454992, 0.00361884106, -0.0120188547, -0.00378885376, -0.00649864739, -0.0128515698, -0.00262478739, 0.00444461685, 0.0117621012, 0.0180144031, 0.00526692299, 0.0175286531, 0.00266121863, -0.0169179961, -0.00203494751, 0.00331524713, -0.00357026607, 0.0109293861, -0.0128932055, -0.00159430248, -0.0117690405, 0.000802355702, 0.0221918579, 0.0117135262, 0.00813979, -0.00304461457, -0.00529468, -0.0101452461, -0.0116996476, 0.0185417905, 0.009215381, 0.00914598815, 0.00216505933, -0.001555269, -0.00426072581, -0.00153965561, -0.00980522, 0.0184446406, -0.00876432657, -0.00872963, -0.00605800236, -0.00764710037, -0.000405514904, 0.00184411707, -0.000723855, 0.0341413207, 0.0105685424, 0.00665131211, 0.00215985486, 0.00606841128, -0.005218348, 0.032337103, 0.0219559222, -0.013101385, 0.00833409093, 0.0106656924, 0.00734177185, -0.0143227, 0.0189026333, -0.00553755555, 0.0175425317, -0.00402825931, 0.0180699173, 0.010853054, 0.0136842849, 0.0573463142, -0.00548551092, 0.0100689139, -0.00734871114, -0.0138230706, 0.00552367698, -0.0138785858, 0.00488526188, 0.0112138968, -0.0191108119, 0.0280347429, -0.0248565469, 0.0142047321, 9.94812654e-05, 0.0129903555, -0.00385130732, -0.0055826609, -0.0169041175, -0.0251479968, -0.00895862654, 0.00359455356, -0.00432317937, 0.0189303905, 0.0206235778, -0.00655069249, 0.00620719744, -0.0170151461, 0.0054508145, -0.0126642091, -0.0062939385, -0.0050622141, -0.0149472365, -0.00698439823, -0.00042416426, 0.00702950358, 0.0542097539, 0.00130285218, -0.00666519068, -0.00628352957, 0.000809295, 0.0261333771, -0.0119564012, -0.0267301556, -0.0072931964, -0.00821612217, -0.000899505801, 0.0166126676, 0.00922232, 0.0268550627, -0.00153792079, 0.0100342175, -0.00731401471, 0.0188193619, -0.018625062, 0.0155856516, -0.0197075903, 0.00756382896, 0.0239960738, -0.000390985777, -0.0176813174, -0.0043995115, 0.0256476253, -0.00427460438]
24 Nov, 2021
jQWidgets jqxScrollView buttonsOffset Property 24 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxScrollView is a jQuery widget that is used for viewing content that is wider than the visible area outlined by the device’s screen. A particular element can be chosen using the drag movements or by clicking/tapping on the buttons that are present at the bottom of the jqxScrollView widget. The buttonsOffset property is used to set or return the widget buttonsOffset property. It sets the offset from the default location of the navigation buttons. It accepts array type values and its default value is [0, 0]. Syntax: Set the buttonsOffset property. $('selector').jqxScrollView({ buttonsOffset: Number/String }); Return the buttonsOffset property. var buttonsOffset = $('selector').jqxScrollView('buttonsOffset'); Linked Files: Download jQWidgets from the link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollview.js”></script> Example: The below example illustrates the jqxScrollView buttonsOffset property in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollview.js"> </script> <style> h1, h3 { text-align: center; } #jqxSV { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxScrollView buttonsOffset Property </h3> <div id="jqxSV"> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170527/GetHired-300x121.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170612/hiring-300x115.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170700/upgrade-300x126.png" alt=""> <img class="photo" src= "https://media.geeksforgeeks.org/wp-content/uploads/20211116170745/gethiredgfg-300x110.png" alt=""> </div> <script type="text/javascript"> $(document).ready(function () { $('#jqxSV').jqxScrollView({ width: 450, height: 250, buttonsOffset: [0, 0] }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxscrollview-buttonsoffset-property?ref=asr2
PHP
jQWidgets jqxScrollView buttonsOffset Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0365001597, 0.0423228033, -0.0128619606, 0.0165264606, 0.0698137954, -0.00762592582, 0.00893674511, 0.035486266, -0.0234064497, -0.0307644196, -0.00879190303, 0.0138686113, 0.00660841167, -0.00277734338, -0.0199592132, 0.0267957505, -0.0312279128, -0.00585523387, -0.044611305, 0.0177141633, 0.0188729, -0.0210310426, -0.0723630115, 0.00819081, -0.0735796839, 0.042525582, 0.0108269323, 0.0140134534, -0.0199881811, -0.00119494565, -0.0188584141, 0.00939299725, -0.0229284726, -0.00158782932, -0.0507526025, -0.00540260272, 0.016483007, -0.00673152739, 0.0030217641, -0.0166713018, -0.0275489297, 0.00688361097, -0.017424481, 0.0124998558, -0.0138903381, 0.0170623753, -0.00321549014, 0.00570677081, -0.0234209355, 0.0270564668, 0.00755350478, 0.0415116884, 0.013108192, 0.0083356509, 0.0123550138, -0.00324083748, 0.0136875594, 0.0457700379, 0.00637304364, 0.0106313955, 0.0149187157, -0.0614709, -0.0233195461, -0.00209839689, -0.00680032698, 0.00603628624, -0.0144407367, 0.0362973809, -0.0462625027, 0.0199302454, -0.0140206954, 0.0150056202, 0.0295622312, 0.00876293518, -0.00562348682, -0.00316841644, -0.00263612252, 0.0075969575, 0.0329949856, 0.00752453646, -0.00776352547, -0.00127732451, -0.0644836128, 0.00668807467, 0.0159470923, 0.017265154, 0.0360366628, -0.0448720194, 0.0359497592, 0.0113266362, -0.0492462441, -0.0100520281, -0.00232833344, -0.0208137799, -0.00898019783, -0.00501877163, -0.000635041215, 0.00538449734, -0.031169977, 0.0186990891, 0.0221608095, 0.0229719244, -0.0269116238, -0.0498835482, -0.00695603201, 0.00810390431, 0.0327342674, -0.0167582072, -0.00787939876, -0.0291566737, 0.0567200854, -0.0385569148, -0.00783594698, 0.00659392728, -0.0383831039, 0.0186411515, -0.0169320181, -0.0200026669, 0.0104575846, -0.0185687318, -0.00172542909, 0.0184818264, 0.0240292698, 0.0235512927, -0.0124853719, 0.0178734902, -0.00832840893, 0.0181052368, 0.0390493758, -0.00705742138, -0.0118987616, 0.0381803252, 0.0160919353, -0.00396142574, 0.0158022512, 0.037282303, 0.0409033522, 0.00576470746, -0.0323866494, 0.00858912431, -0.0383831039, -0.0291711576, 0.0173520595, 0.0158601869, -0.0136368647, 0.0197419506, 0.00471098255, 0.0245217327, -0.0396866798, 0.022551883, -0.0150056202, -0.0186846051, -0.0045263092, 0.026230868, 0.0687129945, -0.0162222926, -0.0297794938, 0.0319521241, -0.0012356824, -0.00903813448, 0.0338061, -0.0149766523, 0.0180038475, 0.0322707742, -0.0133906333, -0.000480241404, 0.00916125, -0.00877741911, -0.0420910567, 0.0318362489, -0.00713708438, -0.0294029042, 0.017265154, 0.012948866, -0.0176272597, -0.00976958591, 0.0375430211, -0.0464363135, -0.00202597608, -0.0226387884, -0.0512450635, -0.0294029042, 0.0217407681, 0.0330818892, -0.0166568179, -0.00448285649, 0.000947809138, -0.00326799531, -0.0136078959, -0.0263467412, -0.0248983223, -0.00200243923, 0.0160195138, 0.0382672288, 0.0041569625, -0.0415406562, -0.0179748796, -0.00906710234, -0.0307644196, -0.0114207836, 0.0278965496, -0.0122174136, -0.025752889, 0.00165210292, 0.00722036837, 0.0261729304, -0.00564521272, -0.0470156781, 0.0441767797, 0.00160412397, 0.0130792232, 0.00139862963, 0.0599645451, -0.00654685358, -0.0066699693, 0.0252459422, 0.00521068741, 0.00313401665, 0.00115964049, 0.0170189235, -0.00740504218, 0.0349358656, -0.0216538645, 0.00427645724, -0.0859781504, 0.00801699888, -0.00913952384, -0.00278639607, -0.0088932924, -0.030069178, -0.0426124856, -0.0368767455, -0.0318362489, 0.00876293518, 0.0441188402, 0.0647153631, -0.00887880847, 0.0264770985, -0.0300981458, 0.0103489533, -0.00955232326, -0.015831219, 0.00397953112, -0.0150635568, 0.0107183, 0.0284179803, -0.0144479796, 0.00125650351, 0.00162947131, -0.00182681845, -0.0109717734, 0.0304167978, 0.00405195216, -0.00788664166, 0.0275344439, 0.0144262528, -0.00818356685, 0.011036953, 0.0426124856, 0.0125940032, 0.0240872074, 0.0268971398, -0.0314017236, 0.0095450813, 0.036645, 0.0397156477, 0.0284614321, -0.00457700389, 0.0124129504, -0.0400922373, 0.0304747354, -0.00888605, 0.0496518, -0.0127388453, 0.00370795256, 0.0234064497, -0.0395708047, -0.0213641804, 0.0305326711, 0.00493548764, 0.0153966937, 0.0349648334, 0.0420331173, 0.0753177851, -0.00259085954, 0.00679308502, 0.0163961034, -0.00445026718, -0.00534104509, 0.0402660482, 0.000300773245, -0.0223491043, 0.0342116579, 0.00653961161, 0.0544026159, -0.00881363, 0.00725295814, -0.00205132342, -0.010392406, -0.0151359783, -0.0213207267, -0.0160050299, -0.0242175646, -0.00119856675, -0.00519258203, -0.00161227142, 0.0181342047, -0.0133544225, -0.017424481, 0.00730365282, 0.0447851159, -0.0109283207, 0.000428188854, -0.0344144329, -0.0164250713, 0.0141510535, 0.0242175646, 0.00668083271, -0.0204516761, -0.0282441694, 0.00985649135, -0.019032225, -0.0195536558, 0.0309092607, 0.0286642108, -0.0400343, -0.000812019862, 0.00904537644, -0.0019680392, 0.00770558883, -0.0571256429, 0.00993615389, -0.00131987175, -0.0167002715, 0.0485510044, -0.00213822862, -0.00270673307, 0.0270130131, -0.0360366628, 0.0185252782, 0.00289683789, 0.00424748845, -0.0029022696, -0.0257239211, 0.034559276, -0.0440029688, -0.01375998, -0.000269768032, 0.0380354822, -0.00411713077, 0.00137690327, 0.0248983223, 0.023826493, 0.0150201051, 0.0180473011, 0.00160050299, -0.0287656, -0.00772007322, -0.0284469482, -0.00853843, -0.0146797262, 0.00150545046, -0.00395780476, 0.0213641804, 0.0208572336, -0.0235223249, -0.0286642108, -0.0107979635, -0.0112759415, 0.0189308356, -0.013752738, -0.021914579, -0.0294463579, 0.0302140191, -0.0298374314, 0.0266943611, -0.00435612025, -0.040295016, -0.0189453196, 0.013600654, -0.014715937, 0.0421489924, 0.0079445783, 0.0108848689, -0.000180712901, -0.00127822976, -0.0296201687, -0.0508974418, 0.0361815058, 0.0212338213, -0.0608335957, 0.0597328, 0.0197419506, -0.0483771935, -0.0314886272, -0.023348514, -0.0285193697, -0.00283528, -0.0118915197, -0.00335490052, 0.0374561138, 0.0117394356, 0.0137165273, -0.000946903892, 0.006474433, 0.0100447852, -0.040295016, -0.0433077291, 0.0137020433, 0.0264191628, 0.0180038475, 0.00803148281, 0.00827047229, 0.0340957828, 0.0176851954, 0.0176851954, 0.024463797, 0.0397446156, 0.00191915513, -0.0255645942, 0.018076269, -0.0327922069, -0.0290552843, 0.0235947445, -0.03519658, -0.00702845305, -0.070972532, 0.00299098529, 0.0507815704, -0.000214886531, -0.00819081, 0.032473553, 0.0112759415, 0.0112035209, 0.0157587975, 0.0253618155, 0.046697028, -0.00541346613, -0.00305616413, -0.00914676581, -0.0135499593, -0.000285836431, -0.0102185961, -0.0344723724, -0.0115004471, 0.0115656257, -0.0178155527, -0.00882087182, 0.0115294149, 0.0185252782, -0.00776352547, -0.0335453823, -0.0354283266, -0.00738331582, 0.00286243809, 0.00326256384, -0.0182935316, -0.0158167351, 0.0101896273, -0.0150780417, -0.0104575846, -0.0111310994, 0.0116380462, -0.0182500798, 0.0484640971, -0.0440609045, -0.0257239211, 0.00491376128, -0.0250576474, 0.00223418628, -0.0285483375, -0.00291856425, 0.0249707438, 0.0603121668, 0.0145710949, -0.00113881938, -0.0283600427, 5.90683376e-05, 0.00060516753, 0.00137418753, 0.0432787575, -0.0258253105, 0.000363462634, -0.00416782545, 0.00580091821, -0.0414247811, 0.00189561828, -0.0172361862, 0.00226677558, 0.0165119767, 0.00793733634, -0.0040157414, -0.0272592455, 0.00038609418, -0.027824128, 0.0189887732, -0.0443505906, 0.00414972054, 0.00741228415, 0.0364422202, -0.00957404915, 0.0138179166, -0.0195536558, 0.0270999186, 0.00873396639, -0.0220159683, -0.0519982427, 0.00821977761, 0.0251300689, -0.0270274989, -0.00394694181, -0.00695603201, -0.0173230916, 0.00109627214, -0.0256225318, -0.0572415181, -0.0407295413, -0.0374561138, 0.00509481365, -0.0311410073, 0.0250286795, 0.0105807008, -0.00223599677, 0.0214366, 0.0436843149, 0.00710087409, -0.012166719, -0.0241741128, -0.00913228188, 0.0482613184, -0.0207558442, 0.0094509339, 0.0120942984, 0.0120218778, -0.0232471246, 0.0253038798, -0.0156139564, -0.00606163358, -0.0125215817, 0.0270564668, -0.0246810596, -0.010558974, -0.0142524429, -0.00342007936, 0.00415334152, 0.0249707438, 0.000797988323, -0.0128836865, 0.00472546695, 0.0291566737, 0.0253473315, -0.00606887555, -0.00233376515, 0.00603990722, 0.00394694181, -0.00859636627, -0.0203502867, -0.0130430125, -0.0101896273, -0.0242755022, -0.017743133, -0.00583350752, 0.0393100902, -0.00385641563, 0.0299822725, -0.00974061713, -0.00994339585, 0.0092409132, -0.0420041494, 0.00280269072, 0.0155560197, 0.00330058462, 0.00223780726, -0.0198723078, -0.00196260773, 0.00283890124, 0.0191191304, 0.00105644064, 0.0217407681, 0.0173375756, 0.01358617, -0.0232471246, 0.021262791, 0.012311561, -0.0162512604, 0.000220657574, -0.0162657443, -0.00715156877, -0.0374561138, -0.0188004784, -0.00829219818, 0.0436843149, 0.0116018364, 0.0119711831, -0.00350698433, -0.00668807467, 0.00144932419, 0.00686912704, -0.00126917707, -0.0183080155, 0.0130357705, 0.0285338536, 0.0222911686, 0.0178010687, -0.0137961907, -0.0129343811, 0.0213352107, 0.0446982086, 0.012159477, -0.0158167351, -0.0184963103, 0.00877017714, 0.0361235701, 0.000577104453, -0.0275923815, -0.0192060359, -0.0115945935, 0.0312279128, -0.00640563294, 0.00529035041, 0.0134920226, -0.00646719057, 0.0343564972, 0.0287366323, 0.0485510044, -0.00636218, -0.000375457341, -0.011667015, 0.00616664393, -0.037427146, -0.0176417436, -0.000412346766, -0.0188729, -0.00436336221, 0.0259556677, 0.00464218296, -0.0242030807, 0.0197709184, -0.0387307219, 0.0235368088, -0.00885708164, 0.0254052691, -0.0199302454, 0.0574732646, -0.00468925619, -0.00144479796, 0.00194450247, 0.0219290629, 0.00248403847, 0.00321367965, -0.00931333378, 0.0172506701, -0.0144334948, 0.000769472565, -0.00571763376, 0.0152373677, -0.00611594925, -0.00256189099, -0.00067532534, 0.0376878604, -0.0283745285, -0.00245869113, 0.0302140191, 0.0162222926, 0.0117684044, -0.0342406258, 0.00921194442, 0.051013317, 0.0267522987, 0.0279544853, 0.0083356509, -0.014549369, 0.0373692103, 0.0120436037, -0.0036301, -0.00931333378, -0.0174534488, -0.0178010687, 0.0145928208, 0.0127678132, 0.0308223553, 0.02654952, 0.0116525302, 0.0017634501, -0.0140569061, -0.0242465343, -0.0286642108, 0.00301452191, 0.0165264606, 0.0229719244, -0.00752453646, 0.00621733861, 0.0291711576, 0.0353993587, -0.00428007822, -0.0136803174, 0.0298953671, -0.0153822098, 0.00561986584, -0.0321259312, -0.00140044012, -0.0304167978, -0.0189018678, 0.0188729, -0.00396866817, 0.00387814175, 0.00568142347, 0.0460886918, -0.00950887054, -0.0046675303, 0.0187859945, 0.0404108874, -0.0317493454, 0.0647733, -0.026071541, -0.00455165654, -0.0145421261, -0.0128040239, -0.0448430516, 0.00900192373, 0.0151359783, 0.00758971553, -0.0021418496, -0.0378906392, -0.022885019, -0.00316660595, 0.0187570248, -0.0342985615, 0.011196279, 0.00206037587, 0.00934954453, 0.0367319062, 0.0204951279, -0.0233195461, -0.0210310426, 0.0284759179, -0.0012393035, 0.00179785, -0.0197998881, 0.00751729449, -0.00757523114, -0.0154256625, 0.0204371922, 0.000711535802, -0.0178155527, -0.0372533351, 0.00680394797, -0.0176851954, -0.0151070096, -0.00107273529, 0.00409902586, -0.00863981899, 0.0126881506, -0.0092626391, 0.0105300061, -0.0148100844, 0.00993615389, 0.00381296291, 0.0156863779, 0.00240980717, 0.0120798144, 0.0166133661, -0.0172217023, -0.0137020433, 0.00890053436, 0.0282152016, -0.0299533047, 0.0045878673, 0.0357469805, -0.0304747354, 0.010240322, 0.0027266487, 0.0325604603, -0.0108848689, -0.000466662488, 0.00963922869, -0.0264336467, -0.0163671337, -0.000255283841, 0.00806769356, -0.0177576169, 0.0124491611, 0.0140931169, 0.000949619687, 0.0127895391, 0.00649253791, 0.00651426427, 0.0170768593, -0.0112542156, 0.008799145, 0.0290118326, -0.00977682788, -0.0112324888, 0.020480644, -0.00335490052, -0.0150925256, -0.00529035041, 0.0311120395, 0.0252024904, -0.0370795242, 0.0121232672, -0.0152518516, 0.021581443, 0.0279255174, 0.018380437, -0.0171782486, -0.0303298924, 0.0209151693, -0.0300402101, -0.00929885, -0.0311120395, -0.000960482808, -0.0217697378, -0.00261258567, -0.0080387257, -0.0011351984, 0.00584074948, -0.00974786, 0.013600654, 0.0130502554, -0.0127098765, 0.0261149947, 0.000535462401, -0.028635243, -0.0386148505, 0.0270130131, -0.0106024267, 0.0134847807, 0.0288090538, -0.0144552216, -0.0082487464, 0.0102185961, -0.0624558255, 0.030069178, -0.00747384178, 0.00592041248, 0.0105951848, -0.00982752256, -0.0108921109, 0.0320100598, 0.00394694181, 0.00555106578, -0.0365870632, 0.0179748796, 0.02941739, 0.0365001597, -0.00618837029, 0.0356600769, 0.0255356263, 0.00804596767, 0.0123405298, 0.0210744962, 0.0243624076, 0.0249128062, -0.0158891566, -0.00392159447, -0.0280413907, 0.0230588298, 0.0108414162, -0.00189923937, -0.0376009569, -0.0106169106, 0.00585885486, -0.000807946199, -0.00170732383, -0.00228488096, -0.0290697683, -0.0245796703, -0.026404677, -0.0207413603, 0.0148028415, -0.000875388214, 0.00611594925, 0.00895847101, 0.00608698092, 0.00122572458, -0.0273461509, 0.0156284403, 0.00300365873, -0.0253473315, 0.0354283266, -0.00279182754, -0.0611232817, -0.0110079842, -0.0041243732, 0.0450168625, -0.0353993587, -0.0220739059, -0.00733624212, 0.0013434086, -0.0268536881, -0.0273316652, 0.00913228188, -0.028939411, 0.0101316907, 0.00244239648, -0.0112469736, -0.0250431634, 0.00304167974, 0.0282876231, 0.0132964859, -0.0168016609, 0.0105372481, -0.0309092607, -0.00577194942, -0.0253038798, 0.00694516907, 0.056604214, -0.00937851239, 0.0298084617, 0.0520561785, -0.00249490165, -0.00582626509, -0.0327922069, 0.0100447852, 0.0113845728, -0.0146290315, 0.0295332633, 0.0260425732, -0.020480644, 0.00643098028, -0.00447199354, 0.0021762494, 0.0306195766, -0.00523241377, -0.00961026, -0.0363842845, -0.0116597731, -0.0299243368, 0.0143828, 0.0278965496, 0.00323359529, 0.0529831648, -0.00542432908, -0.0128909284, -0.0107979635, 0.00270854356, -0.00471822498, -0.0256080478, 0.0149621684, 0.0556482561, 0.00569228642, -0.0230008941, -0.00783594698, -0.0002208839, -0.039802555, -0.0283455588, -0.00488117198, -0.01407139, 0.0174824167, 0.000528672943, 0.00708276872, 0.0194812343, 0.000647262204, 0.0241161752, -0.00837186165, -0.0201764759, 0.0280703604, -0.0243334379, -0.0114932042, 0.00084958825, -0.0260136053, 0.0156574082, 0.0179459117, 0.0188439302, 0.00965371262, 0.00906710234, 0.0129995607, 0.0073072738, -0.00289683789, 0.00389986811, -0.0043524988, 0.0493621193, 0.0199157614, -0.00971164927, 0.0309092607, 0.0129923178, -0.0282296855, 0.00544243446, -0.00739779975, 0.00525051868, -0.00993615389, 0.00464218296, 0.00123206142, 0.00252568047, 0.00456976192, 0.00161408191, -0.00611957, -0.00881363, 0.0266943611, 0.00427645724, -0.0381513573, -0.00588782318, -0.019350877, 0.00726744207, -0.000260489091, 0.0502891056, -0.00593489688, -0.012956108, -0.0376588926, -0.0246955436, 0.00961750187, 0.025115585, 0.0214800537, 0.0107689947, 0.0326763317, 0.0170189235, -0.00495359302, -0.00137780851, 0.00725657912, -0.0309382286, -0.0102258381, -0.00227220729, 0.0169175342, 0.0198723078, 0.0159470923, -0.0112542156, 0.000557641324, 0.00324445846, 0.0125940032, 0.0217842218, -0.00528310798, 0.0295042936, -0.0238409769, 0.00285338541, 0.0163816195, -0.00696327398, -0.00748832617, 9.74853829e-05, -0.00264517521, 0.013108192, 0.0228270832, -0.00317203766, -0.0158022512, 0.002478607, -0.0123332879, -0.0166568179, -0.0182211101, 0.00390348909, -0.035833884, 0.0173955113, 0.00832840893, -0.0113700889, 0.011674257, -0.000554020284, -0.0196260773, -0.00270130136, 0.0286931805, -0.0151504623, -0.0301560834, 0.00773455715, 0.00185759738, -0.00835013576, 0.00708276872, 0.0196260773, 0.00065359904, -0.000940567057, -0.0188294463, 0.0434815362, 0.0207123905, -0.00287149055, 0.0059312759, 0.00904537644, -0.00884259772, 1.6860502e-05, 0.0092626391, 0.00483047729, -0.0108848689, -0.0223201364, 0.0176272597, -0.0126664238, 0.0279110335, -0.0103634382, 0.0266364254, 0.00883535575, -0.00961026, 0.0219435468, -0.00607249653, 0.00122481934, -0.022885019, 0.0105155213, 0.00523603475, 0.0216104109, 0.0233195461, -0.00156791357, 0.00367174204, 0.0381223857, -0.00479064556, 0.000542251859, -0.0163671337, -0.00111890363, 0.000598378072, 0.000812925166, 0.000980398618, -0.0374850817, -0.0193074252, -0.0114714783, 0.0918297619, -0.000103991959, -0.0184528586, -0.00568142347, -0.0228995048, -0.0215090215, 0.00492462469, 0.018061785, 0.00720950542, -0.00257094367, 0.0241161752, -0.00666634832, 0.0184818264, -0.00942920707, -0.0113121523, -0.0196695291, -0.0249852277, 0.0040628151, 0.0230877977, -0.0258832462, -0.0102982586, 0.014078632, -0.0106965741, -0.000410988869, 0.0130068026, 0.0243768916, -0.0391942188, -0.0152373677, -0.0171492808, 0.0141220847, 0.0346751511, 0.00643098028, 0.0214221161, -0.0026469857, -0.00242610183, 0.0390493758, 0.000762683107, 0.00241704914, -0.0246520918, -0.0136658326, -0.0245217327, -0.00153803988, -0.00571039179, 0.00156067149, 0.00267776451, -0.0292146113, -0.00955956522, 0.00359751051, -0.0215090215, 0.0200606026, -0.0233340301, 0.00160502922, -0.0311120395, 0.00643460127, -0.00896571297, 0.00300003774, 0.0008799145, -0.0217987057, 0.0216104109, -0.0146724842, -0.0121377511, -0.00984200649, 0.000936946, 0.00482323533, -0.0126953926, 0.000490651932, -0.00779249426, 0.0121812038, -0.0384410396, 0.0287945699, 0.0185687318, 0.0122029297, -0.00367536303, -0.000449236191, -0.0165409446, 0.0170044396, -0.00508032972, -0.00589144416, 0.0111673102, -0.0349358656, -0.0228415672, 0.00109717739, -0.00886432454, -0.00366631057, -0.00862533506, 0.00890053436, -0.0216828324, -0.00868327171, -0.00132168236, 0.00840083, -0.0266943611, -0.0257094372, -0.0197709184, -0.022233231, 0.00133164017, -0.0270999186, 0.0244493131, 0.00992891192, -0.00817632489, -0.0006178412, 0.00449734088, 0.00196441822, 0.00512378197, -0.0117104677, 0.00372605771, -0.0156139564, 0.0335743502, 0.0151649462, -0.0429311395, 0.0312279128, 0.0255211424, -0.00819081, 0.00416058348, 0.0294898096, -0.00180418685, 0.000987640698, -0.00557641312, -0.0102620488, -0.00576470746, 0.00731813675, -0.000679399, 0.00586609682, 0.0149042308, -0.00280450121, 0.00939299725, 0.00838634558, -0.00519258203, 0.00897295587, 0.00609060191, -0.0108921109, -0.0223056525, 0.00698862132, 8.4245934e-05, 0.0101172067, -0.0114425095, 0.0074666, -0.0142958956, 0.0151649462, -0.00586609682, 0.0205820333, 0.010240322, 0.00528310798, 0.00552933943, -0.00272483821, 0.0256659836, 0.0400922373, -0.00338386884, 0.0149476836, -0.00995063875, -0.000309146912, -0.0406136662, 0.00148372422, 0.0109210787, 0.00156519772, 0.00723485276, -0.0320969634, -0.0221608095, 0.0200461186, -0.00083691458, -0.00708276872, 0.0299243368, 0.0150780417, 0.0316914059, -0.00849497691, 0.00893674511, 0.00192639721, -0.0196695291, -0.0510422848, 0.00808942, -0.00405919412, 0.00537001342, -0.0303588621, 0.0254052691, 0.00527224503, 0.0241016913, 0.00131715601, -6.55749e-05, 0.0154980831, 0.0326763317, 0.015034589, 0.00479788799, 0.0167292394, -0.0126157291, 0.0243334379, -8.20393543e-05, -0.00198071287, -0.000216697052, -0.00292218523, 0.0212483071, -0.00884984, -0.0225953367, 0.0301850513, 0.0148245683, 0.00571039179, 0.00903813448, -0.0066699693, 0.0166568179, -0.0134558119, -0.00341283716, 0.000238989131, -0.000886251335, -0.00135608227, 0.0132240653, 0.00481961435, -0.0101389326, -0.00918297656, -0.014860779, 0.0157298297, 0.0288090538, -0.00541708712, 0.0115511417, -0.0196984988, -0.00117774564, -0.00964647066, 0.0150490729, 0.00203502877, 0.00395780476, -0.012166719, 0.00357216317, -0.0030217641, -0.00744487345, 0.0132385492, -0.0256080478, 0.00895122904, -0.00811838824, 0.00859636627, -0.0122391405, -0.0020078707, -0.00215633377, 0.0144190108, -0.0220014844, 0.0259846356, 0.0388755649, 0.0170189235, 0.00626803329, 0.0186990891, 0.0240872074, -0.00129542977, -0.0153387571, 0.0152518516, -0.00414247811, 0.0179893635, -0.00542432908, 0.01327476, 0.00838634558, -4.46973027e-05, 0.0103199854, -0.00683653774, -0.00449734088, 0.0202923492, 0.00926988106, 0.0144552216, 0.0180328153, -0.033110857, 0.0270564668, 0.011348363, -0.00282441708, 0.00626441184, 0.000937851262, -0.0205965172, -0.00573936, 0.00691620074, -0.00995788071, -0.0177141633, -0.0216248948, -0.012470887, -0.0222621989, 0.0050042877, -0.0163381658, -0.0182500798, -0.00687999, 0.00506584533, 0.00562710781, -0.00769834686, 0.0186266676, -0.0233919658, 0.0244348273, 0.00736883143, -0.0197709184, -0.0171637647, -0.00701034768, 0.0200171508, -0.00534104509, 0.00241161766, -0.020480644, 0.0196115933, -0.00701759, 0.0132168233, -0.0116959829, 0.0188439302, 0.0195826236, 0.00914676581, -0.019177068, 0.00617750688, 0.00551847648, 0.035978727, -0.00782146212, -0.0207268763, -0.0138758542, -0.00381658389, -0.00379123655, 0.0149476836, -0.0050839507, -0.0176707115, -0.00949438661, -0.00340921618, 0.0138106747, -0.0406136662, 0.0309961662, -0.0110876476, -0.00697051641, -0.0246955436, -0.0197998881, -0.00652512768, 0.00776352547, 0.00234643882, 0.017424481, -0.0031829006, -0.00879190303, -0.0261729304, -0.024145145, -0.0371084958, -0.0533887222, 0.0162512604, -0.00141945062, -0.0258687623, -0.00223780726, -0.00448285649, 0.0113411201, -0.0257239211, 0.0053265607, -0.00334041636, -0.0108052054, -4.57723036e-05, 0.0043995725, 0.00939299725, -0.00320462696, 0.00885708164, -0.00771283126, -0.00156519772, 0.000137599796, 0.0329080783, -0.0121377511, 0.0174679328, 0.00560176047, -0.000164191864, 0.000300773245, -0.0181342047, -0.0129271392, 0.00589868613, -0.0175258704, 0.00364277372, 0.0114497524, 0.00642373832, 0.00168378709, 0.0309382286, 0.00812563, -0.000526862394, -0.0162802301, 0.00807493553, -0.00474357232, -0.00161136605, 0.0356890447, 0.00522517134, 0.0101461746, -0.00857464, -0.0114932042, 0.00195717602, 0.00594576, 0.0141655374, -0.018235594, 0.0272592455, 0.00989994407, -0.00619923323, 0.0269116238, 0.0071914, 0.0261729304, -0.00599283352, 0.00550399208, 0.00328066899, -0.027186824, -0.0289828628, -0.0161933247, -0.00522517134, 0.018394921, -0.00527224503, -0.00358845806, 0.00259448052, 0.00309599563, 0.00979131181, 0.0321549028, 0.00866878778, 0.00572487619, -0.00934954453, -0.0205385815, 0.00977682788, -0.0147376629, 0.0092626391, -0.039802555, 0.0114063, -0.00361923687, 0.0284759179, -0.00244058599, 0.0159470923, 0.0208427496, 0.00341102667, -0.00171909225, -0.0119494563, -0.0004508204, 0.00315755326, -0.0212772749, 0.0030634061, -0.00661927462, -0.0186411515, 0.0258108266, -0.00480150897, -0.0190901626, 0.0230008941, 0.0021834916, -0.00611232826, -0.00776352547, -0.021987, -0.0145276422, -0.000736883143, -0.0233050603, -0.0261584464, 0.00962474383, 0.00557279214, -0.0201764759, 0.0228126, -0.00375502626, -0.0129126552, 0.00414247811, -0.00137147168, 0.0122029297, -0.0139844855, -0.00715156877, 0.00621733861, -0.00480875093, 0.0113049103, -0.0255211424, 0.0138613693, 0.0165409446, -0.00839358754, -0.00856015645, 0.00107635639, -0.00830668304, 0.00895122904, 0.0145131582, 0.0212193374, -0.000122662983, -0.0135499593, -0.0134847807, 0.0123405298, 0.00149730314, -0.00509481365, -0.013600654, 0.00113429315, 0.0107834795, 0.000419588876, 0.0135354754, 0.0125143398, 0.00196622871, 0.00241523865, 0.0268536881, 0.0209875908, 0.00404471, -0.00275561702, -0.0144624636, 0.00305435341, 0.0122318985, -0.0284179803, -0.00811838824, 0.00399401551, 0.0317203738, 0.0113266362, -0.024637606, 0.00787939876, -0.00157515565, 0.00260715419, 0.0133906333, 0.00378761557, 0.00267595402, 0.00394694181, 0.0215524752, 0.00827771425, -0.0162512604, -0.0048159929, -0.00256370148, -0.0168885645, 0.0190901626, 0.00661203265, 0.00326075312, -0.0113266362, 0.0196695291, 0.0131226759, -0.0271433722, 0.0228415672, -0.0224939473, -0.0128257498, 0.00201692339, 0.00690533733, -0.00482323533, -0.00722399, -0.000800251495, -0.0130719813, 0.0123043191, 0.000529578188, -0.00353776338, 0.0221028738, 0.00373692089, 0.00244420697, -0.012311561, 0.0299822725, 0.0163816195, 0.0109138368, -0.0332267322, -0.016164355, -0.00885708164, 0.0255066585, 0.0116887409, 0.0152373677, 0.00677860063, -0.0301271137, 0.0238409769, -0.000690714805, -0.0160629656, -0.0116018364, 0.00645270664, -0.00039152574, 0.0019752814, 0.0100230593, -0.00555468677, -0.0103634382, -0.0173230916, -0.0297215581, 0.0129778339, -0.00122391398, -0.00544605544, 0.0117177097, -0.0112180049, 0.0146435155, -0.00953059644, -0.0080604516, -0.0138251595, 0.00340378447, -0.00196079724, -0.00362828956, -0.00162222923, -0.015990546, 0.00626803329, -0.00232290197, -0.00853118766, 0.0290552843, 0.0111745521, 0.005279487, -0.00155705039, -0.00385279441, -0.00996512268, 0.0147304209, -0.00758971553, 0.0120798144, 0.00406643609, 0.0110007422, 0.00135155593, 0.0296636205, -0.000472546701, 0.0100520281, 0.010566216, -0.0218566414, -0.00957404915, -0.00237902813, 0.0148318103, 0.0227981154, 0.0213207267, 0.039512869, 0.00345266866, 0.00676773768, -0.0209731068, -0.0134051172, 0.0250431634, -0.00402660482, 0.0140062114, 0.00921194442, 0.0118842777, 0.0130285285, 0.00303805876, 0.00953059644, -0.0124636451, -0.0102910167, 0.00251481752, 0.0130574973, -0.0389045328, -0.00659754826, -0.00276285922, -0.000521430804, -0.0145059163, 0.00308694295, -0.00955956522, 0.000389488909, -0.0021834916, -0.00541346613, 0.00176254485, 0.0108341742, -0.0210165586, -0.0169754699, 0.00184582896, 0.00130086124, -0.0383251645, 0.00845152512, 0.00100031437, -0.0308802929, 0.00146561896, 0.0020965864, 0.00686550606, 0.00129361916, 0.0178300384, 0.00700672669, -0.00395418378, -0.00614129659, 0.00739055779, 0.0100303013, -0.0011315773, -0.00800975692, 0.0338930041, -0.00392521545, 0.0229719244, -0.0184818264, -0.0213786643, 0.00837910362, 0.00517809764, 0.0198578238, -0.00207123905, -0.00439595152, 0.000138278745, 0.0119277304, -0.0198723078, -0.0110948896, -0.00675687473, -0.0118842777, 0.00849497691, 0.00989994407, -0.015845703, -0.0171637647, 0.0112831835, 0.00299098529, 0.00427283579, -0.0025184385, -0.00881363, -0.000873125042, -0.0035957, 0.0149332, -0.00107997737, 0.00103833538, 0.0159326084, 0.00201330241, 0.0163816195, 0.0123477718, -0.0197274666, -0.00924815517, -0.0130574973, 0.0140351802, -0.00234824931, 0.0273026973, 0.0123405298, -0.032966014, 0.00192096562, 0.00420041522, -0.00427645724, -0.0335453823, 0.00587333879, 0.01023308, -0.00343275303, 0.0107979635, 0.0145710949, 0.0231747031, 0.0362104736, 0.00240256498, -0.0102113541, -0.012159477, -0.00605439115, -0.00675687473, -0.00950887054, -0.0233629979, 0.00929885, -0.0301560834, 0.0167437233, -0.0160774514, -0.00862533506, -0.00905986, 0.0127533292, -0.00388176274, -0.0123839825, 0.00308875344, 0.0138324015, 0.00764765218, -0.0171347968, 0.0109572895, 0.00907434523, 0.013115434, 0.0249852277, -0.00225048093, -0.0328791104, -0.0227401778, 0.0123477718, -0.00119494565, 0.011355605, -0.0127460873, 0.00482323533, 0.00102113537, -0.0162078086, 0.00185216579, 0.000344678439, 0.0128329918, -0.00635855924, 0.00394694181, 0.00828495622, 0.0117249517, -0.00848049298, -0.00284433272, -0.0119422143, 0.00653236965, -0.0108052054, -0.0105082793, -0.0197274666, -0.0130719813, 0.00848773494, -0.00259810151, 0.00617388589, -0.01358617, -0.018713573, 0.0270854346, -0.00891501922, -0.0140931169, -1.36142899e-05, 0.0109500475, -0.00891501922, -0.00434887782, 0.00514912931, -0.00695965299, 0.0094509339, 0.0217407681, -0.00517085567, -0.00491738226, -0.00546416035, 0.00329515315, 0.0128474766, -0.00885708164, -0.00839358754, 0.0216828324, 0.0106096687, -0.00101208279, 0.00697775837, -0.0145928208, -0.000657672761, 0.00382020511, 0.0176996794, 0.00542795, 0.00136785069, -0.00998684857, 0.00450820383, 8.46419862e-05, 0.022696726, -0.00544243446, 0.0104865534, 0.00698137935, 0.00529759238, -0.00141582952, -0.0168161448, 0.00799527299, -0.0146000637, -0.00606163358, 0.00446837256, 0.00332593196, 0.00566693908, 0.000101672224, 0.00463856198, 0.00233738613, 0.00966819655, 0.0059312759, 0.0019680392, -0.0105155213, -0.0208717175, 0.0248693544, 0.00522155035, -0.0185687318, -0.00624268595, 0.00194450247, 0.017916942, -0.0108631421, 0.00712622143, 0.0106386375, 0.0128474766, -0.0212917589, 0.00839358754, 0.000354862656, -0.00404833117, -0.000638209633, 0.00473995088, 0.00382020511, -0.00515637174, -0.0189742893, -0.0130212866, -0.00886432454, -0.0144479796, 0.0122536244, -0.00819805171, 0.0112324888, 0.0149476836, 0.0141076008, 0.0153097883, -0.0218421575, -0.000644546468, -0.0124853719, 0.0139772426, -0.00924815517, 0.010066512, -0.00782146212, -0.0181486905, -0.0336033218, 0.0266364254, -0.0225953367, -0.0127822971, 0.000814735657, 0.00435612025, 0.00305978511, -0.013115434, -0.00974786, -0.00921918638, -0.00280631171, -0.0100085754, -0.0262598358, -0.0141220847, -0.0268826559, -0.0122246565, -0.00718777906, -0.00692344271, 0.000449236191, 0.0150635568, 0.0170913432, 0.016309198, 0.0303588621, -0.00430904655, 0.0033911108, -0.0246665757, -0.018394921, -0.00748108421, -0.018394921, -0.00155886088, -0.0178155527, 0.021755252, 0.00255464902, -0.0093350606, 0.000837367203, 0.0121449931, 0.0122463824, 0.0123332879, 0.00102385122, -0.0119784251, 0.00631510653, -0.00337662664, 0.0195826236, 0.013267518, 0.0110876476, 0.0128185079, 0.00219616527, 0.00456252, -0.0260570571, -0.00576832844, -0.00376588921, 0.0170189235, -0.0101968693, -0.0178010687, -0.00668083271, 0.0142596848, -0.012166719, -0.0311410073, -0.00676773768, -0.0093567865, 0.00754626282, -0.0116235623, 0.00107183, -0.0135499593, 0.00172814494, -0.00100303011, -0.0223201364, -0.00157515565, 0.0166857857, 0.0242320485, 0.000241704911, 0.00122662983, 0.00112071412, 0.00578281283, 0.00733262114, 0.017105829, -0.00363553152, -0.0154401464, 0.00198433409, -0.0146724842, 0.0129705919, -0.00639839098, -0.0112831835, 0.000925630273, -0.00946541782, -0.00431990949, 0.0112469736, 0.0198433399, -0.000441088836, 0.0220304523, 0.0155849885, -0.00290951156, 0.0233195461, 0.0325025208, -0.0144914314, -0.00125107192, -0.0115873516, 0.0103851641, -0.00446113059, -0.0039831521, -0.0168595966, 0.0109138368, 0.000811114616, -0.0179603957, -0.0442347154, -0.0200750865, 0.00131625077, -0.0121377511, -0.0116163203, 0.0235368088, 0.0208427496, 0.00660841167, -0.000220997055, -0.00955956522, -0.00436336221, -0.0153822098, 0.0130068026, -0.00233738613, -0.0175838061, -0.00318833231, -0.0164540391, -0.0252314582, 0.0102185961, -0.00882811379, 0.00811114628, -0.00576470746, -0.00281717489, -0.00176254485, 0.00370433158, -0.0100085754, 0.0133037278, 0.0252024904, 0.00546053937, 0.0106531214, 0.0135137495, 0.00150997681, -0.0191625822, 0.0236381982, 0.00843704, 0.0193219092, 0.0258253105, -0.00967543852, 0.0287945699, -0.030706482, 0.0112759415, 0.0123260459, -0.00959577598, 0.000313220604, -0.0233340301, -0.0213641804, -0.00600007549, 0.00232109148, 0.0170913432, 0.0231022835, 0.00842255633, 0.00856739841, -0.0142162321, 0.0110586789, 0.0233774818, 0.0223925579, -0.025101101, -0.0040628151, -0.00356854219, -0.0140062114, 0.00112976681, 0.00306702708, -0.0082415035, -0.00968268048, -0.0342695937, 0.0243624076, 0.000814283034, 0.00108450372, -0.00251481752, -0.0117539195, -0.0154835992, -0.0100375433, -0.0211034641, 0.0204951279, -0.0191336144, -0.000472999323, 0.0100013334, 0.00596748618, 0.0113338782, 0.0118697938, 0.00228126, 0.00772731518, -0.00807493553, -0.00987097528, -0.0179024581, 0.00226858631, 0.00829219818, -0.023189187, 0.00627527526, 0.0235368088, -0.0171637647, 0.0106603634, 0.00282441708, -0.00289140642, -0.0139555167, 0.0314306915, -0.00106820895, 0.0108848689, -0.0149042308, 0.0190177411, 0.036645, 0.0157877672, 0.0033657637, 0.00459510926, -0.00540260272, -0.0151794311, 0.00172542909, -0.00225048093, 0.00258904882, -0.00708276872, -0.00765489414, -0.0154401464, -0.000413252041, -0.00856015645, 0.0160629656, 0.0210310426, 0.00356854219, -0.0193219092, -0.000596114958, -0.0208572336, 0.0135716861, -0.0200895704, 0.0020549444, 0.000578009698, -0.0140206954, 0.0234209355, -0.0107400268, -0.00782870408, 0.0165264606, 0.00442492, -0.0261005107, -0.00321367965, -0.00108993531, -0.00895847101, -0.00203864975, 0.0299243368, 0.00183496578, -0.00323902699, -0.00751005253, -0.0177721, 0.00681481138, 0.00112524047, -0.0077707679, 0.00732537918, -0.022378074, -0.0373112746, 0.0110079842, -0.00610146485, 0.0152373677, -0.000643188541, 0.0224215258, -0.00553296041, 0.0168451127, 0.000911146053, 0.00389262591, 0.0043524988, 0.00416782545, 0.0074666, 0.00248403847, 0.0114642363, -0.0181052368, 0.014715937, 0.00353957387, 0.00128637708, 0.00742314709, 0.0106531214, -0.0117032249, -0.00736158947, 0.00957404915, 0.00636942266, -0.013745496, -0.00667721126, 0.00653236965, 0.00529759238, 0.0238409769, 0.0126664238, -0.00343637401, -0.0213207267, -0.00274294335, -0.00611957, 0.0123405298, 0.0179893635, -0.0177865848, -0.0135644432, -0.00285157491, 0.0108921109, 0.00793009344, -0.00881363, 0.0132168233, -0.00724933716, 0.0342695937, 0.00538449734, 0.00208753394, 0.0100375433, -0.0154546304, -0.0104720695, 0.0217987057, 0.0142596848, -0.00882811379, -0.0254776906, -0.0246231221, 0.0288090538, -0.00372967892, -0.0205096118, -0.0152808204, 0.00163128192, 0.0240437556, 0.00898019783, -0.00337119517, -0.0173665434, 0.00816184096, 0.0215235054, -0.00198614458, 0.0210310426, 0.0208717175, 0.0209875908, -0.0288669895, 0.00484134024, 0.00148010312, 0.0171927325, -0.00964647066, -0.0135789281, 0.00661203265, 0.0119204884, 0.00388900493, 0.00175711326, -0.0107979635, -0.00696689542, 0.0131371599, 0.03038783, -0.0259991214, 0.00658306433, -0.0163381658, 0.00640925393, -0.00820529368, 0.0138468854, 0.000660388498, -0.00515275029, -0.0168595966, 0.00371157355, -0.0130502554, 0.00733624212, -0.00170189224, 0.013108192, -0.0101244487, -0.0213641804, -2.04108255e-05, -0.0144262528, 0.0162367765, 0.00751729449, 0.0162512604, -0.00245325966, -0.0245072488, -0.00119766139, -0.000768114696, -0.0174534488, 0.00377675239, 0.00622095959, -0.00509843463, 0.00905261841, 0.00674601132, 0.00934954453, -0.00407005753, 0.0086180931, 0.00177883951, 0.0108848689, -0.00366812106, -0.0140569061, 0.00254921732, 0.0231602192, 0.0121812038, 0.0202488974, -0.0115728676, -0.0208572336, -0.0168016609, 0.023189187, -0.00107997737, 0.0056959074, -0.0110441949, -0.0176417436, 0.0118770357, -0.0067025586, 0.00608698092, 0.00227582827, -0.0321838707, -0.00160050299, -0.0126809077, -0.0134847807, -0.00115149305, -0.000644093787, 0.0264481306, 0.00299641676, -0.0404977947, 0.00199700776, 0.00677860063, -0.00220159674, 0.0185397621, -0.0120146349, 0.00785043091, 0.00290770107, -0.0145131582, -0.0181631744, -0.00359751051, 0.0126881506, -0.00225229142, 0.00546416035, 0.0132240653, -0.0162657443, -0.00668445369, -0.00531569775, 0.0121015403, -0.00724933716, 0.00547864474, 0.00464580394, 0.0112252468, -0.000872672419, -0.0299533047, 0.00556192873, -0.00799527299, 0.00660479069, 0.0260425732, 0.0136223808, -0.0267378148, 0.00426197285, 3.83038932e-05, -0.0141076008, -0.0127750551, -0.00752453646, 0.000731904234, -0.0155560197, 0.0136368647, 0.0190032572, 0.00985649135, 0.00235187029, -0.000847325078, 0.00213460741, -0.0304457676, 0.00942196511, 0.0087049976, 0.0121812038, 0.00101479853, 0.0177141633, -0.0168451127, 0.00131534552, -0.0128402337, 0.00290770107, 0.0151649462, 0.000777167326, -0.00953059644, 0.0116380462, -0.00460235123, 0.018076269, 0.000944188097, 0.00544967642, -0.00293666939, 0.0126157291, -0.0105879428, 0.00609060191, 0.0117394356, -0.00726744207, -0.0161933247, 0.00411351, -0.0217987057, 0.00158601883, 0.0134196021, 0.020784812, 0.0350517407, -0.00530845532, 0.0109572895, 0.0269405935, -0.00115511415, 0.0327342674, -0.00676049571, 0.00787939876, 0.00539174, -0.0137889488, -0.000998503878, -0.0102837747, -0.010711058, 0.017265154, -0.00414972054, -0.00828495622, -0.0103634382, -0.0235368088, 0.0215524752, -0.0122101717, 0.00301995361, 0.0105155213, 0.00788664166, 0.00472908793, 0.0208572336, -0.0184963103, -0.0199302454, 0.0216828324, 0.0166713018, 0.00710811606, -0.0147593897, 0.00774904154, 0.0300402101, 0.00774904154, 0.00546416035, 0.0186846051, 0.0026053437, 0.0275778975, 0.000172565546, 0.00159416615, 0.0295622312, 0.0202344134, -0.017279638, 0.0237540714, -0.0152228838, -0.0129054133, 0.00177612377, 0.0269840453, -0.0048159929, 0.0157008618, 0.00702483207, -0.0202778652, -0.015034589, 0.017105829, -0.0107834795, 0.0026053437, -0.000327252172, 0.0153387571, -0.0135499593, 0.0222477149, 0.0250721332, -0.00382020511, -0.0017199975, 0.00283709075, 0.010877626, -0.0191480983, -0.00355586852, 0.00593851786, -0.0200606026, 0.00715156877, -0.0097261332, 0.00432353048, 0.00535915, -0.0118770357, -0.00345810037, -0.00229574414, -0.0215090215, 0.0122970771, -0.0169030502, -0.00143936637, 0.034848962, 0.038354136, -0.00141039793, -0.00713708438, -0.00407005753, 0.00143936637, 0.0353124551, 0.0129343811, -0.00279544853, -0.00062327279, 0.00975510199, 0.00105915638, -0.000123568243, 0.0345303081, 0.003277048, 0.0114859622, 0.0125288237, -0.00229936512, 0.0193074252, 0.0040157414, -0.0126809077, 0.00926988106, -0.0589216836, -0.0108993528, 0.00482685631, 0.00671342202, -0.0164685231, -0.0012166719, 0.0209875908, 0.00101027219, 0.0220594201, 0.00980579667, 0.00235187029, 0.0115438988, 0.029750526, 0.0130937072, -0.00281898538, 0.005036877, 0.0206689388, -0.00404471, -0.0144697055, 0.00894398708, 0.00720588444, 0.024000302, 0.00697051641, 0.00111618789, -0.00206942856, 0.00714432634, 0.0117828883, 0.00126555609, -0.0100520281, -0.00803148281, 0.0148245683, 0.012152235, 0.00874120835, -0.0164685231, -0.00165210292, -0.00545691838, 0.0142234741, -0.00454803556, -0.00400487846, -0.0127895391, -0.00626441184, 0.0063476963, 0.00442854082, -0.0245072488, -0.00976234395, 0.0177721, -0.0125577925, -0.00643822225, 8.16433e-05, 0.00565245515, -0.0194088146, -0.00318833231, -0.0128619606, 0.00924815517, 0.00818356685, 0.000775356777, -0.0143393474, -0.00643822225, 0.0255790781, -0.00476529822, 0.00141854538, -0.037919607, -0.0140206954, -0.000968630193, 0.0233340301, 0.019177068, -0.00183677627, -0.0103055006, -0.0108848689, 0.0134920226, -0.018713573, 0.00159416615, -0.0276068654, -0.00345810037, 0.0080604516, -0.0117901303, -0.000991261681, 0.00994339585, -0.00552209746, -0.00302719558, 0.0109645315, 0.00128999818, 0.0232616086, 0.0221608095, 0.0113411201, -0.00309961662, -0.0151214944, 0.0037803736, 0.0124853719, 0.00786491483, 0.0312568806, 0.00194812356, -0.0250866171, -0.00871224049, -0.00221427041, -0.00792285148, -0.0155849885, -0.00354319485, 0.00892950315, 0.0137744648, -0.00632234896, 0.00942196511, -0.00753902085, 0.0217987057, 0.019191552, -0.0134051172, 0.0371084958, 0.00105100905, -0.0113121523, 0.00506584533, 0.0273606349, 0.015976062, 0.0145276422, 0.0156863779, 0.0118046142, -0.0158746727, -0.00871948246, -0.0143972849, -0.0273171812, 0.00564521272, -0.00603266479, 0.000246683863, -0.0167147554, -0.0103417113, -0.00433801487, 0.00137147168, 0.00130719808, 0.00774179958, -0.00261982786, 0.000933325, -0.0273026973, 0.00255283853, -0.000701125304, 0.0130140446, 0.0152083989, -0.0111021316, -0.00401212042, 0.00778525183, -0.0156284403, -0.0160774514, 0.0208137799, -0.0118915197, 0.0133471806, 0.0134702967, -0.0199012775, -6.83472681e-05, -0.00625717, 0.000339020567, 0.0102692908, -0.0279979389, -0.00363372103, -0.00460959319, 0.0114352675, -0.00929160789, -0.0358628519, 0.00428369921, -0.00654685358, -0.00332955318, 0.00413523614, 0.00260353321, 0.0170913432, 0.00519258203, 0.013745496, -0.0181342047, 0.0239133965, 0.0104141328, 0.0128836865, 0.0080387257, 0.00693068467, -0.00351422653, -0.0203358028, 0.00905986, -0.0156574082, -0.0185687318, -0.00561624439, -0.0136223808, 0.0122608664, -0.0253183637, 0.00300546945, -0.00711535802, 0.00686550606, 0.00257637515, 0.0186701212, -0.00247679651, 0.00990718603, -0.0234643873, 0.00828495622, 0.0188729, 0.0214800537, 0.00897295587, 0.00690895831, 0.0385279432, -0.00604352821, 0.0101679014, 0.01759829, -0.0142814107, -0.00448647793, -0.011036953, 0.0212917589, 0.010551732, 0.0227256939, -0.000344225817, 0.00147919788, -0.0137889488, -0.0078721568, -0.0107689947, 0.0170623753, -0.0076911049, -0.0189163517, 0.0179748796, 0.00748108421, -0.00781422, 0.00552933943, -0.00102475646, -0.00376588921, 0.00522879232, -0.026868172, 0.00876293518, -0.00467115128, 0.0181921422, 0.0292435791, 0.00771283126, 0.0216973163, 0.0152518516, 0.0398604907, -0.0219290629, 0.0135499593, 0.0144986743, -0.0332267322, 0.00167745026, 0.00350155286, -0.00213822862, 0.00152808207, 0.00379847875, 0.00278639607, 0.00216538645, 0.0165843964, -0.0122825932, -0.0101751434, 0.0173665434, 0.0113193942, -0.00835737772, 0.000473904569, 0.00709001068, -0.00307064829, -0.000279952219, -0.00575022353, 0.00117955625, 0.0186556373, 0.00523603475, -0.00455527753, -0.0305326711, 0.00116688258, 0.0202344134, 0.0126664238, 0.00124382984, -0.00730003184, 0.0186846051, 0.00276466971, -0.00798803102, -0.0309092607, -0.00288416422, 0.010877626, -0.00842255633, 0.0187859945, -0.00543157104, 0.0013832401, -0.0190611929, -0.0138251595, -0.000138391901, 0.00627165427, -0.0249128062, -0.00821977761, -0.00321186916, -0.0160484817, 0.0264191628, 0.00884984, 0.0205675494, -0.0389335, 6.61406957e-05, -0.00332050049, 0.0110659208, -0.000990356435, -0.0125215817, 0.0173665434, 0.0086180931, -0.0216248948, -0.0146362735, -0.000913861848, -0.0139627587, 0.0182500798, -0.0148462942, 0.00946541782, 0.0210889801, -0.0255356263, -0.0212772749, 0.00217262842, -0.010558974, -0.00694516907, -0.0127678132, -0.0103851641, -0.0275344439, -0.012152235, -0.010066512, 0.022870535, -0.0223635882, 0.00770558883, -0.0278965496, 0.0109355636, -0.019350877, -0.0167292394, 0.0135572013, -0.0234933551, 0.0110007422, -0.0100085754, 0.00965371262, -0.00715881074, -0.00211831275, -0.000184220786, -0.0251300689, -0.00566693908, 0.0257384051, 0.00442854082, 0.00273932237, 0.00108903006, -0.00540984469, 0.0240147859, 0.00161770289, -0.0202778652, -0.0351676121, 0.0133109707, -0.00467839325, -0.0140858749, -0.000998503878, -0.0083356509, -0.00995788071, -0.0142162321, 0.0045878673, -0.0205675494, -0.012000151, -0.0190467089, -0.0256225318, -0.0147738736, -0.00963922869, -0.0149332, -0.0192350037, -0.00447199354, -0.00392521545, 0.0134920226, -0.0135427173, -0.00984200649, -0.0193363931, -0.0220159683, 0.0291566737, 0.0118987616, 0.00619923323, -0.0206399709, -0.00953059644, 0.00451906724, -0.0194232985, -0.0131371599, 0.0136441067, -0.000250983838, -0.0459438488, 0.00866878778, 0.019191552, -0.00620285422, 0.0107038161, -0.0182211101, 0.00196441822, 0.0154111777, -0.0143465903, -0.0145348841, 0.0623399541, 0.0239568502, 0.019177068, -0.0267378148, 0.0058697178, -0.00241342816, 0.00010642485, 0.0322418064, -0.00903089251, 0.0152083989, 0.00712984242, 0.0323576815, -0.0135137495, 0.0152663356, 0.0180907529, 0.00989270117, 0.00567418151, 0.0114207836, 0.00478340359, -0.0128402337, -0.00883535575, -0.0118987616, 0.0180907529, -0.017424481, 0.0116452882, -0.00774179958, 0.000624178036, -0.0137165273, -0.0254921746, 0.0192929413, 0.00472184597, 0.00980579667, 0.017265154, -0.00990718603, -0.0150201051, -0.00984200649, 0.0180473011, 0.0281282961, 0.0162657443, -0.0339219719, 0.0251590367, 0.0211758856, 0.00754626282, 0.00953059644, -0.00567780249, 0.00309599563, -0.0112542156, -0.00903813448, -0.00982752256, -0.00350879505, 0.0220883898, -0.0256370157, -0.00382020511, -0.00728554744, 0.0275634136, 0.00100484071, 0.0129778339, 0.00627527526, 0.0055945185, 0.024463797, 0.0010881247, 0.00694879, -0.01040689, -0.00530845532, -0.00237178616, -0.0196695291, 0.0131661287, -0.000637756952, 0.02654952, -0.00235368079, -0.000892135547, -0.0108486582, 0.000993977534, 0.00627165427, 0.0240292698, -0.00605801214, -0.00617026491, -0.00170370284, 0.0085239457, -0.0240437556, -0.0268247202, 0.00177159742, 0.0111673102, -0.0339509398, -0.0025655122, -0.00947990175, -0.00228669145, -0.0137310121, -0.00734348409, 0.00422214111, -0.00163399766, 0.00907434523, -0.00635493826, 0.000812019862, 0.00125650351, -0.000481146679, -0.0210310426, 0.0260860249, -0.011985667, -0.0128836865, 0.00884259772, -0.00664100097, -0.0124274343, -0.00586247584, -0.0124998558, 0.0180183314, -0.00234824931, 0.0184383728, 0.00977682788, -0.00827047229, -0.0168306287, 0.000171207648, -0.0092409132, 0.0216973163, 0.0232326407, 0.00835013576, 0.00481237192, 0.00612319121, -0.000787125202, 0.000433394103, 0.00260353321, -0.00442492, -0.0112831835, -0.0030163324, 0.000199836548, -0.0100375433, 0.0163671337, 0.0124419192, 0.0247969329, -0.00512016099, -0.00113791414, 0.00859636627, 0.00298917457, 0.00483771926, 0.0119060036, 0.0118625518, -0.00171003968, -0.00359388953, -0.00263069104, 0.0106965741, -0.0119711831, -0.00641287491, 0.0101244487, 0.000734167348, -0.00926988106, 0.00668445369, 0.00190648146, -0.00716967368, 0.0256370157, -0.0022631546, 0.00888605, -0.0117539195, 0.000334494252, 0.00866878778, -0.012152235, 0.00923367124, 0.0124057084, -0.0109500475, 0.0307354499, -0.0136730755, -0.000536367646, -0.0049427296, 0.0170478914, -1.96753e-05, 0.00525413966, -0.0187715106, -0.00539898174, -0.0106386375, 0.0102692908, -0.00629700162, 0.0221897792, 0.0222911686, -0.0181921422, 0.00782146212, -0.00231384928, -0.00874120835, -0.0311989449, -0.0192494877, 0.0131806126, -0.010392406, 0.00344723719, 0.00676773768, 0.00723485276, 0.0550399199, 0.0115728676, -0.0178879742, 0.0049101403, -0.0272157919, 0.0247389954, -0.0155705037, -0.0298084617, -0.0192784574, -0.0158891566, -0.00397228915, 0.00603990722, 0.0109210787, 0.0150201051, -0.00309961662, 0.00955956522, 0.00701396866, 0.024000302, -0.0122536244, 0.00817632489, 0.00420041522, 0.0131516438, 0.0147593897, 0.0108414162, -0.00138595595, -0.00114515622, 0.0124636451, 0.0011750299]
26 Oct, 2021
jQWidgets jqxSlider buttonsPosition Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects values from a range. It customizes the widget in terms of appearance and offers numerous configuration options. The buttonsPosition property is used to set or return the  position of scroll buttons. It accepts String type value and its default value is ‘both’. Its possible values are – ‘both’ ‘left’ ‘right’ Syntax: Set the buttonsPosition property. $('selector').jqxSlider({ buttonsPosition: String }); Return the buttonsPosition property. var buttonsPosition = $('selector').jqxSlider('buttonsPosition'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider buttonsPosition property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider buttonsPosition Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', value: 5, buttonsPosition: 'both' }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxslider-buttonsposition-property/?ref=next_article
PHP
jQWidgets jqxSlider buttonsPosition Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0240781456, 0.0461497791, -0.0114859957, 0.017827088, 0.0567997284, 0.00713855261, 0.00323646539, 0.0340335332, -0.00467543071, -0.0222774297, -0.0171325263, 0.010051854, 0.00602596765, -0.0158334393, -0.0314610824, 0.0200008098, -0.0275766794, 0.0201165695, -0.0333904214, 0.0230491646, -0.015048841, 0.00353068952, -0.0583432, 0.0193705596, -0.030046232, 0.0387925692, -0.0104055656, 0.000268499629, -0.0203223657, -0.00872704107, -0.0186374113, 0.00697777467, -0.00561437523, 0.00552755501, -0.0321041942, -0.0243739765, 0.00867559202, 0.00175409031, -0.00668837363, -0.0148559073, -0.0243868399, -0.000670847076, -0.00113830972, 0.00106837123, -0.0117561035, 0.0267534945, -0.000573174329, -0.0254672691, 0.03099804, 0.0180714708, 0.000303267909, 0.0361429416, -0.00851481408, -0.00083685061, 0.015897749, 0.00474295719, 0.0073186243, 0.0472816564, -0.00847622752, 0.0103476858, 0.0108943321, -0.0498283841, -0.0433200821, 0.00212709582, -0.0405418351, 0.0218915623, -0.0172482878, 0.0329531021, -0.033776287, 0.0294031203, -0.00756943831, 0.0200522598, 0.0104055656, 0.0207339581, 0.0152031882, -0.0182901304, 0.0018971829, 0.00423489837, 0.0178142264, 0.0313581824, -0.023512207, -0.0182258189, -0.0516033769, 0.00623497926, 0.0163865164, 0.0051095318, 0.00111338915, -0.0400016196, 0.0598866679, 0.0406190082, -0.0450693481, -0.0150359785, -0.00645685289, -0.0136339925, -0.00554684829, -0.0162707549, 0.0243096668, 0.0248756055, -0.0200651214, 0.0137883397, 0.0434229821, 0.014572937, -0.0431657359, -0.0348309912, 0.000536999258, 0.0131645203, 0.00866916124, 0.011981193, -0.0107078291, -0.0142642437, 0.018302992, -0.0245411862, -0.00247759232, 0.0200393964, -0.0450179, 0.0334933177, -0.0216857661, -0.0216214545, 0.00540214824, -0.0172868744, 0.0048137, 0.0238980744, 0.0151260141, 0.0285542104, 0.00620925473, 0.00111017353, -0.00719643291, 0.0123734912, 0.0325672366, -0.0012484428, -0.0104827397, 0.0484135374, 0.00104827399, -0.00275734649, -0.0040837666, 0.0315639786, 0.0434744284, 0.0235893801, -0.0257245135, 0.00515454961, -0.0175569803, -0.0191647634, 0.0280911699, 0.0175827052, -0.0053796391, 0.018753171, -0.00414807815, 0.0323614404, -0.0131838135, 0.0216085929, -0.0381751806, -0.00933799893, -0.0115760313, 0.0304063763, 0.0513461307, 0.00859198812, -0.0342136025, 0.0156790912, -0.0178142264, 0.00546967471, 0.0107335532, -0.0092672566, 0.0104248598, 0.0527867042, -0.0167466588, -0.00505808275, 0.0469472371, 0.00136661483, -0.0347538181, 0.0254929941, -0.00813537743, -0.0241553187, 0.000490775506, 0.000638289494, -0.0283741392, -0.0193834212, 0.0234093089, -0.0479247719, 0.0323357135, -0.00649222452, -0.0157176778, -0.0124249402, -0.0105020329, 0.0210426524, -0.0260717962, -0.0183415785, -0.0059745186, -0.0148044582, -0.00447928114, 0.00820612, -0.0462526754, -0.0156790912, 0.0558221973, 0.0192676615, -0.00969171058, -0.0276024044, -0.0184444766, 0.0168238319, -0.0153060863, 0.00110856583, 0.0278339237, -0.00243257429, 0.00398729974, -0.00708067277, -0.00101933384, 0.0213770717, -0.00491981348, -0.038432423, 0.0277567506, -0.00926082488, 0.0313839093, -0.0140455849, 0.0379951075, -0.00470758602, -0.0507030189, 0.0210941024, -0.00442140084, 0.0229977164, -0.0124956826, -0.00256923586, 0.00581374, 0.015421846, -0.0240524206, 0.0139555493, -0.0677069202, -0.00526387896, -0.00372683909, -0.0194734577, -0.0313324593, -0.0187403094, -0.0332618, -0.0279368218, -0.0245540496, 0.028194068, 0.0214027967, 0.0919394121, -0.0222517047, 0.00644399086, -0.0288629048, 0.0345480219, 0.00843764096, -0.0332103483, 0.0141870696, -0.00253064907, 0.0200651214, 0.0343165025, -0.00723501947, -0.0106949667, -0.0122127132, -0.00225571846, -0.0132738492, -0.00463041244, -0.0114345467, -0.0191519018, 0.00859198812, 0.0234478954, -0.0139684109, -0.0141613455, 0.0342136025, -0.00107480236, 0.0256987903, 0.0167595204, -0.0183158536, 0.00820612, 0.0376092382, 0.0219558738, 0.0413907431, -0.00574299786, 0.00664335582, -0.0296603646, -0.00980747119, -0.0348824412, 0.0526838042, -0.0105341887, -0.0125149759, 0.0175569803, -0.0258016884, -0.0307922438, 0.0282455161, -0.0210297909, 0.0159877855, 0.0400787927, 0.0426255204, 0.0327215828, -0.00293902587, -0.000561517896, -0.00419309596, 0.0115631688, 0.0150359785, 0.0368375033, -0.000928494206, -0.00131516578, 0.0388697423, 0.000314924342, 0.0420338549, 0.0128429634, -0.00247759232, -0.0296089165, -0.00455002347, 0.0120647969, 0.0171839762, 0.00541179487, -0.0394614041, 0.0131645203, 0.0205924734, -0.00189396739, 0.0259817597, 0.0121419709, -0.018328717, -0.0189718287, 0.036605984, 0.00332489354, 0.000718678639, -0.00653402647, -0.00562080648, 0.0118204141, 0.02063106, -0.00205635326, 0.00204992224, -0.0119361747, 0.0129265683, -0.0109650744, -0.0159363374, 0.0423682742, 0.0268821176, -0.0329016522, 0.0136597175, -0.0436802246, 0.0101225963, -0.00543108815, -0.0748583376, 0.013119502, 0.001874674, -0.0340335332, 0.00336348033, -0.0287857316, 0.00891997572, 0.0206181984, -0.0293259472, 0.0248756055, 0.0175312571, 0.00475260383, -0.0165665876, -0.00616745232, 0.0255573057, -0.0463298522, -0.0119040189, -0.00412878441, 0.0605040565, -0.0004537965, 0.000926886394, 0.0290172528, 0.0391527116, 0.00728003774, 0.0222002566, -0.0327473059, -0.00356284529, -0.0452494211, -0.0152289122, -0.0153961219, -0.0120583661, 0.00419631135, 0.0101869078, 0.017878538, 0.0190361403, -0.0147530092, -0.0108300205, 0.0105599128, -0.00679127173, -0.00843764096, -0.0277567506, -0.0249527786, 0.00191647629, 0.020656785, -0.00755657628, 0.0320270211, -0.016399378, -0.0280139968, -0.00994895585, 0.0201422945, -0.0307665188, 0.0668322891, -0.00439567631, -0.0109586427, -0.0292230491, -0.0151903257, 0.00418344932, -0.0381237306, 0.0208368562, -0.00847622752, -0.0339563601, 0.083707571, 0.00203223666, -0.0368889533, 0.00143976894, -0.015473295, -0.0176727418, -0.0216600411, 5.43631322e-05, -0.000334217708, 0.0141999321, -0.0293516703, -0.0176470168, 0.0221745316, 0.00273966067, -0.0206181984, -0.0356799029, -0.0531982966, -0.000106515567, 0.0308951419, 0.00287149893, -0.000363961677, -0.0157691278, 0.0218786988, 0.0213513467, 0.0381751806, 0.0208368562, 0.0779967308, 0.0368889533, -0.0556164, 0.0392556079, -0.0287085585, -0.0381751806, 0.0273708832, -0.0207468215, -0.0313581824, -0.0233449973, 0.00320430985, 0.0776880309, -0.00341171375, -0.00987178273, 0.00211423356, -0.012617874, 0.00453394558, 0.0227018837, 0.0159106124, 0.0395128541, 0.0134796454, 0.00021825642, -0.0128365327, -0.00946662109, 0.00364323426, 0.000719482487, 0.0161164086, -0.0272422601, -0.00409019785, -0.0148301823, -0.0212613102, 0.0363744646, 0.0111708706, 0.0231777877, -0.0432686321, -0.0278853737, -0.0238594878, 0.0115953246, 0.00481048413, 0.00096868875, -0.00626713503, 0.0442204401, -0.0382523537, -0.0273966081, 0.0185216498, 0.0154347084, -0.0303034782, -0.0139426868, -0.0227661952, -0.0108879, 0.0156533662, -0.00460147252, -0.00203706, -0.0368117802, -0.0269078426, 0.0122898864, 0.0771220922, 0.00691989437, 0.00186985068, 0.00616102107, -0.00904859789, 0.00914506521, 0.00118493545, 0.0291973241, -0.0156790912, 0.0263933521, -0.0029052624, 0.00880421512, -0.0216214545, 0.0159363374, -0.0302777532, -0.000990393804, 0.0322070904, 0.0233578589, 0.00185216498, -0.0348824412, 0.0323614404, -0.0108814696, 0.0368632302, -0.0296089165, -0.000177458962, 0.00660476927, 0.00664978707, 0.0269335657, 0.0123927845, 0.00310623506, 0.0296860896, 0.00902930461, -0.0162450317, -0.0339820832, -0.014598662, -0.0121098151, -0.0016688779, 7.461114e-05, -0.0123220421, -0.0165537242, -0.0005920658, -0.00792315, -0.049751211, -0.034856718, -0.0204895753, -0.00354033639, 0.00122914941, 0.0316411518, 0.00344065391, -0.00437316764, 0.0298661608, 0.0420081317, 0.0185859613, -0.0385610461, -0.045172248, -0.0265734233, 0.0138397887, -0.0312552862, -0.00205313787, 0.0395643041, -0.00473331055, -0.00741509115, 0.0293259472, -0.0217758, -0.0158334393, -0.0367603302, 0.04136502, -0.0260589328, 0.0230234396, 0.0105084637, -0.000804293, 0.021711491, 0.023885211, -0.0172740109, -0.00456288597, -0.0137111666, 0.00388761726, 0.00549218385, -0.0269335657, -0.0133252982, -0.0130037423, 0.00650508655, -0.0103348233, -0.0129780173, -0.0173640475, -0.0191133134, -0.00165440782, -0.0148687689, 0.00200008089, 0.0077366475, -0.0015362358, 0.0430628359, -0.00714498386, 0.00240202644, 0.0242968034, -0.0196535289, -0.00816110242, -0.0163093414, -0.000395715382, -0.00184412615, -0.0041416469, -0.0165794492, 0.0134539213, 0.0133381607, -0.0236151051, 0.0175698437, -0.000441336189, 0.00299529824, -0.050548669, 0.0284513123, 0.0119361747, -0.0160520971, 0.0245669112, -0.0011841316, -0.0140455849, -0.0410048775, 0.00412235362, -0.0125985807, 0.0295060184, 0.00518348953, 0.00733791757, -0.00921580754, -0.012032642, -0.0116853602, -0.00182644057, 0.00428313157, -0.00881707761, 0.0157819893, 0.0596808717, 0.00610635662, 0.0232935473, -0.0260074846, -0.0319241211, 0.00885566417, 0.0416994393, 0.000672052964, -0.016798107, -0.0184444766, 0.0182515439, 0.0361429416, -0.035602726, -0.00127899065, -0.0181357823, -0.0185345132, 0.0169267301, 0.00563366851, 0.0110100918, 0.00579766231, 0.0025788825, 0.0132738492, 0.0233835839, 0.0271393619, -0.0289915279, 0.00220266148, -0.0170039032, 0.0304063763, -0.0573656671, -0.00582660269, 0.00987821352, -0.0153318103, 0.0089457, -0.0115438756, -0.00702922372, -0.021557143, 0.0360400453, -0.00130551914, 0.037686415, 0.0125728566, 0.0125599941, -0.0186245479, 0.0364001878, 0.00246473, 0.00839905348, 0.00883637089, 0.0344451256, 0.0116274804, -0.00264801714, 0.0115888938, 0.0324900635, 0.0141098965, -0.00519635202, -0.00611921865, 0.0239752475, -0.025788825, -0.0151774632, 0.0134925079, 0.0137368906, -0.00731219305, 0.005765507, 0.0305092745, -0.0131002087, 0.0100004049, -0.0129715865, 0.00263193948, 0.0583432, 0.00434744311, 0.0304835495, -0.00367539, -0.0247083958, 0.0342907794, -0.00509023806, 0.010051854, -0.0116982227, -0.00215121242, 0.00572048873, 0.0213513467, 0.00658226, 0.0353969336, 0.0168881435, 0.0194863193, 0.0161678568, -0.0118590007, -0.00931227393, -0.00123718835, 0.0152932238, 0.0111387148, 0.00701636123, 0.00857912563, 0.0111965947, 0.0196921155, 0.00210297899, -0.00148559071, -0.0244125649, 0.0266763214, -0.0183415785, -0.0359114222, -0.0285027623, 0.000723903941, -0.0213127602, 0.0112994928, 0.0108750388, -0.0098975068, 0.011505289, 0.0120390728, 0.0385610461, -0.01401986, -0.0130680529, 0.0138269262, 0.0267534945, -0.0102898059, 0.0437316746, -0.00454037683, 0.00432493398, -0.0236022417, -0.0399758965, -0.025415821, -0.00147594407, 0.0203223657, 0.0288114566, -0.0185988247, -0.028219793, -0.030071957, -0.0219172854, 0.030046232, -0.0201422945, 0.0279368218, 0.00216729031, 0.00810322165, 0.0523493849, 0.00611278787, -0.0146501111, 0.000185698838, 0.0349081643, -0.0149845295, -0.0043056407, 0.00707424153, -0.023885211, -0.0128043769, -0.015048841, -0.00715784635, 0.0237308647, -0.0171453897, -0.0093701547, -0.00334418681, -0.0255573057, 0.00935086142, -0.0129973106, 0.0211841371, -0.0212227236, 0.0184702016, -0.0246312227, 0.00298082805, -0.0162321683, 0.00202098209, 0.00772378547, 0.0416222624, -0.00726074399, -0.00182483275, -0.00103380391, -0.00805820432, 0.0118461391, -0.0158077143, 0.0332103483, -0.0217886642, -0.00751155801, 0.0371719226, -0.0137497531, -0.000777764595, 0.0241810437, 0.0274995063, -0.0242324919, 0.00198882655, -0.00572692, -0.0176727418, -0.0130037423, -0.0205924734, 0.0109007629, 0.000275131722, 0.0118525699, -0.00423811376, 0.00100888335, 0.015949199, -0.0293002222, 0.0210683774, 0.0220973585, 0.0190361403, -0.0164508261, 0.0200265348, 0.00368182105, -0.00868202373, 0.0314096324, -0.00066763151, -0.00644077547, 0.00377828814, 0.0428055935, -0.0131002087, -0.0333904214, 0.00853410736, -0.0140584474, 0.0185473748, 0.0369918533, 0.0601439141, -5.91864809e-05, -0.0324900635, 0.0164251029, 0.00158205768, -0.0178142264, -0.0218786988, -0.0225989856, -0.0184058901, -0.00726074399, 0.0172740109, -0.0111258524, 0.0298661608, 0.0152417747, 0.0211198255, 0.0112351812, -0.00919651426, 0.00347924046, 0.00676554721, -0.0196535289, -0.0239495225, 0.0418280587, -0.00619317684, 0.00373648573, 0.0380208306, 0.000330600218, 0.016952455, 0.0229076799, -0.046870064, -0.00365609652, -0.0349338911, -0.0205667485, 0.016952455, 0.0101290271, 0.00828972459, 0.014997392, -0.0185988247, 0.0102383569, -0.0229076799, 0.0158720259, -0.00482334662, 0.0173383225, 0.00928655, 0.0060677696, 0.0166180357, -0.00153382414, 0.0166823473, 0.0225475375, 0.02216167, 0.0208368562, 0.00229591294, 0.013569681, -0.0476932488, 0.00937658548, 0.00196792535, -0.00890068151, -0.0189975537, 0.00855983235, -0.0150359785, -0.00605169218, 0.0211198255, -0.032078471, -0.0247469824, -0.0417766124, -0.0380208306, -0.0288114566, 0.0192548, 0.0148044582, 0.000985570485, -0.00416415557, 0.0273708832, -0.00155311753, -0.0448121056, 0.0191133134, 0.004575748, -0.0277824756, 0.0435773283, -0.0133124366, -0.0484649837, 5.47650779e-05, 0.000736766146, 0.0582403019, -0.0291458741, -0.0291973241, -0.017376909, -0.0105470512, -0.00220266148, -0.028142618, 0.00961453747, -0.0302263051, 0.00774951, 0.0208111312, -0.0133381607, -0.0356799029, -0.00629285956, -0.00214478141, 0.00517705875, -0.0103348233, 0.0120840911, -0.0227404702, 0.00359500083, -0.0383809768, 0.00259817601, 0.0589605868, -0.00675268518, 0.0402845889, 0.0370690264, -0.00931227393, 0.00235379301, -0.0185216498, 0.0347538181, -0.0207725447, 0.00150247244, 0.00973029714, 0.00328630675, -0.00745367818, -0.00294706458, -0.00184412615, -0.00605490757, 0.0237565897, 0.0172225628, 0.0107528474, -0.0452494211, 0.00303710042, -0.0347795449, 0.0164765511, 0.0224060528, -0.00463041244, 0.0256087538, -0.00663049379, 0.00916435849, -0.0294288453, 0.0160520971, -0.00860485, -0.0278596487, -0.0129908798, 0.0339820832, 0.0232292358, -0.0114795649, -0.019730702, -0.01549902, -0.0429599397, -0.0476932488, -0.00909361616, -0.00460147252, 0.0368632302, 0.0033602647, -0.0286056604, 0.0205667485, -0.00348245609, 0.00241649663, -0.0095823817, -0.0149459429, 0.00656618224, -0.0171196647, -0.0126050124, -0.0102898059, -0.017428359, 0.00521243, 0.012907275, 0.0340078063, 0.0115888938, 0.00120744435, 0.00908075366, 0.00318019302, -0.0167595204, -0.0112737687, -0.0158463, 0.0445805825, 0.0220330469, -0.0146886976, -0.0135310944, 0.0156019181, -0.0248627439, 0.0246054977, -0.00369789894, 0.0185216498, 0.000705816376, 5.56694577e-05, -0.00909361616, 0.0330045521, -0.0151388766, 0.00843120925, 0.00369789894, -0.00115036813, 0.000168013241, 0.0121162459, -0.0340335332, 0.00169460243, -0.0377378613, 0.0297889877, 0.0151646016, 0.0277053025, -0.0231134761, 0.00434744311, -0.0243611149, -0.0474360026, -0.0149588054, 0.0103476858, 0.0139298243, 0.0127529278, 0.0310494881, 0.00568833342, -0.00045259067, 0.0131387953, 0.0223546028, -0.0284770373, -0.00877205934, 0.017402634, 0.0275509544, 0.0187403094, 0.00947948359, -0.0136082685, -0.000146710125, -0.000581213273, 0.0332618, 0.0422396511, -0.0166437607, 0.0137883397, 0.00429277821, 7.27521401e-05, 0.0108814696, 0.00287793, -0.0285027623, 0.0160906836, 0.00491981348, -0.00394871319, 0.0153318103, -0.0164765511, 0.00345994718, -0.00817396399, -0.0261361059, -0.0247727074, -0.019730702, 0.0130616222, -0.00686844531, 0.034625195, 0.00214478141, -0.00834760536, -0.00982676446, 0.011215888, 0.0160906836, -0.00339242024, -0.00191004516, 0.0134281963, -0.0192162115, 0.0142127946, 0.00967884809, 0.000421238918, -0.00640861969, 0.00801961776, 0.000255436375, -0.0142513812, -0.0248370189, 0.0112866303, 0.034676645, 0.00450822106, -0.0114474092, 0.00182965607, 0.0212741736, -0.00210297899, 0.0189461056, 0.0036657434, 0.00628321245, -0.0198207386, 0.0200779829, -0.0057526445, 0.0134024723, -0.00516098086, 0.0248627439, -6.57557757e-06, 0.0109779369, 0.0121612642, -0.00112625142, 0.01105511, -0.00638932642, 0.0214799698, -0.00733148679, 0.00425419165, 0.0125085451, -0.00274769962, -0.00796816871, 0.0248112939, -0.0462269522, 0.0080646351, -0.0333904214, -0.0160135105, -0.00456610136, 0.00817396399, 0.00611278787, -0.0295831915, -0.0389726385, -0.00386510836, 0.0805691779, 0.0021833682, -0.0155633315, -0.0135053704, -0.0341878794, -0.0183415785, 0.00320591754, 0.0274480563, 0.0146115245, -0.0349081643, -0.00273322966, -0.0108364513, 0.0274737813, 0.00953093264, -0.0176470168, -0.0193448346, -0.00447606528, 0.00377828814, 0.0236922782, -0.0356284529, -0.00330238463, 0.00303549273, 0.00490695098, -0.0131838135, 0.0263419021, 0.0110422475, -0.035654176, 0.00374613237, -0.0294802934, 0.0223288778, 0.00682985876, 0.0108364513, 0.0144185899, -0.000332408963, -0.0157048162, 0.0323357135, -0.00562402187, 0.00222356268, -0.0238723494, 0.0180714708, -0.0237308647, 0.000867398456, 0.0035017496, 0.00842477847, 0.0196406674, 0.0120519353, -0.0121741267, 0.0187917575, -0.0224703625, 0.00512882508, -0.0304835495, -0.00112062413, -0.0318212248, 0.0186631344, -0.00495518465, 0.0139941359, -0.0137111666, -0.0085083833, 0.0120647969, -0.0164379645, -0.0120969526, 0.0114731332, 0.000614976685, -0.0240652841, 0.00618031435, 0.0161421336, 0.00506451353, 0.0396929272, -0.0132481251, 0.0241810437, 0.0152675, 0.0137368906, -0.00641826633, -0.0152675, 0.00214799703, -0.00572370458, -0.00746654, -0.00490695098, -0.00438281428, -0.0147401467, -0.0401302427, 0.00854697, 0.00300655258, 0.0125278383, -0.00617388356, 0.0137626156, -0.014997392, 0.00750512723, 4.32845118e-05, -0.00198561093, -0.0136082685, -0.015048841, -0.00789099466, -0.0432686321, 0.00525423186, -0.00550183048, 0.0111644389, 0.0149459429, -0.018778896, -0.0158591624, 0.0194734577, 0.0157305412, 0.008939269, 0.000967080938, 0.0108750388, -0.00197114097, 0.0285027623, 0.00552112376, -0.0408505276, 0.0162064433, -0.00364966551, -0.0158077143, 0.0122320065, 0.0148430448, -0.0161549952, 0.0359885953, -0.0196535289, 0.0123091806, -0.0168238319, 0.0107206916, -0.00174926699, -0.0229719914, -0.00434101187, 0.00398408435, -0.0365288109, -0.0125985807, 0.00613529654, 0.00534105208, 0.0130294664, -0.0188946556, 0.000787813275, 0.0103026684, 0.00277503207, 0.014598662, -0.00859841891, 0.0123156114, -0.0095823817, -0.00421882048, 0.0279625468, 0.0192805231, -0.00637324853, 0.0128751192, 0.00632501487, 0.0201680195, 0.0208111312, 0.021081239, 0.00103058841, 0.00270107412, -0.00235379301, -0.00824470725, -0.0375063419, -0.0021013713, 0.0189075172, 0.0073636421, 0.0152031882, -0.0326958559, -0.00425419165, -0.00507416064, -0.0188174825, 0.0028827535, 0.0132738492, 0.00291651674, 0.00828972459, 0.0255573057, 0.00349210273, 0.0274480563, -0.00919651426, -0.0341107063, -0.00649544, 0.021106964, -0.00496483129, -0.0220844951, 0.0285542104, 0.000147514016, 0.0149459429, 0.0100196982, -0.0102962367, 0.00359500083, 0.0162578933, 0.025390096, 0.0031962709, 0.00394871319, -0.012219144, 0.0118975881, -0.0114667024, -0.00063427008, 0.0010514895, -0.00431528734, 0.00865629874, -0.00232002954, -0.0177627765, 0.0325929597, 0.0406704582, 0.010817158, 0.0129651548, -0.0103541175, 0.00515454961, -0.0278082, 0.0106242243, 0.0189589672, 0.00187145837, 0.00678484049, 0.0117561035, 0.013119502, -0.0145086264, 0.00897785556, -0.0103541175, 0.015974924, 0.0193705596, -0.000717070827, 0.0141999321, -0.0259560347, -0.00433779601, -0.011080835, -0.00296475017, 0.00132883189, 0.0351396874, -0.024914192, -0.00695205, 0.00846336503, -0.0192033499, 0.016399378, -0.0257245135, 0.00176695257, -0.012006917, -0.000269504497, -0.00724145072, -0.0222902913, 0.0157948527, 0.0125921499, -0.0148044582, 0.017827088, 0.0222645663, 0.00738936663, 0.0140841715, 0.0126307365, 0.00431850273, -0.0158591624, 0.000780980161, 0.0209526177, -0.0118075525, 0.0220073219, 0.00717070838, 0.0346509218, 0.00234736199, -9.86273881e-05, 0.0121805575, -0.021197, -0.0128043769, -0.00518027414, -0.00534105208, 0.0102383569, -0.00748583348, -0.0293516703, 0.0253129229, 0.00168977899, -0.0164122395, -0.0104119973, -0.00106837123, -0.0324386135, -0.0040966291, -0.0189846922, 0.00260782265, -0.0204638503, -0.0410306, -0.0234736186, -0.018753171, 0.0153961219, -0.00097110041, -0.0359114222, -0.0279110987, -0.00790385716, 0.0134925079, -0.0246312227, 0.0440146439, -0.00528638763, 0.031795498, 0.00911290944, -0.0108107273, -0.00890068151, 0.00950520765, -0.0134281963, 0.00942160375, -0.00681699626, -0.00934443, 0.0311009381, -0.014097034, 0.0026608794, 0.0084826583, 0.0133510232, 0.0227018837, -0.000415209739, -0.0323099904, 0.00200490444, 0.00664978707, 0.0280911699, 0.0236022417, -0.0129458616, -0.0190232787, 0.000168917613, -0.00279110973, 0.00643112836, 0.0191647634, -0.0252357479, 0.0215056948, -0.0113252178, 0.00966598652, 0.00540536363, 0.0294031203, -0.0216986276, 0.0102705127, -0.0228819549, -0.00310462737, 0.000965473184, 0.00484264, 0.00418344932, 0.00109891908, -0.00814180914, -0.0130616222, -0.0113895284, -0.00986535102, -0.0193062481, -0.0340335332, 0.0120519353, -0.00574621325, -0.0175698437, -0.00517384289, -0.00172836578, 0.0140455849, -0.0157819893, 0.00701636123, 0.00186181173, -0.0165537242, 0.00712569058, 0.0205153, 0.030535, 0.0100196982, 0.0148430448, 0.0125664249, 0.0137497531, 0.00145906233, 0.0227533337, -0.00600024313, 0.0162964799, -0.00895856228, 0.0153446728, 0.00800032355, -0.000497608562, -0.0251328498, -0.0151774632, -0.0133124366, 0.0193962846, 0.0124892518, 0.00380401267, -0.0152160507, 0.038432423, 0.0207725447, -0.00290365447, 0.00420917384, -0.0215957295, -0.00462398166, 0.0118911564, 0.0387925692, 0.0216214545, 0.00263997819, -0.0181229208, -0.0155761931, 0.00535713, -0.0245669112, 0.0102190636, -0.0127657903, 0.0411592238, 0.00711282808, -0.0175827052, 0.0203609522, 0.0212870352, 0.00635395525, -0.0173897725, 0.00943446532, 0.015550469, -0.00483620865, -0.0148559073, -0.018277267, -0.0267277695, 0.0297889877, -0.0181743689, -0.00347924046, -0.0108107273, 0.0109715052, 0.0273966081, 0.0260460712, 0.0353197567, 0.00335061806, -0.0057076267, -0.023435032, 0.0218272507, -0.0173897725, 0.0100261299, -0.0380465575, 0.00433136523, -0.00424132915, 0.0117689651, -0.00766590517, 0.00868845452, 0.0222002566, -0.0266763214, -0.00562080648, -0.0290172528, -0.00603561429, 0.010765709, -0.0179299861, 0.0163350664, -0.00386189274, -0.0106306551, 0.0224189144, 0.0111773014, 0.00117850432, 0.018753171, -0.00326701324, 0.00538928574, -0.0140327225, -0.0101354588, -0.0148301823, 0.0120004863, -0.0128622567, -0.025840275, 0.00649222452, -0.00903573539, 0.00347280945, 0.0168495569, 0.0202580541, -0.0170039032, -0.00627035042, -0.00129989185, 0.00887495745, -0.0125471316, -0.019331973, -0.00955022592, 0.0121998508, 0.0280911699, -0.0178914, 0.0111901639, 0.00818682648, -0.0114409775, 0.00946019, -0.00249367021, 0.0211712755, 0.010553482, -0.000270107412, 0.0215957295, 0.01105511, -0.0264448, -0.0168752819, 0.0039808685, 0.00120905216, -0.000541420653, -0.00253547239, -0.00379758142, 0.00944732781, -0.00383295259, 0.00330881565, 0.0121805575, -0.0080517726, 0.0170424916, 0.00663692458, 0.0237951763, -0.0104698772, 0.00254672696, -0.0140841715, 0.00767876767, -0.00220105378, -0.0292230491, 0.00325415097, -0.007048517, 0.0247469824, -0.000248201366, -0.0176470168, 0.0116467737, -0.00383938383, -0.00719000166, 0.0110358167, 0.0234736186, -0.00758230081, 0.0303034782, 0.0100840097, 0.0301491302, 0.0141613455, 0.0146372486, -0.00361107872, -0.00460468791, 0.00901001133, 0.00499698706, -0.0166051742, 0.0196921155, 0.0074794027, 0.00741509115, -0.0321299173, 0.0182515439, -0.0291458741, -0.00202902104, 0.0125471316, 0.0100582847, -0.0156276431, -0.00808392838, 0.0037943658, -0.0094537586, 0.00277342414, -0.0122320065, 0.00349853397, 0.0223931894, 0.00458539464, -0.0100261299, -0.00209172466, 0.0400016196, 0.0171325263, 0.0138012022, -0.0199750848, -0.0151260141, -0.0185988247, 0.0202194676, 0.0279882718, 0.0222002566, 0.0193576962, -0.0314610824, 0.0161035452, 0.00749869598, -0.0209397543, -0.00546645932, 0.00110856583, 0.00775594125, -0.0129458616, 0.00237469422, -0.0112480437, 0.00951163936, -0.00910647772, -0.0289400779, 0.00475903507, -0.0122963181, 0.011717516, -0.00431850273, -0.0261361059, 0.00908718444, -0.0205667485, -0.00780095905, 0.00287471456, -0.00995538663, -0.00107641018, -0.0128751192, -0.00327344448, -0.0384067, 0.011743241, -0.00504522026, 0.0060227518, 0.00731219305, -0.0115438756, 0.00271554408, -0.0132609876, -0.019177625, -0.0156405047, 0.0383295268, -0.00948591437, 0.0317697749, 0.00182644057, 0.00688773859, 0.00904859789, 0.0268049445, -0.0146758351, 0.00566260889, 0.00515454961, -0.0211712755, -0.00650187116, -0.0162578933, 0.0193834212, 0.012032642, 0.0131838135, 0.0137883397, 0.000777764595, 0.00348567171, -0.00792958122, 0.00753728254, 0.00981390197, -0.0130423289, -0.000886691851, 0.0112994928, -0.0119040189, 0.0110358167, -0.00123477669, 0.00300655258, -0.0143671408, -0.0184959266, 0.000477913243, 0.0123413354, -0.0430113897, -0.0132352626, -0.0152675, -0.0171325263, -0.0112094572, 0.0147787333, 0.00867559202, 0.000198561102, -0.0135053704, 0.00547610596, -0.00455645472, 0.0160520971, -0.0164765511, -0.00342779164, -0.00147755176, 0.0046336283, -0.0102319252, 0.00838619191, -0.00127497129, -0.0329531021, 0.00328952237, 0.00747297145, 0.00823827554, -0.00952450186, 0.0191133134, 0.000462237367, 0.00308372616, -0.00850195158, -7.40584655e-05, 0.0139684109, -0.0120712286, 0.000193536776, 0.005157765, 0.0166823473, 0.0157305412, -0.0242710784, -0.00355641404, 0.0091386335, -0.0028827535, -0.000210418482, 0.00219944608, 0.00765947392, 0.0218015257, 0.00471080188, -0.00747297145, 0.00270428951, 0.00756300706, 0.00141886773, 0.014997392, 0.0005048436, -0.00796173699, -0.0179942977, 0.00946662109, 0.00785883889, 0.00168013235, -0.00591985369, -0.00216568261, 0.00150568795, -0.0150617035, 0.0122770248, -0.0198078752, 0.0181743689, 0.0153575353, -0.0180328842, 0.0111708706, 0.0270621888, -0.0229591299, -0.00265766378, 0.00305800163, 0.0114602707, 0.010791434, 0.0260717962, 0.0205924734, -0.0176341552, 0.00639254181, 0.00270428951, -0.00580087816, -0.0119426055, 0.00224285619, -0.00435065851, -0.0089264065, 0.00334418681, 0.0147658717, 0.0228433684, 0.0185988247, 0.0270879138, -0.000852124533, -0.0164636895, -0.00238594878, 0.00677197846, 0.00407090457, -0.00796173699, 0.00482013077, -0.0198207386, 0.00904859789, -0.0174926706, -0.00657582888, -0.0195120443, 0.0254929941, 0.00388118601, -0.0177885015, 0.00527674099, 0.0116467737, 0.00591342291, -0.0268049445, 0.00440853881, 0.0178914, 0.0169395935, 0.0365802608, -0.00591342291, -0.0395128541, 0.00135294872, -0.0136597175, -0.00339563587, 0.0123477671, -0.0092672566, -0.00587162049, 0.00349853397, 0.00234414637, -0.00414807815, 0.00906146, -0.00153784361, -0.000274126854, 0.00805820432, -0.00345030054, 0.0102512194, -0.0152546372, 0.00236183195, -0.0158077143, 0.0100004049, -0.0118075525, -0.00383616821, -0.0376092382, -0.0205410253, 0.000875437399, 0.00184251834, -0.00046625681, -0.016399378, -0.00166727009, 0.00826400053, -0.00522850733, -0.00269625057, -1.93436281e-05, -0.00158044987, 0.00455002347, 0.0100582847, 0.0145343505, -0.00407733535, 0.0140327225, 0.0188689306, -0.0107335532, -0.0103283925, 0.00919651426, 9.23972329e-05, -9.89288455e-05, -0.0245669112, 0.0042606229, 0.0229462665, 0.00756943831, 0.00549861509, 0.0127786528, -0.00934443, -0.0063957572, 0.00283130445, 0.00603882968, -0.000414807786, 0.0140584474, -0.0017958926, 0.0172097, -0.00864343718, 0.00760159409, -0.0166694857, 0.0102576502, 0.00836689863, 0.0172482878, -0.00367860566, -0.016952455, 0.00429599406, -0.00584268, -0.00837332942, -0.0205667485, 0.0245926362, 0.0260460712, -0.000180473551, -0.00699706795, 0.00836046692, 0.00615137443, 0.0020788624, 0.00728646852, -0.0157691278, -0.00237147859, 0.0197950136, 0.00539250113, -0.0124699585, 0.00722858869, 0.000786205463, 0.0197435655, -0.0126500297, 0.00180714717, 0.00658547552, 0.0319241211, -0.0280139968, 0.0145343505, 0.00244704448, 0.0188432075, -0.0136082685, -0.000170424901, -0.00919651426, 0.011981193, -0.020708235, -0.0149202179, -0.00859841891, -0.00518348953, 0.0153575353, -0.00262550823, 0.0260203462, 0.00958881248, -0.00491659762, 0.0020643922, -0.0104698772, -0.0196020808, -0.00967884809, 0.00324772, -0.0179042611, 0.0104119973, -0.0190875903, -0.00955022592, -0.0122320065, 0.0208111312, -0.00984605774, -0.00660476927, -0.00598738063, 0.00343100703, -0.00180232374, -0.000924474734, -8.55641556e-05, -0.00352104288, -0.00614494318, 0.0046207658, -0.0249270536, -0.000668033492, -0.00537642371, -0.0202966426, -0.0151903257, -0.017376909, -0.00279271766, -0.013119502, 0.0174669456, 0.0209268928, 0.0470244139, -0.00971743558, 0.00268821185, -0.0202580541, -0.0274223331, 0.00082318444, -0.0322585404, -0.00722215744, -0.00873990357, 0.00967241731, 0.000587242423, 0.0123799229, -0.00984605774, 0.0248241555, 0.00919008255, 0.00966598652, -0.0157948527, 0.00800032355, 0.000357731536, 0.0123863537, 0.00228465837, 0.00618996145, 0.00870131701, 0.00706781028, -0.00367217441, -0.0113123553, -0.00181679381, -0.00530889677, -0.0252614729, 0.0214413833, 0.00427348493, 0.00574942911, -0.0102833742, 0.0134796454, -0.0243868399, -0.0122255757, -0.0135053704, -0.00263033155, 0.000444551755, 0.00147915957, 0.010817158, -0.0124249402, 0.00572370458, -0.00197918, -0.0161421336, -0.0188560691, 0.0214799698, 0.0258274116, 0.0140841715, -0.00773021672, 0.00230395189, 0.0119168814, 0.00280718761, 0.00269303517, 0.0181229208, -0.01549902, 0.0237823129, -0.0191261768, 0.0150102545, -0.0254544076, 0.00439567631, 0.00749226473, -0.00618031435, -0.0114731332, 0.00131195027, 0.0199493617, -0.00217532925, 0.0201037079, 0.00647936203, -0.0361172184, 0.00949234609, 0.0250428151, -0.00966598652, 0.000409783475, 0.00801961776, 0.00685558328, -0.00798746198, -0.00705494825, -0.0267792195, 0.0277567506, 0.0119618988, -0.0260717962, -0.0235636551, -0.0389211886, -0.0023923798, -0.00847622752, -0.0150102545, 0.031846948, -0.00025362763, 0.0168109704, -0.00534105208, -0.00954379514, 0.00684915204, -0.00576229114, -0.0105277579, 0.00729933102, -0.00251296349, 0.0012556779, -0.00266409502, -0.00377507252, -0.0140841715, -0.00875919685, -0.0064665, 0.00108766463, 0.0147658717, 0.00507094478, 0.0010217455, -0.025390096, 0.00231842184, 0.00668194238, 0.00299047469, -0.00340849813, 0.00854053907, 0.00608384749, -0.00350496499, 0.00841834769, 0.00659833802, 0.00789742637, 0.0123349046, -0.0104441531, 0.0236022417, -0.0304321013, 0.0123927845, 0.0250428151, -0.0155247441, 0.00947305281, 0.00791028794, -0.0211841371, -0.00706781028, 0.0102383569, 0.0123413354, 0.0155247441, -0.0200908463, 0.0253000595, 0.00238273316, 9.20078492e-06, 0.0198464636, 0.00844407175, -0.0146243861, 0.0016093899, -0.00990393758, -0.0178399514, 0.00171711133, 0.00940874126, -0.00463041244, 0.000886691851, -0.0135439569, 0.024965642, 0.00380401267, 0.0133510232, -0.0120390728, -0.0226632971, -0.0241038706, -0.0160906836, -0.0152289122, 0.0379951075, -0.0217243526, 0.00619317684, 0.00278789434, 0.00599059649, 0.0356284529, 0.0142385187, -0.00448249653, 0.008939269, -0.00899071805, -0.00895856228, -0.00654045772, -0.0136725791, 0.0131580895, -0.00775594125, -0.00336348033, 0.0137754772, -0.0147144226, -0.00776880328, 0.000458217924, -0.000127517225, -0.00162546779, 0.0244125649, -0.0164379645, 0.00345030054, 0.00664978707, 0.0144314524, 0.0373777188, 0.0166437607, 0.0147658717, 0.0190747268, -0.00636038603, -0.00520599866, -0.00194380863, -0.0031512531, 0.0016495845, -0.00386189274, 0.00751798926, -0.0131838135, -0.0117753968, -0.0143542793, 0.0107335532, 0.0420338549, -0.000424856436, -0.0130166039, -0.0134539213, -0.0240524206, 0.018302992, -0.0288114566, 0.0125599941, 0.000685719075, -0.0245669112, 0.0193576962, -0.00821255147, -0.00946019, 0.00713855261, 0.00457253261, -0.0184187517, -0.00632501487, 0.0160778221, -0.00475581968, 0.000177559443, 0.00434422726, 0.0141613455, -0.00753085176, 0.00737007335, -0.0244125649, 0.0205410253, -0.0128815509, -0.00362715661, 0.0118847257, -0.0114088217, -0.0143028302, 0.000328188529, 0.00118493545, 0.01697818, 0.00933156721, 0.0238466244, 0.00269946619, 0.0234093089, -0.00990393758, 0.00724788196, 0.00310141174, 0.0237565897, 0.016798107, 0.00979460869, 0.00752442051, -0.013196676, 0.00452429894, -0.000184191536, -0.00594236283, -0.0035467674, 0.00848909, -0.00766590517, -0.00303870835, -0.00395514397, -0.00405482668, 0.00487479568, 0.00168174016, 0.0022042694, 0.010604931, 0.0121998508, 0.0116853602, -0.0121612642, -0.0116982227, 0.00782668311, -0.0140841715, 0.0251071267, 0.0336219408, 0.00793601293, -0.0151002901, 0.0192805231, 0.00851481408, 0.000607339724, 0.0226375721, 0.0180843342, 0.0030338848, 0.0150745651, -0.00161742885, 0.00861771218, -0.00256119692, -0.00333132455, -0.000188512451, 0.00452751433, 0.0273451582, -0.0152031882, -0.0172482878, -0.021531418, 0.0298661608, -0.00764018064, -0.0256344788, -0.0145600755, 0.0225475375, 0.0216214545, -0.00143012218, -0.00128301012, -0.0176341552, -0.00592628494, 0.014547213, -0.0149459429, 0.0184959266, 0.00683628954, 0.0101611828, -0.00670123613, -0.0113316486, 0.00491338223, -0.000746412843, 0.00107078289, 0.00983319525, 0.00040536208, 0.000256039319, 0.0170167666, -0.00662406255, -0.0194348712, 0.0130616222, 0.0204767138, 0.0263676271, -0.0307150707, -0.00909361616, -0.010579207, 0.00273966067, 0.000565135444, 0.00448249653, -0.00435708975, 0.00467221485, -0.00886852667, 0.00439567631, -0.0101290271, 0.0012484428, 0.0100582847, 0.0257631019, -0.00940874126, -0.0137883397, -1.7283659e-05, -0.00466899946, 0.00542465691, -0.00756943831, 0.0241038706, 0.00333454018, -0.01219342, 0.0111901639, -0.00182804826, 0.00934443, 0.00514490297, 0.00771735422, 0.0192162115, 0.00477511296, -0.00742795365, 0.0285799354, -0.00154990202, 0.0122963181, 0.00547289057, 0.0040837666, -0.0143671408, 0.0127979461, 0.0153961219, 0.00455967, 0.0241167322, 0.0099168, -0.00479119085, -0.0151517391, -0.0210040659, 0.0167466588, -0.024515463, -0.00735721132, -0.00310301944, -0.0266763214, 0.0133252982, -0.00375577901, 0.0121869883, -0.00383295259, -0.020708235, 0.013569681, 0.000208810699, -0.00410306, -0.0121033844, -0.000635073928, 0.0247469824, -0.00571727334, -0.0126307365, -0.000948591449, 0.0100004049, -0.000420836965, 0.0156919546, -0.0227404702, 0.010842883, 0.0163093414, -0.00845050253, 0.00469793938, -0.00605812296, -0.00958881248, -0.0110936966, -0.0014228872, 0.00774951, -0.0264190771, -0.0120455036, -0.0154089844, 0.00376542588, -0.0158205759, -0.00322681875, 0.0022508949, 0.00441818545, 0.0143800033, -0.0238080379, 0.0111773014, -0.00709996605, 0.0172225628, 0.0219944604, 0.023435032, -0.015473295, 0.00396157522, 0.0069327564, -0.0125471316, -0.0266763214, -0.0235250685, 0.000975119881, -0.0125342701, 0.0157948527, 0.00942160375, 0.00492624473, -0.013569681, 0.00899071805, 0.019756427, -0.00668194238, 0.00543430354, 0.00269303517, 0.0222131182, -0.00679127173, 0.0230748896, -0.00902287383, -0.000154447567, -0.0339820832, -0.00210941024, -0.00641505094, -0.00711925933, -0.017827088, 0.00971100386, -0.00406125793, 0.00681699626, -0.00653724233, 0.00310945068, -0.00959524419, 0.0117882583, -0.00676554721, -0.0137368906, 0.0147787333, 0.00753085176, -0.0159106124, 0.0035692763, -0.0132352626, -0.00417380268, 0.0136725791, 0.014598662, 0.0144571774, -0.00170746469, 0.00514811836, 0.0292744972, -0.0101161655, 0.0194991827, -0.0212998986, 0.00168013235, 0.00704208575, -0.0189718287, -0.00694561889, -0.00572692, -0.00140118215, 0.010765709, 0.00663692458, -0.0179299861, 0.0159620605, -0.00860485, 0.0192033499, -0.0171068013, 0.0121805575, 0.0133767473, 0.0184187517, -0.0108814696, 0.0357313491, -0.0151388766, -0.0106113618, 0.0179171246, 0.0135825435, 0.00982676446, -0.0233449973, 0.00464649033, 0.0165151376, 0.00643434422, 0.00438602967, 0.00906146, -0.0282455161, 0.0126371672, -0.00295510353, 0.00240524206, 0.0125149759, 0.0138397887, -0.0100389915, -0.00328630675, -0.00792315, -0.0177499149, 0.00734434882, 0.0180328842, -0.0081932582, 0.0308951419, 0.0100840097, -0.0102512194, -0.0121869883, 0.017428359, -0.0102769434, -0.00167209341, 0.00574621325, 0.00840548519, -0.013119502, 0.00959524419, 0.0227018837, -0.0104119973, -0.00566260889, 0.0036657434, 0.0161549952, -0.00867559202, -0.000229711877, 0.0173383225, -0.017852813, 0.0141742071, -0.011743241, 0.00192933856, -0.00137947709, -0.00114313315, -0.000561517896, -0.0062317634, -0.00536999246, 0.0237051398, -0.00886209495, 0.0179171246, 0.0326958559, 0.0164251029, 0.000804293, -0.00675911596, -0.0100261299, 0.00563366851, 0.0438860208, 0.0111965947, -0.00654367311, 0.00406125793, 0.00794244371, -0.00998111162, 0.00626070378, 0.0236922782, 0.00649544, 0.00115679926, 0.00776237203, 0.00202098209, 0.0286571085, -0.0102833742, -0.0373262689, -0.000639897306, -0.0220073219, -0.0189589672, -0.0131838135, 0.02068251, -0.0088106459, 0.00126130506, 0.0147787333, -0.000511676655, 0.00532819, 0.00506451353, 0.00383295259, 0.0114859957, 0.0161678568, 0.00229752064, -0.0106949667, 0.00129185291, 0.0285284873, -0.00217372156, -0.0283741392, 0.00407090457, 0.0167466588, 0.0235893801, 0.0112801995, -0.000482736592, -0.00102415727, -0.0166566223, -0.001084449, 0.0114345467, -0.00771092298, -0.0210683774, 0.00443747872, 0.0161678568, -0.00157562655, -0.0286313854, 0.0189589672, 0.00841834769, 0.0236536916, -0.00646971539, -0.0212613102, -0.000874633493, -0.0141870696, 0.0098975068, 0.0025563736, -0.0184573382, -0.0122963181, 0.00391334156, -0.0172868744, -0.0100582847, -0.00970457308, 0.00870774779, -0.02068251, -0.0135825435, -0.00323325, -0.00758230081, 0.0163350664, -3.46929228e-05, -0.0177113283, -0.0201937445, 0.0354741067, 0.00149684516, 0.00265123276, -0.0377378613, 0.00453073, 0.00121226779, 0.0250814017, -0.0114023909, -0.00217050593, -0.0207725447, -0.0226890221, 0.0445291325, -0.0248756055, -0.0150359785, -0.00315929181, 0.00964026153, 0.00906146, 0.00326219, -0.00197435659, 0.00566903967, 0.0110422475, 0.00637003267, 0.000816351385, 0.00108846847, 0.0204381272, 0.00817396399, -0.00110936968, -0.0132095385, -0.0250042286, 0.0111387148, 0.0135825435, 0.000688532717, 0.0373005457, -0.00916435849, -0.0107592782, -0.000452992623, 0.00248080795, 0.00389404828, -0.00203384436, 0.000656377058, 0.0151388766, -0.00297278911, -0.00182161713, 0.00644720625, 0.0132224, 0.0126886163, 0.0231777877, -0.0236151051, 0.0254415441, -0.00655010436, -0.00812251586, 0.0213384852, 0.0341621563, 0.0186759979, 0.0174926706, -0.0078073903, 0.0319755711, -0.00874633528, 0.00918365177, -0.0125985807, -0.0298404358, -0.00105631282, -0.0143671408, 0.00507094478, -0.0118397074, -0.0240910072, 0.00033080118, -0.0060227518, 0.000823988346, 0.00118734711, -0.0194477327, -0.0120969526, -0.0279368218, 0.00246794568, -0.00288436119, 0.00972386636, 0.0105084637, -0.000807910517, -0.000569154858, 0.00942803454, -0.0207854081, -0.0116789294, 0.00573656661, -0.0233192723, 0.00855983235, 0.0021463891, -0.0160778221, -0.0109457811, 0.011531014, -0.00416094, 0.0140584474, 0.00127738295, -0.00396800647, -0.0106756734, -0.00505808275, 0.00302423816, -0.011293062, 0.0141742071, -0.00493589137, 0.0101869078, 0.0157048162, 0.00664978707, 0.0237565897, 0.00689417, 0.0131323645, -0.0360914953, 0.027319435, 0.023962386, 0.000357329583, 0.00284255878, 0.0162064433, 0.00408698199, -0.0135310944, -0.00439246092, 0.00460790377, 0.00111258519, 0.00104103889, -0.0105663445, 0.00456288597, -0.0279882718, 0.0314353555, -0.00866273, 0.0172740109, 0.00652116444, 0.00625748793, -0.0091386335, 0.0275766794, -0.015473295, 0.00728646852, -0.0109972302, 0.0245926362, 0.0062896437, 0.00883637089, 0.00665621832, 0.00175891363, 0.00562402187, 0.0172611494, -0.00931227393, 0.00237147859, -0.00610314123, -0.00109248795, 0.00374613237, 0.0188432075, -0.00312874396, -0.014598662, -0.0167595204, 0.0127464971, 0.00434101187, -0.0104505839, -0.015048841, -0.00867559202, 0.00857912563, 0.00632823072, -0.0113573736, -0.00903573539, 0.00770449219, 0.0020643922, 0.0275509544, -0.00666908035, 0.0197178405, 0.00174765917, -0.00353712076, 0.0209140293, 0.0135182319, 0.0314868055, 0.0254801307, 0.0118332766, -0.00940874126, 0.00536999246, -0.00381365931, -0.0252486113, -0.0201037079, -0.00380079704, -0.00846336503, 0.00917722, 9.20706498e-06, 0.0102062011, 0.00822541304, 0.00982676446, 0.0119876238, -0.0156019181, 0.00417058682, 0.00588126713, -0.00740222912, -0.00738293584, 0.00154266693, -0.00112625142, 0.00217532925, 0.0042027426, 0.0198207386, 0.0140841715, 0.00559508195, -0.00035069749, -0.017376909, -0.00387153937, 0.0220073219, 0.0185345132, -0.0124120777, -0.0142771052, 0.0241553187, -0.0104248598, -0.00735078, -0.0139041, 0.00215925137, 0.0151774632, -0.0139684109, 0.00633144611, -0.0157048162, -0.000516098051, -0.011582463, 0.00155552919, 0.0162964799, -0.00547289057, -0.0222388431, 0.0107142599, -0.00165601564, 0.00948591437, 0.002287874, -0.0168495569, 0.0218658373, -0.0174154956, 0.0143414168, -0.0124378027, 0.0199493617, -0.0101869078, 0.0172354244, 0.00963383075, 0.00898428634, -0.00461755041, -6.45122564e-05, 0.00258692144, -0.00976245292, 0.0127722211, -0.0324386135, 0.0105985, 0.0139169618, -0.0276538525, -0.0164379645, -0.00644399086, -0.000715463073, -0.0128236702, -0.0155118825, 0.000414807786, -0.0176984668, -0.00783954561, -0.00473331055, -0.00142610271, -0.0146758351, -0.000878652965, -0.0262261424, 0.00332810916, -0.0122963181, -0.015473295, 0.0121741267, -0.033776287, -0.0014719246, -0.0106370868, 0.00249849353, 0.00532819, -0.00762088737, 0.0228690933, -0.0188817941, -0.00456610136, 0.0133896098, 0.0134281963, 0.00370754558, -0.00971100386, -0.000922867, 0.0127336346, -0.00841191597, -0.0113766668, -0.0352683105, 0.00235218531, 0.00425097579, 0.00969171058, 0.0103798416, -0.0172097, -0.0123606287, 0.00265444838, -0.00850195158, -0.0216600411, -0.00600345852, -0.0193576962, 0.00141806388, -0.0163222048, -0.00101772614, -0.00457896339, -0.00331203127, -0.00774951, -0.0119104497, 0.0129908798, -0.00232324516, -0.00725431321, -0.0316926, 0.0147015601, 0.0277824756, 0.014547213, -0.00115760311, -0.0174926706, -0.0151260141, 0.0156405047, -0.013196676, -0.00416094, 0.0103991348, 0.004575748, -0.0452494211, 0.00309658842, -0.00368503667, -0.0135182319, 0.00930584315, -0.0171839762, 0.0206953716, 0.0021463891, -0.00086177123, -0.00828972459, 0.00914506521, 0.0289143547, 0.0250170901, -0.0398472734, 0.0120004863, 0.0132224, -0.00368182105, 0.0326701328, 0.00872704107, 0.0158463, 0.0119683305, 0.0120905219, -0.00529925, 0.0176341552, 0.0199493617, 0.000388078421, 0.00324932765, -0.0006390934, 0.00172193465, -0.00834760536, -0.0158334393, -0.0210426524, 0.0117303785, -0.00940874126, -0.00876562856, 0.000201977629, 0.00522207655, -0.00539250113, -0.0227533337, 0.0125728566, 0.00145504286, 0.0184702016, 0.00504843611, 0.0150359785, 0.00108123349, -0.00801318604, 0.0223931894, 0.0134410588, 0.00735721132, -0.0256087538, 0.0340592563, 0.0297632627, -0.00570441084, -0.00980747119, 0.00709996605, -0.00542144151, -0.00139233936, -0.0033602647, 0.0107335532, -0.00509666931, 0.0252743345, -0.0110422475, -0.0324900635, -0.000686924905, 0.01145384, 0.00912577193, 0.0250299517, 0.0122577315, 0.00605169218, 0.0081932582, 0.014521488, -0.00404839544, -0.0104698772, -0.000919651415, 0.00801318604, -0.020232331, 0.0236022417, -0.00971743558, 0.00325093558, 0.00627035042, 0.00576229114, -0.00853410736, 0.0021013713, 0.00713212183, 0.0039326353, -0.0216729026, -0.00535391457, 0.00267856498, 0.00985248946, -0.0175183937, -0.0226247106, -0.015974924, 0.00283291214, -0.0268306676, -0.00964026153, -0.0270364638, 0.00293420232, 0.00377185689, -0.00465292158, -0.000144499427, -0.0106242243, 0.0278853737, 0.0010394312, -0.023910936, -0.00865629874, 0.00274609192, -0.00883637089, 0.0257245135, 0.00342457602, 0.000151633954, 0.0102640809, -0.0112094572, 0.000753245957, -0.0195506308, 0.000723501958, -0.00148237508, -0.00387153937, 0.0133510232, 0.0134925079, -0.0051706275, -0.0228047818, -0.0125921499, -0.00401623966, -0.00682985876, 0.0120583661, 0.0238594878, 0.0153060863, -0.00159652764, -0.0124120777, 0.00802604854, 0.00300012156, -0.0208368562, 0.000713051355, -0.0150359785, 0.00197114097, -0.0132224, 0.00922223832, 0.0118782949, 0.0119361747, 0.0150745651, 0.0106563801, 0.00396157522, 0.00956308842, 0.00461755041, 0.0045178677, -0.00684915204, 0.00621247, -0.0195634924, 0.0240009725, 0.0304321013, -0.0144829014, -0.017376909, 0.0181486458, 0.00155794085, -0.000722296129, -0.00546002807, -0.0138526512, -0.00528638763, 0.0311781112, -0.00780095905, 0.0132738492, -0.00485871779, -0.0123670604, -0.00734434882, -0.00985892, 0.0248756055, 0.0024792, -0.0259946212, 0.0284255892, 0.00616102107, 0.00761445612, -0.00108846847, 0.0156919546, -0.00810322165, 0.00649222452, 0.00281040324, 0.0161807202, -0.00025865194, 0.0152803613, 0.00222034706, 0.032078471, 0.022560399, -0.00843120925, -0.00214960473, -0.0022508949, -0.0186374113, -0.0182000939, -0.0144057283, 0.00568833342, -0.0152417747, 0.00699706795, -0.00946662109, 0.00909361616, 0.0193191096, 0.0206053369, -0.00965955481, 0.0151131526, -0.0190232787, 0.00798746198, -0.00704208575, -0.00654367311, -0.0190361403, -0.000651955663, -0.0150102545, 0.0107013984, 0.000553479, 0.00891354401, 0.00178303046, 0.00624141051, -0.0069327564, 0.0254672691, -0.0268306676, -0.00353068952, -0.00316250743, -0.0010394312, 0.0109007629, 0.00329595339, -0.00341492938, -0.00941517204, -0.00873347279, 0.00393906608]
26 Oct, 2021
jQWidgets jqxSlider rtl Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The rtl property is used to set or return a value that indicates whether the jqxSlider widget elements are aligned to support locales using right-to-left fonts. It accepts Boolean type value and its default value is false. Syntax: Set the rtl property. $('selector').jqxSlider({ rtl: Boolean }); Return the rtl property. var rtl = $('selector').jqxSlider('rtl'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider rtl property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider rtl Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', max: 100, value: 20, rtl: true }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxslider-rtl-property?ref=asr10
PHP
jQWidgets jqxSlider rtl Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0264625046, 0.00905701611, -0.0148716811, 0.0620744452, 0.0442068614, 0.0116909435, 0.0160192121, 0.0248759873, -0.0206709448, -0.0150565188, -0.0025299571, -0.0181448385, 0.00788638089, -0.0173130706, -0.0153337745, 0.00324427546, -0.0143171707, 0.0112750605, -0.0342872739, 0.0252918713, -0.0255537238, 0.0290964339, -0.0504297093, 0.0122916643, -0.0656787679, 0.0295739286, 0.00830226485, 0.0102276504, -0.0127306525, 0.0012447621, 0.00259734574, -0.014240155, 0.0189612, -0.027017016, -0.0338251814, -0.0180986281, 0.0354887135, 0.0257231575, -0.0542188697, 0.00334247015, -0.026816776, 0.00270131649, -0.00396244461, 0.0110286111, -0.00358314323, 0.0103662778, 0.00709312223, 0.000768710335, -0.00760527467, 0.00596099487, -0.00896459725, 0.0208095722, 0.0170820244, 0.0439912193, 0.0253842883, -0.0129771018, 0.0115985256, 0.0504297093, -0.00465173274, 0.0209482, -0.00275907805, -0.0328393839, -0.0199778043, -0.0295585264, -0.0107744597, 0.0295893326, -0.0165737234, 0.0136779426, -0.0315455236, 0.0346569493, -0.0170358159, 0.0406641513, 0.0327469632, 0.0138165699, -0.0132235512, 0.000280865672, -0.0278949924, -0.00429361081, -0.00309987157, 0.0357967764, -0.0236745458, 0.0100428136, -0.0405717343, 0.00023164801, -0.0132851638, 0.020162642, 0.00689673284, -0.0412494689, 0.054989025, 0.0211330373, -0.0501216501, -0.0213948898, -0.00571069494, -0.0111287311, -0.000877013314, -0.00566833653, -0.00670419401, 0.0128076673, -0.0399248041, 0.0334863141, 0.0354271, 0.0182834659, -0.0157265533, -0.0329934135, -0.00203898386, 0.000157640985, 0.0213948898, -0.00824835338, -0.0040741167, 0.0129848029, 0.0147715611, -0.00199662521, 0.00605341373, -0.00356388954, -0.0634607226, 0.0330242217, -0.030451905, -0.0508609973, 0.0211330373, 0.0141708413, -0.0404177, 0.0224268958, 0.0106358323, 0.0288653877, -0.00743199, 0.0119296918, 0.000354511692, 0.0032327231, 0.0605957471, -0.0213794857, -0.0320384242, 0.0156726427, -0.0273712873, -0.0157111492, 0.0235051122, 0.0567141697, 0.00238555321, -0.0151566388, -0.031391494, -0.0133390743, -0.022657942, -0.0330858342, 0.0221958496, 0.0264316984, 0.000328278315, 0.0229506, -0.0323772915, 0.0197775643, -0.0106127281, -0.00351382955, -0.012884683, -0.00437062606, 0.00417038612, 0.0337943733, 0.0457163639, -0.00953451172, -0.0328393839, 0.0400172211, -0.0180062093, -0.0180524196, 0.0066310293, 0.00579541177, 0.0152490567, 0.0421428494, -0.017359281, 0.00191960984, 0.0414959192, -0.00583777, -0.0485813394, 0.0325621292, -0.0373370871, 0.00114367926, -0.00954991486, 0.00537182717, -0.0348725915, 0.00792488921, 0.0124842031, -0.0494747199, 0.0263546836, -0.0422352664, -0.0101660378, -0.0136933448, -0.0229968112, -0.00217953697, 0.00652320776, -0.0126382336, 0.0428513922, -0.00356581481, -0.0340100192, 0.0155109093, -0.0291272402, 0.00947289914, 0.0326237418, 0.0441144444, -0.0131080281, 0.00418578926, -0.00934197288, 0.00283994433, -0.0162040479, -0.0166353341, 0.0383228846, 0.0062266984, 0.00462862803, 0.0041665351, 0.0358275808, -0.00403946, -0.0350266211, -0.025569126, 0.0164659, -0.0143710813, 0.0258309785, -0.0135932248, 0.0213640835, 0.0195003096, -0.0180678219, 0.0129462956, -0.00149891304, 0.00264933123, -0.00122550817, 0.00844089221, 0.0102584567, -0.02703242, -0.00938818231, 0.0264471024, -0.0794183239, -0.0433442891, -0.00158170459, 0.00891838782, -0.00673885085, 0.00084091234, -0.0255383197, -0.0309910122, -0.0291118361, -0.00248182262, 0.0360124186, 0.0561596602, -0.0227195546, 0.00725870533, -0.0178675819, 0.0246603433, -0.00537952827, -0.0283108763, 0.00940358546, -0.00329241017, 0.0257385597, -0.0203936882, -0.0109053859, -0.0239672046, -0.00436677551, 0.00537182717, -0.0183450785, 0.00196293113, -0.0293274801, -0.00981176738, 0.0137780625, 0.0162348542, -0.00214873068, -0.0147022475, 0.00944979489, -0.00822524913, 0.0371522494, 0.0249684062, -0.00443223864, -0.00521394517, 0.0309448037, 0.0266165361, 0.0285111163, -0.028064426, 0.00891838782, -0.0451310463, 0.0310372226, -0.0369058, 0.0396783538, 0.0226733461, -0.0130772218, 0.00636917679, -0.0537567772, -0.0074512437, 0.0190844256, -0.00879516359, 0.0123609779, 0.0153260725, 0.0393086821, 0.0568373948, 0.0407873765, 0.00714703277, 0.0261236373, -0.00622284738, -0.0329318, 0.0140784224, -0.0018685871, -0.0102276504, 0.010389383, -0.00323464838, 0.0386617519, 0.0041472814, 0.0168509781, -0.0123532768, 0.00919564348, 0.0204553, -0.00290348218, -0.0190228131, -0.0218877885, 0.0179291945, -0.0153645799, 0.0260158163, 0.0513538942, 0.00935737602, -0.0179291945, -0.0267859697, 0.0356735513, 0.0064847, -0.0331474468, -0.0300206188, -0.010089023, -0.00464403117, -0.0154569987, -0.0185915269, 0.00420119241, 0.00563367922, 0.0209327973, -0.00787868, -0.0280336197, 0.0230892282, 0.074550949, -0.0154415956, 0.00914943404, -0.051138252, -0.00612657843, -0.0187455583, -0.0469794199, 0.0173746832, -0.00215835776, -0.0188225731, -0.0181294344, -0.0415267237, 0.0116909435, -0.0157496575, -0.0482732765, 0.0124071874, -0.0011715974, -0.0296047349, 0.0396475494, -0.048119247, 0.0427589715, -0.0613659024, -0.00951140653, 0.00769769307, 0.0413726941, 0.0183604807, 0.00138050178, 0.0394011, 0.0301900525, 0.00869504362, 0.0229506, -0.0221496411, -0.0265549235, -0.0431594513, -0.0252302587, -0.00204861071, 0.00901850779, 0.0108514754, -0.00108976848, 0.00428976, 0.0173284747, -0.0249684062, -0.0208557807, 0.00542958872, 0.00838698167, -0.00931886863, -0.0376759544, -0.0233972911, -0.0076168268, 0.028264666, -0.0251070336, 0.00962693, -0.00823295, -0.0125150094, -0.00834077224, 0.0119836023, -0.022349881, 0.0500292294, -0.0119681992, 0.0176211335, -0.0112365531, -0.0251070336, 0.023073826, -0.0613967068, -0.00666953716, -0.017882986, -0.0141092287, 0.0442992821, 0.00887988, -0.0328701884, -0.000460648589, 0.00968084112, 0.0159576, 0.0208403785, 0.0112057468, 0.0015672642, 0.0151951462, -0.0577307753, 0.00885677524, -0.0256153345, -0.0264471024, 0.0045631649, -0.0595175326, -0.0119219897, 0.0262006521, 0.00257039024, -0.0118372729, -0.0149255926, -0.0366285443, 0.0354271, 0.0219648033, 0.0433750972, 0.0169742033, 0.0666029528, 0.0130772218, -0.0362588689, 0.0279874112, 0.00145655451, -0.0232740659, 0.020162642, -0.0298049748, 0.00775545463, -0.0246911496, 0.009565318, 0.0413110815, 0.000557399238, -0.0097501548, -0.0137087479, 0.00358314323, -0.00975785591, 0.0263854899, 0.0235051122, 0.0219185948, 0.00859492272, -0.0237669647, 0.0245063137, -0.0244292971, -0.00524860201, -0.0117756603, 0.0099349916, -0.0094806, -0.0215489194, -0.00297857216, -0.00559517182, 0.0171282347, 0.0136394342, 0.0031133492, -0.0340408236, -0.0364129, -0.0210406184, -0.0039277873, -0.00376027892, 0.00561827654, -0.00383151812, 0.0246757474, -0.0145251118, -0.0331166387, 0.0278333798, -0.01371645, -0.00418193825, -0.0252764672, -0.0230276156, 0.000652224524, 0.0164042879, -0.0164967068, -0.00578000862, -0.0542496741, -0.0258925911, 0.033886794, 0.0492282696, 0.0105896229, 0.017359281, 0.000240793583, -0.000210468759, -0.0155340144, -0.00452465704, 0.037737567, 0.0136548374, 0.0694371238, 0.00229506, 0.0539108068, 0.018499108, 0.0206709448, -0.024629537, -0.00573379965, -0.000614679477, 0.0171282347, 0.026816776, -0.0295277201, 0.0277101547, -0.0314377025, 0.0124148885, -0.0171128307, -0.00186281092, 0.00739348214, 0.0073395716, 0.0203320757, 0.0355503261, -0.0201780461, 0.017667342, -0.00405486301, -0.000825509254, -0.040325284, 0.0106127281, -0.0328393839, -0.0370906368, 0.0151412357, -0.0263854899, -0.016219452, 0.00777085777, -0.0130233113, -0.0252764672, -0.0400788337, -0.0235051122, 0.0136856437, -0.0264162961, 0.0230276156, 0.00938048, 0.0116139287, 0.0266935509, 0.0423276871, 0.0315763317, -0.01486398, -0.0248913895, -0.0161578394, 0.0226887483, -0.0111441342, -0.00108110427, 0.0260158163, 0.0197159518, -0.0237515625, 0.00686207553, -0.0146252317, -0.00447459705, -0.013092625, 0.0162502583, -0.0370290242, 0.0253072735, -0.0333322808, -0.00787868, 0.0285419226, 0.010089023, 0.000685918785, 0.00056510081, 0.0023181648, 0.0310988352, 0.0288037751, -0.00211599912, -0.0132081481, -0.0243060719, -0.0132620586, 0.00431671552, -0.0164504983, -0.00806351658, -0.0242136549, -0.0200856272, 0.0036428303, -0.00950370543, 0.00612272741, 0.00567988865, 0.0196697433, -0.0227195546, 0.0340100192, 0.0155032082, -0.0152336536, -0.0286189374, -0.00812512916, 0.00164716772, -0.000889047, -0.00161828694, 0.0182834659, 0.00975785591, 0.021625936, -0.0399556085, -0.00645004306, -0.000193019951, 0.000522742281, -0.0367209613, 0.00689288182, 0.0185761247, -0.0163118709, 0.0099349916, 0.00504451152, -0.0174825042, -0.0135932248, 0.000892897777, -0.013932093, 0.0212870669, -0.00486737583, 0.00258771889, -0.0104432935, 0.0181140322, -0.0245679244, 0.0264933109, 0.0209482, -0.0192538593, -0.00144500216, 0.0494131073, 0.021410292, 0.0258463807, -0.00493283896, -0.0232124534, -0.0201318357, 0.00107917888, 0.00545269297, -0.0170974284, -0.038784977, -0.0197159518, 0.0325929336, 0.00653861091, -0.00733572058, -0.0191768445, -0.00292273588, 0.0238439795, -0.00361972558, 0.00384307047, 0.00282646669, -0.00556821609, -0.00947289914, -0.0149795031, 0.0357351638, 0.00528711, -0.0137241511, -0.0129462956, 0.0038084134, -0.0394319035, -0.00343488855, 0.00908782147, -0.00901080668, 0.00357351638, 0.0211176332, 0.0181602407, -0.0202396568, 0.0298203789, 0.00542958872, 0.0214873087, 0.0316071361, 0.017882986, -0.0152952662, 0.0589938276, -0.00495209266, -0.00941128656, -0.0105665186, 0.0423584916, 0.0229351986, 0.0125150094, -0.0263854899, 0.0223806873, 0.0393702947, 0.00968084112, 0.0232586637, 0.0281414408, -0.000675329124, -0.0236591436, 0.00583006861, 0.0100582168, -0.0149332937, 0.021410292, 0.0235205162, -0.016003808, 0.0144172907, -0.0191922467, 0.0260774288, 0.0414651111, 0.0062266984, 0.0145867243, -0.00218338775, 0.00171744428, 0.0261082333, -0.00263392809, 0.0128076673, -0.0135316132, -0.0179291945, 0.0307907723, 0.0299127977, 0.0340408236, -0.01112103, 0.00877205841, 0.0333938934, 0.0105357124, -0.00346184405, -0.0224268958, 0.00181467633, 0.00474415114, -0.000444282807, 0.000123345046, 0.00051407807, -0.00557976868, 0.0236437395, 0.0125227105, -0.00756291626, 0.00269746571, 0.017251458, -0.00305943843, -0.049259074, -0.0422660746, 0.0109901037, -0.019746758, 0.0123378737, -0.00369481579, -0.0128153693, -0.00347917248, 0.0140861236, 0.0130618187, -0.0119142886, -0.00477495743, 0.0162040479, 0.0280798301, -0.000862572924, 0.0499676168, 0.00562212709, 0.0215489194, -0.025877187, -0.0128461756, -0.0367825739, -0.0124919042, 0.0198699832, 0.0108514754, -0.00157785381, -0.0326545462, -0.00235089636, -0.0202858672, 0.0207017511, 0.00162598852, 0.0018705125, 0.00452850806, -0.00413958, 0.0672806874, 0.0275099147, -0.0132543575, 0.0183758847, 0.0033309178, -0.0176057294, 0.0167123508, -0.00921874773, 0.000541996153, -0.0144866044, -0.0255999323, -0.00566448551, 0.0228273757, -0.00247797184, -0.0230892282, 0.0169742033, -0.01341609, 0.00293236296, -0.0349033959, 0.00516388519, -0.014856278, -0.0178059693, -0.0386617519, 0.00163272733, 0.0214410983, -0.00039470414, 0.0065578646, 0.0128692798, -0.0063191168, -0.0140245119, 0.0109824017, -0.021610532, 0.000964137, 0.00693524024, 0.00908012, -0.0452850796, -0.014448097, 0.0225501209, -0.0437755771, 0.0105434135, 0.00981176738, 0.0371830538, -0.0133775817, -0.0172976684, 0.0133467754, -0.0188379772, -0.0127152493, 0.0028226159, 0.00844859332, -0.0159267932, -0.000391816051, -0.0119065866, -0.00336364936, 0.0127383536, -0.0241828486, 0.0190844256, 0.0108514754, 0.0306521449, -0.0152644599, 0.0221958496, 0.0129462956, 0.0185607206, 0.00887988, 0.0126151294, -0.0182834659, -0.0255075134, 0.0253380798, -0.00322309625, -0.0371830538, 0.0264779087, -0.00935737602, 0.0200240146, 0.00947289914, 0.056529332, 0.00230468693, -0.016003808, -0.0142863644, -0.0188379772, -0.00879516359, -0.0276793484, -0.0145020075, -0.0149795031, 0.0112057468, -0.0108283712, -0.00596099487, 0.00977325905, -0.0105973249, 0.0210252143, 0.00215450698, -0.0185299143, 0.00795569457, 0.0039894, -0.00839468278, -0.0348725915, 0.0393394865, -0.00610347372, 0.018606931, 0.000977133401, -0.0165583193, 0.000658000645, 0.0158035681, -0.0217953697, 0.00666183559, -0.0241674446, -0.0163272731, 0.0309910122, 0.00612272741, 0.00539108086, 0.0122377537, 0.00438988, -0.011436793, -0.0102738598, 0.0151874451, -0.0177289546, 0.0276793484, -0.00616123527, 0.0217953697, 0.0381072387, 0.0231816471, 0.0291580465, 0.0120914243, 0.0109207891, 0.0324080959, -0.00693138968, 0.02473736, -0.0232124534, 0.0157188512, 0.0117602581, 0.00441298448, -0.00965773594, 0.0183604807, -0.00698144967, -0.00463247858, 0.00548349926, -0.0352114588, -0.0168509781, -0.0566217527, -0.0457471721, -0.0208095722, -0.00793259, 0.0153722819, 0.00589168118, 0.00756676681, 0.0166661404, -0.000160168041, -0.0326545462, 0.0137472562, 0.00777470879, -0.0172822643, 0.0572378747, -0.00155956263, -0.0386001393, -0.00198314758, -0.0100120073, 0.0406333469, -0.0438679941, -0.00658096932, 0.00748975156, -0.0224885084, 0.00631141523, 0.000867867726, -0.00422429666, -0.0336403437, -0.00475955429, 0.0633991137, -0.00773620093, -0.0175595209, -0.0032789323, 0.00824835338, 0.00220071618, -0.020578526, 0.0242752675, -0.0149872042, 0.0176211335, -0.0135239111, -0.0113751804, 0.0308523849, 0.0145867243, 0.00513693, 0.0229660049, -0.00337327621, 0.00768229, -0.0261390395, 0.0215797257, -0.0199315958, -0.011436793, 0.00319421547, 0.0174825042, 0.0111826416, -0.0161424354, 0.00689673284, 0.0433134846, 0.0315455236, -0.00274174963, -0.00712777907, -0.0325929336, 0.0203936882, -0.0361664519, 0.0201472398, 0.00963463169, 0.00411262456, 0.0450078249, -0.00173092203, -0.0120991254, -0.00403175829, 0.0215489194, 0.0247681662, -0.0107744597, -0.0134700006, 0.0338251814, 0.0177905671, 0.00250300183, -0.0270940326, -0.0117833624, -0.0116832424, -0.0458703972, -0.00953451172, -0.0163734816, 0.0188995898, -0.00326738, -0.011436793, 0.00201010308, -0.0101968441, 0.0300976336, -0.0319152, -0.0261236373, 0.0151335336, -0.0256307386, 0.0238747858, -0.0084716985, -0.0302208588, -0.00363512873, 0.0021930146, -0.000503488467, -0.0144557981, -0.0134391943, 0.020162642, 0.00458241859, -0.019223053, -0.022858182, 0.00526400516, 0.0484273098, 0.0142786624, 0.00173958624, -0.00428976, 0.0113135679, -0.0394011, 0.0345953368, 0.00979636423, 0.0214873087, -0.00911862776, -0.00106377574, -0.00871814787, 0.0222728644, -0.019130636, 0.00366786029, -0.0213794857, -0.00920334551, 0.0168201718, 0.0312836729, -0.0190228131, 0.00549505185, 0.00209482, -0.000375931617, 0.019438697, 0.0297741685, -0.0081405323, -0.00901850779, -0.0232586637, -0.0348725915, -0.0116755404, 0.0174208917, 0.0211330373, 0.0236591436, 0.0282492638, -0.0438988023, 0.0206709448, 0.00546424557, 0.014856278, -0.0241674446, 0.00770154409, -0.00139109138, 0.0105049061, 0.0285727289, -0.00616123527, 0.0157342535, 0.00318843918, 0.0147330537, 0.00490588369, 0.0366285443, 0.021410292, 0.0316379443, -0.0092726592, -0.00441683549, -0.000834654842, -0.00413958, -0.0229968112, 0.0157265533, -0.011429091, -0.00261852494, 0.00679276185, -0.0162502583, 0.00499060052, 0.000909263559, -0.0215951297, -0.0181756429, -0.0357351638, -0.0112673584, -0.0117987655, 0.0211484395, 0.0122146485, 0.0213640835, -0.00103489496, -0.0135547174, 0.00285919826, -0.0184529, 0.0123840831, -0.00289000431, -0.00380263734, 0.0216721445, 0.00594944274, 0.0132620586, -0.0115215098, 0.0164042879, -0.0161270332, -0.00625750469, -0.0299127977, 0.0308831912, 0.0213178732, -0.0217799656, -0.00718554063, -0.00720094377, 0.0132851638, -0.00607651798, 0.023381887, 0.000684474711, 0.0100505147, 0.00782476831, 0.0278333798, -0.00957301911, 0.026293071, 0.00169819046, 0.0248605832, 0.0256615449, 0.00280721276, 0.0103508756, 0.00306136371, 0.0361972563, 0.00314800604, 0.0287267584, -0.0175903272, 0.00465173274, -0.00940358546, -0.00196774444, -0.00656171562, 0.00283224275, -0.0200856272, -0.00136028521, -0.00738963159, -0.00435522292, -0.00213910383, -0.00195715483, 0.00575305335, -0.0260774288, -0.0379840136, 0.00313837919, 0.0741196573, 0.0124842031, -0.00315570761, -0.0146098286, -0.024629537, -0.0169742033, -0.00809432287, 0.00387002574, 0.0166353341, -0.00663873088, 0.0148254726, 0.0147330537, 0.00548735028, -0.00850250479, -0.0223190747, -0.00186666171, -0.0193308759, -0.00298242294, 0.0296355411, -0.049166657, 9.86760351e-05, 0.0244292971, -0.00676195556, -0.00973475166, 0.0503989048, 0.0111903436, -0.0315301195, -0.0154107893, -0.0251532421, 0.0156726427, -0.00189457985, 0.0205939282, 0.0212870669, 7.39468524e-05, -0.0118064666, 0.0385693312, -0.00674655242, 0.00747819943, -0.0132466555, 0.0261082333, -0.0236283373, -0.000888084294, -0.00399325043, -0.00569144124, 0.000103008148, 0.00219686539, -0.012684443, -0.00142671098, -0.0200394168, 0.0261082333, -0.0244755074, 0.00660022302, -0.0201164335, -0.00207941676, 0.0113751804, 0.0195927285, -0.0102045462, -0.019746758, 0.0278333798, -0.0279103946, -0.013824271, -0.0220572222, -0.0229043923, -0.0171282347, 0.0129616987, 0.029204255, -0.0306213386, 0.0338559859, -0.0122993654, 0.0260312185, 0.0130541166, 0.0117525561, -0.00533717, 0.00080673676, -0.0101198284, -0.0108360723, 0.0135778217, -0.0121068275, 0.00743199, -0.0112057468, -0.0351806544, 0.00782476831, 0.00105703692, 0.00664258189, -0.0116216298, 0.00959612336, -0.0157342535, -0.00671189558, -0.0201164335, 0.000552104437, -0.0084794, -0.00893379096, -0.0261698458, -0.0263700858, -0.0187609605, 0.00825605541, 0.0166815445, 0.00626135524, -0.00183778093, -0.0139089888, 0.0155417155, 0.0104432935, -0.0124842031, -0.00452850806, 0.0178059693, -0.00581081491, 0.0204553, 0.00709312223, -0.0127614588, 0.00531406514, 0.0189303942, -0.00731261587, 0.01112103, 0.0151643399, -0.00045150303, 0.00580696436, -0.00829456281, 0.00610347372, 0.0150796231, 0.0180216134, -0.0304981135, -0.017451698, 0.0114444941, -0.00451310491, -0.0147330537, -0.00879516359, 0.018406691, 0.0305443238, 0.00215835776, 0.00199277443, -0.00659252144, 0.00838698167, -0.0100351116, 0.0153491767, -0.00388542889, 0.00568373967, -0.0202704631, 0.022858182, -0.00158651802, 0.0304056965, -0.00189843064, -0.0113212699, 0.00123128435, 0.0148408748, -0.00738578057, 0.0327777714, 0.00112635083, 0.00219494, 0.00803271, 0.0329626091, -0.018606931, -0.0139474962, 0.0256153345, 0.00491743581, 0.0156264324, -0.0204861071, -0.00877976, -0.00261274888, -0.0256769471, 0.0125920242, 0.0102199493, 0.0206555407, 0.0124688, 0.00773235038, -0.00220649224, 0.00360817346, -0.00458626961, -0.0318227783, -0.00350997876, 0.00904161297, 0.00706616649, -0.0113443742, 0.0309448037, 0.00914943404, 0.0203320757, 0.0212254561, 0.0124533968, 0.00198699837, 0.0351498462, 0.00156245078, 0.00636917679, -0.00362550188, -0.0132620586, 0.0191768445, 0.00817904, -0.012884683, -0.00662332773, -0.00887988, 0.00356581481, -0.00120047817, -0.0200394168, 0.0291118361, 0.0254304986, 0.0166199319, 0.00753211, -0.00180408673, -0.0011196119, -0.018606931, -0.00488662953, 0.025261065, -0.00639613206, 0.0261390395, 0.00820214394, 0.0256153345, -0.0116986455, 0.0290656276, -0.0372138619, 0.00775160408, 0.00317881233, -0.019438697, 0.00819444284, -0.0375527292, -0.0184374955, 0.0017386236, -0.0128461756, 0.0116601372, 0.0141708413, -0.0233510807, 0.0228889883, 0.0244292971, -0.000381707767, 0.0104818018, -0.0344413035, 0.0168663822, 0.000693139, -0.0041665351, 0.00369866658, -0.00434367079, -0.0145636201, 0.00968084112, -0.00743584055, 0.0166353341, 0.0162810646, 0.010189143, 0.0307291597, 0.00636147521, -0.0115600172, -0.0287113562, -0.0123609779, 0.023797771, 0.00774005149, 0.0147715611, 0.0120991254, 0.0515079275, 0.0242906697, -0.000160408716, 0.00306328922, -0.028064426, -0.0221958496, 0.0282338597, 0.00965003483, 0.00763223, 0.023797771, -0.0306367427, 0.0192076508, 0.0110594174, -0.0213024709, -0.0253688861, 0.00736267585, -0.0475647375, -0.0050214068, -0.0266319383, -0.0072856606, -0.00988878217, -0.0312066562, -0.0106974449, -0.00247027026, -0.0101506347, -0.0161732417, -0.0185915269, -0.000526593067, 0.0199161936, 0.00213140226, -0.00857952, 0.0240904298, -0.0229968112, 0.0116678393, 0.0165583193, -0.00903391093, -0.00225655246, -0.00933427177, 0.0243676845, 0.0103123672, -0.014240155, -0.0177289546, 0.0173746832, 0.00475955429, 0.0105357124, 0.00791718718, 0.00760527467, 0.0158497784, 0.0116447341, -0.0119836023, -0.00299975136, 0.0133698806, 0.0229506, 0.0222574621, -0.0257539637, 0.0157342535, -0.0178213734, -0.00148736069, -0.0157111492, 0.0154647008, 0.00977325905, 0.00251647946, -0.00820214394, -0.00889528356, 0.00260119652, 0.021826176, -0.0275253188, -0.00411262456, -0.0218723845, -0.0269400012, 0.0121376337, -0.00588012906, -0.0158959869, -0.00087942, -0.0168663822, -0.00726255588, -0.0186377373, 0.000841393659, -0.0114059867, -0.0704229176, 0.0121992454, 0.0155263124, -0.00165005575, -0.0084794, -0.0225655232, 0.00385847362, -0.0173900872, 0.00486737583, -0.00446689548, -0.00965773594, 0.0105357124, -0.000914077, 0.0321308412, 0.0147253517, -0.000161010408, 0.00410107197, 0.00335979857, -0.0039085336, -0.000408422493, -0.0159113891, 0.00149313686, 0.0232740659, -0.0251378398, 0.00238555321, -0.0119990055, -0.0193616822, -0.00592248747, 0.00211985, -0.00084380043, 0.0194849055, 0.000748012448, -0.0148100695, 0.0538183898, 0.0158651806, 0.00269554043, 0.0127768619, -0.0111518353, -0.00272634649, 0.0285573248, 0.0138935857, 0.00588397961, 0.0118372729, -0.0352114588, -0.0105819218, 0.00786712673, -0.0125997262, 0.00612272741, -0.017467102, 0.0149101894, 0.00628446, -0.012884683, 0.0145482169, 0.0122300517, 0.0170820244, 0.00646159519, 0.00669649243, -0.00766688725, -0.0126690399, 0.00183585554, -0.00652705831, -0.0335171185, 0.0284186974, 0.0282338597, 0.00498289894, -0.0300976336, -0.00673500029, 0.0211638436, 0.0274945125, 0.0244909097, -0.00191768445, 0.00284957117, 0.00841778796, 0.0109901037, -0.0331166387, 0.00129193405, -0.0286805499, -0.00330973859, 0.0124148885, 0.00498675, -0.00154801039, 0.0152413556, 0.022858182, -0.00125053816, -0.00142959913, -0.0183758847, 0.00824065227, -0.00382381654, 0.00869504362, 0.0301900525, -0.0106281303, 0.000323224172, -0.00864113215, 0.0144866044, 0.00445919391, 0.0189766046, 0.00152009225, -0.00489048054, -0.00742813898, -0.00781321619, -0.0213332772, -0.0210252143, 0.00795569457, -0.0124071874, -0.00981176738, 0.00307484134, -0.0139706, -0.00204861071, 0.00304596056, -0.014032213, 0.0199624021, -0.0226887483, 0.0114830025, -0.0225655232, -0.0170358159, 0.0119450949, 0.0161578394, 0.0335787311, -0.0438679941, 0.00153742067, 0.00419734139, -0.014032213, 0.00611117529, -0.0253072735, 0.0111287311, 0.00180312397, 0.0219956096, -0.00355618796, 0.0133005669, -0.0144634992, -0.019130636, 0.0152259525, -0.0081867408, 0.0028688251, -0.0248759873, -0.0208095722, 0.0150334137, -0.00405486301, 0.0132235512, -0.0103277704, 0.00672729872, 0.00571839651, 0.0255999323, 0.00878746156, -0.00230661244, 0.0163272731, -0.0168509781, 0.00662332773, 0.00893379096, -0.0237823687, 0.0202858672, -0.0184220932, 0.00703536, -0.00188784092, -0.00613042898, 0.0104895029, -0.010805266, -0.00414343085, -0.00365245715, 0.0305597261, 0.00754751312, 0.00798650086, 0.0276639462, 0.01341609, 0.0107436543, 0.0104663987, 0.0130772218, -0.00324812625, 0.00853331108, 0.00036943343, -0.0164967068, 0.0106435334, 0.0116601372, 0.0159267932, -0.00728951162, 0.0279103946, -0.0210714247, 0.00424355082, 0.00934197288, 0.0166815445, -0.00497904839, -0.0161424354, -0.0169125907, 0.0168509781, 0.00503295893, -0.0113212699, -0.00345991855, 0.0163118709, 0.00100120076, 0.000986760366, -0.00614198111, 0.00377760734, 0.0103200693, -0.00911092665, -0.0129771018, -0.0137087479, -0.0166353341, 0.00647699833, 0.0182526596, 0.0020274315, 1.31994238e-05, -0.023597531, 0.00230468693, 0.00381033891, -0.00389890675, -0.0113597773, 0.0165583193, -0.00642308779, 0.00509842206, 0.0207633618, -0.0134931048, -0.0254459, -0.00623825053, -0.0219956096, 0.00164042891, -0.0286651459, -0.00464788172, 0.00545654399, -0.0105665186, 0.00784402248, -0.016419692, -0.00603415957, 0.0008808641, -0.0157111492, -0.00645389408, -0.0280798301, -0.0156110292, -0.0309602059, 0.00369289028, -0.0157650597, -0.010712848, 0.0111903436, -0.00735497428, -0.00124379934, -0.0166045297, -0.00341948564, -0.00949600339, 0.0149641, -0.00502525736, 0.0220572222, 0.0055181561, 0.0010108276, 0.00292466138, 0.012684443, 0.00270516728, -0.000244403695, 0.00332899229, -0.0243830886, -0.0034714709, -0.0203474797, 0.0215797257, 0.0129848029, 0.00119855278, 0.019638937, -0.0122454548, -0.0104355924, -0.00125150091, 0.0244292971, 0.0200240146, -0.0112827616, 0.00929576345, 0.00209482, -0.0212408584, 0.01236868, -0.00443994, 0.0223652832, -0.0120375128, -0.0145020075, -0.0081405323, 0.00518699, -0.0232432596, 0.00357351638, -0.00653090933, -0.0143094687, -0.00891068671, 0.0349342041, -0.0126998462, 0.00782861933, -0.019947, -0.0133852838, 0.00459782174, -0.00719709275, 0.00387002574, -0.0126382336, -0.00211985, 0.014656038, -0.0158959869, 0.00210637227, -0.00787482876, -0.0235821269, 0.00492128683, -0.00597254746, 0.0143479761, -0.0109901037, 0.0272942726, 0.00344451563, 0.00315763312, 0.0176057294, -0.00341756013, 0.0120837223, -0.00315185683, 0.00577615807, 0.00292851217, 0.0149024874, 0.0316687487, -0.0364129, -0.0268783886, -0.00418193825, 0.00143633795, -0.0018223779, 0.00353693403, -0.00152490567, 0.00487892795, 0.0102430535, -0.00902621, -3.48976209e-05, -0.00207749149, 0.00373524893, -5.64378788e-05, -7.60527473e-05, -0.0361664519, -0.0131542375, 0.0011484928, -0.00616123527, 0.0064115352, -0.0133313723, -0.00389120518, 0.00730106374, -0.00268013729, 0.0143094687, -0.00562597811, -0.00755906524, 0.0190844256, -0.0100197084, 0.0132851638, 0.0186377373, -0.0187455583, -0.00800960604, 0.00573765, 0.0103046661, -0.00951910857, 0.0234589037, -0.0032847086, -0.019947, 0.0022180446, 0.00577230705, -0.0088028647, -0.0316379443, 0.0218877885, 0.0149641, -0.0164967068, 0.00460937386, 0.00727795903, 0.0236899499, 0.021610532, 0.00951910857, -0.0123455748, -0.00422814768, -0.0123532768, 0.0115677193, -0.0111903436, -0.0182526596, 0.00740888529, -0.0158959869, 0.00951140653, -0.0198391769, -0.00718554063, -0.0211330373, 0.0195311159, 0.0013121505, -0.0182372555, -0.00298434822, 0.020686347, 0.00118796318, -0.0145251118, 0.0126459356, 0.0136009268, 0.0187917668, 0.0290502235, -0.00835617539, -0.0273866896, -0.00169722771, 0.00621514581, 0.00555666396, 0.00486737583, 0.00573765, -0.0109207891, -0.0185145121, -0.013508508, -0.015279863, -0.00193693826, 0.00299782609, -0.0350574292, 1.01684445e-05, 0.00616123527, 0.0265857298, -0.00523319934, 0.0146483369, -0.0070276591, -0.000839949644, -0.00194271444, -0.00731646689, -0.0257077534, -0.0134468954, 0.00495979423, -0.0195157118, 0.00514078047, -0.0185607206, -0.00514848204, 0.0225501209, -0.00958072115, -0.0227503609, -1.50721626e-05, -0.0158651806, -0.00123609777, 0.00242021028, -0.00104741, -0.0180678219, 0.0272788685, 0.0267859697, 0.00136028521, -0.0110440142, -0.00407796772, 0.00456701545, 0.0215027109, 0.00901080668, 0.000912632968, 0.00638458, -0.00614583213, 0.0336403437, 0.00671189558, -0.0248913895, 0.00861032587, 0.00450925389, 0.0116601372, 0.0238901898, 0.0014604053, 0.0127460556, 0.00675425399, -0.00988878217, 0.000595425605, -0.0142786624, 0.00923415087, -0.00139301678, 0.00752825942, 0.00982717052, -0.0267089549, 0.00408566929, 0.00264162966, -0.00871814787, -0.00770154409, 0.0118372729, 0.0140476162, 0.019654341, -0.0111133279, 0.00616123527, 0.00273404806, -0.00495979423, -0.00146906951, -0.02972796, -0.00763223, 0.0364437066, 0.00269554043, -0.0180986281, 0.0253226776, 0.00729336217, 0.0293736886, -0.0211638436, -0.0251224358, -0.0135316132, 0.0273096748, -0.00663488032, 0.019130636, 0.0174362957, 0.0124765011, -0.000817807682, -0.012052916, 0.0129462956, 0.00806351658, -0.0109669985, -0.0166969467, 0.000169794977, -0.000244644354, -0.0115677193, 0.00987337902, 0.0041472814, 0.00976555794, 0.000442838791, -0.000720094366, 0.00128423248, -0.011436793, -0.00487892795, -0.00171744428, -0.00442838762, 0.00911862776, -0.0134854037, -0.00630371366, -0.0227195546, 0.0267397612, -0.0148870843, 0.0023181648, -0.00706231594, -0.00309409527, 0.00458241859, -0.000936218945, 4.96087741e-05, -0.0132543575, -0.00747049786, -0.00082406518, -0.0164967068, -0.0110825216, -0.00699300179, 0.00963463169, 0.000798072491, -0.00477880798, 0.0109747006, 0.00132466562, 0.0102969641, 0.0239980109, 0.025045421, -0.00427050609, 0.00477495743, -0.00411262456, -0.0150873251, 0.0132928649, -0.0296047349, -0.0158189721, 0.0069737481, 0.0204861071, -0.00132081483, 0.0036428303, -0.00652705831, 0.0178521797, 0.0251532421, -0.00481346482, -0.0191922467, -0.0270786285, -0.00499060052, 0.0142170498, 0.0207325555, 0.00285342196, 0.0120298117, -0.0111518353, 0.00237015, -0.0219185948, -0.00739733316, 0.00216028304, 0.00167893653, 0.00998890214, -0.0134237912, 0.020686347, -0.00463247858, 0.0225039124, -0.0139706, -0.0344105, 0.00550275296, -0.00403560884, -0.0039894, -0.00873355102, 0.0119604981, -0.00804811344, 0.0225963295, 0.00067629182, -0.0066310293, -0.0165429171, 0.0163272731, 0.0150873251, -0.000358843827, -6.24547101e-05, -0.0171590392, -0.000319854735, -0.00618048897, 0.0182680618, 0.0349342041, -0.00298049743, 0.0222882684, 0.00326545467, 0.0287421625, -0.00318073761, -0.00823295, -0.0167431571, -0.0157727618, -0.00440913392, -0.014132333, 0.00718939118, 0.0129231904, 0.028896194, 0.0281106364, -0.027124837, 0.0105973249, 0.0206709448, -0.0206093322, 0.000587724091, 0.00052851846, 0.0086565353, -0.00680046342, 8.14678933e-05, -0.0205631219, 0.000909744878, 0.0142555581, -0.0163426772, -0.00378723419, -0.0276331399, 0.00217376091, -0.01796, -0.0137857636, 0.0329934135, 0.0101352315, 0.038261272, 0.00197544601, -0.0077631562, -0.010289263, -0.00495209266, -0.00738578057, -0.002728272, -0.00359277031, -0.000521298265, -0.012576621, -0.0180986281, -0.0157881659, -0.00137953903, -0.0110902237, 0.0265241172, 0.0136548374, 0.00581851648, 0.00094295782, -0.00591863645, 0.0212716646, -0.00280528748, -0.00903391093, -0.00727410847, 0.00713162962, 0.00529481145, -0.00319036469, 0.00403560884, -0.00262237573, 0.00851020589, 0.00698144967, -0.0100659179, 0.0297741685, -0.00101371575, 0.0154107893, 0.01351621, -0.0208711848, -0.00241635949, 0.0119913043, -0.0461784564, -0.0109438943, 0.00139686756, 0.00425510295, 0.00330011151, -0.00489048054, 0.0106743397, 0.00277640671, -0.00797109772, 0.0129308924, 0.00227773166, -0.00696604652, -0.00450925389, 0.00495979423, -0.011529211, 0.00724330219, 0.00766303623, -0.0111595374, -0.0132389544, -0.0154030882, 0.0419272073, -0.00589168118, 0.00936507713, 0.010189143, -0.00682741869, -0.00703150965, -0.00288807903, 0.000711911474, 0.0187301543, -0.00921104662, 0.0204861071, -0.0088028647, 0.00954991486, 0.00718554063, 0.0190844256, -0.000183032011, 0.0169896055, 0.00356581481, -0.010389383, -0.00361780031, -0.00638843095, -0.00631141523, -0.00936507713, 0.000910226256, 0.0148716811, 0.00450925389, -0.0119296918, 0.0113982847, -0.00979636423, 0.0145097086, 0.0315455236, -0.0168047696, -0.00878746156, -0.0127768619, 0.00674655242, 0.0322232619, 0.00254536024, -0.000740310934, 0.0178675819, -0.00387965282, 0.0229660049, 0.00814823341, 0.0168047696, -0.0106743397, 0.0114830025, -0.0110902237, -0.0021718354, 0.00109458191, 0.0112827616, 0.00660792459, 0.027756365, 0.0129077882, 0.00697759865, -0.00953451172, -0.0192076508, 0.00227580615, -0.0192384571, 0.00785942562, 0.00501370523, -0.0187455583, 0.0182680618, 0.00718939118, -0.00387580204, 0.00525630359, 0.0131157292, -0.0191922467, 0.00392393675, 0.0198237747, -0.00778626092, -0.000609384675, 0.0110902237, -0.0016153988, -0.0129000861, -0.00539493142, -0.0344413035, 0.00562212709, 0.00294198981, -0.00962693, 0.0170358159, -0.0284186974, -0.0185145121, 0.00411262456, -0.00178964634, 0.0158805829, -0.030036021, -0.00171359349, 0.00668879086, 0.0101968441, -0.00772079779, 0.000956916832, 0.00331551465, 0.0271710474, 0.00288615352, -0.00209482, -0.00213140226, -0.00560672395, 0.00843319111, -0.00732416846, 0.0118449749, -0.00486737583, 0.0148100695, 0.0145867243, -0.00797109772, -0.00135258364, 0.00229891087, -0.00769769307, 0.00755521469, 0.00483656954, 0.000861610228, 0.0143248718, 0.00434752181, -0.0040741167, 0.00257424102, 0.00552585768, -0.00376605499, 0.0154647008, 0.0069853, -0.00386617519, -0.0189457983, -0.00662332773, 0.00593789062, -0.000930442766, 0.00877976, 0.0117910635, -0.0189457983, 0.00612657843, 0.00954221282, 0.0318227783, 0.0088413721, 0.00420889398, -0.0155032082, 0.00922645, 0.0119450949, -0.0133544775, -0.00165775733, -0.00666183559, 0.0305135176, 0.0163272731, -0.0125920242, -0.00500215264, -0.00383921969, 0.0207941681, -0.00310949842, 0.0121684391, 0.0102584567, -0.00250107632, -0.0173746832, 0.00201780442, -0.000165462858, -0.00794799346, 0.00955761597, -0.0195927285, -0.0288345814, 0.0256153345, 0.00174247439, 0.000780262693, 0.010497204, 0.00202358072, -0.0140707204, 0.0195003096, -0.00857181847, -0.0213178732, -0.00275907805, -0.0252148546, 0.0220110118, -0.021933997, -0.00824835338, -0.00609192112, 0.00782861933, -0.00052563037, -0.00868734159, -0.00199662521, -0.00689673284, -0.0230892282, -0.017975403, -0.0063922815, 0.0117063466, 0.00198507286, 0.0158805829, -0.00465173274, -0.00968854222, -2.16756343e-05, -0.00182622857, 0.00403175829, 0.0145482169, 0.0264933109, -0.00554896239, 0.000976652, 0.00692368811, -0.00507916836, -0.0199624021, 0.00239325478, 0.00323079759, 0.016527513, -0.00291118352, -0.000100601421, 0.0129539967, 0.0171436369, 0.00612272741, -0.0155032082, -0.0127460556, -0.0192846656, 0.000529481156, 0.0152028482, -0.0224423, 0.00842548907, -9.42235783e-05, -0.0100043053, -0.00121395593, -0.0374603085, 0.0238285773, -0.0249684062, 0.00578771, 0.000466665428, -0.00393741438, 0.00199855072, 0.00343488855, 0.0151335336, -0.0185145121, -0.0236129332, 0.0176365357, 0.00169241428, 0.000340552651, 0.000341515348, -0.0060072043, 0.0172360558, 0.000287604547, -0.0207479596, 0.0112211499, -0.0233202744, 0.0136009268, 0.00966543797, -0.0143017676, 0.0155109093, 0.00760912569, 0.00635377364, -0.00482886797, -0.017882986, -0.0113135679, -0.00991958845, 0.00169145165, 0.022349881, -0.0176981483, 0.00591863645, 0.00345606776, -0.0139397951, 0.00677735871, 0.0196851473, 0.00746664684, 0.000123224701, 0.00613428, -0.0276331399, 0.00113116426, 0.00319036469, -0.00892609, 0.0419580117, 0.0156572387, -0.0246603433, -0.00571069494, 0.00693909125, 0.00104163378, -0.00239710556, 0.00462477701, -0.000554511149, -0.00740888529, 0.00640768465, 0.017467102, 0.0123455748, -0.0225501209, 0.00679276185, 0.0186685435, -0.0224423, 0.000996387214, 0.0144249918, 0.0323464833, -0.000436340604, 0.018191047, -0.00700455438, 0.0116832424, -0.00680046342, 0.00201973, -0.0221650433, -0.00472489744, -0.0206247345, 0.00536797615, -0.00871814787, 0.0101429336, 0.00336364936, -0.00803271, -0.0010965073, 0.0152259525, -0.0367517695, -0.00958842225, 0.0166507382, 0.00264548045, -0.0149795031, 0.019746758, -0.0209482, -0.00551045453, -0.00379108498, 0.0364129, 0.0209327973, 0.00552585768, -0.00235282164, 0.0224885084, 0.000251984893, 0.0219494011, -0.0103662778, 0.0071393312, 0.0028746014, -0.0296663474, -0.00919564348, -0.0241212361, -0.00473259855, 0.0337019563, 0.00676195556, -0.00923415087, 0.0114521962, 0.00228158245, 0.0150565188, -0.0230892282, 0.00457856804, 0.00581081491, 0.00556821609, -0.00116485858, 0.0158035681, -0.03592, -0.0212716646, 0.0373678915, 0.0226271357, 0.00413958, -0.0242444612, 0.000155715592, 0.00706231594, 0.00572994864, -0.000791333674, 0.0118295718, -0.00428205868, 0.00453235861, 0.010189143, -0.0128384735, 0.00634992309, 0.00837157853, -0.0235051122, 0.00114560465, -0.00265895808, -0.0168663822, -0.00146425609, 0.012892385, 0.00372177106, 0.022765765, 0.0137626594, -0.0135393143, -0.0176211335, 0.0102584567, -0.0179908071, -0.0169279929, 0.00296124374, 0.0185299143, -0.0211946499, 0.0121376337, 0.0150873251, -0.0184374955, -0.00634992309, 0.00312682684, 0.0125535168, -0.0192692634, 0.00826375652, 0.000572802324, -0.0201472398, 0.00449385075, -0.0215027109, -0.00116678397, -0.00393548887, -0.00804811344, -0.000774005195, 0.0145867243, -0.0120144086, 0.02703242, -0.014448097, 0.00738193, 0.0255075134, -0.00551045453, 0.0062998631, -0.00100408879, 0.0165121108, -0.00307484134, 0.0335479267, 0.010805266, -0.00157592841, 0.00155089842, -0.00556051498, -0.00407026615, 0.000251744234, 0.00485967426, -0.00869504362, 0.00737422844, 0.00845629536, 0.00225655246, 0.0160808247, 0.0046363296, -0.0251532421, 0.0249530021, -0.0655555427, 0.00441683549, 0.00464018, 0.0105434135, 0.0156649407, 0.013200446, 0.0216567423, -0.00917253923, 0.0264162961, -0.00467868801, -0.00190998288, 0.0154030882, 0.00457471702, 0.00539878244, -0.0240596235, -0.00302863214, 0.0423276871, -5.01803734e-05, -0.00126112788, -0.0102353515, 0.0109747006, 0.0104895029, 0.000588686788, 0.005352573, -0.00275715278, 0.00554896239, 0.00541418558, 0.000165703532, -0.010081321, -0.0197621621, 0.00252033025, 0.00339638093, 0.00580696436, -0.0191460382, 0.0341640487, 0.00490973424, 0.0184374955, -0.002245, -0.0147176506, 0.000190011531, -0.00906471722, 0.00404331041, 0.0143710813, -0.00848710164, -0.0159730017, 0.00658867089, 0.00108880573, -0.0166815445, 0.017882986, 0.00334824622, -0.0245525222, 0.0038815781, -0.00867193844, 0.00333669386, -0.00890298467, 0.0173746832, -0.00808662083, -0.0200702231, 0.0388773941, -0.0135778217, -0.00676965714, -0.0296663474, 0.00403560884, -0.0140938256, 0.0295893326, -0.00886447728, -0.00625750469, -0.0063383705, -0.0170204118, 0.018699348, -0.0131619386, -0.0102199493, 0.00278988434, 0.00959612336, -0.00733187, 0.00709312223, 0.00523319934, 0.00798650086, 0.0163272731, 0.012992505, -0.00670419401, 0.014340275, 0.0240596235, -0.000763896911, 0.00922645, -0.0176981483, -0.0219648033, 0.01351621, 0.023597531, -0.0132466555, 0.0109207891, -0.00407026615, -0.0101968441, -0.00132370286, -0.00769384252, -0.0142632592, -0.00698915124, -0.0067234477, 0.0164967068, 0.00448614918, 0.00245101633, 0.00354848639, 0.0254767071, 0.00935737602, 0.0340716317, -0.0227041524, 0.0206401385, -0.00167893653, 0.00567218708, 0.0255999323, 0.0171282347, 0.00679276185, 0.0225809272, -0.0123070674, 0.0327777714, -0.0035966211, 0.000716724957, 0.00499445107, -0.00776700722, -0.0170974284, -0.0242906697, 0.00511767576, -0.00843319111, -0.0233202744, -0.00441683549, 0.0152721619, -0.00708927121, 0.0101506347, -0.0128769819, -0.0169279929, -0.0196697433, 0.00854871422, -0.00486737583, 0.012060618, 0.0268783886, -0.00418964, -0.00065318722, 0.00413572928, -0.0266165361, -0.00187532592, -0.011529211, 0.0110055059, 0.0130079081, 0.0138011668, -0.0158189721, -0.0286651459, 0.00869504362, -0.00938818231, 0.00504451152, 0.000306377042, 0.00237015, -0.021102231, 0.00841778796, -0.00779781351, -0.00548735028, 0.0178213734, -0.00831766706, 0.00606496586, -0.000226954871, -0.003352097, 0.0183450785, 0.0167123508, 0.0158497784, -0.0265241172, 0.0229968112, 0.0056760381, 0.00556436554, 0.0106589366, 0.0173900872, -0.0113674793, -0.00101756654, 0.00385654811, -0.000298916188, -0.00524090091, 0.00142093492, -0.0212254561, 0.00512152677, -0.0127306525, 0.0253996924, -0.00211407384, 0.0195773244, -0.0192076508, -0.0140630193, -0.0103277704, 0.0290656276, -0.0240442213, -0.00209674542, -0.0109361922, 0.0098964842, -0.00626520626, 0.0052794083, 0.0303286798, 0.00218531303, 0.00351190404, -8.81465749e-05, -0.00881826784, 0.00261467416, -0.00377568183, 0.000164620506, -0.00519854203, 0.0227349587, 0.0016423543, 0.000557399238, 0.00282839197, 0.0166507382, -0.0160654206, -0.00138627796, -0.00658867089, -0.0156495366, 0.0166661404, 0.0163580794, -0.00551430555, -0.0114598973, 0.0154338945, 0.000763415534, 0.0408181846, -0.0148870843, -0.0161424354, -0.0152336536, 0.0107590565, 0.0290964339, 0.00820984598, 0.0181140322, 0.0218877885, 0.00697759865, -0.0112904636, 0.0204090923, -0.000994461821, -0.00971934851, 0.00988108106, 0.00930346549, 0.0145020075, -0.00192153524, -0.0120375128, -0.00104163378, 0.00446304493, -0.000232009013, 0.0103123672, -0.0125381136, 0.0152336536, 0.00566063495, -0.000198314752, -0.0109592974, -0.00402405672, -0.00310372212, -0.00524090091, 0.00899540354, 0.0166045297, 0.00744739315, 0.00763223, 0.0106127281, -0.00632681837, -0.0144557981, 0.0133313723, 0.0143710813, -0.0142863644, -0.0309294015, 0.022765765, 0.00234126928, 0.00407796772, -0.00839468278, -0.00609577214, 0.0244601034, -0.0222574621, 0.014756158, -0.0230892282, 0.00900310464, -0.0115446141, -0.010705146, 0.0114675993, -0.00333284307, 0.0102045462, 0.00871044584, -0.00113020162, 0.00064211624, 0.00732031744, -0.0135778217, 0.0317919739, -0.0094806, -0.00462862803, 0.0097501548, -0.00405101199, -0.00978096109, -0.010605026, 0.00636147521, -0.00362550188, -0.0116678393, -0.0147022475, -0.0160654206, -0.0021256262, 0.0177443568, -0.00626135524, 0.0195927285, 0.017359281, -0.00763993151, -0.0223652832, -0.00764378253, -0.00732416846, -0.00782091822, -0.0180370156, 0.00683126971, -0.0285881311, -0.00167316047, -0.00920334551, 0.0103662778, -0.0327161588, -0.00825605541, -0.0148023674, -0.00278410804, -0.0128692798, -0.0100197084, -0.0202550609, -0.0079942029, 0.00300937821, -0.0133005669, 0.018606931, -0.0111826416, -0.0157265533, 0.0235513207, -0.0172206517, -0.00517928833, -0.000422381563, -0.00585702434, 0.00692753866, -0.00251455419, -0.00410492299, 0.0450386293, 0.00128423248, -0.00516773621, -0.0427897796, -0.0243060719, -0.00174825045, 0.00594174117, 0.0168509781, -0.0193308759, -0.0167123508, -2.57670799e-05, -0.00636147521, -0.00581851648, -0.0126536367, -0.0238593835, -0.00516773621, -0.00377568183, -0.00703536, 0.0106589366, -0.0143171707, -0.0100274105, -0.00953451172, 0.0315763317, -0.000619974278, 0.00500215264, -0.0161116309, -0.00131985208, 0.0156572387, -0.00522164674, 0.0160500184, -0.0144326938, -0.0157650597, 0.019654341, -0.00693138968, 0.00119662739, 0.00183393015, -0.00693909125, -0.0241674446, 0.00208326755, -0.00301515451, 0.00343103777, 0.0215951297, -0.0201934483, -0.00140264374, -0.0108591774, -0.014448097, 0.00036365728, 0.0627521798, 0.0225963295, 0.0128769819, -0.0348417833, 0.0109592974, 0.00291888509, 0.0091340309, 0.0379840136, 0.00504836207, 0.00676965714, 0.0140399151, 0.0121376337, -0.0123994863, 0.0131619386, 0.0114136878, -0.00435137236, -0.0107821617, 0.00541418558, -0.00762837939, -0.00266665965, 3.73645235e-05, -0.0182372555, 0.00411262456, -0.0150103094, -0.013932093, -7.88806574e-05, -0.00292851217, 0.000459445233, -0.0304056965, 0.00381611497, 0.00123513513, 0.02723266, 0.0279412, -0.00533717, -0.0188379772, 0.000115101982, -0.00334054464, 0.0204553, 0.00313067762, -0.0203166734, 0.0218415782, 0.0310526248, -0.000742717646, -0.00432826765, 0.0108899828, -0.000921297178, 0.0195619222, -0.0119065866, 0.0148716811, -0.0088413721, 0.0149949063, -0.00582621805, -0.020578526, -0.00707771908, -0.00599180115, 0.00775930565, 0.0264162961, -0.00138916599, -0.012060618, 0.00665798457, 0.00579156121, -0.00128038169, -0.000845244445, 0.0131003261, -0.0131619386, -0.0407873765, 0.00998120103, 0.00514078047, -0.0116447341, -0.00391816068, -0.0166199319, -0.00773235038, 0.0152105493, -0.00643849093, -0.0062998631, 0.0210098121, -0.001351621, 0.00313067762, 0.0144403949, -0.0263854899, -0.0236899499, 0.00603415957, -0.00106570113, -0.00798650086, -0.00720864534, -0.0365053192, -0.00556821609, -0.0034714709, -0.00338675408, 0.0118988855, -0.000755232642, 0.0308677889, -0.0126305325, -0.0062344, 0.0178367756, 0.000409385189, 0.00645389408, 0.0260158163, 0.0162502583, 0.00475185271, 0.0159421954, -0.0117217498, 0.00194463984, -0.0134777017, -0.0035234564, 0.025569126, -0.00239903084, 0.00308061764, 0.00976555794, -0.000159686708, -0.00332514173, -0.0287575647, 0.004782659, -0.00154512224, -0.000494824199, 0.00479421113, 0.0139628993, 0.0119373929, 0.0227195546, -0.000809143472, 0.00632296782, -0.00998120103, -0.012884683, -0.0131157292, -0.00586857647, 0.00392971281, 0.0171436369, 0.00891838782, 0.0168971866, 0.0061535337, 0.00709312223, -0.0116062267, 0.0111441342, 0.00276292884, 0.0109515954, 0.0283878911, -0.0056760381, -0.00265895808, 0.0161732417, 0.0170050096, -0.000789408281, 0.0018348929, 0.0105896229, 0.00897229835, 0.0121838422, -0.0072856606, 0.00351960561, -0.000583873305, 0.0337019563, -0.0133236712, 0.00914943404, -0.00240095635, -0.00605726428, -0.013824271, 0.00982717052, 0.00204476, 0.0137010468, -0.0228427798, 0.014132333, 0.000640190847, -0.00257039024, 0.0017492132, 0.00977325905, -0.00242791185, 0.0125843231, 0.00489048054, -0.000813475577, -0.00796339661, -0.00628446, -0.00781706721, 0.023797771, 0.00283609354, -0.00854871422, -0.00201973, 0.0125535168, -0.00204861071, -0.000865461, 0.0125304125, 0.00794029143, -0.0102122473, -0.00433982024, 0.00254921103, 0.00303440844, 0.0537875816, 0.00626520626, 0.00283416826, 0.00690443441, -0.00330396229, 0.00599180115, -0.00981946848, -0.0174054895, -0.0189612, 0.00138916599, -0.0109207891, -0.0100197084, -0.00708542066, 0.0225039124, 0.0102969641, 0.0127614588, -0.0119913043, 0.030759966, -0.0148485769, -0.00608807057, -0.00349457562, 0.0128692798, 0.0158035681, -0.000319854735, 0.00693909125, -0.00475955429, 0.0120991254, 0.0100197084]
26 Oct, 2021
jQWidgets jqxSlider rangeSlider Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The rangeSlider property is used to set or return whether the slider is displayed as a range slider and has 2 thumbs. It accepts Boolean type value and its default value is false. Syntax: Set the rangeSlider property. $('selector').jqxSlider({ rangeSlider: Boolean }); Return the rangeSlider property. var rangeSlider = $('selector').jqxSlider('rangeSlider'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider rangeSlider property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider rangeSlider Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', rangeSlider: true }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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 rangeSlider Property
https://www.geeksforgeeks.org/jqwidgets-jqxslider-rangeslider-property?ref=asr10
PHP
jQWidgets jqxSlider rangeSlider Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxSlider rangeSlider Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.00465817517, 0.0225021113, -0.0113105848, 0.0338424593, 0.0518501028, 0.00343968277, 0.0104548503, 0.0246005226, -0.0124118784, -0.0140861431, -0.00983723253, -0.00927170366, 0.0278895218, -0.0344079919, -0.0139670838, 0.0192726422, -0.0311636385, -0.000113652313, -0.0254190508, 0.0376523435, -0.0154627599, 0.0306874029, -0.0700065717, 0.0144284368, -0.0519393981, 0.03104458, -0.0121365553, 0.0150386132, -0.0249428172, 0.00556971878, -0.00779835088, -0.0206120536, -0.00293554319, 0.0068868068, -0.038991753, -0.0297200494, 0.0110873496, -0.00608688081, -0.0545289256, -0.00543205719, -0.0219217, 0.00712492457, -0.0120323785, 0.0219663475, 0.0168765839, 0.0181118175, 0.00910799764, 0.00216910243, 0.00372430775, -0.00590457162, -0.0385452844, 0.021028759, 0.00347874896, 0.0416705757, 0.0235438757, -0.0135503784, -0.00215049949, 0.0475937501, -0.025017228, 0.00814808626, 0.0232015811, -0.0283955205, -0.0250321105, -0.0280978736, -0.00353269745, 0.0160431713, 0.00695377728, 0.0344675183, -0.0373249315, 0.0321458727, -0.0208055228, 0.0148600247, 0.0442898683, 0.0160580538, 0.0090112621, 0.0181118175, -0.0259250514, 0.00490373373, -0.0328602269, 0.0260292273, -0.0142200841, 0.000292996236, -0.0523858666, -0.0107673788, -0.020269759, 0.0279788151, 0.018721994, -0.0426528119, 0.0794717446, 0.0179332308, -0.0337234028, -0.00644033635, 0.0140414955, -0.00222491124, 0.00498558674, 0.000918985053, 0.00253371987, 0.0260143448, -0.0292735789, 0.0305088144, 0.0254488159, 0.023960581, 0.00474746944, -0.0192279946, 0.00470282231, 0.0111468788, 0.024421934, -0.000105280989, -0.0118240258, -0.0130443787, 0.0278448742, -0.022115171, -0.0159241129, 0.0106557617, -0.0535169244, 0.0358664617, -0.0294224024, -0.0365808122, 0.0412538722, 0.00362013141, -0.0178885832, 0.0439029299, -0.0110873496, 0.0189601127, -0.014651672, 0.00242954353, 0.0228592884, -0.00244256551, 0.0599758662, -0.0144730844, -0.00228072, 0.0289461687, -0.0206715818, -0.0165640544, 0.000523672614, 0.0400632843, 0.0372951664, 0.0068272776, -0.0538741, -0.00597154256, -0.043635048, -0.0390512832, 0.031014815, 0.0068570422, 0.00648498349, 0.0414324589, -0.0307766963, 0.0391405784, -0.0289312862, -0.00558460131, -0.00858711544, 0.00433448423, -0.00635848334, 0.0160282888, 0.0350628123, 0.00884755608, -0.0296158735, 0.0331281088, 0.00938332081, -0.016742643, 0.0321756378, -0.00773882121, 0.0460162237, 0.0422956347, -0.0289610513, 0.0136024663, 0.0289610513, -0.000226607008, -0.0352116376, 0.0313719921, 0.00291694026, -0.0262375809, -0.0054432191, 0.0205822885, -0.0390215181, 0.00121291145, 0.00353083713, -0.0433671623, 0.0220705234, -0.0318779908, 0.00213747728, -0.00648126286, -0.0287229326, 0.0158348195, 0.0221895818, -0.00633243937, 0.0366701074, 0.010231615, -0.0471770465, -0.00700586569, -0.00512324832, 0.0171742309, 0.0483378693, 0.0449149273, 0.00110222399, 1.20337745e-05, -0.0142647307, 0.0082001742, -0.0295414627, -0.0125309378, 0.0175611712, -0.00993396807, 0.0162068773, -0.00730723329, 0.0093461154, 0.0158348195, 0.00247977138, -0.038039282, 0.0249279346, -0.028246697, 0.0163408183, -0.0130815841, 0.0251660515, 0.00739280647, -0.0254190508, 0.0212668758, 0.000237187429, 0.00149660616, -0.0146293491, 0.0109757325, -0.00371314608, -0.00845317356, 0.00499674864, 0.0272346977, -0.0764952749, -0.00944285, -0.00399219, -0.019019641, -0.0233206395, -0.00227513909, -0.0457185768, 0.00517533673, -0.0155967018, 0.00545066036, 0.0125458203, 0.0716138631, -0.021028759, 0.00782811549, -0.0178588182, 0.0356581062, 0.0121812019, -0.0245409925, 0.0118389083, 0.00139242969, 0.0314612836, -0.0127169667, -0.0143837901, -0.00333364611, 0.0187815242, -0.000209515565, -0.0364022255, 0.000291368488, -0.0231569353, -0.0103878798, 0.00357362395, 0.000675751653, 0.01020185, -0.0198977, 0.014733525, -0.0200762879, 0.0388131663, 0.021519877, -0.0195702892, -0.000107490087, 0.0274728164, 0.0437838696, 0.030255815, -0.0223532878, 0.0169361122, -0.0242731106, 0.0201953463, -0.0301218741, 0.0444386937, 0.0388429314, -0.0178737, 0.00424519, -0.0177099947, -0.0284550507, 0.0163705833, -0.0160282888, 0.013513173, 0.0122853788, 0.019183347, 0.0593210422, 0.0383369289, -0.00715096854, 0.0200018771, -0.00280160224, -0.0232313462, 0.0239456985, -0.0146665545, -0.0205525234, 0.0147856129, 0.00682355696, 0.0269519333, 0.00116361363, 0.0235141106, 0.0016119444, -0.00525718974, 0.0207459945, -0.00332620484, -0.0115189375, -0.0261185225, -0.00240163901, 0.0264161695, 0.0137810549, 0.0543801, 0.0129402019, -0.0138108199, -0.0363426954, 0.0238861702, 0.0154329957, -0.0406585783, -0.0418194, 0.00613524811, 0.0230378751, 0.0131783197, 0.0176951122, 0.0238117576, -0.0103581147, 0.0182755236, 0.00508232228, -0.0165194068, 0.0423254, 0.0456888117, -0.0205227584, -0.00576691, -0.0366403423, -0.00101292983, -0.00752302725, -0.0477425754, 0.0154032307, 0.0118389083, -0.0352711678, -0.0232015811, -0.0475342199, 0.0193321705, -0.00947261509, -0.0364022255, 0.0298986379, -0.00591945415, -0.0422361046, 0.0197637584, -0.0190791711, 0.0284848157, -0.0549456328, -0.0104250852, 0.0173230544, 0.0492308103, 0.0269668158, 0.00135429378, 0.019317288, 0.00280718296, 0.00826714467, 0.0151204662, -0.0234843455, -0.00974793825, -0.0394084603, -0.0247493461, -0.0100307027, -0.00797693897, 0.0101720849, 0.0206864644, 0.0205376409, 0.0306278728, -0.00567389559, -0.0255976394, -0.023171816, -0.00323877111, 0.00276253605, -0.00585248368, -0.0188857, -0.00702818902, 0.0305683445, -0.0279639326, 0.022115171, -0.000618547609, -0.0093461154, -0.0104846144, 0.0131113492, -0.0305385794, 0.0628035143, -0.0189898778, 0.0177397598, 0.00160543341, 0.000208817961, 0.0198977, 0.00289461692, 0.00549530704, -0.0173974652, -0.0282169338, 0.0326518714, 0.0228444058, -0.0352414027, 0.00918985065, -0.0157604069, -0.00575202797, -0.000765975856, 0.0252106991, -0.00676774792, 0.0394679904, -0.0305088144, -0.0111617614, 0.00724770362, -0.020731112, -0.0138182603, -0.0355985798, -0.0244814642, -0.000340201193, 0.0194958765, -0.0031829623, -0.00829691, -0.0458078682, 0.0610771589, 0.0235587582, 0.0544396304, 0.0315803438, 0.0567017496, 0.0210436415, -0.0385155194, 0.0469091646, -0.00964376237, -0.0287229326, 0.0107599385, -0.047236573, -0.0107004084, -0.0369677544, 0.0179034658, 0.0481592789, -0.0156413484, -0.0203888174, -7.21445103e-05, -0.0217728764, -0.0186922308, 0.0339912847, 0.0164896417, 0.00520510133, 0.00858711544, -0.0150088482, -0.019183347, -0.0124714086, 0.00175146642, 0.00798438, 0.0113031436, -0.010826909, -0.0043493663, -0.0235438757, -0.0243177582, 0.0116305556, 0.0334257558, 0.013513173, -0.0348246954, -0.0325328149, 0.00311785215, 0.0115338201, -0.00254674186, 0.038694106, -0.00584504241, 0.0186327, -0.0237075817, -0.0242284629, 0.0374737531, -0.0269221682, -0.0130220549, -0.0181118175, -0.018855935, 0.00393266045, 0.0164896417, -0.0171742309, -0.00172449218, -0.056791041, -0.0259845816, 0.025805993, 0.0631011575, 0.0232164636, 0.0163854659, -0.000693889509, 0.00475863088, 0.0112659382, 0.0145549374, 0.0316696391, 0.00199795538, 0.0553325713, 0.00491489563, 0.040837165, 0.00377081498, 0.023930816, -0.00460608676, -0.00302297715, -0.0106185554, 0.00732211536, 0.0230676401, -0.0258952864, 0.0225467589, -0.0162366424, 0.0125532607, -0.0145847015, -0.0158943478, 0.00534648355, 0.021653818, 0.0196149349, 0.0345270485, -0.024719581, 0.00344154309, 0.0130667025, -0.00376895489, -0.0291842856, -0.0201209355, 0.00163054734, -0.0212371107, 0.0118091432, -0.012806261, -0.020135818, 0.00112454745, 0.00239791838, -0.0495582223, -0.0581006892, -0.0330388136, 0.020433465, -0.0155669367, 0.0263864044, 0.0205376409, 0.0109385261, 0.0274430513, 0.0473556332, 0.0330090486, -0.0306874029, -0.028082991, -0.004911175, 0.0269965809, -0.0334852859, -0.00919729192, 0.016444996, 0.0169509947, -0.0214157, -0.000498093606, -0.0317589305, 0.00537252799, -0.0163557, 0.0175314061, -0.00152637088, 0.0171444658, -0.0511357486, -0.008222498, 0.029958168, 0.0218919348, -0.00281462423, -0.00614268938, 0.0166533478, 0.0368486941, 0.0237373468, -0.00779090961, 0.0120547023, -0.0298391096, -0.00274021248, 0.00809599739, -0.00601618923, 0.0025765067, -0.0287378151, -0.0253297575, -0.000453911634, -0.00380802085, 0.0124342022, 0.0233950522, 0.0140117314, -0.0146367894, 0.0183201712, 0.0121439965, -0.0211478174, -0.015194878, -0.00783555675, -0.00257092575, -0.0158497021, -0.00326667563, 0.00468794, 0.0132080847, 0.0348246954, -0.0204929933, 0.00957679097, 0.0132080847, -0.00696121855, -0.0469091646, 0.00647010095, 0.0160580538, 0.0017970436, 0.00716213044, 0.00134964299, -0.0322946981, -0.0232015811, 0.0170700531, -0.0292735789, 0.007679292, -0.00724770362, 0.00763464486, -0.002319786, -0.0038284841, -0.0332769305, 0.00097479386, 0.0199572295, -0.0290652271, 0.00913032051, 0.02122223, 0.0125755845, 0.0120770261, -0.0159241129, -0.0195702892, -0.0054618218, 0.0138033787, 0.0116454381, -0.00520882197, -0.00723654218, -0.0180225242, 0.0409264602, -0.0275323447, -0.00784299802, -0.0405990481, -0.0146963196, 0.00644405698, 5.06058e-05, 0.00658916, -0.00394754298, 0.00753046852, 0.0135652609, -0.0106334379, 0.0258208755, -0.00980746746, -0.0205822885, -0.0210138764, 0.013892672, -0.015031172, 0.000231839091, 0.015358584, 0.0068161157, 0.0161622297, -0.00533160148, 0.00884755608, 0.000557623, 0.0395572819, -0.0117868204, 0.0129848495, 0.0347056389, 0.00588224828, -0.00565157179, 0.0605413951, -0.00151241873, 0.00982979126, -0.000938053, 0.0305385794, 0.0141233485, 0.0232313462, -0.00949493889, 0.0240498763, 0.0352414027, 0.0121960845, 0.0144284368, 0.0214752294, 0.00155706576, -0.0114296442, 0.00118314673, 0.0154776424, -0.0197191127, -0.00501163071, 0.0440219864, 0.00206864648, 0.0141754374, -0.00987443794, 0.020135818, 0.0484271608, 0.00113942986, 0.0246302877, -0.0149046723, -0.0163259357, 0.0172486417, -0.00110036368, 0.0179778766, -0.0330685787, -0.0255381111, 0.0153734665, 0.0341996364, 0.0152544072, -0.0105962325, 0.0294968151, 0.0252106991, 0.00670077745, 0.00664496887, -0.0271602869, 0.00278671971, -0.000179402065, 0.0139894076, 0.00717701251, 0.00916752685, 0.00987443794, 0.0111468788, 0.0150683783, -0.00777602708, 0.00860943832, -0.0117719378, -0.00303413882, -0.0533978678, -0.0223979354, 0.0113403499, -0.0103060268, 0.0149716428, 0.0215496402, -0.0057445867, -0.0016035731, 0.0104250852, 0.0254488159, -0.020106053, 0.0123077026, 0.0185880531, 0.0397358723, -0.00423774868, 0.0395572819, 0.00965120271, 0.0127913784, 0.0034136388, -0.0179332308, -0.0258506387, -0.00070877187, 0.0247493461, 0.0184838772, -0.0111394376, -0.023960581, -0.000339271035, -0.0110352617, 0.0230676401, -0.0357176363, 0.00963632111, 0.00532043958, -0.00560320448, 0.0562552772, 0.0191684645, -0.0218621697, 0.00519394, 0.0272942279, -0.000235210871, -0.000180681018, -0.0107822614, 0.00427123392, -0.00498186611, -0.0322054029, -0.00212259497, 0.0174867604, -0.00496698404, -0.019019641, 0.0152990548, -0.0178439356, 0.00268440368, -0.0165045243, -0.000568784773, -0.0211180523, -0.00821505673, -0.0344377533, 0.00598642463, 0.00625802763, 0.0100009385, 0.0158348195, 0.0167277604, -0.00513813086, 0.0145400548, 0.0111915264, -0.032592345, 0.0101125557, 0.00425263122, 0.0326816365, -0.0345568135, -0.032264933, 0.0280085802, -0.0413729288, 0.0218919348, 0.0120026143, 0.0316994041, -0.0116082318, -0.0102762617, 0.0213710535, -0.0190345235, 0.004111249, 0.0150758196, 0.0126053495, -0.0124416435, 0.000286020135, 0.00420798408, -0.00585992495, -0.00303041819, -0.0292140506, 0.00785788, 0.0157306418, 0.0329792835, 0.00796205644, 0.0224276986, -0.00318854325, 0.00122128276, 0.0151204662, -0.000760395, -0.00816296786, -0.0251362864, 0.0137140844, -0.00837132148, -0.0461650454, 0.00746349804, -0.0187815242, 0.0167872887, 0.0191089362, 0.043635048, -0.00582643971, -0.0329792835, 0.0111840852, -0.0195405241, 0.0140935844, -0.0182904061, -0.0175909363, -0.0300623439, -0.00381732243, -0.00696121855, -0.0248386394, 0.0182308778, -0.0098446738, -0.0024816317, 0.0214305818, -0.00692029204, 0.00864664465, 0.00888476241, -0.0302706975, -0.0264756978, 0.0356283411, -0.00996373221, 0.00820761546, 0.0336043425, 0.00167240389, 0.00050274434, 0.0153734665, -0.0294968151, 0.0213859342, -0.0190791711, -0.00836388, 0.0263566393, 0.0128732314, 0.0306874029, 0.0157157592, 0.00345642539, 0.00465817517, -0.0100083798, 0.0111692026, 0.00391777838, 0.0223681703, 0.00690168934, 0.00819273293, 0.0142944958, 0.0162217598, 0.022115171, 0.0152023192, 0.0199274644, 0.0221002884, -0.0205376409, 0.0161622297, 0.00970329158, 0.00700214505, 0.0131559959, -0.00421542535, -0.00596782193, 0.0206715818, -0.0103729973, 0.0134834079, 0.0217431113, -0.0145102898, -0.0176207013, -0.0570589229, -0.0305385794, -0.0225616414, -0.0160282888, 0.0182011127, -0.00226025679, 0.00731095392, 0.0282020513, -0.00612408668, -0.0542610437, 0.0172337592, -0.000420426339, -0.0196744651, 0.0404204577, -0.0180820543, -0.0177397598, -0.00845317356, 8.1097176e-05, 0.0540526919, -0.0397061072, -0.0110947909, 0.0217579938, -0.0173528194, 0.00843085069, -0.0268179923, 0.00036554769, -0.051284574, -0.000692029193, 0.0442601033, 0.00140638195, -0.00335410936, -0.0096139973, -0.0139968488, 0.00254860218, -0.0098818792, 0.00662264507, -0.015031172, 0.0166979954, -0.00789508596, 0.00405544, 0.0350330472, 0.00140266132, 0.00776114501, 0.037116576, 0.00170495908, -0.019317288, -0.0277555808, 0.0197339952, -0.0308362264, -0.00606827764, 0.0203292891, 0.0240498763, 0.00512696896, -0.0158348195, -0.00461352803, 0.0170402899, 0.0266989339, 0.00919729192, -0.0136173489, -0.0203888174, 0.0142126428, -0.0339912847, 0.0206567, -0.00582643971, 0.00545810116, 0.0429504588, 0.000410194742, -0.0215942878, -0.0183201712, 0.0277555808, 0.0220854059, -0.0207906403, -0.00886988, 0.0206269361, 0.0150237307, 0.00380430045, -0.0169063471, -0.00416705757, -0.0187815242, -0.0542312786, -0.00473630754, -0.00978514459, 0.0309850499, 0.00540973386, 0.00160078262, -0.00250395527, -0.00776858581, 0.0146442307, -0.0271156393, -0.0186178181, 0.0142796133, -0.0470877513, 0.0100827916, -0.0085127037, -0.0146814371, -0.00743373297, 0.00789508596, 0.00596782193, -0.00449074851, -0.00591573352, 0.0173081718, -0.00797693897, -0.0154776424, -0.0244517, -0.00305460207, 0.0539633967, 0.00380802085, 0.0218919348, -0.0148674659, 0.0257166978, -0.030092109, 0.0346461087, -0.00601618923, 0.0093461154, -0.00447586644, 0.0224872287, -0.00681239506, 0.0478021055, -0.00843829196, -0.00611292478, -0.0245112274, -0.0270114634, 0.0136396727, 0.0255976394, -0.00629895413, 6.84820552e-05, -0.021653818, 0.00533904275, 0.0205822885, 0.0199869946, -0.0110129379, -0.0216835812, 0.0013235989, -0.0334555209, -0.0407181047, 0.0103134681, 0.04086693, 0.0345270485, 0.0197935235, -0.0444684587, 0.000657613797, 0.00692401268, 0.0256274045, -0.0403609313, 0.0124416435, 0.000450888649, 0.00617617462, 0.000334620301, 0.0093237916, 0.0112808207, 0.00427123392, 0.00443494, -0.00213375664, 0.0167575236, 0.00295600644, 0.0127318492, -0.0201953463, 0.000479025592, 0.0132229663, -0.0145251723, -0.0218770523, 0.0206567, 0.00362199149, 0.00527207181, 0.0115263788, -0.0181415826, 0.00235885219, -6.66798951e-05, -0.0138405841, 0.00322388881, -0.0255827568, -0.00735932123, -0.0148302605, 0.024853522, -0.00181471638, 0.0136917606, -0.00345456507, 0.00357176363, 0.0278746393, -0.0130592613, 0.0116900848, 0.00994140934, -0.0175909363, 0.00418194, 0.00116454379, 0.00830435, -0.0202548765, 0.0133792311, -0.00829691, -0.000893406, -0.0391108133, -0.00818529166, 0.0230229925, 0.000292996236, -0.0210436415, -0.000568319694, 0.00683843903, 0.000950144953, 0.0242731106, 0.00334852841, 0.00586364558, 0.00497070467, 0.0165491719, -0.0271156393, 0.0115040559, 0.00498558674, 0.0215942878, 0.0174718779, 0.000161147938, 0.0161919948, 0.0209245831, 0.0241094045, -0.0117644966, 0.0200762879, -0.0314910486, 0.0065854392, 0.00743373297, -0.00376523426, -0.00959911477, 0.0127988197, -0.0220109932, -0.00250023464, -0.00744489487, -0.00169286714, -0.00252441829, 0.0169509947, 0.00597154256, -0.0146367894, -0.0435755178, -0.00425635185, 0.085603267, 0.0165194068, 0.00196260982, -0.00755651249, -0.0168170538, -0.0351223424, -0.0226807, 0.0243475232, 0.0211627, -0.0169509947, 0.0130667025, 0.0190494061, 0.0109385261, -0.0202995241, -0.0114445258, -0.00743001234, -0.00886243861, -0.000894801226, 0.0274132863, -0.0269816983, -0.0200465228, 0.0153437015, 0.00666357158, -0.00173379364, 0.0273388736, 0.0168021712, -0.0279936977, 0.00641429238, -0.0324137546, 0.014949319, -0.00235513179, 0.0389024578, 0.041164577, 0.000126732499, -0.0216240529, 0.0247344635, -0.0262822285, 0.024258228, -0.00357548427, 0.0057631894, -0.0182755236, 0.00674914522, 0.00754163, 0.0151576716, -0.00161008409, -0.00640313048, -0.018721994, -0.000593898701, -0.0263864044, 0.0227997582, -0.0260887574, 0.00848293863, -0.0225914046, 0.00538741, 0.00162682671, 0.0166979954, -0.00760115962, -0.0214305818, 0.0308957566, -0.0465519875, -0.0100753503, -0.0159687605, -0.00484048389, -0.0230527576, 0.00618733652, 0.0226062872, -0.0330090486, 0.0228592884, -0.0132750552, 0.0212966409, 0.0305088144, -0.004911175, -0.0150162894, -0.00625058636, -0.0079471739, 0.000868292, -0.00222863164, -0.00465445453, 0.00715468917, -0.013215526, -0.0371761061, -0.00828202721, 0.0130443787, -0.00828202721, -0.0182159953, 0.00991164427, -0.0117942616, -0.00180169428, 0.00241652131, -0.00651102746, -0.00580783654, -0.0166533478, -0.0283955205, -0.00861688, -0.0163110532, 0.000543670787, 0.0274281688, 1.0645821e-05, -0.00659288047, -0.010529262, 0.030717168, 0.0217133462, -0.00844573323, 0.0139968488, 0.0104697319, -0.00303413882, 0.0188261718, 0.0140861431, -0.0309255198, 0.0109162023, -0.00220816839, -0.00805135071, -0.0101348795, 0.0178290531, 0.00434564566, 0.0244368166, -0.0269519333, 0.00481071929, 0.00922705606, 0.010826909, -0.0198679361, -0.0141754374, 0.000979444594, -0.0159985255, -0.0197935235, -0.0130815841, 0.00284252851, 0.0298242271, 0.00715841, 0.00108362106, -0.0153883481, 0.0110650258, -0.023469463, 0.00931635, -0.0133271432, 0.00843085069, -0.0187666416, 0.00988932047, 0.0147856129, 0.0318779908, 0.0007166781, 0.00253371987, 0.00857223291, 0.00231234496, 0.00695749791, 0.0307766963, 0.00371500617, -0.000741327, 0.0126574375, -0.00504883658, -0.0428314, 0.000815738749, 0.0336341076, 0.00653335126, 0.0235289931, -0.0273984037, -0.00466933707, -0.0127764959, -0.0296754036, -0.00210027141, 0.0165342893, 0.03104458, 0.00617989525, 0.00845317356, 0.00332620484, -0.000474374858, 0.000612036616, -0.0338424593, 0.0143689075, 0.0169509947, 0.00819273293, 0.00772393914, 0.0201804657, 0.00424891058, 0.0179629941, 0.0114445258, 0.00894429162, 0.00953214429, 0.0156264659, 0.0176058188, -0.00471398374, 0.00872105639, -0.0230081119, 0.0251958165, 0.00294484477, -0.00801414438, -0.0163259357, -0.0110129379, 0.0175760537, -0.00515673403, -0.0196000524, 0.0215049945, 0.0248237569, 0.0122556137, 0.0221895818, 0.00667473348, 0.00819273293, -0.0346163437, -0.00285183, 0.0381881073, -0.00859455671, 0.0182011127, 0.0202995241, 0.0098446738, -0.000247419055, 0.0289164037, -0.0240349937, 0.0107971439, -0.00921217352, -0.0214454643, 0.000744117424, -0.0286931675, -0.0226211697, -0.00239791838, -0.00776114501, -0.0046804985, 0.0170402899, -0.0252702273, 0.00343782245, 0.0117793791, -0.00674914522, -0.00177099952, -0.0253744051, -0.00284996978, 0.00306948437, -0.00625430699, -0.0241242871, -0.0082001742, -0.00364059443, 0.019972112, -0.00636592461, 0.021519877, 0.00717329187, 0.00633616, 0.0188410543, 0.0253595226, -0.0222193468, -0.0242731106, -0.00212259497, 0.00996373221, 0.000398567907, 0.00277927867, -0.000734350877, 0.0596782193, 0.0285741091, -0.000125918625, 0.0187964067, -0.0398549289, -0.0170849357, 0.0112957023, -0.000197772461, 0.00584132178, 0.01267232, -0.0333662257, 0.0226658173, -0.00656311586, -0.0136768781, -0.000937588, -0.00738536566, -0.0494093969, -0.00334666809, -0.0355985798, -0.0128657902, -0.0108641144, -0.0289908145, -0.0167872887, -0.00453539565, -0.0104399677, -0.00218584505, -0.0263864044, -0.00665240968, -0.00122500327, -0.00611292478, -0.0172188766, 0.0244070515, -0.00741513027, 0.0242433455, -0.00349549158, 0.0028927566, -0.00919729192, -0.00860199798, 0.0122035258, 0.00746349804, 0.00482560135, -0.0357771665, 0.0172486417, -0.0109534087, 0.0201953463, 0.0179629941, 0.0134982904, 0.012263055, 0.0189601127, -0.0143837901, -0.00644033635, 0.00408148393, 0.029005697, 0.0256571695, -0.020567406, 0.00676030666, -0.0270858742, 0.0207013469, -0.0165789369, 0.00432332233, -0.00151520909, 0.0108864382, -0.00399963139, 0.00758627709, 0.00492977817, 0.0181415826, -0.0174867604, -0.00854246784, -0.0120026143, -0.0362831652, 0.00921961479, -0.00523114577, -0.010611115, -0.00241094059, -0.00604967494, -0.00745977741, -0.0181118175, -0.00520510133, -0.0144507606, -0.0609581, 0.0113626728, -0.00176634872, -0.016147349, -0.000147195737, -0.0124490848, 0.0118091432, -0.0134908492, 0.031342227, -0.0143242609, -0.00202772, 0.00157194806, -0.0162515249, 0.0104250852, 0.00412613107, -0.00727002742, -0.00991908554, 0.0217431113, -0.00366849895, -0.000848293887, -0.0155371716, 0.0111617614, 0.0158794653, -0.0125234965, -0.000573900586, -0.012508614, -0.0195702892, -0.00807367451, 0.000912939082, 0.00416705757, 0.0253148749, 0.0166384652, -0.0108641144, 0.0214157, 0.00725514488, 0.00430471916, 0.00701702759, 0.00478095468, -0.00568133639, 0.0244517, 0.00692029204, -0.00544693973, 0.0148674659, -0.0396465771, -0.0148079367, -0.0221300516, -0.00723282155, 0.00617989525, -0.0136247901, 0.0112436144, 0.00669705682, -0.0162217598, 0.00606827764, -0.00129290402, 0.00974793825, -0.0100083798, -0.00267696241, 0.00805879198, -0.021653818, 0.000136731585, -0.0159687605, -0.0272644628, 0.028871756, 0.0148749072, -0.00531299831, -0.0206864644, 0.0122258496, 0.0222342294, 0.0367594026, 0.0184689946, 0.00461724866, -0.00215608021, -0.0188112892, 0.0185731705, -0.0258506387, 0.0103953201, -0.0188410543, -0.0105590262, 0.0222937576, -0.00477351341, -0.00363501371, 0.0139522022, 0.042712342, -0.014190319, -0.00135708414, -0.00895917416, 0.00185285241, -0.00743745361, 0.000845503411, 0.0218621697, -0.0192279946, -0.00383592537, 0.00194958772, 0.00929402653, 0.00716585107, 0.0305683445, -0.00391033711, 0.00601246906, -0.0436052829, -0.00428239582, -0.0204632301, -0.0157901719, 0.0073965271, -0.0213412885, -0.0151799954, -0.0114668496, -0.0171742309, 0.0233057588, 0.0225467589, -0.00887732115, 0.0211031698, -0.00928658526, 0.0181267, -0.0155371716, -0.0313124619, 0.00754163, 0.00195702887, 0.0459566936, -0.033187639, 0.00142405473, 0.00708027743, -0.00670821872, 0.0118686734, -0.00504883658, 0.0145474961, -0.00152544072, 0.0247642286, 0.00546926307, 0.0167872887, -0.0141382311, -0.0163259357, 0.00424519, -0.00273649185, -0.00200911704, -0.0330388136, -0.025969699, 0.0070877187, 0.00127151061, 0.0278448742, -0.00163333782, -0.00782067422, 0.00819273293, 0.0291396379, 0.00263045519, -0.00152637088, 0.00394754298, -0.0122035258, 0.0152246431, 0.00401451346, -0.01229282, 0.0165640544, -0.00612780685, 0.0109682912, -0.00825970341, -0.0100232614, 0.00352711673, -0.0223979354, -0.00402567536, -0.00561808655, 0.0233206395, 0.0018593634, 0.0151353488, 0.0246749334, 0.0209543463, 0.0121142315, 0.00868385, -0.000676216732, -0.00844573323, 0.0107822614, 0.000871547556, -0.0120993499, 0.00968840905, 0.0202102289, 0.0136694368, -0.00654079206, 0.0506297499, -0.0345270485, -0.00684215967, -0.000248581724, 0.0168617014, -0.0130294962, -0.0148079367, -0.00165845174, 0.0017412348, 0.00273277122, -0.0131411143, -0.00376709457, 0.0239159334, -0.00375221204, -0.00668589491, -0.0109162023, 0.0220109932, 0.00580039527, -0.0154032307, -0.0191535819, -0.00214305823, -0.0146219078, 0.0179034658, 0.0251511689, -0.00663380697, 0.0146442307, -0.023633169, 0.00589341, 0.00319784461, -0.00524602784, -0.0134089962, 0.0159092303, 0.0129550844, 0.00433076359, 0.0114519671, -0.0079471739, -0.0151799954, -0.0046507339, -0.0253744051, 0.00819273293, -0.020731112, 0.00065575348, 0.0120993499, -0.0292289332, 0.00873593893, -0.0161324665, -0.012590467, -0.00325551373, -0.0137810549, -0.00415961631, -0.0211031698, -0.00623198366, -0.0232015811, -0.0130964667, 0.0110278204, -0.0144805256, 0.0123969968, 0.0148897897, -0.0041298517, -0.00565157179, -6.97610085e-05, -0.0241838172, 0.0148302605, 0.0128955552, 0.0226807, -0.00286113145, 0.000186145626, 0.0168468188, 0.0129327606, 0.00162868702, 0.00632871874, -0.0123002613, -0.0230527576, -0.00872849766, -0.019183347, 0.0186327, 0.00598642463, -0.000826435396, 0.0329792835, -0.000638545782, -0.00175890757, 9.74328796e-05, -0.00164263928, 0.0169509947, 5.10127393e-05, -0.00157566869, -0.000191145169, -0.018424347, 0.0171147, 0.000950610032, 0.0186624657, -0.0168319363, -0.0164152309, 0.00112175709, 0.00692773331, -0.0093014678, 0.00939820334, -0.0165640544, -0.00513813086, -0.0121439965, 0.0211627, -0.0127244079, 0.00757511565, -0.0229634643, -0.00785788, 0.00330202118, -0.00235885219, -0.00058692263, 0.000828295713, 0.00603851303, 0.00456516026, -0.0217579938, 0.000835736864, -0.0135354958, -0.030389756, 0.00764208613, -0.0167872887, 0.021028759, -0.00950237922, 0.0150162894, 0.00175518694, 0.00874338, 0.015492525, -0.00130685628, 0.00231234496, 0.000604595407, 0.00727746869, 0.0173081718, 0.0198232885, 0.0289164037, -0.0164003484, -0.0219812281, 0.00192912447, 0.000322760927, 0.00216166116, 0.0146367894, -0.00183797011, 0.00743373297, 0.0121439965, -0.011883555, -0.013349467, -0.0180522893, 0.00874338, 0.004639572, -0.000444610167, -0.043009989, -0.00298019033, -0.0141010256, -0.00157473853, -0.00417449884, -0.00331132254, -0.00497442484, 0.0062654689, -0.00425263122, 0.0178141706, -0.00121756212, -0.00342666078, -0.00768673327, -0.0183350537, 0.0148079367, 0.0207013469, -0.00889220368, -0.00465445453, 0.00107338943, 0.0123895556, 0.00340619753, 0.0275025796, 0.0183945838, -0.019019641, 0.0149344364, 0.015492525, -0.0173677, -0.0232015811, 0.0260143448, 0.0107897026, -0.00625058636, 0.00592689542, 0.0152544072, 0.0159092303, 0.0105367033, 0.00421914598, -0.00709888, -0.00684215967, -0.0171742309, -0.00239977869, -0.0109310849, -0.00177378987, 0.0195554066, -0.0139447609, 0.0104102027, -0.0160729364, -0.0237819925, -0.0266840514, 0.0243624039, 0.011749614, -0.0139373196, -0.00622454239, 0.019183347, 0.00192168332, -0.00913776178, 0.0208501704, 0.0100158211, 0.00622454239, 0.0260887574, -0.00226397719, -0.0344377533, -0.00785788, -0.00818529166, 0.0143689075, 0.0121439965, 0.00352897681, -0.0118686734, -0.0115561439, -0.00855735, -0.0176802296, 0.00493721897, 0.00366849895, -0.0267882273, 0.00404799869, 0.00321644754, 0.0177397598, 0.00334666809, 0.0280234627, -0.00314017548, 0.0011580328, -0.00235327147, -0.00440517534, -0.0239010528, -0.0160729364, 0.00348805054, -0.00762720359, 0.00529811624, -0.0226062872, -0.00987443794, 0.0146367894, -0.0260738749, -0.000780393137, -1.31601237e-05, -0.0141159073, -0.00468794, 0.00484792516, -0.00773882121, -0.0193768181, 0.0300176963, 0.0366701074, -0.00232908758, -0.000893406, -0.00639941, 0.00279230066, 0.0306576379, 0.0002895082, -7.79579277e-05, 0.00861688, -0.0113552324, 0.0178737, 0.0176802296, -0.0318184607, 0.00382104306, -0.0136396727, 0.00394382235, 0.00980002619, -0.000455539383, 0.00519766, 0.00323691079, -0.00197749212, -0.00194028625, -0.0148004955, 0.0040777633, -0.00611664541, 0.0033875946, -0.0145474961, -0.0248386394, 0.00785043929, 0.00234397, -0.000406706677, -0.0223830529, 4.32518245e-05, 0.0116603198, 0.00953958556, -0.00323319016, 0.00498558674, 0.0212371107, -0.00557343941, -0.00222491124, -0.0179034658, 0.00460236613, 0.0179481134, 0.00245930813, -0.0118463496, 0.0165194068, 0.00267138169, 0.0286336392, -0.00638452778, -0.0263417568, -0.000731095381, 0.0320268124, -0.0170105249, 0.0330090486, -0.00570738083, 0.0132676139, 0.00387313124, -0.0163110532, 0.0125011727, 0.00437169, -0.0252404641, -0.0136917606, -0.0138554666, 0.00523114577, -0.00751930661, 0.00491861627, 0.00478839548, 0.0133271432, -0.00386569, 0.0124862902, -0.00803646818, -0.00276253605, 0.00253930083, 0.0103432322, -0.0144582018, 0.0200614054, -0.0177992899, 0.000193703076, -0.0187815242, 0.0223532878, -0.0116305556, 0.00210771267, 0.00170960976, -0.00397358695, 0.011124556, -0.00555111608, -0.000269510027, -0.0174867604, -0.0120993499, 0.00533532212, -0.0246600509, -0.0316101089, -0.0103134681, -7.59813629e-05, -0.00578179257, 0.00435308693, 0.0105664674, -0.00358850625, 0.00281090359, 0.0237373468, 0.0419682227, -0.00965120271, 0.0108045852, -0.00489629293, -0.014815378, -0.00664496887, -0.0316994041, -0.0114966147, 0.00532788085, 0.0129997311, -0.0124862902, -0.00493721897, -0.00107804011, -0.00557716, 0.0280978736, -0.00433448423, -0.0110278204, -0.0120770261, -0.0020705068, 0.00561436592, 0.0125234965, -0.00636964524, 0.0125160553, 0.0011859372, 0.00080736744, -0.0198828187, -0.00857223291, -0.000483676326, -0.0116603198, 0.0184838772, -0.00378011656, 0.0128434673, 0.0137512898, 0.0345865786, -0.0181713477, -0.014056378, -0.00218584505, 0.000196028443, -0.000999907847, -0.012590467, 0.014517731, -0.0113775553, 0.00785043929, 0.0141010256, -0.00933867414, -0.00992652681, 0.0207608771, 0.0289610513, -0.000897126563, -0.0142424079, -0.007679292, 0.00559204258, -0.00959911477, 0.0010631578, 0.014979084, -0.0100753503, -0.000832481368, 0.00097572396, 0.0208204053, 0.000485536613, -0.0237819925, -0.0235736407, -0.0116156731, -0.0229485817, -0.00554739544, 0.00692401268, 0.0122779375, 0.0169212297, 0.0222639944, -0.0236778166, 0.0203739349, 0.0218324047, -0.0141159073, -0.000198586335, 0.000849689066, 0.00920473225, -0.0214157, -2.73957289e-06, -0.0100158211, -0.000673891336, 0.0106706442, -0.00792485103, -0.0116007905, -0.0169361122, 0.0100753503, -0.0113849966, -0.00537996925, 0.0380095169, 0.0084680561, 0.0312231667, 0.0028667124, 0.000990606379, -0.00395498425, -0.0107227322, -0.00705051282, -0.00769417407, -0.000303692941, 0.00994140934, -0.00169751793, -0.0217877589, -0.0035382784, -0.00478467532, -0.0142275253, 0.0255381111, 0.00234397, 0.00745233614, 0.00344712404, -0.00196260982, 0.00879546814, 0.0136396727, -0.00237745512, -0.00916008558, 0.00480699865, 0.00439773407, -0.0141307898, 0.00877314433, 0.00287043303, 0.00663380697, -0.00498930737, -0.00525718974, 0.0369082242, -0.016742643, -0.00745233614, 0.0219068173, -0.00892940909, -0.00179611344, 0.00311971223, -0.0336043425, -0.00198865379, -0.00633988064, 0.00616129255, 0.00176820904, -0.00503395451, 0.0182755236, 0.00133755105, -0.00834155641, 0.0178141706, 0.00929402653, -0.0177546423, 0.00532043958, 0.0115635851, -0.000305785768, -0.00815552659, 0.0203144066, -0.0105887912, -0.00342480047, -0.0212817583, 0.0388429314, 0.00335596967, 0.00895173289, 0.0054841456, -0.0035531607, -0.0114519671, -0.0060533951, -0.0111915264, 0.0217728764, -0.00852014497, 0.0339615196, 0.00241466099, 0.00361082982, 0.00969585, 0.0116082318, -0.00204818323, 0.0169509947, 0.0142052015, -0.0214008167, -0.000682262646, -0.00492605753, -0.0168319363, -0.0133941136, -0.0114296442, 0.0207906403, 0.0126499962, -0.0175165236, -0.00205190387, -0.0119282026, 0.00927170366, 0.0304492861, -0.00303599914, -0.00911543891, -0.014599584, -0.00227513909, 0.0223384053, 0.00285183, 0.00385824894, 0.0188112892, -0.0134759666, 0.0172932893, -0.00328713865, 0.0143837901, -0.014190319, 0.0124788489, 0.00219886703, 0.00426751329, -0.0100232614, 0.0114519671, 0.00488885166, 0.028380638, 0.0172784068, 0.00508604245, -0.0110650258, -0.025017228, 0.0162515249, -0.0368486941, 0.010067909, 0.000740861928, 0.00109106221, 0.00812576246, 0.00564785115, 9.62701961e-05, 0.00606083637, 0.00778346835, -0.00255976408, 0.00498930737, 0.0224872287, -0.0134089962, -0.0032778373, 0.00675286585, 0.00631755684, -0.00586364558, -0.00587108638, -0.0375035182, 0.00115152169, 0.00777602708, -0.0117868204, 0.010745056, -0.028082991, -0.0245112274, 0.00269370503, -0.00456516026, 0.0364617556, -0.0215645228, 0.0095916735, 0.00306948437, 0.00867641, 0.00773138, 0.00236629345, 0.00474374881, 0.0169807598, -0.000178704446, -0.00602735113, -0.0122481734, -0.0181862302, -0.00269928598, -0.00642917445, 0.0136322314, -0.00690913, 0.0216687, 0.0165938195, -0.0112138493, 0.00181378622, 0.00466933707, -0.00821505673, 0.0105664674, -0.000562738802, 0.00198493316, 0.014487966, 0.00845317356, -0.00282950653, 0.00392894, 0.0103506735, -0.00295042573, -0.0022900214, 0.00133569085, -0.000273463171, -0.0345568135, 0.00486280723, 0.0189749952, 0.0107599385, 0.014487966, 0.0227253456, -0.00503023388, 0.0129550844, 0.00796205644, 0.0172932893, 0.00708399806, 0.0103804385, 0.00443866057, 0.0171742309, 0.0118240258, -0.00874338, -0.0187666416, -0.0111617614, 0.032592345, 0.0221895818, -0.0165045243, -0.0138405841, 0.0242135804, 0.0308957566, -0.00178495166, 0.00261929329, 0.000743652345, 0.0158794653, -0.0161027014, -0.00255604344, -0.00201097736, 0.000800856389, 0.00531299831, -0.0165342893, -0.0202548765, 0.0127988197, -0.0073965271, 0.0106185554, 0.0046916604, 0.000437634066, -0.00635104207, 0.0195256416, -0.0229783468, -0.0266245212, 0.00877314433, -0.0209543463, 0.0141754374, -0.00666729221, -0.00788764469, -0.0110501442, 0.00257464638, 0.01343132, -0.0146367894, 0.00976282079, 0.0057222629, -0.00243884488, -0.0127616143, 0.00523114577, 0.019510759, -0.00239605806, 0.0280383453, -0.0112138493, 0.00146219076, -2.12625746e-05, -0.00119895919, 0.010149762, 0.0197637584, 0.038069047, -0.0103804385, -0.00200353609, -0.00912288, 0.0027309109, -0.0163854659, 0.0014807937, 0.00219328608, 0.0227997582, -0.0026062713, -0.00125011732, 0.0194363482, 0.0136768781, 0.00176727888, -0.0175760537, -0.000771091669, -0.00289461692, 0.000897126563, 0.0202548765, -0.0088029094, 0.00105571665, 0.00391033711, -0.00268254336, -0.00310669024, -0.0276811682, 0.00800670311, -0.0388131663, 0.00686076283, 0.00452051358, -0.00452423422, 0.0162961725, -0.00675286585, 0.00709143933, -0.00571482209, -0.023930816, 0.0143019371, -0.00207608752, 0.00706167426, -0.00295600644, -0.0130220549, 0.0129104378, 0.0043791309, -0.0151725542, 0.000235210871, -0.0205525234, 0.00962143857, 0.00690913, -0.00841596816, 0.0119282026, 0.00382104306, 0.00519021926, -0.0112808207, -0.014651672, -0.0169063471, -0.0118091432, 0.0281722862, 0.0140489368, -0.00475118961, 0.00271416828, -0.00235327147, -0.0134908492, 0.000413450238, 0.0250321105, 0.00212817593, -0.00350479316, 0.0119356439, -0.0306576379, 0.00953958556, -0.00404055743, 0.00613152748, 0.0131783197, 0.0337531678, -0.0169807598, -0.00278858, 0.0105962325, -0.00125197764, -0.000263464084, -0.0138852317, -0.00352153578, 0.00343410205, 0.0132824965, 0.0162217598, 0.00175146642, -0.0230527576, 0.000558088068, 0.00371314608, -0.0153288189, -0.00800670311, 0.0174569953, 0.028841991, -0.0100902328, 0.0145549374, 0.00423774868, 0.0044126166, -0.00516417483, 0.00655939523, -0.00802902691, 0.000838992419, -0.0199572295, -0.000218817033, -0.00788020343, 0.00166124222, 0.00425263122, -0.00643289508, 0.00627291, -0.00437169, -0.0398549289, 0.00689052744, 0.0102167325, 0.00361269014, -0.021519877, 0.00314575643, -0.0101795262, -0.00922705606, 0.0115412613, 0.0392894, 0.0289461687, -0.00237187441, -0.00581527781, 0.0258804038, -0.00551763084, 0.0239754636, -0.0159985255, 0.00615013065, 0.00618733652, -0.0230229925, -0.00536508672, -0.0159092303, 0.00348246959, 0.0232313462, 0.00427867519, -0.0093237916, 0.000626453839, 0.00257464638, 0.0199869946, -0.0248981696, -0.00264719781, 0.00849038, 0.00698354188, 0.0062654689, 0.0127839372, -0.0150758196, -0.0112212906, 0.0316696391, 0.0124342022, 0.0156264659, -0.0307469331, 0.00256720511, 0.0166682303, 0.00359222689, -0.0079694977, 0.00424146932, -0.0170105249, 0.0109162023, 0.00349549158, -0.00648498349, 0.00535764545, 0.00587480702, -0.0100976732, 0.0137215257, -0.0260738749, -0.020597171, 0.0133643495, 0.0170551706, -0.00212073466, 0.0170551706, -0.00379685918, -0.0204185825, -0.0176802296, 0.0298837554, -0.0191535819, -0.0119802905, 0.00553251291, 0.00743001234, -0.029333109, 0.00774626248, 0.0199274644, -0.0214752294, -0.000154636902, 0.00418566074, 0.0165938195, -0.0170254074, 0.00933123287, -0.00319412397, -0.014599584, -0.00254302123, -0.0202548765, -0.00256162416, -0.00351781514, 0.00587852765, 0.00256906543, 0.00623198366, -0.00593061605, 0.0221747, -0.0247642286, 0.0145102898, 0.00645521889, -0.00644777762, -0.00440517534, -0.000325783913, 0.0155074075, -0.00760115962, 0.0318482257, 0.0266245212, 0.00107152911, -0.00161380472, 0.0126574375, -0.00963632111, -0.00622454239, 0.00366477831, -0.00430099899, -0.00226025679, 0.0060347924, 0.00711004203, 0.0238117576, -0.00991908554, -0.0365510471, 0.0225318763, -0.0623868071, 0.000138824413, -0.00555483671, 0.0159092303, -0.00196260982, 0.00683099823, 0.0143689075, -0.00215980085, 0.0261780508, 0.00627663033, 6.24361055e-05, 0.0124490848, 0.00278858, 0.0104994969, -0.00413729297, 0.00935355574, 0.0342889316, -0.0111989677, -0.0126499962, -0.0113477912, 0.020106053, 0.00663752761, 0.00988932047, 0.000665985106, 0.00509720435, -0.00185006193, -0.00306204334, 0.00200911704, -0.000408334454, -0.0146665545, 0.0115635851, -0.00341921952, 0.00856479164, -0.0194958765, 0.0176207013, -0.000576225924, 0.0115263788, -0.00992652681, -0.0147112012, -0.00618733652, -0.00462841056, 0.00380616076, 0.0141754374, -0.0016119444, -0.0176951122, 2.08265683e-05, -0.00396986632, -0.0179778766, -0.00287415367, 0.00893685, -0.00786532089, -0.0133197019, -0.0107524972, 0.00510836625, 0.00863176212, 0.0111915264, -0.0138182603, -0.00612780685, 0.025805993, 0.00744861551, -0.00250395527, -0.0349437557, -0.000119175056, -0.00704307156, 0.0228295233, -0.00256348448, -0.0079694977, -0.0111171147, -0.0150981424, 0.0244517, -0.00730723329, -0.0114222029, 0.00943540875, -0.00574086607, -0.00968096778, 0.00936843827, 0.00427123392, 0.00650358619, 0.014517731, 0.0141754374, -0.00822993834, -0.0054729837, 0.024258228, 0.00990420301, -0.00199981569, -0.0102985855, -0.0172932893, 0.0137215257, 0.0290801097, 0.00373732974, -0.00187703618, 0.00520510133, -0.0316101089, 0.0010975732, 0.00348805054, -0.00612408668, -0.00238675671, 0.00479583675, 0.0108194677, -0.00408520456, 0.0143614663, 0.00313645508, 0.0203144066, 0.0114073204, 0.0254636984, -0.0252404641, 0.00578923384, -0.00416333694, -0.00358106522, 0.0271602869, 0.025642287, 0.00627663033, 0.0150832599, -0.00320156524, 0.0391703434, -0.000718073337, 0.0107748201, 0.00556599861, -0.00942796748, -0.00735932123, -0.00283508748, -0.00612036604, -0.00931635, -0.0211775824, -0.0175611712, 0.00828202721, -0.00774626248, 0.00022497926, -0.0178588182, -0.0280234627, -0.0142944958, 0.0104771731, -0.00843085069, 0.00563668972, 0.0277258158, -0.0090112621, -0.00649242476, 0.00272160955, -0.0257166978, 0.00214119791, 0.00142126426, 0.00217840378, 0.0171444658, 0.0012826724, -0.0150014078, -0.0201953463, 0.00498930737, 0.00155799591, 0.00580783654, 0.000389266439, 0.00142312457, -0.00866896845, 0.0149046723, -0.0197935235, -0.00348619022, 0.00393266045, 0.0198530536, 0.000316482445, 0.000629244314, -0.00128453271, 0.00512324832, 0.0134610841, 0.0128583489, -0.00837876182, 0.0216240529, 0.000825505296, 0.00292624184, -0.00190215022, 0.00677146856, -0.00612408668, 0.00142312457, 0.00431588106, 0.00691657141, -0.00929402653, -0.00335596967, -0.0152841723, 0.0121365553, -0.0160282888, 0.0207906403, 0.0136992019, 0.0172337592, -0.00520510133, -0.00642173365, -0.00985211506, 0.0226211697, -0.0250023454, -0.000797600893, -0.00351781514, -0.000155218251, 0.00383220473, 0.00296530803, 0.0236927, 0.0131708784, 0.00156543707, -0.00504511641, -0.00396614568, 0.00691657141, -0.015060937, -0.0071174833, 0.00999349728, 0.00375593267, -0.00275323447, -0.00472142501, -0.00189656927, 0.00323691079, -0.00965864398, -0.0038136018, -0.00928658526, -0.000722724071, 0.0162366424, 0.00868385, -0.0187517591, -0.00942052715, -0.00945773255, 0.00247605075, 0.0206120536, -0.0128657902, -0.00988932047, -0.0156711135, 0.0143242609, 0.0268031098, 0.0226658173, 0.0207459945, 0.0108120264, 0.012129114, -0.0017561171, 0.00918985065, 0.0111617614, -0.0238266401, -2.21636537e-06, 0.00673426269, 0.0226360522, -0.00808855612, -0.000382057799, -0.00153195171, -0.00397358695, -0.00205376418, 0.00556971878, -0.0165045243, 0.00774626248, 0.0200018771, -0.00273649185, 0.00216724211, -0.00241652131, 0.00562552782, 0.0122853788, -0.00802902691, 0.0222788751, 0.00506743975, -0.0024258229, 0.00883267354, 0.00475863088, -0.00363129308, 0.0133866724, 0.0174123477, 0.00283880811, -0.0220407583, 0.0186773483, -0.00511208689, -0.00468794, -0.00321086682, -0.00720305694, 0.00368152093, -0.020894818, 0.00270300661, -0.0238266401, 9.88862303e-05, -0.00979258586, -0.0152692897, 0.02376711, -0.00267882273, 0.00216352148, 0.0102911443, 0.00276625645, -0.00474374881, 0.0277704634, -0.0264608152, 0.00898149703, -0.010283703, 0.0150237307, -0.00515673403, -0.00938332081, -0.0139968488, 0.00307134469, 0.00732583599, -0.00365733728, -0.0164301135, -0.0206418168, 0.00344526372, -0.0105664674, 0.0164598767, -0.0181713477, 0.0123821143, 0.000845038332, -0.019808406, -0.025805993, 0.015983643, -0.00208724942, -0.00414473424, -0.0222788751, 0.0146739958, -0.0269965809, -0.00633243937, -0.0198381711, 0.00815552659, -0.0366998725, -0.00836388, -0.0198381711, -0.00357734459, -0.00881779194, -0.0107524972, -0.00634732191, -0.0126127908, 0.00724398298, -0.015194878, 0.00821505673, 0.00379685918, -0.0163557, 0.0223681703, -0.0063063954, -0.0157157592, 0.0191684645, 0.00380057981, 0.00670821872, -0.00169286714, -0.000571110111, 0.0321161076, -0.0113329086, 0.00488141039, -0.0471175164, -0.00614641, 0.00872105639, 0.00783555675, 0.0145847015, -0.0184838772, -0.0026211536, -0.00692773331, -0.00603851303, 0.00561064528, -0.0100827916, -0.0139075546, -0.0043493663, -0.00148451433, -0.0145251723, 0.00849782117, -0.00709888, -0.012129114, -0.0125681432, 0.0319077559, 0.0155371716, -0.00186215388, -0.00644777762, -0.0026360359, 0.0262524635, -0.00453539565, -0.00212445529, -0.0273388736, -0.00689796871, 0.0233057588, 0.00252627861, -0.00104734523, 0.0120919086, -0.00980002619, -0.0343186967, -0.00598642463, 0.00146498124, 0.00524974847, 0.0147186425, -0.0251362864, -0.00633616, -0.00471026357, -0.00482188119, 0.00346572697, 0.0625653937, 0.0268924031, 0.0170402899, -0.0312529318, 0.0131113492, 0.00618361589, 0.00769417407, 0.0357474, -0.00652963063, 0.0123969968, 0.0240349937, 0.00991908554, -0.0127318492, 0.00139987096, 0.0131187905, -0.000326249, 0.00679751253, 0.00457260152, 0.00215422, -0.0194065832, 0.0123151438, -0.0268477574, 0.00717329187, -0.0148525843, -0.000203120799, -0.000201027971, -0.00554367481, -0.000837597181, -0.0182755236, 0.0195851717, -0.0143317021, 0.0315505788, 0.0150683783, 0.00421542535, -0.00867641, 0.0104920557, 0.0105887912, 0.0123374667, 0.00343224173, -0.0292586982, 0.0160282888, 0.0241391696, -0.00758627709, -0.00642545382, 0.0106483204, -0.0111989677, 0.00507488102, 0.00528695434, 0.000360431877, -0.0276067574, 0.026431052, -0.00827458594, -0.0140340552, -0.0129476432, 0.000414612936, 0.00487768976, 0.0543503389, 0.00238117576, -9.9467572e-05, 0.00293554319, -0.0076495274, 0.00549158687, -0.00415961631, 0.0104176439, -0.000532044, -0.0356283411, 0.0223830529, -0.00209283037, 0.000658078876, -0.00113291875, 0.000207887802, -0.00556971878, 0.0027011463, 0.000537159794, 0.00260441098, 0.0144209955, -0.0103878798, 0.0190642886, 0.0046209693, -0.0165342893, -0.0232015811, 0.0155818192, -0.0149046723, -0.0171295833, -0.00897405669, -0.0298688728, -0.0124862902, -0.0140117314, -0.00356618268, 0.00577063067, 0.00545810116, 0.0279044043, -0.0110799083, 0.00296344771, 0.0119951731, -0.00712120393, -0.00311971223, 0.010038144, 0.00146591139, 0.0136917606, 0.00699842442, -0.0151055837, -0.00481444, -0.0166831128, 0.0012203526, 0.0391703434, -0.00252069789, 0.00290577859, 0.000607850903, 0.00116082316, -0.011206409, 0.00129197387, 0.0120249381, 0.00844573323, -0.00476607215, 0.00238117576, 0.0191387013, 0.00966608524, 0.00826714467, 0.0012008195, -0.0013301099, -0.0123895556, -0.0146293491, -0.0079099685, -0.0142870545, -0.00761976233, 0.0126202321, 0.00218956545, 0.00816296786, -0.00578923384, 0.0164896417, -0.00855735, 0.0088029094, 0.0181713477, 0.0170105249, 0.0205525234, 0.00380057981, 0.000846898649, 0.0198381711, 0.0155074075, 1.16268347e-06, 0.000143358877, 0.0110799083, 0.0176802296, 0.00220072735, -0.0101423208, 0.000925961125, -0.0137066431, 0.0344972834, 0.000223816576, 0.0120100556, -0.00677891, -0.00483676326, -0.0185880531, 0.0117942616, 0.0203441698, 0.00450563105, -0.0120174969, 0.0186327, -0.00389545481, -0.000248116645, 0.00290391827, 0.00808111485, 0.0129402019, 0.0167128779, 0.00285369041, 0.000646452, -0.00251139631, -0.00120267982, -0.010447409, 0.0239456985, 0.0123821143, -0.0215794053, -0.00747465948, 0.000232187886, 0.00317180064, -0.00764208613, -0.00789508596, 0.0135280546, -0.0104102027, -0.00389545481, 0.00815552659, 3.19156607e-05, 0.0575053953, 0.00966608524, 0.00652963063, 0.0110575855, -0.00646638032, 0.00178588182, -0.0135652609, -0.0129104378, -0.016444996, -0.00316808, -0.0126425549, 0.0105962325, -0.000496698369, 0.0103581147, 0.00292066089, 0.00875082146, -0.00979258586, 0.0361045785, -0.0245707575, -0.012210967, 0.000229048645, 0.0189601127, 0.0168170538, -0.00456144, 0.00139987096, 0.00866152719, 0.0155371716, 0.0119430851]
26 Oct, 2021
jQWidgets jqxSlider showRange Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The showRange property is used to set or return whether the slider range background is displayed or not. It accepts Boolean type value and its default value is true. Syntax: Set the showRange property. $('selector').jqxSlider({ showRange: Boolean }); Return the showRange property. var showRange = $('selector').jqxSlider('showRange'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider showRange property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider showRange Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', showRange:false, rangeSlider: true }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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 rangeSlider Property/jQWidgets jqxSlider showRange Property
https://www.geeksforgeeks.org/jqwidgets-jqxslider-showrange-property/?ref=next_article
PHP
jQWidgets jqxSlider showRange Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxSlider rangeSlider Property, jQWidgets jqxSlider showRange Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[0.00031985878, 0.0110291019, -0.00833672471, 0.0345336236, 0.0528981537, -0.000218454283, 0.0193287414, 0.0269534327, -0.0135360528, -0.0147524429, -0.0306174383, -0.00414611166, 0.0300240777, -0.0376784354, -0.00597440591, 0.0271462761, -0.0208566468, 0.0046690111, -0.0124976709, 0.0418913029, -0.0160800889, 0.0343852825, -0.0775523111, 0.0298905708, -0.0435230434, 0.0415946208, -0.0244168136, 0.0165992808, -0.0201297794, 0.00812163204, -0.00806971267, -0.0208269786, -0.00692378357, 0.010776923, -0.0445910953, -0.0261375606, 0.01622843, -0.0106879193, -0.0593361221, 0.00725754956, -0.0208566468, 0.0047468897, -0.0100945579, 0.0199072696, 0.000570183038, 0.0152048813, -0.00196921756, -0.00502873631, 0.0104876598, -0.0229334105, -0.0417726301, -0.00348414294, -0.00204895041, 0.0168217905, 0.0163619351, -0.0143445078, 0.00608566077, 0.0395771936, -0.0360170268, 0.00221768743, 0.0195809193, -0.0329612158, -0.0172668118, -0.0203522891, 0.00269052223, 0.0148785328, 0.0176673308, 0.0418023, -0.0556869507, 0.0268495958, -0.00991655, 0.0243426431, 0.0497533381, 0.014500265, 0.00735026225, 0.0248321667, -0.0205302984, -0.00158816832, -0.0318931639, 0.0246541593, -0.00943444297, -0.00855181832, -0.0539365336, -0.00725384103, -0.0244019795, 0.0237789508, 0.0387168191, -0.0402892269, 0.0577340461, 0.0161542594, -0.00798070803, -0.00976079237, 0.0202781204, -0.010769506, 0.00437974744, 0.00331355142, -0.00473205559, 0.0301130824, -0.0339402631, 0.0313294716, 0.0303800944, 0.0174448192, -0.00798812509, -0.021138493, 0.0169256292, 0.000974410388, 0.0239124577, -0.0195215847, -0.0129946107, -0.00899684, 0.0210346542, -0.0131058656, -0.0142555032, 0.0067272326, -0.0502873622, 0.0381531268, -0.0195067506, -0.015946582, 0.0310921278, 0.0159614161, -0.00862598885, 0.030320758, -0.0117856376, 0.0342962779, -0.001928424, 0.00904875807, 0.0209604856, -0.0153977238, 0.0521564521, -0.0210049879, -0.00423511583, 0.0337622538, -0.00335063669, -0.0251733493, 0.0020878897, 0.0290598646, 0.0526014715, -0.0084183123, -0.0546782352, -0.00404969044, -0.0536398552, -0.0468755364, 0.0410309285, 0.00742072379, -0.0144335115, 0.034029264, -0.0162432641, 0.0298757367, -0.05185977, 0.00670127338, -0.00294270087, -0.00684961351, -0.00490264688, 0.0204116255, 0.0437010527, 0.0087075755, -0.0253958609, 0.0206489712, -4.71096355e-05, -0.0241349675, 0.0267012548, -0.0244168136, 0.0427813418, 0.0358093493, -0.0282143261, 0.00270535634, 0.0304394308, 0.0124012493, -0.0413572751, 0.0355423354, -0.00072872173, -0.0223548841, -0.0143074226, 0.0303355921, -0.0459854938, 0.0143445078, -0.000873817131, -0.0499610156, 0.011296114, -0.036432378, -0.0138030648, -7.81683848e-05, -0.0323975235, 0.00282959128, 0.00399777107, -0.000235606116, 0.0210494883, 0.00858148653, -0.0501686893, -0.0146782734, -0.00675319228, 0.00627850322, 0.0477952473, 0.0315964855, 0.012238075, -0.00365844276, -0.00714629423, 0.0142406691, -0.031121796, -0.00966437068, 0.0195215847, -0.00181438739, 0.0214796755, -0.00910067745, -0.00442054123, 0.0159020796, 0.00581864826, -0.035393998, 0.0182606913, -0.0248173326, 0.00946411118, -0.00842572935, 0.00462450879, 0.0145299323, -0.0268792622, 0.0231707562, -0.0109771825, 0.0163916033, -0.0217318553, -0.0060374504, -0.00591877801, 0.00873724371, 0.00170776772, 0.0247876644, -0.060641516, 0.00143519242, -0.00626366911, -0.0257815439, -0.021405505, -0.00620062463, -0.0570220128, -0.0137214782, -0.0132542057, 0.00231410866, 0.0205154642, 0.0694825947, -0.0305581018, 0.0117708035, -0.00489523, 0.0253661927, 0.0189282224, -0.0309437867, -0.00454292167, 0.00440199859, 0.0346522965, -0.00957536697, -0.00311885495, -0.0244761501, 0.025529366, 0.0027646923, -0.0282736626, -0.00482847681, -0.0263600722, -0.00383459684, -0.0104060723, -0.000464490586, 0.000597533304, -0.016628949, 0.0172519777, 0.00956053287, 0.0241201334, 0.0263452381, -0.000987390173, 0.00926385168, 0.0294752177, 0.0408529192, 0.019417746, -0.0230669174, 0.00460967515, -0.0151900472, 0.0240459628, -0.0387168191, 0.0191507339, 0.0413572751, -0.0235712752, 0.00798070803, -0.0277248025, -0.00366585981, 0.0272649471, -0.0149972048, 0.02234005, 0.00204895041, 0.0130465301, 0.0471425503, 0.0284071676, -0.00571851851, 0.0235564411, 0.00508436374, -0.0199666042, 0.0299054049, -0.0160355866, -0.0284813382, 0.0169107951, 0.00329315476, 0.0263452381, 0.0221323725, 0.0115112076, 0.000154714304, 0.00147505885, 0.0232894272, -0.0134841334, -0.00806229562, -0.0238531213, -0.00292044971, 0.0200111065, 0.0042017391, 0.0409419239, 0.00703874743, 0.000124582672, -0.0315371491, 0.0177118331, 0.0173409823, -0.0421583131, -0.0513850823, 0.0106656682, 0.0220582038, 0.012898189, 0.0226515643, 0.0162729304, -0.0133209592, 0.0282143261, 0.00568143371, -0.0189875588, 0.0290450323, 0.0312701352, -0.0174893215, -0.00717225391, -0.0312998034, 0.000418134237, -0.00904134195, -0.0589504354, 0.0189282224, 0.0168811269, -0.0348599702, -0.016895961, -0.045214124, 0.010636, -0.0262117311, -0.020619303, 0.0212571658, -0.00446875161, -0.0536398552, 0.0245503206, -0.0284368359, 0.0155460639, -0.059840478, -0.00789912138, 0.0108288424, 0.0353049934, 0.0326348655, 0.00139996165, 0.019818265, 0.0113777015, -0.00201371964, 0.00538475299, -0.0227702372, -0.0165102761, -0.0231114198, -0.0382124633, -0.0151826302, -0.00656035, -0.00070508, 0.0277544707, 0.0180530157, 0.0261078943, -0.00766919367, -0.0393101797, -0.00894492, -0.00224179286, 0.0143890092, -0.00757277245, -0.0193287414, -0.0272946153, 0.0386574827, -0.0226663984, 0.0179936793, -0.00151121686, -0.00230854587, 0.00314666866, 0.00901909079, -0.0420989767, 0.0774336383, -0.00722417282, 0.0301575828, 0.000991098699, 0.0261820629, 0.00447246, -0.0107472548, 0.00995363481, -0.0130168619, -0.0378564447, 0.0253513586, 0.024847, -0.0336139128, 0.0194622483, 0.0104579916, -0.0162877645, 0.00921935, 0.0375894345, -0.0142035838, 0.0175338238, -0.0242536403, -0.0138698183, 0.00462080026, -0.0321305096, -0.00184869103, -0.0282439943, -0.00814388227, 0.0027646923, 0.0132616227, 0.013291291, 0.00414982, -0.0377674401, 0.0569923446, 0.0245799888, 0.0581493974, 0.0354533345, 0.0457778163, 0.0144335115, -0.0210791565, 0.0389244966, -0.0108065913, -0.0407639146, 0.0134915505, -0.0372630842, -0.0275467951, -0.0246393252, 0.0105692465, 0.053461846, -0.0256628729, -0.00401260518, 0.00633042259, -0.0180678498, -0.0309437867, 0.0305581018, 0.0254403614, 0.00256814156, 0.00897458848, -0.0141590824, -0.029401049, -0.0291933715, -0.000629982736, 0.0250546765, 0.0024884087, -0.0436713845, 0.00517707644, -0.0139069036, -0.0117782205, 0.0127943512, 0.0443537496, -0.0139514059, -0.042544, -0.0282736626, -0.00578898052, 0.0127127636, -0.00923418347, 0.0364027098, -0.00126830954, 0.0169404633, -0.0120378155, -0.00431670295, 0.0270276032, -0.0275467951, -0.00994621776, -0.0150862085, -0.00334878243, 0.00338030467, 0.0219840333, -0.0114815393, 0.00707954122, -0.0539068654, -0.012505088, 0.0221472066, 0.0541738793, 0.0444427542, 0.0337029174, 0.00479510054, 0.00581864826, -0.00321156764, 0.00247542886, 0.0275467951, 0.010895595, 0.0446504317, 0.0117337182, 0.0286148451, -0.00697199441, 0.0215835143, -0.0036176492, -0.0133728785, -0.0130761974, 0.00612274604, 0.0136102233, -0.0373817571, 0.0183200277, -0.0139959073, 0.0116372965, -0.0199962724, -0.00977562647, 0.0138178989, 0.0178898405, 0.0183348618, 0.0278731436, -0.0353643298, 0.00109400973, 0.0293120444, -0.00225848122, -0.0235119388, -0.0118968925, -0.000538660737, -0.0271611102, 0.00996846799, -0.0133580444, -0.00540329563, -0.00544038042, 0.00832930766, -0.0371740796, -0.0609975345, -0.0404672362, 0.0248321667, -0.0363137051, 0.0136547247, 0.0285555087, 0.0138104819, 0.0280066486, 0.0313591398, 0.0208566468, -0.0260485578, -0.0250695106, -0.0100426385, 0.0259002168, -0.0236009415, -0.00432412, 0.0259150509, 0.0186018739, -0.0174299851, -0.00265529146, -0.020337455, 0.00838864408, -0.0106805023, 0.00137771061, -0.00233079703, 0.0173558164, -0.0507620536, -0.000751899905, 0.0192397367, 0.0274132881, -0.00971629, -0.0072872173, 0.0301575828, 0.0389541648, 0.0198924355, 0.00116817991, 0.0174893215, -0.0143964263, 0.00102262094, 0.00671981554, -0.0056369314, -2.94362799e-05, -0.0264342427, -0.00548859127, -0.00999071915, -0.0167031176, 0.0157092381, 0.0224883892, 0.00200815685, -0.0151010426, 0.00468384521, 0.019284239, -0.0123270797, -0.0180233475, -0.0128685217, -0.0151529619, -0.0175931603, -0.000709715649, 0.0141887497, 0.015946582, 0.0384498052, -0.0176524967, 0.00947152823, 0.0203819573, -0.0161394253, -0.0519784428, 0.00845539756, 0.0067049819, -0.0185128693, -0.014099746, 0.00295197195, -0.0145447664, -0.0169701315, 0.0037826777, -0.019818265, 0.0132171214, 0.000422538084, 0.00829964, 0.00252363947, -0.0111181056, -0.0346522965, -0.010636, 0.0200111065, -0.0307361111, 0.0189430565, 0.035245657, 0.0159762502, 0.00983496197, -0.00602261629, -0.0333172306, 0.00414611166, 0.017696999, 0.0150046218, -0.016094923, -0.0329612158, -0.0203819573, 0.0259743873, -0.0336732492, -0.00746893417, -0.0547672398, -0.0149897877, 0.0144854309, 0.00298720296, -0.00751714502, 0.0113109481, 0.00601519924, 0.0226960666, 0.0053995871, 0.0229482446, 0.00650101388, -0.0341776051, -0.0223697182, 0.0105766635, -0.0215983484, -0.00333580258, -0.0038160542, 0.0131429508, 0.000840904075, -0.0101242261, 0.0154867275, 0.00459484104, 0.0321008414, -0.00352308224, -0.00480251713, 0.0394585207, 0.00751343649, -0.0154422261, 0.0630149618, -0.00130446756, 0.0232449248, 0.00875207782, 0.0178008359, 0.0127053466, 0.0300240777, -0.0121268202, 0.0252920222, 0.0293120444, 0.00838864408, 0.00360652362, 0.0128462706, 0.0130687803, -0.00657889247, 0.000224596486, 0.0225032233, -0.0167179517, -0.0164806079, 0.0400518812, 0.00778786605, 0.0132171214, -0.00353606208, 0.0221768748, 0.039221175, 0.0142035838, 0.0247431621, -0.00277025509, -0.0215835143, 0.00953828171, -0.00828480627, 0.0204709619, -0.025796378, -0.0174003169, 0.0184387, 0.00775819784, 0.0287928525, -0.0174893215, 0.0410012603, 0.0422473177, 0.0200111065, 0.00777303195, -0.0276061296, -0.00561838923, -0.00296309753, 0.000362970168, -0.000361811282, -0.00388651597, 0.00775078079, 0.0307361111, 0.0105173271, -0.00348970573, 0.0148562817, -0.0325755291, -0.00916743092, -0.0310624596, -0.0118894754, -0.00872982666, -0.00305581023, 0.00133413565, 0.0227109, -0.000727331033, 0.00787687, 0.00664564548, 0.0253068563, -0.0197885968, 0.0108733447, 0.0155905662, 0.0491006412, -0.0129501084, 0.043612048, 0.00270535634, 0.0121342372, 0.00542183826, -0.00311514642, -0.0157834087, -0.00214351737, 0.0137808146, 0.0117930537, -0.00371963321, -0.020485796, 0.0129426913, -0.00877432898, 0.0141219972, -0.0438493937, -0.00120155641, 0.000974410388, -0.00243648957, 0.0594844632, 0.0123493299, -0.0181123503, -0.00244576065, 0.0264045745, 0.00667160517, 0.00220656209, -0.00607082713, 0.000960503472, -0.0104283234, -0.0274577904, 0.00928610284, 0.0105321612, 0.00072547677, -0.0133432103, 0.0116817988, -0.029401049, 0.00348228868, -0.0158575792, -0.00662710285, -0.00884108245, -0.00673094112, -0.0280066486, 0.0132393725, 0.0173409823, 0.00565547403, 0.00174207147, 0.0283923335, -0.0132393725, 0.0144631797, 0.0295642223, -0.0285703428, 0.0180530157, 0.006182082, 0.0362840369, -0.0376784354, -0.0276951343, 0.0341479369, -0.0340589322, 0.0323678553, 0.0195512529, 0.0266270842, -0.022607062, -0.0262859017, 0.0290301982, -0.0153680556, 0.000242675465, 0.0154422261, 0.0123344967, -0.0187650491, -0.00486556208, -0.00323196431, -0.00448358571, -0.0117114671, -0.0332578979, 0.00473947264, 0.0249063373, 0.0185277034, 0.0118523901, 0.0184980351, 0.00102169381, -0.00263118604, 0.00671239896, -0.00155850034, -0.0136324735, -0.03563134, 0.00204524188, -0.00203782483, -0.0437010527, 0.0114222039, -0.0175338238, 0.0174893215, 0.0170294661, 0.0373224206, -0.014225835, -0.0263749063, -0.0017281645, -0.00996105094, 0.0171778072, -0.00573335262, -0.00962728541, -0.0396068618, 0.00370294484, -0.00300759962, -0.0253661927, 0.0195809193, -0.0199517701, -0.00769144483, 0.00263860309, -0.00583348237, 0.00266270852, 0.00429074327, -0.0516817607, -0.0252475198, 0.035393998, -0.023141088, 0.0207083058, 0.0357500128, -0.00198961422, -0.0033061346, 0.0116076283, -0.0259595532, 0.0286148451, -0.0174893215, -0.000250092475, 0.0216576848, 0.0196105875, 0.026196897, 0.00900425669, 0.000566938077, 0.00913776271, -0.00419803057, 0.0121490713, -0.000976264651, 0.0296828952, -0.000101288613, 0.00642313529, 0.0249953419, 0.019017227, 0.0366993919, 0.0114592882, 0.0046690111, 0.0268940963, -0.0191952344, -0.00299647404, 0.00686444761, 0.00617466494, 0.011170025, 0.00777303195, -0.00739476411, 0.00805487856, 0.0032709036, 0.0157389063, 0.0112071102, -0.00911551155, -0.0067976946, -0.0581790656, -0.030053746, -0.0161542594, -0.0103393188, 0.0176376626, -0.0108881779, -0.00338957598, 0.0263452381, -0.000856201688, -0.0511180684, 0.0218356922, 0.00341553544, -0.0195660852, 0.0326348655, -0.0144483456, -0.0159762502, 0.00281290291, -0.0033636163, 0.0487742908, -0.044027403, -0.0155460639, 0.0310327914, -0.0220730379, 0.0102132298, -0.0196995921, -0.00253847335, -0.035245657, 0.00585944206, 0.0396958664, -0.0080177933, -0.00554051, 0.0115037905, -0.00489893835, 0.00129612337, 0.00186445215, 0.00569255929, -0.0149823707, 0.00614870572, 0.0101613104, -0.00479139201, 0.0345039554, 0.0119858962, -0.00297422311, 0.0305284336, -0.00313368882, -0.0102577321, -0.0130094448, 0.0185573716, -0.0326348655, -0.0106730852, 0.0342962779, 0.0148488646, 0.0102280639, -0.0183793642, -0.0228295736, 0.0165399443, 0.0345632918, 0.0122232409, -0.0123493299, -0.0253216904, 0.0038160542, -0.0455998108, 0.0162729304, -0.00805487856, -0.00268310518, 0.0389541648, 0.00247728312, -0.00636009034, -0.00742443232, 0.0119636459, 0.0226812325, -0.00907842629, -0.0104876598, 0.0271462761, 0.0199517701, 0.00824030396, -0.0163174327, 0.00142035843, -0.0283923335, -0.0475282334, -0.000547468429, 0.00432041148, 0.0181865208, 0.0120378155, 0.0155015616, -0.00674948376, -0.0127943512, 0.0317744948, -0.0210494883, -0.0193880778, 0.0192249026, -0.0453624651, -0.00650101388, 0.00326163252, -0.0212571658, -0.00293713808, 0.00262376922, 0.0114222039, -0.00228444068, -0.0129278572, 0.00484331092, -0.00980529375, -0.0154422261, -0.0247728303, 0.00608566077, 0.0596031323, -0.00268866797, 0.0360170268, -0.00751714502, 0.0281549897, -0.0312404688, 0.0361950323, -0.00669385633, 0.0063823415, 0.000113978662, 0.00792137254, 0.00767661072, 0.0485666171, -0.0119858962, -0.0112293614, -0.026997935, -0.0315074809, 0.0230520833, 0.0312701352, -0.0150713753, -0.00529945735, -0.0223548841, -0.00551825948, 0.0266715866, 0.0160504207, -0.00641571824, -0.0214500073, 0.00678656902, -0.0318041593, -0.0487149544, 0.000692563772, 0.0519784428, 0.0324568599, 0.00888558384, -0.0498720109, 0.00841089524, 0.00455775578, 0.0219098628, -0.039221175, 0.0112367785, 0.0154422261, 0.000309892173, -0.00856665242, 0.0106508341, 0.00300018257, 0.0138030648, 0.00758760655, 0.00664935401, 0.0115557099, -0.00852215, 0.0288225207, -0.0259150509, 0.00641200971, 0.00892266911, -0.0242833085, -0.0147005245, 0.0221620407, 0.00278323493, 0.00990171544, 0.0133654615, -0.0210939907, 0.00721304724, -0.011303531, -0.022206543, 0.000693490903, -0.0172223095, -0.0128166024, -0.00990171544, 0.0111329397, -0.00778786605, 0.0048544365, 0.00212497474, 0.00405339897, 0.0264490768, -0.0117633864, 0.0189875588, 0.00667160517, -0.00600778218, -0.00115427293, -0.0128462706, 0.00486556208, -0.0246838257, 0.0107620889, -0.006582601, 0.000376645301, -0.0266715866, 0.00776561489, 0.0139291547, 0.00405339897, -0.0244316477, -0.0143741751, 0.00729463436, 0.0074355579, 0.0171333048, 0.0130761974, 0.00216391427, 0.00223623, 0.0196402557, -0.0196402557, 0.0141739156, 0.00305951876, 0.0208121445, 0.007780449, 0.0145150991, 0.0203671232, 0.0073428452, 0.0191359, -0.00818096753, 0.0286296792, -0.0358390175, 0.00508807227, 0.00982754491, -0.00158445991, -0.0129204402, 0.0225477256, -0.026597416, -0.00947152823, -0.0107175866, -0.00249767979, 0.00169386086, 0.0136547247, 0.013699227, -0.0120229814, -0.0306174383, -0.0146115199, 0.0871647596, 0.0158724133, 0.01396624, -0.00438345596, -0.0120303985, -0.0302465875, -0.0258557145, 0.0296235587, 0.0385684781, -0.00470609637, 0.0168217905, 0.0220433697, 0.0142480861, -0.0175634921, -0.0113628674, -0.0137288952, -0.0243129749, -0.00164008746, 0.0271462761, -0.0253216904, -0.023808619, 0.0134767164, 0.00907842629, 0.00571110193, 0.0169107951, 0.0175634921, -0.0219543651, 0.0129130231, -0.0334359035, 0.0118968925, -0.01142962, 0.0300092436, 0.0439977348, 0.00251622242, -0.0222213771, 0.0347412974, -0.0374114253, 0.0207083058, -0.00131003035, 0.00634154817, -0.00468013668, 0.00387168187, 0.00431299442, 0.0105692465, 0.00259410101, -0.00438345596, -0.0208714809, -0.00414240314, -0.0357203446, 0.0142629202, -0.0393398479, 0.000750972773, -0.0244909842, -0.00553309312, -0.0037289043, 0.0118004708, -0.00101613114, -0.0197589286, 0.0424846634, -0.0575263686, -0.0072872173, -0.0131058656, -0.00871499255, -0.026730923, 0.0100648897, 0.0183348618, -0.0396662, 0.0216725189, -0.0215983484, 0.0191952344, 0.0264935791, -0.0058001061, -0.00879658, -0.00548488274, -0.00328202918, 0.00219914503, -0.00766177662, -0.00630817143, 0.00889300089, -0.0037103619, -0.0422769859, 0.00300389109, 0.0100723067, -0.00220841635, -0.0162135959, 0.0148562817, -0.0211681612, -0.0146041028, -0.000420915603, -0.00501390221, -0.00673835818, -0.0107324207, -0.025128847, 0.00297422311, -0.0179195087, -0.00680881971, 0.0181865208, -0.00150750834, 0.000252410304, -0.0171629731, 0.0281846579, 0.0191952344, -0.013298708, 0.00225848122, -0.00330798887, 0.00469126226, 0.0173409823, 0.00705358153, -0.015427392, 0.00322640152, -0.0222807135, -0.0053068744, -0.0124828368, 0.0194622483, 0.002659, 0.0180975161, -0.0192545708, -0.00179028208, 0.00737622147, 0.020218784, -0.0213758387, -0.0191062316, 0.00526608061, -0.0100723067, -0.00597811444, -0.0106063318, 0.00228258641, 0.0282736626, 0.0124086663, -0.00597811444, -0.0209456515, 0.00752827059, -0.00756906392, 0.00555163575, -0.0210198201, 0.00547375716, -0.0124754198, 0.00849248283, 0.017415151, 0.028199492, -0.00016815764, -0.00136843929, 0.0175189897, -0.008507316, -0.00142499409, 0.0318634957, 0.00428703474, -0.00705729, 0.0149378683, -0.00145373493, -0.0358390175, -0.00216762279, 0.0233784318, 0.000903948734, 0.0172074754, -0.0226960666, -0.0128166024, -0.0180678498, -0.0343556143, 0.000287872914, 0.00598182296, 0.0262859017, 0.0138401501, 0.00968662184, 0.00429445179, -0.00708324928, -0.00338401319, -0.0134099638, 0.00662710285, 0.00399035402, 0.0160504207, 0.0104654087, 0.017415151, -0.010368987, 0.0212274976, 0.0154125579, 0.00157148007, 0.0180530157, 0.014492848, 0.0213313363, -0.00493602362, 0.0179936793, -0.0293268785, 0.019818265, 0.000807991077, -0.0164064374, -0.0173706487, -0.00626366911, 0.0245948229, -0.00884108245, -0.0256035365, 0.0152197154, 0.0290895328, 0.0141516654, 0.0197292604, 0.0100426385, 0.00480622565, -0.0258557145, 0.00407935819, 0.0356906764, -0.0229630787, 0.0182903595, 0.020737974, 0.0173409823, -0.00131652015, 0.0216428507, -0.0128166024, 0.0157685746, -8.28619668e-05, -0.0246541593, 0.0106211659, -0.0113406163, -0.0169997979, 0.00700166216, 0.00297236885, -0.00378824049, 0.0222807135, -0.0260337237, 0.0110884374, 0.00799554214, -0.000191219922, 0.0049063554, -0.014633771, 0.00198034314, 0.00107268582, 0.000142198085, -0.0185870398, -0.00449100276, -0.00115149166, 0.0156795699, -0.0105692465, 0.0168069564, 0.0115260417, -0.00846281461, 0.0152048813, 0.0283626653, -0.0237937849, -0.026330404, -0.00664935401, 0.00868532434, 0.00172167469, -0.00937510747, 0.00963470247, 0.055597946, 0.0317744948, -0.000116586205, 0.0179640111, -0.0254848637, -0.0195809193, 0.00822547, 0.0022009993, 0.0116372965, 0.0058371909, -0.0321008414, 0.0276209638, 0.00250880537, -0.0236751121, -0.00402743928, -0.00749860238, -0.0518894382, -0.00984237902, -0.0257370435, -0.00502131926, -0.0149601195, -0.029252708, 0.00103467365, 0.00181346026, -0.0132764569, -0.0121861557, -0.0138846524, -0.0024198012, -0.000697663, -0.00424994947, -0.0103615699, 0.0192990731, -0.00841089524, 0.0218653604, -0.0129204402, 0.0074874768, -0.00910067745, -0.0191655681, 0.00502502779, 0.00785461906, -0.00407935819, -0.0225625597, 0.0273539517, -0.00418690499, 0.0221027061, 0.0149675366, 0.0215983484, 0.000365056214, 0.0194919165, -0.0143222567, 0.00865565706, -0.000878916297, 0.0283775, 0.020337455, -0.0267160889, -0.000789912126, -0.0281401556, 0.0127201807, -0.0160207525, 0.0156647358, -0.00723159, -0.00564434845, 0.00592619507, 0.0177415, 0.00570368487, 0.00691265799, -0.0224142205, -0.0189727247, -0.0191210657, -0.0262562335, 0.0200407747, -0.00165863, -0.0162877645, 0.00298164017, 0.00262933178, -0.00572964409, -0.0097237071, -0.0157834087, -0.00695716031, -0.0584460795, 0.00235675648, 0.00246059475, -0.0242536403, 0.00973112416, -0.00961245131, 0.00732059404, -0.0239866264, 0.0266864207, 0.00123771443, -0.00609678635, 0.0163916033, -0.0182310231, 0.00491748098, 0.00458742399, -0.00744668348, -0.00502873631, 0.0183348618, -0.0207973104, 0.0072352984, -0.0192694049, 0.0217911899, 0.0167772882, -0.0133580444, -0.00799554214, -0.0155015616, -0.0104283234, -0.0217911899, -0.0118746413, -0.0105173271, 0.0217021871, 0.0194622483, 0.00280177756, 0.0314481445, 0.00150101841, 0.00394956069, -0.000358334539, 0.0173854828, -0.00541812973, 0.0300834142, 0.000279528758, -0.000521972426, 0.0193732437, -0.0380937904, -0.00980529375, -0.0287335161, -0.00355460448, 0.00366956834, -0.0220285356, 0.00722417282, 0.000176038215, -0.00512144901, 0.00943444297, -0.00296866032, 0.00887075, -0.00558872102, -0.00424624141, 0.0155460639, -0.0236157756, 0.0101983957, -0.00213424605, -0.0142480861, 0.0260040555, 0.0173113141, -0.00938252453, -0.0189727247, 0.00480622565, 0.0192694049, 0.0363137051, 0.00720933871, 0.00549600832, -0.00984979607, -0.0109994337, 0.00534025114, -0.00845539756, 0.00105321617, -0.0160800889, -0.00855923537, 0.0235267729, -0.00253291079, -0.00375486398, 0.0150491241, 0.0469052047, -0.00852956716, -0.00360652362, -0.0106137488, 0.0121787386, 0.00166975555, -0.015827911, 0.0244909842, -0.036847733, -0.00867790822, 0.00198590592, -0.00745780859, 0.00512515754, 0.0245651547, 0.00247172033, 0.0025811214, -0.0315964855, -0.000575745828, -0.0310624596, -0.00902650785, 0.00117837824, -0.0120749008, -0.0156795699, -0.0105099101, -0.022607062, 0.0186463762, 0.0202929527, -0.00299461978, 0.023942126, -0.00197478035, 0.0253661927, -0.0173409823, -0.0270721056, 0.0224290546, 0.00528833177, 0.0331095569, -0.0270276032, 0.011577961, 0.0116224624, -0.00534766773, 0.00849989895, 1.27552385e-05, 0.0107991742, -0.00258668396, 0.0180381816, -0.000784812903, 0.0114592882, -0.0183051936, -0.0215686802, 0.00527720619, -0.00137956487, -0.00143797381, -0.0316854902, -0.027798973, 0.010895595, 0.00354162464, 0.0220730379, -0.0126756793, -0.00233265129, 0.00318189943, 0.0245058183, -0.0126237599, -0.00408306671, -0.00150101841, -0.00982754491, 0.0231559221, -0.000316150283, -0.00961245131, 0.00933060516, -0.00900425669, 0.00964953657, 0.000980900251, -0.00753197912, 0.00706099859, -0.0122974114, -0.00205080467, -0.00752456207, 0.0169107951, 0.00066475, 0.0103838211, 0.0241794698, 0.0222807135, 0.0131948702, 0.01142962, 0.00786945317, 0.0020155739, 0.0193139073, 0.00564434845, -0.00412756903, 0.0133654615, 0.0160652548, 0.0187353808, -0.00720192166, 0.0358983539, -0.0310031231, -0.0105099101, 0.00305581023, 0.00943444297, -0.0099091325, -0.00938994158, 0.00664935401, 0.00629704585, -0.00509548932, -0.00587056763, 0.00427220063, 0.0200259406, 0.00724271545, -0.00306137302, -0.0115186246, 0.0187650491, 0.0121564874, -0.0219840333, -0.0189578906, -0.00231410866, -0.0193732437, 0.0225625597, 0.0264935791, -0.000517800392, 0.0149007831, -0.0244761501, -0.00357500138, 0.0100352215, 0.00131281174, -0.0163322669, 0.0126089258, 0.0182310231, -0.00647134567, 0.0116298795, -0.00774336373, -0.00740959821, -0.0109400973, -0.0188985541, 0.0168069564, -0.0112219444, 0.000302011584, 0.0141813327, -0.0224587228, -0.00203597057, -0.00578898052, -0.0221175384, -0.000929444737, -0.0103244856, -0.00818838459, -0.0112441946, -0.00546263158, -0.0236751121, -0.00798070803, 0.0180530157, -0.0238531213, 0.0150417071, 0.00987204723, -0.00994621776, -0.00290746987, 0.00452437904, -0.0203671232, 0.00464305142, 0.00840347819, 0.0182310231, 0.00169015233, -0.000108415901, 0.0159020796, 0.00668643927, -0.00317077409, 0.00453179609, -0.00825513806, -0.0228889082, -0.00540329563, -0.0128314365, 0.0167327859, 0.00962728541, 0.00643426087, 0.0382421315, -0.00910067745, -0.0118078878, 0.00316150277, -0.00473947264, 0.0195364188, -0.00841089524, -0.0103838211, 0.00163730606, -0.0134989675, 0.0199814383, 0.0107546719, 0.0153383873, -0.0165844467, -0.0273539517, 0.010116809, -0.00233079703, -0.00242350972, 0.00470980443, -0.0178601723, -0.00607824372, -0.0113851186, 0.00984979607, -0.0156350676, 0.0130910315, -0.0223845523, -0.0125347553, 0.00187372346, -0.00201186538, -0.0020545132, -0.00213795458, 0.00651213946, 0.00830705743, -0.0357796811, 0.00184961816, -0.00423140731, -0.0346819647, 0.00716483686, -0.0219988674, 0.0240162946, 0.00108937407, 0.00612645457, -0.00359539804, 0.0106656682, 0.0159910843, -0.000907193695, 0.00286111352, 0.000701835088, 0.00702391332, 0.0226960666, 0.01729648, 0.0209159832, -0.0150787914, -0.0139143206, 0.0022343758, 0.00680511165, 0.00904134195, 0.0208566468, 0.0037641353, -0.00219543651, 0.00577414641, -0.00328944623, -0.00873724371, -0.0128685217, -0.0105173271, 0.0158427451, 0.00649359683, -0.0339402631, 0.00179306348, -0.015293885, -0.000221931, -0.0145818517, -0.00353791635, 0.00433524558, 0.00395326922, -0.00650101388, 0.0232300907, -0.000698126561, -0.00063971756, -0.00806229562, -0.0140404096, 0.0104209064, 0.0245799888, -0.0061449972, -0.00383088831, -0.000240821217, 0.0149601195, 0.00654922426, 0.0246541593, 0.0116298795, -0.0169849657, 0.0260337237, 0.0177860018, -0.010903012, -0.0308844522, 0.0242684744, -0.00352864503, 0.00362877478, 0.00353235356, 0.0110068507, 0.0218653604, 0.0167921223, -0.00241794693, -0.00899684, -0.00193213241, -0.0228147395, -0.00941219274, -0.00985721312, 0.000986463, 0.0157092381, 0.00257370435, 0.00933802221, -0.0174893215, -0.019017227, -0.029653227, 0.0111848591, 0.012238075, -0.00608566077, -0.00967920478, 0.0130910315, 0.00636009034, 0.00167439121, 0.0241349675, 0.00742443232, 0.0011440746, 0.0377081037, 0.00869274139, -0.0297719, -0.00402373075, -0.00783978496, 0.0153383873, 0.00769144483, 0.00147691311, -0.0116669647, -0.00483218534, 0.000222626346, -0.0166141149, 0.0138920695, -0.00040260487, -0.0343556143, 0.00408677524, 0.000810772472, 0.0220582038, 0.00618579052, 0.0179046746, 0.00742443232, 0.00600407366, 0.007780449, -0.00168644381, -0.0112441946, -0.0163025986, 0.0022881492, -0.00688669877, 0.00392360101, -0.0241646357, -0.00171054911, 0.0152048813, -0.0218505263, -0.00170591346, -1.20164341e-05, -0.0174299851, 0.00572964409, 0.00706470711, 0.00113387615, -0.0159317479, 0.0299350731, 0.0306471065, 0.00129241485, 0.00217874814, -0.0029464094, 0.00249582552, 0.0334655717, 0.000403068407, -0.0057444782, 0.0228295736, -0.00644538598, 0.00978304259, 0.0177266672, -0.0324568599, 0.00628592027, -0.0141294142, 0.00326534105, 0.0071277516, 0.00169107947, -0.0114963735, 1.14876821e-05, -0.00547746569, 0.00230112905, -0.00588911027, 0.00361023215, -0.0102577321, 0.00420915615, -0.0104654087, -0.0272352789, 0.00617466494, -0.0111181056, 0.00746893417, -0.0198331, -0.00104487198, 0.00392730953, 0.00930093694, -0.00342109823, 0.0100574726, 0.0189727247, -0.0122974114, 0.00519561907, -0.0249953419, 0.00211941218, 0.00826255511, -0.00458000693, -0.0151529619, 0.0193287414, -0.00284998817, 0.0369960703, -0.0197737627, -0.0300389118, -0.00844056346, 0.0225180574, -0.0105989147, 0.0176228285, -0.0130761974, -0.000591506949, 0.00960503425, -0.00573706115, 0.0146634392, 0.000224364703, -0.032189846, -0.00723900693, -0.0247876644, 0.00194140372, -0.00499165105, 0.0107546719, 0.00688669877, 0.0078027, -0.00653439, 0.00460967515, -0.00908584334, -0.00162988913, 0.0140700778, 0.00591506949, -0.0134841334, 0.0160355866, -0.0197144262, -0.00508436374, -0.0176821649, 0.0213165022, -0.00818838459, 0.00239013322, 0.000159813499, -0.0022733151, 0.0116298795, -0.0011440746, -0.00505840452, -0.0122529091, -0.00654551573, 0.000836732041, -0.0233190954, -0.0292972103, -0.00847764872, 0.000424160564, -0.00668273075, 0.00944186, -0.00208232692, -0.000656405871, 0.00754681276, 0.0226515643, 0.0334062353, -0.0107398378, 0.00806971267, -0.0070869578, -0.00651213946, -0.00442795828, -0.0387464873, -0.0136398906, 0.0121787386, 0.0040014796, -0.0125718405, -0.00300018257, -0.00170313206, 0.00533654261, 0.0176524967, 0.000156684444, -0.0154867275, -0.011036519, -0.00321713043, 0.00772852963, 0.00939735863, 0.00515853427, 0.0102058128, -0.00726125808, -0.00573706115, -0.0272797812, -0.00763210841, 0.00253105653, -0.0193139073, 0.0276803, -0.00824030396, 0.0112367785, 0.0122899944, 0.0335545763, -0.0108436765, -0.0281401556, -0.00571110193, -0.00279065198, -0.00224550138, -0.012364164, 0.0210643224, -0.0109920166, -0.000974410388, 0.0206786375, -0.0125792576, -0.0133802956, 0.0166437812, 0.0281846579, 0.00183478417, -0.00139439886, -0.00722788135, 0.00779528311, -0.00722046429, 0.000353003561, 0.00712404307, -0.00443908339, -0.00262562349, 0.00275727548, 0.0264935791, 0.00324309, -0.0197737627, -0.0170591343, -0.00941219274, -0.016347101, 0.00392730953, 0.000657332945, 0.00879658, 0.0138475671, 0.00973112416, -0.0271611102, 0.0148266135, 0.0227109, -0.0100352215, 0.0117188841, -0.00388651597, 0.0105099101, -0.0153235532, -0.00591136096, -0.0191062316, 0.00192471547, 0.0109400973, -0.0163619351, -0.0102206469, -0.0105914976, 0.0105544124, -0.0142110009, -0.00804004446, 0.037648771, 0.00617466494, 0.0334655717, -0.000119599368, 0.00499165105, -0.00982754491, -0.0103912381, -0.00713146, -0.013039113, -0.00426107505, 0.0110661862, -0.000624419947, -0.00366771407, -0.00936027337, -0.0109623484, -0.00787687, 0.0295642223, -0.00251065963, 0.0101983957, 0.0103096515, 0.0099091325, 0.00933060516, 0.0205896348, 0.00278323493, -0.00953828171, 0.00953086466, -0.00749489386, -0.00532170851, 0.00443166681, -0.00389393303, 0.0157685746, 0.00498423399, 0.0015427391, 0.0363730416, -0.0198776014, 0.00267754239, 0.0137066441, -0.00730576, 0.000704616425, 0.00587427616, -0.02234005, 0.00777303195, -0.00667160517, -0.00105877896, -0.00159373111, -0.0111255227, 0.0244464818, 0.000864545815, -0.00647876272, 0.0122454921, 0.0202781204, -0.0137214782, -0.00713146, 0.0154570593, 0.00163730606, -0.00263118604, 0.01781567, -0.0150194559, 0.003091041, -0.023942126, 0.0304690991, 0.00399777107, 0.0111181056, 0.00941960886, -0.00437603891, -0.0143964263, -0.00875949487, -0.00493602362, 0.0267605912, -0.00632300554, 0.0376784354, 0.00894492, -0.00287965615, 0.0071425857, 0.00407194113, -0.00058918912, 0.0178898405, 0.0037437384, -0.0115482928, 0.00406081602, -0.0116892159, -0.0251733493, -0.0139810741, -0.0149007831, 0.0064898883, 0.00936769, -0.0110884374, -0.00194325799, -0.0120749008, 0.0078027, 0.0396958664, -0.014359341, -0.00764694251, -0.0282736626, -0.001563136, 0.0191062316, 0.00216020574, 0.00576672936, 0.0246986598, -0.0208566468, 0.021286834, -0.00762469182, -0.00742072379, -0.0149897877, 0.00550342537, 0.0049990681, -0.00161690929, -0.00648247125, 0.0111848591, 0.00484701945, 0.0253513586, 0.00484701945, 0.00277581788, -0.0222362112, -0.0203522891, 0.0112886969, -0.0431966968, 0.00538846152, -0.0041238605, -0.0159169137, 0.00356943859, -0.0012071192, -0.004253658, 0.0175931603, 0.014359341, -0.00983496197, -0.00644167792, 0.0223252159, -0.00946411118, -0.00924160052, 0.0164064374, 0.0073280111, 0.000367605826, -0.000169664228, -0.0291637033, 0.00284257112, 0.00808454677, -0.0116076283, 0.015293885, -0.0221323725, -0.0244464818, 0.00217874814, -0.000625810644, 0.027398454, -0.00842572935, -0.000196435009, 0.00063971756, 0.00653068209, -0.00197663461, -0.00473205559, 0.0117337182, 0.0167179517, -0.00709808338, -0.00588911027, -0.00885591656, -0.00925643463, -0.000927590474, -0.012230658, 0.01888372, 0.00105228904, 0.0177711677, 0.0155905662, -0.0132690398, 0.00027883341, -0.000643889653, -0.00626366911, 0.00722788135, -0.0122454921, -0.00968662184, 0.0106805023, -0.000938252429, 0.00196550903, 0.00350453961, 0.0115334587, 0.000903021602, -0.00415723724, 0.00655664131, -0.00133784406, -0.0299647413, 0.0122751603, 0.0266567525, 0.00246986607, 0.0151307108, 0.026597416, -0.0033061346, 0.0111477738, -0.00301687093, 0.0163619351, 0.00685703056, 0.00774336373, 0.0136250565, 0.011043936, 0.0110958545, -0.00595215475, -0.0140404096, -0.0178601723, 0.0295642223, 0.0236751121, -0.0227109, -0.0198479332, 0.011437037, 0.0310031231, -0.0203671232, 0.0124976709, -0.00423882436, 0.0155460639, -0.021138493, 0.00103281939, -0.00655293278, 0.00174578, 0.0185870398, -0.00905617513, -0.00558872102, 0.0104579916, -0.00389764155, 0.00105785183, 0.0117188841, -0.00586315058, -0.0126830963, 0.00647505419, -0.0245948229, -0.0399925448, 0.0112293614, -0.014359341, 0.0188095514, -0.0130687803, 0.00303912186, -0.0244761501, 0.00190431869, 0.0136176394, -0.00867790822, 0.0153828897, -0.00239569601, -0.00961245131, -0.0105914976, 0.00431670295, 0.0161542594, -0.0103244856, 0.0269385986, -0.0078175338, 0.0072501325, -2.32506045e-05, -0.00135824096, 0.00744668348, 0.0153828897, 0.0305581018, -0.00585573353, -0.000789448561, -0.0164657738, 0.00325606973, -0.0130910315, 0.00612645457, -0.00240311283, 0.0120303985, -0.00458000693, 0.00432041148, 0.0234081, 0.0116521306, -0.00487668766, -0.0129946107, 0.000668922032, -0.00696086884, 0.0127572659, 0.0133357933, -0.0112145273, 0.00201001111, 0.00387539039, -0.00463192584, -0.0107843401, -0.0272946153, 0.00702762185, -0.0416836254, 0.00761727476, -0.00387168187, -0.000832559948, 0.0368774, -0.00890041795, 0.00311700068, -0.00441312417, -0.0256628729, 0.00604115892, -0.00499165105, -0.0040014796, -0.00349526852, -0.01475986, 0.0123419128, 0.00174021721, -0.0149378683, 0.00311700068, -0.0263452381, 0.00334321964, 0.0139143206, -0.00158538704, 0.0151455449, 0.000518263958, 0.00156962581, -0.0184980351, -0.00733913668, -0.0137363123, -0.0160207525, 0.0276803, 0.0173261482, 0.00131003035, 0.00159187685, -0.0101390602, -0.01622843, -0.000555812556, 0.0283329971, 0.00497310888, 0.00186074374, 0.00761727476, -0.0387168191, 0.0150120389, -0.00296309753, 0.00294084661, 0.0172519777, 0.0303800944, -0.0205896348, -0.00158724131, 0.00588540174, -0.0035638758, -0.00825513806, -0.0117263012, -0.00704245595, 0.00476543233, 0.0167031176, 0.00765435956, 0.000154830195, -0.0150787914, -0.000629519171, 0.00177359371, -0.0160652548, -0.00280919462, 0.0209159832, 0.0267457571, -0.0117114671, 0.017548658, 0.00593361212, 0.00916743092, -0.00414982, 0.00662339479, -0.0112738628, 0.0049619833, -0.0219543651, -0.00544779748, -0.00679398607, -0.000366446911, -0.00381234591, -0.0175931603, 0.00588540174, 0.0041609453, -0.0383311361, 0.00463563437, 0.00636009034, 0.00384201389, -0.0157685746, 0.00426478358, -0.0150639582, -0.00713887718, 0.0185277034, 0.0464601815, 0.0361950323, -0.00522528728, -0.0116076283, 0.0288373549, -0.00632300554, 0.0203522891, -0.0241349675, 0.00645280303, 0.00485072797, -0.0157240722, -0.0106063318, -0.0187205467, 6.46091576e-05, 0.0144260945, 0.0120229814, -0.0151232937, -0.0103838211, 4.92246436e-05, 0.00939735863, -0.0210346542, 0.000878916297, 0.00534395967, 0.0048915213, 0.00111626077, 0.00522528728, -0.00452067098, -0.0187502149, 0.0310031231, 0.019017227, 0.0124828368, -0.0297570657, 0.00374930119, 0.0172371436, 0.00779528311, -0.0170888025, -0.00092249125, -0.0157537404, 0.0140404096, 0.00131188461, -0.0111181056, 0.00858148653, -0.00182644, -0.0136621417, 0.00745039154, -0.0300834142, -0.0169701315, 0.0129278572, 0.0188243855, 0.000136867107, 0.00755423, 0.00190431869, -0.0259447191, -0.0195215847, 0.0265825819, -0.0225032233, -0.00311514642, 0.00941219274, 0.00306879, -0.0240904652, 0.012631177, 0.0153235532, -0.012631177, 0.000337242411, 0.00524012139, 0.0133802956, -0.00651213946, 0.0112738628, -0.00433524558, -0.0031058751, 0.0115408758, -0.0224735569, -0.0105395783, 0.000557666819, 0.0184387, 0.00447616866, 0.00847023167, -0.0119562289, 0.0293565467, -0.0136250565, 0.0125866747, 0.0121861557, -0.0014796945, 0.00411644345, -0.00422399025, 0.012890772, -0.00133135426, 0.029920239, 0.0262265652, -0.00851473305, -0.00643055234, 0.00464676, -0.00929352, -0.00169756939, 0.00137122069, -0.00429445179, -0.0037437384, 0.0100648897, 0.00638975855, 0.0123789981, -0.0172668118, -0.0289856959, 0.0305581018, -0.0547672398, 0.00264972867, -0.0114963735, 0.020485796, 0.00220656209, 0.00994621776, 0.0177415, -0.00953086466, 0.0144112604, 0.0151677961, -0.0136324735, 0.000656869379, 0.00799554214, 0.00204153336, 0.00164101459, 0.0051622428, 0.0223845523, -0.0209308174, -0.0131503679, -0.00148340303, 0.00904875807, 0.00713146, -0.00304283039, 0.00584460795, -0.00581864826, -0.00444650045, 0.00230112905, 0.00398664549, 0.00867049117, -0.00643796939, 0.00282588275, -0.000415816408, 0.0156647358, -0.0192249026, 0.0101019749, -0.010235481, 0.0150713753, -0.00585573353, -0.0106508341, -0.0126608452, -0.013039113, 0.0137511464, 0.0122454921, -0.00811421499, -0.00849248283, -0.00760985771, -0.00135082391, -0.0130761974, 0.000124814454, 0.010235481, -0.00678656902, -0.0130465301, -0.00959020108, 0.008907835, 0.00400889665, 0.0157240722, -0.0126534281, -0.000107256994, 0.0150787914, 0.00560726365, -0.00176803104, -0.0398145393, -0.00270164781, -0.012230658, 0.00426478358, 0.0027999233, -0.00176803104, -0.0101983957, -0.0193880778, 0.0323678553, -0.0150713753, -0.00918968208, 0.0116595477, -0.00842572935, -0.00166882842, 0.0130761974, -0.00398293696, 0.00982012786, 0.0148340305, 0.0133728785, -0.00402002223, -0.00381976273, 0.0135953892, 0.00204338762, 0.00940477569, -0.0133728785, -0.0172371436, 0.0180826839, 0.0336732492, 0.000844612601, 0.00323938136, 0.00231967145, -0.0254700296, 0.0113702845, 0.00499535957, -0.0143000055, 0.00226960657, 0.00215649721, 0.0108214254, -0.00483218534, 0.00973112416, 0.00226589805, 0.0145521834, 0.00924160052, 0.0358983539, -0.0116669647, 0.00300203683, -0.0144409286, 0.00323938136, 0.0250250101, 0.0214351732, 0.0100648897, 0.0131503679, 0.00406823261, 0.0388948284, -0.000215788779, 0.00819580164, 0.00564805698, -0.0122232409, -0.00470238784, -0.00273687858, -0.00292415824, 0.00285184244, -0.0237344485, -0.00443908339, 0.00814388227, 0.00143333816, -0.00317448261, -0.0155015616, -0.0392805114, -0.0207973104, 0.0132022873, -0.00611903751, 0.00631558849, 0.0331392251, -0.0233784318, -0.00279806904, -0.00146115199, -0.0220582038, 0.0025069511, 0.00223993859, 0.00241238414, 0.020619303, 0.0137956487, -0.0101909786, -0.0157834087, 0.00101056835, 0.000397505646, 0.015293885, -0.00112553209, 0.0126460111, 0.00683107087, 0.0153828897, -0.0251140129, -0.00373817561, 0.0171184707, 0.0156054, -0.00168180815, 0.0016020753, -0.0018987559, 0.00328388344, 0.016495442, 0.00856665242, -0.00729463436, 0.0207676422, -0.00105507043, 0.0178601723, -0.0032913005, 0.0126163429, -0.00177266658, -0.00976820942, 0.00825513806, 0.00819580164, -0.00288892747, -0.00826255511, -0.0234229341, 0.0153087191, -0.00884108245, -3.23407949e-06, 0.0131577849, 0.0200704429, -0.00481735123, -0.0109549314, -0.012890772, 0.0178750064, -0.0297719, -0.00310772937, 0.00447246, 0.00155108329, 0.00328202918, 0.0137585634, 0.0205748, 0.0154422261, 0.00041512106, 0.000502966344, -0.00598923955, 0.00876691192, -0.00588169321, -0.00281290291, 0.0100574726, 0.0143370908, 0.00829964, -0.00988688134, 0.00351566519, -0.00123029738, -0.0114963735, -0.00106805016, -0.00404969044, 0.00145188067, 0.0110513531, 0.00328388344, -0.0156499017, -0.00235119392, 0.000804746174, 0.00205636746, 0.0253513586, -0.01622843, -0.00769144483, -0.0175634921, 0.0175041556, 0.0149082, 0.0191655681, 0.0191655681, 0.0116298795, 0.00777303195, 0.000656405871, 0.00132857286, 0.0194029119, -0.0272204466, -0.00359910657, 0.00571110193, 0.0211533271, -0.0152790509, -0.00042462413, -0.00441312417, -0.0054923, -0.00696828589, 0.00404598191, -0.0102874, 0.011570544, 0.0297125634, 0.000507602, 0.000983681646, -0.00974595826, 0.00235119392, 0.00971629, -0.0248915032, 0.0262414, 0.00468384521, -0.00712404307, 0.0130539471, 0.00756535539, -0.00445762603, 0.00274244137, 0.0125570064, -0.00676060934, -0.0215093438, 0.0130613642, -0.00225662696, -0.00789170433, -0.00183663843, -0.00336732483, 0.0116224624, -0.0112145273, 0.0114963735, -0.0116669647, -0.0104431575, -0.0200407747, -0.0168217905, 0.0184683669, 0.0040014796, -0.000454755733, 0.00592248654, 0.00165214017, 0.00653439, 0.0239272919, -0.026997935, 0.0100352215, -0.0102132298, 0.00945669413, -0.00601149071, -0.0114667052, -0.0110291019, 0.00727980025, 0.00789912138, 0.0012367873, -0.028199492, -0.0157982428, 0.00105785183, -0.0154125579, 0.0173113141, -0.0117930537, 0.0198479332, -0.00206749304, -0.0208418127, -0.024728328, 0.0160355866, -0.00881141424, -0.0109623484, -0.0304690991, 0.0140329925, -0.0246838257, -0.00146115199, -0.012097152, 0.0124828368, -0.0407045782, -0.00737251295, -0.0188688859, -0.0058001061, -0.00253291079, -0.0134025468, -0.0176821649, -0.0125940917, 0.00248099165, -0.0143445078, -0.000247542892, 0.00349897682, -0.011036519, 0.0191952344, 0.00613016309, -0.00471351296, 0.0195660852, -0.0110587692, 0.00878174603, -0.00391618395, 0.00684590498, 0.0315964855, -0.00529574882, -0.000669849163, -0.0437307209, -0.00446875161, 0.00646392861, 0.00643055234, 0.00792137254, -0.0245799888, -0.00122380746, -0.00873724371, -0.00742814085, -0.00671981554, -0.0134099638, -0.0145818517, 0.00311885495, -0.00253105653, -0.0174596533, 0.012104569, -0.00870015845, -0.0117856376, -0.00737622147, 0.0120823178, 0.0211088248, -0.00391247543, -0.00760985771, 0.00137771061, 0.0366400555, -0.00199332274, 0.00333580258, -0.0239717923, -0.00482476829, 0.0218801945, -0.00440199859, 0.00358241843, -0.000515482563, -0.00372148748, -0.0302910898, -0.00239569601, 0.0027072106, 0.00379194901, 0.0201297794, -0.0198924355, -0.0101835616, -0.00857406948, 0.000260986213, 0.00918968208, 0.0635489896, 0.0315964855, 0.0195364188, -0.0283626653, 0.011577961, 0.00945669413, 0.00755052129, 0.0348599702, -0.0194770824, 0.00817355048, 0.0233932659, 0.0100055533, -0.0149601195, -0.0038902245, 0.00793620665, 0.00489523, 0.00750601944, 0.00966437068, 0.00899684, 0.000732893823, 0.00641942676, -0.0306174383, 0.00740959821, -0.0104876598, -0.00330057181, 0.00111069798, -0.0128462706, 0.00730576, -0.0154867275, 0.0237937849, -0.0118894754, 0.025929885, 0.0110142678, 0.00182551285, -0.00575931231, 0.0154125579, 0.00732430257, 0.0104876598, 0.00222695875, -0.0205154642, 0.00512144901, 0.0288076866, 0.00490264688, -0.00742443232, 0.0115186246, -0.0168811269, 0.00735026225, 0.00936027337, -0.00260522659, -0.0236454438, 0.0260040555, -0.00130817608, -0.012238075, -0.00332653127, 0.00210457807, 0.00284442538, 0.0469942093, 0.0041090264, 0.00525495503, 0.0161245912, -0.00143890094, 0.00373817561, -0.00613387162, 0.0127943512, 0.00149545574, -0.0382124633, 0.0179195087, -0.00729092583, -0.00138512754, -0.00710550044, 0.00754681276, -0.00826997217, -0.0020878897, 0.00450212834, 0.000368301175, 0.0132542057, -0.00339143025, 0.0217911899, -0.000249860692, -0.0165399443, -0.0245503206, 0.00809938088, -0.0056146807, -0.0136102233, -0.00139161746, -0.0309141185, -0.0115927951, -0.019284239, -0.00904134195, -0.000435749651, 0.000803355477, 0.0274874587, -0.00718337903, -0.0102058128, 0.0152493836, -0.00304097612, -0.00140181591, 0.0109326802, 0.0110068507, 0.00767661072, 0.015560898, -0.0167327859, 0.00505840452, -0.00192100694, -0.00153532217, 0.0360170268, -0.00714629423, 0.00183107564, -0.00326904934, 0.0072352984, -0.00482476829, 0.000968847598, 0.00611903751, 0.0156202344, -0.00388280745, -0.00317633664, 0.00973112416, 0.012898189, 0.0180678498, -0.00681994529, 0.00499535957, -0.0124680027, -0.0208269786, -0.0112071102, -0.00738734705, -0.0133802956, 0.00833672471, 0.0117559694, -0.00149545574, -0.00139903452, 0.00460967515, -0.0229037423, 0.00546263158, 0.0155312298, 0.0140329925, 0.00353420782, -0.00197663461, -0.000216831802, 0.0134025468, 0.0112293614, -0.00348785147, -0.00905617513, 0.00796587393, 0.0220730379, -0.00370479911, -0.0118078878, 0.00817355048, -0.00601519924, 0.0281846579, -0.000480251736, 0.00603003334, -0.00996105094, 0.00789170433, -0.0122158239, 0.00981271081, 0.0162432641, 0.00395697774, -0.0226515643, 0.0172223095, 0.0111181056, 0.00138327328, 0.0117782205, -0.00847764872, 0.00663452, 0.0126163429, 0.00110420818, -0.000901630905, -0.0113777015, 0.00491748098, -0.0143296737, 0.0316261537, 0.0177711677, -0.0202484522, -0.0105024939, 0.00771369599, 0.00058918912, -0.00847764872, -0.00149545574, 0.0104950769, -0.010769506, -0.0102206469, 0.00513628311, -0.00313739735, 0.0568143353, 0.0103393188, 0.0109475143, 0.0114889564, -0.00446875161, 0.00954569876, -0.015560898, -0.00742814085, -0.00106712303, -0.00655664131, -0.00924160052, 0.00717596198, -0.0100278044, 0.00227516936, -0.00938994158, 0.012890772, -0.00632300554, 0.0339402631, -0.0157834087, -0.0116372965, -0.0122677432, 0.0208566468, 0.00690153241, 0.00197292608, 0.00660856068, 0.00366215128, 0.0188688859, 0.0153383873]
26 Oct, 2021
jQWidgets jqxSlider min Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The min property is used to set or return the minimum value of the slider widget. It accepts Number type value and its default value is 0. Syntax: Set the min property. $('selector').jqxSlider({ min: Number }); Return the min property. var min = $('selector').jqxSlider('min'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider min property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider min Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', max: 50, min: 15, value: 20 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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 min Property
https://www.geeksforgeeks.org/jqwidgets-jqxslider-min-property?ref=asr9
PHP
jQWidgets jqxSlider min Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSlider min Property, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0119215585, 0.0346141644, -0.005516103, 0.0144978575, 0.0468392298, 0.0062537007, 0.0231513977, 0.0313108526, -0.0204551071, 0.00949348509, -0.0195798706, -0.000879647268, 0.00767242955, -0.00966994371, 0.0131426537, 0.0241678, -0.037409272, 0.00921820942, -0.00615488365, 0.0269064419, -0.020285707, 0.00959936, -0.0537846498, 0.0430277213, -0.0322707891, 0.0349529646, 0.0112298401, 0.0253394879, -0.0203139409, 0.0217679609, -0.00260629691, -0.013650855, 0.00289568934, 0.00747479592, -0.00665249769, -0.000674955, -0.00161106908, 0.0163189117, -0.0490414388, -0.00239807554, -0.0106369378, -0.0137637882, -0.00356799737, 0.00827239, 0.0211891755, 0.0233913828, -0.00502907671, -0.00931702647, -0.0148084247, 0.00310567534, -0.0104181292, 0.0151048759, 0.00957818516, 0.0567491576, 0.00336859911, -0.0266382247, -0.00175400078, 0.0428583212, -0.0317625888, -0.00382209825, 0.0470933318, -0.0501425415, -0.0278946105, -0.0263276566, -0.0100087449, -0.0107498718, -0.0155001432, 0.0474321321, -0.047545068, 0.035771735, -0.0148084247, 0.0107922219, 0.00593960425, 0.0145966746, 0.0141378809, -0.0230384637, -0.0200880729, 0.00878059119, -0.0154577931, 0.0161353946, -0.0202151239, -0.0402608477, -0.0282898787, -0.0310285203, -0.00135785062, 0.0253536049, 0.0229396466, -0.0368163697, 0.0467545316, 0.0166435968, -0.0191704873, 0.00878059119, -0.00720304949, 0.0300403498, 0.0143425735, 0.00755243795, -0.0111521976, 0.0245348345, -0.027231127, 0.00890058279, 0.0390750431, 0.033541292, 0.00162695034, -0.030322684, 0.0140390638, 0.0122603597, 0.0157965943, 0.00335095311, 0.0234619658, -0.0212456435, 0.0250148028, -0.0160789285, -0.00801123, 0.00564668234, -0.0478556342, 0.0192269534, -0.0181540847, -0.0270334929, 0.0256077051, -0.0100722695, 0.0183234848, 0.028783964, 0.00106492906, 0.023829, -0.0280357786, -0.00854060706, 0.00762302149, -0.00204162858, 0.0275699273, -0.0180411506, 0.00710423244, 0.0204268731, -0.00409031566, -0.035461165, 0.0181117337, 0.0315367207, 0.023617249, -0.0155989602, -0.0213444605, -0.020398641, -0.0346141644, -0.012740327, 0.000142380217, 0.0158248283, -0.0237866491, 0.0167565309, -0.00329448632, 0.0507636741, -0.0548292883, 0.0171376821, -0.0301815178, 0.0108628049, -0.00359976012, 0.00551257376, 0.0462180972, 0.0221491121, -0.0286851469, 0.0190293193, -0.0219797119, -0.0134108709, 0.0363928676, -0.0104816547, 0.0393291451, 0.0100863865, -0.0180693846, -0.00511024753, 0.0264829416, 0.0155283771, -0.0658403188, 0.0311696865, 0.0124156429, -0.0280075446, -0.0181682017, 0.00819474831, -0.0175329484, 0.0023680774, -0.00574197, -0.0479968, 0.00707952818, -0.0150201749, 0.00110816141, 0.00355388084, -0.0192551874, 0.0119074415, -0.00764419651, -0.0372116379, 0.000177561698, -0.0326942913, -0.0344165303, -0.0113286562, -0.00675131474, 0.0325248912, 0.0238148831, 0.0393573754, 0.0241395682, -0.0094864266, -0.0106228217, 0.0139049552, -0.0312826224, -0.0232643317, 0.0272593591, -0.00259747403, -0.000633046031, 0.0279651955, 0.000960818317, 0.012740327, -0.0130932452, -0.0396114774, 0.0409666821, -0.0244219024, 0.0144555075, -0.00141696434, 0.00740421237, 0.000224654141, -0.00373386871, 0.0273017101, -0.0122815343, -0.00137108506, -0.0351506, -0.0158248283, 0.0109827975, 0.0121191926, -0.00871706568, 0.0176176485, -0.103786021, -0.0313390866, -0.0237443, -0.0337106958, -0.0223185122, 0.00657485565, -0.0313108526, -0.00975464378, -0.0243230853, 0.0250853859, 0.0173635483, 0.0807475597, -0.0265676416, 0.0284451637, -0.0121968342, 0.0498884395, 0.016784763, -0.00271746586, -0.000818769, -0.00548786949, 0.00863942411, -0.0146954907, -0.0365622677, -0.00704423618, 0.00328389881, -0.01259916, -0.0377763063, -0.00644074706, -0.00406208215, -0.00836414844, -0.0130438367, 0.0128320856, 0.0199327897, -0.0163894966, 0.0173353143, 0.000659956, 0.0315367207, 0.0105310632, -0.00880176667, 0.018704636, 0.0614923723, 0.0625652447, 0.0631863773, -0.0301532838, 0.0209068414, 0.00563256582, 0.00483497186, -0.0158671774, 0.0486744, 0.0382845066, -0.0392444432, -0.0214715097, -0.047516834, -0.01679888, 0.015246043, -0.0148366578, 0.0247607026, 0.00868883263, 0.05087661, 0.0685507283, 0.0263135396, 0.00243866094, 0.0242666174, -0.0400632136, -0.0373528041, -0.0038856233, -0.0200174898, 0.00317096501, 0.0128532611, 0.0149637088, 0.0107216379, 0.0229114145, 0.00842767395, -0.00885823276, -0.000770242768, 0.0364211, -0.022036178, 0.00273334724, -0.00674778549, -0.0242101513, 0.0285298638, 0.011843916, 0.0299556497, -0.0215138607, -0.0190857872, -0.00996639486, 0.044128824, -0.0136720296, -0.0247465856, -0.0664049834, -0.0350941308, -0.023631366, 0.0347270966, 0.0166294798, 0.021909127, -0.0112933647, 0.0158812944, -0.00880882423, -0.0138343722, 0.0367881358, 0.0451452248, -0.0279087275, -0.027089959, -0.0193540044, -0.011074556, -0.00325919455, -0.0350941308, -0.00930996798, 0.00678307749, -0.0166435968, -0.0193963535, -0.0409384482, 0.0114698233, -0.0207656752, -0.0350658968, 0.0440158881, -0.0043303, -0.0367316678, -0.000367034372, 0.0119427331, 0.0168271139, -0.050594274, -0.0217820778, 0.00715717, 0.038849175, 0.0217114948, 0.00132697041, 0.0163047947, 0.0166859459, -0.00806063879, 0.0252689049, -0.022064412, -0.000296671409, -0.0308873523, -0.0269205589, -0.00482791336, 0.01259916, 0.0247607026, 0.0178999826, -0.00406914065, 0.0208786093, -0.0274569932, -0.0146249076, -0.0336542279, -0.0362234674, 0.00787006412, -0.00356976199, -0.0246618856, 0.00144078629, 0.0543210842, -0.00172047352, 0.00424912851, -0.011886267, -0.0221491121, -0.0369010679, 0.0179846827, -0.0359411351, 0.0376916043, -0.00294156861, 0.0308026522, -0.000184950914, -0.00762302149, -0.0224032123, -0.00438676635, 0.0238854662, 0.00217044353, -0.0451734588, 0.0242101513, -0.0157683603, -0.0436770879, -0.00187928649, -0.000154622045, 0.00764419651, -0.0065113306, 0.0191422533, -0.0159377605, 0.0112439562, -0.00379739399, 0.00645839283, -0.00215632678, 0.00167547655, -0.00309508783, -0.0325531252, -0.0106651718, 0.0265676416, 0.00196575141, 0.00767242955, -0.0108416304, -0.0361387692, 0.0407125801, 0.0218667779, 0.0328636914, 0.015203693, 0.0360823, 0.025395954, -0.00163930247, 0.032411959, -0.006740727, -0.0324966572, 0.000141056778, -0.0221773461, 0.00647603907, -0.0601936355, 0.0243230853, 0.0497472733, 0.00503260596, -0.0400914438, 0.0137779051, -0.0277816784, -0.0092887925, 0.0328354575, 0.0197492726, 0.0401196778, 0.0122462427, 0.001679888, -0.049126137, -0.0096064182, -0.00878059119, 0.0326378234, 0.0474321321, -0.0217538439, 0.00557962805, -0.0309438203, -0.0205821581, 0.0221067611, 0.0247183517, -0.0167282969, -0.0592901669, 0.000684219121, -0.0148084247, 0.0405714139, -0.000828915334, 0.0393573754, 0.00554433651, 0.0355741, -0.0323272571, -0.0231655147, -0.00167194742, -0.0235325489, -0.00718187401, -0.0165024288, -0.036167, 0.00708305743, 0.0262711905, -0.0351223648, 0.0142578734, -0.0319037549, -0.00130050152, 0.0330048576, 0.0490414388, 0.0343035944, 0.0215138607, -0.0170812141, 0.00656779762, -0.0183093678, -0.00384680252, 0.0299556497, 0.00997345243, 0.0305485521, 0.00752420444, 0.0307461862, 0.000361740589, 0.0199186727, -0.0367881358, 0.0116815744, 0.0336824618, -0.0184928849, 0.006776019, -0.0191704873, 0.014448449, -0.00150519377, 0.0258900393, -0.0225020293, -0.0175188314, -0.0119568501, 0.00554786529, 0.0171517972, 0.0226855464, -0.0248595197, 0.0261159055, 0.0242242683, 0.00978993531, -0.0135167465, -0.0231090486, 0.0170953311, -0.00134108705, 0.014420215, -0.0142649319, -0.0332589597, 0.000477321126, -0.00200986606, -0.0359693654, -0.0116251074, -0.0255512372, 0.0313673206, -0.0182811338, 0.0298991837, 0.0266805738, 0.0168412309, 0.00433382858, 0.0199610218, 0.0343035944, -0.00784888864, -0.0562127233, -0.00567491585, 0.0159942284, -0.0198198557, -0.00619723415, 0.0120627256, 0.0014893125, -0.00935937651, 0.0127473855, -0.0322707891, -0.0121121341, 0.00337212812, 0.0352917649, -0.00883705821, 0.0262711905, -0.0291086473, 0.0072912788, 0.0175753, 0.0190293193, -0.0100722695, -0.000352255942, 0.0142437564, 0.0279228445, 0.0333718918, 0.00959230214, 0.000624223088, -0.0155001432, -0.0216409098, 0.0132061783, 0.00163577334, -0.0254665371, -0.0284875128, -0.0221491121, 0.000638339785, -0.0160083454, 0.00398444, 0.0217961948, 0.00605606707, -0.0214997437, -0.0019481054, 0.0231513977, -0.0338800959, -0.0077712466, -0.00400208635, 0.0143990405, -0.00621488, 0.0233349148, 0.0111027891, 0.010248729, 0.004220895, -0.00397385284, 0.00885823276, 0.0129097281, -0.00558668654, -0.045822829, 0.0398655795, -0.00358917261, 0.00454910845, 0.00133491098, -0.0194387045, -0.0213585757, -0.0407125801, -0.00447499566, -0.0164600797, 0.0221632291, -0.0198904388, 0.0267935079, -0.00997345243, 0.0077712466, -0.0181823168, 0.00286216219, 0.0213585757, -0.0291933492, 0.0157824773, 0.01766, 0.00998051092, 0.0179705676, -0.00613370864, -0.0158530604, -0.00604547933, 0.023603132, -0.00225337921, -0.0167141799, 0.00157224818, -0.0328919254, 0.0496061035, -0.020370407, -0.0103898961, -0.0107216379, -0.021909127, 0.00393150281, -0.00443617487, -0.00228690635, -0.00806769729, 0.00370916445, 0.000959936, 0.00461263349, 0.0156977773, 0.00278452039, -0.0138626052, -0.0029680375, 0.0141590564, -0.044128824, 0.00873118266, 0.0120486086, 0.00206809747, -0.00271746586, 0.0138343722, 0.0194528215, -0.00822298136, 0.0235043149, -0.0163612626, -0.00429147854, 0.0145684406, 0.0118298, -0.0328354575, 0.0670825839, -0.00510318903, 0.0142225819, -0.00879470818, 0.0346988626, 0.0297862496, 0.0129450196, -0.0246336516, 0.0277393274, 0.0386515409, 0.00276687439, 0.00199398468, 0.027118193, 0.027089959, -0.0171659142, 0.0180835, 0.0217114948, -0.00393150281, -0.0166153628, 0.0427736193, 0.00873824116, 0.0328636914, -0.00421030773, 0.0350094326, 0.0417854488, 0.00332801347, 0.0042279535, -0.00293627498, 0.0102699036, 0.0288404301, 0.00362446439, 0.00175135385, -0.00888646673, -0.0487308688, 0.00867471565, 0.0346141644, 0.000523641589, -0.0120274341, 0.0087664742, 0.033851862, 0.0142649319, 0.00918291695, -0.0146954907, 0.00396679435, 0.0129520781, -0.000535552565, 0.00329448632, 0.00365975616, -0.00205927459, 0.0321860909, 0.0271887761, 0.000532464532, 0.00961347669, 0.0246477686, 0.0103334291, -0.0370422378, -0.0607583039, 0.0105098877, -0.0273017101, -0.0137355551, 0.0346424, 0.00501143048, 0.0175188314, 0.00849119853, 0.0428583212, -0.000328875147, 0.0187328681, 0.0333436616, 0.025410071, 0.000935231801, 0.0697365254, 0.0027580515, 0.0195798706, -0.0078065386, -6.4517757e-05, 0.0200598389, -0.0117521575, 0.0248030517, 0.0167000629, 0.00636310549, -0.0382280387, -0.00881588273, -0.0173917823, 0.0356588, -0.0340212621, -0.00149813539, 0.00248101121, -0.00321860891, 0.0386797749, 0.0282616448, -0.00166930049, 0.00649721408, 0.0179705676, -0.0131355952, 0.0147660747, 0.0192269534, -0.00276158075, -0.00627840497, -0.030350918, 0.00949348509, 0.0213162266, -0.00869589113, -0.0348400325, 0.00278452039, -0.0171376821, 0.0164318457, 0.0149354748, 0.02027159, -0.0265535247, 0.0114909988, -0.0282475296, -0.00253218412, -0.0109686805, 0.00524435611, -0.00734068733, 0.0299838837, -0.00436912058, -0.000423060032, 0.0149213588, -0.0503684059, 0.00207339111, 0.00681484, 0.0210056584, -0.0177305825, -0.0232502148, 0.0125497514, -0.0373810381, 0.0168129969, -0.0091617424, 0.0306050181, 0.00314273173, -0.00904880837, 0.0138626052, -0.0322707891, 0.000594225072, 0.00495849317, 0.00119815546, -0.0305203181, 0.0129803112, 0.0214856267, 0.00397738209, -0.0125144599, -0.0214573927, -0.00372681045, 0.020243356, 0.0229678806, 0.00756655447, 0.0117380414, -0.0122462427, -0.0140531808, 0.015217809, 0.00848414, -0.013608505, -0.0149637088, 0.0122885928, 0.0194104705, -0.0413901806, 0.0233349148, -0.00935231801, 0.023603132, 0.0238007661, 0.0142931649, -0.0058407872, -0.0213021096, 0.0174623653, -0.0317625888, -0.00555845303, -0.0115192318, -0.00493731815, -0.016911814, -0.00456322543, -0.0250289198, 0.000514377491, 0.0182529017, 0.00703717815, -0.00128373795, 0.0116321659, -0.00543493172, 0.0195375215, 0.0129379611, -0.00278452039, -0.0105451792, 0.0386233069, -0.018464651, 0.00298038963, 0.0105381208, 0.00250571524, 6.0823153e-05, -0.00153872091, -0.0520906448, 0.00830062293, -0.0114415903, -0.00261688442, 0.049210839, 0.0125215184, -0.00912645087, -0.00845590699, -0.00314802537, -0.00182634883, -0.0194528215, 0.0143143404, 0.0147237247, 0.0138273137, 0.00141167059, 0.00840649847, 0.0215985607, 0.0134108709, 0.0336259939, 0.0151048759, 0.0354047, 0.0196786877, -0.0246336516, 0.0227702465, -0.0225867294, 0.00581961218, 0.0265252907, -0.00981816929, -0.00332801347, 0.0309155863, -0.0208786093, -0.00331213209, 0.0239278171, -0.0386797749, -0.0150060588, -0.0373245701, -0.0189163871, -0.0259465054, 0.0119639086, 0.0345294625, 0.0186622851, 0.0193257704, -0.00125815149, -0.012697977, -0.0486179367, 0.0584996305, 0.00929585099, -0.0239419341, 0.0465568975, -0.0119356746, -0.0266805738, 0.0029680375, -0.0264688246, 0.0444958583, -0.032157857, -0.0229537636, 0.0191281363, 0.00282334117, 0.0103475451, -0.025410071, 0.00508201402, -0.0335977599, -0.00721363677, 0.0241819173, -0.0171941482, 0.000629516842, 0.00275099301, 0.0091617424, 0.00683248555, -0.00866765715, 0.0162624456, -0.015217809, 0.0281487126, -0.00136049755, 0.0116956914, 0.0329201594, -0.00940878503, 0.0170953311, 0.0312826224, 0.033851862, 0.0103687206, -0.0256641712, 0.00602077506, -0.02721701, 0.0114062987, 0.0311132204, -0.00401267363, 0.000679807621, -0.0203139409, 0.013594388, 0.0112016061, 0.0238995831, 0.000469380466, -0.0221067611, -0.0300121177, -0.00739009585, -0.0022127938, 0.0102063781, -0.0263135396, 0.00244571944, 0.0398373455, 0.006356047, -0.0137143796, -0.0201727729, 0.020144539, 0.0143849235, -0.0422371849, 0.0115686404, 0.0451452248, 0.00840649847, 0.0148507748, 0.00188458024, 0.00038843, -0.0383692086, -0.0463027954, -0.010079328, -0.0238007661, -0.00674425624, 0.0019481054, 0.00233102101, 0.015118992, 0.000460116396, 0.0243372, -0.0387644768, -0.015217809, 0.0236737169, 0.00134285167, 0.00159607013, 0.00370916445, -0.0328919254, -0.0143002234, -0.000452175736, 0.0260453224, 0.0123168258, 0.0176458824, 0.0115474658, 0.013594388, -0.0313108526, -0.030576786, 0.0115545243, 0.0554786548, 0.000828033, 0.0226431973, -0.00863236561, 0.0178858675, -0.0324401893, 0.0266664587, -0.00242101518, 0.0143990405, -0.00976170227, 0.0402608477, 0.00253924262, 0.0251418538, -0.0113568902, 0.000944054744, -0.0102769621, -0.00787006412, 0.0125426929, 0.011032206, -0.0263417736, 0.0134108709, -0.020384524, 0.0106651718, 0.0062607592, 0.0335977599, -0.00477497606, -0.00842061546, -0.014349632, -0.0454557948, -0.00333683635, 0.00448205415, 0.0213162266, 0.0250995029, -0.00317625888, -0.023758417, 0.0127826771, -0.007615963, -0.00120168459, -0.0320166908, -0.00985346083, 0.015175459, 0.0106510548, 0.0159659944, -0.00494437618, 0.0187752191, -0.00182634883, 0.00284098717, 0.0021580914, 0.0305485521, -0.015274276, 0.00736186234, -0.0290804151, 0.0018704636, 0.00816651434, -0.00202398282, -0.00919703394, 8.39282293e-05, 0.00266805757, -0.00538199442, 0.0012413878, -0.00332977809, 0.00822298136, 0.0131214783, -0.0111239646, -0.0187893361, -0.0306897182, -0.00375151471, -0.0240548681, 0.0271887761, 0.00628546346, 0.00467262976, 0.00744656241, -0.00672308123, 0.0121403672, 0.0148225417, 0.00355564547, -0.00468321703, -0.0088511752, -0.00540316943, 0.0127050355, 0.0225726124, -0.0190010872, 0.00799005572, -0.00969817676, 0.0111663146, -0.0196928047, 0.0180976167, 0.00799711421, 0.00371269369, -0.0309438203, 0.00520553533, -0.00292568724, -0.0190716702, 0.013523804, 0.0076089045, 0.0103546036, -0.000558492204, 0.0113004232, -0.0254947711, 0.0238713492, 0.0108839804, -0.00300332927, 0.015231926, 0.0132697038, 0.00384327327, 0.0167424139, 0.00619017566, -0.00986051932, 0.0282192957, -0.00859707408, 0.0137990806, -0.0129450196, 0.00999462791, -0.0180835, 0.00791947171, -0.0171094481, -0.00609488785, -0.0135732125, 0.000972288137, -0.0173917823, 0.000160136391, 0.00737597886, -0.0109475059, -0.0229114145, -0.00227984809, 0.0749879405, 0.00228514173, -0.000827591924, 0.000100085243, -0.0317343548, -0.0466415957, -0.0256359391, 0.005516103, 0.0353764668, -0.00299450639, 0.000602606917, 0.0145402076, 0.0116674574, -0.00153166265, -0.0311696865, -0.0246618856, 0.006776019, -0.00978993531, 0.0319319889, -0.0380304046, -0.0157401282, 0.0229961146, 0.0107357549, -0.0104675377, 0.0161353946, 0.0157683603, -0.0588384308, -0.000695247785, -0.0404020138, 0.0143072819, 0.0128179695, 0.0246054195, 0.0435076877, -0.00693483185, -0.0109051559, 0.0192551874, -0.0117309829, 0.00851943251, -0.020144539, -0.0174623653, -0.0138626052, 0.0053255274, 0.0104322461, 0.0112933647, 0.00964171067, -0.0261017904, -0.0239419341, 0.0150201749, 0.00179811544, 0.0207515582, -0.0087664742, -0.00027726093, -0.0344165303, 0.00550904451, -0.00630663848, -0.00883, -0.00468674628, -0.0271887761, 0.00551963225, -0.0259465054, -0.0153025091, -0.000466733589, -0.0142437564, -0.00493378891, 0.00275452225, 0.0286286809, -0.018690519, 0.0265676416, -0.00591842923, 0.0146954907, 0.0347553305, 0.0113357147, -0.006776019, -0.00981111079, -0.0159236453, -0.0212456435, -0.00569962, -0.00713952398, 0.0111945476, -0.0284875128, -0.0346706286, -0.00154930854, -8.1281345e-05, 0.0141308224, -0.0157260112, -0.00660308916, -0.00837826543, -0.00163930247, -0.0210056584, -0.0065113306, -0.0196504556, -0.0146107906, -0.0264688246, 0.0144696236, -0.010022861, -0.0111380816, 0.0259323884, 0.00197104504, -0.0213162266, 0.00333507173, 0.0216267928, 0.0173776653, 0.00355564547, 0.00640192628, 0.0129520781, -0.0279228445, 0.0284451637, 0.0127756186, -0.0230102316, 0.023701949, 0.00307744183, -0.000575696933, -0.00642663054, 0.0182811338, 0.0135873295, 0.0148931248, -0.00988875236, 0.000533346785, 0.0282898787, 0.00599254156, -0.0293627493, -0.0072559868, 0.000819651235, -0.011815683, -0.0199186727, -0.0247607026, -0.012740327, 0.0089994, 0.00585490372, -0.00394209, -0.0317908227, 0.018450534, -0.00374798547, 0.0074183289, -0.0243230853, 0.014363748, -0.0204974581, 0.0230808146, 0.00974052679, 0.0267935079, -0.00677954825, 0.00544199, 0.00133402878, -0.00273158262, 0.0144272735, 0.0422936529, 0.00178223418, 0.00214573927, 0.0276122764, 0.00612312136, -0.0220079441, -0.0138767222, 0.0141802309, 0.0107004633, 0.0155707272, -0.0165447798, -0.0174623653, -0.0126909185, -0.0302379839, -0.00936643407, 0.00945113506, 0.0198339727, 0.0117874499, 0.00340918452, 0.00991698634, -0.0132626453, 0.00703717815, -0.0330613256, 0.00221632281, 0.0066136769, 0.00270864298, 0.00920409244, 0.0242383853, -0.00408325717, 0.0329201594, 0.0225302633, -0.0117945075, 0.0274711102, 0.0149919419, 0.0150766419, -0.00308802957, 0.0076089045, -0.000887146743, 0.00210691849, -0.00281628291, -0.0172082651, -0.0216267928, -0.013650855, 0.0166859459, -0.00129609008, -0.0154860262, 0.0126909185, 0.0318472907, -0.0032556653, 0.0248030517, 0.010164028, -0.000307700073, -0.0263135396, -0.00536434818, 0.0363646336, -0.00518788956, 0.0194528215, 0.0266946908, 0.0213021096, -0.00681131054, 0.0274146441, -0.0231372807, 0.0207092073, 0.010192262, -0.0190152023, 0.00538905244, -0.0336824618, 0.00475733, -0.0065183891, -0.00681836903, -0.000703188416, 0.0315649547, -0.0287133809, -0.0129803112, 0.0149919419, 0.0066207354, 0.0096840607, -0.0234196149, -0.00178752793, -0.00221455819, -0.0104393046, -0.0300685838, 0.00990992785, -0.00753126293, 0.0209350754, -0.0285580959, 0.0211891755, 0.0183376018, -0.00403737789, 0.0258476883, 0.0367881358, -0.014349632, -0.030322684, 0.00291509973, 0.00562903658, -0.00453499192, 0.0138202552, -0.00847002398, 0.0400632136, 0.0200739559, -8.98285725e-05, 0.00696659461, -0.0342188962, -0.0255935881, 0.00859001558, 0.0107145803, 0.00873824116, 0.0263417736, -0.0346424, -0.000153078028, -0.00114698242, -0.0222620461, -0.00758067099, -0.00623958418, -0.0468674637, -0.00440441212, -0.00361387688, -0.011032206, -0.00556551153, -0.0369575359, -0.000633928343, -0.00728422031, -0.000930820301, -0.0136932051, -0.00443970412, -0.0041608992, 0.00160224619, 0.00018307603, -0.00699482765, 0.0218244269, -0.0181682017, 0.0258476883, 0.00187752186, -0.00520906458, -0.0113992402, -0.000517465523, 0.0104040122, -0.00100846216, 0.0127473855, -0.0232925657, 0.0227843635, 0.00197280967, 0.0358564332, -0.0033227196, 0.00716069899, 0.0255230051, 0.00535376091, -0.00974052679, -0.0087664742, 0.00463733776, 0.00932408404, 0.0107781049, -0.0297015496, 0.00208750786, -0.0341624282, 0.0119215585, -0.00689954031, 0.0246760026, -0.0181117337, 0.0078135971, -0.00223043957, -0.00528670661, -0.00585137447, 0.0282051787, -0.0155989602, -0.00112757192, -0.018549351, -0.022050295, 0.0105804708, -0.00620429218, -0.00810299, -0.0209633093, -0.013566155, 0.0033880095, -0.0198622048, 0.00652544759, -0.00961347669, -0.0346988626, -0.0177588165, 0.00975464378, -0.00595019152, 0.00176017685, -0.0373810381, -0.015189576, -0.00514906878, 0.00803240575, -0.00805358123, -0.0252265539, 0.0317625888, -0.0222902782, 0.0249583367, 0.00228690635, -0.0343600623, 0.0022127938, -0.00191457826, -0.00669131847, 0.00298038963, -0.0129944282, 0.0256924052, 0.00469027553, -0.0162342116, -0.0181399677, -0.00234690239, -0.027061725, 0.00172929652, 0.00711481972, -0.00894293375, 0.0289674811, 0.0088511752, 0.00471145054, 0.0345012285, -0.00604547933, -0.00562550733, -0.00177252886, -0.0114133572, -0.0326660573, 0.00478909258, 0.0156130772, -7.1631257e-05, 0.00921115093, -0.0368728377, -0.0249724537, -0.0153730931, -0.00291509973, -0.0165871289, -0.00743244588, -0.00995227788, 0.018704636, 0.00328389881, 0.0116392244, -0.0131355952, -3.45473309e-05, -0.0201868899, 0.00081215176, -0.00513848104, -0.027047608, 0.0107428133, -0.00932408404, -0.00943701807, 0.025424188, -0.00504319323, 0.00032402252, -0.0146249076, 0.0108628049, 0.0108204549, 0.00811004732, 0.0209491923, -0.00574197, 0.00253747799, 0.00210515386, 0.010022861, -0.0157401282, 0.0199469049, -0.0255794711, -0.0106157633, 0.0225867294, -0.0157683603, -0.0168129969, 0.00613018, 0.0398091115, 0.0106581133, -0.0222196952, 0.000737156719, 0.0154295601, -0.0249018688, -0.00541022746, 0.0213303436, -0.0298709497, -0.00290098321, 0.0229114145, -0.00815239735, -0.00643721782, 0.0389621072, 0.00485967612, 0.015189576, -0.0359129, -0.000992580899, -0.011843916, -0.0090911584, 0.0120697841, -0.0204551071, -0.00248983409, -0.00172929652, -0.0138414307, 0.00427030353, 0.00870295, 0.00947936811, 0.0181823168, -0.00309861708, 0.0178717505, -0.00740421237, -0.018464651, 0.0159518775, 0.00353094121, 0.0302662179, -0.0330895595, 0.0102699036, -0.0021580914, 0.0250148028, 0.00749597093, -0.00512083527, 0.025395954, -0.00512436451, 0.00500790169, 0.0105663547, 0.0153589761, 0.00918997545, -0.00335977599, 0.00643016, -0.00787006412, -0.0107851634, -0.0250571538, 0.00104728318, 0.00701247388, -0.0157401282, 0.0146390246, 0.0100863865, -0.0147660747, 0.00498319743, 0.023758417, 0.0104110707, -0.00432677055, -0.00595725, -0.0193540044, 0.00921820942, 0.0112721901, 0.000710687949, 0.00204868708, 0.00941584259, -0.00411149068, -0.00258688629, -0.015118992, -0.00099611, -0.018563468, -0.00805358123, -0.004415, 0.0199610218, 0.0142508149, 0.0114627657, 0.0359693654, 0.0228831805, -0.00378327724, 0.00998051092, -0.00930290949, 0.00211574137, 0.00465498399, -0.000545698917, -0.000193663567, 0.017010631, 0.0178576335, 0.0206809752, 0.0018616406, 0.0295603834, -0.016925931, -0.0117945075, 0.0021280935, -0.00524082733, -0.0103546036, -0.0350094326, 0.0108769219, 0.0149778249, -0.000772007392, -0.00549139874, 0.00892881677, 0.0065113306, 0.005060839, -0.00746773742, -0.018577585, 0.0310002863, 0.0252406709, -0.00208397885, -0.0263700075, -0.0114557073, -0.012768561, 0.0267511588, 0.013495571, 0.0166859459, 0.0174482483, -0.0243089683, 0.00262923655, 0.0148648918, -0.00430912431, 0.00106669357, 0.00811004732, 0.00105345924, -0.00173723709, 0.0107216379, -0.0113498317, 0.00218103104, -0.00487026339, -0.0200739559, 0.00818769, -0.023829, 0.0116815744, 0.0123803513, -0.0265817568, -0.00789123867, -0.0140249478, 0.00353976409, 0.000217485504, 0.000847884687, 0.00556904078, -0.0335977599, 0.0027880494, -0.0279651955, -0.00382915651, -0.00254983013, -0.0117027489, 0.0115827573, -0.0106722303, -0.00322037353, 0.00604195, 0.0107145803, -0.0221632291, 0.0216691438, 0.0114486488, 0.0262429565, 0.000350491347, 0.0125144599, 0.00574902864, 0.0141096478, -0.00191457826, 0.00204515783, -0.000268438, -0.032101389, -0.00991698634, -0.0246195346, 0.0132979369, 0.00828650687, -0.00450675841, 0.0378327742, 0.00144255091, 0.00010692302, -0.00938055106, -0.000282775261, 0.0128109111, -0.0149637088, 0.0133544039, 0.0162483286, -0.0013075599, 0.0197069217, 0.0116109904, 0.0036456394, -0.033795394, -0.0118298, 2.59173903e-05, 0.020243356, -0.0177164655, 0.000319611048, 0.00190575537, 0.00606665434, -0.0123732928, 0.00535729, -0.00699482765, 0.00483144261, -0.0224737953, 0.0114980573, 0.00261688442, -0.00671602273, -0.00926761795, -0.0120697841, 0.000281010667, 0.0175753, -0.0263700075, -0.00291509973, 0.00213515176, -0.0265676416, 0.00256218226, -0.0115545243, 0.0136720296, -0.0267511588, 0.0120344916, 0.00388915255, 0.0019463409, 0.0107851634, -0.00297862501, 0.0176035333, 0.000659956, -0.0127332686, 0.0198763218, 0.014420215, 0.028798081, 0.00903469231, -0.016770646, -0.00179811544, 0.00680425251, 0.0189587362, 0.0116180489, -0.0048455596, 0.0111733731, 0.0187752191, 0.00272805337, -0.0173917823, -0.0179564506, -0.00289392471, 0.0201021899, 0.0227137804, -0.0288404301, -0.000549228105, 0.00114698242, 0.00267864508, 0.0113780648, 0.0079335887, -0.0100440364, -0.00471145054, -0.0115121743, 0.0205962751, 0.00475027179, -0.00881588273, -0.0033403656, -0.00905586686, 0.0195375215, 0.0123662343, -0.00340742, -0.00237160665, -0.011858033, 0.0146249076, -0.00435853284, 0.020229239, 0.0144696236, -0.0159236453, 0.0135590965, 0.0106651718, -0.00296097901, -0.00903469231, 0.00700894464, 0.00830062293, -0.0051561268, 0.0147943078, 0.0334848277, 0.00185458222, 0.0109969145, 0.00269452622, -0.0103334291, 0.00238748803, -0.00164283172, 0.0116674574, -0.0103757791, -0.0195375215, -0.00152813341, -0.0211185925, 0.00191457826, -0.0224596802, -0.00359976012, -0.018591702, 0.0154013261, 0.00502907671, -0.00629958, -0.0103404876, 0.0230243485, -0.00379739399, -0.00954289362, 0.0172929652, 0.0172082651, 0.011815683, 0.0120839, 0.00648662634, -0.0216267928, -0.0195234045, 0.0146107906, -0.00440088334, 0.00801123, 0.00670543546, -0.0174482483, -0.0146672577, -0.018450534, -0.00971935224, 0.0104040122, -0.00236278377, -0.0197775047, 0.0191563703, 0.00391385658, 0.025410071, 0.00811710581, 0.0188175701, -0.00801828876, 0.010022861, -0.018450534, -0.00101375591, -0.0132908784, -0.00519494805, -0.000690395187, -0.0123803513, -0.00246336521, -0.0191422533, -0.00376916048, 0.0137849636, -0.00439382484, -0.0108557474, -9.60873422e-06, -0.0035327056, -0.00405149488, 0.0114698233, 0.00698776962, -0.00851237401, 0.0399785116, 0.0268076248, -0.00503260596, -0.0114204157, 0.0130720697, -0.0078065386, 0.0327789932, 0.0160789285, 0.00475380057, 0.0114839403, -0.00330154458, 0.0101146195, 0.0140178893, -0.0160506945, 0.015175459, -0.0030827357, -0.00663132267, 0.0184081849, 0.00524435611, 0.0108698634, 0.0123874098, -0.00736892037, 0.00851943251, -0.020257473, -0.00368093117, -0.0115051158, 0.00317096501, -0.0127473855, -0.0230808146, 0.0071889325, -0.00334918848, 0.00401620287, -0.0144696236, 0.00735480385, 0.00502554746, 0.02035629, -0.000238439985, -0.00101640285, 0.00640545553, -0.00808887277, -0.00846296549, -0.0132414708, -0.0159801114, 0.0184364188, -0.00939466804, -0.00619017566, 0.0159236453, -0.0147801917, 0.0305485521, -0.00839944, -0.014321398, 0.00770066306, 0.0166012459, -0.005900783, 0.0383127406, -0.00044379395, 0.0158671774, -0.00424559927, -0.00271570124, 0.0172506142, 0.00975464378, -0.0342753641, -0.0107145803, -0.00682189828, 0.00707599893, -0.000329536851, 0.00185634685, 0.0117168659, -0.00154754391, -0.000674513867, 0.0025304195, -0.0157401282, -0.000753479195, 0.00903469231, 0.016770646, -0.0235466659, 0.00262923655, -0.0120274341, 0.00282334117, 0.00436206209, 0.0298991837, -0.0142296394, -0.000877000391, -0.0165871289, 0.000795829284, 0.00591137074, 0.0160083454, -0.0277957935, -0.0120344916, -0.00365975616, -0.00489143888, -0.0108910389, -0.0280640125, -0.0100652119, 0.00162606814, 0.0109969145, -0.000326448819, 0.0131214783, 0.00885823276, -0.00894999132, 0.0229396466, 0.0393009111, -0.00846296549, 0.00751714595, -0.00387503579, -0.00616194215, -0.00578432, -0.0262853075, -0.0197069217, -0.0102204951, 0.0162342116, 0.00330860307, -0.00665602693, -0.000959936, 0.00966288522, 0.0217397269, 0.00676896051, 0.00123521173, -0.0116321659, -0.0035027077, 0.00490202615, 0.0117309829, 0.00752420444, 0.0127897356, -0.00441147061, 0.0183376018, -0.0200739559, -0.00861824863, 0.00377621897, -0.0156413112, 0.0138837807, 0.00709011545, 0.0106228217, 8.30597219e-06, 0.0356870331, 0.00179017475, -0.0126062185, -0.00834297296, -0.0107851634, 0.00508554326, 0.0146107906, 0.00511377677, -0.0170953311, 0.000301524, -0.0060631251, -0.0115686404, -0.0206386242, 0.01766, 0.0279651955, -0.00183340721, 0.0125921015, 0.00927467551, -0.000564668269, -0.00360505376, 0.00849119853, 0.0240972172, -0.00835003145, 0.0108839804, -0.0156130772, 0.0282757618, 0.00296097901, -0.0245066024, -0.00829356443, -0.0213303436, 0.00260629691, -0.00779242162, 0.0158248283, -0.00301391678, 0.0151048759, 0.0100510949, -0.0165165458, 0.0270193759, 0.0209774245, -0.000902586908, -0.0115615819, -0.0146107906, 0.0192975365, -0.0201021899, -0.004415, -0.00749597093, 0.00187399273, 0.0214291606, -0.0267935079, -0.00941584259, -0.0108839804, 0.0188740361, -0.00804652274, 0.00477850484, 0.037126936, 0.0114486488, 0.0179141, 0.00936643407, 0.0105522377, -0.0182105508, 0.00659603113, -0.0214009266, 0.00311626284, -0.00493025966, 0.00491261389, -0.011003972, -0.028727496, -0.00180870295, -0.0190716702, -0.0222479291, 0.0089994, -0.00355388084, 0.00542787369, -0.00162606814, -0.00228161272, 0.0177588165, 0.0139967138, -0.0133755794, 0.0017954685, 0.00354329334, 0.000167966748, -0.0311132204, 0.0164600797, 0.00959230214, 0.0026151198, 0.00811710581, -0.00851943251, 0.0250006858, -0.0200457219, -0.0020151597, 0.017038865, -0.0229678806, 0.00478909258, -0.00316743599, -0.0138061382, 0.00644780556, 0.000121977166, 0.0122674173, 0.00298921252, 0.00206456822, 0.0262994226, -0.0185070019, 0.00237866491, 0.00992404483, 0.0235184319, -0.0246195346, -0.000309685245, 0.00963465218, -0.00921115093, -0.00285157468, 0.0256077051, 0.00159165857, -0.0130932452, -0.0131708868, 0.0385668427, -0.015161342, -0.00459498772, 0.013481454, -0.00308626494, -0.00341094914, -0.00150342926, -0.0155707272, 0.0224455632, -0.0153589761, 0.0275840443, -0.011858033, 0.0153730931, 0.00339153875, 0.00394209, 0.00275099301, 0.011858033, 0.0115968743, -0.0276405104, -0.00479968, -0.0125003429, -0.0194528215, -0.00615488365, -0.00146284362, 0.0165730137, -0.0115474658, -0.00988875236, 0.0149072418, -0.0128320856, 0.0100087449, 0.0279651955, 0.00565727, -0.00127667957, -0.0293627493, 0.0118227415, 0.0362799354, 0.00307391281, -0.00496202242, 0.015288393, -0.0122533012, 0.00759478798, 0.0018139967, 0.000736715621, -0.0154577931, -0.0117239244, 0.0159801114, -0.00028630445, -0.011046323, 0.0154154431, 0.00715717, 0.0181399677, 0.00711481972, -0.0173776653, -0.00700894464, -0.0156271942, 0.0148366578, -0.016784763, 0.00740421237, 0.00888646673, -0.00429500779, -0.00125109311, 0.00139755395, 0.0100158034, 0.00854766555, 0.00502554746, -0.0155848432, 0.0190999042, 0.0164741967, -0.013509688, -0.00706541119, 0.0181540847, -0.00194987, -0.00433382858, 0.00967700221, -0.0335977599, -0.00878765, 0.00892881677, -0.00971935224, 0.00704776542, -0.0190152023, -0.0103757791, 0.00389621081, -0.00647956831, 0.021951478, -0.037409272, 0.0181540847, 0.00883, 0.018577585, 0.0123944683, -0.000859795604, 0.0105240047, 0.00491967192, 0.00366681442, -0.00111963123, 0.00460204622, -0.0131991198, -0.00449617067, -0.00450675841, -0.00257100514, -0.00632428424, 0.00967700221, 0.00286745583, -0.0134108709, 0.000588931318, 0.00771478, -0.00501495972, 0.00662426418, 0.00499731395, 0.0035027077, 0.0101710865, 0.00204339321, 0.00105698837, -0.0243936684, -0.0029027476, 0.00666308543, 0.00898528378, 0.0103404876, 0.000103448991, -0.0299838837, 0.00365622691, 0.018718753, 0.00739715388, 0.015231926, 0.0141237648, -0.00226573134, 0.0153589761, 0.00586902071, 0.00856178254, 0.00927467551, 0.00734068733, -0.0199892558, 0.0260453224, 0.0250006858, -0.0115192318, -0.00956406817, -0.0155283771, 0.0283181127, 0.0129732527, -0.0209774245, 0.000267335126, 0.032101389, 0.0107428133, 0.00258159265, -0.00221808744, -0.0104745962, 0.0216409098, 0.00831474, 0.0089147, 0.00383621478, 0.00371975196, 0.00424912851, -0.0089147, -0.00259218016, -0.0019463409, 0.00385739, 0.00619723415, -0.00314273173, 0.00668778969, -0.00603136281, 0.0161495116, -0.0225726124, -0.018690519, -0.00159077637, -0.00883705821, 0.0044255876, -0.0044997, -0.00174076634, -0.014448449, 0.0159518775, 0.0153025091, 0.00594666228, 0.00873118266, 0.0103404876, -0.00962759368, -0.0203421731, 0.00198339717, 0.022050295, 0.00235219626, 0.0277252104, -0.00751008745, -0.00231161062, -2.18092082e-05, -0.00933820102, 0.00416442845, 0.00943701807, 0.0288686641, -0.00533964392, -0.0114345318, -0.0146954907, 0.013594388, -0.0192975365, 0.0099311024, 0.0146954907, 0.0135026295, 0.0120486086, 0.00371622294, -0.00135696842, 0.00811004732, 0.00831474, -0.011759216, 0.00782771315, -0.00712540746, 0.000723481178, 0.0157965943, -0.0128320856, 0.0146531407, 0.0193822384, 0.00247748196, 0.00468321703, -0.0226855464, 0.0200174898, -0.0270193759, -0.0156413112, 0.00525141461, -0.0221349951, 0.00738303736, -0.016784763, -0.0101287365, -0.0145825576, -0.00527964812, 0.00927467551, 0.00665955618, -0.00231690449, -0.00164812547, -0.0135167465, 0.0230808146, 0.0131991198, -0.00503613474, -0.00279334327, -0.0160930455, 0.0268499758, 0.00972641073, -0.00508907251, 0.0126062185, 0.00739715388, 0.00592195801, -0.0199045558, -0.00763007952, -0.00601724582, -0.018464651, 0.0134743964, 0.0116321659, 0.0103898961, 0.00259394478, -0.00217044353, -0.0155566102, -0.014363748, 0.0153448591, 0.0112580732, -0.00105698837, 0.0111169061, -0.0190434363, 0.0158671774, -0.00757361297, -0.00393150281, 0.010079328, 0.00551257376, -0.016770646, -0.000527611875, 0.00739009585, -0.0117451, 0.00736892037, -0.0146954907, -0.00738303736, -0.00295745, 0.0141378809, 0.00996639486, -0.0166294798, -0.0351506, 0.00332448422, -0.00599254156, -0.0161777455, -0.0309155863, 0.00981111079, 0.0281769447, -0.0027580515, 0.016897697, -0.0058337287, 0.000851855, -0.00646545133, 0.00247042347, -0.0206386242, 0.00832179841, -0.0112016061, 0.0053255274, -0.00804652274, 0.000770683924, 0.00543140247, -0.00197457429, 0.00992404483, 0.00800417271, -0.0286145639, -0.00672661047, 0.00377621897, 0.0140249478, -0.021909127, -0.000119330281, -0.0164459627, -0.0190293193, 0.00660308916, 0.0242242683, 0.00880176667, 0.0021280935, -0.00411502, 0.0149072418, -0.0024351317, 0.0396679454, -0.0199751388, 0.0155283771, -0.0122885928, -0.00978287775, -0.0105310632, -0.00589019572, -0.0166294798, 0.0118650915, -0.0112227816, -0.00481732609, -0.00274746399, 0.000873471203, 0.0268923249, -0.0276263934, -0.0108698634, 0.00760184648, 0.0136579135, 0.00250571524, 0.0206809752, -0.0148507748, -0.00461263349, 0.0242525, 0.0113498317, 0.025381837, -0.042208951, 0.00423148274, 0.0087453, 0.0125568099, 0.00326801743, 0.0159801114, -0.0184223019, 0.00821592286, 0.00658544339, -0.00760184648, 0.00737597886, 0.0106792878, -0.00170018082, 0.00392444432, -0.025537122, -0.0154719101, 0.000483056036, 0.0213303436, -0.0051631853, 0.0108063389, 0.000344977016, -0.0191846043, -0.026977025, 0.0189022701, -0.0280075446, -0.0151048759, 0.0149495918, 0.00892881677, -0.0142508149, 0.0205821581, 0.0223467462, -0.0128109111, 0.00575961592, 0.00272275973, 0.00753126293, -0.0157260112, 0.00115845224, -0.0126909185, 0.000745097408, 0.00523376884, -0.0133120539, 0.010093445, 0.00548786949, -0.0164883137, -0.00998756941, 0.000939643243, -0.018690519, 0.0219797119, 0.0036279934, 0.0191987194, 0.0272452421, 0.0103334291, -0.0115121743, 0.0120133171, 0.0221208781, -0.0188316852, 0.0335977599, 0.00223573344, -0.0137214381, 0.0185070019, 0.0101852035, -0.00117609813, -0.00773595506, 0.0147519577, -0.000680689933, -0.000793623563, -0.010135795, 0.0223608632, 0.0174200162, -0.00592901651, -0.0326378234, 0.0256641712, -0.048872035, -0.00301391678, 0.00154577929, 0.0257347561, -0.00657485565, -0.00820886437, 0.016925931, -0.0025957094, 0.00275628688, 0.0196081046, 0.000535111409, 0.00791241415, 0.0176458824, 0.0163894966, -0.00895705, 6.04371489e-05, 0.0277534444, -0.00607371284, -0.0154436762, -0.0112157231, 0.00403737789, -0.000562021334, 0.0214150436, 0.00122638885, 0.00329095707, -0.00454910845, -0.00823709834, -0.0116745159, -0.022092646, -0.0175611824, 0.011088673, -0.00263100117, -0.000196861874, -0.0284733959, 0.0137920221, -0.00416442845, 0.0193116535, 0.00624664268, -0.00682189828, -0.0190716702, -0.00362446439, -0.00200280757, -0.00257629878, -0.00952877663, -0.0135732125, 0.00310038147, -0.0161353946, 0.00139314239, -0.0136579135, -0.00721716601, -0.00935231801, 0.00170988601, -0.00532905664, -0.000711570203, 0.00366681442, 0.0222761631, -0.0154719101, -0.00709717395, 0.0280075446, 0.00576667441, -0.00468321703, -0.0083288569, 0.00297509576, -0.00123697636, 0.0260312054, -0.00569609087, 0.00502907671, -0.0124509344, 0.0064513348, 0.0232078657, -0.0138273137, -0.00664191041, 0.00270158472, -0.013580271, -0.010961622, 0.00746067939, -0.0109969145, 0.0125426929, 0.0112580732, 0.0100722695, 0.000513054, 0.00102081429, 0.0128462026, -0.00394209, 0.0114486488, -0.00119903777, -0.018464651, 0.0113427732, 0.0265252907, -0.00256924052, -0.00363858091, 0.00583725795, -0.0444111563, 8.09504854e-05, 0.000200501338, -0.0026927616, -0.0112368977, -0.00208750786, -0.00486320537, -0.0105381208, 0.00468674628, 0.0076089045, 0.0214009266, 0.006356047, 0.0300685838, -0.0240689833, 0.0181964338, -0.012740327, 0.00246865908, 0.00658897264, 0.0103546036, 0.022092646, 0.022092646, 0.00791241415, 0.0274428762, -0.00125726918, 0.00898528378, 0.00742538739, -0.0088511752, 0.0129873697, -0.0203280561, 0.00581255369, -0.00185105309, -0.0148366578, -0.0126909185, 0.00697365263, -0.00993816089, -0.0166435968, -0.0208221413, -0.0188599192, -0.00710423244, 0.0184081849, -0.0104181292, 0.0104534207, 0.0197775047, -0.0107922219, -0.0153589761, -0.00218985393, -0.0167000629, -0.0121191926, 0.0201586559, -0.00511730602, 0.0176741164, 0.00736892037, -0.028741613, -0.010093445, 0.0103334291, 0.0130014867, 0.00486673461, -0.015246043, 0.0133049954, 0.00775713, 0.00801828876, -0.00363858091, -0.0072983373, 0.00224985, 0.0113780648, -0.0119921416, -0.000875235768, -0.00351682445, -0.00814534, 0.00724892877, 0.00961347669, -0.00647603907, 0.0181540847, 0.00512436451, 0.0123097673, 0.0103546036, 0.0086464826, -0.00288510183, 0.00753126293, 0.000339903811, -0.00336154061, -0.0225726124, 0.00108345714, -0.0192128364, 0.010989856, -0.0103404876, 0.00820180587, 0.00585490372, 0.009281734, -0.00161195139, -0.0130579527, -0.00143019878, 0.015161342, -0.0140249478, -0.00794770569, 0.0116251074, 0.00281451829, 0.0188175701, 0.0094864266, 0.0216267928, 0.0165165458, 0.00136049755, -0.0210056584, -0.00851943251, 0.00364916865, -0.00626781769, -0.0045879297, 0.0146531407, 0.00521965232, -0.00234160852, 0.00286216219, -0.00599254156, -0.00813828129, -0.0112580732, 0.00621488, 0.00068907172, -0.00249865698, 0.0246054195, -0.00268040947, -0.0332871936, -0.00734774536, -0.00668426044, 0.0212738756, 0.0139896553, -0.00400208635, -0.0146954907, -0.0148931248, 0.00419266149, 0.0140320063, 0.0229819976, 0.0149919419, -0.00323272566, -0.000455263769, -0.0105310632, 0.00351505983, 0.00511024753, -0.0279793106, -0.0120556671, 0.0149354748, -0.00391738582, -0.00304744393, 0.00286392681, -0.00615488365, -0.00129344314, 0.00282687042, 0.0112298401, -0.00599254156, 0.0105169462, 0.0166859459, -0.00822298136, 0.00728422031, 0.0104675377, 0.000529817655, 0.0192834213, -0.00871000811, 0.0281628296, -0.00380092324, 0.0161071625, -0.0173776653, 0.00481732609, -0.00772183808, 0.00263982406, 0.0239701662, -0.00532905664, -0.0155424932, 0.0184787679, 0.00611606287, 0.00543140247, 0.0059960708, -0.00742538739, 0.0254806541, -0.0119427331, 0.00030461204, -0.0205115732, 0.00578079093, -0.0148366578, -0.00701247388, 0.0266099907, 0.00110198534, -0.000720834301, 0.0120344916, 0.00638428051, 0.00292568724, 0.0175894164, 0.00207339111, 0.00924644247, -0.0154577931, -0.0197210386, -0.0130861867, 0.00250747986, -0.0072912788, -0.00234513776, 0.0214291606, 0.00525141461, -0.0215562098, 0.000834209088, 0.0077712466, 0.000770683924, 0.010079328, -0.0119709671, 0.0043832371, -0.0155566102, -0.0205680411, -0.0166435968, 0.0107639888, 0.000720393145, -0.000658632547, -0.0310285203, 0.0209350754, -0.00354505773, -0.00678307749, -0.00136932044, -0.00409384491, -0.0225867294, -0.0156695433, -0.0165871289, 0.00118227419, -0.00992404483, -0.0181540847, -0.0128603196, -0.01259916, 0.0167000629, -0.0128885526, 0.00370563543, -0.00445382064, 0.00714305323, 0.0148366578, 0.00571020786, -0.00288863108, 0.00645486405, 0.00939466804, -0.00915468391, 0.00236278377, -0.00500437245, 0.0190152023, -0.0147801917, -0.00677248975, -0.0345012285, -0.0109545635, -0.000989934, 0.005936075, 0.00225690845, -0.0144555075, -0.00384680252, -0.00507495599, -0.00834297296, -0.00574197, -0.0274146441, -0.0163047947, -0.00394209, -0.0214150436, -0.000197413319, -0.00519847684, -0.00413266569, -0.018577585, -0.00675484398, 0.0154436762, 0.00717481598, -0.000899057719, -0.0136579135, -0.0122674173, 0.0247607026, 0.00941584259, 0.0195516385, -0.0285863299, -0.0174764823, 0.0363928676, 0.00830768142, 0.00105787069, 0.0111169061, 0.00431971205, -0.0405714139, 0.00291333534, 0.0123803513, -0.00664543919, 0.00108345714, -0.0148931248, -0.0125356354, 0.0124650514, 0.0103898961, -0.00170812139, 0.0588949, 0.028783964, 0.0158954114, -0.0264829416, 0.0131497113, -0.000200280774, 0.00223749783, 0.030576786, -0.0178435165, 0.00152195734, 0.0285016298, 0.00941584259, -0.0027580515, 0.0112721901, 0.0305485521, -0.00291862898, -0.00675131474, 0.00773595506, 0.00983228628, 0.00831474, 0.012726211, -0.0138131967, 0.00334389484, -0.0156695433, 0.00350800157, 0.00692777336, -0.00203809934, 0.00499731395, -0.0166718308, 0.0193116535, -0.00132873491, 0.0104675377, -0.00260453229, 0.0157965943, -0.0162059795, 0.00254277163, 0.00518083107, -0.00363505189, -0.00193222414, -0.0315084867, 0.0163894966, 0.0199327897, 0.011773333, 0.00346035766, 0.016911814, -0.0175470654, 0.00344624091, -0.00114257087, 0.00349741383, -0.0256218221, 0.0266523417, -0.0145684406, -0.0126203354, -0.00953583512, 0.0148366578, 0.00237160665, 0.0226714294, 6.89292283e-05, 0.0106581133, 0.017010631, -0.0109122135, 0.010989856, 0.000476438843, 0.0170529801, -0.0101005035, -0.0429712534, 0.00779242162, -0.00491614314, -0.00735480385, 0.00851237401, -0.0144413905, -0.00959230214, 0.0229537636, -0.000700541539, -0.00316390675, 0.0134179294, -0.00634898851, 0.0106157633, 0.00504672248, -0.00859001558, -0.0205256902, 0.00949348509, -0.00195692829, -0.0459922291, -0.00219691242, -0.0174764823, -0.00374445622, 6.33597447e-05, 0.00324860704, 0.0173353143, 0.00554080727, 0.0139331892, -0.00085450185, 0.00298568327, 0.0155566102, 0.004640867, -0.0198198557, -0.0045808712, 0.00128638488, 0.01766, 0.0138484892, -0.00798299722, -0.0159801114, -0.025325371, -0.0110604391, 0.0245489515, -0.00789829716, 0.00386797753, 0.000556286424, -0.00211397675, -0.00457028346, 0.0120768417, 0.0054208152, 0.00454910845, 0.0200880729, 0.00421030773, 0.0142578734, 0.016954165, 0.0125074014, 0.0127050355, 7.11349639e-05, -0.00607371284, -0.0104675377, 0.00332977809, -0.0142719895, -0.00843473151, 0.00247571734, -0.000594666228, 0.0262994226, 0.00293980399, 0.0121686, -0.0123450598, 0.00921820942, 0.00523376884, 0.0150484089, 0.0147096077, -0.0089641083, -0.00495143468, 0.0190434363, 0.0190293193, 0.00307038357, -0.00425618701, 0.015189576, 0.0106792878, 0.000919350481, 0.00640192628, 0.0100299194, -0.0163612626, 0.0412490144, -0.000997874653, -0.00373386871, 0.00872412417, -0.0108133964, -0.00746067939, 0.00585490372, 0.0173494313, 0.00652897637, -0.01268386, 0.0105169462, -0.00601724582, 0.00510318903, -0.00376210222, 0.015288393, 0.00988169387, 0.0094864266, -0.00131108903, -0.00212279963, 0.00239984, -0.00506436825, 0.00518083107, 0.00854060706, 0.0318190567, -0.0216973778, -0.0012316826, -0.018464651, -0.00261159055, -0.0195516385, -0.00348506193, 0.0137708467, 0.00726304529, -0.0126062185, 0.00319390465, 0.00169135781, 0.0528529473, 0.0105734132, -0.0041256072, 0.0147096077, -0.0119427331, 0.01688358, -0.0241113342, -0.00336506986, 0.00397385284, 0.0132414708, 0.00539611094, 0.0130791282, 0.0029027476, 0.0115333488, 0.00967700221, 0.0124085844, -0.00121491903, 0.0258053392, -0.010192262, -0.0137637882, -0.018464651, -0.0102769621, 0.00430912431, 0.00202574744, -0.00814534, 0.0138978967, 0.0120486086, 0.00404796563]
26 Oct, 2021
jQWidgets jqxSlider max Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The max property is used to set or return the maximum value of the slider widget. It accepts Number type value and its default value is 10. Syntax: Set the max property. $('selector').jqxSlider({ max: Number }); Return the max property. var max = $('selector').jqxSlider('max'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider max property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider max Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', max: 50, value: 20 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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 min Property/jQWidgets jqxSlider max Property
https://www.geeksforgeeks.org/jqwidgets-jqxslider-max-property/?ref=next_article
PHP
jQWidgets jqxSlider max Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSlider min Property, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxSlider max Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0292823818, 0.0260618869, -0.00358581496, 0.0390148, 0.0555003285, 0.0192236565, -0.0117682824, 0.03359529, -0.0179042462, 0.00595153077, -0.016797645, -0.00344039616, 0.01560592, -0.028601395, 0.0159322266, 0.0140027665, -0.0375109576, 0.013286313, -0.0226853341, 0.0232244469, -0.0186277945, 0.0196067113, -0.0620264411, 0.0396390371, -0.0396106616, 0.0312402155, -0.000379950972, 0.016797645, -0.0138821751, 0.0110731097, -0.00521379616, -0.00572453532, -0.0154640479, 0.0133075938, -0.00373478048, 0.00493359892, 0.00804414228, 0.0111795142, -0.0379649475, -0.0208977461, -0.00917202514, -0.000933695119, -0.00629202323, 0.008959217, 0.0213091746, 0.00452926382, 0.00525990454, -0.0226853341, -0.0147546884, -0.00351487892, -0.0201174505, 0.00401143078, -0.0054798061, 0.0449166745, 0.0112788239, -0.0349572599, 0.0121371495, 0.0388445556, -0.020457942, 0.00899468455, 0.0448031798, -0.0694605336, -0.0329143032, -0.0169395171, -0.00295271096, -0.00583448634, 0.00434128335, 0.0404051468, -0.013286313, 0.0380500704, 0.00518542156, 0.0294810031, 0.0234088805, 0.0100232568, 0.0182305519, -0.0134778405, -0.04539904, 0.00352374581, -0.0162727181, 0.0243594237, -0.0192236565, 0.00137172488, -0.0171097629, -0.0195925236, -0.00186739024, 0.0310415942, 0.00521024922, -0.0319779478, 0.0336804129, 0.00577419065, -0.020755874, 0.0193229672, -0.0165139, 0.0101793166, 0.0147688752, 0.00528118527, -0.00749084167, 0.0288709532, -0.0336520374, 0.00411783485, 0.0230116397, 0.00615369808, 0.0243310481, -0.0321481973, 0.0099594146, 0.00740571879, 0.0213942975, -0.0214652345, 0.0162301566, -0.0199755784, 0.0389580503, -0.00970404502, -0.022472525, 0.00374542084, -0.05107392, 0.0222029686, -0.0220610965, -0.0110234544, 0.0182589274, -0.00961892214, 0.00560039748, 0.0225009, -0.00353793311, 0.00468532275, -0.0182589274, -0.00423133234, 0.0106333066, 0.00863291137, 0.053372249, -0.0236926246, -0.0214794222, 0.0357517451, 0.000821084192, -0.0432425849, 0.00628138287, 0.0388729274, 0.0158612896, -0.00684887078, -0.0121726179, -0.0042845346, -0.0358652435, -0.0113923214, 0.0234372541, 0.0201883856, -0.0227562692, 0.0172658227, 0.00416039629, 0.0505631827, -0.047697369, 0.0252248421, -0.0118959676, 0.00263527245, -0.00643744227, 0.0225576479, 0.0306727272, -0.0045469976, -0.0387310572, 0.025607897, -0.0166274, -0.00126620766, 0.0182021782, -0.00531665329, 0.0456260368, 0.0258065183, -0.011200795, 0.00201635575, 0.0404902697, 0.000592758937, -0.0549328402, 0.0300768651, 0.011945623, -0.0295945, -0.0119172484, 0.00131142931, -0.0270549916, 0.00778877316, 0.000169138031, -0.037482582, 0.0333966687, 0.00550818071, 0.00643744227, -0.00380926323, -0.0342195258, 0.0228130184, 0.00482719485, -0.0392985456, 0.012243554, -0.0289986376, -0.0414266251, -0.0198053308, -0.00707941316, 0.0271826759, 0.0309280958, 0.0136268055, 0.0237209983, -0.0155207971, -0.00788808335, 0.0246431679, -0.0321481973, -0.0188689772, 0.0269414932, -0.00242601126, -0.00106137991, 0.013960205, 0.00296867173, 0.0135984318, -0.0051357667, -0.0283176526, 0.0299066175, -0.00825695, 0.0180461183, 0.000517832814, 0.0213091746, -0.0162301566, -0.0140311411, 0.0221887808, -0.0199188292, 0.0139531111, -0.0284169614, -0.0364043564, 0.0211105533, 0.00622818107, 0.00378798251, 0.0375393331, -0.085633941, -0.0200607013, -0.0159464125, -0.0346735194, -0.00858325604, -0.00227704574, -0.0283744, -0.0126691703, -0.0216212925, 0.0299633667, 0.0261753853, 0.0635586604, -0.0296796225, 0.0308713485, -0.0054266043, 0.0406321399, 0.0226569586, -0.00190463162, 0.00499034766, 0.0170104541, 0.00983173, 0.00822148286, -0.0263030697, -0.0191243459, -0.00661478238, -0.0171948876, -0.0347018912, -0.0163010936, -0.00317083928, 0.0117257209, -0.0125556719, 0.0297363717, 0.00241182395, -0.0205572527, 0.000518719491, -0.0177907497, 0.0276224799, 0.0182447396, 0.0010525129, 0.0318928249, 0.0496552028, 0.0683823079, 0.041057758, -0.0216638558, 0.0141304517, -0.0289560761, 0.00312650437, -0.00967567, 0.0504780598, 0.0310699679, -0.027253611, -0.00235507521, -0.0435547046, -0.00680276239, 0.0153931128, -0.0233805068, 0.0305592287, -0.00327369641, 0.0401497781, 0.0738301873, 0.0395822898, 0.00407527341, 0.0364611037, -0.021422673, -0.0133856237, 0.0063452255, -0.028445337, -0.00524926418, 0.0236075018, 0.00860453676, 0.0237777475, -0.0128252292, 0.00376670179, -0.00412847521, 0.0140666096, 0.0426751, -0.0121584311, -0.00443704706, -0.0144851319, -0.0320063233, 0.0111937011, 0.0138254268, 0.0320347, -0.0179468077, -0.0190534107, -0.00917911902, 0.0474136248, 0.018741291, -0.0172374491, -0.036659725, -0.0316658318, -0.008867, 0.0481797308, 0.0211105533, 0.00820020214, -0.00921458658, 0.0200323276, -0.0105339959, -0.0193229672, 0.0410010107, 0.0469312593, -0.0265442524, -0.0290553868, -0.0291688833, -0.0250687823, -0.000256034633, -0.0292256325, 0.00125911401, -0.00122009928, -0.0285162721, -0.00805833, -0.0442073159, 0.0113710407, -0.0209544953, -0.0435830802, 0.0570892952, 0.00469596311, -0.00606502825, -0.00665379688, 0.00518187508, 0.0265300646, -0.0464205183, -0.00998778921, 0.00108798093, 0.042022489, 0.0185710452, 0.00132384314, 0.0175921284, 0.0271684881, 0.0213942975, 0.013364343, -0.0158896651, -0.0042419727, -0.0259909518, -0.0311267171, -0.0410010107, 0.00478463341, 0.0187129173, 0.0234514419, -0.00817892142, 0.0143574467, -0.0191243459, -0.0211389288, -0.0212098639, -0.0305308551, -0.00238522305, 0.0019099518, -0.0271401145, 0.0151235554, 0.0417387448, -0.0154924225, 0.0057564564, -0.00702975783, -0.0113781346, -0.0466191396, 0.0194364637, -0.0329710543, 0.0511022955, 0.0170388278, 0.0415401235, -0.0126975439, 0.009853011, -0.0275373552, -0.0410861336, 0.0333399214, 0.0044796085, -0.0377947, 0.0368016, -0.00645517604, -0.0366313495, 0.00644453568, 0.00614305772, 0.00584157975, -0.0131586287, 0.00479172682, -0.0197627693, -0.00431290874, -0.0246999152, -0.0109383315, -0.0257213935, 0.0104914345, 0.000633990509, -0.0220894702, -0.0107184295, 0.0264591295, 0.00567133352, 0.00498680072, -0.0177765619, -0.035382878, 0.0218624752, 0.024487108, 0.0357233696, 0.0317225792, 0.0325170644, 0.0200607013, -0.0347586423, 0.0214368589, -0.0019188188, -0.0393836685, 0.0108603016, -0.0408023894, 0.0117682824, -0.0466758907, 0.0201032627, 0.0211531166, 0.0188973509, -0.0331696756, 0.0160882846, -0.00867547281, -0.00889537483, 0.0228981413, 0.0116760656, 0.0197769571, 0.0108886762, 0.0102147842, -0.0460232794, -0.00495842658, -0.0151377432, 0.0459665284, 0.0416252464, -0.021351736, -0.007278034, -0.0243877973, -0.0216922294, 0.0211389288, 0.00785261579, -0.0181028675, -0.0629911721, 0.00427389424, -0.0217347909, 0.0444059372, -0.0042703473, 0.0308429729, 0.00636295928, 0.0350991338, -0.029934993, -0.028814204, 0.0206140019, -0.00633813161, -0.00743409293, 0.00109152775, -0.0109808929, -0.00812926609, 0.0267144982, -0.0229832642, 0.0213375501, -0.0364611037, -0.00278069125, 0.0263881925, 0.045909781, 0.0218199138, 0.0234798174, -0.00890246779, 0.00555428909, 0.00505419029, -0.0128252292, 0.038901303, 0.0125272982, 0.0214510467, 0.0129458206, 0.0216780417, 0.0117540956, 0.0208977461, -0.00837754179, -0.00827823114, 0.000889360148, 0.0170672014, 0.0142865106, -0.0202876963, 0.0294242539, -0.00438029831, 0.0122577408, -0.0157052316, -0.00716808299, -0.0100303506, 0.0126620764, 0.0175637547, 0.0215645451, -0.0174360685, 0.0282467157, 0.0417103693, 0.0129458206, -0.0295945, -0.0135913379, -0.0158045404, -0.0226853341, 0.012690451, -0.0113568539, -0.037113715, 0.00495487964, 0.00015328826, -0.0297647454, -0.0129316328, -0.0193513408, 0.0250262208, -0.0238344967, 0.0237777475, 0.0297647454, 0.0118037509, 0.00729931472, 0.0341060311, 0.0169253293, -0.0147688752, -0.0337655358, -0.0164145902, 0.0264591295, -0.0181028675, -0.00467468239, 0.00887409411, -0.0122293662, -0.0111156711, 0.0254234634, -0.0363759808, -0.00799448695, 0.00184433605, 0.045909781, -0.00308216922, 0.0125485789, -0.0289135147, 0.00176807982, 0.0296228752, 0.00241005071, 0.00718936371, 0.000451995322, 0.0230967626, 0.0207984354, 0.0394971669, -0.0131728156, -0.00263881916, -0.0149674965, -0.0126266079, 0.00323645514, -0.000643744192, -0.0362057351, -0.02224553, -0.0163720287, -0.007278034, 0.00279133162, -0.00571034802, 0.0338506587, 0.00113497605, -0.0168543942, -0.00229477976, 0.0157336053, -0.0495700762, -0.0197627693, 0.00698364945, 0.0174076948, 0.0117115341, 0.0200181399, 0.00369576574, 0.0358084925, 0.0215503573, -0.0164287779, 0.0147972498, 0.016130846, -0.01515193, -0.0453139171, 0.0358652435, 0.00217418838, -0.00509675173, 0.0170530155, -0.0128748845, -0.0213801116, -0.0478392392, -0.000294384401, -0.0100729121, 0.0221178457, -0.031807702, -0.000125024701, -0.00989557244, 0.0319779478, -0.00561813125, 0.00579901831, 0.0250262208, -0.0222171564, 0.0248843487, 0.0188547894, -0.00473143114, 0.0129600074, -0.0232670084, -0.0120094651, -0.00147724221, 0.023593314, -0.0013983259, -0.00407882, 0.00245083892, -0.0123428646, 0.0525493883, -0.00277891778, -0.00376670179, -0.00853360072, -0.0196492728, 0.00714325532, 0.00148522248, 0.0163152795, -0.0040327115, -0.00690562, -0.00655803317, -0.000473054475, 0.0252957791, 0.00370285939, -0.0171807, -0.00375960814, 0.0102573456, -0.0379082, -0.0111582335, 0.0133572491, 0.000160714379, -0.0049265055, 0.00514286, 0.00995232072, -0.0118817799, 0.0122577408, -0.0228981413, 0.0207275, 0.00850522704, 0.0035060118, -0.0264023803, 0.0711062476, -0.0053982297, 0.0273529217, -0.00653675245, 0.0296228752, 0.0302754864, 0.013960205, -0.030984845, 0.0198762678, 0.0374258347, 0.00720709795, -0.000638867379, 0.0285872091, 0.00980335567, -0.00165280886, 0.0182305519, 0.028445337, -0.0216638558, -0.0152512407, 0.0399511568, 0.00812926609, 0.0291688833, 0.00128394167, 0.0361773595, 0.0384189375, 0.0124138007, -0.0045469976, 0.00846975856, 0.00062556687, 0.0345883928, 0.0209686812, -0.00167674979, -0.00307684904, -0.0307011, 0.0144851319, 0.0348153897, 0.0177481882, 0.0155917332, 0.00149852305, 0.0186419804, 0.030984845, 0.0033109379, -0.0208409969, -0.00850522704, 0.00966148358, 0.0257497691, 0.0265300646, 0.0266435631, 0.015974788, 0.0102431588, 0.00585576706, 0.00273458287, 0.000108897846, 0.0371988378, 0.00800158083, -0.0243594237, -0.0306159779, 0.0142652299, -0.0256930199, -0.0203160699, 0.0284027755, 0.00507901749, 0.019933017, 0.00722483173, 0.0436398275, -0.00566423964, -0.0035875882, 0.0269840546, 0.031495586, 0.00292611, 0.0522372723, 0.00961182825, -0.00362660317, -0.0104772476, -0.00694108754, -0.00205891742, -0.00682404358, 0.0450585485, 0.00278778491, -0.0121371495, -0.0257781427, -0.0121797118, -0.00776039856, 0.0384189375, -0.0271401145, 0.0140595157, -0.00519251544, 0.00145418802, 0.0442640632, 0.0408023894, -0.00234266138, 0.00200926233, 0.0217631646, -0.00165990239, 0.0138254268, 0.000524483039, -4.71059393e-05, -0.0163294673, -0.0358084925, 0.0259342026, 0.0161166601, -0.00585576706, -0.0447180569, 0.0225009, -0.0200039521, 0.0214936081, -0.0140098603, 0.0127897607, -0.00810798537, 0.024416171, -0.0148114376, 0.00170157733, -0.00432709605, 0.00416394323, -0.00817892142, 0.0209119339, 0.00884571951, -0.00794483256, 0.0132366577, -0.0476122461, 0.0191669073, 0.00533084059, 0.0250120349, -0.0484918505, -0.0145064127, 0.0203870069, -0.0377379544, 0.00817892142, -0.00221497659, 0.0160031617, -0.00529182563, -0.0122577408, -0.00561458431, -0.0126407957, 0.0133075938, 0.0286723319, -0.000195739034, -0.0264023803, 0.00163507485, 0.00613241736, 0.00718581676, -0.0156201078, -0.0158754773, 0.0019099518, 0.0197343957, 0.0179893691, 0.0142723238, 0.0240898654, -0.0179609954, -0.00677438825, 0.0103140948, -0.00469241664, -0.0217064172, -0.0272961743, 0.0312969647, 0.012917446, -0.0341627784, 0.0078455219, -0.00528473221, 0.0207700618, 0.0220610965, 0.0214084852, -0.0262179468, -0.0175353792, 0.0318360776, -0.0392417945, 0.00767527521, -0.0150384326, -0.01940809, -0.0197202079, 0.00364256371, -0.0226427726, -0.0125769535, 0.0212382395, 0.00251645455, 0.0185710452, 0.0131444409, -0.00279842527, 0.0221036579, 0.0245438572, -0.00557911675, -0.0148823727, 0.0465907641, -0.0209261198, 0.0109596122, 0.0287148934, 0.00986719783, -0.0088173449, -0.00155172509, -0.0646368861, 0.0142368553, -0.00310522341, -0.00509320479, 0.0407456383, 0.0100232568, -0.00630266359, 0.000412758847, -0.00423487928, 0.0199472029, 0.000200283364, 0.0231109485, 0.000679212215, 0.0276650414, 0.00170867098, 0.0100516314, 0.0101296613, 0.00212808, 0.0166415852, 0.029339131, 0.0356666222, 0.0196492728, -0.0205005053, 0.0197911449, -0.027991347, 0.010902863, 0.0367164761, -0.00680276239, -0.0209686812, 0.00248453347, -0.0182589274, 0.00599054527, 0.027026616, -0.0177765619, -0.010824834, -0.053372249, -0.0159464125, -0.0319779478, 0.00223093736, 0.0312969647, 0.0185284838, 0.000167032122, 0.0105127152, 0.00471369736, -0.0604374744, 0.0272677988, 0.00113231596, -0.0156626683, 0.0426751, -0.0122364601, 0.00193300599, -0.00358404149, -0.0276224799, 0.0406037681, -0.0537127405, -0.0259483885, 0.024487108, -0.00656867353, 0.0096827643, -0.0244587325, -0.00229477976, -0.0384189375, -0.0180886798, 0.0325738117, -0.0102147842, -0.0120023713, -0.00109862129, 0.0104630599, 0.0114490706, -0.0171097629, 0.013513308, -0.0149533087, 0.00896631088, -0.0199897662, 0.011342667, 0.0341911539, -0.00534148095, -0.0097891679, 0.0470447578, 0.0294526275, 0.0155775463, -0.0298214946, 0.014109171, -0.0296512488, -0.0160740986, -0.00434837677, -0.00925005507, 0.0252390299, -0.0190817844, 0.00598345185, 0.0181738045, 0.0318360776, -0.0124776429, -0.000517832814, -0.0369718447, 0.00183546904, -0.0158471037, 0.0102928141, -0.0169820786, -0.00232138066, 0.0335669145, 0.00526699796, -0.020528879, -0.010753898, 0.0211247411, 0.0166415852, -0.0294242539, 0.0108177401, 0.0460800268, -0.00608276203, 0.0176346898, 0.00435192371, -0.00979626179, -0.0297931209, -0.0675878227, 0.0120874951, -0.0191810951, 0.00531310635, 0.00226640515, 0.0256220829, 0.0207416862, -0.00498325424, 0.0157194175, -0.027991347, -0.00305734156, 0.0223022792, -0.0256788321, -0.00284630712, -0.00383054418, -0.025607897, 0.00438739173, 0.006121777, 0.0136338994, 0.00163596158, 0.0214084852, 0.00649064407, 0.0106971487, -0.042022489, -0.0164713394, 0.018968286, 0.0584512651, 0.0166274, 0.0121513372, 0.00114650314, 0.0212382395, -0.0375109576, 0.0465907641, -0.0148398113, 0.0209403075, -0.00746246753, 0.0456827842, -0.00690562, 0.0185426716, -0.00695882179, 0.0135345887, -0.0191669073, -0.0121797118, 0.020301884, 0.0160173494, -0.0275231693, 0.0109808929, -0.0146411909, 0.0149533087, 0.0223590285, 0.0138041461, -0.0182021782, -0.00477399305, -0.0121726179, -0.0150384326, -0.0112433564, 0.00356276077, 0.0172658227, 0.0284737106, -1.69858467e-05, -0.0131018795, 0.0279629715, -0.0191527195, -0.0112149818, -0.0263314433, -0.0223590285, 0.0102502527, 0.0182163659, 0.0143006975, 0.00463566789, 0.0303038601, 0.00375251449, 0.0075546843, 0.00351133198, 0.0348437652, -0.00954089221, 0.0114561645, -0.0232102592, 0.00179556757, 0.00431645568, 0.0137190223, -0.00912237, 0.0151944915, 0.0159464125, -0.00525281113, -0.00817892142, -0.0127471993, 0.0197911449, -0.00056039443, -0.020755874, -0.0116405981, -0.0173367597, -0.006831137, -0.0204011947, 0.0239621811, -0.00331271137, -0.00485202251, 0.00143645401, 0.00165990239, 0.00428098766, 0.00958345365, 0.00402207114, -0.00198620814, -0.00729222083, -0.0164855272, 0.0178333111, 0.0187696666, -0.0132508455, 0.000212142986, -0.00734187616, -0.00525281113, -0.0279771592, 0.017691439, 0.0124279875, -0.00415685, -0.0350707583, -0.00215113419, 0.00883153174, -0.00281261257, 0.0177198127, 0.016130846, 0.0122506479, -0.00389438658, 0.0102076903, -0.0270691775, 0.0111298589, 0.00038726622, 0.0115980366, 0.030984845, 0.0131444409, 0.0173793212, 0.00655093975, 0.00664670346, -0.0267570596, 0.0297363717, -0.017251635, -0.00520670274, 0.00263172574, -0.00168207, -0.00624591485, 0.0125840465, 0.00137704518, -0.00677438825, -0.0130238496, -0.00438384479, -0.0192804057, 0.00637005316, 0.0149674965, -0.00277891778, -0.0339074098, 0.0117895631, 0.0825127587, 0.0136835547, -0.00140364608, 7.50369873e-05, -0.03121184, -0.0473285019, -0.0133359684, 0.0150100579, 0.0371988378, -0.0061359643, 0.00163418811, 0.0163578428, 0.0203728192, -0.0148398113, -0.0189541, -0.0150100579, -0.0100587253, -0.00660414156, 0.0308713485, -0.0356382467, -0.0169395171, 0.017734, -0.0113923214, -0.00953379832, 0.0171665121, 0.0101651289, -0.0461651497, 0.0114490706, -0.0420792364, 0.00907271449, 0.00496906694, 0.0203586332, 0.0324319415, -0.00667153113, -0.0122080855, 0.0210254304, -0.0106900558, 0.0107255233, -0.00385182491, 0.000131231602, -0.0238344967, 0.00425970694, 0.0161734093, 0.0143574467, 0.00283744, -0.0115767559, -0.0293675046, 0.000635320554, -0.000191527201, -0.00432000263, -0.0239196196, 0.00631685089, -0.0229548905, 0.0075688716, 0.000853892125, 0.00611823, -0.00464985473, -0.0243026745, 0.0255511478, -0.0336236656, -0.0127968546, -0.00115625688, -0.0209686812, -0.0178474989, 0.00249872077, 0.00817182753, -0.0214652345, 0.0263740048, -0.00428808108, 0.0173935071, 0.0491728373, 0.0144425696, -0.00357694784, -0.0155775463, -0.0150951808, -0.00107379374, -0.0103850309, -0.0121087758, 0.0172090735, -0.0305592287, -0.0295377504, -0.0108319279, -0.0144354766, 0.0277643502, -0.0244303588, -0.00459310599, -0.0164004043, -0.00226108497, -0.00955507904, 0.00298463227, -0.0301903617, -0.00778877316, -0.0230116397, 0.00822148286, -0.000347586407, 0.00572098838, 0.0228697676, -0.00821438897, -0.0274522323, 0.00818601437, 0.0218341015, 0.0166132115, -0.00536985556, -0.00313714473, 0.00684887078, -0.0176346898, 0.0208409969, 0.00277891778, -0.0230825748, 0.0178758726, -0.000963842904, 0.000867192633, -0.00701911747, 0.0173793212, 0.0073986249, 0.0078455219, -0.0416252464, 0.0135984318, 0.0142155746, -0.0123783322, -0.0289277, -0.0155775463, 0.0146695655, -0.00239054323, -0.0203302577, -0.0193229672, 0.00351133198, 0.024714103, 0.00192945928, -0.00390502694, -0.0278211, -0.00233911467, -0.0101083806, -0.000467734266, -0.0157619789, 1.56696515e-05, -0.0247992259, 0.0207416862, 0.0183724239, 0.0192662179, -0.0170672014, 0.000241847432, 0.00861163065, 0.00239409, 0.0212382395, 0.028814204, 0.0020376367, -0.00230542, 0.0280197207, 0.00611113664, -0.0289135147, -0.0109241446, 0.0187554788, 0.0120449327, 0.0227988306, -0.0229123291, -0.0029562579, -0.0234230682, -0.0243026745, 0.00561813125, 0.0108106462, 0.0271543022, 0.0159180388, -0.00921458658, 0.00474561844, -0.0164571516, 0.0121655241, -0.0299066175, -0.00256433641, 0.0122577408, 0.0142865106, 0.0101864096, 0.0209261198, 0.000174901579, 0.0348153897, 0.0205005053, -0.0121087758, 0.010902863, 0.0176346898, 0.0221887808, -0.00220433623, 0.00607212167, -0.0150668072, 0.0133856237, -0.00668571796, -0.0288993269, -0.0223022792, -0.00296335155, 0.0158471037, 0.00280374545, -0.0253241528, 0.0136126187, 0.0254660249, -2.35529697e-05, 0.0195499621, 0.0239479933, -0.00462148059, -0.0380217, -0.00232847431, 0.0313820876, -0.0216212925, 0.0319779478, 0.0163152795, 0.0209544953, -0.00296689826, 0.0306443535, -0.0146553777, 0.000607832859, -0.000942562125, -0.0215503573, 0.0100232568, -0.0141659193, -0.00340670138, 0.000587438757, -0.00458601257, 0.00156325218, 0.0139318304, -0.0275373552, 0.012243554, 0.0135629633, 0.00467468239, -0.00561458431, -0.0268989317, -0.00369931245, -0.00336946, -0.0135204019, -0.012243554, 0.00910108909, -0.00534148095, 0.025976764, -0.0291405097, 0.0107680848, 0.0139460182, 0.0137899583, 0.0263598189, 0.0211247411, -0.00673182635, -0.01657065, -0.009484143, 0.00500453496, 0.0022327106, 0.0171807, 0.00627783593, 0.0383338146, 0.0108603016, -0.000104131832, 0.0089875916, -0.0165990237, -0.0248134136, 0.00349537143, 0.0198904555, 0.0153931128, 0.013662274, -0.0256220829, 0.0122080855, 0.0135771511, -0.0172090735, -0.0158754773, -0.0170813892, -0.0375109576, 0.00780296, -0.0078455219, -0.0106900558, 0.00563941197, -0.0304457322, -0.013442372, 0.00782424118, -0.00401852466, -0.0161734093, -0.0151093686, -0.0121938987, -0.00767527521, -0.000974483322, -0.00741990563, 0.0231676977, -0.0123073962, 0.0135771511, 0.0173367597, -0.00228413916, -0.0197485834, -0.0148256244, 0.00827823114, -0.000147303042, 0.00364256371, -0.0222880915, 0.0382770672, 0.00959764142, 0.0365462266, 0.00688788574, 0.0100871, 0.0144141959, 0.0238912459, -0.0196067113, -0.00862581749, 0.00961182825, 0.0220043473, -0.00876769, -0.0350423865, 0.000941675447, -0.0310415942, 0.0125272982, -0.0246999152, 0.0171381384, -0.0122506479, -0.00212630676, -0.0112362625, -0.00155615853, 0.00303960778, 0.0281615928, -0.00468177628, -0.0103282817, -0.0192945916, -0.0229407027, 0.0283602141, -0.00203941, -0.0174928177, -0.0113001047, -0.0119952783, -0.0201316364, -0.0225860234, 0.00576355029, -0.0104417792, -0.0447464287, 0.00104098581, -0.00456118491, -0.0031016767, -0.0085406946, -0.0350707583, -0.00596926454, -0.00551882107, -0.00518542156, -0.0166699607, -0.0263456311, 0.0219334122, -0.0135771511, 0.0149816833, 0.00829951186, -0.0343046486, -0.00400079042, 0.0170672014, 0.00646227, -0.010001976, -0.0142155746, 0.0147405015, 0.0103353756, -0.00633458514, 0.00300946, -0.00299349916, -0.0257497691, 0.000559951062, 0.000167697144, -0.00577419065, 0.0238344967, 0.00795901939, -0.0061075897, 0.0429872163, 0.0066750776, -0.00731350156, 0.00322758802, -0.0129954759, -0.0230825748, 0.0002248893, 0.0210112445, 0.00793773867, -0.0030467012, -0.0269273054, -0.0116618788, -0.00457891868, -0.00383409089, 0.0131586287, -0.0104772476, -0.00451507652, 0.0124634551, -0.006831137, 0.000549310644, 0.0097111389, 0.00697300909, -0.0104914345, 0.00440867245, 0.00231606048, -0.0251964685, -0.0092004, -0.00444059353, 0.00761852646, 0.0304173566, 0.00229832646, 0.00109241437, -0.0128961653, -0.0157761667, 0.0164571516, 0.0130167566, 0.0160457231, 0.00799448695, -0.00317970617, -0.00163064129, 0.0176772512, -0.0106474934, 0.027551543, -0.0235791262, -0.0135842441, 0.0228130184, -0.0134494659, -0.0080157686, 0.00127862138, 0.0409158841, -0.0047562588, -0.00732768886, -0.0159889739, 0.0104701538, -0.0250687823, -0.0040327115, 0.029339131, -0.0212666132, 0.00142936048, 0.0354963765, -0.000177894195, -0.00531310635, 0.026601, 0.0151944915, -0.00751212239, -0.0214652345, -0.00824985653, -0.00111812877, -0.0172658227, 0.0273103602, -0.0182873011, -0.00396177592, -0.00227172556, -0.00744828, 0.0121513372, -0.000654828, -0.000596305763, 0.0165848378, -0.00602246635, 0.0273954831, -0.00868966058, -0.0264165662, 0.00424906658, -0.00407172646, 0.0398944058, -0.0537411161, 0.00874640886, 0.00097537, 0.0112788239, 0.00500098802, 0.000342266198, 0.0177056268, -0.00526699796, 0.00852650777, -0.00261044479, 0.0135487765, 0.00761143304, -0.0083704479, -0.00103566563, -0.0161166601, -0.00661123544, -0.0256220829, 0.00344394287, 0.023664251, 0.00391212059, 0.0202735085, -0.00523507688, -0.00852650777, 0.00758305844, 0.0130876927, 0.00805123616, -0.000890246825, -0.000469064311, -0.00530601293, 0.00941320788, 0.00907271449, -0.00934936479, 0.0139814857, 0.00788098946, 0.00128039485, 0.00235330197, -0.0140949832, 0.00169182359, -0.0171239506, -0.00237458269, -0.00316197239, 0.0167408958, 0.0159606, 0.01231449, 0.0288425777, 0.0218624752, 0.00747665437, 0.010158035, -0.00494423928, -0.00815054681, 0.00859744381, 0.00895212311, -0.0114490706, 0.0219192244, 0.0139956735, 0.0155633586, -0.00648000371, 0.031495586, -0.0137757715, 0.00307862251, -0.00280197198, 0.0019826612, -0.0109170508, -0.0172658227, 0.00186739024, -0.00192945928, -0.00464985473, -0.0158471037, 0.00393340131, 0.01134976, 0.000445345097, -0.0112149818, -0.0170813892, 0.0272677988, 0.0144000081, -0.0136480872, -0.0303038601, -0.00978207495, -0.0121158687, 0.0262321327, 0.0186277945, 0.0215929188, 0.0103140948, -0.0265726261, 0.00842010323, 0.00415685, -0.0154924225, 0.000978916767, 0.00222739042, -0.000989557244, -0.00191349862, 0.0144212889, -0.00823567, -0.00549754035, 0.00679921592, -0.0170672014, 0.00335527281, -0.0239763688, 0.00418167748, 0.00762562035, -0.0179468077, -0.0121584311, -0.014783063, 0.00564650586, -0.000167807986, 0.000631773786, 0.0104417792, -0.0322900675, -0.000600739266, -0.0316374563, -0.0144567573, 0.00194009964, -0.0109950807, 0.0106545873, -0.00698364945, 0.00629202323, 0.017918434, 0.00925714802, -0.0266435631, 0.0192094687, 0.00635941233, 0.0233237576, 0.00816473365, -0.00254305569, 0.0226427726, 0.0143645406, 0.00155083835, -0.000813103921, -0.00203054305, -0.0316374563, -0.0044654212, -0.0233521312, 0.00452217, 0.009853011, -0.00666089077, 0.0312402155, 0.00304492796, -0.000821084192, -0.00964020286, -0.000701379729, 0.0172941964, -0.0028516273, 0.00226817862, 0.000641527469, -0.0121868048, 0.0184575468, 0.0101793166, 0.0124918297, -0.0343330242, -0.0212098639, 0.0134849343, 0.0108390208, -0.0169395171, 0.00184965623, -0.00815054681, 0.00665734382, -0.0252815913, 0.0128323231, -0.0110660158, 0.00100906461, -0.0178900603, -0.000821970927, 0.0118250316, -0.000892020238, 0.0105481837, -0.00736315688, -0.00485911593, 0.0127046378, -0.015747793, -0.0100941928, -0.0173367597, -0.0201174505, 0.0109950807, -0.0111724203, 0.0113923214, -0.0102928141, 0.0231535118, 0.00582029903, -0.00142138009, 0.00935645867, 0.000187980404, 0.0235223789, 0.00635231892, -0.0114277899, 0.0235507526, 0.00887409411, 0.0255227741, -0.00716808299, -0.0225860234, -0.000733744295, 0.00607566861, 0.0221178457, -0.00516768778, -0.00334995263, -0.00373478048, 0.0222880915, 8.12438884e-05, -0.00665379688, -0.0124563621, -0.010377937, 0.00756177772, 0.0140878903, -0.0336520374, -0.0138183329, -0.014109171, 0.00394049473, -0.00890246779, -0.00663251616, -0.0178191233, 0.00672118599, -0.00241005071, 0.031495586, -0.00157123245, -0.00797320623, 0.0107893655, -0.0280197207, 0.0261895712, 0.00875350274, -0.00133891706, 0.0096827643, 0.0126407957, 0.00516059389, -0.00247743982, 0.0222739037, 0.00928552262, -0.0158471037, 0.0145418802, 0.016201783, -0.00944867544, -0.0214794222, 0.0306443535, 0.0157336053, 0.00236571557, 0.0143219791, 0.0255795214, 0.00773202395, 0.0201742, 0.000605172769, -0.0135487765, 0.00237103575, -0.0152796144, 0.00846266467, -0.00834916718, -0.0102644395, 0.0170104541, -0.0240189303, 0.00810089149, -0.0326021872, -0.00323468167, -0.0388161801, 0.00417103712, 0.00720709795, -0.00845557172, -0.0174218826, 0.020826811, 0.00404335232, -0.000845025119, 0.0138467075, 0.0205856282, 0.00783842802, 0.0451436713, -0.00100817787, -0.0212240517, -0.00816473365, 0.000720887096, 0.00956217293, 0.0178191233, -0.00719645759, -0.00209793216, -0.00558621, -0.0103992177, -0.0255511478, 0.000141428653, -0.00787389651, -0.0273387358, 0.006121777, -0.0108390208, 0.0284737106, 0.00144088757, 0.0159889739, -0.00172374479, 0.0204437561, -0.0102431588, 0.00333044538, -0.00174591236, -0.0110376421, -0.00488749053, -0.00208019814, 0.00619980646, -0.0204721298, -0.00206246413, 0.00632749125, -0.0157336053, -0.00895212311, -1.00792849e-05, 9.31035e-05, -0.0129458206, 0.0120662143, 0.000383276085, -0.0153505504, 0.0282467157, 0.031807702, -0.00516768778, -0.00606857473, -0.00137261162, -0.0113923214, 0.0292256325, 0.0162869059, 0.00484492909, 0.0109525183, -0.00406463305, -0.00432000263, 0.0233521312, -0.0226002093, 0.0109808929, -0.0037844358, -0.00169891724, 0.00717163, 0.00724256597, 0.0199046414, 0.0173793212, -0.00218482874, -0.00516414084, -0.0144993188, 0.00522088958, -0.00356453401, 0.00497616036, -0.0171665121, -0.0126195149, 0.00708295964, 2.08790152e-05, -0.00676374789, -0.0152086783, 0.01702464, 0.0120874951, 0.0103070009, -0.00585576706, 0.0113355732, -7.12685141e-05, -0.0125698596, -0.00445123389, -0.00577773713, -0.0131870024, 0.0292540062, -0.00820729509, -0.0205856282, 0.0131799094, -0.0155349839, 0.0198053308, -0.0124208936, -0.0200607013, -8.36268955e-05, 0.0142936045, -0.0188973509, 0.0427318476, 0.000895123696, 0.0123570515, -0.00359290838, -0.000672562, 0.0116760656, 0.016868582, -0.0269414932, -0.000122253768, -0.00503645604, 0.0097537, -0.00294739078, 0.0109596122, 0.00401497772, -0.009406114, 0.00868966058, 0.00534857437, -0.0231535118, -0.0143716335, 0.00861872453, 0.00845557172, -0.0231535118, 0.00583093939, -0.017691439, 0.0013779318, -0.00248098676, 0.027097553, -0.0155066103, 0.00138325198, -0.0111156711, 0.00671763951, -0.00513221975, 0.0255085863, -0.0189115386, -0.0213091746, -0.0184433609, 0.00135665108, -0.0158329159, -0.0152796144, -0.0139672989, 0.00905852765, 0.0123641454, -0.0149958711, 0.0072638467, 0.0125060175, -0.00259803096, 0.0210112445, 0.0195641499, -0.00615015114, -0.00974660646, -0.00138945889, 0.00281438581, -0.0102644395, -0.0224299636, -0.0186987296, -0.0121655241, 0.0200607013, 0.0054266043, -0.010080006, -0.0095125176, 0.0130522242, 0.0176346898, -0.0100445375, -0.00292611, -0.0149533087, -0.00280729216, -0.00928552262, 0.00872512814, -0.00385891856, 0.0010844341, -0.0149533087, 0.0133146876, -0.0263030697, -0.00351665239, -0.00803704932, -0.00665379688, 0.00531310635, 0.0162869059, -0.00116423715, 0.0117753763, 0.0425616, -0.000942562125, -0.01702464, -0.00206955778, 0.00194719329, 0.00497261388, 0.00638069352, 0.0220469087, -0.021351736, -0.00108709419, -0.003993697, -0.0199755784, -0.0148398113, 0.0209544953, 0.0243594237, -0.00215468113, 0.00864000525, -0.000249162695, 0.0040468988, 0.00535212131, 0.0219901614, 0.0172090735, -0.0075688716, 0.0152512407, -0.00419231784, 0.0206991248, 0.000848571945, -0.0144425696, -0.00457537221, -0.0295377504, -0.00744828, -0.0071751764, 0.0134991212, -0.000796256645, 0.0162301566, 0.0140524218, -0.0135204019, 0.0284878984, 0.0169678908, -0.00992394704, -0.00368512538, -0.00312118419, 0.0136268055, -0.0258774534, -0.00928552262, -0.00938483328, 0.00240473053, 0.0176063161, -0.0316658318, -0.0156342946, -0.00815054681, 0.0139531111, -0.0112433564, 0.00105783308, 0.0309564713, 0.0092004, 0.0343330242, 0.00229300628, -0.000890690193, -0.00732059544, 0.00467468239, -0.0276650414, -0.00890956167, -0.00684887078, 0.00522798346, -0.0118959676, -0.0310699679, -0.00955507904, -0.01702464, -0.0170388278, 0.00815054681, -0.00705813197, -0.00291901641, -0.00505773677, 0.00498325424, 0.00677793473, 0.0131373471, -0.0129316328, 0.00430226838, 0.000962956226, 0.00795901939, -0.0207984354, 0.0263172574, 0.0102928141, 0.00598345185, 0.0102076903, -0.00218482874, 0.0205430668, -0.0174076948, -0.00283744, 0.00710069388, -0.013513308, -0.00440867245, 0.00677084131, -0.0154640479, -0.00451152958, 0.000436256407, 0.0104701538, -0.00109330111, 0.00474561844, 0.0254518371, -0.0160599109, 0.00968985818, 0.0170104541, 0.0239905566, -0.0190675966, 0.0124208936, 0.0120094651, -0.00887409411, -0.00978207495, 0.011498726, -0.00372768682, -0.0141020771, -0.0294526275, 0.035468, -0.0112149818, -0.00492295856, 0.00704749161, 0.0120094651, -0.00882443879, -0.00769655639, -0.0177481882, 0.0395255387, -0.00802995544, 0.025607897, -0.013960205, 0.0090656206, 0.0113142924, 0.00846975856, 0.00569970766, 0.0192378443, 0.00693399413, -0.0191952828, -0.0121584311, -0.00312473089, -0.0183440503, -0.0101225674, -0.0033375388, 0.0181596167, -0.0113001047, -0.00966857746, 0.0193655286, -0.0123712383, 0.0132011902, 0.031949576, 0.00396532239, -0.0107042426, -0.0334250443, 0.000373300718, 0.0273387358, -0.00205359724, -0.00362837641, 0.0227846429, -0.0212524254, -0.00144443428, 0.00336059299, 0.0142936045, -0.0106971487, -0.0121158687, -0.00452571688, 0.00929261651, -0.0113213863, 0.0130025689, -0.00327546988, 0.00918621197, 0.010158035, -0.0088173449, -0.0152654275, -0.02508297, 0.0189399123, -0.0164004043, -0.00235507521, 0.00857616216, -0.00552946143, 0.0119527159, 0.0128961653, 0.00538758934, 0.00887409411, 0.00288886856, -0.0173083842, 0.0180603061, 0.00576355029, -0.0180744939, -0.00373478048, 0.0147688752, -0.00172197144, -0.00700493, 0.00405044574, -0.0287007056, 0.00147280877, -0.00505773677, -0.00999488309, 0.00181773503, -0.0200323276, -0.00924296118, 0.00512867281, -7.92488136e-05, 0.0279345978, -0.0242884867, 0.01515193, -0.00127152784, 0.0218624752, 0.00527054491, 0.017734, 0.00477753952, 0.00716808299, 0.0121371495, 0.000786059594, 0.00350955874, -0.00550108682, -0.00517832814, 0.00494069234, 0.00129014847, -0.000727537379, 0.0101722227, -0.0045469976, -0.0122293662, -0.00574581604, -0.00134157715, -0.000493005209, 0.00778167928, 0.0106404, 0.00450443616, 0.0245580431, 0.00946286228, -0.00544788502, -0.00907980837, -0.0042029582, 0.00275054341, 0.00301655359, 0.0235507526, 0.000153399102, -0.0234656297, 0.0169962663, 0.0175921284, 0.00195251347, 0.0137119293, 0.0124563621, -0.0115767559, 0.00444414048, 0.0173225719, 0.0102502527, 0.0112220757, 0.00267606066, -0.0276508536, 0.0155207971, 0.0227278955, -0.0121868048, -0.00380571652, -0.019706022, 0.0276508536, 0.00589123508, -0.0182163659, -0.0024419718, 0.0354963765, 0.020755874, 0.00304492796, 1.65563524e-05, 0.00292433659, 0.010448873, -0.00455054455, -0.0120804012, 0.0139389243, 0.00158541964, 0.00405399268, -0.0223448407, -0.00225221808, 0.0103070009, 0.0119314352, 0.00311763724, -0.00199330156, 0.0152654275, -0.003639017, 0.0182447396, -0.0214510467, -0.0239338074, -0.012392519, -0.00885990635, 0.0162159707, -0.0104346862, -0.0154782357, -0.0111511396, 0.0168969557, 0.0139743928, -0.00580965867, 0.0186136067, 0.00867547281, -0.0166699607, -0.0238344967, -0.000489458384, 0.0156910438, -0.00724256597, 0.0243594237, -0.00365320407, -0.0114277899, -2.26108514e-05, -0.000144864622, -0.00597635796, 0.00851941388, 0.030388983, -0.00627428945, -0.0141942939, -0.0136977416, -0.00254482916, -0.00316019892, 0.0097891679, 0.0154073, 0.0136126187, 0.0053202, -0.00418167748, 0.0018780306, 0.00952670537, 0.00545852538, -0.0142013878, 0.0169253293, -0.00955507904, 0.000802020193, 0.0106545873, -0.0083704479, 0.0156626683, 0.022472525, -0.00281438581, -0.00231251377, -0.02553696, 0.0204863176, -0.0315807089, -0.011122765, -0.00295271096, -0.0240614917, 0.0187696666, -0.0173935071, 0.00496906694, -0.0103708431, -0.0019560603, 0.0148823727, 0.0122790216, -0.00979626179, -0.00147369539, 0.000166477927, 0.0160599109, 0.0050329091, -0.00766818179, 0.0146411909, -0.0131089734, 0.0205146912, 0.0173509456, -0.00803704932, 0.000367980509, 0.0172941964, 0.00916493125, -0.0147405015, -0.0152228661, -0.00274522323, -0.0105198091, 0.0132508455, 0.00736315688, -0.00324177532, -0.00477399305, -0.0020234494, -0.00745537365, -0.00349537143, 0.01702464, -0.00407882, 0.00426325388, 0.00480591413, -0.027026616, 0.0127755739, -0.00213340018, -0.00331625808, 0.00903724693, 0.0210963674, -0.0164713394, -0.00295093772, 0.00183901587, -0.00041453226, 0.0023373412, -0.0266151875, 0.0021422673, 0.00304847467, 0.0172374491, 0.0075546843, 0.00534857437, -0.0249127243, 0.00190463162, -0.00321517419, -0.0273812972, -0.0230825748, 0.0137119293, 0.0237068124, -0.0101083806, 0.00269556814, -0.0106616812, -0.00996650849, -0.0134494659, -0.00186384341, -0.0215503573, 0.00907980837, -0.00799448695, 0.00960473437, 0.00513931317, 0.00777458586, 0.00629557, -0.00810798537, 0.00788098946, 0.0141517324, -0.027324548, -0.0053202, 0.00944158155, 0.0169962663, -0.0167408958, -0.00311054359, -0.019706022, -0.0154356742, -0.00558266323, 0.0323468186, 0.0010844341, -0.00548335304, -0.0140027665, 0.018741291, -0.00530246599, 0.0182589274, -0.0260760747, 0.0271401145, -0.0063452255, -0.0180177446, 0.00652965903, -0.00240118359, -0.0119598098, 0.0149958711, -0.0122932093, -0.000723547244, 0.00929261651, -0.0113284793, 0.0221178457, -0.0201600119, 0.00815764, 0.0136197126, 0.0180035569, 0.000667241751, 0.0168260187, -0.0177056268, -0.00864709821, 0.0260051377, 0.0250687823, 0.0209544953, -0.0331980474, 0.0117257209, 0.0125769535, 0.00929970946, -0.00222916389, 0.0122151794, -0.00468177628, 0.00670699915, -0.00280374545, -0.0097537, -0.00106936018, 0.0169962663, -0.017691439, 0.00230896682, -0.0230542012, -0.00622463413, 0.010448873, 0.0185568575, 0.000311675045, 0.000892463548, -0.0043235491, -0.0180744939, -0.0333682969, 0.0119030615, -0.0288567655, -0.0194222778, 0.00574936299, 0.0219901614, -0.0189257246, 0.0101296613, 0.0195215885, 0.00121566572, 0.00517123472, 0.00900177844, 0.0162159707, -0.0151944915, -0.00167142949, 0.0021014791, -0.0127188247, 0.00569616072, -0.0185994189, 0.0101793166, 0.00377734215, -0.0167267099, -0.0020376367, 0.00411074143, -0.0179042462, 0.0221887808, 0.00370285939, 0.0155917332, 0.0283318385, -0.00303960778, 0.00106226665, 0.000779852679, 0.0212382395, -0.0222880915, 0.0331696756, 0.0111298589, -0.00310699688, 0.0165564623, 0.0117186271, -0.00718936371, -0.00660414156, 0.00332512497, -0.00792355184, 0.0105623705, -0.0118746869, 0.0111298589, 0.020826811, -0.014556068, -0.0287007056, 0.0210963674, -0.0566920526, 0.00696946215, 0.00414975593, 0.035014011, -0.0052563576, 0.0229548905, 0.0249410979, 0.00527409185, 0.0137261162, 0.00705813197, 0.00301655359, 0.0163720287, 0.0162585322, 0.0186845437, -0.0188406017, 0.0108673954, 0.0291405097, 0.000624680193, 0.00937773939, -0.00238522305, 0.00927133579, 0.00444059353, 0.0103992177, -0.00362128299, -0.00550818071, 0.00236039539, -0.0146837523, 0.00421005161, -0.00462857401, -0.0173367597, 0.023295382, 0.00669281185, 0.0071219746, -0.0190108493, 0.0169678908, 0.00102413853, 0.0130735049, 0.00137438509, -0.00222384371, -0.00563231856, 0.00134246389, -0.00273635634, 0.00419941125, -0.0107184295, -0.0125769535, 0.0121300565, -0.0230116397, 0.00355034694, -0.000776749221, -0.00549044646, -0.00300768646, 0.0035201991, -0.00878187735, 0.00859744381, 0.00753340358, 0.0136906486, -0.0313537121, -0.0103424694, 0.0334817916, 0.000200061695, -0.00919330586, -0.0260760747, 0.00688788574, -0.00981044862, 0.0189257246, -0.0149816833, -0.00789517723, -0.00974660646, -0.00674956059, 0.019635085, -0.0185001101, -0.00571744191, 0.00065438461, -0.0110376421, -0.00293143024, 0.00380216958, -0.00619980646, 0.0130451303, 0.0187696666, 0.00715389568, -0.00619625952, -0.0044654212, 0.00772493053, -0.00266187335, 0.00180443458, -0.00263349898, -0.0174502563, 0.00464985473, 0.0201883856, -0.0044335, -0.000662808248, 0.0259342026, -0.0447748043, -7.79741822e-05, -0.00775330514, 0.00741281221, -0.00970404502, 0.00496906694, 0.00185320305, -0.00893793628, 0.00976079423, 0.0117824702, 0.0196208972, 0.00508256443, 0.0297647454, -0.0193797164, 0.00170157733, -0.0112078879, -0.000367980509, 0.0128252292, 0.0220185351, 0.0166699607, 0.0214794222, 0.00208551856, 0.0399511568, -0.000292389333, 0.0165848378, -0.00101793162, -0.0240189303, 0.00345103652, -0.00197379431, 0.0012005918, 0.00676729437, -0.0298498701, -0.0114632575, 0.0125769535, -0.0107822726, -0.0196208972, -0.0176488776, -0.0267144982, -0.0107964594, 0.0119385291, -0.0146128163, 0.0194932129, 0.02553696, -0.00638069352, -0.00552591449, 0.0016368482, -0.0150668072, -0.00579547137, -0.00350955874, 0.00322936149, 0.0174076948, -0.00286936131, -0.0145205995, -0.0298498701, 0.00605793437, 0.00235862215, 0.00229123281, -0.00350069162, 0.00422423892, 0.00425970694, 0.00264059263, -0.00858325604, 0.000778079266, -0.00624591485, 0.0208977461, 0.00239054323, 0.00723192515, -0.00120325189, 0.00628138287, 0.0131089734, 0.00593024958, -0.0096827643, 0.0209119339, 0.00838463567, 0.0173083842, 0.00730640814, 0.0116051296, 0.00494778622, 0.00169182359, -0.00193477946, -0.0015641388, -0.0202025734, -0.000272881938, -0.0118463123, 0.00641970802, -0.00632039784, 0.0180603061, 0.0113781346, 0.0244019851, -0.00677438825, -0.0112788239, 0.000757241796, 0.0253383406, -0.0141659193, -0.00981044862, 0.00914365053, 0.0136055248, 0.0103282817, 0.0136906486, 0.0236784369, 0.0202593226, 0.014556068, -0.0166983344, -0.0136055248, -0.00134955742, -0.00409655413, 0.00907271449, 0.00889537483, 0.0110447351, -0.000872069446, -0.00489813089, -0.0102786263, -0.00767527521, -0.00451152958, 0.0116547849, 0.00402561808, -0.00673182635, 0.0145702548, 0.0128110414, -0.0159606, 0.00423133234, -0.00549399341, 0.00294384407, 0.022770457, -0.0138821751, -0.00207665144, -0.0126195149, -0.00374187413, 0.0158612896, 0.0172090735, 0.0195215885, 0.0100941928, 0.00730640814, -0.00785261579, 0.0183440503, 0.00707231928, -0.0285872091, -0.0113355732, 0.0193939023, 0.00944158155, -0.000747044745, -0.00781005388, 0.00222029677, 0.00112078886, 0.00516414084, -0.000464187469, 0.00407527341, 0.00787389651, 0.0179326218, 0.00430581532, -0.00213340018, 0.0036922188, 0.00734187616, 0.00610049628, -0.00284276018, 0.0256646462, -0.00811507832, 0.0124989236, -0.00737734418, 0.00543369772, -0.00219546934, 0.0143858213, 0.0242742989, 0.00665025, -0.0159606, 0.0178191233, 0.00497261388, 0.00358936167, 7.36515212e-05, 0.0015029565, 0.0159464125, -0.0205856282, 0.00425970694, -0.0197485834, 0.0188547894, -0.00141605991, -0.000668571796, 0.0220327228, -0.000204938537, -0.00331803155, 0.0120591205, -0.00145507476, -0.00677084131, 0.0134849343, 0.00445478084, 0.017095577, -0.00438384479, -0.0118534062, -0.000188756268, 0.000723103876, -0.0039795097, -0.00636650622, 0.0193797164, -0.00409655413, -0.00610049628, -0.00464276131, 0.0152370529, 0.00982463639, 0.0158471037, -0.00531310635, 0.00488039711, -0.0131657217, -0.0190959722, -0.01940809, 0.00741281221, 0.00419231784, -0.00986010395, -0.026601, 0.0269840546, -0.0105552766, 0.0118817799, 0.00739153149, -0.00387310563, -0.0263881925, -0.00544433808, -0.0210112445, -0.00373123377, -0.0173083842, -0.0285020862, -0.00825695, -0.0261044484, 0.0026920212, -0.0161875952, 0.0136906486, -0.00053468009, -0.0149674965, 0.0131160663, -0.00188867107, -0.00986010395, 0.00618561916, 0.0147972498, 0.0118604992, 0.00463212095, 7.92488136e-05, 0.0147405015, -0.016797645, -0.0128110414, -0.0169537049, -0.0103140948, -0.0100658182, 0.00594089, 0.0115838489, -0.0022876861, -0.0187838525, -0.00742699951, -0.0138325207, -0.0153221767, -0.0237351861, -0.0094344886, -0.00515704742, -0.00825695, -0.00368157844, -0.000809113786, -0.0109879868, -0.0105339959, -0.0118321255, 0.0212524254, 0.00735606346, -0.00312118419, -0.00353615964, -0.00839172862, 0.0268563703, -0.00318325311, 0.0206565633, -0.0179042462, -0.0121087758, 0.0305308551, 0.00493714586, 0.00857616216, -0.000759901945, -0.00365675078, -0.0418806151, 0.000819754147, -3.62438623e-05, -0.0101012867, 0.0126691703, -0.0119669037, -0.0145702548, 0.00397241628, 0.000614483142, 0.000861429085, 0.0604942217, 0.0340209082, 0.0245722309, -0.0246573538, 0.0150526194, -0.00577773713, 0.00528827915, 0.0319212, -0.00795192551, 0.00650483137, 0.0267570596, 0.0257072076, 0.00875350274, 0.00126975437, 0.0197911449, 0.00567488, -0.00152512407, 0.00120857218, -0.003023647, 0.00446896814, 0.0087109413, -0.0108886762, 0.00297399191, -0.0169820786, 0.00456827832, 0.00399724348, -0.00648709713, 0.00459665293, -0.0153647382, 0.0165564623, -0.00315665198, 0.0296228752, 0.0104346862, 0.00820729509, -0.0264165662, -0.00150650332, 0.0115341935, 0.00828532502, -0.00124049338, -0.0271826759, 0.0248134136, 0.0234088805, 0.0110305483, -0.0147121269, 0.0183014888, -0.0154640479, 0.00171931135, -0.00512867281, 0.0103850309, -0.0186561681, 0.0219192244, -0.0143148853, -0.0191810951, -0.00782424118, 0.0109099569, 0.000950542395, 0.0208126232, -0.0145276934, 0.00089157687, 0.00990975928, -0.00428808108, 0.0183724239, 0.00437320443, 0.0131657217, -0.00447251508, -0.027097553, 0.00961892214, -0.0102218781, -0.00210325234, 0.00385182491, -0.0192520302, -0.00705813197, 0.0105765583, -0.00032475387, -0.009853011, 0.0054656188, -0.00555783557, 0.00956217293, -0.00182837539, -0.00540177664, -0.0267003104, 0.00913655665, -0.00126532093, -0.0447180569, 0.00736315688, -0.013364343, -0.0143787274, 0.00396532239, -0.00852650777, 0.0131586287, 0.00817182753, 0.0135700572, 0.0105410898, 0.0112859178, 0.0144780381, 0.0131444409, -0.0173367597, 0.00465340167, 0.00969695114, 0.0155775463, 0.0119527159, -0.00645872299, -0.014853999, -0.0224157758, -0.0103211878, 0.0298782438, 0.00675665401, 0.00746956095, 0.00588768814, 0.0118179377, -0.0129741943, 0.0139672989, 0.00374542084, 0.00545497844, 0.0234798174, -1.11530235e-05, 0.00814345293, 0.00140541955, 0.0101793166, 0.00893793628, 0.0174502563, 0.00358049478, -0.0199897662, 0.00414975593, -0.0073844376, 0.00123428646, 0.00316374563, -0.00256433641, 0.0258774534, 0.00543724466, 0.0104772476, -0.00786680263, 0.00839172862, -0.00070936, 0.01940809, 0.0247708522, -0.0132082831, 0.00187271042, 0.0157619789, 0.0214084852, 0.00545497844, 0.00998778921, 0.00990266539, 0.0100729121, 0.000531133323, 0.00076655217, 0.0033109379, -0.00964020286, 0.0459381528, 0.0137261162, 0.0119598098, -0.00551172718, -0.0134636527, -0.00976079423, -0.00374187413, 0.0148681859, -0.0031655191, -0.00284808036, 0.0155491717, -0.0045469976, 0.0075688716, -0.000895567, 0.0174218826, 0.00601537293, 0.00501162838, -0.00759724574, -0.00747665437, -0.00221852353, 0.00377379521, 0.00913655665, 0.00773911783, 0.0190250352, -0.0300201159, -0.00222029677, -0.00255369605, 0.00711133424, -0.0336520374, -0.0104275923, 0.0168260187, 0.000352906616, -0.004703057, 0.000816650747, -0.00416394323, 0.0509320498, -0.000313005119, -0.00536985556, 0.00226995209, -0.00966148358, -0.00321162748, -0.00856906921, -0.00733478274, 0.00184433605, 0.0101722227, 0.00126798102, 0.00712906802, -0.00344039616, 0.0163152795, 0.00261576497, 0.0161166601, 0.000170357234, 0.0314104632, -0.0216780417, -0.00469241664, -0.0101012867, -0.00859035, 0.00830660574, 0.00739153149, 0.00314069143, 0.00678502861, 0.00844847783, 0.00914365053]
26 Oct, 2021
jQWidgets jqxSlider minorTickSize Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The minorTickSize property is used to set or return the size of the minor ticks of the slider widget. It accepts Number type value and its default value is 4. Syntax: Set the minorTickSize property. $('selector').jqxSlider({ minorTickSize: Number }); Return the minorTickSize property. var minorTickSize = $('selector').jqxSlider('minorTickSize'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider minorTickSize property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider minorTickSize Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', value: 8, showTickLabels: true, minorTickSize: 10 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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 minorTickSize Property
https://www.geeksforgeeks.org/jqwidgets-jqxslider-minorticksize-property?ref=asr7
PHP
jQWidgets jqxSlider minorTickSize Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxSlider minorTickSize Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0129694901, 0.0224948, -0.0114472853, 0.0457891412, 0.0686375871, -3.33042299e-05, 0.0181895755, 0.0340112746, -0.0108322529, -0.00369788054, -0.0231867116, -0.0102325967, -0.00302903308, -0.0192505047, -0.0153988665, 0.00329426583, -0.0342880413, -0.0139689166, -0.032135427, 0.0330579765, -0.0142918089, 0.00294638821, -0.0525852479, 0.0298905615, -0.0114319092, 0.032135427, -0.00177013932, 0.0141918659, -0.0356411114, 0.0167442486, -0.0210341, 0.0129925534, -0.0054891617, -0.0108245648, -0.00265617, -0.0190198682, 0.0152220447, 0.024370648, -0.0461889133, -0.00725737913, -0.0228484441, 0.00470499555, -0.00209495309, 0.0126619739, 0.0171901472, -0.0021641443, -0.00636173831, -0.00465118047, -0.0157448221, 0.00884108711, -0.0151528539, 0.0153911784, 0.0031520396, 0.056890469, 0.020726582, -0.0268154, -0.00557372859, 0.0589508303, -0.00771096535, 0.0013857442, 0.0264156293, -0.0350568295, -0.0054507223, -0.00417453051, -0.014868401, -0.000418029638, -0.0268461518, 0.0411764, -0.0387470238, 0.0363484, -0.0112781515, -0.000247214077, 0.0223871693, 0.00153373636, 0.0142072421, -0.042898491, 0.00418990618, -0.015737135, -0.0390237868, -0.00436672801, -0.0398540795, -0.0267077703, -0.0514781885, -0.0186047219, -0.000291179254, 0.0266155154, 0.0270460378, -0.0288603827, 0.0407151245, 0.0279070828, -0.0185585935, -0.00851050671, 0.0174822882, 0.0105324248, -0.00153181434, -0.00867195241, -0.0167596247, 0.0301211979, -0.0257237181, 0.00487412931, 0.0587970689, 0.0396695733, -0.00590815209, -0.0325352, 0.0142533695, 0.00686914, 0.00962525234, -0.0273996815, 0.00428600516, -0.0168057531, 0.0351490863, -0.0196349, -0.0129156746, -0.0210033469, -0.0498483516, 0.0256468393, -0.00764177414, -0.0121391965, -0.00830293354, -0.0154757453, 0.0071189967, 0.0504326336, 0.0119623747, 0.0365329087, -0.0295369178, -0.000940806931, 0.0273996815, 0.00580820953, 0.0420066938, -0.00769558921, 0.0143148722, 0.0188661106, -0.0137382802, -0.0268000253, -0.00236595166, 0.0266155154, 0.0457891412, -0.00914091524, -0.011132081, -0.0168365035, -0.0272766743, -0.0306439754, 0.015345051, 0.0126773492, -0.0323506892, 0.0148914652, -0.0127081014, 0.0366251618, -0.0353335962, 0.0391775444, -0.034257289, -0.00561985606, -0.0196041483, -0.00585049298, 0.0359178744, 0.00739576109, -0.0308438614, 0.032719709, -0.017759053, -0.0123621458, 0.0331194811, -0.00636558235, 0.0426832289, 0.0287066232, -0.0128772352, -0.0172362756, 0.0128464829, 0.0258774757, -0.0522469766, 0.0316434, 0.00945611857, -0.0197117794, -0.0062848595, 0.00556219649, -0.0365021564, -0.00545841, -0.0106169917, -0.0616262183, 0.00234673196, -0.0117855528, 0.00210264116, 0.00718818791, -0.0189737417, 0.00857969839, -0.00719587598, -0.0277225729, 0.0218490157, -0.00123102521, -0.0280762166, -0.0120085021, -0.0152143566, 0.0170210134, 0.0134000126, 0.0341342837, 0.0162368473, -0.0103709791, -0.011032139, 0.00951762218, -0.023509603, -0.0164521094, 0.0145993251, 0.000109072105, -0.0172977783, 0.00252547557, -0.00510476669, 0.0305517204, -0.00110321387, -0.0419451892, 0.032996472, -0.0408073813, 0.0108706923, 0.013054057, 0.0252470691, -0.0140611716, -0.0161445923, 0.0255545843, 0.0058043655, 0.0336422585, -0.0111397691, -0.00654240418, 0.0111858966, -0.00914860237, -0.00616954081, 0.0101634059, -0.0980976224, -0.0158985797, 0.00209879712, -0.039638821, -0.0109706353, 0.0169748869, -0.0255084578, -0.0174822882, -0.0370249338, 0.012569719, 0.0059888754, 0.0507709, -0.0156756304, 0.00269460957, -0.00131078716, 0.0117624896, -0.00152700942, -0.00488566142, 0.00783012807, -0.00819530338, 0.0126927253, -0.0299059376, -0.0157601982, -0.0318894163, 0.0040669, 0.0113550304, -0.0465271808, -0.00645014923, -0.00849513151, 0.0115087889, -0.00116567803, 0.0291217715, 0.013915102, -0.0179281868, 0.0236633606, -0.00439363578, 0.055352889, 0.0043282886, -0.0246474128, 0.0131078716, 0.00261580851, 0.0251701903, 0.0582742915, -0.0243552718, 0.00715359254, -0.0208957158, 0.00646552537, -0.0438825414, 0.0414839163, -0.00175668544, -0.0474497266, -0.00125697185, -0.0146300765, -0.0165136121, 0.00701521, 0.0268461518, 0.0206035767, 0.0091255391, 0.0303825866, 0.0843824074, 0.025908228, 0.0192658808, 0.017359281, -0.0204344429, -0.0110936416, -0.00718818791, -0.00764946174, -0.0254623294, 0.0391775444, 0.0126927253, 0.0166058671, 0.0117932409, 0.00693448726, -0.0223717932, -0.0212186072, 0.00825680606, -0.0459429, -0.00987126585, -0.0276918206, -0.00861045, 0.0239093732, 0.026769273, 0.0189276133, -0.00658468762, -0.0208649654, 0.00495485263, 0.0243860241, 0.00725353509, -0.0265386365, -0.0521854758, -0.0233865958, -0.034841571, 0.0315819, 0.0120161902, 0.00200077635, -0.0231405832, 0.0139535414, -0.0119393114, -0.016498236, 0.039638821, 0.0537845604, -0.00269653136, -0.0160062108, -0.0247242916, 0.00726891076, -0.0142149301, -0.0215722509, 0.0249395519, -0.0281530954, -0.0323199369, -0.032442946, -0.0210802257, 0.0202038046, -0.00819530338, -0.0180665683, 0.0441900566, 0.000523738272, -0.0167442486, 0.0084336279, -0.0052969642, 0.0168365035, -0.0374554545, -0.0407151245, 0.00521624135, 0.0435750261, 0.0160830896, 0.00143571559, 0.009594501, 0.0323199369, 0.0328427143, 0.0124851521, -0.00489334948, -0.00446667057, -0.0224640481, 0.00347493147, -0.014868401, 0.0127542289, 0.00507017085, 0.00706518162, -0.00184894027, 0.0369941816, -0.0387777761, -0.0110398261, -0.0296445489, -0.0367789194, 0.00786087941, -0.0337037593, -0.0130386809, -0.0187584795, 0.0480340086, -0.022740813, 0.0176821742, 0.0071805, -0.0295984205, -0.0317971595, 0.0201269258, -0.0462504141, 0.0456661358, 0.00830293354, 0.0309822429, -0.015929332, 0.0236326084, -0.0208957158, -0.0102479728, 0.0140765477, 0.00891796593, -0.0454508737, 0.0131232478, 0.00688836, -0.0350568295, 0.0192966331, 0.0112627754, -0.0295676682, -0.0265078843, 0.0127849802, -0.0282761, 0.0150529109, -0.0330272242, 0.00644246163, -0.00965600461, -0.000644822721, 0.00729581853, -0.0388700292, -0.00533924764, 0.0273996815, -0.000890835596, -0.000982129364, -0.00907172356, -0.0325659513, 0.0430522487, 0.032442946, 0.025047183, 0.012669662, 0.0331502296, 0.00954068545, -0.0252163168, 0.0384087563, -0.00365367508, -0.0305670965, 0.014199554, 0.00524699269, -0.00472805928, -0.0323506892, 0.0200654231, 0.0794006437, -0.0212186072, -0.0328119621, 0.0133231329, -0.0227869395, -0.0209418442, 0.0513244309, 0.0101019023, 0.0520317182, 0.00441285549, 0.013046369, -0.0387470238, -0.0145685729, -0.0147838341, 0.0251855645, 0.0378552265, -0.0292294, 0.0100173354, -0.0569519736, -0.0152527969, 0.0349953286, 0.0140381083, -0.0050202, -0.0511399209, -0.00139823707, -0.0132308789, 0.0313051343, 0.00266577979, 0.029936688, -0.00936386362, 0.0408073813, -0.0265078843, -0.0314588919, -0.0102325967, -0.023417348, 0.00270614121, -0.0111397691, -0.0357641168, 0.0232020859, 0.0276918206, -0.0198962893, 0.0414839163, -0.0225409269, -0.0144993821, 0.0159139559, 0.0583665483, 0.0171440206, 0.0126158465, -0.0221565329, 0.0182203259, -0.000197482965, -0.00275611272, 0.0310591217, 0.0146531397, 0.0332424864, 0.026200369, 0.0154065546, 0.0139458533, 0.0427447334, -0.0357948691, 0.0272305477, 0.0122006992, 0.00375938392, 0.0271382928, -0.00564676384, 0.0016625087, 0.00381127722, 0.0215415, -0.00250817789, -0.0515704416, 0.00540075079, -0.000821644499, 0.000347397057, 0.0486797914, -0.0335192494, 0.0583050437, 0.033303991, 0.00522777298, -0.0216337554, -0.0135922097, -0.0165904909, -0.000187272468, 0.0252316929, -0.00335576897, -0.0305824727, 0.00154526823, -0.0160062108, -0.0582435429, -0.0129310507, -0.0252624433, 0.0147684589, -0.0112627754, 0.0249703042, 0.0224179216, 0.00482415827, 0.013815159, 0.0290141404, 0.0329042189, -0.012469776, -0.043175254, 0.038255, 0.029075643, -0.0222180355, -0.0252009407, 0.0228330679, -0.000682781741, -0.0349338241, 0.0249549281, -0.0156602561, -0.00646168133, -0.0162983518, 0.0270767882, -0.0138843497, 0.0145301335, -0.021587627, -0.00483953394, 0.026477132, 0.035702616, -0.0114088459, 0.00044878124, 0.0112320241, 0.0247396678, 0.036256142, -0.00354027865, 0.00359601597, -0.018327957, -0.00397464493, 0.0167596247, 0.0252009407, 0.00301365741, -0.0301827, -0.00714206044, 0.0102402847, 0.00229291664, 0.025708342, 0.0202960595, 0.00603500288, -0.0278148279, 3.03311735e-05, 0.0387777761, -0.0125005282, 0.00762255443, 0.00679610483, 0.0185585935, -0.00412840303, -0.0189583655, -0.00179032, 0.00530849583, 0.0177744273, -0.00676535349, 0.00412840303, 0.0167442486, -0.00392851746, -0.0210494734, 0.0162368473, 0.0173746571, -0.0040015527, 0.00794929, -0.0110705784, -0.0175284147, -0.0352720916, 0.0112320241, -0.0147607708, 0.029936688, -0.0212032329, 0.0152758602, -0.0113857817, 0.016129218, -0.0147915222, 0.00484722201, 0.0361331366, -0.0455123782, 0.00967906788, 0.0490795635, -0.00428600516, 0.0127542289, -0.018620098, -0.0219412707, -0.00871808, 0.013146312, -0.0226946846, -0.0187431034, -0.0214338694, -0.0308131091, 0.033980526, -0.0151144145, -0.00583511731, -0.00242553302, -0.0185432192, -0.0112166479, -0.00449357834, -0.0168826319, 0.00560063636, -0.00307516055, 0.00280416198, -0.000429561507, 0.0451433584, -0.0161138419, -0.0128234196, 0.0255084578, 0.0229406971, -0.0467116907, 0.0097559467, 0.00737269735, 0.00318471319, -0.0081107365, 0.0146608278, 0.0316434, -0.00793391466, 0.0252163168, -0.0146685159, 0.0252009407, 0.0499406084, 0.0101019023, -0.0264925081, 0.0443438143, -0.0125389677, 0.00294831023, -0.00564676384, 0.0285682417, 0.0180973206, -0.000216942964, -0.019957792, 0.0393928066, 0.00143859861, 0.0105631771, 0.018420212, 0.0228791945, 0.0182357021, -0.0145070702, 0.024847297, 0.0297983065, -0.0145685729, -0.0155756883, 0.0367481709, -0.00272920495, 0.0264156293, -0.00921779405, 0.0372709446, 0.0312282555, -0.00457430119, 0.0200346708, -0.000680859783, 0.00300212554, 0.0274611842, 0.0148222744, 0.00656931195, -0.00873345602, -0.0396695733, -0.00272920495, 0.0178051796, 0.00231598038, -0.00940999109, 0.0102095334, 0.00886415, 0.00017009482, 0.00688836, -0.0155987525, 0.00508554699, 0.00916397851, 0.00858738553, 0.0146300765, 0.017851308, 0.0157601982, 0.0346570611, 0.0411456488, 0.0132693183, -0.000392563466, 0.00731503824, 0.0138766626, -0.0395465642, -0.0423757136, -0.0107861254, -0.00841056462, -0.0102479728, 0.0237556156, -0.0101864692, 0.00783397164, 0.00104267162, 0.0177744273, -1.946e-05, -0.0130386809, 0.0276149418, 0.0292140264, 0.0248934254, 0.0437287837, -0.0105785523, 0.0176052935, -0.0145685729, -0.00745726423, -0.00822605472, 0.0125312796, 0.0198809132, 0.0153758032, 0.00258697895, -0.0364406519, -0.0128926104, -0.0117471134, 0.0276456941, -0.0321969315, 0.00558141666, 0.0069460189, -0.00535077928, 0.0412071534, 0.0326274522, -0.00347493147, -0.00473959139, 0.0198501609, -0.0219874, 0.00722278329, 0.0159139559, -0.00675382139, 0.0104862973, -0.0351798385, -0.00941767916, 0.00531234, -0.0112474, -0.0304748416, 0.0180050656, -0.0249549281, 0.0286143702, 0.0059581236, 0.0145685729, -0.0341035314, 0.00364598725, -0.0237709917, -0.0157601982, -0.0158063248, 0.0133769484, -0.0133769484, 0.0295830444, -0.0112550873, -0.0151144145, 0.00487797335, -0.0469884537, -0.00641555386, 0.0023352, 0.0218028892, -0.0271075405, -0.0010561255, 0.0221719071, -0.0380089842, 0.0192658808, 0.000816359, 0.043175254, -0.00261196448, -0.0053161839, 0.00468962, -0.0152758602, -0.00697292667, -0.00561985606, -0.00621566828, -0.0177436769, 0.0061311014, 0.0127926683, 0.0143533116, 0.00232366822, -0.0174976643, 0.00807998423, 0.017267026, -0.00294446619, 0.00641555386, 0.0160830896, -0.00344610191, 0.00334423711, 0.0188353583, 0.0253700744, -0.0176821742, -0.0158370771, 0.0128926104, 0.0190506205, -0.0210033469, 0.00589662045, -0.0137767196, 0.031274382, 0.0433905162, 0.0161138419, -0.00299059367, -0.0328427143, 0.0211571045, -0.0268769041, -0.00573517429, -0.0176360458, 4.04215461e-05, -0.0244167745, -0.00894871727, -0.00108591607, 0.00749570411, 0.0321046747, 0.0112397121, 0.0178359319, 0.0313051343, -0.031858664, 0.0341035314, 0.0280608404, -0.0323814414, -0.0224332958, 0.0357948691, -0.00535846734, 0.00849513151, 0.0132539421, -0.00440516742, -0.0185432192, -0.00441285549, -0.0355796069, 0.000355325203, -0.0229714494, 0.0103940424, 0.0358256213, 0.0134538272, 0.00412840303, 0.0101557178, 0.00731503824, 0.015544937, -0.024847297, 0.0148299616, -0.00586202508, 0.0172516517, -0.00906403549, 0.00920241792, 0.0284298602, 0.00327889, 0.0200192947, 0.0174207855, 0.030321084, 0.0157217588, -0.0258467253, 0.0048087826, -0.0029598421, 0.0166212432, 0.0147530828, -0.0186047219, -0.0186816, 0.0171440206, 0.00443207519, -0.0253854506, 0.0384395085, -0.0250318069, -0.00759180263, -0.0262157433, -0.0287681278, -0.00538921915, 0.0155603122, 0.000160244701, 0.0236326084, -0.0187738556, 0.0127772922, 0.0102633489, -0.0447743386, 0.0200654231, -0.00618107291, -0.0256929658, 0.0585818104, -0.0167134982, -0.0109475721, -0.006477057, -0.0428369865, 0.0344725512, -0.00205266965, 0.0010561255, 0.00617722888, -0.0110705784, 0.003742086, -0.0196349, 0.0176821742, -0.0439748, -0.00361715769, 0.0222795382, -0.0110705784, 0.00203729398, -0.012954114, 0.000285893824, 0.00850281864, -0.0129925534, 0.0144071272, -0.000415386923, -0.00139823707, -0.00278878631, 0.00938692782, 0.0388700292, -0.0107861254, 0.0112089608, 0.0450511, 0.001403042, 0.0184970908, -0.0344110467, 0.0218028892, -0.0276764445, -0.00430522487, 0.0220335256, -0.00321738678, 0.0172362756, -0.0429907441, 0.0209725946, 0.017759053, 0.0304440893, 0.0189122371, -0.0358871259, -0.036256142, -0.00685760798, -0.00517395791, 0.0194503907, -0.00343457, 0.00774171669, 0.0467731915, -0.00618876051, -0.0128311077, -0.0202191807, 0.0241707619, 0.0261542406, -0.0505248867, -0.0131770633, 0.0279070828, 0.0343495421, -0.00537384301, 0.00495869666, -0.000328417547, -0.0242476407, -0.0407458767, -0.0128003564, -0.0249856804, 0.00776862446, -0.0271690432, 0.00805692095, 0.019957792, 0.00105035957, 0.0220489018, -0.0176206697, -0.0130156176, 0.0277687, -0.00160292746, 0.00535462331, 0.00854125898, -0.0148607139, -0.0153758032, 0.00785703491, 0.00100231019, 0.00920241792, 0.00301365741, 0.0109552592, 0.0112166479, -0.018327957, -0.0219412707, 0.00370364659, 0.0403461084, -0.0160830896, -0.000100663463, -0.000247694581, 0.0284298602, -0.0303979628, 0.0320124216, -0.00556988455, 0.0120546296, 0.00775709236, 0.0228791945, 0.00977132283, 0.00924085733, 0.00575823803, 0.0121238204, -0.00184605736, -0.0173131544, 0.0219412707, 0.00334615912, -0.0266001392, 0.00881802291, -0.0297829304, 0.0194042642, -0.0121622598, 0.0265078843, -0.0163444784, -0.0264310054, -0.00315780542, -0.0516934507, -0.011708674, 0.00264463807, 0.0122006992, 0.0229714494, -0.00624257606, -0.0308438614, -0.000994622242, -0.0168211292, -0.00721509568, -0.0397925787, 0.0178820584, -0.0215722509, 0.0271075405, 0.0132155027, 0.0142072421, 0.0150913503, 0.00273304898, 0.000187632846, 0.00763024203, 0.0340420268, 0.00879496, 0.0326889567, 0.000239406058, 0.00544687826, 0.00638480205, -0.0112089608, -0.0082875574, 0.028106967, 0.0089410292, 0.018620098, 0.0162829757, -0.000300548912, 0.0172977783, 0.0127849802, -0.0131232478, -0.0126081584, -0.0367789194, 0.00186623808, -0.00766483787, 0.0357948691, 0.00390929775, 0.00324045052, 0.00714206044, 0.00638095802, 0.0163291022, -0.0118470564, 0.0211417284, 7.63985227e-05, -0.013715216, 0.00276764459, 0.00779553223, 0.0162522234, -0.00158562965, -0.000603019784, -0.00700367801, 0.00482031424, -0.0190506205, 0.026108114, 0.00905634835, 0.007964666, -0.0182049498, 0.00628870353, -0.0151912933, -0.0282453503, 0.0111782085, 0.00139247114, 0.0158832036, -0.00197771261, 0.00888721365, -0.0282607265, 0.011032139, 0.0184048358, 0.0189429894, 0.0180050656, -0.000788970909, -0.000502116047, 0.0136767766, 0.00394773763, -0.0106938705, 0.0434212685, 0.00344802369, 0.00714590447, 0.0101480298, -0.00683838828, -0.0166366193, 0.000743804441, -0.0327504613, 0.000430762739, -0.0229253229, -0.00319240103, -0.00997889601, -0.0103709791, 0.0164213572, -0.0218951441, -0.00894871727, -0.0190659948, 0.0846899226, 0.0079416018, 0.00831831, -0.0156756304, -0.0496638417, -0.0386240184, -0.0236633606, -0.000620798033, 0.0378244743, -0.0121468846, 0.0140765477, 0.0126235345, 0.00607728632, 0.00291755865, -0.00851050671, -0.0242322646, -0.0211724807, -0.0149529688, 0.0286143702, -0.0279378332, -0.0121315084, 0.0187584795, 0.00643477356, -0.00924085733, 0.0107938135, 0.00141361286, -0.039915584, 0.00551222544, -0.0453586169, 0.00836443715, 0.0132616302, 0.0254469533, 0.0302595794, -0.00822605472, -0.000258986169, 0.030797733, -0.00194311712, 0.0148760891, -0.0058043655, -0.00866426528, -0.0227254368, 0.0090871, 0.0131693752, 0.00550838141, 0.012761916, -0.00212378288, -0.0448050909, 0.0148068983, -0.0278148279, 0.0316434, -0.0136844646, 0.00586971268, -0.0436057784, -0.00457430119, -0.0115702916, -0.0107092466, 0.00356334238, -0.0420682, 0.0128772352, -0.0330579765, -0.000209375197, -0.000414425944, 0.00750339171, 0.00326351426, -0.00371517846, 0.0125927823, -0.0125927823, 0.0194042642, -0.0199885443, 0.0212493595, 0.0271229167, 0.020249933, -0.00455508148, -0.0076187104, 0.00307131675, -0.00493947649, -0.00993276853, -0.00126273779, 0.0105093615, -0.0262618717, -0.0372709446, -0.00285989931, -0.00274458085, 0.00370364659, -0.0106016165, 0.00700367801, 0.00319624506, 0.00418221857, 0.00141169096, 0.00245820661, -0.010455546, -0.0204651933, -0.0346263088, 0.0021449246, -0.00985589, -0.0114626614, 0.0157140698, -0.0111551452, -0.00938692782, -0.00123486912, 0.00134442176, 0.0200192947, 0.0168980081, 0.00606575422, 0.00545841, -0.0231098309, 0.0417299308, 0.0019719468, -0.0440670513, 0.0256775916, 0.00315588363, 0.0128618591, -0.0201269258, 0.00854125898, 0.00582742924, 0.0182357021, -0.012093069, 0.0110705784, 0.00881802291, 0.0130309928, -0.029367784, 0.00367673882, 0.035395097, -0.014299497, -0.00276764459, -0.0203114357, -0.0140304202, 0.0196656529, -0.000292861, -0.0299674403, -0.0275226869, 0.0245859083, -0.0186662246, 0.0187277272, -0.00966369174, 0.0102941, -0.0165289883, 0.0255084578, 0.0023409659, 0.0142379934, -0.0160062108, 0.0109552592, 0.00990201719, -0.00305401883, 0.0186662246, 0.0309053641, -0.00906403549, -0.0030809266, 0.0188814867, 0.0129079865, -0.0303979628, -0.00709208893, -0.00496254, 0.0143379364, 0.0026292624, -0.0192505047, -0.0202038046, -0.0136537133, -0.0156833194, -0.0119008711, 0.0206804555, 0.00988664106, 0.000178263217, 0.00493947649, 0.0165751148, -0.00410918333, -0.00750723574, -0.0172516517, -0.00277148839, 1.23126547e-05, -0.00914860237, 0.00200462039, 0.0204805695, 0.00325967022, 0.0486182906, 0.0111397691, 0.00858738553, 0.012285267, 0.0127465408, 0.00311360019, -0.00706518162, 0.00708440132, -0.0101787811, -0.00331348553, -0.0128311077, -0.0242168903, -0.0164828598, -0.00970213208, 0.0111090178, 0.0122160753, -0.0213416144, 0.0278609544, 0.0314435177, 0.00148088206, 0.0334269963, 0.021110978, 0.00905634835, -0.0373016968, -0.00773018505, 0.0163598545, -0.0155910645, 0.00616185321, 0.0381934941, 0.00491256919, 0.00363445538, 0.00422834558, -0.00392083, -0.00584664894, 0.00570826698, -0.0222180355, 0.0155603122, -0.0325352, 0.00486259768, -0.00389776612, 0.000497311121, 0.00316164945, -0.00497407233, -0.0309207402, -0.0113089029, 0.0120546296, -0.00153661927, 0.00674613332, -0.0289526377, -0.00803385675, 0.00522777298, -0.00775709236, -0.0245397817, 0.00702289818, -0.00140496402, 0.019096747, -0.0225563031, 0.0211878568, 0.0341035314, -0.00631945487, 0.0206650794, 0.0299520642, -0.0145685729, -0.0312128793, -0.00474343542, -0.00370941241, -0.0210494734, 0.0302595794, -0.0131309358, 0.0464964285, 0.00932542421, -0.000182707779, 0.00911785103, -0.0134768914, -0.0298598092, 0.003982333, -0.0013165531, 0.0129694901, 0.0160830896, -0.0218028892, 0.00357679627, -0.00434366427, -0.0189429894, 0.0107938135, 0.00415915484, -0.0535077937, 0.00528158853, -9.68195091e-05, -0.026677018, 0.0115702916, -0.0317356586, 0.00436672801, -8.39663e-05, 0.00455508148, -0.00404768, -0.00427831709, -0.00417837454, 0.00584280491, 0.0162060969, 0.0100404, 0.0298598092, -0.0311513767, 0.0146531397, 0.00637327041, -0.00586586865, -0.0105170496, -0.00306939473, 0.00687682768, 0.00392851746, 0.0118393684, -0.0266155154, 0.0333654918, -0.00375361787, 0.023417348, 0.00565829547, 0.0140457964, 0.0110782664, 0.00526236836, -0.00549685, 0.00176917831, -0.00193542917, 0.0181434471, 0.0283529814, -0.0276149418, 0.0215261243, -0.0338575169, 0.0137459682, -0.00420528231, 0.0245397817, -0.00749954768, -0.0123928972, 0.00360562583, 0.0139074139, -0.00927161, 0.00297329598, -0.0349338241, -0.00917166658, -0.0324121937, -0.0135460822, 0.00351913692, -0.0115779797, -0.0195887722, -0.000265953335, -0.00653087208, 0.00665772287, -0.0237709917, -0.00272536115, -0.00294062239, -0.0477879941, -0.0054507223, -0.00507017085, 0.00410918333, 0.000834617822, -0.0287527516, 0.0163444784, -0.0204036906, -0.00782628357, 0.00137036841, -0.0266155154, 0.0117624896, -0.0112858396, 0.0116241071, -0.00482031424, -0.0358563736, -0.0118316803, 0.00546609797, -0.0196195245, 0.0234942269, -0.0063040792, 0.0145455096, 0.00729581853, -0.00280992803, -0.00418990618, -0.00238517136, -0.0209264681, 0.0108245648, 0.00175380253, -0.0147530828, 0.0257237181, -0.000589085452, -0.00866426528, 0.0446513332, 0.00158274674, -0.00826449413, -0.010171094, -0.00153854128, -0.0145378215, 0.00832599774, 0.00646936893, 0.011800929, 0.0105170496, -0.0297214277, -0.0170210134, -0.0131847514, -0.00318663521, -0.019096747, 0.000998466159, 0.00412840303, 0.0217260104, -0.0111551452, 0.0209418442, 0.00533924764, 0.0296291728, -0.0151451658, -0.0238478705, 0.00316357147, -0.0263079982, -0.00904866, -0.00222372543, -0.0210033469, 0.0243091453, -0.00298482785, 0.00694986293, -0.000675093848, 0.0162676, 0.00854894612, 0.0218490157, 0.0266001392, -0.00345763378, 0.000248415308, -0.000251058023, 0.00487028575, -0.00817992724, 0.00098068791, -0.0149990954, -0.0111858966, 0.00704596192, -0.00247358228, -0.0135998977, 0.00872576796, 0.0174054094, 0.00761102233, -0.00757258292, -0.0264925081, -0.00664234674, -0.0323199369, -0.00174803659, 0.00149241393, -0.0132693183, -0.00573517429, 0.00939461589, 0.00191332644, 0.00320393289, 0.025616087, 0.00355181051, 0.0140304202, -0.0304133389, 0.0170517657, -0.0224948, -0.0104401698, 5.7599198e-05, -0.0350260809, 0.0114857247, 0.00378629146, -0.0144225033, 0.0334269963, 0.00782244, -0.0144993821, 0.0168057531, -0.00562754367, -0.00640402175, -0.0157601982, -0.0260927379, 0.0117394254, 0.0127311647, 0.0320431739, -0.0395158119, -7.06926585e-05, 0.00699214637, 0.0153604271, -0.00172593386, -0.00914091524, 0.0151759172, -0.0061426335, 0.0166827459, 0.0043167565, 0.010839941, -0.0101403417, -0.0187892318, 0.0059888754, 0.00321546476, 0.00442054356, -0.0038285749, -0.0093408, 0.00506632729, -0.00758795859, 0.00795697793, -0.00914860237, -0.0143763758, 0.00491641322, 0.0304902177, 0.00402077241, -0.00362676755, 0.00993276853, -0.00911785103, 0.0246781632, 0.0117548015, -0.00435519638, 0.00488566142, 0.00318279117, 0.00675766543, 4.86199715e-05, -0.00554682082, -0.00225255522, -0.0170671418, -0.00251970976, -0.00156256603, 0.0171286445, 0.0092869848, 0.0169748869, 0.024570534, 0.017559167, 0.00330003165, 0.00117048295, -0.00224871119, -0.00869501662, 0.0129771773, -0.00103017874, -0.000475929148, 0.00210071914, 0.0188507345, 0.0220796522, -0.000630407943, 0.0166827459, -0.0183587093, -0.0128618591, -0.00534309167, 0.000314242963, -0.00829524547, -0.0226178057, 0.000119222532, 0.0119008711, -0.00109456503, -0.00699599041, -0.00617722888, 0.0158832036, -0.00155968301, -0.0102325967, -0.0306901019, 0.0382242464, 0.0240631308, -0.00132808497, -0.0117778648, -0.0225255508, -0.0212186072, 0.0200808, 0.0239093732, 0.00689989142, 0.00319816708, -0.0153296757, -0.000568424235, 0.00492794486, -0.0107323108, -0.0105785523, -0.00383818476, 0.0127849802, 0.00801848155, 0.0261388645, -0.0100019602, -0.0149299046, -0.0155833764, -0.0164213572, 0.00303864316, -0.00829524547, 0.00883339904, 0.0247704182, -0.0259543546, -0.0156218158, -0.0288911331, -0.000384635321, 0.00142322271, -0.00136460247, 0.00303095509, -0.0279839616, -0.00406305585, -0.0341957845, -0.00110225286, -0.00117913191, -0.00810304843, 0.021110978, -0.00553528918, -0.00247166026, 0.00434366427, 0.00904097222, -0.0120623177, 0.0179589372, 0.000634251861, 0.019957792, -0.000762063253, -0.00113877037, 0.0190044921, 0.00443976326, 0.000287815812, -0.00513167446, -0.00714590447, -0.0226793084, -0.00703827385, -0.0164828598, 0.0337345116, 0.00998658407, 0.000736116548, 0.0350875817, -0.0165751148, 0.00385740446, -0.014683892, 0.00609266199, 0.0188353583, -0.00175572454, 0.0102941, 0.0106861833, -0.00351721491, 0.0182203259, 0.00438979175, 0.0119393114, -0.0127311647, -0.0111013297, 0.00503173145, 0.0143840639, -0.0268461518, 0.00109360402, 0.000224630872, -0.00291948067, -0.0110859536, -0.00999427214, 0.00488181738, 0.00403614808, -0.0241707619, 0.0150144715, -0.00572364265, 0.00577361416, -0.00425909739, -0.00620798, -0.00915629, 0.0292909052, -0.0405306183, 0.00341535034, 0.00643477356, -0.00717665581, 0.00620029261, 0.00575823803, -0.000379349891, -0.0137767196, 0.00779553223, 0.00878727157, 0.0122391395, 0.0102556609, -0.00270998525, 0.0271075405, -0.0145070702, 0.00240054727, 0.00909478776, 0.0184970908, 0.0172362756, 0.00785703491, -0.0114088459, 0.00641171, 0.00556219649, 0.0191736259, 0.00689989142, -0.0137690315, 0.00560448039, 0.0240477566, -0.0145531977, -0.0073035066, -0.0187892318, -0.00972519536, 0.00871039275, -0.00453970581, -0.0190813709, 0.00311744399, 0.00595427956, -0.0115933558, 0.00821836665, -0.00200654217, 0.00174611458, 0.00334231509, -0.00676535349, 0.00621566828, 0.0082875574, -0.0103479158, 0.00358064, -0.0125235915, -0.00649627671, 0.00335000316, -0.00590046449, -0.00798004214, -0.0245244056, 0.0109168198, -0.00817992724, 0.0147069553, 0.0238939971, -0.0121084452, 0.0139766047, 0.0200808, -0.0138612865, -0.00664619077, 0.00467808824, 0.010555489, -0.014776147, 0.0130694322, 0.0260158591, 0.00256968103, 0.0118624317, 0.00407843152, -0.0138766626, -0.00538537512, 0.00262734038, 0.00238709338, -0.0112704635, -0.022448672, 0.0143686878, -0.0157909505, 0.000644822721, -0.00622335635, -0.0115779797, -0.026677018, 0.000297665945, 0.012085381, -0.0253085718, -0.0130002415, 0.026108114, -0.0162368473, -0.010939884, 0.0193581358, 0.0102479728, 0.0129233627, 0.016790377, -0.0116932979, -0.0236172341, -0.0149529688, 0.00401308434, -0.00884108711, -0.0084336279, -0.00259851059, -0.0110628903, -0.00203729398, -0.0128695471, 0.00401308434, 0.00151163363, 0.0102633489, -0.000906691886, 0.00710362103, -0.00301942322, 0.0162676, 0.00722278329, 0.0271844193, -0.00580052147, 0.0191736259, -0.00476265512, -0.0118778078, -0.0189122371, -0.00416684244, -0.00493947649, -0.0187584795, 0.00727659883, -0.021787513, -0.00102633482, 0.0200039204, -0.00141265185, 0.000185470621, -1.14117283e-05, 0.000438931136, -0.00905634835, -0.00423987769, 0.00791853853, -0.00964831654, 0.0293985344, 0.0217260104, -0.0069652386, -0.0202653091, -0.00515089417, 0.00320585491, 0.0188199822, 0.0129002985, 0.00081732, 0.0183740854, 0.0007269872, 0.00600809511, 0.012669662, -0.0217721369, 0.0252778195, 0.00041826989, 0.00452817418, 0.011700986, 0.000873537792, 0.00948687084, 0.0259851068, -0.0118778078, 0.0148837771, -0.0268000253, -0.00460505299, -0.0188199822, 0.00568904728, 0.00745726423, -0.0202345569, 0.0274765603, 0.00337306666, -0.00520855328, -0.00536999898, -0.00527005643, 0.00163271802, 0.0149529688, -0.00163656205, 0.0100865271, 0.00697292667, -0.00122237636, -0.00515089417, -0.0136921527, -0.00280800601, 0.00926392153, -0.000253941, -0.0141226752, 0.00890259, 0.00788778719, 0.034257289, -0.0136690885, -0.0141918659, 0.0279224589, 0.0196810272, -0.00436672801, 0.026477132, -0.00459736492, 0.0109783234, -0.00114069239, 0.0147300195, 0.00187873095, 0.0320739262, -0.0311513767, -0.0105708642, 0.00680763694, -0.00725737913, 0.0103248516, -0.00127138675, 0.00903328415, 0.0124236485, -0.00470499555, 0.0117701767, -0.000940326427, -0.0054507223, 0.00383626274, -0.0130848084, -0.0249241758, 0.016129218, -0.00701521, 3.60670674e-05, -0.012954114, 0.0147530828, -0.0191121232, 0.0030847704, 0.00327120209, -0.00277917646, 0.0144455666, -0.0146223884, -0.00880264677, -0.0161753446, -0.0161907207, -0.00395158119, -0.0185432192, -0.0322584361, -0.00620413665, -0.00616185321, 0.0144455666, -0.000132496178, 0.000486259756, 0.00950993411, 0.00515089417, 0.0111935847, 0.0302134529, 0.00590046449, 0.0104709221, 0.00555066485, -0.0163752306, -0.0182664543, -0.00829524547, -0.00346532161, -0.00403614808, 0.0199270397, -0.00502788741, 0.00437826, 0.00574670639, 0.0115395403, 0.015737135, 0.0162829757, -0.0141303632, -0.0135614583, 0.00165193784, 0.00321546476, 0.00401308434, 0.000960026693, 0.00218336401, 0.000882667198, 0.0109860115, -0.0187277272, -0.0133461971, 0.0024755043, -0.0136537133, 0.019957792, 0.0111013297, 0.00947918277, -0.00482031424, 0.0351798385, 0.00816455111, -0.0248934254, -0.00264463807, -0.0238939971, 0.00387278036, 0.018620098, 0.0124313366, -0.0128080435, 0.0111782085, -0.00739576109, -0.00308861444, -0.00722662732, 0.0279378332, 0.0267385207, -0.00631561084, -0.00453970581, -0.000595331891, 0.00622720039, 0.00359025, 0.00215645647, 0.0233712196, -0.0137613434, 0.00351529289, -0.00586586865, 0.0355181061, -0.00278686429, -0.0201269258, 0.00344610191, -0.00989432912, -0.0129694901, -0.0118854959, 0.0128618591, 0.00290410477, 0.00693448726, 0.0234481, -0.0103556029, 0.0225563031, 0.0195272695, -0.00405536825, -0.0152451089, -0.00884108711, 0.014484006, -0.0292294, 0.00257736887, 0.00275995652, -0.00556604052, 0.0126465978, -0.0141149871, -0.00498560397, -0.00625026412, 0.00699983444, -0.012477464, -0.0116702346, 0.0325044468, 0.00239478122, 0.0177744273, 0.00982513838, 0.00953299738, -0.0148376497, 0.020818837, -0.0172362756, -0.00072170177, -0.0165136121, 0.00578130176, -0.00791853853, -0.013722904, -0.00359025, -0.0120776929, -0.00879496, 0.0136921527, -0.0139766047, 0.00279263, 0.00907941163, 0.00861045, 0.0173131544, 0.0176821742, 0.00310591212, -0.0139996689, -0.000915821234, 0.0197117794, -0.0274304319, 0.00712284073, -0.0018691211, 0.0127004134, -0.00388431223, -0.0073035066, 0.0237709917, -0.014484006, -0.00980976224, 0.00878727157, -0.0168980081, 0.0152989235, 0.000288056064, -0.0173746571, -0.000636654324, -0.00869501662, 0.0355181061, 0.00303672114, 0.00250049, 0.040776629, -0.0110244509, 0.00524699269, 0.0138612865, 0.016698122, -0.0187738556, 0.00325774821, 0.0138997259, -0.0056506074, -0.00353643461, 0.0107015586, 0.00235057599, -0.0052969642, -0.0125082154, 0.0263387505, -0.0127849802, 0.0010551645, 0.0110936416, -0.00166058668, -0.00549685, -0.0225255508, -0.0135383941, 0.0220642779, -0.00191620947, 0.0307669826, -0.00468577584, 0.00656546792, 0.0153988665, 0.00113973138, 0.00954837352, 0.00823374279, 0.00430138083, -0.0294907894, -0.00670000631, 0.0046242727, -0.0165751148, -0.0190813709, 0.0062733274, 0.0113857817, -0.0192658808, -0.00230444851, 0.0305055939, -0.0159754585, 0.00670769392, 0.0224948, 0.0137920948, 0.00130886526, -0.0129694901, 0.00758411502, 0.0320124216, -0.00115222426, 0.00714206044, 0.0158217, -0.0110167628, 0.00887952652, -0.00362484553, -0.00289449492, -0.0084720673, -0.00490103709, 0.0173285306, 0.00781475194, -0.0119162472, 0.0119162472, -0.00175284152, 0.0149452807, 0.0251855645, -0.00391890761, 0.00353451259, -0.0117932409, 0.014007356, -0.0197732821, 0.00792622659, 0.00641939789, 0.000332501746, 0.00621182425, -0.00435904, 0.00771865295, 0.013054057, 0.00667694258, -0.00782244, 0.00861045, 0.0223102905, -0.0211878568, -0.013722904, 0.0228945706, 0.00581974164, -0.000580917054, 0.0105016734, -0.0265386365, -0.00476649869, 0.00502788741, -0.00749570411, 0.00691911113, -0.0311821289, -0.0210956018, -0.00050355756, -0.00570826698, 0.0287066232, -0.0366251618, 0.0233404692, 0.0173900332, 0.0254008267, 0.0112320241, -0.00375746191, 0.0219105184, 0.011708674, 0.00197386881, -0.00253892946, 0.00911785103, -0.019388888, 0.00458967732, -0.0103940424, 0.00789547525, 0.00391890761, 0.0197886582, 0.00283299177, -0.0147607708, 0.00783397164, 0.0212493595, -0.00303095509, 0.0155756883, 0.00480493857, -0.0062733274, 0.00834906101, 0.014484006, 0.00931773614, -0.00895640533, -0.0029079488, 0.006477057, -0.00120219565, 0.00840287656, 0.00246205041, -0.0211724807, 0.00982513838, 0.0097943861, 0.0127234766, 0.0174054094, 0.0112627754, 0.000650108152, 0.000768790138, -0.0047972505, 0.0192197543, 0.0142456815, -0.00719203195, -0.00802616868, -0.00203729398, 0.0251548141, -0.0039631133, -0.00455123745, -0.00504326355, 0.0315819, 0.0182203259, -0.0163906068, 0.00100038818, 0.0254008267, 0.0222949143, -0.00421681395, 0.00407458795, -0.0187431034, 0.0145070702, 0.0101864692, 0.0116471704, 0.0097559467, -0.00105900841, -0.00771865295, -0.00141169096, 0.00200269837, 0.0058235852, -0.00552375708, -0.00319624506, 0.0032904218, 0.0108091896, -0.0105093615, 0.0131616872, -0.0113857817, -0.00915629, -0.00320969895, -0.0117548015, 0.0109706353, -0.0163137261, 0.00089227705, -0.0211571045, 0.0166366193, 0.00403999211, 0.0112397121, 0.00391506404, 0.00914091524, 0.0013857442, -0.0128234196, -0.00410918333, 0.00670769392, -0.00348069728, 0.0239401255, -0.00854125898, -0.015352739, -2.5000696e-05, -0.0257390942, 0.0100250235, 0.0118624317, 0.038255, -0.00591199612, -0.0206650794, -0.00749954768, 0.0171747711, -0.0371479392, 0.00640402175, 0.00292524649, 0.0249703042, 0.0109552592, 0.00266577979, 0.00853357092, -0.00101288105, 0.00524314865, -0.00118393684, 0.00310399, -0.0145224463, -0.00717665581, 0.00453970581, 0.00874883216, 0.0125927823, 0.0117548015, -0.00699214637, -0.00247742631, -0.0254008267, 0.00306362868, -0.0163906068, -0.00389007805, -0.00670000631, 0.00271767308, 0.0212493595, -0.013722904, -0.00400924077, -0.0240016282, -0.0205728244, 0.0132693183, -0.000114477654, -0.0107015586, -0.00559679233, -0.0161445923, 0.0228791945, -0.000470643718, -0.0178666823, -0.0099404566, -0.0153296757, 0.0165904909, 0.0109552592, 0.00530849583, 0.00851819478, 0.000735155598, -0.000751492393, -0.0278609544, -0.0184817147, -0.00162983511, -0.015929332, 0.021972023, 0.002494724, -0.00679610483, -0.00573517429, -0.00111762865, -0.00835674908, -0.00900253281, 0.0237863678, 0.0122622028, 0.012185324, 0.0015423852, -0.0157601982, 0.00911785103, 0.00470499555, 0.00157025387, 0.00653087208, 0.00914091524, -0.0274765603, 0.000882186694, 0.00901022088, 0.00422065798, 0.00543534616, 0.00315780542, 0.00603884645, -0.00247358228, 0.0172824021, 0.0198655371, 0.0044512949, -0.0182357021, 0.00359601597, 0.00641555386, -0.0186354723, -0.0201115496, 0.00013117482, 0.0111858966, 0.00251394371, 0.0211571045, -0.0225409269, 0.00522777298, -0.00395542523, 0.00195753202, -0.0166827459, 0.00173554372, -0.0090871, 0.00510092266, 0.00886415, 0.00340189645, 0.00330387568, -0.00386509253, 0.00339036458, 0.0156602561, -0.019388888, -0.00900253281, -0.0067845732, -0.0116932979, -0.0173285306, -0.00185278431, -0.0212186072, -0.013338509, 0.0106784953, 0.0142687447, 0.0115318522, -0.0145608857, 0.00394004956, 0.0203729384, -0.0138459103, 0.018989116, -0.0140611716, 0.0191275, -0.0102172215, -0.00325198239, -0.0179589372, -0.00235057599, -0.0187584795, 0.0104094185, -0.0133461971, -0.0072919745, -0.00496638427, -0.0236326084, 0.00917166658, -0.0314896442, 0.00209303107, 0.015352739, 0.0214646216, -0.0101403417, 0.00822605472, -0.0220796522, -0.0130309928, 0.0196810272, 0.0100096473, 0.0227869395, -0.0461889133, -0.0112166479, 0.0242168903, 0.0268154, -0.00721509568, 0.0267077703, -0.0202960595, 0.0123313935, 0.0117624896, -0.0192966331, 0.0104862973, 0.0112781515, -0.00706902519, 0.0184970908, -0.0143148722, -0.0145378215, -0.0057851458, 0.0230175778, 0.0128080435, 0.0175284147, 0.00933311228, -0.0106708072, -0.0267385207, 0.0167288743, -0.0165751148, -0.016129218, 0.0232482143, 0.00660775136, -0.015737135, 0.00453201775, 0.016129218, -0.0190352444, -0.000634251861, 0.00378821348, 0.0129310507, -0.0197271556, -0.0018537452, 0.00487028575, 0.00615800917, 0.00982513838, -0.0156525671, 0.0124082733, -0.00358256209, -0.0131232478, -0.0081338, -0.011032139, -0.00590815209, 0.0201884285, -0.0124390246, 0.0109706353, 0.0265386365, 0.000669808418, 0.00521624135, 0.00921779405, 0.0205266979, -0.011700986, 0.0238939971, 0.0257852208, 0.00510092266, 0.0188507345, 0.0120623177, 0.00270421943, 0.0105708642, 0.0206650794, 0.00617338484, 0.00732657, 0.00188545778, 0.0127311647, 0.0205113217, 0.000313281984, -0.0161907207, 0.017851308, -0.0543073379, 0.0043167565, -0.00200077635, 0.00957143772, 0.0026484821, 0.00380358915, 0.00919473, -0.000141505443, 0.0192505047, 0.0091024749, 0.00395542523, 0.0120546296, 0.0210494734, 0.00875652, -0.0078109079, -0.00849513151, 0.0279224589, -0.0104401698, -0.00801848155, -0.0108091896, 0.0020584357, -0.00718818791, 0.0151912933, -0.000121144512, 0.00591584, -0.0134461401, 0.00679994887, -0.0185739696, -0.0206497032, -0.0038093552, 0.0087795835, 0.00342688197, -0.00375554, -0.0190044921, 0.00401692837, -0.0103402277, 0.00765715, 0.00660775136, -0.00670385, -0.00079329533, 0.00318279117, 0.00105035957, -0.0125159035, -0.0206650794, -0.0125389677, -0.00560832396, -0.0140534835, 0.00354027865, 0.000887472124, -0.00633483101, -0.00477034273, 0.00272728293, -0.0107169347, 0.00510476669, -0.00203345, 0.0158832036, -0.0125850951, -0.00714590447, 0.0220027734, 0.0067922608, 0.0101326546, -0.0150913503, -0.00575055042, 0.00932542421, 0.0245859083, 0.00283683557, 0.000508362486, -0.00327312411, -0.000475929148, 0.017466912, -0.0154219307, -0.0153834913, 0.000286614581, -0.0196656529, -0.00422834558, 0.0115164761, -0.0250625592, 0.00112627761, -0.000823566457, 0.0132693183, 0.00487797335, -0.00294254418, 0.00962525234, -0.00871039275, 0.0072727548, -0.00659237569, -0.0200808, 0.0101019023, 0.0277225729, -0.0067922608, -0.00173362182, 0.00824143, -0.0275073107, 0.00257352507, -0.0073111942, -0.00640786579, -0.00141937879, -0.00376130571, -0.00314819557, -0.00419375, 0.00525083672, -0.00171151909, 0.0189276133, 0.000846149633, 0.0228945706, -0.0239708759, 0.027630318, -0.00275034667, 0.00238324935, 0.0325044468, 0.0109552592, 0.0196502768, 0.00927929673, -0.00488181738, 0.0410226434, -0.0035844841, 0.00405152421, -0.00352490274, 0.00755336322, 0.00957912486, -0.0275995657, -0.00489719305, -0.0126542859, -0.0259851068, -0.011324279, -0.000872576842, -0.0156141277, -0.0126081584, -0.00412840303, -0.0160984658, -0.00163367903, 0.0033096415, -0.0184355881, 0.018035816, 0.024078507, -0.0177744273, -0.00920241792, 0.0101941573, -0.00723047135, -0.00721125165, 0.0178359319, -0.0157909505, 0.0203268118, 0.00132135802, -0.0235557295, -0.00786472298, 0.013338509, 0.0111782085, 0.00293677836, -0.0115549155, 0.0225716792, -0.00914091524, 0.00473574735, -0.00328657799, -0.00392659567, 0.00771865295, 0.00173938775, -0.00633098697, 0.0089640934, -0.0195580218, -0.00409765169, 0.0208803397, 0.0151297897, -0.00885646231, 0.0142610576, -0.010739998, -0.000211897786, 0.0191736259, 0.00862582587, 0.00854125898, 0.00945611857, 0.0134538272, 0.00699214637, -0.0130848084, -0.0025812129, -0.0269537829, 0.00586586865, -0.0224332958, 0.0190352444, -0.00226216507, 0.00371133443, -0.00539306272, -0.0108860685, -0.0138843497, -0.001403042, 0.0026677018, -0.00951762218, 0.00323276268, 0.0029079488, 0.0141841779, 0.00819530338, 0.018327957, 0.00917935465, 0.00224294537, -0.0131539991, -0.00434750831, 0.00609650603, 0.00401308434, -0.00162118627, 0.00973288342, 0.0123698339, 0.00733041391, 0.0104324827, -0.0207112059, -0.00421297, -0.0163906068, -0.00686914, 0.00700367801, -0.00366905099, 0.0168826319, 0.00427062949, -0.0308131091, -0.0177283, -0.0128772352, 0.0102095334, 0.0143071851, -0.00703827385, -0.0244782791, -0.0273689292, 0.00637711445, 0.0108630052, 0.0164367333, 0.0210802257, -0.00320585491, 0.0185124669, -0.000772634114, 0.00263887225, -0.00202384, -0.0225409269, 0.00747264037, 0.0108706923, -0.00415915484, -0.00642708549, 0.00255046133, 0.00273112697, -0.0163444784, 0.00798004214, 0.0108245648, -0.0189737417, 0.00631176727, 0.0166058671, -0.000599656312, 0.00438210368, -0.00100134918, -0.00669616228, 0.0219258945, -0.00754183112, 0.0233404692, 0.00580820953, 0.0183433332, 0.0021449246, 0.00635405071, -0.00699599041, 0.0136614013, 0.0279224589, -0.00665772287, -0.0110013867, 0.0102787241, -0.0111935847, 0.0102402847, 0.006957551, -0.0191582497, 0.0256775916, -0.0218182635, 0.00750339171, -0.0120776929, 0.00153181434, -0.0147684589, -0.00591584, 0.0195426457, 0.00329810963, 0.00693833129, -0.0145455096, 0.00398617703, -8.32455553e-05, 0.0290602669, 0.00660775136, 0.00689989142, -0.0206343271, -0.00230060448, 0.00169902621, 0.00608881796, -0.0266923942, -0.00897946861, 0.0257544704, 0.00151163363, -0.0171593968, 0.00325967022, -0.00467424421, -0.0137382802, -0.00195849291, -0.00434366427, 0.0149375927, 0.00325582619, -0.0155218728, -0.0224640481, 0.00932542421, 0.000124928396, 0.000434366433, -0.0248011705, 0.0187431034, -0.021679882, 0.00819530338, -0.0125005282, -0.00300981337, -0.0215107482, -0.0156910066, -0.0182972047, 0.00221027178, -0.0111705204, -0.0137690315, -0.0108015016, -0.0158370771, 0.00310399, -0.00809536, 0.00304440898, 0.00698830234, -0.00469730794, 0.00245436258, 0.00659237569, 0.012085381, 0.0135768345, 0.0135383941, -0.0103940424, 0.00459736492, -0.0114395972, 0.0303518344, -0.0155987525, -0.00645014923, -0.0433290116, -0.0143994391, -0.00559294829, 0.00605806615, 0.0112935277, -0.00735347765, 0.00726122316, -0.0036363774, -0.0180819444, -0.0134692034, -0.0170671418, -0.00436672801, -0.0190659948, -0.0252163168, 0.00319432304, -0.00711130863, -0.00603115885, -0.0123006422, -0.00589662045, 0.0147377076, 0.00580052147, -0.00339997443, -0.00823374279, -0.0163291022, 0.026477132, 0.0174207855, 0.0162676, -0.0163137261, -0.0150759751, 0.00938692782, -0.00692679919, -0.00431291293, 0.0134077, 0.00968675595, -0.0484337807, 0.0147377076, 0.0101019023, -0.00081732, -0.00439363578, -0.0183587093, -0.0168365035, 0.0128618591, -0.00228907261, -0.00413993513, 0.0624257587, 0.0213262383, 0.014391752, -0.0273996815, 0.0255238321, -0.00658084359, 0.0023352, 0.0378552265, -0.0187892318, 6.17434562e-05, 0.00566213951, 0.0227254368, -0.0183125809, 0.0192351304, 0.0148145864, 0.00601578271, -0.0115087889, 0.00659237569, 0.00734194601, 0.00585818104, 0.00280031818, -0.0235403534, 0.010171094, -0.00795697793, -0.00412071496, -0.00476265512, 0.00753029948, 0.00151643855, -0.0198655371, 0.023509603, 0.00186335517, 0.0185739696, 0.017466912, 0.00224294537, -0.00507017085, -0.000567463227, 0.00877189543, 0.0272151716, 0.00132039713, -0.0213416144, 0.0134077, 0.0265232604, 0.000666925451, -0.00281377183, 0.00766868191, -0.0116471704, -0.0106554311, -0.0034979952, -0.0196349, -0.0101480298, 0.0207727104, -0.015929332, -0.00783781521, -0.0026523259, 0.0252470691, 0.00933311228, 0.0352105871, -0.000480734103, 0.0073111942, 0.0163752306, -0.00520470925, 0.00923316926, -0.00826449413, 0.014491694, -0.00179608597, -0.0475419834, 0.00391890761, -0.00227946276, 0.00846437924, 0.00929467287, 0.000719299307, -0.0091024749, 0.0129310507, -0.0179589372, -0.0125850951, 0.0203729384, -0.00424372172, -0.00926392153, 0.014683892, -0.0270152856, -0.0177436769, 0.00478187483, 0.011416534, -0.0217260104, -0.00294831023, -0.0163444784, -0.0105016734, -0.00520470925, 0.00430522487, 0.0164213572, 0.000715455331, 0.0245090295, 0.00767252548, 0.00169518229, 0.0142303053, 0.00119835162, -0.0108860685, 0.00710746506, -0.000657796045, 0.00879496, -0.000994622242, -0.00934848841, 0.000146190258, -0.0120008141, 0.0105862403, 0.0238632467, -0.016775, 0.0150375357, 0.00311167818, 0.0049702283, -0.00674997736, 0.0180050656, 0.00294062239, 0.0159447081, 0.0192043781, 0.000583319517, 0.0202191807, 0.00779937627, 0.00463964837, 0.0083875, -0.0026331062, 0.00122910331, -0.00378629146, -0.00412071496, -0.00895640533, 0.00974057149, -0.00671153795, 0.00907941163, 0.0266155154, 0.00359985977, 0.00846437924, -0.0151836053, -0.00278302026, -0.00347108743, 0.0121776359, 0.0127542289, -0.00487028575, 0.00656931195, 0.0284606107, 0.00144724746, -0.00548531767, 0.00888721365, -0.00282338192, 0.020342188, -0.00226793089, 0.00974825863, 0.00978669897, 0.00285413349, 0.0250010565, -0.00219297386, -0.00161349832, -0.00158370775, -0.0134461401, -0.00575439446, 0.00717281224, 0.0181588233, 0.00658084359, -0.00494716456, 0.0254623294, -0.0151759172, 0.0119316233, -0.00681532454, 0.0250164308, -0.00166154769, 0.00841056462, 0.00655393582, 0.00372094428, -0.00590815209, 0.0100634629, -0.00735732168, 0.0223410409, 0.0156910066, 0.00029814642, -0.0101634059, -0.0120776929, -0.00293485634, -0.0137767196, 0.00270614121, -0.00242168899, -0.0153988665, -0.00513936207, 0.00505095115, 0.000976844, 0.056521453, 0.00363829941, -0.0046242727, 0.0138459103, -0.00833368488, 0.0328427143, -0.0142149301, -0.00407843152, 0.00670000631, 0.00197963463, -0.0066500348, 0.00735732168, -0.00671922602, 0.0151836053, -0.000947533874, 0.0279224589, 0.00360946963, 0.0258005969, -0.00701905414, -0.010747686, -0.00346916565, 0.00790316239, 0.0231098309, 0.00119739061, -0.0126927253, 0.00862582587, 0.0281223431, -0.0083106216]
26 Oct, 2021
jQWidgets jqxSlider minorTicksFrequency Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The minorTicksFrequency property is used to set or return the minor ticks frequency of the slider widget. It accepts Number type value and its default value is 1. Syntax: Set the minorTicksFrequency property. $('selector').jqxSlider({ minorTicksFrequency: Number }); Return the minorTicksFrequency property. var minorTicksFrequency = $('selector').jqxSlider('minorTicksFrequency'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider minorTicksFrequency property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider minorTicksFrequency Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', value: 8, minorTicksFrequency: 2 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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 minorTickSize Property/jQWidgets jqxSlider minorTicksFrequency Property
https://www.geeksforgeeks.org/jqwidgets-jqxslider-minorticksfrequency-property/?ref=next_article
PHP
jQWidgets jqxSlider minorTicksFrequency Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxSlider minorTickSize Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider minorTicksFrequency Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0278076921, 0.0187910292, -0.0126460595, 0.0220188424, 0.0604646802, 0.0122065917, -0.00705800112, 0.0347634032, -0.0114261573, 0.00178344292, -0.0313688926, -0.00973648, -0.0092818588, -0.0207155943, -0.0270045269, 0.0107896877, -0.029580716, -0.0218976103, -0.0146388169, 0.0306566544, -0.0427344367, 0.0161390696, -0.0495234542, 0.0102289869, -0.0196548104, 0.0241101012, 0.00267279637, 0.0148888594, -0.0393096209, 0.0232766289, -0.0218673013, 0.010766956, -0.00969101861, 0.00297966599, -0.0011981175, -0.0214429889, 0.0168361552, 0.0152449794, -0.0355514139, -0.0113200797, -0.0257467404, -0.00744442968, 0.000942866376, 0.0194426533, 0.0153055955, -0.00257997797, 0.0061525465, 0.00724363839, -0.000731183158, 0.000847206393, -0.0127824452, 0.0186697952, 0.0210489836, 0.0658292174, 0.0243828744, -0.0351574086, 0.00490612537, 0.0518874861, -0.0120777823, 0.0197154265, 0.0310203508, -0.0264892876, -0.0132901063, -0.0210489836, -0.0145024313, 0.00699359644, -0.0283229295, 0.0512207076, -0.0508873165, 0.0329449177, -0.0298231803, 0.00411053747, 0.0352786407, 0.00557669252, 0.0359454192, -0.0421585813, 0.00562594319, -0.00508797402, -0.0347634032, -0.00490612537, -0.0528270379, -0.0192911122, -0.0399460904, -0.0230947807, -0.0120853586, 0.0350664854, 0.0146463942, -0.0286411643, 0.0388853066, 0.0278076921, -0.0239434075, 0.000291242, -0.00591765856, 0.0167300776, -0.020882288, -0.0188516453, -0.0113806957, 0.0356423371, -0.0338541605, 0.00736865913, 0.0390065387, 0.016002683, -0.00190372823, -0.0305657294, 0.0248981118, 0.00942582265, 0.00183364062, -0.0361575745, 0.0100244079, -0.0208974425, 0.020912597, -0.0249738824, -0.00290579, -0.0138053447, -0.0355514139, 0.0364606567, -0.00631924113, -0.0165027659, 0.000158999188, -0.0178211685, 0.015881449, 0.0503114648, 0.0205943603, 0.0292473268, -0.0156086767, -0.0066526304, 0.033096455, -0.0144190835, 0.0398248583, -0.00889543071, 0.017806014, 0.00289253029, -0.00715271384, -0.0243677199, 0.0153434807, 0.0462501757, 0.0194274988, -0.000538916094, -0.0139947701, -0.0263983645, -0.0184424855, -0.0172150061, 0.00806195755, 0.00445529213, -0.0151085928, 0.00781949237, -0.0192153417, 0.035672646, -0.0250041913, 0.035490796, -0.0272015296, 0.00104752404, -0.0189728774, -0.00403097877, 0.0207004398, 0.000206592391, -0.0179575551, 0.0208368264, -0.0240040235, -0.0402491689, 0.0272621457, -0.0091454722, 0.0336116962, 0.0137674594, -0.0114261573, -0.0180484802, 0.0156238312, 0.0142978514, -0.0587068088, 0.0292776339, 0.00495916465, -0.0351877175, 0.00161485397, 0.00284138531, -0.0282926206, 0.0104638748, -0.00649351254, -0.0551910698, 0.0143887755, -0.0306263454, -0.000803164905, 0.000815477571, -0.0313082784, 0.00886512268, 0.0137977675, -0.0291564018, 0.00539105525, -0.000566856354, -0.036824353, -0.0140932715, -0.00176450028, 0.0268378314, 0.0227765441, 0.0477049649, 0.016063299, -0.00379798515, -0.00788768567, 0.0179727096, -0.0299141053, -0.0193062667, -0.000504819443, 0.00834230706, -0.00908485614, -0.00258376636, 0.00437194481, 0.0286866259, 0.00186868443, -0.028929092, 0.0289442446, -0.0153737888, 0.0135780331, 0.017745398, 0.0165330749, -0.02029128, -0.00609193, 0.0267923698, 0.00958494, 0.0300656464, 0.00642531924, 0.00439088745, 0.0156541392, -0.000133426714, -0.0180181712, 0.0261558983, -0.0957130119, -0.0149570527, -0.0031975056, -0.0443710722, -0.0249738824, 0.0131764514, -0.0198518131, 0.000319892628, -0.0375214405, 0.0130097568, -0.000235716594, 0.0562821627, -0.0298534892, 0.00571307866, 0.00781949237, 0.0158056803, 0.0150479767, -0.00881966, 0.0107442252, -0.0102896038, -0.00387186115, -0.02212492, -0.0182151739, -0.0223673861, 0.00747852633, 0.0171998534, -0.0281259269, -0.0264892876, 0.00529255392, 0.0161845312, -0.00822107494, 0.0439164527, 0.00133734534, -0.00578506058, 0.0200488158, -0.0117292386, 0.0594948195, 0.00268795062, -0.0263074394, 0.0035479432, 0.00171430246, 0.0389762297, 0.051554095, -0.04076441, 0.0164876115, -0.0154647129, 0.00513343606, -0.033126764, 0.0450378507, -0.00515995594, -0.0334298462, -0.00509555126, -0.00133260968, -0.0327630676, 0.00534559274, 0.0315810516, 0.035672646, 0.0365212746, 0.00753156561, 0.0726182312, 0.0305202678, 0.0150782848, 0.0143963527, -0.0262013618, -0.0222916156, -0.022655312, -0.00869085081, -0.0386125334, 0.0278683081, 0.0126763675, 0.00730425445, 0.0219279174, 0.012274785, -0.0185940266, -0.00194729608, 0.0147979353, -0.0355514139, -0.00168399443, -0.0167300776, -0.0340360068, 0.022155229, 0.00824380573, 0.0216854531, -0.0185334086, -0.022715928, -0.000397320371, 0.033126764, 0.000416736526, -0.0315810516, -0.0470684953, -0.0145782009, -0.0442195348, 0.0270802975, 0.0152828647, 0.00956978556, -0.0298080258, -0.000258566055, -0.0153434807, -0.0250344984, 0.0349452496, 0.0498871505, 0.00222764607, -0.00624347059, -0.0155329062, -0.00139606732, -0.00975163467, -0.0254891217, 0.0156541392, -0.030793041, -0.0289594, -0.040612869, -0.0042772321, 0.00745579507, 0.000292662677, -0.00303081097, 0.0293685589, 0.00269552763, -0.0136159183, 0.00440604147, -0.00960767083, 0.0271106046, -0.025852818, -0.0393702351, 0.00411811471, 0.0435224473, 0.00782707, 0.00142542832, 0.013221913, 0.0426435098, 0.0111155, 0.026292285, -0.02821685, -0.00635333778, -0.0189577229, 0.000172140601, -0.011448889, 0.0115776984, 0.002831914, 0.0134719554, -0.00464471802, 0.0427647419, -0.0337026194, -0.0218369942, -0.040612869, -0.00062273693, 0.00317666889, -0.0317325927, -0.00162337814, -0.0156996, 0.0463714078, -0.0133961849, 0.0187304113, -0.00736487098, -0.0422495045, -0.0283835456, 0.00966071058, -0.0361878835, 0.04685634, 0.0182151739, 0.0197760426, 0.00206852844, 0.0297171026, -0.0323387533, -0.0207459014, 0.00427344348, -0.0101911025, -0.0451893918, 0.0186697952, -0.000607109338, -0.0321265981, 0.0159572195, 0.0124263251, -0.0318235159, -0.0191698801, 0.0145478928, -0.0380669869, 0.0157753713, -0.0312476624, 0.0115625439, -0.0216854531, -0.0161845312, 0.0246404931, -0.045492474, -0.00663368776, 0.0261255912, 0.0161542222, 0.00884239096, -0.0131006809, -0.0212611388, 0.054130286, 0.0119110877, 0.0318235159, -0.00701253908, 0.043158751, 0.00520541798, -0.0222764611, 0.0476443507, -0.00429617474, -0.0216854531, 0.0282623135, 0.00213861605, -0.0161845312, -0.0247617271, 0.021473296, 0.0630408674, -0.0156996, -0.0403097868, -0.00321834255, -0.0135098398, -0.0141311567, 0.0432496741, 0.0201548934, 0.0510085486, 0.00603510253, 0.00206474, -0.0477352738, -0.0119489729, -0.0367637388, 0.0198821202, 0.0474321917, -0.0301565696, 0.00839534681, -0.0562518537, -0.0199730452, 0.0113731185, 0.00455000484, -0.00361045357, -0.0449469276, -0.0158359874, -0.0104184132, 0.0293988679, 0.00613739248, 0.0353089496, -0.0127218291, 0.0453106239, -0.041946426, -0.0172907766, -0.00492885662, -0.021382371, -0.00255156402, -0.0189728774, -0.0353695638, 0.0202306639, 0.0339450836, -0.020973213, 0.0176999364, -0.0310051963, -0.00991832931, 0.00547440257, 0.0678901672, 0.022655312, 0.0122899385, -0.0135704568, -0.016063299, -0.00735350512, -0.0192608032, 0.0265650582, 0.00997894537, 0.0576763339, 0.0160936061, 0.0155177526, 0.0197608881, 0.0500386916, -0.0449772365, 0.0192304961, 0.0286411643, -0.00252125598, 0.0330358408, -0.0149646299, 0.0119110877, 0.00517511, 0.0105093373, -0.0121308211, -0.0476140417, 0.0186243337, -0.00601616, 0.0097137494, 0.0377942137, -0.0186394881, 0.0273379162, 0.0212914478, 0.00994863734, -0.0306263454, -0.0313385874, -0.000182203832, -0.0216551442, 0.00869842805, 0.0141311567, -0.0192911122, 0.00828926824, -0.00866054278, -0.0404310189, -0.0133052608, -0.0277622286, 0.0149873607, -0.0159875285, 0.0311264303, 0.0329752229, 0.0214126799, 0.0305808838, 0.03430878, 0.0341269337, -0.0230796263, -0.0340057, 0.0232766289, 0.0130855264, -0.0105472226, -0.0303384177, 0.0111382306, 0.0128279077, -0.0263225939, 0.0237009432, -0.00342292222, 0.0100471387, -0.020382205, 0.0394611582, -0.0246556476, 0.00717923371, -0.0302929562, 0.00207231706, 0.0202155095, 0.0280653108, -0.0125248265, 0.00372789754, 0.0188061818, 0.0214581415, 0.0398854725, 0.0112215774, -0.0124187479, -0.0120929359, -0.0032031883, 0.00681174779, 0.027838, -0.00461062137, -0.0157905258, -0.00254398701, 0.00731183169, 0.0122065917, 0.0244586449, 0.0286411643, 0.00462956401, -0.0230644718, -0.007232273, 0.0399460904, -0.0161845312, -0.00262922863, 0.0151540553, 0.0107214944, 0.00297587761, -0.0241252556, -0.0128582157, -0.000315393787, 0.0141160022, -0.011418581, 0.00171903812, 0.0292321723, 0.00394384284, -0.0136083411, 0.0303081106, 0.00826653745, 0.0010854092, 0.000547440257, 0.00386049552, -0.0327024497, -0.0279743858, 0.0117898546, -0.0208671335, 0.0350664854, -0.0255800448, 0.0170180034, -0.00200222945, 0.0174574722, -0.0207610559, 0.00844080839, 0.0186849497, -0.0407037921, 0.00829684548, 0.0519177914, 0.000255961466, 0.0116458917, -0.0197911952, -0.0140932715, -0.0134189157, 0.00280350028, -0.0204882827, -0.00331873819, -0.00742169842, -0.0178969391, 0.0471897274, -0.00548955658, -0.00373736885, 0.0123808635, -0.0102441413, -0.0115701212, 0.00939551461, -0.00744442968, 0.00511449343, 0.00282433699, -3.92466354e-05, 0.0111912694, 0.0367940478, -0.0157299098, 0.00537211262, 0.0256861243, 0.0261104368, -0.04685634, 0.0131991822, 0.0232766289, 0.00705042435, -0.0192456506, 0.0155783687, 0.0306566544, -0.0115019279, 0.0315810516, -0.00843323208, 0.0234433226, 0.0469169542, 0.00775887631, -0.0145630473, 0.050584238, -0.00997894537, 0.00308385026, -0.00225795433, 0.0269439109, 0.00699359644, 0.00271257595, -0.0173817016, 0.0475231186, 0.0122065917, 0.0152828647, 0.000702295743, 0.0199275818, 0.0246556476, -0.0131234117, 0.0185637176, 0.0339147747, -0.0209277496, -0.00253641, 0.0375214405, -0.00353847188, 0.0292927884, -0.00572444452, 0.0426132046, 0.0318235159, -0.00829684548, 0.00703905849, -0.00444392674, 0.0120550506, 0.038036678, 0.00762627833, 0.0100244079, -0.00658064848, -0.0425828956, -0.0032524392, 0.0269287564, 0.000985960709, -0.0162603017, 0.0115625439, 0.0156086767, -0.00910758693, 0.0122444769, -0.017745398, 0.00405749818, 0.00520541798, 0.0164724588, 0.0165179204, 0.012009589, 0.0251405779, 0.0273682233, 0.0369455852, 0.00351574086, 0.00813772809, 0.00404613279, 0.0196396559, -0.0431890562, -0.0410674885, -0.00159685861, -0.013782613, -0.0160329901, 0.0175635498, -0.0121156676, 0.00915304944, -0.000419341115, 0.0222613066, -0.00516753271, -0.0287927054, 0.0282623135, 0.0190031845, 0.0194729604, 0.0370668173, -0.0112746172, 0.0172907766, -0.0329449177, 0.00105415401, -0.00836503878, -0.00436436804, 0.0248981118, 0.0135704568, 3.85362873e-05, -0.0348846354, -0.00837261509, -0.0157450642, 0.0413402617, -0.0353392549, -0.000185873956, 0.00910758693, -0.000343807624, 0.0444923043, 0.0254891217, -0.00591387, -0.0125096729, 0.028338084, -0.022715928, 0.0195941925, 0.0112140011, 0.00998652261, 0.0127521371, -0.0279743858, 0.00502356933, 0.0150934393, -0.00816803612, -0.0229280852, 0.0193214212, -0.017836323, 0.0264892876, 0.0114034265, 0.0161239151, -0.029489791, 0.0100395614, -0.0360060334, -0.0107745333, -0.0136462264, 0.0114564653, -0.0282320045, 0.0236857887, 0.0022428, -0.00220302073, 0.012009589, -0.0294594839, 0.00111287588, 0.0209429041, 0.0103123346, -0.0300656464, -0.00800891779, 0.0252163485, -0.0259134341, 0.0289442446, -0.00168020593, 0.0316113606, 0.0008547834, -0.0139720393, 0.0212459862, -0.00809226558, -0.00344944187, 0.00435300218, -0.00270310463, -0.0262771323, 0.0015542378, 0.00492127938, 0.00899393205, -0.00128525333, -0.0158662964, 0.0175635498, 0.0179120935, -0.00578127196, 0.020882288, 0.0158208329, 0.00419009617, -0.00788768567, 0.0224734638, 0.0299747214, -0.0198366586, -0.030171724, 0.0293382499, 0.007986187, -0.035672646, -0.000322260457, -0.0104941828, 0.0236706343, 0.0315810516, 0.0240040235, 0.00637228042, -0.0243222583, 0.0202306639, -0.0218673013, -0.00609571859, -0.0214278344, -0.00156086765, -0.00799376424, -0.0135704568, -0.0145554701, -0.0014434238, 0.0284896232, 0.00563352, -0.00143300532, 0.0301262625, -0.0513419397, 0.0283532366, 0.036824353, -0.0262013618, -0.0168664642, 0.0362788066, -0.00974405743, -0.00406886404, 0.0230796263, 0.000919661717, -0.0133961849, -0.00189804542, -0.0363697335, 0.00432648277, -0.0233675539, -0.00525466865, 0.0315507427, 0.00386617822, -0.00850142539, 0.00577369519, 0.00583431125, 0.0151464781, -0.0133886077, 0.0194578078, 0.00667157257, 0.0268681403, -0.019609347, 0.0031994, 0.0273227617, 0.00681174779, 0.0271106046, 0.0168967713, 0.0350058675, 0.00874389, -0.0365515798, 0.0060047945, -0.00890300702, 0.013903846, 0.0228523146, -0.0176241659, -0.0122293225, 0.0226250049, -0.0133734541, -0.014169042, 0.0199578907, -0.0191850346, -0.0127142519, -0.0427344367, -0.0534635074, -0.00872873608, 0.00246063969, -0.0121080903, 0.0226098504, 0.000478536647, 0.0181090962, -0.00168304727, -0.0327024497, 0.0191547256, -0.00829684548, -0.0244889539, 0.0613133088, -0.0163966883, -0.0144721223, -0.00975921191, -0.0517965592, 0.0337026194, 0.00437194481, -0.000615159923, 0.00888785347, -0.0236403253, 0.00722090714, -0.0023943407, 0.0139265768, -0.0503114648, 0.0028205486, 0.0238827914, -0.0102365641, 0.000917293888, -0.00527361128, -0.00154476648, 0.000641679508, 0.00105036551, 0.0124414796, -0.000513817184, 0.0086453883, -0.0139114223, 0.00815288164, 0.0311870463, -0.0180030167, 0.00414842274, 0.0313082784, -0.00433784816, 0.0139796156, -0.0303687267, 0.0209277496, -0.0281107724, 0.00534180459, 0.0203215871, -0.00267658499, 0.00409159483, -0.0401885547, 0.0216248371, 0.0161845312, 0.0382791422, 0.015411674, -0.0429769, -0.0385822244, -0.00736108236, 1.67227372e-05, 0.00949401595, -0.00455379346, -0.00569792464, 0.0488869809, -0.00748989172, -0.0301565696, -0.00619800854, 0.0132976836, 0.0262468234, -0.0313082784, -0.00911516417, 0.0309748892, 0.0338541605, -0.00910758693, -0.0111458078, 0.0119565492, -0.0280501563, -0.0206398237, -0.0113428105, -0.0271257591, 0.0155480606, -0.0203973576, 0.0094182454, 0.0167300776, 0.00539105525, 0.0142296581, -0.0199124292, -0.0184879471, 0.0353089496, -0.00405749818, 0.0170331579, -0.00401961291, -0.0358848, -0.016063299, 0.00688751787, -0.0102592958, -0.0099941, 0.000448228529, 0.000802217808, -0.00419388479, -0.0203973576, -0.0216096826, -0.0120853586, 0.0325206034, -0.00315772626, -0.0109184971, -0.00587598467, 0.0167300776, -0.0305657294, 0.0269439109, 0.0105623761, 0.00113750121, 0.0193062667, 0.0202306639, 0.00525845727, 0.00292852125, -0.00317098596, -0.00784222316, -0.0191244185, -0.0355514139, 0.0139720393, 0.00799376424, -0.0139720393, -0.00236213836, -0.0355817229, 0.00729667768, -0.00390216918, 0.033157073, -0.0145251621, -0.0446438454, -0.00465987204, -0.0408856422, -0.0156844463, -0.0058684079, 0.0102062561, 0.0269287564, 0.0104790293, -0.0280653108, 0.00245116837, -0.0132901063, -0.00156465615, -0.0481898971, 0.0179878641, -0.0211096, 0.0292473268, 0.0227007754, 0.00523951463, 0.0182606373, 0.00904697087, 0.0126839438, 0.00992590655, 0.0311870463, 0.0124035943, 0.0310961213, -0.00761491293, 0.00630408712, 0.0104259895, -0.0163209178, -0.00976678822, 0.0309142731, -0.00360098225, 0.00794830173, 0.0148282433, -0.00241896603, 0.0149343209, 0.00793314818, -0.00963797886, -0.0142372353, -0.0364909656, -0.000169891166, -0.000566382834, 0.0339147747, -0.0018847856, 0.00322023663, 0.00611466123, 0.00547440257, 0.00817561243, -0.0101683708, 0.0326418355, 0.0183970239, -0.0174574722, 0.0094182454, 0.0114640426, 0.00913031865, -0.0095319, 0.00520541798, 0.00346080726, 0.000667725573, -0.0195941925, 0.0270196795, 0.0102365641, 0.00715271384, -0.0222916156, 0.00796345621, -0.0156844463, -0.0182303283, 0.0176847819, 0.00680795917, 0.0124490559, 0.0050046267, 0.0121005131, -0.0270045269, 0.0114640426, 0.025792202, 0.020382205, 0.0123429783, -0.00656928308, 0.00646699313, 0.00913789496, 0.0169725418, -0.00454242807, 0.0461289436, 0.00559563469, 0.00376957119, 0.0205034371, -0.000486350473, -0.00475079613, -0.0064366851, -0.0214884505, 0.00680417055, -0.0188061818, 0.000662516337, -0.00951674674, -0.0134416474, 0.0222916156, -0.023397861, -0.010736648, -0.0240343306, 0.0837716162, 0.00797861, 0.00911516417, -0.00919851195, -0.0457046293, -0.0309748892, -0.0242464878, 0.00289253029, 0.0381276, -0.0149267446, 0.00505766599, 0.00976678822, 0.00438709883, 0.0111609614, -0.00933489762, -0.0133128371, -0.0182757899, -0.0155177526, 0.0150100915, -0.0182303283, -0.0130476411, 0.0135553023, 0.0095773628, -0.00248337071, 0.00714513706, 0.0156692937, -0.0228523146, 0.00286411634, -0.0350967906, 0.00128146482, 0.0215490665, 0.0295958705, 0.0209277496, -0.00660337973, -0.000344044412, 0.0319144391, -0.00450075418, 0.00819834415, -0.00315014925, -0.00740654441, -0.0279743858, 0.00953947753, 0.00589113915, 0.00713377167, 0.0157602169, 0.00395899685, -0.044462, 0.0213217549, -0.0136007648, 0.022064304, -0.0177908614, 0.00742927566, -0.0464320257, 0.0029001073, -0.0105320681, 0.00391353481, -0.0193365738, -0.0352483317, 0.0168664642, -0.0194729604, -0.00894847, 0.00397036225, 0.0173059311, -0.000310894917, -0.0142599661, 0.0278834607, -0.013456801, 0.0219582263, -0.013221913, 0.03430878, 0.0210338291, 0.0137901902, -0.0104335668, -0.00682690181, 0.00363886752, -0.0148509741, -0.00568655925, -0.00236403267, 0.028156234, -0.0327327587, -0.0457652472, 0.00505008874, -0.00154666079, 0.00031255238, -0.0144872768, 0.00626999047, -0.0142145036, -0.00250610197, 0.00163947931, -0.000864728296, -0.019669963, -0.023337245, -0.0309597347, -0.00419767341, -0.00360098225, -0.00955463201, 0.0206549764, -0.00445529213, -0.00231099338, -0.0040612868, 0.0073383511, 0.0152677102, 0.00806195755, -0.00354415458, 0.0123884398, -0.0226856209, 0.0361272693, 0.0119944345, -0.0318538249, 0.0180333257, 0.0145554701, 0.00587219652, -0.014403929, -0.000193332598, 0.0173513927, 0.0183818694, -0.0258073565, 0.00916062668, 0.0130855264, 0.0206852853, -0.021533912, 0.0148358196, 0.036824353, -0.00678522838, -0.00844080839, -0.0195790399, -0.0176999364, 0.0151843634, -0.00643289648, -0.0168513097, -0.0293685589, 0.0265802126, -0.0156389847, 0.00343428785, -0.00975163467, 0.0182454828, -0.000565435679, 0.0270802975, -0.00650109, 0.013517417, -0.00599721726, 0.0110776145, 0.00758081628, -0.0040612868, 0.0288230125, 0.0268529858, -0.0193062667, -0.00401582476, 0.016593691, 0.00520162936, -0.0342178568, 0.00561078871, -0.00551607599, 0.00974405743, 0.0138735371, -0.0159420669, -0.00894089229, -0.00628135586, -0.0180636346, -0.0145933554, 0.00421282742, 0.0145933554, 0.0158511419, -0.00740275579, 0.0101304855, 0.00408780621, -0.00556532666, -0.0210489836, -0.00220870343, 0.00789526291, -0.0109942667, 0.0118353171, 0.0284744706, 0.0118732024, 0.0430678241, 0.0103653735, 0.0112897707, 0.0114791971, 0.00851657894, 0.00887269899, -0.00310468697, 0.00631924113, -0.0184121765, 0.00317856297, -0.0140023474, -0.00635712594, -0.00597448647, -0.0140478089, 0.0146767022, 0.00947128423, -0.00767931761, 0.0136538036, 0.0265802126, 0.00200980646, 0.0216399916, 0.00492127938, 0.00342671084, -0.0360363424, -0.00276182662, 0.0223219227, -0.010471452, 0.00682690181, 0.0323690623, 0.0058570425, 0.00109203905, -0.00389080378, -0.00448181201, -0.0106381467, 0.0106608775, -0.0162299927, 0.0121914372, -0.0183970239, 0.00475458475, 0.00361992489, 0.00888785347, -0.0083498843, 0.00269742194, -0.0407947153, -0.0207610559, 0.00723606115, -0.00810741913, 0.00771341426, -0.0287623964, -0.00523193739, 0.00755050778, -0.00906212535, -0.023928253, 0.0071224058, 0.00768689439, 0.013843229, -0.00657307124, 0.0173817016, 0.0316416658, -0.00149172731, 0.0214429889, 0.0383094512, -0.00813772809, -0.0341875479, -0.0115776984, 0.00348164421, -0.0126990983, 0.0131385662, -0.0158966035, 0.0445832312, 0.00609193, -0.000136504881, 0.011388272, -0.0118504716, -0.0313385874, 0.00969101861, 0.00773235643, 0.0127445608, 0.0254436582, -0.0289442446, 0.00334146922, -0.00511449343, -0.0209883656, 0.00507660862, 0.0130779492, -0.0380972959, 0.0092136655, -0.00558048068, -0.017927248, 0.0112746172, -0.0335813873, 0.00417494215, 0.00686099846, 0.00161106547, -0.00113939552, 0.0069064605, -0.00533043873, -0.00127957051, 0.0216399916, -0.000308527087, 0.0264286716, -0.0181090962, 0.0116762, 0.0125324037, 0.00247200532, -0.00903181732, 0.00219923235, 0.0190031845, -0.00131366716, 0.0173817016, -0.0295201, 0.0227310825, -0.00640258845, 0.0346118622, 0.0117898546, 0.00787253212, 0.00345512456, -0.00167357596, -0.0044363495, -0.00844080839, 0.0144115062, 0.0173817016, 0.0273985323, -0.0180939417, 0.0133583, -0.0366121978, -0.0030421766, -0.010175948, 0.0149267446, -0.00251746736, -0.0037089549, 0.00138375466, 0.0196548104, 0.00479247, 0.0112821944, -0.0296110231, -0.0220491495, -0.0213369094, -0.0267317537, 0.00850900169, -0.0149115901, -0.015055554, -0.00206095143, -0.00759218168, 0.00413705688, -0.0170331579, -0.00364455022, -0.0135325715, -0.0457955562, -0.00455379346, -0.0151692089, 0.00503493473, 0.00194729608, -0.0315810516, 0.0171998534, -0.0137295742, -0.00366728124, -0.0024568513, -0.0231402423, 0.00872115884, -0.0152298259, 0.018427331, -0.00256482395, -0.0273833778, -0.0167603847, 0.00639122259, -0.0134643782, 0.0289897081, -0.0133734541, 0.0178817846, 0.0109109199, -0.00949401595, -0.00676249713, -0.000662516337, -0.0200185068, 0.00958494, 0.00502356933, -0.0109412279, 0.00874389, 0.0166391525, -0.000922029547, 0.0435830615, 0.00529634207, -0.00617148913, 0.00392111158, 0.00963797886, -0.0101532172, 0.0180787873, 0.00138849032, 0.0118656252, 0.0142599661, -0.0241555646, -0.0172150061, -0.00276750932, 0.00208178838, -0.0234584771, -0.00465987204, -0.0040044589, 0.0112821944, -0.0229129307, 0.010471452, 0.013903846, 0.0285653938, -0.00672840048, -0.0260043591, -0.00763764372, -0.0338541605, 1.1868703e-05, -0.00189899257, -0.0262468234, 0.00679659378, -0.00448938878, 0.00584188849, -0.00414842274, 0.0123429783, 0.00596312061, 0.0150934393, 0.0257770475, 0.00381503347, 0.00874389, 0.00544409454, 0.0122975158, -0.00389459217, 0.0077020484, -0.0217763782, -0.0131537197, 0.00276372093, 0.0135022635, -0.0126687903, 0.0117519693, 0.0297322571, -0.00110151037, -0.00276750932, -0.0246708021, -0.00476595, -0.0187152587, -0.00105794251, 0.00633818377, -0.0125930198, 0.00856961776, 0.0129036782, 0.0114791971, 0.0109942667, 0.0376123637, 0.0156692937, 0.0170786195, -0.0190031845, 0.00524709141, -0.0339450836, -0.0234130155, 0.00191793509, -0.0262771323, 0.0151085928, 0.00240381202, -0.0221097674, 0.0323993713, 0.00286601065, -0.000334809913, 0.0180484802, -0.00598585187, -0.00491370261, -0.0303081106, -0.0192001872, 0.0117822783, 0.0150479767, 0.025201194, -0.0297625642, 0.0121005131, 0.0135249943, 0.0103729507, 0.00125589233, 0.00133734534, 0.0116913533, -0.00824380573, 0.0169422328, 0.00513343606, 0.0136613809, 0.000273956917, -0.0146539714, 0.00734971697, 0.000385007705, 0.00296640629, -0.0191698801, -0.00376957119, -0.00562594319, -0.00845596287, 0.0109715359, -0.00012407382, -0.00337177725, -0.00143111113, 0.0295352545, -4.94874621e-05, -0.000877988059, 0.0121990144, -0.023988869, 0.0388853066, 0.0147070102, -0.00826653745, 0.0106760319, 0.00186963158, 0.00197760412, -0.0080771111, -0.00432269415, 0.000151303771, -0.019109264, 0.00102384586, 0.00880450569, 0.00977436546, 0.012865793, 0.0137295742, 0.0221703835, 0.0200336613, 0.00859992672, 0.00270121032, -0.00218786672, -0.00141785131, 0.00787253212, 0.00413326873, -0.00979709625, 0.00852415618, 0.0129794478, 0.0214884505, 9.44760613e-05, 0.025110269, -0.0195638854, -0.00408780621, -0.00656549446, -0.00293799234, -0.00381313916, -0.0269893724, -0.00189520407, 0.0147221647, -0.0146236634, -0.0144266607, -0.000824001734, 0.0185031015, 0.004777316, -0.0167603847, -0.020973213, 0.028338084, 0.02212492, -0.00704284711, -0.0119338185, -0.0302020311, -0.00910001, 0.0131991822, 0.0230190102, 0.00160727696, 0.0114413118, -0.00874389, 0.0126990983, -0.000487771147, -0.0108578801, -0.00648593577, -0.00492885662, 0.0100395614, 0.0103426427, 0.0278986152, -0.00556532666, -0.0112670399, -0.0109563814, -0.0156996, -1.77882557e-05, -0.0058002146, 0.00685342168, 0.00789526291, -0.0259134341, -0.00709209777, -0.0278076921, -0.0073004663, -0.00495916465, 0.00129472464, 0.0101835253, -0.0365818888, -0.0029815603, -0.0294594839, -0.00868327357, 0.000311842043, -0.0112367319, 0.0213975254, -0.00816045888, -0.012570289, 0.00482277805, -0.002839491, -0.0112443091, 0.0142978514, 0.0055047106, 0.0124035943, -0.0106457239, 0.00180427975, 0.0147373183, 0.0056524626, -0.00725879241, -0.000725974, -0.0079179937, -0.0340360068, -0.00760733569, -0.0156996, 0.0238070209, 0.0056410972, -0.00130798435, 0.0339450836, -0.0187607203, 0.0011592852, -0.0121005131, 0.011744393, 0.0185031015, -0.0101607936, 0.00522814924, 0.00303270528, -0.000964650302, 0.00874389, 0.00806953479, 0.00979709625, -0.0162299927, -0.00809226558, -0.000675302581, 0.0213672183, -0.0320962891, 0.00938036, -0.00575475255, -0.000304265, -0.00812257361, -0.0102441413, -0.0017332451, 0.00464850664, -0.0263680555, 0.0181242507, 0.00390974618, 0.0106154159, 0.00156370911, -0.0141614648, -0.00145478931, 0.020200355, -0.037036512, -0.0044931774, -0.00145952497, -0.00849384815, 0.000771436142, 0.000934342213, 0.00962282531, -0.02526181, 0.000176284288, 0.0198518131, 0.00996379089, 0.0126460595, -0.00830442179, 0.030020183, -0.0149418982, -0.0101001775, 0.0127900224, 0.0142523888, 0.0125020957, 0.00775508769, -0.00510691665, 0.00473943073, 0.00496295327, 0.02029128, 0.0090772789, -0.0133583, 0.00803164952, 0.0091454722, -0.0111761158, -0.00851657894, -0.0180636346, -0.00374305155, 0.0123808635, 0.00029408338, -0.0259134341, -0.000243648799, 0.0111988466, -0.0195487309, 0.00895604677, 0.000523288443, 4.9221082e-05, -0.00730425445, -0.0201548934, 0.0137068434, 0.00635712594, -0.0074861031, -0.00104184134, -0.0143130049, 0.00445908075, 0.000407502026, -0.0104638748, -0.0129036782, -0.025110269, 0.0173513927, -0.00454242807, 0.0136159183, 0.0337935425, -0.0212762933, 0.0197760426, 0.0120777823, -0.0178817846, 0.00184216478, 0.00709588639, 0.00961524807, -0.00869085081, 0.00405370956, 0.0232311673, 0.00822865218, 0.0192456506, -0.000461488351, -0.013903846, -0.00420146203, 0.0117974319, 0.00208368269, -0.0155025981, -0.0157905258, 0.00243601436, -0.0164724588, 0.0107745333, -0.0140553862, -0.0084862709, -0.0211853683, 0.0112140011, 0.00738760177, -0.0183515605, -0.0129870251, 0.0225492343, -0.0134416474, -0.0119489729, 0.0196548104, 0.0143130049, 0.0157299098, 0.0147827808, -0.0129718715, -0.0316416658, -0.0036900125, 0.0100698695, -0.00537590124, -0.00781949237, 0.00646699313, -0.0170634668, -0.00903939363, -0.00314446655, 0.00162527245, 0.00245306268, 0.0119717037, 0.000777592475, 0.0130627956, 0.00106173102, 0.0117747011, 0.00760354707, 0.0255648904, 0.00296640629, 0.0225795414, -0.000922029547, -0.00727394642, -0.0194881149, -0.00354983751, -0.0103502199, -0.0059366012, 0.000901192718, -0.0168513097, -0.00716786832, 0.0197608881, -0.00724742701, 0.00726258103, -1.13951392e-05, -0.0102441413, -0.00835746154, -0.00616770051, 0.00511070527, -0.00893331598, 0.0229129307, 0.0187152587, -0.00215945276, -0.0173968561, -0.00695192302, 0.00900150836, 0.020851979, 0.0139341541, -0.00595175521, 0.0154874446, 0.00766795175, 0.0108048413, 0.00855446421, -0.0146236634, 0.0188061818, 0.00551228737, -0.0017408221, 0.0122369, 0.0101835253, 0.00903181732, 0.0250648074, -0.00552365324, 0.00955463201, -0.0207762104, -0.00769447163, -0.0105926841, 0.00152203545, 0.00519784074, -0.0277470741, 0.0142751196, 0.00158549298, 0.00982740521, -0.00476973876, -0.00970617216, 0.000342623709, 0.00997136813, 0.000614212826, 0.00523193739, 0.00992590655, -0.00110435172, -0.000886985799, -0.000714134832, 0.0095319, 0.00930459, -0.00942582265, -0.00992590655, 0.00729667768, 0.00860750303, 0.0370668173, -0.00755050778, -0.0101229092, 0.0260346662, 0.01715439, 0.00157128612, 0.0298837963, -0.000851468474, 0.0169725418, 0.00292852125, 0.0148661286, -0.00136007648, 0.0329449177, -0.0318538249, -0.0103729507, 0.0145100076, -0.0122217452, 0.0156389847, -0.0136992661, -0.00462198677, 0.00555017265, -0.00604267931, 0.0184424855, -0.00254398701, -0.00113560702, 0.00290200161, -0.00876662135, -0.0128203304, 0.0184879471, -0.0109639587, -0.00193024776, -0.0180333257, 0.0117065078, -0.0282926206, 0.0044856, -0.002684162, -0.00775887631, 0.00870600436, -0.0100168306, -0.0120323198, -0.0189425685, -0.0194426533, 0.0031994, -0.00843323208, -0.0347937122, -0.00225606, -0.00699738506, 0.00900150836, -0.00336041185, -0.00475079613, 0.00875904411, 0.00935762934, 0.0156692937, 0.0271257591, 0.0116913533, 0.00100206188, -0.00908485614, -0.0151313245, -0.0132067595, -0.00459546736, 0.00111571734, -0.008281691, 0.0241858717, -0.00838777, 0.0191698801, -0.00479247, 0.0123808635, 0.0140250782, 0.0211247522, -0.0141311567, -0.0194729604, 0.00207989407, 0.00117443933, -0.00105699536, -0.00349300983, -0.0011536025, -0.00118485768, 0.0116080064, -0.0246556476, -0.0155480606, -0.0121080903, -0.00515616732, 0.0285199322, 0.00794072449, 0.0231402423, -0.0101835253, 0.0305808838, 0.00201170077, -0.0239737146, 0.011979281, -0.0170180034, -0.00329979556, 0.0217763782, 0.0250648074, -0.00919093471, 0.0117519693, -0.00486824, -0.0092136655, -0.0102744494, 0.0204882827, 0.0291867107, 0.000216774017, -0.00700496184, -0.00689130649, 0.0109412279, 0.00203822041, 0.00743685244, 0.0219885334, -0.0149418982, -0.000615159923, -0.00575854117, 0.0323084444, 0.0114413118, -0.0297019482, -0.00145857781, -0.0115852756, -2.25978929e-05, -0.0136386501, 0.00206852844, -0.00249284203, 0.0116155837, 0.0311264303, -0.0193517283, 0.0191547256, 0.00996379089, 0.000229441866, -0.01733624, -0.000546493102, 0.0149267446, -0.0230190102, -0.00704663573, 0.0112443091, -0.00448181201, 0.0031160526, -0.0126233278, 0.00121990149, -0.0163966883, -0.000666304841, -0.0124490559, -0.0157753713, 0.0289594, 0.00825138297, 0.0187152587, 0.0142599661, 0.00922124274, -0.00931216683, 0.0155329062, -0.0190789551, 0.00360855949, -0.00805438, 1.86835882e-06, -0.0129870251, -0.00873631239, -0.00095565262, -0.00385291851, 0.00421661604, 0.0153359035, -0.0117595466, -0.000844365, 0.0101001775, 0.00840292405, 0.0213520639, 0.0207004398, 0.00617906591, -0.0106533011, -0.00475458475, 0.0194123443, -0.0183667149, 0.000861886889, -0.00182227511, 0.0127748689, 0.00597069785, 0.00235077273, 0.0238827914, -0.0175029337, -0.00362371351, 0.018427331, -0.0319144391, 0.0136386501, 0.00377335981, -0.0190031845, -0.00922124274, -0.00529255392, 0.0200336613, -0.00330168987, -0.00182038092, 0.0398854725, -0.014169042, -0.00383018749, 0.0193971898, 0.012009589, -0.0155935232, 0.00619422, 0.00994863734, -0.00661853375, -0.00123410835, 0.0155632151, -0.0120247426, -0.0117216613, -0.00703905849, 0.0328843, -0.00732319709, -0.00137049484, 0.002233329, 0.00540999789, 0.00167736446, -0.0169270802, -0.0123657091, 0.0361575745, -0.00274288398, 0.0312476624, 0.00442119548, -0.00450075418, 0.0249284208, -0.00240570633, 0.00269931601, 0.0175938588, 0.00954705477, -0.0292170178, 1.18391057e-07, 0.0159572195, -0.0154040968, -0.0214429889, -0.00291526131, 0.0172756221, -0.0105320681, -0.0091454722, 0.0228220075, -0.0155329062, 0.0163966883, 0.0242313351, 0.0031842459, -0.00962282531, -0.0193971898, 0.0105396453, 0.0191850346, 0.00293609826, 0.00711482903, 0.0198518131, -0.0126233278, 0.00544030592, -0.00564867398, 0.0108730346, -0.0150176687, 0.0042090388, 0.0147827808, 0.00760354707, -0.0180333257, 0.0116155837, 0.00961524807, 0.00581915723, 0.0242313351, -0.00924397353, -0.00865296554, -0.00373358023, 0.00612223847, -0.0246859565, -0.00292283832, 0.00779676158, -0.00142258697, 0.00985771324, 0.004925068, 0.011918664, 0.00285464525, 0.00250231335, -0.00473943073, 0.0149722062, 0.0203670505, -0.0261407457, -0.0173513927, 0.0199730452, -0.000916820311, -0.000431417022, 0.0166088436, -0.014169042, -0.00245116837, 0.00687994109, -0.00923639629, 0.0103123346, -0.0357938781, -0.0182303283, 0.00925912801, 0.000586272508, 0.0215187576, -0.0327933766, 0.0129339863, 0.0136841116, 0.0247465726, 0.0117292386, 0.00114507833, 0.0186546426, 0.010410836, 0.00140080298, 0.00207799976, -0.00234887865, -0.0244738, -0.00229015667, -0.0062321052, 0.00488339411, -0.0105926841, 0.0125172492, 0.00555775, -0.0137523049, 0.00304975361, 0.0113049252, -0.000566382834, 0.0108503038, 0.00311794691, -0.00016894404, 0.0118883559, 0.0052887653, 0.00401961291, -0.00670188107, 0.00394763146, -0.00147373183, -0.00466366066, 0.00915304944, 0.00153434812, -0.0190638, 0.0103350654, 0.014138733, 0.0111685386, 0.0123581318, 0.00710725179, 0.0010929862, 0.00408780621, -0.00570171326, 0.0218976103, 0.00521299476, -0.00474321935, -0.00766795175, 0.00805438, 0.0196548104, 0.000923923799, -0.00279781735, -0.0095319, 0.0333995372, 0.0172907766, -0.0157147553, -0.00178533711, 0.0285805482, 0.0233675539, -0.00169914844, 0.000641206, -0.0223370772, 0.00717544509, 0.00642910786, 0.0176999364, 0.00760733569, -0.00638364581, 0.00225037709, -0.00595554383, 0.00176544744, 0.0119717037, -0.0122596305, -0.00228826236, 0.011714085, 0.00919093471, -0.0119413957, 0.0158966035, -0.017745398, -0.0213975254, -0.00448938878, -0.0121914372, 0.0019567674, -0.0235494021, 0.00284706801, -0.0123202465, 0.0132446438, 0.0242767967, 0.00600100588, -0.00361234788, 0.0196851175, -0.00471291132, -0.0250496529, -0.00111761154, 0.00348353852, -0.0120702051, 0.0123429783, -0.0177150909, -0.0117898546, -2.23759089e-05, -0.0170180034, 0.00683447905, 0.00850900169, 0.0332783051, -0.00898635481, -0.0236100182, -0.00799376424, 0.0139644621, -0.0244131833, 0.00664126454, 0.00671703508, 0.0150403995, -0.00124168536, 0.00721333036, 0.0213217549, -0.00698223105, -0.00276750932, 0.00479247, -0.00267090229, -0.0135401487, -0.0206549764, 0.00229962799, -0.00245495699, 0.00617906591, 0.00954705477, -0.0084105, -0.00509176264, -0.0237615593, 0.00521299476, -0.0136007648, -0.00595554383, -0.00329221855, -0.000669146248, 0.0174120087, -0.0138356527, -0.00480004679, -0.0176241659, -0.0215490665, 0.0099941, 0.000195463639, -0.0121838599, -0.0120020118, -0.0178817846, 0.0199730452, 0.00515995594, -0.0197154265, -0.00347217289, -0.0120171653, 0.0114943506, 0.012274785, 0.0113049252, 0.0158511419, -0.00742169842, -0.00838019233, -0.0142978514, -0.0220339969, 0.00348164421, -0.0214126799, 0.011327656, 0.00041602616, -0.0186849497, -0.0143130049, -0.00612602662, -0.0138356527, 0.00243790867, 0.0273076072, 0.0058684079, 0.0097137494, 0.00515995594, -0.01715439, 0.0166997686, 0.00260649738, -0.0103805279, 0.0120323198, 0.0131309889, -0.0329752229, 0.00443256134, 0.00565625122, 0.00626241323, -0.0136916889, 0.0120626278, -0.00182322226, -0.0125399809, 0.0273227617, 0.0203064345, 0.0127976, -0.0156692937, 0.00297208899, 0.00963797886, -0.0219430719, -0.0259892046, -0.00154097797, 0.0178817846, -0.0022522714, 0.0186849497, -0.0220794585, 0.000778539572, 0.00453863945, 0.00530391932, -0.0206095148, -0.00122842565, -0.0135780331, 0.00823622942, 0.00162148394, 0.000207421137, 0.00666778442, -0.0114791971, 0.00808468834, 0.0187607203, -0.0226098504, -0.000644520915, -0.00911516417, -0.00488339411, -0.00966828689, 0.00422419282, -0.00916820299, -0.00711482903, -0.00222575176, 0.0224734638, 0.0155783687, -0.0171240829, 0.00390216918, 0.0262013618, -0.00574338669, 0.0249284208, -0.0121535519, 0.0118125863, -0.00842565484, -0.00125210383, -0.0215187576, -0.00718302233, -0.0184121765, 0.0152828647, -0.0143054277, 0.00230531069, -0.00896362402, -0.0231705513, 0.011714085, -0.0273227617, 0.00175502896, 0.0119035104, 0.0241858717, -0.00614496926, 0.0108275721, -0.0145403156, -0.0108048413, 0.0244889539, 0.00712998305, 0.0172907766, -0.03449063, -0.00772856828, 0.0187758747, 0.0210641362, -0.00204579742, 0.0288684759, -0.0253981967, 0.00874389, 0.00866812, -0.0250648074, 0.00969101861, 0.00786495488, -0.00407644082, 0.0129415635, -0.015025246, -0.0219885334, -0.00122653134, 0.0142751196, 0.00889543071, 0.0218369942, 0.000694718736, -0.00877419766, -0.0293685589, 0.0163057633, -0.0134037621, -0.0286563188, 0.0273530688, 0.00365212723, -0.0279289242, 0.011918664, 0.0191395711, -0.0216702987, -0.00596690923, 0.0162906088, 0.0253224261, -0.0141538875, -0.00681553641, -0.00219354942, 0.0127900224, 0.0119944345, -0.00873631239, 0.00641395384, -0.00786495488, -0.0148130888, 0.000486350473, -0.00469018, -0.0151313245, 0.0174877793, -0.0234736316, 0.0106154159, 0.0202306639, 0.00934247486, 0.00154666079, -0.000935289368, 0.0183212534, -0.00289063598, 0.0212005228, 0.0235948637, 0.0016319023, 0.0156238312, 0.0144418143, -0.000944287051, -0.000991643523, 0.0152449794, -0.00068714167, 0.00503493473, 0.00186016026, 0.0160329901, 0.0117595466, -0.0154192513, -0.0199730452, 0.00942582265, -0.0527058057, 0.00746716047, -0.00537211262, 0.0116307372, 0.000695665833, 0.00494779879, 0.00793314818, -0.010471452, 0.00903939363, 0.00982740521, 0.0102365641, 0.0133052608, 0.00956978556, 0.00544409454, -0.00700496184, -0.00058816676, 0.0319144391, -0.0211550612, -0.0114943506, -0.015025246, -0.00892573874, -0.0047886814, 0.0150328232, -0.00726636965, 0.00490991399, -0.0125020957, -0.00800891779, -0.0153586352, -0.0236857887, -0.00755050778, 0.00734592834, -0.00258755498, 0.0146160861, -0.027034834, 0.00904697087, -0.011714085, -0.00270689302, 0.00492885662, -0.0121535519, -0.00416357676, 0.000195700413, 0.00734592834, -0.00481520081, -0.0164876115, -0.0236100182, -0.00414463412, -0.0193517283, 0.00181753945, -0.00928943604, -0.00966071058, -0.00972132664, -6.10305906e-05, -0.00658064848, 0.00200222945, 0.00545546, 0.0201397389, -0.0185485631, -0.0129794478, 0.0251557324, 0.00439088745, -0.00366917555, -0.0169422328, -0.00896362402, 0.00937278289, 0.021382371, 0.0089181615, 0.00754293101, -0.00453106267, 0.00505766599, 0.0194881149, -0.01845764, -0.0130097568, 0.00412569148, -0.0184121765, 0.000466697529, 0.0219279174, -0.0134492237, 0.00114602537, 0.0167452302, 0.0182757899, 0.00607677596, -0.00131461432, 0.0106684547, -0.00109866902, 0.0138204983, -0.0134189157, -0.0220794585, 0.00748989172, 0.020382205, -0.00122274284, 0.00573202129, 0.00115454954, -0.0181394033, 0.00118959334, -0.012570289, -0.00322213094, -0.000849574222, -0.00273909536, -0.0130627956, -0.0103956815, 0.00184500625, -0.00651245518, 0.011297348, -0.000806953467, 0.0300050285, -0.0243828744, 0.0314295106, -0.00151445845, -0.00652760919, 0.0292018652, -0.00446665799, 0.0112443091, 0.00304407091, 0.000892195, 0.0371577442, -0.00867569633, 0.0158359874, 0.00272015296, 0.00403097877, 0.0110700373, -0.0328539908, -0.0135098398, -0.0148509741, -0.0271863751, -0.0151995169, -0.00157886313, -0.0167452302, -0.00974405743, -0.0137144197, -0.0254739672, -0.00574338669, 0.00680417055, -0.0249587297, 0.0149343209, 0.025170885, -0.0187001042, -0.00711861765, 0.0133583, 0.000494874606, -0.00625104783, 0.0143963527, -0.00855446421, 2.77035069e-05, 0.000311605254, -0.0360363424, -0.00243222597, 0.0169573873, 0.011327656, 0.00130230165, -0.0101077547, 0.020200355, -0.010441144, 0.00777403032, -0.00465608342, -0.0095773628, 0.00497810729, 0.00615633512, -0.00535317, 0.0123657091, -0.0176544748, -0.00558048068, 0.0217763782, 0.0136841116, -0.0112291547, 0.00902424, -0.00200412376, -0.00137428334, 0.0149343209, 0.0126763675, 0.00146047212, 0.0093500521, 0.00192456506, 0.00301565696, -0.0155783687, -0.0158056803, -0.0222916156, 0.00501978071, -0.0217006076, 0.0106002614, -0.00800134148, -0.00181943376, -0.0152828647, -0.0180787873, -0.0143357366, 0.00127862336, 0.00977436546, -0.0138053447, -0.00213293335, -0.00134776381, 0.0140478089, -0.00108256785, 0.00994106, 0.00783464685, 0.00800891779, -0.00571307866, 0.00642531924, 0.00357256853, -0.00342102791, 0.00458789, 0.008281691, 0.00265195966, 0.0117216613, 0.0097137494, -0.0131385662, -0.0054251519, -0.0185031015, -0.0121156676, 0.00744064106, -0.00731940847, 0.0103123346, -0.00476595, -0.030020183, -0.0122444769, -0.00415599952, 0.0174877793, 0.0157753713, -0.0067321891, -0.020200355, -0.0276713055, 0.00200412376, 0.00972132664, 0.0224886183, 0.0245950315, 0.00591008132, 0.0118656252, 0.000447281403, 0.00031018458, -0.00204200903, -0.0226401594, 0.0123732863, 0.00468639145, 0.00711482903, 0.00031018458, -0.000778539572, 0.000631261093, -0.007232273, 0.0102896038, 0.00553501863, -0.0084862709, 0.00204769173, 0.0127597144, -0.00346459588, 0.00953947753, 0.000204579745, -0.00474321935, 0.0214884505, -0.00719059911, 0.0202761255, 0.00692919176, 0.022231, 0.00338124856, 0.000827316719, 0.00310468697, 0.00941066816, 0.0274288394, -0.00409159483, -0.0161542222, 0.007084521, 1.70335134e-05, 0.0106836092, 0.0102744494, -0.0149873607, 0.0257770475, -0.0102820266, 0.000770489, -0.0110851917, 0.000765753328, -0.00648593577, -0.00185068895, 0.0157450642, 0.00187057874, 0.00374305155, -0.00846354, 0.00791041646, 0.00209694239, 0.0311264303, 0.000595743768, -0.000637891, -0.0119565492, 0.00453485083, -0.00037908816, -0.00133923965, -0.0209580585, -0.00794072449, 0.025110269, -0.00298913731, -0.0187001042, 0.00892573874, -0.00603510253, -0.0129718715, 0.00197949843, -0.00882723741, 0.0138204983, -0.00576990657, -0.0225492343, -0.0216248371, 0.0103350654, -0.0119868573, -0.00577369519, -0.0200336613, 0.0281713884, -0.0193820372, 0.0132673755, -0.0203670505, -0.00381882186, -0.0164269954, -0.00742927566, -0.0175635498, 0.00678522838, -0.00660337973, -0.00647457, -0.0107139172, -0.0228826236, 0.00757702766, -0.0183212534, 0.00501599209, 0.00890300702, -0.00900150836, 0.00767552899, 0.00819834415, 0.0126763675, 0.0235797092, 0.0164421499, -0.014373621, 0.000532759761, -0.00545167131, 0.0268529858, -0.0113503877, -0.00538347801, -0.0437952206, -0.0130324876, 0.00128430617, 0.00339450827, 0.00856204145, -0.014729742, 0.000803164905, -0.0050046267, -0.0133507224, -0.00363318482, -0.0261407457, 0.00180996244, -0.0182454828, -0.0220491495, -0.00251746736, 0.00307059032, -0.00648972392, -0.00223143469, -0.0103502199, 0.0205034371, 0.0079179937, 0.00375441718, -0.00766037498, -0.00532286195, 0.0204882827, 0.0101304855, 0.00974405743, -0.0169119257, -0.0127976, 0.0143887755, -0.00375441718, 0.0029626179, 0.0105396453, 0.0112443091, -0.0464926399, 0.00614496926, 0.0165027659, -0.00201927777, -0.00496674143, -0.0175938588, -0.0165482275, 0.0145100076, 0.00794830173, -0.000360382372, 0.0628590211, 0.018336406, 0.013812921, -0.0303535722, 0.0151540553, -0.012865793, 0.00191509374, 0.0372486673, -0.0136007648, 0.00122274284, 0.0129339863, 0.0142145036, -0.0229583941, 0.0134643782, 0.0206398237, 0.008281691, -0.0133128371, 0.00289821299, 0.00542136328, 0.00984255876, 0.00208747108, -0.0272469912, 0.00902424, -0.0161996856, 0.00378283113, -0.00199086405, 0.00867569633, 0.0028944246, -0.0125854425, 0.0213975254, -0.000554070168, 0.0159269124, 0.022155229, 0.0107821105, -0.0126763675, 0.00128809467, 0.0112821944, 0.0121080903, 0.000669146248, -0.0269136019, 0.0179424, 0.029429175, 0.00828926824, -0.00246063969, 0.00938036, -0.0125854425, -0.00234698434, -0.00109109201, -0.0101683708, -0.0117368158, 0.0173210856, -0.0228674691, -0.00630408712, -0.00239055231, 0.0285653938, 0.00449696602, 0.0250799619, -0.00722090714, 0.00148320314, 0.0187758747, -0.00491370261, -0.00206663436, -0.0076641636, 0.0197911952, 0.00314446655, -0.0568277054, -0.00121990149, -0.0115625439, 0.00767931761, 0.00315204356, -0.00599342864, -0.00669809245, 0.0120853586, -0.0110548837, -0.0225037728, 0.0198366586, -0.00636470318, 0.00125778653, 0.0122444769, -0.0307475775, -0.0203215871, 0.0076641636, 0.00398172811, -0.00979709625, -0.0018828914, -0.0144493915, -0.0156238312, -0.00532665057, -0.0046409294, 0.0113503877, -0.00111003453, 0.0199730452, -0.00193308911, 0.00327895861, 0.0164573044, 0.000895036384, -0.0131461425, 0.00705042435, -0.00838019233, 0.0145327393, 0.0120020118, -0.00474321935, 0.000153434812, -0.00689509511, 0.0108806118, 0.0310355052, -0.0135931876, 0.0135325715, -0.00473943073, 0.00333768059, -0.00387943815, 0.0210944451, -0.002839491, 0.0088499682, 0.0258679725, 0.00422419282, 0.0177302454, -0.00227500242, 0.00737623638, 0.00952432398, -0.00928943604, 0.000826843141, -0.0150403995, -0.0128430622, -0.00492127938, 0.0104184132, 1.75736727e-06, 0.0118353171, 0.033126764, 0.0122975158, -0.00260839169, -0.0162299927, -0.00482656667, 0.00469775731, 0.017745398, 0.00626999047, -0.00682690181, 0.00483793207, 0.0205488987, 0.00245116837, -0.00033552025, 0.00180238544, 0.00155613199, 0.0188364908, 0.00265195966, 0.00466366066, 0.00989559758, 0.00684205582, 0.0277622286, -0.00685342168, -0.013919, -0.00231099338, -0.0164118409, -0.00696707703, 0.00279213465, 0.0174726248, 0.0109412279, -0.00727773504, 0.0222158451, -0.00868327357, 0.00787253212, -0.00359151117, 0.0234736316, -0.00398551673, 0.0124945184, 0.00451969681, 0.0109412279, 0.00143489963, 0.0140629634, -0.0118201626, 0.0281865429, 0.0115473904, -0.00752019975, -0.00163758511, -0.0078498, -0.00350248092, -0.0167149231, -0.000771909661, -0.00172093243, -0.0249890368, -0.011153385, 0.00888027623, 0.00408780621, 0.0489172898, 0.00934247486, 0.00239623501, 0.00526603404, -0.0127218291, 0.0277622286, -0.016654307, -0.009850136, 0.00210641371, 0.00404613279, -0.00539863203, 0.00810741913, -0.00840292405, 0.0128430622, 0.00376767688, 0.031762898, 0.00690267235, 0.0337026194, -0.0198821202, -0.0114413118, 0.00625483645, 0.00822107494, 0.0227007754, -0.00442119548, -0.00116496801, 0.0114564653, 0.0258225109, -0.00273720128]
26 Oct, 2021
jQWidgets jqxSlider mode Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The mode property is used to set or return the mode of the slider widget. It accepts String type value and its default value is “default”. Its possible values are – ‘default’ ‘fixed’ Syntax: Set the mode property. $('selector').jqxSlider({ mode: String }); Return the mode property. var mode = $('selector').jqxSlider('mode'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider mode property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider mode Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', value: 8, mode: 'fixed' }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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 mode Property
https://www.geeksforgeeks.org/jqwidgets-jqxslider-mode-property?ref=asr5
PHP
jQWidgets jqxSlider mode Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxSlider mode Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0186559167, 0.0112171648, -0.00785201602, 0.0403660499, 0.0401141569, 0.0352651924, 2.91959932e-05, 0.0431683734, -0.0106189167, 0.0103434073, 0.0055967751, 0.000791105325, 0.00118567399, -0.0195375457, -0.014790915, 0.00706484588, -0.0466634072, 0.0257246979, -0.0165148154, 0.0301171038, -0.0251421928, 0.0189865287, -0.0839437544, 0.0181206409, -0.0267007891, 0.0293614212, 0.00225720857, 0.0137439789, -0.0253153704, 0.0213952661, -0.0140903341, 0.000207738951, -0.00578963151, 0.0244179964, -0.0361153372, -0.0195375457, 0.00334743829, 0.00507330708, -0.039547395, 0.00261537055, -0.0108550675, -0.016687993, -0.00286136102, 0.00628948398, -0.00212732563, 0.0305894054, -0.0185614564, -0.014924733, -0.00440027751, -0.0176168531, -0.0181836151, 0.03191185, -0.0011945297, 0.039547395, -0.00385122676, -0.0197894406, 0.00394175109, 0.0380045436, -0.0321007706, -0.0192699097, 0.0189078115, -0.055353757, -0.0163416378, -0.0228908882, -0.0278815422, 0.00903670583, -0.00204270473, 0.0253626015, -0.0384138711, 0.0252523962, -0.0135393152, 0.025488548, 0.0126025835, 0.00980026, 0.0173964463, -0.00265079318, -0.00841484219, 0.0248745549, -0.00894224551, 0.0142792547, -0.0403030775, -0.0216156747, -0.0305579193, -0.00106366281, -0.0130355265, 0.0190022718, 0.0285270214, -0.0493082963, 0.0754423216, 0.0344780236, -0.0200413354, -0.0154914958, -0.0264174081, -0.00647840463, 0.0137282358, -0.017569622, 0.00627767667, 0.0292512178, -0.0379730575, 0.00741513632, 0.0300383866, 0.0217888504, 0.00421135686, -0.033974234, 0.0320535414, 0.00336514949, 0.031045964, 0.0300383866, 0.00697825756, -0.0150034502, 0.0420663357, -0.0363042578, 0.0146807106, -0.000901309075, -0.0475765243, 0.0310302209, -0.00130079756, -0.0105008408, 0.0414051153, -0.0220250022, -0.00962708239, 0.0237725191, -0.00972941518, 0.000578077568, -0.0274249855, 0.0109180408, 0.00764735136, 0.00911542214, 0.0163573828, -0.0356430337, -0.0205451231, 0.0127127869, 0.000280429114, -0.0256932117, -0.00108039007, 0.0362727679, 0.0255357772, 0.0116579803, -0.0365246646, -0.0214582402, -0.0149168614, -0.0229381192, 0.001832137, 0.0213008057, 0.00755682681, 0.0255357772, 0.0261655133, 0.0493397824, -0.0455928557, 0.0101859728, -0.0269054528, -0.00569123542, -0.00673423475, 0.030479202, 0.0331555791, -0.0203247163, -0.0257089548, 0.0268109925, -0.026370177, -0.00595887285, 0.00964282639, -0.0147121977, 0.0450260937, 0.0238197483, -0.0150349373, -0.00614385772, 0.0523310266, -0.00302863447, -0.0425701253, 0.0321637467, -0.00477418303, -0.0132559342, -0.00922562648, 0.00904457737, -0.0217258781, -0.0121224103, 0.00158713048, -0.032494355, 0.0241188724, -0.00919413939, 0.0157355182, -0.00941454712, -0.0135078281, 0.00257798, 0.0388861708, 0.000120596822, -0.000904752931, 0.00816294737, -0.0134054963, 0.00126832677, 0.00808423, 0.0233159605, 0.0415940359, 0.040460512, -0.0126813008, -0.00496703945, -0.0244494844, 0.00571091473, -0.0218675677, 0.0030030515, 0.0303847417, -0.0247328654, 0.0162944086, 0.0194588304, 0.0304949451, 0.0189550407, -0.0106582744, -0.0385713056, 0.0271888338, -0.0267952494, 0.0356430337, -0.0161684602, 0.0422867462, 0.000948539237, 0.0001752682, 0.0229381192, -0.00475450372, -0.0109259123, 0.00184591243, -0.0233946778, 0.0136416471, -0.0131063722, -0.0315182656, 0.00906032, -0.101009585, -0.0355485752, 0.0142005375, -0.0336908549, -0.0152238579, 0.0139958737, -0.0414680876, 0.00973728672, -0.0144052012, 0.0164203551, 0.0323054343, 0.0699636266, -0.00869822316, -0.00159795408, 0.00441602059, 0.0509141237, 0.0197107233, -0.0210489128, 0.000377103366, -0.0118469009, 0.0183095615, 0.0133818816, -0.0193958562, 0.00750566088, -0.0163731258, 0.00396930194, -0.0175381359, -0.0207497869, -0.0216629039, -0.0115162898, 0.0235206243, 0.0348243788, 0.0184827391, -0.0192226786, 0.00364853046, -0.0156253148, 0.0439555421, 0.0280389767, 0.001832137, 0.00285939313, 0.0309515037, 0.0191282183, 0.0391380675, -0.0409643, 0.00386106642, -0.0356430337, 0.00249532727, -0.0202145129, 0.0326517895, 0.0340057202, 0.00225327257, 0.00232608593, -0.0401771292, 0.00188822276, 0.0115320329, -0.00636426546, 0.0223556124, 0.00626980513, 0.0406494327, 0.0525514334, 0.0127285309, 0.0105323279, 0.0231270399, -0.0126261981, -0.0128780929, 0.0215212144, -0.0227806848, -0.0124294059, 0.00878481101, 0.0378785953, 0.0264488943, 0.00483715627, -0.0183410496, -0.0156489294, -0.00335727795, 0.0106189167, 0.00166289555, -0.00114533154, -0.0187661201, 0.0118547725, 0.0125002516, 0.0197264664, 0.0767018, -0.00540391868, -0.00540391868, -0.0098238755, 0.0519846715, -0.00613992196, -0.0168454275, -0.0408068672, 0.000701564772, 0.00839909818, 0.0175538789, 0.0124687646, 0.0192856528, -0.00230640662, 0.00212142174, -0.0181993581, -0.0209544525, 0.0315969847, 0.0433887802, -0.00980813149, -0.00867460761, -0.0260238238, -0.00867460761, 0.00935944542, -0.0553852431, -0.00552593, 0.0353281647, -0.00824953616, -0.0246698912, -0.0411847085, 0.0455613695, 0.00198858697, -0.038665764, -0.00105677499, 0.0164360981, -0.0116737233, 0.0256774686, -0.0204664059, 0.0278500561, -0.0473876037, 0.00571878627, 0.0065531861, 0.0619659834, -0.00204467284, 0.00143068051, 0.0134527264, 0.0326203033, -0.0122719724, 0.0321165137, -0.0383194089, 0.000467135891, -0.0270943735, -0.0209544525, 0.0184197668, -0.015090039, -0.000889009505, 0.00752927596, -0.00808423, 0.0152317295, -0.0156016992, -0.0269841701, -0.0235048812, -0.022261152, 0.00133917213, -0.00706484588, -0.0349188372, -0.00943816174, 0.0390436053, -0.0207812749, 0.0215054695, -0.00590377115, -0.0246698912, -0.00342418719, 0.0138305677, -0.0463800244, 0.0471042208, -0.0129961679, 0.0114848027, -0.0223871, 0.0077181966, -0.0124372775, -0.0370599404, 0.00394175109, -0.00758437812, -0.0394529328, 0.032242462, 0.0194745734, -0.0245439447, 0.013342523, 0.0122641008, -0.00190495013, -0.0259923358, 0.0248588119, 0.0149011184, 0.0264961254, -0.028416818, -0.0116501087, -0.00536062429, -0.0129882963, -0.00364459469, -0.0185772, -0.0188920684, 0.019332882, -0.00338679668, 0.0170973204, -0.00373315136, -0.0299124401, 0.0653665513, 0.0158063639, 0.0496231653, -0.0121381534, 0.0778982937, 0.0111384485, -0.019931132, 0.065429531, -0.00166978326, -0.0169713739, 0.0256459825, -0.0196792372, -0.00344189862, -0.0429164805, 0.000592345, 0.0468523279, -0.00408934569, 0.00390042481, -0.0169084, 0.00192069355, -0.0383509, 0.0174909066, 0.0177270565, 0.0309200175, 0.0296920333, -0.0131457299, -0.0380675159, -0.0150821675, -0.0162629206, 0.0182151012, 0.0437036492, -0.0315497518, 0.016987117, -0.0399567224, 0.00233789347, 0.0088162981, 0.0244967137, -0.0020505765, -0.0265905857, -0.0250319894, -0.00572272204, 0.0256459825, 0.0107212486, 0.0333445, -0.00281806686, 0.0514808856, -0.0299754143, -0.000235904852, 0.016703736, 0.00296959677, -0.0064272387, -0.0183253046, -0.0150034502, -0.0171288084, 0.0283853319, -0.0139643867, -0.00701368, -0.0297707506, -0.0234261639, 0.0299596712, 0.0704674125, 0.0265276115, 0.00742300833, 0.000954935, -0.0125632249, 0.0212378334, 0.0165148154, 0.0365246646, -0.00989472, 0.0437666215, 0.0079346681, 0.0181048978, -0.0239299517, 0.0089265015, -0.0290937833, -0.022276897, 0.0217731073, 0.019033758, 0.00869035069, -0.0181521289, 0.044238925, -0.011130576, 0.0174279325, 0.0028633289, -0.0137518505, -0.00806061551, 0.00755289104, 0.018466996, 0.0156882871, -0.0148853753, 0.0227649417, 0.0342576168, -0.00759618543, -0.0293614212, -0.0154600088, 0.00997343753, -0.0148460167, 0.0116501087, 0.00245990464, -0.0305421762, -0.00275115739, 0.00290268753, -0.0430109389, -0.0416884944, -0.0198524147, 0.0173492152, -0.00765915914, 0.024307793, 0.00380202848, 0.00542359753, 0.00943816174, 0.0288261473, 0.0129961679, -0.026669303, -0.0248903, -0.0232215, -0.00946177728, -0.0227334555, -0.00679327268, 0.0371544, -0.000963298662, -0.00777723454, -0.00455771107, -0.0231900122, -0.0122089982, -0.0115950061, 0.0289048627, -0.0040185, 0.0237567741, -0.0338168, 0.00474269595, 0.0311089382, 0.0169084, -0.0101623582, 0.00543934107, -0.00327659305, 0.032494355, 0.0225917641, -0.000203434116, 0.0103591504, -0.0108235804, 0.00789924618, 0.0164518431, -0.00522680534, -0.00774181169, -0.033124093, 0.00887927134, -0.0106897615, -0.0109101692, 0.0140116168, 0.0448371731, 0.00800945, -0.0129017076, 0.037500754, 0.00699793687, -0.0207340438, -0.0124057913, -0.0102332029, 0.00128111837, 0.0120043345, 0.0050615, 0.0137124928, 0.00303060259, 0.0443018973, -0.0255672652, -0.00368001731, 0.0107920934, -0.0014346164, -0.0324313827, 0.0211748593, 0.0230640657, -0.00523861311, 0.0179474633, -0.0174751617, -0.00447505852, -0.0219777711, 0.0135708023, -0.0158535931, 0.0370284542, -0.00747023849, 0.00380793237, 0.00390239269, 0.00441602059, -0.023441907, -0.0103434073, 0.0188290942, -0.0315182656, 0.0101702297, 0.0261182841, 0.016987117, 0.00166191161, -0.00382761168, -0.0252838843, -0.000573157798, 0.00721834414, -0.00161960116, 0.00551412208, -0.00200039451, -0.0214267541, 0.0558890328, -0.0131299868, -0.0108235804, -0.0165463034, -0.0333130136, 0.030762583, 0.0189707838, -0.0140745901, -0.00915478077, 0.0133897532, 0.017585367, 0.00307783275, 0.0230798088, -0.0161369741, 0.00438453397, -0.0115320329, 0.0119177457, -0.024906043, 0.00215290859, 0.0104142521, -0.00363672292, -0.00421135686, 0.0188605804, 0.00901309, 0.0025504292, 0.0118862595, -0.00101348071, -0.00528584328, 0.0157276466, 0.0113431122, -0.00414838316, 0.0543461815, 0.00436485466, 0.0520161577, 0.00596674485, 0.0274407286, 0.0323684104, 0.00554167293, -0.0012840702, 0.0241031293, 0.0224185865, 0.0195690338, 0.0146807106, 0.0106425313, -0.0156646725, -0.0309987348, 0.0167509671, -0.00125159952, -0.0166250188, 0.0145311486, 0.040397536, -0.001959068, 0.0182151012, -0.0125317378, 0.0330926068, 0.0430109389, 0.00434123958, 0.0251736809, 0.00284955348, -0.0143894581, 0.0285112783, -0.0121066663, 0.00913903769, -0.0141769219, -0.0226232503, -0.00600610301, 0.031659957, 0.00944603421, -0.0148696313, 0.0297077764, 0.0245596878, 0.0379415676, 0.00469546579, -0.026354434, -0.0218833108, 0.00189019076, 0.00954836607, 0.00381580414, -0.000150792155, 0.0115084182, 0.0162629206, 0.0239299517, 0.00968218502, -0.0309515037, 0.00148184656, 0.01202795, -0.0375952162, -0.0410902463, -0.012594712, -0.0206553265, -0.0158693362, 0.0172075257, -0.00249729515, 0.0125081232, 0.0117917992, 0.0227649417, -0.0220722314, -0.0258034151, 0.0168926567, 0.0373748057, -0.0073718424, 0.0545036159, 0.0168139394, 0.0098238755, -0.0201200526, -0.00757257035, -0.0347614028, -0.00273147807, 0.0420978256, 0.00424284348, -0.00135786738, -0.0267165322, -0.00105972693, -0.0122483568, -0.000448686595, -0.0212535765, -0.0102174599, 0.00821804907, 3.60683516e-05, 0.0242763069, 0.0156568009, -0.00648234086, -0.00234970101, 0.0161842052, -0.0083125094, 0.00265276106, -0.0154757518, 0.0125632249, 0.00653744256, -0.0211276282, 0.0251264498, 0.0145390201, -0.0158614647, -0.0159401819, 0.0135865454, -0.0214582402, -0.00527797127, -0.0287474301, 0.0098789772, -0.0159952845, -0.00530158635, -0.0378785953, -0.0102017168, -0.00395946251, 0.00711601228, 0.0236308277, 0.0373433195, 0.0162629206, 0.000190396619, 0.014940477, -0.0358319543, -0.00147299084, 0.013177217, 0.0285899956, -0.0494027585, -0.0294401385, 0.020513637, -0.00553380139, 0.0137361074, 0.0198839, 0.0199783612, -0.00800551381, -0.00674997829, 0.0196005199, -0.0163416378, -0.0174909066, 0.0262599736, -0.00713569112, -0.0284797922, 0.0125159947, 0.0105401995, 0.0170343481, -0.00687986147, -0.0317701586, 0.00255633285, 0.0221352056, 0.0207497869, 0.00863524899, 0.030762583, -0.00510873, -0.00226508, 0.000521991751, 0.0258034151, 0.00206041615, -0.0267165322, 0.0287474301, -0.00493555283, -0.0176798273, -0.0137675945, -0.0188920684, 0.0301013608, 0.0246541481, 0.0391065814, -0.0180734117, -0.0174594186, -0.00164813607, -0.0076001212, 0.00210764632, -0.0251264498, -0.00885565672, -0.0137361074, -0.0138069531, -0.0115320329, -0.00972154271, 0.0240401551, -0.0129253231, 0.00602184655, 0.0458447523, 0.0065453141, 0.00113155611, 0.0256459825, -0.0253468566, -0.0365246646, 0.0171760377, 0.000981502, 0.024307793, 0.0278185699, 0.0097058, 0.00674210675, 0.0139643867, -0.0590377115, 0.00571878627, -0.0287631731, -0.000145626356, 0.0337538272, 0.0121381534, 0.00373118324, 0.0113903424, -0.0194588304, 0.0173649583, -0.00833612494, 0.0258506462, 0.0104221236, 0.0170973204, 0.0174436755, 0.00876906794, 0.0319905691, 0.000281659071, 0.0357374959, 0.0257089548, 0.0511030443, 0.0217416212, -0.0207183, 0.0375952162, -0.00439634174, 0.00309357606, 0.0151451407, -0.00812358875, -0.020812761, 9.31073882e-05, -0.00908393599, 0.00909967907, 0.0271573476, 0.00383154745, -0.0236623138, -0.0424126908, -0.0405549705, -0.0250949636, -0.0291095283, 0.00757257035, 0.0226075072, 0.0112565234, 0.0165463034, -0.00594706554, -0.0449631214, 0.0143894581, 0.0132165756, -0.0116579803, 0.0366191231, 0.00519138295, -0.0350447856, -0.0122877154, -0.000921972271, 0.0560779534, -0.0223398693, -0.0035029042, 0.00883204117, -0.0125081232, 0.0118941311, -0.0226704814, 0.00504575623, -0.024906043, -0.00238315552, 0.0342576168, -0.00747417426, -0.0414995737, -0.000935747696, -0.0062107672, 0.00985536166, -0.0433887802, 0.00816294737, -0.0190809891, 0.00216668402, -0.0192069355, 0.00786382332, 0.0404290259, -0.0148381451, 0.00994982198, 0.0309200175, 0.00467972271, 0.000763554417, -0.0180734117, 0.0210331678, -0.0359264165, -0.0235363673, 0.00386106642, -0.00361901172, -0.00204073684, -0.0287946593, -0.0155859562, 0.0338482894, 0.0313765742, 0.00617534481, -0.0117524406, -0.026968427, 0.0146492245, -0.0297392625, 0.0326203033, -0.00930434372, 0.00686805369, 0.0514493957, -0.0136810057, -0.0116894664, -0.0150191933, 0.0102410754, 0.00645478955, -0.0225130469, 0.00380793237, 0.0353596546, 0.0338482894, -0.00397127, -2.18470286e-05, -0.019332882, -0.0362727679, -0.0554797053, 0.00486077135, -0.0115320329, 0.00397520605, -0.00279051578, -0.00310931937, 0.0255042911, 0.00258978759, 0.0250005033, -0.018750377, -0.0206868146, 0.0207183, -0.0302745383, 0.0195532907, -0.000461232121, -0.0453724489, -0.0131378584, 0.00896586, 0.0172547549, 0.00133523624, -0.0101387426, 0.0117209535, -0.00586047675, -0.0290937833, -0.0350447856, 0.00119748153, 0.0397992879, 0.00667913305, 0.00243038568, -0.0167667102, -0.00281413086, -0.0278658, 0.018466996, -0.0162629206, 0.0296290591, -0.0027452535, 0.0258663893, -3.6191348e-05, 0.0213008057, -0.0111778062, 0.00686018215, -0.0192384217, 0.0059864237, 0.0253468566, 0.026936939, -0.0115005458, -0.0189235546, -0.00191380584, 0.00347928912, 0.00718685752, 0.0133189075, -0.0129568093, -0.00399882114, -0.017853003, -0.0611473247, -0.0174594186, 0.00325888162, 0.0219305418, 0.0482377447, 0.00374299078, -0.0456873178, -0.0107763503, 0.00651776325, 0.00484502828, -0.0474820621, 0.00289875153, -0.0150821675, 0.0288891196, 0.0165777896, 0.0103670219, -0.00150152575, 0.00833612494, 0.00377054187, 0.000705992628, 0.0198839, -0.0261497702, -0.00369576062, -0.0312033985, 0.00251894235, 0.0147751709, -0.0121145379, -0.0157276466, 0.0160818733, 0.000915576529, 0.00657680118, -0.00547476392, -0.0151687562, 0.0176168531, 0.00125553529, -0.0192226786, -0.00834399648, -0.0410587601, 0.00161861721, -0.0309515037, 0.0153576769, 0.00239299517, 0.028700199, 0.00514021656, 0.00922562648, 0.0189707838, -0.0169084, 0.0177742876, 0.0217731073, -0.00715537043, 0.00451048091, 0.00155859557, 0.0241818465, -0.0188605804, 0.00175538799, 0.00235363678, -0.00765522337, -0.0377211608, 0.0119807199, 0.00793860387, 0.00372921536, -0.0255357772, 0.00182229734, 0.0168611705, -0.00458132615, 0.0174279325, 0.0117052104, 0.0174594186, 0.00954049453, 0.0224185865, -0.00203876896, 0.00911542214, 0.00152907672, 0.0104536107, 0.0214897264, -0.00516776787, 0.00708846096, -0.00975303, 0.00541966176, -0.0104614822, 0.0230483226, -0.00940667558, 0.00145626359, -0.000127177074, -0.00578963151, -0.00833612494, 0.00551412208, -0.0294086523, 0.0119964629, 0.00272951019, -0.00484109251, -0.000121457793, 0.0134684695, 0.00728525361, -0.0309672467, -0.0221352056, 0.0160661284, 0.0845105127, 0.0209544525, -0.0100206677, -0.0211433731, -0.0192699097, -0.024339281, -0.0199468751, 0.0224815607, 0.0223871, -0.0173807014, 0.0101781012, 0.0269999132, -0.00210371055, -0.00220997841, -0.00969005655, -0.0332500376, -0.00751353288, 0.00462068478, 0.0291567575, -0.0294086523, -0.0163416378, 0.0141847944, 0.010981014, 0.000950999151, -0.00423890771, 0.00742300833, -0.0256302375, 0.00370363239, -0.0418144427, 0.00347141735, 0.0124057913, 0.0259136185, 0.037815623, 0.00384729076, -0.0148696313, 0.0341946408, -0.0192226786, 0.00363869104, -0.0165620465, 0.00421529263, -0.0220879763, -0.00833612494, 0.00716717821, 0.00768277422, 0.00426252279, 0.0117209535, -0.0062658689, -0.0139801297, -0.0125317378, 0.0214110091, -0.0225130469, -0.00158122671, -0.023725288, 0.000185722805, -0.00686411792, 0.0202774853, -0.00147299084, -0.0238040052, 0.0148381451, -0.020797018, -0.00837548357, 0.00750172511, -0.00961921085, 0.000413018, -0.0180419236, 0.00924137, -0.0238354914, 0.0363672301, -0.0238984656, 0.0388546847, 0.0338797756, -0.00557316, -0.00654925, 0.00488832267, 0.0157591328, -0.0105716866, -0.00156745128, -0.00665551797, 0.0321165137, -0.0189235546, -0.0362097956, -0.0101072565, 0.00395159097, 0.0135471867, -0.0189707838, -0.00683656707, -0.013027655, -0.00663190288, -0.00351667963, 0.00355800614, -0.0117052104, 0.0028849761, -0.00712781958, -0.00839909818, -0.0166565068, -0.0165777896, 0.0247013792, -0.00146511919, -0.00860376284, -0.0166722499, 0.0184827391, 0.0227491986, -0.0014611833, -0.00724983076, -0.00250713481, -0.00802519266, 0.00880842656, 0.0115399044, -0.0188763235, -0.00186460768, 0.00375479832, -0.0212693196, 0.00720653683, 0.0159401819, 0.00305421767, 0.0175066497, 0.00384729076, 0.013342523, -0.00909967907, 0.0197422113, -0.0179159772, -0.017569622, 0.0324313827, 0.00960346777, 0.000694185088, 0.00694283471, -0.00467185071, 0.0252681412, -0.00500246184, -0.00322149112, -0.0191439614, 0.00446718698, -0.0161527172, 0.0249690153, -0.00165502378, -0.000847683114, -0.0177428, 0.0109337838, 0.0110597312, 0.0268109925, -0.00253271777, 0.0176483393, -0.00228475942, 0.00553773716, 0.0147830425, 0.0328407101, -0.0134842135, 0.000533799292, 0.0298179798, -7.74485579e-06, -0.0380675159, -0.0117445691, 0.012744274, -0.0109101692, 0.0240401551, -0.0333759859, 0.0140116168, -0.0329351723, -0.0252209101, -0.0133582661, 0.00578569574, 0.0262284875, 0.0124451499, 0.0106897615, -0.012146025, 0.000988389715, 0.00857227575, -0.0317386724, 0.00189019076, 0.0239299517, -0.00764735136, 0.0102961771, 0.0215527, -0.0116028786, 0.00817081891, 0.0152317295, 0.0124372775, 0.0124923801, 0.0188920684, 0.0216629039, -0.00514021656, 0.0106189167, -0.00894224551, -0.00126537494, 0.00102233642, -0.0145705072, -0.0150506804, -0.00145035982, 0.0164990723, 0.020797018, -0.00897373166, 0.0293929093, 0.0421293117, 0.013625904, 0.0193958562, 0.0213008057, 0.00868247915, -0.0393584743, -0.0111620631, 0.044238925, -0.0308255572, 0.0256302375, 0.0151766278, 0.0161527172, -0.0143264849, 0.0177742876, -0.00397520605, 0.0162156913, -0.000616944104, -0.0149562201, 0.0158929527, -0.0191597044, -0.0229381192, -0.00104890333, -0.00656105764, -0.0130985, 0.0226075072, -0.0276768785, -0.0111778062, 0.0159165673, -0.00174456439, 0.00951687898, -0.0220092591, 0.0135944169, -0.00597461639, -0.00580537505, -0.0144760469, -0.00661222357, -0.00262324233, 0.0108629391, -0.00153202866, 0.0300383866, 0.0137833375, 0.00584079744, 0.00915478077, 0.0283381, -0.00844632834, -0.0202774853, -0.0177428, 0.00932795834, -0.00414444739, 0.0277398527, 0.0229066312, 0.0396733433, 0.0227334555, -0.000157433897, 0.0258349031, -0.0148302726, -0.0214897264, 0.0152947027, 0.00848568697, 0.00693889894, 0.012460893, -0.0377841368, 0.0131142437, 0.00643904647, -0.0220250022, -0.0101859728, -0.00408934569, -0.0423497185, 0.0066515822, -0.0218045954, -0.0177428, -0.00113254, -0.0257246979, -0.00727738207, -0.00473482441, -0.000969694403, -0.0208599921, -0.0250634756, 0.00659254426, -0.00463642832, 0.011862644, -0.0106031727, 0.0279917475, -0.00520319026, 0.0287631731, -0.00227688765, -0.0122089982, -0.00691134809, -0.00581718236, 0.0119571043, -0.00210567843, 0.00319984392, -0.0323369205, 0.0291882437, -0.0099340789, 0.0204349197, -0.0032667534, 0.00171602948, 0.0180261806, -0.00312506291, -0.00740332901, -0.0101702297, -0.0138069531, 0.0135157, 0.0220250022, -0.0153655484, 0.00301485904, -0.0274092406, 0.0204191767, -0.0164518431, 0.0148381451, -0.00636820123, -0.0129961679, -0.012744274, 0.0149326054, 0.000533799292, 0.0171288084, -0.00757650612, -0.00618715212, -0.0162156913, -0.0185142271, 0.00514808856, -0.00223359349, -0.000504772412, 0.000300108368, -0.0118311569, -0.0121932551, -0.00425858703, 0.0034438665, -0.0203247163, -0.0417199843, -0.000855062855, 0.00105677499, 0.00331988721, 0.00501033384, -0.0177900307, 0.022859402, -0.00149267016, 0.019332882, 0.00118469, -0.0286057387, 0.0137518505, -0.0142398961, 0.0375322402, 0.00851717405, -0.00928072818, -0.000541179033, 0.00519925449, -0.014806658, 0.00758831389, -0.0136967488, 0.0152159864, 0.0108944252, 0.00813933276, -0.00427433, -0.0101466142, -0.00692709163, -0.0118232854, -0.000501328555, -0.0131929601, 0.013775466, 0.00230247085, -0.004541968, 0.0376896746, 0.0106740184, -0.0105244564, 0.0135471867, -0.000935255724, -0.0269526839, 0.0209387075, 0.00634852191, 0.0126025835, 0.0113588553, -0.0233317036, -0.0262757167, -0.00504575623, -0.0124923801, 0.00139230606, -0.00652169902, 0.0155072389, 0.0108471951, -0.00819443446, 0.00102332036, -0.00290268753, 0.0115713915, -0.015704032, 0.0111935502, 0.0126891723, -0.0203719456, -0.00499852607, -0.00757257035, -0.0167981964, 0.00705697434, -0.00460887747, 0.0066633895, -0.0248745549, 0.0166565068, 0.0188448373, 0.0159323104, 0.0208599921, 0.016987117, 0.0129804248, 0.00735609885, -0.0102804331, -0.0174121894, 0.00887927134, -0.0207340438, 0.00429794518, 0.0107763503, -0.0103670219, -0.0188133512, 0.00765128713, 0.0280547198, -0.000487553101, -0.00161960116, -0.0174121894, 0.00709239719, -0.0363987163, 0.00257798, 0.0299911574, -0.0259451065, -0.024591174, 0.0167509671, -0.000318557635, 0.0126655567, 0.0316442139, 0.0164203551, 0.0137203643, -0.0191282183, -0.00344189862, -0.017270498, -0.0216156747, 0.00815507583, -0.0176640823, -0.00788743794, 0.000893437362, -0.00905244891, 0.00439634174, 0.0117524406, -0.00783627201, 0.0237882622, -0.0102332029, -0.00451048091, -0.0136416471, -0.0211276282, 0.00749385357, 0.0026271781, 0.0340057202, -0.0362412818, 0.0119728474, 0.00638788054, -0.00176424359, 0.00959559623, -0.00136180315, 0.0204191767, 0.00112073252, -0.00102528825, 0.0033041439, 0.0124530215, -0.00388861727, -0.00798189826, -0.000541671, -0.0239614397, -0.00961921085, -0.0111856787, -0.0107527347, -0.00386697, 0.00381186814, 0.0192856528, -0.00527797127, -0.00283577805, 0.00188822276, 0.0163573828, -0.000665158208, 0.00541966176, 0.00842271373, -0.0102332029, 0.00886352826, -0.00118469, -0.0125553533, 0.00440421328, 0.00278067612, 0.00260749902, 0.0106267883, -0.00283971382, 0.013027655, -0.0171602946, -0.0132795488, -0.00781659316, 0.0176798273, 0.0166407637, 0.0154442657, 0.0309672467, 0.0283695888, 0.00702155195, 0.00431762449, 0.00575420912, -0.00499852607, 0.011130576, 0.01068189, -0.00281806686, 0.0104378676, 0.0162629206, 0.0108471951, -0.00135688344, 0.0226704814, -0.031077452, 0.00392600801, -0.00369969662, -0.00474269595, -0.00706091, -0.0251579359, -0.00124274381, 0.0113352407, 0.0170343481, -0.014940477, 0.00298140431, 0.0278028268, 0.00667519728, -0.0126498137, -0.0290622972, 0.0213322937, 0.0282751285, -0.00432943227, -0.0201200526, -0.00835186802, -0.00411689654, 0.0217258781, 0.0294401385, 0.00389058515, 0.0148381451, -0.0264961254, 0.0160031561, -0.00123880792, -0.00861950591, -0.00758044189, -0.00335727795, 0.010996758, 0.00167765492, 0.0168139394, -0.00705697434, -0.00155367574, -0.0207340438, -0.0262127444, -0.0161133595, -0.0133110359, 0.0197736975, 0.0040460513, -0.0220407452, -0.00163534458, -0.00192561338, -0.0100600263, 0.00385319465, -0.00969792809, 0.00177408324, -0.0230483226, -0.0029479498, -0.0371229127, -0.00798189826, -0.00116402691, -0.0200570785, 0.0209387075, 0.00635245768, -0.00597855216, 0.00293220626, 0.00802125689, -0.0161133595, 0.0210646559, 0.0188133512, 0.0181048978, -0.0139565151, 0.0033631816, 0.0151215261, 0.00752534, -0.00252287812, 0.0171760377, -0.0134133678, -0.0324313827, -0.00822592154, -0.0242448207, 0.0249375291, 0.0188605804, -0.0030246987, 0.0180261806, -0.0108078374, 0.00032470742, -0.00038817295, 0.0178057738, 0.0199941043, -0.00733248377, 0.0112329088, -0.00710814027, -0.012578968, 0.0161842052, 0.00813933276, 0.0147279408, -0.010713377, -0.00868247915, 0.00736790616, 0.00600610301, -0.0192699097, -0.00720260059, -0.0092886, -0.00543934107, -0.0205766112, -0.00343796262, -0.0132874213, -0.00495523168, -0.00504575623, -0.00804093666, 0.00931221526, -0.0105244564, 0.00114729954, -0.00221785, -0.00141395314, 0.0164360981, -0.0119649759, 0.00592738623, -0.00109810138, -0.0285899956, 0.00284168194, -0.00885565672, 0.00454590376, -0.00310931937, 0.00879268348, -0.00173472473, -0.00949326437, -0.00285742525, 0.00222572172, 0.0136337755, -0.00318213273, 0.00594313, 0.00607694825, 0.00481354119, 0.0280074906, -0.00699793687, -0.024591174, 0.00734035531, 0.00601397501, 0.00656892918, 0.00388271338, -0.00848568697, 0.00451441715, 0.0352337062, -0.0134369833, -0.0117603121, -0.0115005458, -0.00806061551, -0.0010656307, 0.0108865537, -0.0253153704, -0.00180557, -0.00427039433, 0.00115418725, -0.0127521455, -0.0168769136, -0.00299911574, 0.00942241866, -0.0142320246, 0.019033758, 0.00212338963, -0.000554954458, 0.00580143929, -0.022276897, 0.00957198068, 0.00500639807, -0.013326779, -0.0141533073, -0.01202795, 0.0117917992, 0.0169241447, 0.0281649232, 0.012893836, -0.00932795834, 0.0264961254, 0.0003510284, -0.0127049154, -0.0211591162, 0.0120830517, 0.00777329877, 0.00146019936, -0.0111856787, 0.00820230599, 0.00554954493, 0.00746236648, 0.00324313832, -0.00882417, -0.00566762034, -0.00522286957, 0.010713377, -0.0156253148, -0.00474663218, 0.00584866945, -0.0252996273, 0.0114060855, -0.0308570433, -0.0094853919, -0.00949326437, 0.0147987865, 0.00949326437, -0.00822592154, -0.00317229307, 0.0150664235, -0.00436091889, -0.00798189826, 0.011130576, 0.0106346598, 0.0115084182, 0.0349188372, -0.00215094071, -0.0286529697, 0.0150821675, -0.00550625054, 0.0160818733, 0.0250005033, 0.00591951469, -0.00298337243, -0.00211551809, -0.00453803223, -0.020198768, 0.00316245342, 0.002965661, -0.0320220552, -0.00451441715, 0.00229066308, 0.0218360815, -0.00104201562, 0.0289048627, 0.00777329877, 0.0101072565, -0.00142182491, -0.0087611964, -0.0287631731, -0.0108708106, 0.00739152124, -0.00235560467, -0.00797402672, -0.0244022533, -0.0163101517, 0.0142241521, -0.0202617422, -0.00684443861, -1.50592286e-05, -0.00695070671, -0.0106425313, -0.00508117909, 0.000521991751, -0.0115320329, 0.0244652275, 0.0287631731, -0.00209977455, -0.0110046295, 0.00532126566, -0.00413657585, 0.0180891547, 0.00330217602, 0.00340057211, 0.016121231, -0.00530552212, 0.00601791078, 0.00638000853, -0.0167981964, 0.0133818816, 0.00678540114, -0.0026901518, 0.005049692, -0.00161074556, 0.00639181631, 0.00744268764, -0.0049316166, 0.00212732563, -0.0136337755, 0.00325494586, 0.00659254426, 0.0145468917, -0.0172232687, -0.0183725357, 0.00426252279, 0.00613992196, 0.0115950061, -0.0109573994, 0.0077181966, 0.00222572172, 0.00206041615, -0.00495916791, 0.00326872128, 0.00574240135, -0.00614779349, -0.00199252274, -0.012578968, -0.0133346515, 0.0117996708, 0.0122483568, -0.00960346777, 0.0150979105, -0.0198209267, 0.0148381451, 0.00228869519, -0.0388861708, -0.00507724332, 0.0229538623, -0.0135078281, 0.0264488943, -0.000212535757, 0.0106582744, 0.0021096142, -0.00183804077, 0.00938306, 0.00723408768, -0.0256144945, -0.0131693454, -0.0164990723, 0.010248947, 0.0202145129, 0.00972154271, 0.00685231, 0.00151726918, -0.00318016461, -0.00271179876, 0.0121145379, 0.0106897615, 0.00278461212, 0.026936939, -0.0202932283, 0.00750172511, -0.0106346598, 0.00436091889, -0.0225917641, 0.0309357606, -0.0224028435, 0.00249926304, 0.00448293, -0.0139801297, 0.0174279325, 0.0181836151, 0.00158713048, -0.0183725357, -0.000832923688, 0.00759618543, -0.0247486085, -0.029896697, -0.00373118324, -0.00696251402, 0.0108550675, 0.00488045067, 0.00750566088, 0.000986913685, 0.00623044651, 0.00471908087, 0.0224500727, -0.0140037453, -0.00165305589, -0.0167824533, 0.000610548304, -0.0166407637, -0.0190022718, -0.0083282534, -0.00918626785, 0.00987110566, -0.0129331946, 0.0116422363, -0.0077063893, 0.00503394892, 0.0159323104, 0.0104063805, -0.00105185527, -0.0247171223, -0.00134212396, -0.000480911345, 0.0158614647, -0.00729706092, 0.00390829658, 0.0114533156, 0.00824953616, -0.0200413354, -0.00576601643, 5.12275146e-05, -0.00985536166, 0.00208009547, 0.00259372336, 0.00695857825, -0.00159697013, 0.03403721, -0.0188605804, -0.00115123542, -0.00610843534, -0.00590377115, 0.00956410915, 0.0147043262, 0.0181521289, -0.00564006949, 0.00413657585, 0.0110597312, -0.002087967, -0.0180576686, 0.0346354581, 0.026936939, 0.00571878627, 0.0025878197, -0.00484502828, 0.00392207177, -0.00525042042, 0.0104929693, 0.0164203551, 0.00337892491, -0.00133130036, -0.0124923801, 0.0103119202, -0.00708846096, -0.00813146, -0.00145823148, -0.0347299166, -0.0186401736, 0.00453803223, 0.00672242744, 0.0263072047, 0.00820230599, 0.0104614822, -0.0228121709, 0.0174594186, 0.0116422363, -0.0151687562, 0.0176798273, -0.014208409, 0.00116796268, -0.0084542, -0.017884491, -0.020198768, 0.010248947, 0.0187031478, -0.0262599736, -0.0240559, -0.0163573828, 0.00917839631, -0.00903670583, -0.00989472, 0.0390750915, 0.0048332205, 0.0249532722, 0.00854078867, -0.00180655392, -0.000622355845, -0.0127364025, -0.0183725357, 0.00957198068, -0.0139486436, 0.00809210259, -0.00458919816, -0.0135944169, -0.0229696054, 0.00554954493, -0.00660041627, 0.022560278, 0.0107448632, -0.00245793676, 0.0073718424, 0.00235954043, 0.00866673607, 0.00494736, -0.00619896, -0.00809997413, 0.0130748851, -0.00895011704, -0.0192226786, -0.00461674901, -0.0099340789, 0.0101938443, -0.0136180324, -0.0110125011, 0.0325258411, -0.0161999483, 0.0165777896, 0.0234576501, -0.0260080788, -0.00602971809, 0.00787563063, -0.0159637965, -0.000334055047, 0.00236544432, 0.00797402672, 0.00616353704, -0.0119571043, 0.0371544, -0.00612417841, -0.00909180753, 0.019915387, 0.0105638141, -0.0133346515, 0.00865886454, 0.0212535765, -0.013625904, -0.0076079932, 0.0187976081, -0.00627767667, -0.00609269179, -0.0267322753, 0.0381304882, 0.00768277422, 0.00532520143, -0.000828495889, 0.0111148329, 0.00350487209, -0.00222375384, -0.0187661201, 0.0375322402, -0.0102174599, 0.0280232336, -0.0057699522, 0.00798977, 0.0135471867, 0.00828889478, -0.0140903341, 0.0188448373, 0.00511660147, -0.00739152124, -0.00830463786, 0.00674604252, -0.0058329259, -0.0199783612, -0.00544721261, 0.017270498, -0.0122326137, -0.0202774853, 0.00393584743, -0.00310341571, 0.0182151012, 0.014641352, -0.000502066512, -0.0173807014, -0.0112880105, -0.00063170353, 0.0199941043, -0.011130576, 0.003223459, 0.0203404594, -0.0142241521, 0.00787169486, -0.000720752054, 0.0110125011, -0.0116973389, 0.00348322489, 0.00225720857, 0.0175381359, -0.00710026873, 0.0166565068, 0.012146025, 0.0265276115, 0.0318331346, -0.00883204117, -0.0160110276, -0.0101859728, 0.0173964463, -0.014790915, 0.0067145559, 0.00220407452, -0.00817869138, -0.00409721723, 0.00331398356, 0.00535275228, 0.000584965339, 0.00535275228, -0.0135786738, 0.00949326437, 0.0298022367, -0.0167981964, -0.0125553533, 0.017018605, -0.00424677925, 0.00833612494, 0.0018518162, -0.0198681578, -0.000400472461, 0.00398110971, -0.012012206, 0.00653744256, -0.0142477676, -0.0236308277, -0.00325888162, 0.0140273599, 0.0181993581, -0.0263386909, 0.00597068062, -0.00361310784, 0.0238827225, 0.000260257919, 0.021993516, 0.0128387343, 0.022560278, -0.00613205042, 0.00601397501, -0.000329135248, -0.0191124752, -0.00764735136, -0.00223162537, 0.0185142271, -0.00908393599, 0.0252209101, 0.00717898551, -0.0099340789, -0.00998130906, -0.0114454441, -0.00387287396, 0.0184040219, -0.0184355099, -0.00243235379, 0.00228869519, 0.0130040394, -0.0194273423, -0.0110439882, 0.0172232687, -0.00537636736, 0.00539604668, 0.00395159097, 0.00126537494, -0.0292984489, -0.00445931498, 0.0271730907, 0.00320968358, 0.00736397039, 0.00883204117, 0.00795434788, 0.0213322937, 0.00708846096, 0.0186244305, -0.00558103155, 0.0116028786, -0.0118547725, 0.0043254965, 0.0142320246, -0.00905244891, -0.0115556484, -0.0195375457, 0.0284955353, 0.00735609885, -0.00417987, -0.00388664939, 0.0137518505, 0.015239601, -0.0103512788, 0.0084935585, -0.00131949282, 0.0041641267, 0.00230640662, -0.0107448632, 0.0153419329, -0.00592738623, 0.00880055502, -0.0175223928, -0.00351667963, 0.0153340613, -0.00137262675, 0.00193938881, 0.0209229644, -0.00977664534, -0.0088162981, 0.0205451231, -0.00843058527, -0.0312348846, -0.00823379308, -0.0108471951, 0.00223162537, -0.0270156562, -0.0100600263, -0.0108078374, 0.00103512791, 0.00767883845, 0.00446325075, 0.00744268764, 7.2259696e-05, -0.00909967907, -0.0229538623, -0.00531733, 0.0157748759, -0.00292039872, 0.0187346339, -0.0121853836, -0.0126419421, -2.11551796e-05, -0.00215094071, -0.00388271338, 0.0044986736, 0.0355485752, -0.00853291713, -0.00139722577, 0.00436879043, 0.00630129175, -0.0115713915, 0.00914690923, 0.00978451688, 0.0106189167, -0.00810784567, -0.00144740788, 0.0119728474, 0.0163101517, 0.00259765936, -0.00834399648, -0.00498278299, -0.019915387, 0.00365640223, 0.0373748057, 0.000372183567, 0.0224185865, 0.00963495485, 0.00265472918, 0.00652563479, -0.0347614028, 0.00717504974, -0.0291252714, 0.00136869098, -0.01449179, -0.00399094913, 0.0197736975, -0.0105244564, 0.0134448549, -0.00901309, -0.0111935502, 0.00802519266, 0.0035422626, 0.00451048091, -0.0176798273, -0.0165305585, 0.0158299785, -0.00833612494, -0.0202145129, -0.0028298744, -0.0138463108, 0.0230483226, 0.00227885554, -0.0213480368, 0.00856440421, 0.0112171648, 0.0111541916, -0.0132559342, -0.00784807932, -0.0158457216, -0.00709633296, 0.0146019943, 0.022859402, -0.0073836497, 0.00647840463, -0.0169556309, -0.00900521874, 0.00323723443, 0.0185299702, -0.012012206, 0.000537243148, 0.00758831389, -0.029597573, 0.00910755061, -0.00824166462, 0.00505756401, 0.017301986, 0.0224658176, -0.0355170853, -0.00718685752, 0.00236938, 0.00662403135, -0.0155151105, -0.00471120933, -0.00356194191, -0.0110518597, 0.0133740092, 0.0126183266, 0.00798189826, -0.0153104467, 0.00503394892, 0.0113824708, -0.00467185071, -0.00126143906, 0.00751746865, 0.0246856343, -0.0127206584, 0.0260867961, -0.00927285664, 0.00448293, -0.0258663893, 0.00399291702, 0.000850143, 0.00124569575, 0.013342523, -0.00552593, 0.0137518505, 0.000841287372, 0.0023300217, -0.0105559425, 0.00969005655, -0.00208599912, -0.0177742876, -0.00561251817, 0.0136337755, -0.00445144344, -0.0215054695, 0.0115477759, -0.00229459908, -0.0052740355, 0.00542753376, 0.0290937833, 0.0166565068, -0.00808423, -0.00325494586, 0.0290622972, -0.0176798273, 0.0208285041, -0.023725288, 0.0198051836, -0.00673029898, -0.0162156913, -0.00144544, -0.022245409, -0.0108786821, 0.0265748426, -0.0028889121, -0.0106740184, -0.014507534, 0.0187031478, 0.00901309, -0.0141139487, 0.00936731696, -0.00136377115, 0.00769064575, -0.00537636736, 0.0194903165, -0.0228279158, -0.0122641008, 0.0243865103, 0.0110990899, 0.0176640823, -0.0353596546, -0.00414838316, 0.017884491, 0.00263504987, 0.0033257911, 0.0200570785, -0.00308964029, 0.00941454712, 0.00833612494, -0.0027452535, -0.00100954482, 0.0061044991, -0.00372921536, 0.0045970697, -0.0126576852, -0.0212535765, 0.00820230599, 0.00816294737, -0.00220210664, -0.00345764193, -0.00394765474, -0.0119492328, -0.0300226435, 0.0182308443, -0.0185614564, -0.020797018, 0.0189550407, 0.00131555705, -0.0166565068, 0.00659648, 0.0196634941, -0.00526222819, -0.00635639345, -0.0047230171, 0.0241975896, -0.0243235361, 0.00261340267, -0.0065453141, -0.0101466142, 0.0099891806, -0.0254098307, -0.0067696576, -0.000273541402, -0.00188527093, -0.0160031561, 0.00912329461, -0.0174751617, 0.0122011267, -0.00121224101, 0.0114926742, 0.00967431255, -0.00561645441, -0.00717898551, 0.00924137, 0.0197736975, 0.00407753792, 0.0227964278, 0.0143107409, 0.00138148246, -0.00791105349, 0.0121302819, 0.00206041615, -0.00898160413, 0.0104929693, 0.000447702652, 0.00376267, 0.00700974418, 0.00955623761, 0.0301171038, 0.0100127961, -0.030479202, 0.0100285392, -0.0706563294, 0.00207615946, -0.0098238755, 0.0207812749, -0.00584866945, 0.0113509838, 0.016121231, -0.0155072389, -0.00250319904, 0.00546295615, 0.00578176, 0.0119177457, 0.00401456421, 0.0113982139, -0.0172547549, 0.0168139394, 0.0300383866, -0.0077063893, 0.00704516703, -0.0246856343, 0.00342025142, 0.0122247422, 0.0178687479, -0.00802519266, -0.000393092749, -0.0294243954, -0.00835974, 0.00512447348, -0.00506543554, -0.0151687562, 0.0188133512, -0.0112092933, 0.00832038186, -0.0260238238, 0.00564006949, 0.00477024727, 0.0156253148, -0.0143973297, -0.0116973389, -0.0112880105, -0.00927285664, 0.00665945373, -0.00571878627, -0.0194588304, -0.00994982198, 0.0161842052, -0.00968218502, -0.00985536166, -0.00778904185, -0.00935157388, -0.0192069355, 0.00334547041, 0.00735216308, -0.00345567404, -0.0025464932, 0.0190967321, -0.0250005033, -0.0199626181, 0.0276768785, 0.0171917807, -0.00310735148, -0.0293929093, 0.0165935326, -0.00647840463, 0.0147672994, 0.00709633296, -0.0264016651, -0.0121066663, -0.0077063893, 0.035139244, -0.0207025576, -0.0213637799, 0.00185476814, 0.00110990892, -0.013909285, -0.00242054625, 0.00383745134, 0.0135944169, 0.0115005458, 0.0258349031, 0.00669487659, 0.00663583865, 0.0143894581, -0.000377595366, 0.0135471867, -0.019332882, -0.033124093, 0.0214424971, 0.026669303, 0.00914690923, 0.0176168531, 0.0184827391, -0.026669303, 0.0161842052, -0.0014936541, 0.00969792809, -0.00429007364, 0.000596772879, -0.00309160817, -0.0077181966, 0.00817869138, 0.0194903165, 0.014342228, 0.0029479498, 0.0311876554, -0.0323369205, 0.0116894664, -0.013775466, -0.00125061546, 0.0251264498, 0.0153183183, 0.024008669, 0.0166092757, -0.00581324659, 0.0422867462, 0.00608482026, 0.0128859645, -0.00561251817, -0.0266063288, 0.0035835891, 0.00906819198, -0.00772606861, -0.0028298744, -0.0302902814, -0.0105716866, 0.00663583865, -0.0231742691, -0.00459313393, -0.0144996615, -0.00753714796, -0.0290622972, -0.0130040394, -0.00693496317, 0.00686411792, 0.0262127444, -0.00876906794, -0.00323920231, 0.0143186133, 0.0030463459, 0.000196792374, 0.0106425313, -0.00306799309, 0.0218518246, 0.00759224966, -0.025205167, -0.0248903, 0.0227806848, 0.00448686583, 0.00828102324, -0.0107291201, 0.000873266137, -0.00327265705, 0.0084384568, -0.0161999483, -0.0215684436, -0.00385713042, -0.00229853485, -0.0068326313, 0.0171445515, 0.00662403135, -0.00236544432, 3.99119526e-05, 0.0276139062, -0.00185968785, 0.0178057738, 0.0237410311, 0.0206710715, 0.0156804156, 0.0183253046, 0.00427826634, 0.00412083231, 0.00607301248, -0.00969792809, -0.0269054528, 0.00194922846, -0.00509298639, 0.0191282183, -0.0162786655, 0.0273620114, -0.0109022977, 0.0150349373, 0.0142871263, -0.00468365848, -0.00475843949, 0.0153419329, -0.0177113134, -0.00178687472, 0.000171947337, 0.0010548071, -0.00191774161, 0.0098238755, 0.0289206076, 0.000490259, -0.0132716773, -0.00824953616, 0.00301289116, -0.00393584743, 0.00152218901, 0.00639181631, 0.00372724747, 0.0141375642, -0.000223236348, -0.00950113591, -0.00652169902, 0.00930434372, -0.0176168531, -0.00919413939, -0.00750566088, 0.00271770265, 0.0140745901, -0.00702155195, -0.0157119036, 0.00230050273, 0.0134527264, 0.00433336804, 0.021678647, -0.0133110359, -0.00889501534, -0.00242645, 0.00490406575, 0.00522680534, 0.0217573643, 0.0258191582, 0.00125258346, 0.0200885646, -0.000598248793, 0.0156410579, -0.00247564795, -0.0157197751, -0.0166407637, 0.0136495186, 0.0135786738, -0.00188527093, 0.00480960542, 0.00327265705, 0.00374889467, 0.0111856787, 0.00928072818, 0.00248942338, 0.0129253231, 0.018750377, -0.0125159947, -0.00756076304, -0.00908393599, -0.00295385346, 0.0168139394, -0.00546295615, 0.0113982139, 0.00197776337, -0.016404612, 0.000413509959, 0.00552986562, -0.00485683559, 0.0230325796, 0.0182151012, -0.000289284799, -0.00108826184, 0.0157433897, 0.00514021656, 0.00416019093, -0.0093751885, -0.0130985, 0.0102568185, -0.0113352407, 0.0025464932, -0.0315340087, 0.000587917224, 0.00172390114, -0.0111620631, 0.0272832941, -0.00294991769, -0.00384335499, 0.0105244564, 0.00382564357, 0.00351667963, 0.000601692649, -0.0138541833, 0.026685046, -0.00575814489, -0.000448932609, 0.00773787592, -0.00606120517, -0.0144052012, 0.0052189338, 0.00496310368, -0.00305618555, -0.0118390294, -0.0158299785, -0.00795041211, -0.00319394027, 0.0140037453, -0.00266063283, 0.0186874028, -0.00246187253, -0.00753321173, -0.0105244564, -0.00231821416, -0.0052110618, -0.00807635859, -0.0253468566, 0.0107606072, -0.0116579803, 0.00103611185, -0.00702548772, -0.0152632166, -0.0284797922, -0.0204821508, -0.0212063454, -0.00706878211, 0.00482928474, -0.0152238579, -0.00945390575, -0.0235835984, 0.00878481101, -0.0206710715, 0.00338876457, -0.000627767644, -0.00784807932, 0.0184355099, 0.004541968, -0.0125474818, 0.0135078281, 0.00528977904, -0.0108078374, 0.00735216308, -0.00559283933, 0.0148853753, -0.0111935502, -0.0137203643, -0.0354226269, -0.00630129175, 0.00856440421, 0.000711896399, 0.0179946944, -0.015239601, -0.0136416471, -0.0189865287, -0.00795434788, -0.00564400526, -0.0102095883, -0.00238118763, -0.0154993674, -0.00492374506, -0.00909180753, 0.00964282639, 0.00441602059, -0.017884491, -0.0147043262, 0.0214897264, 0.0156174423, -0.00596674485, -0.0128387343, -0.00891075842, 0.0321952328, 0.000410066103, 0.0068326313, -0.0306838658, -0.0132795488, 0.007761491, -0.0119649759, 0.0104693538, -0.00166879932, -0.00815507583, -0.037752647, -0.00707665365, 0.00899734721, 0.00143658428, 0.0105244564, -0.0268739667, -0.00890288688, -0.000939683581, 0.00135491544, 0.0135708023, 0.0655554757, 0.0288104024, 0.0296762902, -0.0369654782, 0.00338679668, -0.00517563941, 0.00327462493, 0.0365246646, -0.00746630272, 0.0142162805, 0.0138384392, 0.025488548, -0.0113273691, 0.0112171648, 0.0228436589, 0.00338679668, 0.00659254426, -0.0099891806, 0.00257994793, 0.0103748934, 0.000493456842, -0.0138856694, 0.0157512613, -0.0153419329, 0.00828889478, -0.00203089719, -0.0136731341, 0.0133818816, -0.0145941218, 0.0143343564, 0.00238315552, 0.0312663727, 0.0175066497, 0.00495129591, -0.0113745993, -0.00131949282, 0.00850143, 0.0239929259, -0.00461674901, -0.0104378676, 0.0233631898, 0.023142783, -0.00300501939, -0.0174279325, 0.00643117446, -0.00571091473, -0.00636426546, 0.00644691801, 0.00589589961, -0.0290465541, 0.00852504559, -0.00605333317, -0.0219462849, -0.00576601643, 0.00901309, 0.00199941057, 0.0237410311, 0.0064902124, 0.0157512613, 0.0186244305, -0.00348322489, 0.00518744672, -0.0135944169, 0.00617534481, 0.0048214132, -0.0312821157, 0.00193545292, -0.00705303857, 0.00234182924, -0.0035029042, 0.00249729515, -0.00528190704, 0.0107763503, 0.00266653672, -0.0105323279, 0.00675391406, -0.0149877071, 0.00102725613, -0.00128702214, -0.0145783788, -0.0282593835, 0.00330217602, 0.0114533156, -0.029566085, 0.00225524046, -0.0212220885, -0.0143973297, -0.0121696405, -0.00751746865, 0.00329627213, 0.00822592154, 0.0270943735, 0.004541968, 0.0126419421, 0.0210331678, 0.00531339413, -0.0275981613, 0.00906032, -0.0139801297, 0.00395159097, 0.0082574077, -0.00209190301, 0.00603365386, -0.0143500995, 0.000957886863, 0.0282751285, -0.00443176413, 0.0104378676, 0.0028042912, -0.00440421328, 0.00364262681, 0.00292827049, 0.000561350258, 0.0147830425, 0.0121145379, -0.0011728825, 0.0108786821, 0.0118232854, 0.0172390118, -0.00868247915, 0.0265748426, 0.00592345046, -0.0190180149, -0.00375283044, -0.0233631898, 0.00102725613, 0.00824166462, 0.0045970697, 0.0407753773, 0.00556528801, 0.0134842135, -0.0133818816, 0.0044435719, 0.0105323279, 0.0133740092, 0.0189550407, -0.0042192284, -0.0140982056, 0.020797018, 0.0173334721, -0.00516776787, -0.0098238755, 0.0183567926, 0.007328548, -0.0160346422, -0.00258388394, 0.0107842218, -0.0163888689, 0.0191754494, 0.00348519278, 0.00523467688, -0.0159952845, 0.00497884676, -0.00554954493, -0.00360326841, 0.00888714381, 0.00778904185, -0.0186716598, 0.017585367, -0.00300501939, 0.00304241013, 0.00190396619, 0.021993516, 0.000599724764, -0.0019216775, -0.00374889467, 0.000196423382, -0.00482534897, 0.0185142271, -0.000243038579, 0.0221509486, 0.0221037194, -0.0244494844, -0.00131457299, 0.00481354119, 0.0138620548, -0.0176955704, -0.00195710012, 0.0225130469, -0.0205608662, -3.68985711e-05, -0.00235757255, 0.0139565151, 0.0530552231, 0.00888714381, 0.000702548772, -0.00547476392, -0.016687993, 0.0156646725, -0.0180734117, -0.0184827391, 0.00754108373, -0.00582505437, -0.00821804907, 0.0026271781, 0.00240873871, 0.0158063639, 0.00289678364, 0.0141454358, -0.0121853836, 0.0382879227, -0.0294873696, -0.0165620465, -0.00896586, 0.00645872578, 0.0265118685, 0.0137518505, 0.00584866945, 0.00861950591, 0.00755682681, 0.00609269179]
26 Oct, 2021
jQWidgets jqxSlider layout Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The layout property is used to set or return the layout of the slider widget. It accepts String type value and its default value is “normal”. Its possible values are – ‘normal’ ‘reverse’ Syntax: Set the layout property. $('selector').jqxSlider({ layout: String }); Return the layout property. var layout = $('selector').jqxSlider('layout'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider layout property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider layout Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', value: 8, layout: "reverse" }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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 layout Property
https://www.geeksforgeeks.org/jqwidgets-jqxslider-layout-property?ref=asr4
PHP
jQWidgets jqxSlider layout Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider layout Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[0.0122909555, 0.0521693528, -0.00809976086, 0.0340258889, 0.023878783, 0.0278769638, 0.014393447, 0.0287041739, -0.030441314, -0.0236719809, 0.0104297344, -0.014393447, -0.0174816959, 0.000347471127, -0.0191774759, 0.0199633241, -0.00996787567, 0.0145451017, -0.0324817635, 0.0336122848, -0.00727944449, 0.00669350429, -0.080956243, 0.0120221125, -0.0214385148, 0.0230515748, -0.00464271381, -0.0040360936, -0.00978864729, 0.014145284, -0.014434807, 0.00441867812, 0.00349840731, 0.0261260364, -0.0616546869, -0.00912687927, 0.0105538154, 0.0349358171, 0.000729409279, 0.00170439645, -0.0223208722, 0.00771372952, -0.00199736655, 0.0131802065, 0.015262017, -0.0031571833, -0.000286722905, 0.0111742234, 0.001814691, 0.0190258212, 0.00304688863, 0.0335019901, -0.00909930561, 0.0250093043, 0.00464960746, -0.01468297, -0.00596624939, 0.0585112907, -0.0117256958, 0.000576461665, -0.00178367074, -0.082279779, -0.0345773622, -0.0061006709, -0.0263604131, 0.0174265485, -0.0164063238, 0.0268567391, -0.0373898745, 0.0471509472, -0.0142831523, -0.00639708759, 0.0114844264, 0.0329780877, -0.019673802, -0.00259537017, -0.020211488, -0.0149173466, -0.0132422466, 0.0484469086, -0.046048, -0.00129854667, -0.0912687927, 0.0102849724, -0.00662457, 0.019921964, 0.0115947211, -0.0379137732, 0.0395681933, 0.0313512422, -0.0347428024, -0.0222381521, 0.0142417923, 0.0156756211, -0.00512180617, -0.0150690014, 0.000801790156, 0.044752039, -0.0126356268, 0.0175506305, 0.0353218503, 0.0220451355, -0.0261949711, -0.0293107927, 0.0212592874, -0.0071071093, 0.0400093719, -0.00132784375, 0.00711400248, -0.0219624154, 0.0276012272, -0.0178953018, 0.0165993385, -0.0185157079, -0.0545406863, 0.0271186884, -0.0418568067, -0.0575737879, 0.0411398895, -0.0104228407, 0.0198943913, 0.020087406, 0.00109691441, 0.0405056961, -0.009857581, 0.0162822418, 0.0054320097, 0.0154963927, 0.0420498215, -0.00434974395, -0.0167234205, 0.0175092705, -0.0117532695, -0.00505631883, 0.0235203262, 0.0668385327, 0.0313236713, 0.00490811048, -0.0276288, 0.00662457, -0.0298071187, -0.0613789521, 0.0332538262, -0.00878910162, -0.00903726462, 0.0367832519, 0.0289523359, 0.0359008946, -0.0193429179, 0.0235065389, -0.0381619371, 0.010767512, -0.00499427784, 0.0400645174, 0.0507079475, -0.0252161063, -0.0489432327, 0.0324817635, 0.000641949126, -0.0159927197, 0.0539064929, 0.0216315314, 0.010953634, 0.0491913967, -0.0225001015, 0.0268567391, 0.0607723333, 0.0157721303, -0.0323714688, 0.0118084168, -0.00180779758, -0.00256952, -0.0108778058, 0.0135731306, -0.0330883823, -0.0274357852, 0.0339983143, -0.0313788168, 0.0144899543, -0.0485296287, -0.0152344434, -0.0122633819, -0.0101333177, 0.0105538154, 0.0119531788, -0.0151930833, 0.0214523021, -0.0279872585, -0.0281113386, 0.0357906036, -0.0118359905, 0.0278769638, -0.00165872753, 0.0288420413, 0.00165097252, -0.0270221792, 0.00654529594, 0.00870638061, -0.0255056284, -0.003784484, 0.0210938454, -0.00429115, 0.0289247613, -0.0105744964, -0.0157859158, 0.0121461945, -0.0142693659, -0.0539340638, 0.0298898406, -0.0227069035, 0.0196048673, 0.0129251499, 0.0163373891, 0.00907862559, -0.0253126137, 0.0209973361, 0.0126011595, 0.00289523369, 0.0103608, -0.0256434977, 0.0204320773, 0.0120703671, 0.00431872346, 0.00920270663, -0.0670039803, 0.00708642881, 0.0201977, 0.0123047428, -0.00451173913, -0.0103194397, -0.057739228, -0.0128562162, 0.0105124554, -0.00750003383, 0.0215212367, 0.0428494588, -0.0309927855, 0.00304344203, 0.00301414495, 0.00610756408, 0.00529069453, -0.0102160387, -0.00348289707, 0.0217418261, 0.0472612418, 0.0290902033, 0.00647636177, 0.00366040249, -0.00413604779, -0.00246784207, -0.0221967902, -0.00246439525, -0.0279458966, -0.00359491492, 0.0129182562, 0.0107812984, 0.0188328046, -0.0261949711, 0.0217280388, 0.0015966869, 0.00750692701, 0.0140763503, -0.0220175628, 0.00494257733, 0.050983686, -0.00140797964, 0.0339983143, -0.00705885515, 0.0342464782, -0.021369582, 0.0179228745, -0.0582907, 0.0649083778, 0.0118980315, -0.030027708, -0.0175230559, -0.00335364556, 0.00131491863, 0.0376104638, -0.010002343, 0.0202942081, 0.0110846087, 0.0285663046, 0.0473991111, 0.0308549181, 0.00705540832, 0.0503770635, -0.0161168, -0.0010073, 0.0180607419, 0.00595935574, -0.0151517224, 0.0193704907, 0.00934746861, 0.0174954832, -0.0114017054, 0.0230377875, -0.0201287661, 0.0168475024, -0.0138695473, 0.0134145822, 0.000593264354, -0.0356527343, 0.00392579893, 0.0208456814, 0.000320328312, 0.0306894761, 0.0126011595, -0.0487226434, -0.0206250921, 0.0627024844, -0.00396026578, 0.00653840229, -0.0334192663, -0.0110087814, 0.00521486718, 0.019921964, 0.0175644178, -0.0111811161, 0.0109605268, 0.0112638371, -0.0265258551, -0.015344738, 0.0307170488, 0.0313236713, -0.0161581598, -0.00141831976, -0.0371141359, 0.00315545988, -0.001345939, -0.0646326393, 0.0179228745, 0.00272462168, -0.0262363311, 0.0126080532, -0.0155653274, 0.0263879858, -0.0168199278, -0.0440075509, 0.00295727421, 0.0105124554, -0.00918202661, 0.00819626823, -0.0378034785, 0.00683826581, -0.0548439957, -0.046323739, -0.00713468296, 0.0666179433, 0.00205768389, 0.000982311438, 0.00155963481, 0.0429873243, 0.0114292791, 0.0293383673, -0.043511223, -0.00989894103, -0.0243888963, -0.0143383, -0.00205423706, 0.0133939022, -0.00635917392, 0.0154963927, -0.00914066564, 0.00543890288, -0.0086857006, -0.0405056961, 0.000885803602, -0.0127390279, 0.0177022852, -0.033198677, -0.0125115449, -0.00559055805, 0.0183502659, -0.00597314257, 0.0220589228, -0.00566638587, -0.0521969236, 0.0127114542, 0.0217280388, -0.0256710704, 0.0445866, -0.0263190512, 0.0210800581, -0.0296416767, -0.00783091784, -0.00990583468, -0.0379413478, 0.00685549947, -0.00397060625, -0.00560089853, 0.0471509472, -0.00381550426, -0.0200598333, -0.003712103, -0.00268843118, -0.0110777151, -0.00477713533, 0.0234651789, 0.0044669318, 0.014558889, -0.0411950387, 0.0097335, -0.00596969575, -0.0266775098, 0.00636262028, -0.032095734, -0.0220864955, 0.00319682038, -0.00308135571, 0.0295865294, -0.00197496288, 0.00487019634, 0.0488053672, 0.0197427366, 0.0328953676, 0.021535024, 0.0558642223, 0.020501012, -0.0106710037, 0.020501012, 0.00472888164, -0.0337225795, 0.010064383, -0.0186673626, 0.00862366, -0.00708642881, 0.00528724818, 0.059062764, -0.0145451017, 0.00316407671, 0.033777725, -0.00971971266, -0.00694511412, 0.0233548842, 0.00162426056, 0.0398715027, 0.00530103501, 0.00679001212, 0.00686583947, 0.00146226527, -0.0267050825, 0.0107468311, 0.0451380685, -0.00168113119, 0.023024, -0.0307446234, -0.00124856946, 0.0276012272, 0.0244854037, 0.0129251499, -0.0311582275, -0.0181021038, -0.0370038413, 0.024168307, 0.0087684216, -0.0148208383, -0.0174679086, 0.0436215177, -0.010519349, -0.0419395268, 0.025988169, 0.0110018877, -0.0351288356, -0.0295589566, -0.0324266143, -0.00443246495, 0.0343567729, -0.00413604779, 0.0102436123, -0.0368384, -0.0307997707, -0.00962320529, 0.057739228, 0.00756896799, 0.00866502058, 0.0170818772, -0.0177712198, -6.01019456e-05, 0.00613513775, -0.00443935813, 0.00501495833, 0.0449174792, -0.0257813651, 0.0334468409, -0.019467, 0.0235065389, -0.0223898068, -0.0169440098, 0.0136834253, 0.0154688191, 0.019467, -0.00441867812, 0.0322887488, 0.00484951632, 0.0110777151, -0.0308824908, -0.00757586118, 0.00655563595, 0.0113396645, 0.0178125799, 0.0322060287, -0.00802393351, 0.00740352599, 0.00526656769, -0.0274357852, -0.0235754736, 0.000447210186, -0.00929232128, -0.0380792134, 0.036755681, -0.0186122153, -0.0214798767, -0.0050115115, 0.00794810522, -0.0395130441, -0.033860445, -0.0233686715, 0.0140901366, -0.0237960629, 0.00567672588, 0.0191774759, 0.0324817635, 0.0203217827, 0.0164338965, 0.0302207246, -0.00715536298, -0.0304688867, 0.020501012, 0.0352667, -0.0270773266, -0.00552851753, 0.0408917293, 0.0224173795, -0.000471767969, 0.0499634594, -0.014807052, -0.00131750363, -0.00595935574, 0.0150827887, -0.00803772, 0.0179642346, -0.0239477176, -0.0116705485, 0.0345773622, 0.0178125799, -0.00425668294, -0.00270394143, -0.0100919567, 0.016047867, 0.0159789324, -0.020501012, 0.000357380399, -0.00747246, -0.0020645773, 0.0162133072, -0.0115671474, 0.00117532699, -0.010043703, -0.00183020125, 0.00593178207, -0.00758964801, -0.0122633819, 0.00702438829, -0.00287972344, -0.0011787737, 0.0308549181, 0.0354597196, -0.0162270945, -0.0130768046, -0.00341568631, -0.000774647342, 0.00236788741, 0.0123392101, 0.0100092357, 0.0159099977, -0.00187156175, -0.0269946065, 0.0149587067, -0.0114017054, 0.00874774158, -0.0425461456, 0.0244716164, 0.0282905679, -0.00880978256, 0.00308307912, -0.0105813891, -0.000208956597, -0.0303034447, 0.0114430664, -0.00410158094, 0.0285938792, 0.0124426112, 0.0123736765, 0.00684860628, 0.0150000677, -0.0286490265, 0.00896143727, 0.00355700124, -0.0448899083, 0.0272841305, 0.0153171644, 0.00430493662, 0.0128493225, 0.00125804788, 0.00162081385, 0.000128820655, 0.0165993385, 0.00601450307, 0.000237391927, -0.0193291306, -0.0127183478, 0.0601105653, -0.0169991571, -0.00801014621, -0.0198530294, -0.0122495955, 0.0174265485, 0.00673141796, 0.00544579653, 0.000816007785, 0.0154550327, -0.000905622146, -0.0052355472, 0.038768556, -0.0076103285, -0.0191361159, 0.00650048861, 0.00156221981, -0.039430324, -0.0160065051, 0.0131250592, -0.0227069035, -0.015179296, 0.014434807, 2.67389041e-05, -0.0348255225, 0.0436490923, -0.000365135493, -0.000146700448, -0.00111414795, 0.029035056, -0.00937504228, 0.0446417443, -0.00181641441, 0.00889939629, -0.00230584666, 0.024168307, 0.03909944, 0.000209710561, -0.0137109989, 0.0317097, 0.0211352054, 0.0100092357, 0.0289247613, 0.0422428362, -0.0225138869, -0.0141728576, 0.0031623533, 0.00887182262, -0.0284284372, 0.000310419, 0.024499191, 0.0128286425, 0.0291453507, -0.0202804226, 0.0011813587, 0.0444487296, -0.010395267, 0.0114017054, 0.00423944928, -0.00516316667, 0.0226103961, 0.00381895085, 0.0311858021, -0.0168061424, 0.00441178447, 0.0206250921, 0.0217969734, 0.0418292321, -0.00318475696, 0.0244578309, 0.0325644836, 0.0173162539, -0.00198013289, -0.0160892271, 0.00119773054, 0.0139384819, 0.0180745292, 0.00745867332, -0.00332434848, 0.00539409602, 0.000430407497, 0.024705993, 0.00601105625, -0.0207353868, 0.0280286185, -0.00247818208, -0.0260157418, -0.0201011933, 0.0118635641, -0.00255573308, 0.0329780877, 0.00447727181, 0.00866502058, 0.0185019206, 0.00140280963, 0.021038698, -0.0100299167, -0.00708642881, -0.00102108682, 0.0198254567, 0.00284008635, 0.049605, 0.0134766232, -0.00732769817, -0.0342740491, -0.0287317466, -0.0194807854, -0.0305791814, -0.00714847, 0.00517006, -0.00412915461, -0.0448623337, -0.024251027, -0.0095611643, 0.0161168, -0.0418843776, 0.00786538422, 0.00505631883, -0.00174403354, 0.0537686236, 0.0246370584, -0.0183364786, -0.00969903264, 0.0134076886, 0.000165011079, 0.00585940108, -0.0146278227, 0.0195772946, -0.00584906107, -0.0315442607, -0.00880288891, 0.0226655435, 0.0169164371, -0.0041601751, -0.00237133424, -0.00564570539, 0.024747353, 0.000682447921, 0.0134145822, -0.00268153776, 0.019921964, -0.0207905341, 0.0130492309, -0.0069933678, 0.0044255713, -0.00407056045, 0.0153309507, -0.00756207434, -0.0155791137, 0.0179228745, -0.0297519714, 0.0287593193, -0.0271462612, 0.0269670319, -0.0197289493, -0.0165579785, 0.0217142515, -0.0269532464, 0.0041188146, -0.000378922297, 0.0076792622, -0.000695803901, 0.00877531525, 9.92947753e-06, -0.0248162877, 0.0179918092, 0.025491843, -0.0062419856, -0.0140970303, -0.0108915931, 0.025698645, 0.00801704, -0.00553196436, -0.0272703432, 0.0246922057, 0.0050115115, 0.00789985154, 0.00625921926, 0.00388788502, 0.00698302779, 0.0126632005, 0.0217969734, 0.0133111812, -0.0141314976, -0.00770683587, 0.0325644836, -0.0168888625, -0.0247887149, 0.0245956983, -0.0271049011, 0.0189982466, 0.0154826064, 0.0174541231, -0.00999544933, 0.000414466485, -0.00461858697, -0.0072174035, -0.00266947434, -0.0291453507, -0.0163787492, -0.0363420732, -0.00994719565, -0.00758964801, -0.0280286185, 0.0300001353, -0.0266637225, 0.0211076308, 0.0227620509, 0.00826520287, 0.0183502659, 0.00872706156, -0.0174816959, -0.0254366957, 0.0308273435, -0.00862366, 0.0191223286, 0.0119118178, -0.0223484468, -0.000430407497, 0.0178677272, -0.0402851067, 0.00625921926, -0.0234100316, -0.0134214759, 0.0289247613, 0.0172197465, -0.0108846994, 0.00122099579, -0.00373967667, 0.00290729711, -0.0168888625, 0.00883046258, -0.0156756211, 0.0128631089, 0.0222105775, 0.0136627452, 0.0285663046, -0.0087822089, 0.0485847779, 0.0127872815, 0.0221830048, 0.0231067222, -0.0051804, 0.00212317123, -0.0114430664, 0.025988169, -0.0115464674, 0.00472888164, -0.0241958816, 0.0259468071, -0.0130009772, 0.0126976669, 0.0232170168, -0.0387409814, 0.0059042084, -0.0419946723, -0.0430149, -0.0165993385, 0.0121944482, 0.0426564403, 7.07651925e-05, -0.00525622768, 0.0323990434, -0.00503563834, -0.0181710366, 0.0276839472, -0.00427391613, -0.0269118864, 0.0429873243, -0.0207216, -0.0377759039, 0.00647636177, 0.00625232607, 0.0638605803, -0.0212592874, -0.00567672588, 0.0123047428, -0.0197703093, 0.0209835507, -0.00909241196, -0.020170128, -0.0522245, -0.0111949034, 0.0317097, -0.00742420601, -0.0253401864, 0.00634194026, 0.0076379017, 0.0119531788, -0.0115878275, 0.02037693, -0.0293935146, 0.00657631643, -0.0311858021, 0.00381205766, 0.0460755751, -0.0152068697, 0.0218383335, 0.0357078798, 0.00224897615, -0.00725187082, -0.019094754, 0.0453035124, -0.0243061744, 0.00162943057, 0.0161719471, -0.0076379017, -0.00573532, -0.0156342611, 0.0191499013, 0.0135455569, 0.0229550656, 0.0174403358, 0.021535024, -0.0381343625, -0.0098713683, -0.0222243648, 0.0253815483, -0.0109949941, -0.00502874516, 0.0499358848, -0.014600249, 0.024333749, -0.0246370584, -0.00140625634, 0.00448416546, -0.0147105437, -0.0118359905, 0.0478402898, 0.00727255084, 0.0055974517, -0.015427459, -0.00198013289, -0.0242648143, -0.0474818312, -0.0152068697, -0.0168061424, 0.00143124489, -0.00684171263, -3.6109639e-05, -0.00329160481, -0.00860987324, 0.0368108265, -0.0196048673, -0.0149862804, 0.0256159231, -0.0266085751, 0.0039637126, 0.0106365364, -0.0239615049, 0.00796878617, 0.00726565765, 0.035101261, 0.0102022514, -0.00586629473, 0.0378310531, 0.0261536092, -0.0107537247, -0.0212868601, -0.0127459215, 0.0521417782, -0.00723119034, -0.00788606517, -0.00632126, 0.00439110445, -0.0368935466, 0.0182951186, -0.0135731306, 0.00360525516, 0.00880978256, 0.016047867, -0.00879599527, 0.0225414615, -0.0114223855, -0.0167372078, -0.0104710944, -0.0209973361, 0.0250093043, 0.0473163873, -0.046048, -0.00400162628, -0.0314063914, 0.00747935334, 0.00774819637, 0.0399266481, -0.0121944482, -0.00386031135, -0.0253815483, -0.0586215854, -0.0135938106, 0.00679690531, 0.0277804565, 0.023837423, 0.00414294144, -0.0193980653, 0.00276942877, 0.01551018, 0.0324541889, 0.00113396649, 0.0015579114, 0.0119324988, 0.0312960967, 0.00576978689, 0.0173438285, -0.0057387664, 0.0135869179, 0.0166407, 0.0219072681, 0.0231756549, 0.0179090872, 0.0176747125, -0.00146054197, -0.00589042157, 0.0191774759, 0.000595418562, -0.0325644836, 0.0281251259, 6.03173648e-05, 0.00627989974, 0.0028194061, -0.0336950049, 0.00607999042, 0.00023049851, -0.0197978821, -0.0188328046, -0.0291177779, -0.00866502058, -0.0110915024, 0.0034191329, 0.00569051271, 0.0178539399, 0.0076379017, 0.00900279731, 0.0222519375, -0.00190775213, 0.00943019, 0.0115395738, -0.00516316667, 0.0138281872, 0.0069933678, -0.00175782037, -0.024002865, 0.01959108, 0.000792311679, -0.0163787492, -0.0145864626, 0.0142417923, 0.0290626306, -0.00616960507, -0.0222243648, 0.0174265485, 0.00141918147, -0.00745177967, 0.0227206908, -0.00658320962, 0.014848412, 0.00548026338, 0.0318199955, -0.0159375723, 0.000809545221, 0.0122358082, 0.0094784433, 0.00529758818, 0.0175919905, 0.0153309507, 0.00168285449, 0.0267326571, 0.0137799336, 0.0395681933, -0.00619717874, 0.00667971745, -0.00636262028, 0.00506321201, -0.0042601293, -0.00268153776, -0.0153585244, 0.000259580091, -0.00967145897, -0.0203631427, -0.00284180953, 0.0311030801, -0.00152775273, -0.0205837321, -0.0314063914, 0.0216177441, 0.0765996054, 0.0262501184, 0.00310892938, 0.00523899402, -0.00208008755, -0.0300552826, -0.0116843358, 0.0186397899, 0.03011043, -0.00217142515, 0.0198530294, 0.0280837659, 0.0107606184, -0.0124839712, -0.02037693, -0.0142417923, -0.0130009772, -0.010250506, 0.02033557, -0.025119599, -0.000244069917, 0.015055215, -0.00232480373, -0.00716915, 0.0270635411, 0.0218383335, -0.0306067541, -0.00624543242, -0.0417740829, 0.0130354445, 0.0072174035, 0.0358733237, 0.0352115557, 0.00832724292, 0.00295382761, 0.0426840149, -0.0142831523, -0.00953359064, -0.0166131258, 0.0172197465, -0.0122702755, 0.000297278457, 0.0160340797, -0.00669695111, 0.00635572709, 0.019094754, -0.00835481659, -0.00430838345, -0.0114499591, 0.0118428841, -0.0396509133, -0.00957495067, -0.0251471717, -0.000910792209, 0.0109812077, -0.00792742521, 0.00362248858, -0.0236030463, 0.00633160025, -0.025202319, -0.0108295521, 0.00210593781, -0.0243888963, -0.0284008626, -0.0227069035, 0.0133387549, -0.01062275, 0.023382457, -0.0292280726, 0.0336398557, 0.00715536298, 0.0185432825, -0.0110156741, -0.0061006709, -0.0182813313, -0.0257675797, -0.0122840628, -0.01950836, -0.00756207434, -0.00807218719, -0.0355700143, -0.00870638061, 0.00728633767, 0.0130216572, -0.00733459182, 0.0029934647, -0.0152895907, -0.00204045023, 0.00657631643, 0.00532860868, -0.0118153105, -0.00955427065, -0.0197289493, -0.00961631164, -0.00726565765, 0.01872251, 0.0178677272, -0.0166820604, -0.0101539977, -0.00399128627, 0.010229825, 0.0208181087, -0.00124943117, -0.00579736056, 0.024333749, -0.00190775213, 0.0193429179, 0.00309341913, -0.0224863142, -0.000478661386, 0.00595246255, 0.015137936, 0.029200498, 0.0284284372, -0.0139453746, 0.0174816959, -0.000503219198, 0.0178677272, 0.00988515466, 0.00722429715, -0.0172059592, -0.00158807007, -0.00686583947, -0.0181572512, -0.0166544858, 0.0024902455, 0.00717604347, 0.0209835507, 0.0138557609, -0.00254539284, 0.00413949462, -0.00902347825, -0.00564570539, 0.00239546108, -0.024705993, -0.00148897723, -0.0208318941, -0.00879599527, 0.0133525413, 0.0177022852, 0.0115051065, 0.0180469565, 0.00800325256, 0.000432992529, 0.0143658733, 0.0332814, 0.000619976374, 0.0174127612, 0.0173162539, 0.00205596047, -0.0463788845, -0.0137316789, 0.0182813313, 0.00109002099, 0.0117946304, -0.0219072681, -0.00600071624, -0.00634538708, -0.0217004642, -0.0112776244, 0.00976107363, 0.0138833346, -0.00191981555, 0.0176884979, 0.00186983834, 0.0126287332, -0.00436697714, -0.0291453507, 0.0116085084, 0.019384278, -0.0068279258, -0.0180883165, 0.0138419736, 0.00158893177, 0.00836171, 0.0171921719, -0.0130216572, 0.0128010688, 0.0173438285, 0.0294210874, 0.00645912811, 0.00150621077, 0.00474956166, 0.00718983, -0.00963009801, -0.0190671813, -0.0132353539, -0.0320681594, 0.0190809686, 0.015220657, -0.0101126377, 0.00760343485, 0.0357078798, 0.00757586118, 0.00458756648, 0.0150414277, 0.00948533695, -0.0309100654, -0.0104642017, 0.0230653603, -0.00888561, 0.00262811384, 0.0109053794, 0.0124495048, -0.00787227787, 0.0138695473, -0.0128424289, 0.0105951764, 0.0217280388, -0.0220175628, 0.0158686377, -0.0236444082, -0.018929312, -0.00279872585, -0.0121806609, 0.0163787492, 0.0329505168, -0.00898211729, 0.00335709238, -0.00149242394, -0.000839273096, 0.0123943575, -0.0171646, -0.000571722456, 0.0122909555, -0.00605586357, -0.014145284, -0.0132698203, 0.0112431571, 0.00250920234, 0.0068279258, 0.0160616525, 0.0288420413, 0.00265568751, -0.00145537185, 0.0178815145, -0.00276770536, -0.0174541231, 0.00396715943, 0.0255056284, 0.00180090417, 0.0307446234, 0.0111121824, 0.0416637883, 0.000312788616, -0.000166734433, 0.0168061424, -0.0266223624, -0.00581114739, 0.020501012, 0.00926474761, 0.0324817635, 0.00498049101, -0.0204872247, 0.0135869179, 0.00631436659, -0.014972494, -0.0165028311, -0.0181986112, -0.0291729253, -0.0121186208, -0.0177712198, -0.0132560339, -0.0121806609, -0.0245267637, -0.0167647805, -0.00310720596, -0.00556987803, -0.00956805795, -0.0438145362, -0.0173024666, 0.00960941799, 0.0132698203, -0.0033777724, 0.039761208, 0.0135041969, 0.0269946065, 0.00813422725, -0.0197840966, -0.00558366487, -0.0111397561, 0.0138212936, 0.00209732098, 0.00866502058, -0.0379964933, 0.0355700143, -0.00532860868, 0.0187362973, -0.00115637, 0.0087822089, 0.00280734245, 0.0301655773, -0.023878783, -0.00333296531, -0.00212834147, 0.0287593193, 0.0134145822, -0.0170543045, 0.0148208383, -0.0116291884, 0.0115947211, -0.00409813412, 0.0258916598, 0.00292970054, -0.0176333506, -0.0186535772, 0.00801014621, -0.00362248858, 0.00971971266, -0.0140901366, -0.00354666123, -0.0168612897, -0.0234238189, 0.0170129444, 0.00758275483, -0.0188190192, -0.0214798767, -0.0160892271, -0.019839244, -0.0228723455, 0.0109053794, -0.000853921578, -0.0423531309, -0.00132095034, 0.00821005553, -0.00599382306, -0.0156894084, -0.0136696389, 0.0110087814, 0.00217831857, 0.00733459182, -0.000461427844, -0.0128355352, 0.00900969096, -0.00404298678, 0.0277253091, 0.00420498196, -0.00891318358, -0.00881667528, 0.0103401197, -0.0176471379, 0.0151103623, -0.0195359327, 0.00862366, -0.00888561, -0.000420067372, -0.00218176539, -0.0178125799, -0.0163787492, -0.0124357175, 0.00644534128, -0.0222795121, 0.00803772, -0.0107468311, -0.0102367187, 0.0294210874, 0.0186673626, -0.0135593442, 0.0245543383, -0.0220175628, -0.00983690098, 0.02936594, 0.0332814, 0.0186260026, -0.00649704225, -0.0266637225, -0.0154963927, -0.0139936293, -0.0258365124, 0.00923028, -0.00363627542, 0.0325920582, -0.0115395738, -0.0037534635, 0.0154136717, 0.00846511126, 0.0011761887, -0.014434807, 0.00907173194, 0.0119807525, -0.0123736765, -0.00976796634, -0.00386031135, -0.00516316667, 0.0187500846, 0.00482194265, 0.00430493662, -0.0314063914, 0.0104228407, 0.0393751785, 0.0166131258, 0.0145451017, 0.00736905867, -3.30668408e-05, 0.00169836474, 0.0183089059, -0.00792053156, -0.00042889957, -0.0323438942, -0.00638330076, -0.00491845049, 0.0065625296, -0.00195945264, 0.00522865402, 0.0203907173, 0.00849268492, -0.00027832156, -0.0323990434, -0.0293383673, -0.00681069214, 0.00313994987, 0.0232721642, -0.035432145, -0.0260157418, 0.00755518116, 0.00377414376, -0.0123598902, 0.024540551, -0.00257124309, 0.00569395954, -0.0168612897, 0.00781713054, -0.0199771114, 0.00925785396, 0.0123598902, -0.0160065051, 0.00683137262, 0.00899590459, -0.0206113067, 0.000520021887, -0.010312546, -0.0247335676, -0.00416706828, 0.00122271921, 0.00711400248, -0.0131733129, -0.0147794783, -0.000232437276, -0.00251954258, 0.0209973361, -0.0274082106, 0.0105607091, 0.0150000677, -0.00615237141, 0.00352770416, 0.00287627662, 0.0218245462, 0.0250230897, 0.0119531788, 0.00583872106, 0.014724331, -0.00554575119, -0.0160340797, 0.00961631164, -0.0135524506, -0.00615237141, -0.00949912332, -0.0169991571, 0.00799636, -0.0119324988, 0.0264431331, -0.000990066445, 0.00377069716, -0.00521486718, 0.0127666015, -0.00803772, 0.001892242, 0.0020680239, -0.0106916837, 0.0166544858, 0.00422566244, -0.00794810522, 0.0185846426, -0.0133180749, 0.00744488649, -0.00687273312, -0.000557074, 0.0127597079, -0.00838239, 0.00466684066, -0.00280217244, 0.0261122491, -0.00198874972, 0.0147794783, 0.0188465919, 0.0339983143, -0.00756896799, -0.000129682332, 0.00752071384, -0.0165028311, 0.020707814, 0.00296244444, -0.0273392778, 0.0121530872, 0.0150414277, -0.00680035213, -0.0163511764, 0.0291729253, -0.0271049011, 0.00269704801, 0.014765691, -0.000275305705, -0.000837118889, -0.0317097, -0.014765691, 0.019880604, 0.0080584, -0.00227827299, 0.0126907742, 0.0265258551, 0.0071071093, -0.019260196, -0.00818937458, 0.0209284034, -0.0022334659, 0.000232006438, -0.0112362634, -0.00960252434, -0.00314511987, 0.010209145, 0.00677277846, 0.00493568415, 0.0148208383, -0.0226241816, -0.0113051981, 0.0135248769, -0.0114361728, 0.00584561424, 0.0147105437, 0.00546303, 0.00666248379, 0.00793431886, -0.0101333177, -0.00825141557, 0.000398310047, -0.0125735858, 0.0221416429, -0.00454620598, 0.00233859057, 0.00854783226, -0.0263190512, 0.00218004198, -0.00765858218, -0.0177160725, 0.00364316883, -0.00691754045, 0.00703128148, -0.0315718316, -0.01062275, -0.038851276, 0.025864087, 0.0111052888, -0.00965767168, 0.0137178926, -0.0142693659, -0.0185984299, -0.00734837865, 0.00478747534, -0.00538030919, 0.0233962443, -0.01959108, 0.0285387319, -0.0073001245, -0.0126149459, 0.00918892, 0.0156894084, -0.0014321066, 0.00292970054, -0.0103608, -0.00386720477, -0.0121806609, -0.0114637464, 0.0188190192, 0.0260157418, 0.0050115115, 0.0152758034, -0.0143245133, -0.015592901, -0.0026177736, 0.0135731306, 0.01060207, -0.0224311668, -0.00943019, 0.00821005553, -0.0122495955, 0.0233962443, -0.000796189241, 0.00962320529, -0.00934746861, -0.0093957223, 0.000472629647, -0.00430149, -0.0179780219, -0.00487019634, -0.0361766331, 0.00105813891, -0.00375001691, 0.0167372078, -0.0250506643, -0.00492534367, -0.0103608, 0.00954048429, 0.00187500846, -0.00430149, 0.0111190761, -0.010353907, -0.00858919322, 0.00927853398, -0.00662112329, 0.00242648157, -0.0167509951, -0.0242372416, 0.00663835695, -0.00148725393, 0.0144072333, -0.0183364786, 0.0124701848, -0.00789295789, 0.0123047428, 0.00723119034, -0.00810665358, 0.00916134659, -0.00993340835, 0.0110570351, 0.00945087, 0.023837423, 0.0305791814, -0.0206526667, -0.0213144347, 0.00247645867, 0.00465305382, 0.0164338965, 0.0045496528, -0.0117946304, 0.00503219152, 0.0301655773, -0.0012244425, 0.00371554983, 0.00255400967, -3.70790221e-05, -0.00131664192, 0.018226184, -0.0264707077, 0.00195600605, -0.005756, 0.0123529965, 0.00453241915, 0.0021559149, -0.0100574903, -0.00735527184, -0.00234203716, 0.0179642346, 0.00759654166, 0.00284353294, 0.0169991571, 0.00430149, 0.00539754238, 0.00350357732, -0.0058214874, -0.00405332679, 0.0053182682, 0.0195772946, -0.00333468872, 0.0206802394, 0.0113120908, -0.0181710366, 0.00728633767, -4.8146183e-05, 0.00588352839, 0.00106503232, -0.00775509, 0.0089476509, -0.0214660894, 0.00376725034, 0.0240993723, -0.00834792387, 0.000337131, 0.00665559061, -0.0109674204, -0.00794810522, -0.0164338965, 0.0201977, -0.0121324072, -0.00577323372, -0.00194738922, -0.00840996392, -0.000906483852, -0.0326196328, -0.0135593442, 0.00888561, 0.0216866788, 0.0182123985, -0.00575255323, -0.0010073, 0.0122564891, -0.00334330555, -0.0125735858, 0.00600416306, 0.00395681942, 0.0131043782, 0.0207353868, -0.0132836075, -0.014600249, -0.00376725034, 0.00333985873, -0.00468752114, 0.0076379017, 0.00348634366, -0.029614104, -0.00807908, -0.0287317466, -0.0226517562, 0.00476334849, 0.0131802065, -0.0116981221, 0.0105744964, -0.00209732098, 0.00663491, -0.0112224771, 0.0247887149, -0.0158548504, -0.00122358091, 0.00485640951, -0.00243854499, -0.0235616863, -0.00271945144, -0.00875463523, -0.00694856048, 0.00283836294, -0.0172886811, -0.0062833461, 0.0279045366, -0.00747935334, -0.0163649637, -2.16361623e-05, -0.0112500507, -0.0101126377, 0.0204320773, 0.01872251, -0.0188052319, 0.0159789324, 0.0239890777, 0.0150827887, -0.00253332942, 0.00511491252, 0.0010133317, 0.0250093043, -0.00825141557, -0.00316924672, 0.0227069035, 0.00708642881, 2.30767782e-05, 0.0142831523, -0.0159513578, 0.0113327717, 0.0149449203, 0.00380516425, 0.0194394253, 0.0106434301, 0.000640225771, 0.0115671474, -0.0119945388, -0.00479092216, -0.0242372416, 0.0107330447, 0.0113258781, 0.0114844264, -0.0160892271, -0.0228999183, 0.000577754225, -0.0116636558, -0.00124512275, -0.0224173795, 0.00420842879, 0.0165166184, 0.025326401, -0.00766547536, 0.00572497956, 0.000338854356, -0.00474956166, 0.0128631089, -0.0039637126, -0.00568706589, 0.031433966, 0.00796189252, -0.0217418261, 0.0405608453, -0.0153723117, 0.0367281064, -0.00755518116, -0.01464161, -0.010188465, 0.0244716164, -0.0251885317, 0.0257537924, 0.00188362517, 0.0045082923, 0.0118980315, -0.00428770296, 0.0137523599, 0.00966456532, -0.00314684305, -0.00864434056, 0.00670039793, -0.00526312087, 0.00209732098, 0.0130078709, 0.0089338636, 0.0130285509, 0.00427391613, -0.00451518549, 0.0121806609, 0.00302103837, -0.0166820604, 0.00110553112, -0.015716983, 0.0234376043, -0.0033226253, -0.00354321441, -0.0133801149, 0.0355975851, 0.000637640711, -0.0197703093, -0.00910619926, -0.000807821867, -0.00598692941, 0.002526436, -0.00834792387, -0.010188465, 0.00232135691, 0.00476334849, -0.00698647415, -0.00515972, -0.014000522, -0.0185157079, -0.00326403114, 0.00967145897, 0.015344738, -0.010767512, -0.00119945395, 0.0338053, 0.023837423, -0.00694856048, 0.0131250592, -0.0133732222, -0.0175644178, 0.00155274139, -0.0220864955, -0.0133663286, 0.010540029, 0.0129596172, -0.00707953563, 0.0175919905, -0.0326472037, 0.0290626306, 0.0125597995, -0.0106985774, -0.0186260026, -0.0159513578, -0.00041554356, 0.00536652235, 0.0164614711, 0.00325196772, 0.0223070849, -0.00364661566, -0.00740352599, -0.000733286841, -0.0112776244, -0.0122082345, -0.0110018877, 0.0171921719, 0.014807052, 0.0127183478, 0.000452811073, 0.00679690531, -0.0236995555, -0.00520452717, -0.0113741318, -0.00135455572, 0.00568706589, -0.00515282666, 0.0172059592, -0.00991962198, 0.0287317466, -0.00851336587, -0.0112224771, -0.00617649825, 0.0291177779, 0.0152758034, -0.00640053442, 0.00305722887, -0.0250644516, 0.00581804104, -0.00409468729, 0.0107537247, 0.0225001015, -0.00502185151, 0.0157997031, -0.0167372078, 0.0171646, -0.00155187969, -0.0191223286, -0.0123185292, -0.0058214874, -0.0033226253, -0.00938882865, 0.0169577971, 0.0139936293, 0.00549405, 0.000612652104, -0.0129182562, 0.0143520869, 0.0137109989, -0.00775509, 0.00380861084, 0.00366729591, 0.00551128387, -0.004970151, -0.0136834253, 0.00691754045, 0.0130423382, 0.0270911139, -0.0110570351, -0.00993340835, -0.0231756549, 0.0140280956, -0.0156066874, -0.00618683826, 0.0262776911, 0.0183778405, 0.0234100316, 0.00860298, 0.014145284, 0.00727944449, 0.00484262267, -0.0109674204, -0.0062247524, -0.00302276178, -0.00447727181, -0.00665559061, -0.0115947211, -0.0296692513, -0.00250920234, -0.0085823, 0.0209284034, 0.00752071384, -0.00424634246, 0.0117877368, -0.00574910687, 0.0125804795, 0.00386375817, -0.0093267886, -0.0106641101, 0.0171921719, -0.00951291062, -0.00200426, -0.00821005553, 0.0156066874, 0.0131733129, 0.01551018, 0.00275047193, 0.0220313482, -0.0175092705, -0.000823762908, 0.0212455, -0.00779645052, -0.00793431886, 0.00149328564, -0.023547899, 0.0119393915, -0.00491845049, 0.00645568175, 0.00529414136, -0.0109191667, 0.0172886811, -3.65135493e-05, -0.0162133072, 0.0178539399, -0.0115809347, -0.0181986112, -0.0114775328, 0.00189568871, -0.0064798086, -0.00615581824, 0.0118428841, -0.0185846426, -0.0145864626, -0.0279321112, 0.0116705485, -0.00279527903, 0.0263052657, 0.00213695806, -0.00489087682, -0.010457308, -0.00498393783, -0.0140901366, 0.0315718316, -0.0153309507, 0.0313788168, 0.00458756648, 0.00589386839, 0.0211352054, 0.00483917631, -0.00120720896, 0.0273254905, 0.00809286721, -0.0121461945, 0.00122961262, -0.0196875893, -0.00418774877, -0.0048460695, -0.00438765762, 0.0165579785, -0.0108778058, -0.00117705029, 0.00504942518, -0.00856851228, 0.0169302225, 0.0289247613, -0.00552162388, -0.00475990167, 0.00120031554, 0.0082376292, 0.0318199955, 0.0116843358, 0.0198943913, 0.0121668745, 0.00910619926, 0.0231342949, -0.00387065159, 0.00699681463, -0.00971971266, 0.0102367187, 0.0141866449, 0.0113534518, -0.0022748264, 0.00440144446, 0.0132077802, 0.0476472713, 0.0262363311, 0.00220933906, 0.00615926459, -0.0303310193, 0.00998855568, -0.0118635641, 0.00738284551, -0.000725962571, -0.00318131014, 0.009940302, -0.00676933164, -0.0151930833, 0.00206285389, 0.014765691, -0.0168888625, 0.00338983606, 0.0190671813, -0.0153723117, 0.00907173194, 0.00477024214, -0.0140143093, -0.00732769817, 0.0111535424, -0.029531382, 0.0174265485, 0.00955427065, -0.0054320097, 0.0122633819, -0.0147519046, -0.0217969734, -0.00758275483, -0.028869614, 0.01954972, -0.00690375362, 0.0172611065, -0.00214385148, 0.0251058117, 0.000460135343, 0.0148208383, -0.0152758034, 0.030358592, 0.00905105192, 0.0149173466, 0.00803772, -0.0146553963, 0.00651082862, -0.0169991571, 0.00284008635, -0.00150534918, 0.00645223493, 0.0131250592, 0.000330883835, 0.00615581824, 0.00529758818, 0.00860298, -0.00794810522, 0.000753967091, 0.00331573188, -0.00695890049, 0.00066435273, -0.0174816959, -0.0187914446, 0.0131733129, -0.00825141557, -0.00120031554, 0.00900969096, -0.00224552932, -0.00665214378, 0.0118497778, 0.00612135092, 0.00929232128, 0.0126907742, -0.00105727732, -0.00309686596, 0.0219348408, 0.000750951236, 0.0220727101, 0.00525278086, 0.00403954, -0.00414294144, 0.00252471259, 0.010064383, -0.0234100316, -0.00330539164, 0.00839617755, 0.0371141359, 0.0106985774, -0.0165441912, -0.00748624699, 0.0180745292, 0.023547899, -0.0287868939, 0.0124977585, -0.0133318612, -0.00278149219, -0.0184605606, -0.00912687927, -0.00127872813, -0.00301069836, -0.00183020125, -0.0172335338, -0.0144210206, 0.0014303833, -0.00253677601, -0.00100557669, 0.00191464555, -0.00902347825, 0.000779817405, 0.0055560912, -0.0201149806, -0.0229412802, 0.0067865653, -0.00747935334, 0.0190671813, -0.0303034447, -0.0117256958, -0.00724497717, 0.014765691, 0.00480815582, -0.000996098272, 0.00769304903, -0.00293487078, -0.010519349, -0.01468297, 0.00858919322, 0.0202804226, -0.0069933678, 0.0252574664, -0.00528724818, -0.0225414615, -1.80548195e-05, 0.010147104, 0.0067555448, -7.32963745e-05, 0.0282354206, -0.0045806733, 0.0105262417, -0.00619717874, 0.0195635073, 0.0119738588, -0.000994374859, 0.000331960939, 0.0286766, -0.00173541682, 0.00246784207, 0.015179296, -0.00532860868, 0.0233410969, -0.00694166729, -0.0208870415, -0.0249679424, -0.0121668745, 0.015758343, 0.00257124309, 0.0137799336, 0.0106158564, 0.00161736715, 0.0126632005, -0.0279045366, 0.015716983, -0.0135317706, -0.0143658733, -0.00389133184, -0.0184329879, 0.0189706739, -0.000476076355, -0.00436008396, -0.0156618357, -0.0161030143, 0.0171508119, -0.002609157, -0.00338638923, -0.0161030143, -0.0104986681, 0.0124839712, -0.00308135571, -0.0169440098, 0.00571119273, -0.00974728633, 0.00137782097, 0.0160340797, -0.029614104, 0.0122702755, 0.0101195304, 0.00843064487, -0.0209559761, -0.0174541231, -0.00727255084, -0.00769994268, -0.00213523465, 0.019053394, -0.0163649637, -0.00980243366, -0.0180331692, -0.0015122426, 0.0047047548, 0.0174127612, 0.00524588767, -0.00297106104, 0.0158962104, -0.0174954832, -0.00974039268, 0.000486847304, 0.0120496862, 0.0179090872, 0.00744488649, -0.0254504811, 0.000757844595, -0.010126424, -0.00117274199, 0.000791019178, -0.0153723117, 0.0017224917, -0.018929312, 0.00705885515, 0.0112362634, 0.0140901366, -0.0177436452, -0.018887952, 0.020252848, -0.0158134904, -0.00430149, -0.00228516641, 0.0239890777, -0.0117394831, 0.0145313153, -0.00377069716, 0.015137936, -0.0215763841, -0.0102780797, -0.0238512103, -0.00692098681, -0.0263328385, 0.00582493423, -0.00708642881, 0.00742420601, -0.00742420601, -0.00988515466, -0.00294004078, -0.00561813172, -0.0177987926, -0.0216315314, 0.00339155924, 0.00980243366, -0.0124288239, 0.0178815145, -0.00023653025, 0.00602139672, 0.0143520869, 0.0418843776, 0.00163115386, 0.00693132728, 0.0116636558, 0.0175092705, -0.00575255323, 0.0239752922, -0.0116981221, 0.0222795121, -0.0113189844, -0.0320681594, 0.00380861084, -0.0184329879, 0.00190602883, 0.01551018, 0.0158686377, -0.0117808431, 0.00334158214, 0.00467373431, 0.0122289155, -0.0338328741, 0.000132590503, 0.0128906826, 0.0189017393, -0.0137799336, 0.0382722318, -0.0258089397, -0.000366858847, 0.0118015232, 0.00835481659, 0.024002865, -0.0204458646, 0.000539409579, 0.0199357513, 0.0116636558, 0.0230377875, 0.0336398557, -0.00511835935, -0.00639364077, 0.00233342033, -0.0181434639, 0.00289006345, 0.0189982466, -0.0194945727, -0.0093130013, -0.00817558821, -0.00222312589, -0.00637296075, 0.0292832199, 0.00674175797, 0.0201563407, 0.00322439405, -0.00553885754, -0.0272427686, 0.0177436452, -0.0229274929, -0.0204596501, 0.00655563595, 0.00752071384, -0.0315994062, -0.00591799524, 0.0217969734, -0.00974039268, -0.00247473526, 0.00539754238, 0.0102987597, -0.00373967667, 0.00338121923, 0.00141573476, -0.0144623807, 0.0158548504, -0.0120427934, -0.00827898923, -0.00141401135, -0.00733459182, -0.00587663474, 0.00952669699, 0.00474956166, 0.0227206908, 0.00122702762, -0.000167057558, 0.00829277653, -0.000862969202, 0.00831345655, -0.00594901573, 0.00308652571, -0.00250575575, 0.0341637544, 0.0132905012, -0.0138212936, -0.00307273888, -0.0060593104, -0.0137041053, -0.0173851885, 0.0136903189, 0.0102367187, -0.00282629952, 0.00609033043, 0.0113741318, 0.0273392778, -0.000603173685, -0.0333089717, 0.00718983, -0.0284284372, 0.00793431886, 0.00373967667, 0.00661423, 0.0043428503, 0.00827898923, 0.00984379463, -0.0231618695, 0.0110087814, -0.00206285389, 0.000155532631, 0.0175506305, 0.0113810254, 0.00870638061, -0.00129337667, 0.0115257874, 0.0378862, -0.0148208383, -0.00482194265, -0.00790674519, 0.0217418261, 0.0217693988, 0.0187776573, -0.00344153657, 0.00854783226, -0.00393269211, -0.00666593062, 0.00373967667, -0.0222933, -0.0209421888, -0.00221450906, 0.0116705485, 0.0153723117, -0.0291729253, 0.0154412454, 0.0214798767, 0.0126356268, -0.0102987597, -0.0219899882, 0.0110018877, -0.0140349893, -0.0108226584, 0.0155377537, -0.00181986112, -0.0155515401, 0.00106589403, -0.010126424, -0.00850647222, -0.00867191423, -0.0032037138, -0.00974728633, -0.0019353258, -0.0163925365, -0.0185984299, 0.0106572174, 0.00200943, 0.000670384441, -0.0154550327, 0.0333089717, -0.00781713054, -0.00290902052, -0.0267740171, 0.00673831161, 0.00528380135, 0.015758343, 0.00354666123, -0.00355355465, -0.0123529965, -0.00832035, 0.0225138869, -0.0057801269, -0.0187776573, -0.014393447, 0.00687962631, -0.0117601631, -1.83779484e-05, -0.00712089613, 0.00199391972, 0.00480126217, 0.0258503, -0.00627989974, 0.00580080738, 0.00600071624, 0.0165441912, -0.00121151737, -0.020004686, -0.0165304057, 0.0153860981, 0.00362248858, -0.00497359782, 0.00333296531, -0.00410158094, -0.00292625395, 0.000622130523, -0.00124770775, -0.0138144, -0.000779386552, -0.00294004078, 0.0121393008, 0.000961631129, -0.00927853398, 0.0254229084, 0.0245681256, 0.00680035213, 0.0245956983, -0.0158548504, 0.0234651789, -0.0108226584, -0.010705471, 0.0275185052, 0.014931133, 0.0274357852, 0.00411192095, 0.00325713772, 0.0317097, -0.0105331354, 0.00482194265, 0.000743196113, -0.0336674303, -0.00631436659, -0.021369582, -0.00621785875, -0.020046046, -0.0116498685, -0.00679690531, 0.0135662369, -0.00825830922, -0.00807908, -0.0214798767, -0.0188465919, -0.0129458299, -0.00111931795, 0.000611359603, 0.0197427366, 0.0169302225, -0.00443591131, -0.00246439525, 0.00247818208, -0.0165166184, 0.000616098812, -0.0114637464, -0.00340534607, 0.0216728915, 0.0137109989, -0.0150414277, -0.0208456814, 0.0130768046, 0.0189568866, 0.0156480484, -0.0150690014, 0.00381895085, -0.0166131258, -0.00282112928, -0.014310726, -0.0113810254, 0.0167647805, 0.00414983463, 0.0165579785, -0.00693822047, -0.00646257494, 0.00199909, 0.0269670319, 0.0135110896, -0.00974728633, 0.01464161, 0.0286214519, -0.0103814807, 0.00390856527, 0.0070347283, 0.000899590435, 0.0105676027, 0.00928542763, 0.024581911, -0.00453241915, -0.00231446349, -0.0138557609, -0.00390511868, -0.0230515748, 0.0352115557, -0.0107606184, 0.0215901695, 0.00552851753, -0.0224725269, -0.0333916955, 0.0203217827, -0.0247197803, -0.000386462, -0.0191499013, 0.0118635641, 0.000807821867, 0.0130699119, 0.00856851228, 0.00676933164, -0.000639364065, -0.00657631643, -0.0158410631, 0.00693822047, -0.0083892839, -0.000991789857, 0.0078033437, 0.0298071187, 0.000793173385, -0.00155274139, 0.000389262423, -0.00193704909, 0.00201115338, 0.0143796597, 0.00934746861, -0.00457033282, 0.0110156741, 0.0109191667, -0.0146553963, -0.0183502659, 0.020087406, -0.000253763777, 0.0268981, -0.00560779171, 0.00686583947, 0.00289351027, 0.00717604347, 0.00778266368, -0.009464656, 0.0349082462, 0.0171646, 0.00364661566, -0.00266602752, 0.00536652235, 0.00195772946, -0.0234789662, -0.00719672348, 0.0180469565, 0.00233686715, 0.0068692863, -0.00558021804, -0.00432906346, -0.00132008863, 0.00922338665, 0.0161581598, 0.00101764011, 0.0161443744, -0.00447037863, 0.000996959861, -0.0023523774, -0.00244543841, -0.00363972224, 0.00682447897, 0.00974728633, 0.0172886811, -0.00183192454, -0.0246508457, -0.00756207434, -0.014517528, -0.0136282779, 0.0217693988, 0.0184192, -0.00743799284, -0.0250506643, 0.00851336587, -0.00525622768, 0.00519763352, -0.00614892459, 0.000350056158, 0.0179780219, -0.00981622096, 0.016047867, -0.0210938454, 0.00131319521, -0.00500806468, -0.0103194397, 0.0265534278, -0.000898728729, 0.000791880826, 0.00747935334, 0.00553541072, -0.00529069453, 0.00667282427, -0.0136696389, 0.0184743479, 0.0106296437, -0.00136920426, -0.00637985393, 0.00834103, -0.00276942877, -0.00291419053, 0.00149759406, -0.00487019634, -0.00452897232, -0.015262017, 0.0131112719, 0.000923717394, 0.0116016148, -0.0270221792, 0.0217969734, -0.00766547536, -0.0211076308, -0.0141314976, -0.00462548, 0.00631091977, 0.00179228745, -0.010540029, -0.000934919168, -0.0170405172, 0.00401541311, 0.00616960507, 0.0197289493, -0.0219486281, 0.00870638061, -0.028166486, -0.00200081314, -0.0111742234, -0.0269256718, -0.00927853398, -0.0278769638, 0.000792311679, -0.0169026498, 0.0241958816, -0.00493913051, -0.00467373431, 0.0298898406, -0.000649273337, 0.00601795, 0.0275322925, 0.010540029, 0.0132905012, -0.000345316919, -0.014807052, 0.0272979159, 0.00286766, 0.00255056284, -0.0288420413, -0.00274874852, -0.0137385726, 0.0175368432, 0.0142142186, -0.0123116365, -0.00697613414, -0.00727944449, -0.00384307792, -0.0172748938, -0.000448933541, -0.0226655435, 0.00669005746, -0.00716915, 0.00140022463, -0.000807391, -0.00648670178, 0.00685549947, -0.00836860389, 0.0057801269, 0.00867880695, -0.00792053156, -0.0199495386, -0.00705885515, 0.0202666353, 0.00512180617, -0.00789985154, -0.0175092705, 0.0213420074, 0.0180055946, 0.00306584546, 0.00561813172, 0.0228309855, -0.0170267317, -0.0370314158, 0.00514938, 0.0004730605, -0.00229033665, 0.00645912811, -0.00885803625, 0.0093130013, -0.00758275483, -0.0181158893, 0.0080584, 0.00801014621, 0.0330883823, 0.0278631765, -0.0229412802, 0.00912687927, -0.00857540593, -0.00153464614, 0.0377207585, 0.00308480253, 0.00168974791, 0.0084030712, 0.0135386633, -0.0200184714, -0.00296933786, 0.00469786115, -0.00941640232, -0.015137936, -0.00426702294, 0.0174541231, -0.0153723117, -0.00363972224, -0.00816869456, 0.00478402898, -0.0189982466, -0.00684515946, 0.00696579413, 0.00904415827, -0.000557504827, -0.0262225438, 0.0110570351, 0.0113327717, 0.0318751447, 0.00776887685, -0.00404643361, -0.0127183478, -0.00303999521, 0.011512, 0.0328953676, -0.0119324988, -0.0365350917, -0.000126127925, 0.0244302563, -0.000819885347, -0.0185157079, 0.0175230559, -0.000474353, 0.00716225663, -0.00724497717, 0.0128906826, -0.0108157657, 0.0221554302, -0.00297278445, -0.0329505168, 0.0122978492, 0.0159927197, 0.0068692863, 0.0155791137, -0.00535618234, 0.0104021607, -0.00827898923, 0.00821694825, 0.00562847173, 0.00169060961, 0.0092096, 0.00305033545, -0.0463788845, 0.0153033771, 0.00219038199, 0.000785418262, -0.00965077896, -0.0147932647, -0.00683481945, 0.0202804226, -0.00340189948, -0.015344738, 0.00824452192, 0.00765858218, 0.0134904096, 0.0132146729, -0.00986447465, -0.0162960291, -0.0034553234, 0.0053182682, -0.0178125799, 0.00307618571, -0.0295865294, -0.00570429955, -0.00238167425, 0.00250747916, 0.00122099579, 0.00585595472, 0.0272841305, -0.0108778058, -0.00769304903, 0.0139246946, 0.00294865761, -0.00119600724, 0.00947155, -0.00250058575, 0.00533205504, 0.00143555331, -0.00903037097, 0.00937504228, -0.0133318612, 0.0121944482, 0.00558366487, -0.0025626265, 0.0110915024, 0.000131944238, 0.00225931616, 0.0105676027, -0.0142417923, 0.00841685757, 0.00733459182, 0.00911309198, -0.000285214977, 0.039430324, 0.00763100851, -0.00943708234, 8.70293443e-05, 0.0206250921, -0.0126149459, 0.00554575119, -0.00912687927, -0.0029469342, 0.0180745292, -0.0126218395, 0.0124081438, 0.0158410631, 0.00851336587, 0.00659010326, -0.00976107363, 0.00426357612, 0.00553885754, 0.0310203601, 0.00128131325, -0.0039947331, -0.00934746861, 0.00296761445, 0.00654874276, -0.0101815714, 0.00399128627, 0.0161581598, -0.0111052888, 0.0207491741, 0.00930610765, 0.0123805702, -0.00262639043, 0.0283457153, -0.0208318941, 0.00120548566, -0.0103263333, -0.00832035, -0.00843753759, -0.00914066564, 0.0230791476, 0.0145726753, -0.00683826581, 0.0314615369, -0.0112845171, -3.3740027e-05, -7.66353696e-05, 0.0112224771, -0.00787227787, 0.0164890438, 0.00510457251, 0.00171473657, 0.00520108035, 0.00597314257, -0.00363282883, 0.0126838805, 0.0201563407, -0.0204734374, -0.0102367187, 0.00666248379, -0.00421876879, -0.0140349893, 0.00319682038, 0.0124770785, -0.0101608913, 0.0062247524, -0.00730701815, -0.000342731888, 0.0162270945, 0.0137316789, -0.00133129046, -0.00250403234, -0.00143555331, 0.0034139629, -0.0262639038, -0.00972660631, -0.0187914446, 0.00205596047, -0.0119738588, 0.0195221473, 0.00181986112, 0.0288144667, -0.0165028311, 0.000651858398, -0.0163373891, 0.0283457153, -0.0265810024, 0.00404988043, -0.0149587067, -0.00250403234, 0.00405332679, 0.0123598902, 0.0186673626, -0.00302103837, 0.00342774973, -0.0127941752]
26 Oct, 2021
jQWidgets jqxSlider height Property 26 Oct, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxSlider is a jQuery widget that can be used to create a slider that selects from a range of values. It customizes the widget in terms of appearance and offers numerous configuration options. The height property is used to set or return the height of the slider widget. It accepts Number/String type value and its default value is 35. Syntax: Set the height property. $('selector').jqxSlider({ height: Number/String }); &nbsp Return the height property. var height = $('selector').jqxSlider('height'); Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script><script type=”text/javascript” src=”jqwidgets/jqxribbon.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxslider.js”></script> The below example illustrates the jQWidgets jqxSlider height property. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="jqwidgets/jqxslider.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSlider height Property </h3> <div id='content'> <div id='jqxslider'></div> </div> </center> <script type="text/javascript"> $(document).ready(function() { $("#jqxslider").jqxSlider({ theme: 'energyblue', height: 15, value: 5 }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxslider/jquery-slider-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxslider-height-property?ref=asr3
PHP
jQWidgets jqxSlider height Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0171862412, 0.0120037561, -0.00683177589, 0.0193712898, 0.0708739832, 0.00417750329, 0.0453257337, 0.0359692462, -0.0138316322, 0.00662517687, -0.0139226764, -0.0132223405, 0.0125920381, -0.015631495, -0.0243856926, 0.0137335854, -0.0202677194, -0.00660766847, -0.0209680554, 0.0160657037, -0.00018088361, -0.000118728807, -0.0636465177, 0.0372018404, -0.0171442218, 0.0311509371, 0.016219778, 0.0272430629, -0.012465978, 0.00707339169, -0.0289939027, -0.00574975694, -0.00757063041, 0.00108902215, -0.0253241435, 0.0073325159, 0.00540309073, 0.0329157822, -0.0489394665, -0.0235172771, -0.0305066276, 0.0343724824, 0.00801884476, 0.0112193795, 0.0205058325, -0.0211081225, 0.0214022622, 0.00553265307, -0.00979069434, 0.00714342529, -0.0180686638, 0.0213882569, -0.00683177589, 0.0598366931, -0.00276807742, -0.0173263084, 0.0312069636, 0.061461471, -0.00490585249, 0.00799083151, 0.0251420569, -0.0446814261, -0.0211921614, -0.0224107467, -0.0188530404, 0.00349467574, 0.0034211406, 0.0416559763, -0.0249739755, 0.0321594216, 0.000328282418, 0.00256673084, 0.0259264316, 0.0181527045, 0.0193292685, 0.00483932067, -0.0352689102, -0.00549063273, -0.0165419318, 0.0249039419, -0.0301704668, 4.52756176e-05, -0.0457739495, -0.0246518217, -0.000961210928, 0.00142168172, 0.0069508329, -0.0307587497, 0.0351008326, 0.0192172155, -0.0248619225, 0.0200576186, 0.0219345186, -0.0190631412, -0.014693046, 0.0119967526, -0.0164859053, 0.0279994253, -0.0195393693, 0.00115555408, 0.0480990633, 0.0311509371, 0.0047482769, -0.0150292069, -0.00258248835, 0.0185588989, 0.0132013299, -0.00517548155, -0.00214477838, -0.0306466948, 0.0156735163, -0.0314590856, -0.0248058941, 0.00207124325, -0.0489954948, 0.0477348901, -0.0134954713, -0.0225087926, 0.0300023872, -0.015043213, 0.0118776951, 0.00539608765, -0.0137966154, 0.0196094029, -0.00238639442, 0.00121245638, 0.00233036745, -0.0253941771, 0.0581558868, -0.0440371148, -0.0094965538, 0.0208840147, 0.00140942587, -0.000242710128, 0.000806261611, 0.0517127961, 0.032075379, -0.00556767, -0.0226348545, -0.00965062808, -0.0429165773, -0.0266547818, 0.00560618844, 0.014566985, -0.00455568451, 0.0423563123, -0.00669871224, 0.0308147762, -0.049835898, 0.0232091285, -0.017284289, 0.00453467434, -0.00370827806, 0.0259544458, 0.0346246026, 0.012690085, -0.0440931432, 0.0437009558, -0.0338402279, 0.028909862, 0.00200296054, -0.0249459613, 0.0222706795, 0.0278733652, -0.0211361349, 0.00994476862, 0.0245397668, 0.0197074506, -0.0482671447, 0.0263186209, 0.0160797108, -0.0166679919, -0.0152112944, 0.0172982942, -0.0571474023, -0.00164403836, 0.00640457124, -0.0337561853, 0.0038728572, -0.0250860285, 0.0102949366, 0.00241966033, -0.0204778202, 0.007640664, 0.00867015775, -0.00203622645, 0.0193432756, 0.0111143291, -0.0125220045, -0.0267528277, -0.0277052857, 0.0368936919, 0.016934121, 0.0419080965, 0.00290989527, -0.0433367789, 0.0088592479, 0.00387635874, -0.0151972873, -0.0156174889, 0.0162477903, -0.0234472435, -0.021976538, 0.0197774842, -0.0018576408, 0.0132923741, 0.00881022494, -0.0442612246, 0.0521610118, 0.00264376774, 0.00802584831, -0.00335986121, 0.0313750431, -0.0106941285, -0.0213042162, 0.0171302147, 0.00133326428, 0.0120457765, -0.0184888653, 0.00118531834, 0.018923074, -0.00351043325, 0.00294666295, 0.0266827941, -0.0945173204, -0.0093704937, -0.00536807394, -0.018208731, -0.00200296054, 0.0250580162, -0.0390507244, -0.0107641611, -0.0198335107, 0.029386092, 0.0328317434, 0.0436169133, -0.0209680554, 0.0193712898, 0.0068247728, 0.0126830814, -0.00358396862, -0.0117446315, 0.0017105703, 0.0177605171, 0.00939150341, 0.00368726812, -0.0195673835, -0.0182367451, -0.0050949431, 0.0161077231, -0.0201696716, 0.0188390333, 0.0293580778, -0.00063292851, 0.0383223779, 0.0157575551, 0.0163178239, -0.014693046, -0.000113257433, -0.0179566108, 0.0356611, 0.00237764022, 0.0062399921, -0.00545561593, 0.0495277494, 0.0380982682, 0.055018384, -0.00267353212, 0.0140767498, -0.0538418181, 0.00603689486, -0.0413478278, 0.0458019637, 0.0237273779, -0.0585480742, 0.0216823965, -0.0198615231, -0.0107781682, 0.0316551775, 0.0188810546, 0.0329157822, -0.0111563494, 0.0423843227, 0.0779333711, 0.0289378762, -0.00272080465, 0.0236713514, -0.0167100132, 0.00507393293, -0.00329332915, -0.0328877717, -0.0118776951, 0.0259264316, 0.0157155357, 0.0231951233, 0.00268053543, -0.0116465846, 0.000941951701, 0.0258704051, 0.00366625795, -0.0261785537, 0.0113244299, -0.0230550561, -0.00325306, 0.00621548062, 0.0123609276, 0.0130052362, -0.00666369544, -0.0145949982, 0.00446464075, 0.052189026, 0.0198335107, -0.0172982942, -0.0372858793, -0.032439556, 0.000951581285, 0.0310668964, 0.0299183466, -0.000258248823, -0.00447514607, 0.0170741882, 0.00752861, -0.00459770486, 0.0577076711, 0.0591643713, -0.000123434191, -0.0116675952, -0.0518248491, -0.00606140634, 3.6603491e-05, -0.0231250897, 0.00189966091, 0.0177325029, -0.0335600935, -0.000383871578, -0.040899612, 0.0111983698, -0.0359132215, -0.0320473686, 0.040899612, -0.0185308866, -0.0394429117, -0.000639494159, -0.0121578295, 0.0275932308, -0.0656074584, 0.00209750584, 0.0172702819, 0.0505082197, 0.00912537612, 0.00124659773, 0.0307027232, 0.0258283857, 0.0209260341, 0.0194693357, -0.00258949166, -0.000525689567, -0.0289939027, -0.0132013299, -0.0421602167, 0.01586961, 0.0143078612, 0.0115065174, -0.0210801084, 0.0304225888, -0.0310388841, -0.00503191305, -0.0456338823, -0.017858563, -0.0121298162, -0.020449806, -0.0447934791, -0.00500389934, 0.0364454761, -0.0325796232, 0.0127601186, -0.0279013794, -0.0143708913, -0.0285176747, 0.0254922248, -0.0258984193, 0.0640387088, -0.00541709736, 0.026444681, -0.0080608651, -0.00761965383, -0.00821493939, -0.0220045522, 0.0140207233, 0.0209400412, -0.0433928072, 0.0222986918, 0.0077106976, -0.0403953716, 0.00476228353, 0.00583029585, 0.00976268109, -0.0377901196, 0.00711891381, -0.00510544796, 0.0140137197, -0.0392468199, 0.00226383563, -0.0101268562, 0.00856510736, -0.0231390949, -0.0118776951, 0.0166119654, 0.0192872491, -0.0358011685, 0.0160236843, -0.00278383493, -0.040787559, 0.0172702819, 0.0423002839, 0.0306186825, 0.0342324153, 0.032327503, 0.00555366324, -0.00326881744, 0.0292740371, -0.0124729807, -0.0351568572, -0.0108271921, -0.0395549685, -0.00424053334, -0.0407315306, 0.0225648209, 0.0518248491, -0.0200716238, -0.0415159091, 0.00590383075, -0.0117586385, -0.00663218042, 0.0207019262, 0.0160797108, 0.0432807542, 0.0110372929, -0.0051474683, -0.0455498435, -0.0260805059, -0.018684959, 0.0237553902, 0.0383223779, -0.017158227, -0.00532605406, -0.021976538, -0.0218784902, 0.00451366417, -0.00204322976, 0.00449265447, -0.0264166668, -0.000560706365, 0.00437009567, 0.0088942647, -0.00668120384, 0.0146090053, -0.00337736961, -0.00106451043, -0.0147070521, -0.024567781, 0.00885224435, -0.0286297277, 0.0213882569, 0.0266968012, -0.00420901831, -0.00428955676, 0.0179005843, -0.0126340585, 0.0147350654, -0.0364734903, 0.000858786807, 0.0246938411, 0.0434768461, 0.0258283857, 0.00857911352, 0.0118356757, -0.000240740439, 0.0147630796, -0.00118794467, 0.0442892388, 0.0212061685, 0.0425804183, 0.00239164685, 0.0206739139, 0.000321716769, 0.0207719598, -0.0312069636, 0.0074025495, 0.0143078612, 0.0255202372, 0.015043213, -0.0113804573, 0.011926719, 0.00981170498, 0.0248199012, 0.00117131171, -0.0408715978, 0.011576551, 0.00795581471, 0.00792780146, 0.0267668348, -0.0362493806, 0.0299463589, 0.00801184215, 0.00389386714, -0.0271310098, -0.0184328388, -0.0374259464, -0.0186009202, 0.0363894477, 0.00240915525, -0.0516567715, -0.0116185714, -0.0255482513, -0.0383784026, -0.0333920121, -0.0234052241, 0.0312910043, -0.0253661629, 0.013103283, 0.0160096772, 0.0126970885, 0.018096678, 0.0374259464, 0.029386092, -0.0318232588, -0.008698171, -0.0111353397, 0.0187409874, -0.01774651, -0.00641157432, 0.0141117666, -0.0167240202, -0.0191471819, 0.0160657037, -0.0352409, 0.00459420308, -0.00203797733, 0.0191331748, 0.00256498, 0.0190211218, -0.0342044, -0.00132888719, 0.0168360732, 0.0136775589, 0.0223547202, 5.18754632e-06, 0.00387635874, 0.0240215193, 0.0404233821, -0.0266547818, 0.0113034202, -0.00975567754, 0.0080748722, 0.0106941285, -0.00983971823, -0.0178165436, -0.0117166182, -0.00874019135, -0.0173403155, -0.00883823819, 0.00595985772, 0.0324675702, 0.00863514096, -0.0256603044, -0.00854409672, 0.0146790389, -0.0237693973, 0.0110442955, -0.00106013333, 0.00475528045, 0.00976268109, 0.00920241233, 0.00375730172, 0.0137195792, 0.0248479154, -0.0301704668, 0.00895029213, 0.0201696716, -0.00877520815, -0.0358852074, 0.0272850841, 0.0220325645, 0.00257373415, 0.00487783877, -0.00957359094, -0.0463622324, -0.031963326, -0.0161077231, -0.00888025854, 0.0442332104, -0.0139016658, 0.00747258309, -0.00456268806, 0.00775271747, -0.0327196904, 0.00712591689, 0.00667069852, -0.0240635388, 0.00460470794, 0.0177044887, 0.00639056414, 0.00784376077, -0.0165979583, -0.000649123744, 0.00337561872, 0.00408295775, -0.00846005697, -0.00801184215, 0.000202987954, -0.0167520326, 0.0501440465, -0.0213462356, -0.0165139195, -0.00593184447, -0.0138876596, 0.0223967396, 0.00371177983, 0.0156034818, -0.0126620717, 0.00231811148, 0.00358046684, -0.00799783505, 0.011226383, 0.00647810614, -0.0207019262, -0.00765467063, 0.00578127243, -0.0266407747, -0.000621110317, 0.0104560135, -0.016681999, -0.00298343063, 0.0236713514, 0.0116535882, 0.00828497298, 0.0304225888, -0.00913938228, 0.00825696, 0.0247498676, 0.0147910928, -0.0291059576, 0.0537297651, -0.00785776787, 0.0142098134, -0.00759164, 0.0408155732, 0.0184328388, 0.00508443825, -0.019637417, 0.0215563364, 0.0188250262, 0.00858611707, 0.00628901552, 0.0388266183, -0.00461171148, -0.0164018646, 0.0136425421, 0.01493116, -0.0181386974, -0.0310108699, 0.0419080965, 0.0149871865, 0.0246098, -0.00331609021, 0.0187549926, 0.0337281749, 0.0204217918, 0.0101758791, 0.00630652392, -0.00676524406, 0.0251840763, 0.0207159333, 0.0144689381, -0.00841803662, -0.0172422677, 0.0143989045, 0.0139226764, 0.0511805415, 0.00181912235, -0.000528753561, 0.0009594601, 0.0292180106, -0.012865169, -0.0267248154, -0.00406194758, 0.0148331122, 0.0281955209, 0.0273271035, 0.0174943879, 0.0145529788, 0.0270049497, 0.00696133822, 0.00303595583, 0.0115975616, 0.0367816389, 0.0250720233, -0.0189090669, -0.0193572827, -0.0068422812, -0.00189440837, 0.0127391089, 0.0289658904, -0.00918140262, 0.0248759277, 0.00771770068, 0.0286717489, -0.0169761404, 0.00498989271, 0.0182927717, 0.0474547558, 0.015155267, 0.0508443825, 0.0374539606, -0.00758463703, -0.0266267676, -0.0177605171, -0.0235592965, 0.0154634146, 0.0210520942, 0.0102038933, -0.0196794365, -0.0375099853, 0.00359622436, -0.0168780927, 0.0362493806, -0.0164718982, -0.0124449674, 0.00632403232, 0.00148646277, 0.0205198396, 0.0210520942, -0.0186149254, 0.0102669233, 0.0418800823, 0.00397090428, 0.00533655891, 0.00151272537, -0.00606140634, -0.0177325029, -0.0465863384, 0.0156034818, -0.0047307685, -0.00690180948, -0.00871217716, 0.00772470422, -0.0309268292, 0.00352093833, -0.0102599198, 0.000245336385, -0.0150992405, 0.0202677194, -0.0332519449, 0.0195393693, 0.0200856309, 0.00164228748, -0.0114084706, 0.0268228613, -0.0143989045, -0.0131383, 0.0343164541, -0.0502561, 0.00676874584, 0.0069508329, 0.027971413, -0.0288818497, -0.0170181599, 0.0107361479, -0.0421041884, 0.0267668348, 0.0148471193, 0.0187830068, -0.00490935426, -0.0140137197, 0.00064649753, -0.00958059449, 0.00934247952, 0.0144969514, 0.0076756808, -0.0162057709, -0.0140627436, 0.0245257597, 0.0117866518, -0.0119617358, -0.0138386358, 0.0299463589, 0.0287697949, 0.0157435499, 0.0273551177, 0.0373138934, 0.0148471193, 0.000747608487, 0.0161497444, -0.0081308987, -0.00871918071, -0.0484632403, 0.0156735163, 0.0376500525, -0.0136495456, 0.00465023, -0.00417400151, 0.0298903324, 0.0353529528, 0.00338962534, -0.0191892013, -0.0183347911, 0.0128371557, -0.00879621785, -0.00313750445, -0.0217804443, 0.00564470654, -0.0282655545, -0.0096576307, -0.00282235327, -0.00706638861, 0.0206178874, -0.0019364286, 0.0216683894, 0.0156735163, -0.0284756552, 0.0343164541, 0.00259299343, -0.0224247538, -0.0254922248, 0.0291899964, -0.00299743726, 0.00451366417, 0.0243016537, -0.00364524801, 0.00317602302, -0.00319002965, -0.0344845355, 0.012641062, -0.00787877757, 0.00811689254, 0.0197774842, 0.00602288824, -0.00676874584, -0.00968564488, -0.00808187574, 0.00551514467, -0.0203657653, 0.0300584137, 0.0101548694, 0.0196934436, -0.00768268388, -0.00444713235, 0.0119197154, 0.00563770346, 0.0287137683, 0.000603601919, 0.0278313458, 0.0286437348, -0.0150292069, 0.0198195037, -0.0138316322, 0.00480780564, 0.0263186209, -0.0068422812, -0.0207439475, 0.0152393077, 2.82322871e-05, -0.00198545214, 0.0449055322, 0.000664881314, -0.00152060413, -0.0398631133, -0.034680631, -0.0119967526, -0.00258949166, 0.012101803, 0.0388266183, -0.0221866388, 0.00626800582, -0.00115205243, -0.0616855808, 0.0254642107, -0.0170741882, -0.0164999124, 0.0430006199, -0.0161357373, -0.0282375403, 0.0148331122, -0.00789278466, 0.0519929305, -0.0284616482, 0.000560706365, 0.028433634, -0.00829897914, 0.0185869131, -0.0139787029, 0.0131523069, -0.0271730293, -0.0162337851, 0.0377621092, 0.00283811102, 0.0153093413, 0.00895029213, 0.00121245638, 0.0179566108, -0.0308988169, 0.0074375663, -0.0174523685, 0.0172282606, -0.0157575551, 0.0146790389, 0.0291619841, 0.00114329823, 0.00349292485, 0.0281955209, -0.00212902087, -0.0054416093, -0.0322434604, 0.00300093903, -0.018572906, -0.00722046243, 0.0170741882, 0.00361023122, -0.00045521828, -0.0114785042, -0.00251420564, 0.00818692613, 0.0286577418, -0.00588632235, -0.0109812655, -0.0260664988, -0.00292915455, -0.0156595092, 0.00353669585, 0.0179005843, -0.00137615984, 0.0372018404, -0.00960860774, -0.00507043116, -0.00836201, 0.00134727103, 0.00112228817, -0.0332799591, 0.0157575551, 0.0196514223, 0.031627167, 0.00398140913, 0.0112614, 0.0138246287, -0.0201136451, -0.0540379137, -0.00192417263, -0.0151972873, -0.0176624693, 0.00780874444, 0.0321594216, 0.0238394309, 0.00492686266, 0.0384624451, -0.0250860285, -0.00848807, 0.038434431, -0.0206739139, -0.0107641611, 0.0115695475, -0.0321033932, 0.00550113805, 0.0137686022, -0.0209540483, -1.72074706e-05, 0.0167800467, 0.00352794165, 0.0112333866, -0.0293020513, -0.00764766708, 0.000558080093, 0.0558027588, -0.00458719954, 0.0179846231, 0.00209575496, 0.0135655049, -0.0418800823, 0.0374259464, -0.0188950598, 0.0226208474, 0.00124397152, 0.0278453529, 0.00316726882, 0.0358852074, -0.0167800467, -0.00182612566, -0.012753115, -0.0333079733, 0.0375099853, 0.0237553902, -0.0254782178, 0.00656564813, -0.0258143786, -0.000676261785, 0.0131242936, 0.0066917087, -0.0189650934, -0.00848807, -0.0354089774, -0.037734095, -0.0168640874, 0.0107081346, 0.00442962395, 0.0407315306, 0.0206318926, -0.0234052241, 0.00340013043, -0.0147210592, 0.0154494084, -0.0265847482, 0.0128161451, -0.00984672178, 0.0113244299, 0.0107151382, 0.011926719, 0.019035127, 0.000194890323, -0.00615245, 0.0110162823, 0.0346246026, 0.00581278745, 0.013803619, -0.00819392875, 0.00459770486, 0.0165139195, -0.0159256365, -0.0161917638, 0.0227609146, 0.0177044887, 0.0048008021, 0.0100918394, -0.00410396792, -0.0266687889, -0.0132433502, -0.0235312842, -0.00505642453, -0.0172702819, -0.0103579666, -0.0233071763, 0.0158275887, 0.000543635688, -9.60773177e-05, -0.00634504249, -0.00475878175, 0.0158275887, 0.000506868062, 0.00798382796, -0.00636605266, -0.00499689626, -0.00808887836, 0.0138316322, 0.0147350654, -0.0034474032, -0.00832699332, -0.00167292717, -0.0152393077, -0.0103299534, -0.00642558094, 0.00573575031, 0.0009594601, -0.0125500178, 0.0232231356, 0.00314100622, -0.0146510256, 0.0206739139, -0.00412147632, -0.00271730288, -0.00307447417, -6.70790396e-05, -0.00486733392, 0.0100218058, -0.00842504, 0.00200821296, 0.0311789513, -0.00195743865, 0.0116745979, 0.0122418702, -0.00979069434, -0.0263046138, 0.0176064428, -0.00819392875, -0.00946854055, 0.0149031458, -0.00357521442, 0.00040860218, 0.0160657037, -0.00115205243, -0.00135164813, -0.00431056693, -0.00262976112, -0.0136705553, 0.000450403488, 0.0167100132, -0.0076756808, -0.0238674451, -0.00174033456, 0.0827516839, 0.00451716594, 0.0131453034, -0.0235592965, -0.0273130964, -0.0473707132, 0.00351043325, 0.0250019897, 0.0249879826, -0.00167292717, 0.00585480733, 0.0313190185, 0.0225087926, -0.0209680554, -0.0194973499, -0.00660766847, -0.0104980338, -0.00659716362, 0.0317112058, -0.023153102, -0.0143708913, 0.015981663, -0.00834099948, 0.00101110979, 0.0363054089, 0.00466423668, -0.0331118777, -0.00973466784, -0.024679834, 0.0095875971, 0.00215703435, 0.0201836787, 0.0362213701, -0.00729049603, -0.0162898116, 0.0214022622, -0.0177605171, 0.00499339448, -0.0236713514, -0.00282760593, -0.00775972102, -0.00213952595, 0.0229710154, -0.00332659506, -0.00265602372, -0.00414598826, -0.0272990912, -0.00236888602, -0.0126200514, 0.0095665874, -0.0315711387, -0.00668470562, -0.0253941771, -0.0039498941, -0.0128441593, 0.0109042283, 0.00462571811, -0.0273691248, 0.023741385, -0.0651592463, -0.00574275386, 0.00227784226, -0.00717844209, -0.00340013043, -0.0211221278, 0.0176624693, -0.00716093369, 0.02350327, -0.0259684529, 0.00730450265, 0.0339242667, 0.00335285766, -0.00785076432, -0.00351218414, -0.000452154316, -0.00766167371, -0.00190491346, -0.0126760788, 0.0164859053, -0.0323835276, -0.034792684, -0.0189791, -0.00283636013, 0.0173123013, -0.0189791, 0.00982571114, -0.0215003099, 0.00107238919, -0.0054941345, -0.00158713607, -0.00729749911, -0.0213322286, -0.01962341, 0.0107011311, -0.00452416949, -0.000585655856, 0.0212201755, -0.00430356385, -0.0118917022, -0.0136145288, 0.0201416574, 0.0225368068, 0.00603339309, 0.0164999124, -0.0104490109, -0.0109042283, 0.035128843, 0.00779473782, -0.0133974245, 0.0140557401, -0.00902032573, 0.0050949431, -0.00759164, 0.0332799591, -0.000649999187, 0.0086071277, -0.0235312842, 0.00575676048, 0.0114504909, 0.00309723523, -0.0253661629, -0.00950355735, 0.000698147283, -0.00951056089, -0.0073325159, -0.0195673835, -0.00399541575, -0.000353450741, 0.00766167371, -0.0185448918, -0.0194833428, 0.0117866518, -0.0105260471, 0.0214582887, -0.0231250897, 0.0142658409, -0.0253241435, 0.0159396436, 0.0114224777, 0.0234332364, -0.0138596455, 0.0158976223, 0.0199735779, -0.010224903, 0.0195673835, 0.037734095, -0.000175740526, 0.00995177217, 0.015519442, 0.00403393432, -0.0237693973, -0.00542760268, 0.0407595448, 0.00178848265, 0.00504942145, -0.0270609763, 0.00093494833, -0.00634154072, -0.0272430629, -0.0196934436, 0.0235733036, 0.0320473686, -0.00607891474, 0.00101286068, 0.00388686382, 0.00188040163, 0.0105050374, -0.0175784286, 0.00712941866, 0.0112543963, 0.0116115678, 0.00706288684, 0.00919541, -0.0116745979, 0.0197914895, 0.00489184586, -0.013516481, 0.00741655612, 0.00906934869, 0.0218084566, -0.00590032944, 0.0145389717, 0.000281666318, 0.0124939913, -0.0128721725, -0.0270609763, 0.0093845, -0.0139997127, 0.0204357989, 0.00496888254, -0.01962341, 0.025268117, 0.0366415717, -0.00320053473, 0.0314590856, 0.00789978821, 0.00292740366, -0.0338962525, -0.00634154072, 0.0253381506, -0.0195393693, 0.0183067787, 0.0352128856, -0.0040024193, -0.0134674581, 0.00904833898, -0.0085511, -0.00652012648, -0.00642558094, -0.0148611264, 0.0104490109, -0.0281675067, -0.00730450265, 0.00343689811, -0.00728349248, 0.0186429396, 0.0130682662, -0.0289658904, 0.00812389515, 0.00525251869, -0.00352969253, -0.0100848358, -0.0298903324, -0.000582591863, 0.000569022843, 0.00417750329, -0.0388266183, 0.0111423433, -0.00119144632, 0.0389947, -0.0161637515, 0.0312349778, 0.0331398919, 0.00452416949, 0.00444713235, 0.00749359326, 0.00153286, -0.0183487982, 0.00251595653, 0.0101128491, -0.0315151103, 0.0141537869, -0.00978369173, 0.0558027588, 0.0185448918, -0.000132297821, 0.00594234932, -0.0297222529, -0.0186989661, 0.00597386435, 0.00183312898, 0.0203237459, -0.00373629155, -0.0306186825, 0.0121438233, 0.0143078612, -0.0258003715, -0.00310248765, -0.0123189073, -0.0331959166, 0.00894328859, -0.00538208056, -0.0205058325, -0.00371177983, -0.0247498676, -0.0187549926, 0.00271029957, 0.00747258309, 0.00338962534, -0.00540659251, 0.00585480733, 0.00606140634, 0.00590733252, 0.00302545074, 0.0275792256, -0.0141397798, 0.0201696716, 0.013754596, 7.62572699e-06, -0.0110653061, -0.0194413215, 0.00981870852, 0.00444012927, 0.00778073119, -0.0253381506, 0.03997517, 0.00253696647, 0.0171722341, -0.00483932067, 0.00792780146, 0.0133203873, 0.020211691, -0.0182227381, -0.00293965964, 0.0148611264, 0.0300304, 0.0178865772, -0.0255202372, 0.0128301522, -0.0407315306, 0.0126830814, -0.00932847336, 0.00431757048, -0.00508793956, -0.0130332494, -0.0172002483, 0.00237939088, -0.000478854607, 0.0162057709, 0.000502053241, -0.00261225272, -0.0171302147, -0.0321874358, 0.0220745858, 0.000820268353, -0.00188040163, -0.00136828108, -0.00876120105, -0.0101338597, -0.0167380255, -0.0153373545, -0.00726248231, -0.0257723574, -0.0141187701, 0.0125990417, -0.0301984809, 0.00914638583, -0.0227048881, 0.00638005929, -0.00425454, -0.00649561454, -0.0051474683, -0.0189510882, 0.00759164, -0.0214022622, 0.00520349527, 0.0062224837, -0.0400592089, -0.00359622436, -0.00514396653, -0.0127671221, 0.00878921431, -0.0147070521, 0.0249879826, 0.00339662866, 0.00774571439, 0.0135725085, -0.0149031458, -0.0307587497, -0.00333885103, -0.00213077175, -0.00739554642, 0.0258003715, 0.00648510968, -0.0251840763, 0.0388266183, -0.00264902017, 0.00888726115, -0.00346666225, -0.0142588373, -0.0110162823, 0.0145949982, 0.0208700076, 0.015981663, 0.00371177983, -0.0381823108, -0.0184188318, -0.0280414466, 0.00188740506, 0.0162337851, -0.00979069434, 0.0130262459, 0.0162617974, -0.0130122397, 0.00471676188, 0.0164298788, 0.0162057709, 0.00446814252, -0.00407945598, -0.00074629538, -0.0138246287, -0.00135952688, -0.0110092787, -0.00862813741, 0.0364734903, 0.0119057093, 3.53997857e-05, -0.00595985772, 0.00208174833, 0.00957359094, 0.00997978542, 0.0136845624, 0.00238639442, -0.00697884662, -0.00515447184, 0.0259124245, -0.00917439908, 0.0254642107, -0.0228449553, -0.00427555, 0.0230130348, -0.00801884476, -0.0139156729, 0.0100358119, 0.0390507244, 0.00538558234, 0.00486733392, -0.0113524441, -0.00891527534, -0.0218224637, -0.00251770718, 0.0182647575, -0.0173263084, 0.0132433502, 0.00930746272, -0.000330470968, -0.00273656216, 0.0355490446, 0.020099638, -0.0109392451, -0.0413758419, -0.00775972102, 0.00160989701, -0.0268928949, -0.00634504249, -0.0295821857, -0.00993776508, 0.0147070521, -0.0106731178, 0.0281675067, 0.0116045643, 0.000483669428, 0.00155036838, 0.00761965383, 0.0185869131, -0.0119057093, -0.0221726317, -0.00631352747, 0.0185588989, 0.0347086452, -0.0386865512, 0.0127040921, 0.0119827455, 0.00369427144, 0.00106100878, -0.00170444231, 0.0143848974, 0.00675123744, 0.00232336414, 0.00923042651, 0.016681999, -0.0138946623, -0.0104700206, 0.0105610639, -0.00853709411, 0.00533305714, -0.0212201755, -0.014041733, 0.0148471193, 0.00247918884, 0.0303945746, -0.00438760407, 0.000532255217, 0.0167100132, 0.00717844209, 0.00236888602, 0.00250194967, 0.00505292276, -0.0107851718, 0.00930746272, 0.0231110826, -0.0110512991, 0.00643608626, 0.00795581471, 0.00729049603, -0.0105120409, -0.00996577833, 0.00282410416, -0.0223967396, -0.0131943272, -0.00360672944, 0.0183207858, 0.00988874212, 0.0287697949, 0.0112614, 0.0120877959, 0.0147490725, 0.0112754069, 0.0225928333, -0.0135234846, 0.0178725701, 0.00789278466, 0.00065744028, 2.40603658e-05, 0.00707339169, 0.00732551282, 0.00820093229, 0.0193993021, -0.0239094645, 0.00245467713, 0.00688780285, -0.000958584656, 0.0110933194, -0.0209680554, 0.0095315706, 0.03173922, 0.00862113386, -0.0218224637, 0.00252821227, 0.0225508139, 0.00770369405, -0.00688079931, -0.00417049974, 0.019035127, 0.0182647575, -0.0241335724, 0.00534356246, -0.0171862412, 8.26724572e-05, 0.0171722341, 0.0182227381, 0.00428605545, 0.0101758791, -0.0291899964, -0.00323380064, 0.0104069905, 0.00497938786, -0.0051824851, 0.0223407131, 0.00214302773, 0.00894328859, 0.0202256981, -0.00918840617, 0.00355595513, -0.0120597826, -0.0177184958, 0.015519442, -0.0244697332, -0.0093845, 0.00454868097, -0.0253521577, -0.0111143291, -0.0177184958, 0.000700335833, -0.00289588864, -0.00331083755, 0.00557117164, -0.0269209091, -0.00424753688, -0.02350327, 0.00368026481, 0.00392538216, -0.0177605171, 0.0216123629, 0.000117306248, -0.00857211091, 0.00716093369, 0.00707339169, -0.00654463843, 0.0170601811, 0.00385184702, 0.0225648209, -0.0035769653, 0.00646760128, 0.00613844348, 0.00603339309, 0.00230060308, 0.00283986167, -0.00817992259, -0.015281328, -0.0105890781, -0.0187409874, 0.0156455021, 0.0127040921, -0.00341763883, 0.0210240819, 0.000897305261, -0.00508443825, -0.0134254377, -0.00666019367, 0.0175924357, -0.00761265028, -0.00209575496, 0.012928199, -0.0151272537, 0.0271730293, 0.00192942517, 0.016331831, -0.0222706795, -0.0192312226, 0.00142605882, 0.000767743157, -0.0256322902, -0.00620147353, -0.0040549445, 0.0118426783, -0.0215843506, 0.012578031, 0.00429305853, 0.00629952084, -0.0166679919, -0.00185238826, 0.0066917087, -0.000286043418, -0.0148751326, -0.00185939157, -0.000452154316, 0.00971365813, -0.0102389101, -0.00892227795, -0.00822194293, -0.0228589606, 0.00499689626, -0.00777372764, 0.0121438233, 0.00148821366, 0.00762665691, 0.0127040921, 0.000710403139, 0.0118496818, 0.00870517455, 0.026556734, -0.0142868506, -0.00655164151, 0.0251980834, 0.0177044887, 0.0418800823, -0.0131172901, -0.0278593581, 0.00493736751, 0.00766167371, 0.0247078482, -0.00575676048, -0.00174996408, -0.00313050114, 0.0191751942, 0.00517198024, 0.0138176261, -0.0080398554, 0.00262801023, 0.00279959245, -0.00338787446, -0.0381262824, -0.00336336275, -0.00354720093, 0.0141537869, 0.00258248835, -0.00690180948, -0.00228484557, 0.0159676559, -0.0105190445, 0.0295261592, -0.00194168102, -0.00149083987, 0.0116745979, -0.0129211955, 0.0191751942, 0.0136355385, -0.0105260471, -0.00348241976, 0.00195393688, 0.017158227, -0.00532605406, 0.0253941771, 0.0140977604, -0.0119827455, 0.00869116746, 0.0185869131, -0.00110828143, -0.0211921614, 0.000673197792, 0.0254361965, -0.0127251018, 0.00510544796, 0.0232791621, 0.00604389794, 0.0170181599, 0.00541709736, -0.0144269178, -0.00471326, -0.0135234846, -0.000868854113, -0.0196794365, -0.00542059913, 0.00965062808, -0.0275231972, 0.00299393572, -0.024567781, -0.00492686266, -0.0245957933, -0.00105925789, 0.0184888653, -0.0153513616, -0.019161189, 0.0189791, 0.00649911631, -0.0159536507, 0.0094405273, -0.00146545272, -0.00323555153, 0.0263886545, -0.0158836171, -0.0268788897, -0.0235733036, 0.00866315421, -0.000946328801, 0.0188670475, -0.0212762021, -0.0192592349, -0.00471326, 0.000276632636, -0.00962961745, -0.00751460344, -0.022088591, -0.0343164541, 0.00302194897, 0.0102038933, 0.0283355881, -0.000762052892, 0.0137756057, -0.00733951945, 0.00337386783, -0.00810988899, -0.0043665939, -0.0138316322, -0.00542059913, 0.00262450846, -0.0212481897, 0.0106240949, -0.0226068404, -0.0179145895, 0.0234332364, -0.0125640249, -0.00967163779, -1.05050376e-05, 0.00271029957, -0.00355595513, 0.0300304, 0.0113454405, -0.0140277268, 0.038070254, 0.0126690753, -0.00995877571, -0.0126270549, 0.00244417205, 0.0079698218, 0.0107291443, 0.0134114306, -0.00384834525, 0.0400311947, -0.00123609276, 0.0108692115, 0.0227329, -0.0148611264, 0.0102389101, -0.00297467643, 0.0122418702, 0.00202046894, -0.00678975601, 0.0100148022, 0.0240355246, -0.0133694112, -0.00155299471, -0.0208840147, -0.00214127684, 0.00240565347, 0.0047832937, -0.00976268109, -0.0185588989, 0.0175504163, -0.00738854287, -0.00110740599, -0.00346316071, -0.00175521662, 0.00834800303, 0.00988874212, -0.00865615066, 0.0149171529, 0.0143708913, -0.0107151382, -0.0142098134, 0.00131750677, 0.00295366626, 0.0199175514, 0.00979069434, -0.0106170913, 0.0239794981, -0.0147490725, 0.0171722341, 0.00642207963, -0.0133974245, 0.010638101, 0.0144269178, -0.0155054349, 0.0204357989, 0.0058232923, 0.0242456254, -0.00190316257, 0.00578827551, 0.0215703435, 0.00449615577, -0.0144689381, -0.0252541099, -0.00455918629, -0.00242141122, 0.00895029213, 0.00713992352, 0.00382383354, 0.00572174368, 0.00440511247, 0.0153793748, 0.00414948957, 0.000511245162, -0.00143743923, 0.00733951945, -0.0174103491, 0.0172002483, 0.000298080442, -0.00591783784, -0.00632403232, 0.040899612, -0.0129141929, 0.00178848265, -0.00794881117, -0.00494787237, 0.000201893679, -0.000503804069, -0.00297817797, -0.0208139811, -0.0193572827, 1.28714064e-05, -0.0293020513, -0.0144689381, -0.0193292685, 0.00251245475, 0.0241195653, -0.00732551282, 0.00215878524, 0.00275932322, 0.00206248905, 0.0161357373, 0.0343724824, 0.0123469206, 0.0141187701, -0.00215528347, -0.0119407261, -0.00946854055, -0.0202397052, -0.0155754685, -0.00877520815, 0.0255202372, -0.00347541645, -0.00258073746, -0.000619797211, 0.00834099948, 0.0217104107, 0.00498639094, -0.0186429396, -0.0109392451, 0.00333885103, 0.0116185714, 0.0234892629, 0.0116325784, -0.00995877571, 0.00144006556, -0.00237588934, -0.0217804443, -0.00236713514, -0.015043213, -0.0127040921, 0.0258844122, 0.00365925464, 0.00612443686, 0.000388248678, 0.0374539606, -0.00841103308, -0.0173403155, 0.00414248649, 0.00135514978, -0.000527878117, 0.000139848315, 0.00445763767, -0.00988874212, 0.00785076432, -0.0077106976, -0.021514317, -0.00863514096, 0.027971413, 0.0107291443, 0.0039498941, -0.00147158059, -0.01493116, 0.0172002483, -0.00908335578, 0.00232336414, 0.0243997, -0.0215703435, -0.00738854287, -0.00271730288, 0.0195393693, -0.00306221843, -0.00859312061, -0.00421602186, -0.0250440091, -0.00402342947, -0.00713992352, 0.00859312061, 0.00329157826, 0.0144969514, 0.0119127119, -0.013404428, 0.0279293917, 0.0171442218, 6.16555417e-06, -0.00500740111, -0.0142728444, 0.0334200263, -0.0215563364, 0.00793480501, -0.01586961, 0.00152147957, 0.0119827455, -0.0214302763, -0.0279854201, -0.00588282105, 0.015281328, -0.0183067787, 0.00544511108, 0.0229149889, -0.00950355735, 0.025856398, 0.00548713095, 0.0246098, -0.00740955304, 0.0156875215, -0.0272850841, -0.00742355967, -0.0276492573, 0.00508793956, -0.0118706925, -0.0108832186, -0.012101803, -0.0240915529, -0.0193012562, 0.0129071893, 0.00732551282, -0.00354019762, 0.00785776787, 0.0110793123, 0.000924443302, 0.0190071147, 0.00918140262, -0.00759864366, 0.00493736751, 0.00147595769, -0.0189650934, 0.0198755302, -0.00430356385, 0.00560618844, -0.00649211323, -0.0134394448, 0.0421602167, -0.016569946, -0.015981663, 0.0136705553, -0.0124799842, -0.00539258588, -0.0155474553, -0.0251280498, -0.000498551584, -0.00489184586, 0.0139086694, 0.00115380331, -0.0119827455, 0.0104350038, -0.0202397052, 0.00370127475, 0.0262205731, 0.0171162076, -0.0208279882, 0.00768968742, 0.0141888037, -0.000232423947, -0.00586181087, 0.0252401028, -0.00121158094, -0.00124484696, -0.0214863028, 0.0298903324, -0.00670571532, 0.00476928707, 0.0120317694, -0.0044016107, -0.0203237459, -0.00752861, -0.00951756351, 0.0286297277, -0.00250720233, 0.0261505395, -0.0101058455, 0.00545561593, 0.019161189, 0.0108271921, 0.00910436548, 0.0186709538, -0.00701386342, -0.0100358119, -0.00694032805, -0.00595635595, -0.0161637515, -0.00980470143, 0.00298343063, -3.98042448e-06, -0.0036732615, -0.0120037561, 0.0116956085, -0.0107291443, 0.0172562748, 0.0252961293, 0.00452416949, 0.00874719396, 0.000119713652, 0.00983271468, 0.0263186209, 0.0062049753, -0.00581628922, 0.00524201384, -0.017508395, 0.00158976228, -0.00258073746, 0.00626100227, -0.0178445559, -0.0076966905, 0.00597036304, 0.00397090428, -0.00815891195, 0.0123189073, -0.0116535882, 0.0163178239, 0.0147910928, -0.00911136903, -0.00745157292, -0.0270189568, 0.0315711387, -0.0158415958, 0.0102389101, 0.0112123769, -0.0163458381, 0.0170881934, 0.00417400151, 0.00370477652, 0.00351218414, 0.000918315374, -0.0101548694, -0.00295191538, 0.0138176261, -0.0237553902, -0.0154634146, 0.022690881, 0.0165979583, -0.00565871364, -0.000828147109, -0.032663662, 0.0160516966, 0.00931446627, -0.0096576307, 0.00983271468, -0.0247778818, -0.0104560135, 0.00103036908, 0.00203972799, 0.0211921614, -0.0335320793, 0.00453467434, 0.00747958664, 0.0262906067, -0.00558868, 0.00199770788, 0.0116255749, 0.0135514978, 0.0165279247, 0.00163966126, 0.00906234514, -0.0301144402, -0.00236363336, -0.00581628922, 0.00516147492, -0.00110565522, 0.022438759, 0.015393381, -0.0135585014, 0.00212201755, 0.0138176261, -0.00291339704, 0.0111213326, 0.00527352886, -0.00681076571, 0.0104980338, 0.00673723081, 0.00698935147, -0.0192312226, -0.00299043395, 0.00595635595, 0.00900631864, 0.0185448918, -0.00018099304, -0.0304225888, 0.00609642314, 0.0227188934, 0.00467824331, 0.0133133838, 0.0139226764, -0.0138316322, 0.0151412608, 0.00481130695, 0.0134394448, 0.00225333055, 0.0115905581, 0.00121333182, 0.00493386574, 0.0201136451, -0.0147490725, -0.00989574473, -0.0194273163, 0.0321874358, 0.0273411106, -0.0184188318, -0.00151797791, 0.0134394448, 0.0222006459, 0.0054766261, 0.0134184342, 0.0146510256, 0.00251770718, 0.00510894973, -0.0176484622, 0.00421602186, 0.00235137763, -0.00536457216, -0.017046174, -0.0068247728, 0.00954557769, 0.0120037561, -0.00553965615, 0.000596598606, 0.00275056902, 0.000277289219, 0.0208139811, -0.0223407131, -0.0185308866, -0.0115625449, -0.0201276522, 0.0148611264, -0.00967163779, -0.00435608858, -0.00933547691, 0.00322854822, -0.00239865016, -0.00303070317, 0.000395033188, 0.0200576186, -0.00625399873, -0.0167520326, -0.00107326463, 0.0121858437, -0.00646409951, 0.0263046138, -0.0152533138, -0.0194273163, -2.22548115e-05, 0.0121088065, 0.0108271921, 0.015981663, 0.0401152372, -0.000523501, -0.022676874, -0.0143288709, -0.00881722756, -0.0179706179, 0.00738154, -0.00168168137, 0.0109672593, -0.000639494159, 0.019637417, -0.00523501029, 0.0138106225, 0.00260174763, -0.00734652299, 0.00137003197, -0.0127951354, 0.00370127475, 0.0222986918, 0.00468174508, 0.00770369405, -0.00162653, 0.00497938786, -0.00012321533, -0.0253661629, 0.0058232923, -0.0156455021, -0.00315851462, -0.00930046, -0.0105120409, 0.0203517582, -0.0214162692, 0.00782975461, -0.0120527791, 0.000287575385, 0.011688605, -0.00780874444, -0.0185028724, -0.00100848358, 0.00158888695, 0.0137615986, -0.00243541785, -0.0270469692, 0.00300444057, -0.0175224021, 0.0158275887, 0.00411797455, -0.0112894131, -0.00496888254, 0.0130752698, -0.000730975531, -0.0171302147, -0.00505292276, 0.000764679164, -0.00309723523, 0.0193292685, 0.00712591689, -0.00941951666, -0.000343383406, -0.00927944947, -0.00417750329, -0.00392888393, 0.014454931, 0.000621548039, 0.00569022866, 0.0164718982, -0.0345965885, -0.000978719327, 0.0124799842, 0.00725547923, 0.00583379762, 0.0100988429, -0.0132853705, -0.00117656414, -0.00235312828, -0.00759864366, 0.0150712272, -0.00706989, -0.000701211218, 0.0133834174, 0.00745857647, 0.0224667732, 0.00546261948, -0.021262195, -0.0118566854, 0.00441561732, -0.0150572201, -0.0150011936, -0.00537157571, 0.0214302763, -0.00241966033, 0.0208980218, -0.0177745223, 0.0163598452, -0.0135655049, -0.0079698218, -0.000277289219, -0.000707776868, -0.0183908194, -0.00612793863, 0.0144269178, 0.00194168102, -0.00290114107, 0.0109532522, -0.000969965127, 0.0160236843, -0.0372018404, 0.00712591689, -0.00625399873, 0.00314450776, -0.0251000356, -0.0100638261, -0.0124379639, -0.0203097388, 0.0129632158, 0.0257303379, 0.00827096589, -0.00979769789, 0.000130437547, 0.0217524301, -0.0194133092, 0.00819392875, -0.0195253622, 0.00753561361, -0.0158275887, -0.00799783505, -0.000125951017, -0.00541709736, -0.00645359466, 0.0196794365, -0.00232511503, -0.0128091425, 0.0157575551, -0.0149171529, 0.00772470422, -0.0228589606, -0.00607191166, 0.00527002709, 0.0170601811, -0.00432107225, 0.0177885294, -0.0124869877, -0.0137055721, 0.0176204499, 0.0242036059, 0.0096226139, -0.0420761779, -0.0100218058, 0.011513521, 0.00396039896, 0.00122733857, 0.00983271468, -0.0036557531, 0.0145809921, 0.0143708913, -0.00097696844, 0.0193012562, -0.00304996246, -0.0161357373, -0.00461521326, -0.0246518217, -0.00389036559, 0.00245817867, 0.0384064168, 0.00247918884, 0.0127741257, -0.00393238571, -0.0111283362, -0.0251000356, 0.0201136451, -0.011751635, -0.00904833898, 0.00921641942, 0.0202957317, -0.0275231972, -0.00216403767, 0.024917949, 8.7924971e-05, 0.00151009916, 0.0089292815, 0.00884524174, -0.00139454368, 0.0126970885, -0.010399987, -0.0219625309, 0.0165279247, -0.0197634771, -0.00154336507, 0.000345353095, -0.0100428155, 0.000300706684, -0.00341063552, -0.0149731794, 0.0338962525, 0.012339917, 0.00744457, 0.0315711387, 0.00743056322, -0.00724847568, 0.00934247952, 0.00615945365, -0.00281535, 0.0236853566, 0.023391217, -0.00398140913, -0.00597386435, 0.0100428155, -0.00515097, -0.0107081346, 0.0194973499, 0.00451716594, 0.00283811102, -0.00788578112, -0.0140977604, 0.0196094029, -0.00613144, -0.0244977474, 0.0258283857, -0.0544301, 0.0240355246, -0.0134814642, 0.0167100132, 0.0037538, 0.0166960061, 0.0133904209, -0.00413198117, 0.00746558, 0.00201871805, -0.0145809921, 0.0150292069, 0.0102389101, 0.0151972873, -0.0158135835, 0.00427204836, 0.02538017, -0.00599487452, -0.0102319065, -0.00759864366, 0.0198615231, 0.000351043331, 0.00987473503, -0.00797682535, 0.00301144412, -0.00184363406, 0.00671271887, 0.00425804174, -0.022788927, -0.0189090669, -0.00218329695, 0.0163458381, 0.0197074506, -0.00490585249, 0.0292740371, 0.00937749632, 0.016681999, -0.00825696, -0.0179566108, -0.0166539866, -0.0115905581, -0.00389386714, 0.00453117257, -0.0043841023, -0.0151972873, 0.00979769789, -0.0174663756, -0.00975567754, 0.00603339309, -0.0080048386, -0.00911136903, -0.0059283427, -0.00918140262, 0.00812389515, 0.0129562123, 0.00459770486, -0.0237974115, 0.00123346644, 0.0256883185, 0.00670571532, -0.00427905191, -0.0223126989, -0.00654463843, 0.000560706365, 0.0185588989, -0.0154073881, -0.00717844209, -0.00583029585, -0.0086071277, 0.0180826709, -0.0110372929, -0.0157155357, 0.00253346493, -0.00948254671, -0.0134114306, 0.00334760523, -0.0105680674, 0.0125710284, 0.00602288824, 0.00227784226, -0.0072064558, -0.00222356617, -0.00081501581, -0.00123521732, 0.00965062808, -0.0087682046, -0.0119407261, 0.0313190185, 0.020337753, -0.0101058455, -0.00176747248, 0.0125920381, -0.0220045522, -0.00910436548, 0.000871042663, -0.0065866583, -0.00146895438, 0.00303420494, 0.00152848288, 0.0107571585, 0.0172702819, 0.007640664, 0.0362773947, 0.00134727103, 0.0340363197, -0.00486733392, 0.0109742619, -0.00991675537, 0.00871918071, 0.0170881934, 0.0181527045, 0.0267808419, 0.013404428, 0.00664968882, 0.0285036676, -0.0102108959, 0.00418800814, 0.0120177623, -0.0123469206, 0.000298737, -0.00221131044, 0.000899931532, -0.015043213, -0.0271450169, -0.0174663756, 0.00392538216, -0.00986072794, -0.0112053733, -0.00346666225, -0.032327503, -0.0193432756, 0.010750155, -0.00651662471, 0.00881722756, 0.0215983558, -0.00656214682, -0.00592484092, 0.0109532522, -0.00932147, -0.0168921, 0.00178147922, -0.00913938228, 0.0166399796, 0.0112614, -0.0375940278, -0.027971413, 0.00235838094, 0.0105820745, 0.0116465846, -0.0165279247, 0.00578127243, 0.00156875222, 0.00740955304, -0.00295191538, -0.0197914895, 0.00993076153, 0.0157855693, 0.00495137414, 0.0107361479, 0.0104560135, 0.00641857786, 0.00265252194, 0.0186009202, -0.0080048386, 0.00815190934, -0.00242141122, -0.00442962395, 0.0116045643, 0.00320578716, 0.00982571114, 0.00993076153, 0.00577777065, -0.00372578646, -0.0140767498, -0.0142028108, -0.0249739755, 0.00959460065, -0.0271310098, 0.0166960061, 0.0122698834, 0.00125185028, -0.00702436827, -0.0190071147, -0.00446113897, 0.00624699565, -0.0281394925, -0.00683877943, 0.0081308987, 0.0110302893, 0.00488834409, 0.0111213326, 0.027509192, 0.0168220662, -0.00359972613, -0.013579512, -0.0135725085, 0.00357346353, -0.00081282726, -0.0080398554, 0.00681076571, 0.0139296791, 0.00957359094, 0.0095315706, -0.00818692613, -0.0110232858, 0.0125290081, -0.00320753804, -0.0172282606, 0.00666369544, 0.0262766, -0.00199245545, -0.0244277138, -0.0121228127, 0.00695783645, -0.0181246903, 0.0160937179, -0.0160096772, 0.00503191305, -0.0148751326, -0.0130332494, 0.0278453529, 0.0212902091, 0.0154354014, -0.00620847708, 0.0218084566, 0.0120037561, -0.000664005929, 0.0241195653, -0.0313190185, -0.0066391835, 0.0165139195, 0.0204918254, -0.0116675952, -0.0174803827, 0.0127741257, -0.0102178995, 0.00895029213, 0.0198615231, -0.00263151177, 0.00437359698, 0.0180826709, 0.00664618704, 0.00252471073, 0.000271817844, 0.00786477141, 0.0199315567, -0.0162337851, 0.0219905451, -0.00674073212, 0.00676174229, -0.00118444301, 0.00722046243, 0.00131575589, 0.0289658904, 0.0168220662, -0.0110512991, -0.0244837403, 0.00838302, -0.0102108959, -0.0140487365, -0.0227469075, -0.00845305342, 0.0128021389, -0.0123749338, 0.00306747085, -0.0132013299, 0.0181527045, 0.00149959407, 0.000411666144, 0.00895029213, 0.0048008021, 0.00928645302, 0.00288713444, -0.000374460797, -0.00773871085, 0.0300023872, -0.0116325784, -0.00335986121, -0.011576551, -0.00476928707, -0.0048183105, 0.0209260341, -0.00372928823, -0.00437359698, 0.0158976223, 0.00138228782, 0.00101636234, -0.0112473937, 0.0104910303, -0.00154511596, 0.00490235072, -0.00701736473, 0.0215563364, -0.0122068534, -0.0182927717, -0.0173263084, 0.0133484006, -0.00426154351, 0.00186814577, -0.0369497165, 0.0219485238, -0.0257863645, -0.00105225458, -0.0154494084, -0.00108026806, -0.0183768123, 0.00152235501, -0.0268368684, -0.00605790503, -0.0134604545, -0.0157295428, 0.0111493459, -0.0138596455, 0.0233632028, -0.00680376263, 0.0104770241, -0.00401642593, -0.0154494084, 0.00664618704, -0.0140627436, -0.0100638261, 0.020337753, -0.000422390032, -0.0068247728, 0.00337736961, -0.00701386342, 0.0194973499, -0.0141537869, -0.0148751326, -0.0250019897, -0.0103859799, -0.00220080535, 0.0171302147, 0.0147770857, -0.00140417332, -0.0104840277, -0.00854409672, -0.00504241791, -0.0070033581, -0.0066216751, -0.0140277268, -0.00785776787, 0.000293484482, -0.0192872491, 0.000988349, -0.012339917, -0.0140837533, -0.00446814252, 0.0168921, 0.01493116, -0.00856510736, -0.0180406515, -0.00639056414, 0.0346246026, -0.000642995816, 0.0257723574, -0.0273130964, -0.0177745223, 0.0168780927, -0.000536194595, -0.00511945505, 0.00639406592, 0.00210450916, -0.0266968012, 0.00467474153, -0.00537157571, -0.00912537612, 0.00320053473, -0.0130822733, -0.011163353, -0.00133413973, -0.00451716594, 0.00781574752, 0.0595565587, 0.0275512114, 0.0330838636, -0.0176064428, 0.0118496818, 0.00443312572, 0.00244242116, 0.029498145, -0.00877520815, 0.00677224761, 0.0143358745, 0.0151692741, -0.0184468459, -0.00323380064, 0.00915338937, -0.00283110747, -0.00504942145, -0.00183663075, -0.00374329486, -0.0133063802, -0.0107571585, -0.0229850225, 0.0165139195, -0.00140154711, 0.00168255682, -0.00892227795, 0.00489184586, 0.0133554041, -0.0258844122, 0.0146650318, -0.00787877757, 0.0155334482, 0.0172422677, -0.0069333245, -0.0134254377, -0.00718544563, 0.0123609276, 0.0194273163, -0.00599137275, -0.0301144402, 0.0104910303, 0.0261645466, 0.00337561872, -0.00222181529, 0.00951056089, -0.0140277268, 0.0112403901, 0.00215178193, -0.000737541181, -0.0169761404, 0.0244557261, -0.0227329, -0.028797809, -0.00482531404, -0.00457319291, 0.00728349248, 0.0435048603, 0.0105400542, 0.00426504528, 0.018096678, 0.00688079931, 0.00408996129, -0.00415299134, 0.0062049753, -0.00778073119, -0.0365015045, 0.00204498065, -0.0202397052, -0.00067057152, 0.0009594601, -0.0111073265, -0.0106451046, 0.00192417263, -0.00827796943, -0.00457669469, 0.0128721725, 0.0114154741, 0.00117919047, -0.00386935542, -0.0229430012, -0.0195813887, 0.00642558094, -0.0062925173, -0.0169481263, -0.00748658972, -0.0245117545, -0.00165016623, -0.00686679268, -0.00426154351, -0.000822894566, 0.00530504389, 0.0227048881, 0.00634854427, 0.00314275711, 0.0169201139, -0.00239514862, -0.0157855693, -3.14262024e-06, 0.00366625795, 0.0040024193, 0.0151272537, -0.0143008577, -0.00555016147, -0.0152393077, 0.00797682535, 0.0336161181, 0.00766867725, 0.00595635595, -0.00671622064, -0.00404093787, -0.00302545074, -0.0147210592, 0.00879621785, 0.0073115062, 0.011989749, 0.00354019762, 0.00706989, -0.0094755441, -0.00354720093, -0.0036382447, 0.0142448302, -0.0163038187, -0.00234262343, -0.00573224854, -0.00961561128, -0.000170488, -0.00377130834, -0.00172632781, 0.0200576186, 0.0116745979, 0.00462221634, -0.00748658972, 0.00174033456, -0.000279915461, 0.0275512114, 0.0190911554, -0.0110723097, 0.00751460344, 0.027509192, 0.0120247658, -0.00810988899, 0.0129772229, -0.00574625563, 0.0165419318, 0.00216929032, 0.0204918254, 0.000999729382, 0.00893628504, 0.0470345542, -0.0100568226, 0.0144409249, 0.00595285464, -0.012465978, -0.00240040105, -0.00747258309, 0.00806786865, 0.00305171334, -0.0116816014, 0.0282515474, -0.01774651, 0.0167660397, 0.00265602372, 0.0202817246, -0.00143306213, 0.00174033456, -0.00380982691, -0.0101058455, -0.00825696, -0.00355945691, -0.0096576307, 0.0257583521, 0.0119057093, -0.0206318926, 0.00157225388, -0.0076756808, 0.00587931927, -0.0134114306, -0.0129632158, -0.00398841267, -0.0109182354, -0.00670921709, 0.00327056833, 0.00142868503, 0.0520209447, 0.00500740111, 0.00123434188, -0.00300093903, 0.0103649702, 0.0237693973, -0.0167520326, -0.00782975461, -0.00714692706, -0.000548450509, -0.0044016107, 0.0150292069, -0.00270854868, 0.0204918254, 0.00626800582, 0.0125220045, -0.00749359326, 0.0199455637, -0.0260664988, -0.00488834409, -0.0178445559, 0.012276887, 0.0179426037, -0.00871918071, -0.00902032573, 0.00320578716, 0.0219345186, -0.00445763767]
19 Nov, 2021
jQWidgets jqxSplitter height Property 19 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxSplitter is used for representing a widget that consists of a moveable split bar(s) that divides the display area of the container into two or more resizable and collapsible panels. The height property is used for setting or getting the height for the specified jqxSplitter. Syntax: For setting the height property: $('#jqxSplitter').jqxSplitter({ height: 200 }); For getting the height property: var disabled = $('#jqxSplitter').jqxSplitter('height'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxsplitter.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxSplitter height property. In the below example, the value of the height property has been set to 200. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsplitter.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSplitter height Property </h3> <div id='jqx_Splitter'> <div style="background-color: #006400"> </div> <div style="background-color: #000000"> </div> </div> <input type="button" style="margin: 28px;" id="button_for_height" value="Value of the height property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Splitter").jqxSplitter({ width: 300, height: 200 }); $("#button_for_height").jqxButton({ width: 300 }); $("#button_for_height").jqxButton(). click(function () { var Value_of_height = $('#jqx_Splitter').jqxSplitter( 'height'); $("#log").html(( Value_of_height)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsplitter/jquery-splitter-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxsplitter-height-property/?ref=next_article
PHP
jQWidgets jqxSplitter height Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.011519067, -0.00488255313, -0.00945885945, 0.0410927944, 0.0893127918, -0.00602402, 0.0320724249, 0.0272559915, -0.00482687214, 0.0294832438, -0.0136836777, -0.0183609053, 0.0221054722, -0.0294275619, -0.0133008687, -0.00407169433, -0.0262119677, -0.00698800199, -0.0407587066, -0.00215417, 0.0070367232, -0.0284949, -0.0475239828, 0.0240403973, -0.0354968235, 0.018012898, 0.0262676496, 0.0242492016, -0.0133495899, 0.00485471264, -0.022272516, 0.00631634658, 0.00594049785, -0.0192239657, -0.0256829951, 0.00605186028, -0.00155820616, 0.0326570757, -0.0100852735, -0.0171219967, -0.0185975507, 0.0386428162, -0.0101339947, -0.0155072398, 0.0246389713, -0.00969550479, 0.0204350334, 0.0105028832, -0.0148390643, -0.00117017713, -0.0189594794, 0.0240125563, -0.0148251439, 0.0383644104, 0.00851227716, -0.00994607061, 0.0242074411, 0.0579085425, -0.019599814, 0.0238455124, 0.020198388, -0.0439882204, -0.0327127576, -0.0247364137, -0.0231355764, 0.0200452656, 0.00697408197, 0.01424745, -0.0147555424, 0.00415173639, -0.00387681, 0.0315991342, 0.0225787628, -0.00189316389, 0.0102523174, -0.00768401846, -0.0279798489, -0.0240821578, -0.0150896301, 0.0151453111, -0.0369166955, -0.00180964195, -0.0437654965, -0.0205463972, 0.013266068, -0.00674091652, 0.0049243141, -0.0302627813, 0.037473511, 0.0103079993, -0.0508927, 0.0137254382, 0.023038134, -0.03062471, -0.00635114731, 0.0135514345, 0.000991823, 0.0203515124, -0.0155629208, -0.0324621946, 0.0395615585, 0.0232608598, -0.00761441654, -0.0213816166, 0.0133704701, 0.024402326, 0.0299843755, 0.00608318113, 0.0203654319, -0.021673942, 0.025850039, 0.0011675671, -0.00345572014, -0.00934053678, -0.0266713388, 0.0353297777, -0.00389421033, -0.0258918013, 0.00830347277, -0.0411484763, 0.0281886533, 0.00788586307, -0.0206159987, 0.0212424137, 0.00371672632, 0.0303184632, -0.00501479628, 0.00421785796, 0.026365092, -0.0364155658, -0.00934749655, 0.0114007443, -0.00794154406, 0.00423873821, -0.00453802524, 0.0495563485, 0.0298730135, 0.0197250973, -0.040146213, 0.0143936137, -0.0161893349, -0.0331860483, 0.00994607061, 0.0219523497, 0.0016539084, 0.0370002165, 0.0264903754, 0.0334087759, -0.0445728749, 0.0409814306, -0.0219384283, 0.00294588832, 0.0110666566, 0.0327684395, 0.0359422751, 0.00554724876, -0.0297616497, 0.0314042494, -0.0246807318, 0.0212980937, 0.00197668583, -0.0214233771, 0.00675135665, 0.0199060626, -0.0258222, -0.00704020308, -0.00143988337, 0.0123403659, -0.0483035222, 0.0228850115, 0.0199478231, -0.0235114247, -0.00838003401, 0.0159805305, -0.0553193614, -0.0182356238, -0.010043513, -0.0282304157, 0.0242492016, -0.0231494978, 0.0035427222, -0.0106490469, -0.0157995671, 0.0121106813, -0.0208665635, -0.00523404125, 0.0170384757, 0.00112145604, -0.0236227885, -0.0376683921, -0.0413433574, 0.0336036608, 0.0248616971, 0.0438768566, -0.0266434979, -0.0450740047, 0.00097007252, 0.00146163395, -0.00486167287, -0.0169131923, -0.00955630187, -0.0113589838, -0.0469393283, 0.0152427536, 0.0105446447, 0.0190430023, 0.0226762053, -0.0471620522, 0.0634766743, -0.00899252854, -0.00734297046, -0.00913869217, 0.029260518, 0.00930573605, -0.0178458542, 0.0228014886, -0.0129876612, 0.00340003893, -0.033520136, -0.00115451682, 0.0183330644, 0.0114216246, -0.010454163, 0.034828648, -0.0873082653, -0.0106977681, -0.00827563182, -0.0179711375, -0.00522012124, 0.042958118, -0.0280912109, -0.0333809331, -0.0344945602, 0.0190290809, 0.0368610136, 0.0154933194, -0.0295946058, 0.0351070538, 0.00393249141, 0.0285645034, -0.00119279767, 0.00228989311, -0.010725609, 0.0133495899, 0.027102869, 0.0148112234, -0.0315156095, -0.0253349878, 0.0034365796, 0.00743345264, -0.00838699471, 0.0156882033, 0.0242770426, -0.00799026527, 0.0499461181, 0.0114146648, 0.0332417302, -0.0198921412, -0.0138298403, -0.00503567699, 0.0373899862, 0.0211032089, 0.0152705945, 0.000437402632, 0.0497512333, 0.0316269733, 0.02843922, 0.00440230221, 0.00520272087, -0.0519784875, 0.0030485508, -0.0304576661, 0.0356917083, 0.00657387264, -0.0411206335, 0.0227179676, -0.0141291274, -0.000562468, 0.0288150683, 0.0206995197, 0.00644162949, -0.0166208651, 0.0360536352, 0.0648687, 0.0383087285, -0.02713071, 0.0304298252, -0.0225787628, 0.0333809331, -0.00392553117, -0.0285088215, -0.0152427536, 0.0240960792, 0.0483313613, 0.0352462567, 0.00564121082, 0.000896990823, -0.00723856781, 0.0170245543, -0.0249034576, -0.0287593864, -0.00181138201, -0.0132799884, -0.0312928855, -0.0282443352, 0.0275483187, 0.0158274081, 0.00174178043, -0.0157717261, -0.00489299372, 0.0402854159, -0.000839134445, -0.0352462567, -0.017497845, -0.0297338106, -0.00554028852, 0.0327684395, 0.0305133481, -0.00565861119, -0.00685923919, 0.0182773843, 0.00432574051, -0.0378076, 0.0694902539, 0.0537046045, -0.00988342892, -0.0186671522, -0.0183748268, 0.00860276, -0.00257003959, -0.0296781287, -0.00219245092, 0.01937709, -0.0283835381, 0.00471202936, -0.0322394669, 0.00537672453, -0.0413990393, -0.0117696328, 0.0344945602, -0.0163146183, -0.0518392809, -0.00237863511, -0.00199234625, 0.0255716331, -0.06124942, -0.00947974, 0.0159109291, 0.0704368353, 0.0135235935, 0.00124499889, 0.032183785, 0.0190847628, 0.0342161544, 0.0344945602, -0.019488452, -0.00243779644, -0.0307082329, 0.00256829965, -0.0383087285, 0.0261006057, 0.00646599, -0.00908997096, -0.00669915555, 0.0128484583, -0.0309866387, -0.0124656493, -0.0474683, -0.0231634174, -0.0143518532, 0.001118846, -0.0426797085, -0.00538020488, 0.0393109918, -0.0382530466, 0.00782322139, -0.0265182145, -0.0282164942, -0.0112058595, 0.0217992254, -0.0392553098, 0.0569619611, -0.00555072865, 0.0104054417, -0.00103271392, -0.0134470323, 0.0122290039, -0.0172055196, 0.00562729035, 0.0367218107, -0.0261702072, 0.0222864375, -0.0134679126, -0.0344945602, 0.025627315, -0.00310945208, -0.00305029075, -0.020936165, 0.0161058139, 0.00170001946, 0.0123751666, -0.0278684869, 0.0108230514, -0.0092848558, 0.0219245087, -0.0110527361, -0.0245693699, 0.0262815692, 0.0105446447, -0.0383365676, 0.0102453576, 0.00328171602, -0.0163146183, 0.0276179202, 0.0281051323, 0.00618758332, 0.0438211747, 0.0400348492, -0.0139899245, -0.00490691373, 0.0179154556, -0.0223838799, -0.0370559, 0.00480947178, -0.0419280119, -0.00904820953, -0.0406195037, 0.0145606576, 0.0425683483, -0.00763529725, -0.0547903925, -0.00806682743, -0.0113729034, 0.00244127656, 0.00798330549, 0.00529320259, 0.0475518219, 0.000289499207, -0.0178458542, -0.0514216721, -0.0123821273, -0.0196276549, 0.0172055196, 0.0174700059, -0.0459092259, -0.00489299372, -0.0212841742, -0.014630259, 0.000911781157, -0.00375152705, -0.0178597737, -0.0247781742, -0.0255159512, -0.0017713611, -0.00201322674, 0.00224813214, 0.0107395295, -0.00667479495, -0.00784410164, -0.00711676525, -0.0255577136, -0.00499391602, -0.0192935672, 0.037417829, 0.0281747337, -0.0151174711, -0.0146720205, 0.00373064657, -0.00765617751, 0.0122498842, -0.0423456207, -0.00574213313, 0.0356638655, 0.0191682838, 0.0354133025, 0.0100852735, 0.0184722692, -0.00524448184, 0.019516293, -0.00156690634, 0.037417829, 0.0390325859, 0.0430694781, -0.0189873204, 0.00489299372, -0.00806682743, 0.00582913542, -0.0267548598, 0.0107116885, 0.0291491561, 0.0371672623, -0.00420393748, -0.0140595259, 0.026448613, 0.0185697116, 0.0270332675, -0.00883244444, -0.0224395599, 0.0444893502, 0.00567601155, 0.0126257325, 0.0315434523, -0.0209918469, 0.0396450795, -0.00341743929, -0.00447190367, -0.0433200449, -0.0176509693, -0.0397564434, -0.0400070064, 0.0232330188, 0.000783453172, -0.0462711528, -0.0253628287, -0.0359701142, -0.0522568934, -0.0284949, -0.000743867247, 0.00352010154, -0.0175396074, 0.00492779445, -0.00302941026, 0.0205603167, 0.0218966678, 0.0324900337, 0.0294275619, -0.0295389257, -0.0226344448, -0.014574578, 0.0124934902, -0.00839395449, 0.00806682743, 0.0140316859, 0.00591265736, -0.0161197335, 0.0180964191, -0.0117278723, 0.000813468883, -0.00835915376, 0.0262119677, 0.00164694816, 0.00285888626, -0.0420950577, -0.0108230514, 0.0136697572, 0.0111849792, 0.018012898, 0.0210057665, 0.015395877, 0.0372507833, 0.0205324758, -0.0188481174, 0.00377588766, 0.00941013824, 0.0054428461, -0.00242909626, -0.0100156721, -0.013238227, -0.00406821445, -0.0272699129, 0.00139203225, 0.0186810736, 0.00235079462, 0.0200870261, 0.0199617427, -0.0292326789, -0.0343831964, 0.0251679439, -0.0342439935, 0.0395337157, -0.000478946109, -0.00448234379, 0.0207273606, 0.0174700059, 0.00598921906, 0.0169131923, 0.0281329732, -0.0341047905, 0.00564469071, 0.0115886685, -0.0062015038, -0.0220219512, 0.0259196404, 0.00128327974, 0.00849835668, 0.00253697881, 0.00337915844, -0.0438768566, -0.045770023, -0.0132243065, -0.014713781, 0.0493057854, -0.00646947, -0.00937533751, 0.00163650792, 0.0253349878, -0.0425405055, 0.00911781192, 0.0252514649, -0.0140386457, 0.0050252364, 0.0184861887, 0.00407517469, -0.00425961893, -0.023010293, 0.014602419, 0.00379676814, 0.00230033346, -0.000178027884, -0.00681747822, -0.0211728103, -0.0201287866, 0.0302906223, -0.00151818525, -0.0238594338, 0.01078129, -0.0189177189, 0.00979294721, 0.00562033057, -0.0138855223, 0.00164694816, -0.0144353751, 0.00824779086, -0.00177484122, 0.0216878634, -0.00435010111, -0.0344945602, -0.0124378083, 0.00169218925, -0.0163285378, -0.00473290961, 0.0222307555, -0.00294066826, -0.0209222455, 0.0306803919, 0.00902732927, 0.00219245092, 0.0297616497, -0.0172472801, 0.0183609053, 0.0172472801, 0.0184722692, -0.0113868238, 0.0580755882, -0.0170523953, 0.0085957991, 0.00141204277, 0.0250565819, 0.0270471871, 0.00257003959, -0.0259057209, 0.0130851036, 0.00691144029, 0.0183052253, -0.00157473655, 0.0396172404, -0.00573517289, -0.00984862819, 0.0241239201, 0.023636708, -0.0110388156, -0.0263372511, 0.0295667667, 0.0278267246, 0.00960502308, -0.00108839525, 0.0204767957, 0.0480251126, 0.0306803919, 0.0190569218, -0.00918741338, 0.00716200611, 0.0310701616, 0.0225370023, -0.00294066826, -0.00815034937, 0.0124169281, 0.00281538535, 0.00497651566, 0.0285923425, 0.00541500561, 0.00713416561, 0.0130851036, 0.0179989766, -0.00826867204, -0.0236088671, 0.00680355774, 0.00372716645, 0.0273951963, 0.00851923786, 0.0020828282, 0.00191230432, 0.0221611541, -0.0022411719, -0.000251218327, -0.0011388564, 0.0369445384, 0.0318218581, -0.0181103405, -0.00300156954, 0.0048199119, -0.0043153, 0.016704388, 0.0305133481, -0.00114929664, 0.0141848093, 0.00264138123, 0.0164120607, -0.0160640534, 0.00136767176, 0.0205324758, 0.0422621, 0.0325735547, 0.0440160595, 0.0416496061, -0.00999479182, -0.0251818635, -0.00908997096, -0.0254463498, 0.0161475744, 0.0074264924, 0.0143379327, -0.0217992254, -0.0486097671, 0.00918741338, -0.0249312986, 0.0401183702, 0.00417957688, -0.00510527845, 0.0037132462, -0.00790674333, -0.00119453773, -0.00275796396, -0.0136627965, -0.00867932104, 0.00726640876, 0.0196694154, -0.0047189896, 0.00461110706, 0.0105864052, -0.0137184784, -0.0302349422, 0.0135096731, 0.00181138201, -0.00616670307, 0.00556464912, 0.00196624571, -0.0273116734, 0.0229406916, 0.00494519481, -0.00440926244, -0.00915957242, 0.0209918469, -0.0117209116, 0.0218966678, 0.0358309112, 0.00601009931, -0.00746129313, 0.0318218581, 0.00973726623, 0.00210544886, 0.0242770426, -0.0259892438, 0.00883940514, 0.000296241866, 0.00699844211, -0.0235253461, -0.0128136575, 0.0107186483, -0.0409814306, 0.00588133652, 0.0113589838, 0.0206856, -0.0052897227, -0.0268523023, 0.0205742382, -0.0170523953, 0.00294762827, -0.000517227, 0.00393249141, -0.0106420871, -0.000176179092, 0.0304855071, -0.00792762358, 0.0197529383, 0.00336871808, 0.0421228968, 0.016022291, 0.0207691211, 0.044684235, 0.0330468453, 0.0286480244, -0.00845659617, 0.00836611446, 0.00183574262, -0.0106838476, -0.0452967323, 0.00834523328, 0.0286480244, -0.00632330682, 0.00905517, -0.0025944002, 0.0158274081, 0.0489716977, -0.00957022235, -0.0392831527, -0.0382530466, -0.000719506701, -0.00867236126, -0.00910389144, -0.0146998614, 0.00100139319, -0.032100264, -0.00183052244, -0.00320341438, -0.0053662844, 0.0100156721, 0.00466330815, 0.0198086202, 0.0267966222, -0.0288985912, 0.0192935672, 0.0063789878, -0.00467374828, -0.0227318872, 0.00812250841, 0.0133495899, 0.00557508925, 0.0177623313, -0.00979990698, 0.00379328802, 0.0163146183, -0.0366661288, 0.016161494, 0.00554376841, -0.0013859421, -0.012201163, 0.0154376384, -0.00468070852, 0.00922221411, 0.00238037528, 0.00908301, -0.0260866843, 0.0194745325, 0.0134679126, 0.0213955361, -0.0104611227, 0.00685923919, 0.00904125, 0.021590421, 0.0332138911, 0.000509396836, 0.034605924, 0.0314320885, 0.00324691529, 0.0213816166, -0.0222307555, -0.00217331038, 0.017386483, 0.000328215101, -0.00816426892, 0.00314425305, 0.00971638504, 0.00457630632, 0.0255020317, 0.000440012693, -0.0116791511, -0.0234279037, -0.0167183075, 0.00913869217, 0.00851923786, -0.00719680684, 0.0441552624, -0.00780234113, -0.0155072398, -0.00175657077, -0.0483870432, 0.0229824539, -0.00596485846, -0.0205463972, 0.0384479314, 0.00716896635, -0.025738677, 0.018012898, 0.00441622222, 0.0489995368, -0.0169827938, -0.0147833833, -0.00585001567, 0.0143936137, -0.000192383217, -0.00394989178, 0.00737081096, -0.0342718363, -0.0279102474, 0.0201566275, -0.00616322318, 0.0122081228, 0.00767705822, -0.0003060296, 0.0251540244, -0.0389212221, 0.0142961713, -0.0158413276, 0.0136001557, -0.0136975981, 0.00909693073, 0.0211588908, -0.00844267569, 0.00982774794, 0.0265738964, 0.0254463498, -0.0142683312, -0.0338263847, -0.00268836226, -0.00543936621, -0.0171776786, 0.0354133025, 0.00873500295, -0.011463386, -0.0112337, 0.000773882959, -0.00296676881, 0.0206995197, -0.00848443713, -0.0119645176, -0.0226205252, 0.00792762358, -0.00888812635, -0.00906213, 0.0206716787, 0.00431878027, 0.0350792147, -0.0156603642, -0.00860276, 0.00773969945, 0.00479903119, -0.0154793989, -0.0397842824, 0.0016417281, 0.0252097044, 0.0417331271, 0.00330259651, 0.0127370954, 0.00258918013, -0.0148390643, -0.0444893502, 0.000525492185, -0.00410301518, -0.0102731986, 0.0191126037, 0.0195023715, 0.0217992254, 0.0144492956, 0.005554209, -0.0346616022, -0.00373064657, 0.0298730135, -0.0135862352, -0.0131964665, 0.0162310973, -0.0304298252, 0.00370280584, 0.00283800578, -0.015312355, 0.0101757562, 0.0075308946, -0.0147416219, 0.0140734464, -0.020142708, 0.00032299498, -0.00532800378, 0.0397842824, 0.0151174711, 0.00495563494, 0.0116373897, 0.0139899245, -0.0342718363, 0.02843922, -0.00867236126, 0.0252793059, -0.0040368936, 0.0148251439, 0.00159300701, 0.0331303701, -0.0172472801, 0.00829651207, -0.00578041421, -0.0351348966, 0.0288707502, 0.0322394669, -0.0232191, 0.000113102622, -0.00462502707, -0.000578563428, -0.00383852911, 0.00152166525, -0.0289542712, 0.00246563717, -0.0295667667, -0.00810162816, -0.0180268176, 0.0157021247, 0.0115399472, 0.0411763154, 0.0151453111, -0.0178458542, 0.0176648889, -0.0188898779, 0.0226205252, -0.0176788103, -0.00131199043, 0.00558552938, 0.0290934741, 0.0165095031, 0.0106281666, 0.00560641, 0.011136258, 0.0188063569, 0.0131199043, 0.0386428162, -0.00380372815, 0.0102801584, -0.0150617892, 0.00227075256, 0.0164120607, -0.0251261834, -0.0147694629, 0.0268523023, 0.0395337157, -0.00123368867, -0.0013380911, -0.0108926529, -0.015395877, -0.022188995, -0.0284809805, -0.00546720671, -0.0162728578, 0.00207238807, -0.0252793059, 0.0355525054, 0.00810858794, 0.000551592791, -0.00323647517, -0.0030241902, 0.00246911729, -0.00746129313, 0.0140943266, 0.00412389543, -0.0190151613, -0.0140943266, 0.0108717717, 0.0160362124, 0.00278754462, -0.000362580904, -0.00164781825, -0.0151731521, -0.0155350808, -0.00157299649, 0.00931269582, -0.00120236794, -0.0137045579, 0.0252236258, 0.019404931, -0.0185557902, 0.0318496972, -0.0147555424, -0.00120410789, 0.000454585534, 0.0149921877, 0.00483383192, 0.0163981412, -0.0033721982, 0.00658779265, 0.00979990698, 0.0075030541, 0.0179154556, 0.00871412177, -0.0313485675, -0.0266434979, 0.00451714499, 0.0104402425, -0.00218027062, 0.0116791511, 0.00129633013, -0.0243466441, 0.0148251439, -0.016760068, -0.00787890237, -0.0109692141, -0.00387332984, -0.0130851036, -0.010454163, 0.0242074411, 0.00374456681, -0.00554376841, -0.00819211, 0.0831878483, 0.00327475602, 0.0150617892, -0.0273116734, -0.011407705, -0.0458813831, 0.00590221677, 0.0329633243, 0.0097024655, -0.00645555, -0.00274404371, 0.01937709, 0.02281541, -0.0149921877, -0.00743345264, -0.00331825693, -0.013864642, 0.00622934429, 0.0148669053, -0.0235253461, -0.00275796396, 0.0141430479, -0.00500435615, -0.00444754306, 0.033269573, -0.0152705945, -0.0257247575, -0.0269636661, -0.0326570757, 0.0155907618, 0.0054428461, 0.0113381026, 0.0206020772, -0.00950062, -0.0146859409, 0.0238455124, -0.0205742382, 0.000515051943, -0.0287037063, 0.00751001434, 0.00246215705, -0.00494519481, 0.0234418232, -0.00465286803, -0.0234975051, -0.00292500784, -0.0300122164, -0.00951454, -0.00302071, 0.0149643468, -0.0300957374, -0.00918045267, -0.01593877, -0.00556464912, -0.01424745, 0.0035061813, -0.00189316389, -0.0324343517, 0.00152253534, -0.0459649079, -0.0174004044, -0.00240821578, -0.0148808248, -0.0073499307, 0.00415521627, 0.0150339492, 0.000413259579, 0.0199617427, -0.0234279037, 0.0100783138, 0.0329354852, 0.00215069, -0.00937533751, 0.0115886685, -0.000558987958, -0.00413781591, -0.000327127578, -0.00108491513, 0.00636506779, -0.0177901722, -0.0297059696, -0.0270889476, -0.0128066968, 0.0259474814, -0.0161058139, -0.00457978621, -0.011519067, -0.00167826889, 0.00282756565, 0.00499739591, 0.000874370278, -0.0171637572, -0.0209500864, -0.0111919399, -0.00919437315, -0.00393945118, 0.0219941102, -0.000943971914, -0.0127788568, -0.00631634658, 0.0285923425, 0.00599269895, 0.0147973029, 0.0289821122, -0.0170802362, -0.0224674, 0.0286201835, 0.00325039541, -0.0113659436, 0.0233722217, 0.00465982826, -0.00239255559, -0.0108508915, 0.019516293, -0.0128066968, 0.0120967608, -0.0212006513, -0.0113381026, 0.00113711634, 0.0253489073, -0.0257108361, -0.00534540415, 0.000602053944, 0.0074264924, -0.00459718658, -0.0173586421, 0.00309205172, 0.00102575379, 0.0213259347, -0.0175952874, -0.00512615871, 0.0281329732, -0.033269573, 0.0186114721, -0.0220497921, 0.00226205238, -0.0289821122, 0.0177623313, 0.00142161292, 0.0217296239, -0.0161058139, 0.0216600224, 0.0103567205, -0.0249173772, 0.00950062, 0.0216600224, 0.00114755658, 0.0191822052, 0.0075030541, -0.00852619763, -0.0110875368, -0.00732905, 0.0234835856, 0.00646599, -0.0144353751, -0.023010293, -0.00472246949, 0.0204767957, -0.0172333606, -0.00762137678, 0.046020586, 0.0424569845, -0.00325213536, -0.00863756053, 0.00342613948, 0.0118531547, 0.000820429, -0.0356081873, 0.0039603319, 0.0113381026, 0.00964678358, 0.00373760681, 0.0132451877, -0.0158691686, 0.0127370954, 0.00492083421, -0.0167322289, 0.00128675986, 0.00964678358, 0.00215939013, -0.0287315473, 0.0142056895, 0.00479903119, 0.0116721904, -0.00606926065, -0.0126466136, 0.00946581922, -0.0248060152, 0.00931965653, 0.0133635104, -0.0175952874, 0.00621194392, 0.0265321359, 0.00324169523, 0.0282860957, 0.00156603637, -0.00441274233, -0.0140943266, 0.00215069, 0.0106838476, -0.0206856, 0.00299460953, 0.0339934267, 0.0015886568, -0.000665130443, -0.00501827663, -0.0163285378, -0.000850879762, -0.00192448462, -0.0203097519, 0.0109692141, -0.0328798033, -0.0120132389, -0.00791370403, 0.020824803, 0.00200452656, 0.00141726283, -0.0269219037, 0.00762833701, 0.00019347074, -0.0117696328, -0.00530016283, -0.0144214546, -0.0152149126, -0.00430138, -0.00707500428, -0.0384757742, 0.0170802362, -0.00474683, 0.0224395599, -0.00255611935, 0.0232608598, 0.0601914749, 0.01250045, 0.00137463189, 0.0146998614, -0.000854359823, -0.00920829363, -0.00905517, 0.000944841944, -0.0239151139, 0.020852644, -0.0196833368, 0.0458813831, 0.00779538089, -0.000103314895, 0.00823387131, -0.0257247575, -0.0231912583, 0.0279798489, -0.0210753698, 0.0209918469, -0.00104750425, -0.0353854597, 0.011435545, 0.0150200287, -0.0259474814, 0.00542196585, -0.0241378397, -0.0282164942, -0.00290412735, -0.00405777432, -0.00415521627, -0.00456238585, -0.0234696642, 0.00633722683, 0.014574578, 0.00086045, 0.00030254951, -0.00614234246, 0.0131547051, 0.013238227, 0.00426309882, 0.0147416219, 0.0278824065, -0.0193074886, 0.018040739, 0.0216461029, -0.00716200611, -0.0115608284, -0.0148529848, 0.013210386, 0.0168992728, 2.21447317e-05, -0.0255437922, 0.0275622401, -0.00186706334, 0.0251957849, -0.0129319802, 0.00578737445, 0.0216600224, 0.00856795907, -0.024318805, -0.0149086658, 0.0119853979, 0.0367774926, 0.0228293296, -0.0270332675, 0.0110736173, -0.0110457763, 0.0153541164, -0.0157438852, -0.0106629673, 0.00587437628, -0.00769793848, -0.0184165873, 0.000736907066, -0.00801810622, 0.0179015361, 0.00945885945, -0.000195645785, -0.0296502877, -0.0430137962, -0.00114059646, -0.00982078817, -0.0128902188, 0.0218270663, -0.00723856781, -0.00457630632, -0.0202401504, 0.00283800578, -0.00729424926, -0.0314042494, -0.00563425058, 0.0372229442, -0.0187645946, 0.0100156721, -0.0266574193, 0.00506351748, -0.0235671066, -0.00771881919, -0.00854707789, -0.0130015817, 0.0090203695, -0.0145049766, 0.00652167108, 0.0120062781, -0.0459092259, -0.0080320267, -0.0102662379, -0.0219523497, 0.00497999554, -0.0110318558, 0.0137254382, 0.000134200614, 0.0167461485, 0.0124378083, -0.00939621776, -0.0373343043, 0.00239777565, 0.0158413276, -0.0229824539, 0.0105237644, 0.00852619763, 8.49357166e-05, 0.0270054266, -0.0100156721, 0.0024116959, 0.010809131, 0.00540456548, -0.0137323989, -0.0071898466, 0.0204489548, 0.00525492197, -2.76911105e-05, -0.0236784685, -0.0126396529, -0.00446494343, 0.00424917834, 0.0215765, 0.00544980634, 0.0172751211, 0.0134331118, 0.00470506912, 0.00501479628, 0.0216461029, 0.0238872748, 0.0169688743, -0.0168714318, -0.000831304293, -0.0307917539, -0.00395685202, -0.0103288796, -0.0130433422, 0.0117487526, 0.00248129759, -0.000760397641, 0.00954238139, 0.00758657604, 0.00204454735, 0.018152101, 0.00309031177, 0.00578737445, 0.0066434741, -0.00981382746, 0.0420115329, -0.0231773369, 0.0294554029, -0.018040739, 0.00234209443, 0.015284515, -0.00808074698, -0.0149225863, 0.00439186208, 0.0394223556, 0.010127035, 0.00530364318, -0.0232469384, 2.37216445e-05, -0.0062015038, 0.0054184855, 0.0260170829, -0.0152984345, 0.0135723148, 0.0140177654, 0.0102035971, -0.00236471486, 0.0340769514, 0.0196415763, -0.0135444738, -0.0291491561, -0.019599814, 0.0153819565, -0.020824803, 0.00287628663, -0.0199895836, 0.0127162151, 0.0056551313, -0.0170106348, 0.0231494978, 0.0141848093, 0.0001768316, 0.00362972426, 0.00661215326, 0.0200313441, -0.00215243, -0.0127510158, 6.75353149e-05, 0.00137550186, 0.0246528927, -0.0289821122, 0.0215347391, 0.0180546585, 0.00232817396, 0.0133983111, 0.000741692202, 0.0208665635, 0.0110875368, -0.0123264464, 0.0169549529, 0.00444406318, -0.0156882033, -0.0176509693, 0.00661563361, -0.00936141703, 0.0073777712, -0.0114285853, -0.00851923786, 0.0258222, -0.000488081336, 0.0241239201, -0.00785106234, 0.0109135332, 0.020114867, -0.00256481953, 0.0130920634, 0.0112893814, 0.00421089772, -0.0106072864, 0.000956152158, 0.0301235784, -0.00723160757, -0.0119645176, 0.00187402347, 0.0199756641, -0.00922221411, -0.0233165417, 0.00707848417, -0.0212563332, -0.0147694629, 0.00452410476, 0.0185697116, 0.0190430023, 0.0204628743, 0.0174282435, 0.0140804062, 0.0123612471, 0.0159805305, 0.0212563332, -0.00438490184, 0.0154097974, 0.01293894, 0.00532800378, -0.00490343384, 0.0114842663, 0.00287280674, 0.0117696328, 0.00772577943, -0.0181799419, 0.000996173127, 0.0107952105, 0.0131686255, 0.0133078285, -0.021673942, 0.0233861431, 0.0230938159, 0.00649383059, -0.0310423207, 0.00454846537, 0.0211449713, 0.00876980368, -0.00519924052, -0.00338089839, 0.0228850115, 0.00955630187, -0.00867932104, 0.00580477482, -0.0141569683, 0.0138716018, 0.0115469079, 0.0189594794, -0.000762572687, 0.0119505972, -0.0257943589, -0.00839395449, 0.000593353761, 0.0120201986, 0.00606578076, 0.0285923425, -0.0160362124, 0.0126326932, 0.033659339, -0.00616670307, 0.00134244119, -0.00450322451, -0.0253628287, 0.0248477757, -0.022926772, -0.00232817396, 0.00244997675, -0.0243884064, -0.00922917388, -0.0185418706, 0.016760068, -0.0101200752, 0.0166069455, 0.00402993336, -0.00727336854, -0.00956326164, -0.0070610838, 0.00611102162, 0.00824083108, -0.0249173772, 0.0266991798, 0.00781626161, 0.0039359713, -0.00212110928, 0.0131199043, -0.00574561348, 0.0211588908, 0.000472420972, 0.000473290973, 0.00105707452, 0.016760068, 0.00784410164, 0.0133565497, 0.00373412669, 0.00384200923, 0.00151122501, -0.0170802362, -0.00426309882, -0.0180825, 0.00818515, 0.0198643, 0.00683835847, 0.0265321359, 0.00695668114, -0.00673395628, -0.0204907153, -0.012827578, 0.00731512951, -0.0116513101, -0.00337393815, 0.0178876147, -0.0179989766, 0.0149086658, -0.00278754462, 0.0212841742, -0.0102801584, -0.0102105569, 0.00369584584, -0.0104124015, -0.0265182145, -0.00879068393, 0.00858187862, 0.00399861299, -0.0244719274, 0.0315434523, 0.00214198977, 0.00317209354, -0.0247781742, -0.00347834057, -0.00315295323, -0.00399861299, -0.00595441833, -0.0115677882, -0.00378284766, -0.0081781894, 0.0050008758, -0.0144075342, -0.017525686, -0.022328198, 0.0139620835, 0.00605534064, 0.0205324758, 0.0069079604, 0.0027649242, 0.0027718842, -0.00771185895, 0.0122290039, 0.00697060162, 0.0184583478, -0.014518897, -0.00744041242, 0.0355525054, 0.0217296239, 0.0414547212, -0.00691144029, -0.0278267246, 0.00621890416, 0.0071898466, 0.0260310043, -0.0146998614, 0.00782322139, -0.00538716512, 0.0185140297, 0.00198538601, 0.0167183075, -0.000573778292, -0.0046424279, 0.00771185895, 0.00499739591, -0.0367774926, -0.00424569845, 0.00422133785, 0.0152288331, 0.0148669053, -0.0191265233, 0.00286236638, 0.0135514345, -0.00790674333, 0.0247224942, 0.000736037095, -0.00862364, 0.0253349878, -0.0143936137, 0.0138507215, 0.0179432966, -0.00369236572, -9.17871293e-05, 0.00124760892, 0.0120480396, -0.000810423808, 0.0212284923, 0.000477206078, -0.0356081873, 0.00276666414, 0.0198643, -0.00183922262, -0.0177762527, 0.0134679126, 0.0149365067, -0.0118949162, 0.0221611541, 0.0133565497, 0.00239603547, 0.0277153626, 0.00966070406, -0.0212841742, -0.000464155775, -0.0172890406, -0.00560641, -0.0232330188, 0.0117974738, 0.00848443713, -0.0266852584, 0.00117539731, -0.0204907153, -0.0101479152, -0.0267409403, -0.0155350808, 0.0125074098, -0.0182356238, -0.0281747337, 0.00999479182, 0.00654603168, -0.0201566275, 0.00758657604, 0.00544980634, 0.0040368936, 0.0254324302, -0.010809131, -0.0199199822, -0.0141221676, 0.0108300112, -0.00278058439, 0.00749609387, -0.0177066512, -0.0217296239, -0.000773012929, -0.00510875834, -0.0058604558, -0.0144910561, -0.0129667809, -0.0247920956, 0.0067965975, 0.000448930427, 0.0320724249, -0.00139290234, 0.00615974283, -0.0036192839, 0.00189664401, 0.00691840053, 0.00352706178, -0.00743345264, -0.0135792745, 0.00285018608, -0.03056903, 0.0132591072, -0.0146581, -0.0143100917, 0.0175117664, -0.00499739591, -0.00412041554, -9.7741331e-06, 0.00195928547, -0.0226483662, 0.000672090566, 0.00555072865, -0.0158274081, 0.0235671066, 0.0246946532, -0.00198886613, -0.0124238878, 0.000851314748, 0.00406821445, 0.013481833, 0.0163146183, -0.0050008758, 0.044684235, -0.0119853979, 0.00431182, 0.0210614484, -0.0115260277, -0.00344005972, 0.00392205082, 0.00290412735, 0.00277362438, -0.00599965919, 0.0151592316, 0.00578737445, -0.0140734464, 0.00136071153, -0.0277153626, -0.00358100305, 0.0101618357, 0.0068836, -0.0151453111, -0.015966611, 0.0171498377, 0.0022777128, -0.00375848729, 0.010836971, 9.21677638e-05, 0.0144771356, 0.019404931, -0.0105794454, 0.000272098812, 0.00786498282, -0.013920323, -0.0114564253, 0.00077997311, 0.0018566231, 0.0308195949, 0.00872108247, 0.00689404, 0.0227179676, -0.00428745942, 0.0203932729, -0.00164085801, 0.00337045826, 0.00831043255, 0.00785106234, -0.0031894939, 0.0234557446, -8.20537753e-05, 0.0259474814, 0.0110388156, 0.00206368789, 0.0179432966, -0.000562468, -0.00993215, -0.0273255929, -0.00326083554, -0.000518532, 0.0215486605, 0.00353750214, 0.00459022634, -0.00343135954, -0.00617714319, 0.0261702072, -0.00835219398, 0.00229859329, 0.0127858166, 0.00749609387, -0.00931269582, 0.0026187608, 0.0033478376, -0.00202192692, -0.0126674939, 0.0538716502, -0.0101548759, -0.00918741338, -0.00846355595, 0.00818515, 0.000787368277, 0.000133330599, -0.0060483804, -0.0262815692, -0.0215486605, -0.00228989311, -0.0274091158, -0.0196276549, -0.010426322, 0.0145884985, 0.0158134867, -0.0182495434, 0.00647643, -0.000376501237, 0.00136245159, 0.0123194857, 0.016676547, 0.0212841742, 0.016787909, -0.000403471873, -0.00741257193, -0.00711676525, -0.0114564253, -0.00988342892, -0.013481833, 0.0315156095, -0.000479816139, 0.0130294226, 0.011874035, 0.0115260277, 0.0185836311, -0.00789978355, -0.0126814144, -0.0235671066, -0.00720376708, -0.00402645348, 0.010127035, 0.0111432187, -0.0018444428, -0.00469810888, -0.00170958962, -0.0177205708, -0.00212110928, -0.00809466746, 0.00789282285, 0.0298451725, 0.0248756167, 0.00616322318, -0.00717592658, 0.019404931, -0.0180825, -0.00171219977, 0.000396294199, 0.00475727, -0.0023594948, -0.00739169167, -0.0115747489, -0.0095911026, -0.00430138, 0.00173743034, -0.0150200287, 0.000762572687, 0.0291213151, 0.00930573605, 0.00498347543, 0.00266226172, -0.0160779729, -0.000770837883, -0.0110527361, 0.00861668, 0.02374807, -0.0267687812, -0.00847747643, 0.00219767098, 0.00380024826, -0.0089090066, -0.0073777712, -0.0189038, -0.0328519605, -0.00999479182, 0.0094379792, 0.0150339492, 0.00117800734, 0.0189177189, 0.0108648119, -0.00343483966, 0.0255577136, 0.0158691686, 0.000227075274, -0.0128762983, -0.00444406318, 0.0366104506, -0.0211171303, 0.0103567205, -0.0108021703, 0.00108578522, 0.0080320267, -0.013864642, -0.0272420719, -0.000357578305, 0.0226762053, -0.0119227562, 0.00054463261, 0.00489995349, -0.00161562744, 0.0171637572, 0.00252131838, 0.0161058139, -0.00914565194, -0.00245345687, -0.00562729035, -0.0091734929, -0.0194745325, 0.00536280451, -0.0068836, -0.0248477757, -0.0141082471, -0.0192657262, -0.0119436374, 0.00740561169, 0.00289194705, -0.00367844524, 0.00149121461, 0.00715504587, 0.000236210486, 0.0184722692, 0.0199756641, -0.000801723625, 0.0030485508, -0.000741257216, -0.00954238139, 0.020936165, -0.00817123, 0.0123542864, 0.000570733217, -0.0020880485, 0.0439047, -0.00520620076, -0.0016860991, 0.0063789878, -0.00452758512, -0.000661215337, -0.0100783138, -0.0381138436, 0.0109552937, -0.0151870726, 0.0103010386, -0.00568297179, -0.0179572161, 0.0106281666, -0.0189873204, -0.0093266163, 0.0335479788, 0.0196833368, -0.0196276549, 0.00482339179, 0.0126466136, -0.00798330549, -0.00294588832, 0.0282582548, -0.00725944852, -0.00279450486, -0.0169967134, 0.0169410333, -0.0108787324, 1.72100863e-05, 0.00551244803, 0.0114494655, -0.00609014137, 0.00491039408, -0.00414825603, 0.0188063569, -0.00931269582, 0.0186532326, -0.0117348321, 0.00385592948, 0.0101966364, 0.0168157499, 0.0103010386, 0.016676547, -0.00435010111, -0.0202819109, -0.00172960013, 0.000651645125, -0.0186810736, -0.00821299, -0.00208978844, -0.013481833, 0.000397381722, -0.012855418, -0.00812250841, -0.0094519, 0.0245832894, 0.0345224, 0.0178736951, 0.0223838799, -0.00864452, 0.0136071155, 0.0294554029, -0.00355490251, -0.00183574262, -0.00645903, -0.014518897, -0.00385244936, -0.00696364138, 0.0103567205, -0.00919437315, 0.0126118129, 0.00200104644, 0.0240264777, -0.00936837774, 0.0221611541, -0.00653907191, 0.0178458542, 0.0131199043, -0.0128762983, 0.00165129825, -0.0155211603, 0.0175952874, -0.0119227562, 0.0052897227, 0.000471550942, -0.0135305542, 0.011164099, -0.00852619763, 0.0017304701, 0.0122081228, 0.000122672849, -0.00129546, -0.0128484583, 0.00377936778, -0.0307360739, -0.00515051931, 0.0264903754, 0.018040739, -0.0199617427, 0.00485819252, -0.0344945602, 0.0316269733, -0.00067252561, -0.0126744537, 0.000740822172, -0.0188759584, -0.0174560845, -0.0103636803, 0.00738473143, 0.0185001083, -0.0275761597, 0.00583261531, 0.00825475156, 0.0113172224, -0.00735689048, -0.0127092544, 0.0141012874, 0.0121106813, 0.014574578, -0.000612929231, 0.0174421649, -0.0196415763, -0.0119923586, -0.00546024647, -0.00452062488, 0.0192239657, 0.0293440409, 0.011762673, -0.0100156721, 0.00508787809, 0.00436750147, 0.0096328631, -0.0048199119, 0.00746129313, -0.0121872425, 0.0115051465, 0.0156603642, 0.00485819252, -0.00969550479, 0.0112476209, -0.0018688034, 0.0191822052, 0.00528276246, -0.00767705822, -0.0228850115, -0.0117348321, 0.0198086202, 0.00198364607, 0.00987646915, 0.0192100462, -0.00498695578, 0.00835915376, -0.00114146643, 0.0250009, 0.00275100372, 0.0116095496, -0.00468418887, 0.000655125186, 0.0263233315, -0.0120549994, -0.0084913969, -0.0174421649, 0.0262398086, 0.0149086658, -0.0224395599, -0.00401601335, 0.00674091652, 0.0128693385, 0.00323821511, 0.0023838554, 0.0127231749, 0.00524796173, 0.0151313907, -0.0152288331, 0.00259962026, -0.0047955513, 3.0641022e-05, -0.0205046348, -0.00907605048, 0.0031773136, 0.00553332828, -0.00689404, 0.00200974662, 0.00472942973, 0.00597877847, 0.0156464428, -0.00913173147, -0.0255855527, -0.0125770122, -0.0191822052, 0.0172333606, -0.00756569533, 0.00579085434, -0.00310945208, -0.00769793848, -0.00218201056, -0.000415434624, 0.000635984761, 0.0152705945, -0.00415521627, 0.00335653778, -0.0021767905, 0.00776058, 0.00941013824, 0.0115956292, -0.0213259347, -0.0241796, -2.01192161e-05, -0.0129807014, 0.0146163395, 0.00394641142, 0.0455751382, -0.0103079993, -0.00947278, -0.00982078817, -0.000528537261, -0.0108439317, 0.000585523609, 0.000371063594, 0.00293370802, 0.00208108826, 0.0268383827, -0.00568297179, 0.00466330815, 0.00685575884, 0.00206020777, -0.00510527845, -0.00172786007, 0.00890204683, 0.0195441339, 0.00167739892, 0.00469462899, -0.00230555353, 0.00177310116, -0.0153819565, -0.0189455599, -0.000455020549, -0.0143796932, -0.0130085414, 0.00153036555, -0.0140664866, 0.00191404438, -0.0153541164, 0.00442318246, 0.00246911729, -0.00358796329, 0.00971638504, -0.00324169523, -0.0146581, -2.00240574e-05, 0.00463198731, 0.0174282435, 0.00052331714, -0.0318775401, 0.00440926244, -0.0183609053, 0.000821299036, -0.00635114731, -0.00642074877, -0.00688707968, 0.0178597737, 0.00874196272, -0.0150757097, 0.00516096, 0.00263268105, 0.00170958962, 0.0109274536, 0.00892988686, -0.0112685012, -0.00874196272, -0.0183469858, -0.00951454, 0.00357752293, 0.0121106813, 0.00396381179, 0.00810858794, 0.00998783205, -0.0287037063, 0.00672351616, 0.0146163395, 0.0152984345, 0.0116443504, 0.0169271119, -0.00774665968, 0.00637202803, -0.00309901196, -0.00672351616, 0.00432574051, -0.00185140292, 0.0103149591, 0.00579781458, -0.00793458428, 0.0349678509, 0.00032256, -0.0187924355, -0.0202540699, 0.0031129322, -0.0114773065, -0.0245136879, -0.0140595259, 0.0154515589, 0.00327649596, 0.0264346935, -0.0116165094, 0.029288359, -0.0144771356, -0.00158343674, -0.0143379327, -0.00341569912, -0.00678267749, -0.00213850965, 0.0041656564, 0.0043779416, -0.00273708347, 0.00259266025, 0.00986950938, 0.0208108835, -0.0250565819, 0.0107047288, 0.00256307935, 0.00253349869, -0.0132869482, 0.0019297048, -0.0105864052, -0.0164677426, 0.00181138201, 0.0238455124, 0.00394641142, -0.0133983111, -0.00392205082, 0.01593877, -0.0197807793, 0.00870020222, -0.0129250195, 0.015200993, -0.00366452499, -0.02374807, 0.0130155021, 0.00744041242, -0.00329389633, 0.0166347865, 0.00838003401, -0.0134539921, 0.0125700515, -0.0178458542, 0.016676547, -0.0113241831, 0.00575605361, 0.0168575104, 0.0227318872, -0.00223769201, 0.0112406611, -0.0152288331, -0.0143100917, 0.0209500864, 0.0206995197, 0.0035949233, -0.0462711528, -0.0159526896, 0.0196415763, -0.00692536077, 0.00635114731, 0.00739169167, -0.00645555, 0.0103636803, 0.0065669124, 0.00680703809, 0.0087489225, 0.00497651566, -0.00180790189, 0.000583348505, -0.0148669053, 0.0050600376, 0.00906213, 0.0227318872, -0.00245693699, 0.00988342892, -0.00271272287, -0.00296502886, -0.0258222, 0.00481295167, -0.004353581, 0.00339655881, 0.00609362125, 0.0138159208, -0.0223838799, -0.00768401846, 0.0318218581, 0.0076074563, -3.67855391e-05, 0.00574561348, 0.00847747643, 0.00215591, 0.00867932104, 0.0035949233, -0.0337428637, 0.00423873821, -0.00529320259, -0.0134261511, -0.00710980501, -0.00986254867, 0.0037898079, -0.0147833833, -0.0156742837, 0.0200174246, 0.00324343517, -0.000285801623, 0.0342718363, 0.00594049785, -0.0122081228, 0.00621194392, 0.0053662844, -0.00449974416, 0.0217992254, 0.00973726623, -0.0065425518, -0.00456934609, 0.0153262755, -0.000514616957, 0.00257525966, 0.0331303701, 0.00168087904, -0.00610406138, -0.00954934116, -0.0174700059, 0.0227040462, -0.00841483474, -0.0358030722, 0.0110666566, -0.0671516359, 0.0105724856, -0.00525492197, 0.027729284, 0.0150339492, 0.00287454668, 0.0174004044, -0.0100504728, 0.0128693385, -0.004872113, 0.00499043567, 0.0216321815, 0.00963982381, 0.014602419, -0.0112406611, -0.00116843707, 0.0153262755, 8.09662524e-05, -0.0124795698, -0.0126118129, 0.0194188505, 0.0154097974, 0.00693928078, -0.00119453773, 0.00464590779, 0.00924309436, -0.00353924208, -0.00622934429, -0.0172472801, -0.0189177189, -0.00861668, 0.0181799419, 0.0103915213, -0.010071354, 0.0303741451, 0.00181312207, 0.0190986823, -0.00436402112, -0.0142404903, -0.00535584427, -0.0169549529, 0.00675135665, 0.0161336549, -0.00653211167, -0.0143518532, 0.00673743617, -0.00699844211, -0.00931965653, 0.00486515276, -0.000896990823, -0.0172612, -0.00409257505, 0.00273708347, 0.00100574328, 0.0110666566, 0.0142683312, -0.03062471, -0.00755177531, 0.016760068, 0.0123612471, 0.0164955817, -0.023553187, 0.0120271593, 0.00469114864, 0.0115051465, -0.0146163395, -0.0118670752, -0.0136558367, -0.0197946988, 0.0131547051, -0.0178736951, -0.0152149126, 0.00282582548, -0.00211936911, -0.00481643155, 0.010071354, 0.00475727, 0.00206368789, 0.00851923786, -0.00546024647, 0.00697408197, -0.00944493897, 0.0155072398, 0.0013215607, 0.00779538089, -0.00493127434, -0.0146859409, 0.0219662692, 0.0096328631, -0.00907605048, -0.00046024067, 0.00452758512, -0.0255159512, -0.0163424592, -0.00116843707, 0.00290238741, -0.00896468759, 0.00260310038, 0.00842875522, 0.0048199119, 0.0185836311, 0.0102871191, 0.0352462567, -0.00591613725, 0.03624852, -0.0109761748, 0.010809131, -0.000595093821, 0.0203375909, 0.00437098136, 0.00645206962, 0.02281541, 0.00760049652, 0.0051714, 0.0321559459, -0.00615278259, -0.000866975111, 0.00838699471, -0.012556131, -0.00585001567, 0.0136349564, 0.00437446125, -0.0075030541, -0.0326013975, -0.00262572081, -0.00498695578, -0.00654603168, -0.0196833368, -0.00874196272, -0.0331303701, -0.00533496356, 0.0184026677, -0.0032956365, 0.0048477524, 0.0125770122, 0.00043044248, 0.00159561704, 0.0204489548, -0.0170663167, -0.0215347391, -0.000627284579, -0.0127718961, 0.0113659436, 0.0210196879, -0.0414825641, -0.0239986368, -0.00531756319, -0.00341221923, 0.00879068393, -0.00915957242, -0.0029302279, -0.00715504587, -0.00530712306, 0.000126696686, -0.0115747489, 0.00493127434, 0.030652551, -0.00100139319, -0.00278232456, 0.00438142149, 0.00566209154, 0.0104332818, 0.0091734929, -0.00562729035, 0.0042770193, 0.00626762537, 0.00768401846, -0.00196972559, -0.00677919714, 0.0090203695, 0.0105724856, 0.0220219512, -0.00773969945, -0.00810858794, -0.0188063569, -0.0408422276, -0.00439534197, -0.0291491561, 0.0147416219, 0.0159805305, 0.00195928547, 0.000111145077, -0.0103149591, -0.0085957991, 0.0164677426, -0.031098, -0.00508439774, 0.0208665635, 0.00346268038, 0.00587089639, 0.00892292708, 0.020936165, 0.00287106656, -0.0105446447, -0.0101687955, -0.00909693073, -0.00163737801, 0.0148669053, -0.00129197992, 0.0098555889, 0.0151174711, 0.00171132968, 0.0129667809, -0.00604142, -0.0157717261, 0.00376196718, -0.0138716018, -0.0129250195, 0.006072741, 0.0194327701, 0.0160083715, -0.0218409859, -0.00739169167, -0.00473639, -0.0247224942, -0.000297111896, -0.00993911084, 0.00446146354, -0.00453802524, -0.0131407846, 0.0289542712, 0.0115956292, 0.00677571725, -4.54313667e-05, 0.0292326789, 0.0187228341, 0.00637202803, 0.0252375454, -0.0254463498, -0.0119714774, 0.0217713844, 0.0177066512, -0.00373412669, -0.0194327701, -0.00432226, -0.00904820953, -0.00272316323, 0.0202819109, -0.00107273483, 0.0145884985, 0.0303184632, 0.00767009798, -0.00964678358, -0.00592657737, -0.000747347309, 0.0151035506, -0.0162728578, 0.026448613, -0.00740561169, 0.00823387131, -0.0001981471, -0.00504263677, -0.00635114731, 0.0281051323, 0.00808074698, 0.0122916447, -0.0267131, 0.0112406611, -0.0126814144, -0.0286758654, -0.00819211, 0.00567949191, 0.0166069455, -0.00820603, -0.00369584584, 0.0061249421, 0.00821995083, -0.00503915688, -0.00530712306, -0.0110318558, 0.000631199626, 0.00785802212, 0.0025126182, -0.00844267569, -0.0102105569, 0.00617714319, 0.00156690634, 0.00484079216, -0.00946581922, -0.0128693385, -0.00367496535, 0.0263094101, 0.000113972645, -0.000834349368, 0.0204767957, 0.00545328669, 0.00180442189, -0.0204907153, 0.00865844078, -0.00347486068, 0.00392205082, -0.0102662379, 0.0152984345, -0.0163981412, -0.0203515124, -0.012799737, -0.00336175808, -0.00919437315, -0.00252827862, -0.0180268176, 0.0151731521, -0.0337428637, -0.00184792292, -0.0124865295, -0.000681225793, -0.0102871191, 0.000396294199, -0.0261841267, 0.0049243141, -0.016787909, -0.00288846693, 0.015200993, -0.00773273921, 0.0227597281, 0.00359840342, 0.0077745, -0.0209500864, -0.0193214081, 0.00474683, -0.00906213, -0.0139829647, 0.0322951488, -0.00041086704, -0.0257804375, 0.00988342892, -0.0135514345, 0.0134261511, -0.0120062781, -0.0136697572, -0.0259057209, 0.00496259518, -0.00597877847, -0.00543240597, -0.00768401846, 0.000486341276, -0.0169967134, -0.0266156569, 0.0124586886, -0.00888812635, -0.00264660129, -0.0207552016, -0.0120549994, 0.00478859106, -0.0266991798, 0.0150757097, -0.00764225749, -0.00776058, -0.00842875522, 0.0225370023, 0.0125700515, -0.00791370403, -0.0251540244, -0.00261528068, 0.0213398542, -0.00156081619, 0.0180546585, -0.0137045579, -0.019599814, 0.0177205708, -0.0214651376, -0.00324691529, 0.00861668, -0.0111989, -0.0315991342, 0.00878372416, -0.000985732884, -0.00821995083, 0.00811554864, -0.0271167886, -0.00783018209, -0.00598573871, -0.0202540699, 0.00248999777, 0.0650357455, 0.00966766383, 0.0228432491, -0.0268662237, 0.0207134411, -0.0158552472, 0.00237863511, 0.0296224467, -0.0103915213, 0.0150896301, -0.00611798186, 0.0227597281, -0.0153819565, -0.00555072865, -0.00198886613, -0.0123960478, 0.00600661943, -0.00199756632, -0.0122707644, -0.0150478687, -0.00114407658, -0.0280355308, 0.016022291, -0.00349226105, 0.00480251154, -0.00896468759, 0.00345920026, 0.00828955229, -0.0156603642, 0.0215208195, -0.0100087123, 0.0200591851, 0.0199199822, 0.00598921906, -0.0284531396, -0.00434314087, 0.0290934741, 0.0256412346, 0.00488255313, -0.0318218581, 0.0256412346, 0.0302627813, -0.0017209, -0.00520620076, 0.0169827938, -0.0311536826, 0.0158830881, -0.00289890729, 0.00337567832, -0.0256829951, 0.0232469384, -0.0377519168, -0.017386483, -0.00702976296, 0.00459370669, 0.00931269582, 0.0452688895, 0.00368540548, 0.00140682259, 0.0079206638, 0.00675831689, 0.00415173639, -0.0106003257, -0.00297372905, 0.00419697724, -0.0409535915, -0.00334261754, -0.0168018304, -0.00899948832, -0.00544632645, -0.0228710901, -0.00602749968, 0.00474335, -0.0122777252, -0.000300374464, -0.00046024067, 0.0106420871, 0.00119366765, -0.00212458917, -0.0185975507, -0.0261702072, 0.00486515276, -0.0107047288, -0.0126187727, -0.00433618063, -0.00769097824, -0.00206716801, -0.00893684756, -0.00419697724, 0.000744737277, 0.00644858973, 0.0290377941, 0.0148808248, 0.00113276625, 0.0297338106, 0.00343831978, -0.0199478231, 5.43762617e-05, 0.00476075057, 0.016050132, 0.0324621946, -0.013182546, -0.00857491884, -0.00367496535, 0.0119714774, 0.0211588908, 0.0123960478, 0.00173743034, -0.0182495434, -0.00263964129, -0.00325735565, -0.0134887928, 0.00429441966, 0.00737081096, 0.00971638504, -0.0171498377, 0.00372716645, -0.00519576063, -0.00772577943, -0.00291108759, 0.0156325232, -0.00698800199, -0.00151296507, 0.00200452656, -0.00263268105, 0.00655647228, -0.00314077293, 0.00685227895, 0.0167461485, 0.0150617892, -0.00579085434, -0.00831043255, 0.00489299372, -0.00157299649, 0.0323508307, 0.0140525661, -0.0094519, 0.0173308011, 0.0162589364, 0.0141221676, -0.00106490473, 0.0155907618, -0.00249521784, 0.0196554959, -0.00221159123, 0.0182217024, 0.00212980947, 0.0153680369, 0.0471063741, 0.000218810077, -0.00151296507, -0.00472595, -0.0163842198, -0.00118670752, -0.0098973494, 0.00145380374, -0.00508091785, -0.0163981412, 0.0212424137, -0.013593195, 0.0151313907, 0.00574561348, 0.02718639, 0.00553680863, 0.00399861299, -0.00520968065, -0.00952150114, -0.00906213, -0.0057073324, -0.0101339947, 0.021479059, 0.0130294226, -0.0185140297, 0.014518897, -0.0149643468, 0.00785802212, -0.00673395628, -0.010182716, -0.014630259, -0.0127092544, -0.00977206696, 0.01250045, 0.00722464779, 0.0515051931, 0.00274404371, -0.00390813081, 0.00669219531, 0.0225926843, 0.0238872748, -0.00726640876, -0.00634418707, 0.0018322625, -0.00358100305, 0.00394989178, 0.0148529848, 0.00396381179, 0.0286201835, 0.00247085723, -0.00347138057, -0.015284515, 0.0274787173, -0.0252653863, 0.00152079528, -0.00934749655, 0.0140595259, 0.00667131459, -0.00256655947, -0.0121524418, 0.00929877535, 0.00656343205, -0.0110248961]
19 Nov, 2021
jQWidgets jqxSplitter destroy() Method 19 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxSplitter is used for representing a widget that consists of a moveable split bar(s) that divides the display area of the container into two or more resizable and collapsible panels. The destroy() method is used for destroying the specified jqxSplitter. This method will remove the jqxSplitter from the DOM and will also remove all internal event handlers and styles. Syntax: $('#jqxSplitter').jqxSplitter('destroy'); Parameters: This method does not accept any parameters. Return Values: This method does not return any values. Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxsplitter.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxSplitter destroy() Method. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsplitter.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSplitter destroy() Method </h3> <div id='jqx_Splitter'> <div style="background-color: #006400"> </div> <div style="background-color: #000000"> </div> </div> <input type="button" style="margin: 28px;" id="button_for_destroy" value="Destroy the above jqxSplitter widget"/> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Splitter").jqxSplitter({ width: 300, height: 200 }); $("#button_for_destroy").jqxButton({ width: 300 }); $("#button_for_destroy").jqxButton(). click(function () { $('#jqx_Splitter').jqxSplitter( 'destroy'); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsplitter/jquery-splitter-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxsplitter-destroy-method?ref=asr10
PHP
jQWidgets jqxSplitter destroy() Method
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0215746425, -0.0248101335, -0.00832185, 0.0499876142, 0.0435731485, -0.00926141348, 0.016855631, 0.0182261225, -0.00472254399, 0.0450142846, -0.0336547494, -0.00882342178, -0.0061318893, -0.0413690619, -0.00618134, -0.00584931392, -0.0374130048, -0.00344565557, -0.0398996696, -0.0156264286, 0.00634735357, -0.0013899185, -0.0511179157, -0.0048073167, -0.0173925254, 0.0293878578, 0.000109773981, 0.00852671731, -0.0222104378, 0.00738228625, -0.017929418, 0.00531948498, 0.00763660436, -0.00714916131, -0.00514993956, 0.0153579814, 0.00650277, 0.0353219435, 0.0146232853, 0.00974885654, -0.00399844395, 0.0097771138, -0.00630496722, -0.0174772982, 0.00990427285, 0.028215168, 0.00909186807, -0.0283423271, 0.0144466748, 0.0318462662, 0.0135565624, 0.0217018016, -0.00838542916, 0.00574334804, 0.0340786129, -0.0327787623, 0.00598000502, 0.0191303641, -0.0278054345, 0.0269435793, 0.0311963409, -0.0543957949, 0.0143901603, 0.0101797841, 0.00672176573, 0.0399561822, 0.0238069911, -0.018664116, -0.0272120256, -0.00326727983, -0.0180424489, 0.0583235957, 0.00204690662, -0.0357740633, -0.0178729035, -0.00342976069, -0.0210660081, -0.0133799529, -0.0111899916, 0.0083571719, -0.0358305797, -0.015541655, -0.0341351256, -0.00916957669, 0.0111899916, 0.0030730092, -0.02797498, -0.034191642, 0.0476139821, 0.0053336136, -0.0486312509, 0.000503337709, 0.00926847849, -0.0291052815, -0.00615661498, -0.0284694862, -0.00188265962, 0.00743880123, -0.0386845917, -0.0167849883, -0.000301340333, 0.0216170289, -0.032044068, -0.0293030851, -0.0081099188, 0.0126593849, 0.0222104378, 0.0134223383, 0.0303203575, 0.0204584692, 0.0551870055, 0.0339090675, 0.00275511155, -0.00557380263, -0.00256613921, -0.00398431532, -0.00673942687, -0.0287944488, -0.0052982918, -0.021164909, 0.0359153524, -0.0105541972, 0.0285825171, 0.0712655559, -0.0331743695, 0.0227473322, -0.0142559363, 0.0339090675, 0.0148069588, 0.0253752843, -0.0119034955, -0.011832851, -0.0226766877, 0.00904948171, 0.000322312728, 0.0481508747, 0.00396665419, 0.0126593849, -0.0679311603, 0.0198226757, -0.0108932871, -0.0223517269, 0.0230299067, 0.00455653062, 0.0159372613, 0.022959264, 0.0397866368, 0.0312811136, -0.043064516, 0.0392497443, -0.0295008868, 0.0122708436, -0.00267916941, 0.0369326249, 0.0286672898, 0.00572921941, -0.0283281989, 0.0489420854, -0.00667938, -0.00283988426, 0.0143265808, -0.0135494974, 0.0182261225, -0.00162039418, -0.0539436713, -0.0118187228, 0.016742602, -0.00835010782, -0.0210377499, 0.0265338439, 0.00152502488, -0.0193846822, -0.0257002469, 0.00540778972, -0.0462293588, -0.0327787623, -0.0230016503, -0.059792988, 0.00759421801, -0.0145950271, -0.0327222496, -0.0127794789, -0.019963963, 0.00888700131, -0.0121719418, -0.00154180289, 0.00998904556, -0.0163893811, -0.0270424802, -0.0413973182, -0.035858836, 0.00708911428, 0.0181554798, 0.0182261225, -0.0181130935, -0.0267740339, -0.0179011617, 0.0164317675, 0.00431280956, -0.0132033424, 0.0149199888, -0.0134011451, -0.0036946754, 0.00772844115, 0.0121154264, 0.0101232696, 0.0180989634, -0.078556, 0.0566281416, -0.0238776337, 0.00915544759, -0.00947334524, -0.00021259395, 0.0423580743, -0.0299812667, 0.00598706957, -0.0470488295, -0.0202324092, -0.0128783807, -0.0214757416, 0.0149199888, 0.00924728531, -0.0182119943, 0.0240895655, -0.0541697331, -0.0159937758, -0.0156829432, -0.0212496817, 0.0189043041, 0.0283847135, -0.0338242948, -0.0108155794, -0.00526650203, -0.0163046103, 0.0142559363, 0.0116633056, -0.00598353753, 0.0355480053, -0.0277065337, 0.014708057, 0.0295856595, 0.0089929672, -0.0202324092, 0.0144961262, 0.052615568, 0.0293030851, -0.00779202068, -0.00719154766, -0.00156741124, -0.0115220184, 0.00115061237, 0.00701493816, -0.0196531303, 0.0239624064, 0.0132598579, 0.0149623752, 0.0151177924, -0.0127441576, -0.0139521677, -0.0048073167, 0.0264914576, 0.00991133787, -0.0189325623, 0.0432905741, 0.0303486139, 0.0199498348, -0.0163046103, 0.00434813136, 0.00318603939, -0.0230157785, -0.00786266476, -0.0235668011, 0.0302355848, -0.00904241763, -0.0441665575, 0.00189502235, -0.0194977131, 0.0309137646, 0.0289074797, 0.0173077527, -0.0149623752, 0.00440817885, 0.0129278312, 0.05188087, 0.0396170914, -0.00144025229, 0.0236374456, 0.00818056241, 0.0252198689, 0.0173783973, -0.0244145282, -0.0293596, 0.0155133978, 0.0241460819, 0.0575888976, 0.000448588689, 0.015781844, -0.0060011982, 0.00255377661, -0.030970281, -0.0202324092, -0.0119953323, 0.0115220184, -0.00139168464, -0.039278, 0.0220550224, 0.0490833744, 0.0175620709, 0.000120094606, -0.00600826275, 0.0418494381, -0.030376872, -0.0348698236, -0.0155133978, -0.00648157671, -0.000551905367, 0.0425558798, 0.00034505123, -0.0189749487, 0.00339443889, 0.00352866226, -0.00613542181, -0.0426689088, 0.0416798927, 0.0613188967, -0.0277913064, 0.00073999475, -0.00431280956, -0.00769311935, -0.00657341396, -0.0122143282, 0.00434106681, 0.0362261869, -0.00746705895, -0.0172371082, -0.0187065024, 0.0130479261, -0.0321853571, -0.00036558212, 0.00287344, -0.0276641473, -0.0256578606, 0.00888700131, -0.00369820744, -0.00410794187, -0.0441100448, -0.0340220965, 0.0116421124, 0.0447317101, 0.0216311589, 0.00143318786, -0.00581045961, 0.0227332041, 0.0162198376, 0.0218007043, -0.0513439775, 0.0171664655, 0.000483027572, -0.0142559363, -0.0261382386, 0.0313658863, 0.0121154264, 0.00593055459, -0.0169404037, -0.00690190773, -0.0257567614, -0.015301466, -0.0492529199, -0.0370456539, 0.0134717897, 0.0224647559, -0.0457489826, -0.0181413498, 0.0466532223, -0.0409169383, -0.0184521843, 0.0122213922, -0.0235102866, -0.0270707384, 0.0236091875, -0.0200628638, 0.0465119369, 0.00350393681, 0.00511815, 0.00907067489, -0.010759064, -0.00815936923, -0.0111476053, -0.0201617666, -0.00677828118, -0.00812404696, 0.0337677784, -0.0183391534, -0.0166578293, 0.039447546, 0.00696548726, -0.00544664357, -0.00557027059, 0.0160644203, 0.000632262789, 0.0117127569, -0.0181130935, 0.0103917159, -0.00620253338, 0.00124951382, 0.00120094605, -0.0464554206, -0.0017457871, 0.0100314319, -0.000928967143, 0.0250361934, 0.00545017608, -0.0215605143, 0.0537176132, 0.0309985373, 0.013627206, 0.0616579838, 0.0578149594, -0.0146091562, -0.0182402525, 0.0413408019, 0.0122991009, -0.0434601195, 0.0642576814, -0.0354914889, -0.0098195, -0.0159937758, -0.0282716844, 0.00998904556, -0.00218642829, -0.0360001251, -0.000670675421, -0.0128783807, 0.0043657925, -0.000422980287, 0.000516583445, 0.0419059545, -0.0179011617, -0.0144325467, -0.00565857533, 0.00950866751, -0.0223093405, 0.0324679315, 0.0135283042, -0.0436296649, 0.00761541119, -0.0257143751, -0.0196531303, 0.0322983861, 0.00794037338, -0.0066228644, -0.0290487669, -0.02773479, -0.0150895342, 0.013627206, -0.00600473071, 0.00244427845, 0.000462717464, 0.0181130935, -0.00664759, -0.00119564775, 0.00919783395, -0.0115502756, 0.0299247503, -0.0262653977, -0.0125110326, 0.00674295891, -0.0044470327, -0.0221256651, -0.00762954, -0.0246829744, -0.0216452871, 0.0435166359, 0.0353502, 0.0525307953, 0.0213485826, 0.00791918, -0.00247077, 0.00789092202, -0.00929673575, 0.0225212723, 0.0344459601, 0.0363957323, -0.0361131541, 0.00942389481, -0.0040408303, 0.0160361622, -0.00976298563, 0.00301296194, 0.0233972557, 0.0254883152, -0.0315636881, -0.0482921638, 0.0403517894, 0.0129772825, 0.0208540764, -0.0319027789, -0.0252198689, 0.0406908803, -0.0150895342, 0.0203313101, 0.0201617666, -0.0132527938, 0.0472748913, 0.00392780034, -0.0332591422, -0.0482356474, -0.00660520373, 0.00968527701, -0.0489420854, 0.00864681229, -0.0158383604, -0.040775653, -0.0187206306, -0.0227473322, -0.0537741259, -0.0380629264, 0.0347285345, 0.000241513786, 0.00336088287, 0.0280597527, -0.0266892612, 0.00820175558, 0.022238696, 0.0396170914, 0.035039369, -0.0331178531, -0.0232842248, -0.0188195314, -0.0017069329, 0.00748118758, -0.00665818667, 0.0315636881, 0.0386563353, -0.00482497737, -0.00271625747, -0.0217300598, 0.0181130935, -0.0325244479, 0.0231005512, 0.0172653664, -0.0169262756, -0.0372434594, -0.00584931392, 0.0317614935, 0.0245699435, -0.000600031519, -0.00323195779, 0.00252198684, 0.0315354317, 0.0222952105, 0.00800395291, -0.00872452, 0.0016106806, -0.0262371395, 0.0123838736, 0.00570802623, -0.00110027858, 0.0066723153, -0.0279184654, 0.00734696444, 0.00282928767, 0.0155840414, 0.0182402525, 0.0361414142, -0.0194129404, 6.72220776e-05, 0.0317897499, -0.0260817241, 0.0363674723, 0.00847726688, -0.0114089884, -0.0048073167, 0.0109568667, 0.0341068693, 0.00188972405, 0.0307442192, 0.000652131392, -0.00162657548, 0.0369043685, 0.0114937602, -0.0303486139, 0.0041856505, 0.0181130935, -0.00936737936, -0.0102151064, 0.0221821815, -0.00511815, -0.0446469374, 0.0206986591, -0.002869908, 0.0144466748, 0.0216452871, -0.00981243607, -0.0261241104, 0.0151319206, -0.0134223383, 0.00305888033, 0.032891795, -0.0273391847, 0.00221821805, 0.0074741235, 0.0141852926, -0.0140016191, -0.0206280146, 0.00320546632, -0.00367701426, 0.0149199888, 0.0230864231, -0.00702906679, -0.015301466, -0.0191303641, 0.043008, -0.0173218809, -0.0143548381, -0.0099749174, -0.0149199888, 0.0183815397, 0.00230652303, -0.00974179246, 0.0208964627, 0.0108155794, 0.0252057388, -0.000833156344, 0.0258697923, -0.0146656716, -0.018522827, -0.00403729826, -0.0145667698, -0.0180283207, 0.0032213612, 0.0154568823, 0.00331496447, -0.0232842248, 0.00200275425, 0.0037123363, 0.0188760478, 0.0216452871, 0.0040549594, 0.0178587753, 0.028215168, 0.0217724461, 0.00262795272, 0.0422450453, -0.0143548381, 0.0213627126, -0.00412913505, 0.000467574224, 0.0422733, 0.000299353473, -0.0298117213, 0.040182244, 0.0186923724, 0.0228603631, -0.01063897, 0.0098195, 0.0223093405, 0.019610744, 0.0171805937, 0.039447546, -0.00724099856, -0.0193846822, 0.0285542589, 0.0318462662, 0.010759064, -0.0044823545, 0.0135353692, 0.0581540503, -0.0156829432, 0.0124898395, -0.00164511951, 0.0210801363, 0.0177881308, 0.0178446453, -0.0142700654, -0.0324396752, 0.0101515269, 0.00709971087, 0.0311115682, 0.0100738183, -0.0156970713, 0.0238352474, 0.0280738808, 0.0207693037, 0.0138391377, -0.0102433637, -0.00255201035, 0.000480378425, 0.0255024433, -0.0132104075, -0.0040055085, 0.0268446766, 0.0241178237, 0.0259121787, -0.0200487357, -0.0149623752, 0.00255730865, 0.0249231644, -0.0133799529, -0.00271449145, 0.0103846518, -0.00282752165, 0.000677739794, 0.0281445254, 0.0134505965, 0.0285260025, 0.0042704232, 0.0111405412, -0.00420684367, -0.011239443, 0.0129348962, 0.0357175507, 0.0265197158, 0.0244710427, 0.0158101022, 0.0185086988, -0.0176185854, 0.0047578658, -0.00769311935, -0.000496273336, -0.0118964305, 0.0223658551, -0.00977005, -0.0487725399, 0.00498392619, -0.0322418697, 0.0310267955, -0.0115714688, 0.00342093036, -0.00456006313, -0.00850552414, 0.00841368735, -0.000593850156, -0.000379490142, -0.0302921, -0.0169545338, 0.00231005508, -0.0312246, -0.00755889621, 0.0269577075, -0.0104341023, -0.0149058606, -0.0057256869, 0.0177033581, -0.00584224937, -0.0189184342, -0.0223941132, -0.00200805254, 0.0205008555, 0.0137967514, -0.00569742965, -0.00712796813, 0.0326939896, -0.000902475673, 0.000286328519, 0.02079756, -0.00926141348, -0.00824414194, 0.0369043685, 0.0283564571, 0.014708057, 0.0147645725, -0.0244993, 0.0109498026, -0.0180424489, -0.0205856282, -0.0287944488, -0.0236374456, 0.0131256348, -0.0205291137, 0.0133728879, 0.00263854931, 0.0290770251, -0.0163187385, 0.00848433096, 0.0237080883, -0.00528063066, -0.00691250432, -0.011232378, -0.0111758634, -0.0256861169, -0.00705732452, 0.0164035112, -0.0142630013, 0.0184097979, 0.00186323258, 0.0414255746, 0.0186076, 0.00246547163, 0.0514852665, 0.00450354768, 0.0258556623, 0.0074246726, 0.00319133769, -0.0169686619, -0.00531948498, -0.02773479, 0.0221256651, -0.0133305015, -0.0349545963, 0.00195330358, -0.0194129404, -0.0179011617, 0.0605842, 0.0117904646, -0.0368761085, -0.00974885654, -0.00779202068, -0.00295114843, -0.0116209192, -0.0115008252, -0.0191444941, -0.0398148969, 0.00395252556, 0.0133163733, -0.0120447828, -0.00413266756, -0.00879516453, -0.0012821866, 0.0167002156, 0.00144731661, 0.0234537702, 0.0125746122, 0.00159566884, -0.0444208756, 0.0329765677, 0.0471618585, 0.0235102866, -0.0069831484, 0.0116421124, -0.011592662, 0.00437992113, -0.0276076309, 0.00338737434, -0.00124686467, 0.00745293032, 0.00976298563, 0.00523471227, -0.0151319206, 0.0288792215, -0.0166578293, 0.0274946019, -0.0011753377, -0.00946628116, 0.0123980027, 0.0279184654, -0.00675002346, 0.0170393065, 0.00317014451, -0.00230122474, 0.0170816928, -0.0028469488, 0.0235385429, 0.0203030538, 0.0170534346, 0.00673942687, -0.0224930141, 0.0195966139, 0.0125887413, 0.012193135, -0.00489915349, 0.00934618618, -0.00780615, -0.0123697445, 0.0143619021, 0.0107025495, -0.00618487224, -0.0284977444, -0.0136554632, 0.0056091249, 0.0148917316, -0.0255165715, 0.0182543807, 0.0193988122, -0.0066723153, -0.0252763834, -0.0264490712, -0.0136907855, 0.0112465071, -0.0243156254, 0.0255024433, 0.0161633212, -0.0263501704, 0.00243191584, -0.00473667262, 0.0658401, -0.0135424333, -0.0275935028, -0.0132033424, 0.0283140708, -0.0297552049, -0.0101232696, -0.00947334524, -0.0488573126, -0.0230157785, -0.0027568778, -0.0142700654, -0.00322842575, -0.00724806311, -0.00570802623, 0.0213768408, -0.0366500504, 0.0266044885, 0.00708558178, 0.00456006313, -0.00691250432, -0.0043516634, 0.00992546603, 0.00813817605, -0.00398784736, 0.0347002782, 0.0231288094, 0.00122302235, -0.0176327154, 0.0164317675, -0.0179152898, -0.0270000938, 0.0190314632, 0.022945134, -0.0200628638, -0.0192999095, 0.0119741391, -0.00280986074, 0.0161915794, -0.0215887725, -0.0124545172, -0.032044068, 0.025940435, -0.0121224914, 0.00954398885, 0.00379357673, -0.0052982918, 0.0127582857, -0.0355762616, 0.0133022442, -0.00364875677, 0.0117480783, 0.0256296024, -0.0365370177, -0.0025767358, 0.0244286563, 0.0185793433, -0.00687011797, 0.00815936923, -0.0146656716, -0.0228462331, -0.0586061701, 0.00981243607, -0.0159655195, -0.00916957669, -0.0324961878, -0.00982656516, 0.0110840257, -0.00993253104, -0.0161068067, -0.0359153524, -0.0133022442, -0.00513581047, -0.0288792215, -0.014340709, 0.00726925628, -0.0168415029, 0.0129207671, 0.00102963462, 0.0198368039, -0.00220232317, -0.0166295711, 0.0241743382, -0.005379532, 0.000980184, -0.00552081969, 0.00752357394, 0.0236515738, -0.0238211192, -0.00455653062, 0.0201193802, -0.00443290407, -0.0332308859, -0.00176168198, 0.0188054033, 0.0106248409, -0.0175620709, 0.00751651, -0.00179788691, 0.00931792893, -0.0151743069, 0.0129702175, -0.00610716408, 0.000225398151, 0.0225212723, 0.00957224704, -0.0277065337, -0.0023330145, -0.00173607352, 0.00544311153, -0.00844900869, 0.0181837361, -0.0138320737, -0.0128995739, -0.000563826528, -0.00109233113, 0.00522764772, -0.0115361465, 0.0227755904, 0.0191444941, 0.0229310058, -0.0132104075, 0.0251350962, 0.00456712721, 0.00547843333, -0.00454593403, 0.00455653062, 0.0108297076, 0.0196813866, 0.0103775868, 0.0131821493, 0.00670763711, 0.00840662234, 0.0238776337, 0.0172371082, 0.0157959741, -0.00519939, 0.00168662285, -0.0111334771, 0.0100314319, 0.0113736661, -0.000107124833, -0.00648157671, 0.0224082414, 0.0374977775, -0.030602932, 0.00599766616, -0.0218572188, 0.0193281677, -0.0183674116, -0.0308289919, -0.00634382106, -0.0280597527, 0.0138885882, -0.0355480053, 0.0221256651, 0.0111617344, 0.00820882, 0.0042668907, 0.000889671443, -0.00991133787, 0.0109498026, 0.0146798, 0.0317614935, -0.00769311935, -0.00158242311, 0.000715710863, 0.0160361622, 0.0018473377, 0.0253328979, -0.00412207097, -0.00316131394, -0.037186943, 0.0202465393, 0.0199498348, 0.00986895151, -0.0030005991, -0.00478612352, 0.016728472, 0.0112818293, 0.0236374456, -0.020444341, -0.00352159771, -0.00226237043, 0.00866800547, 0.0122143282, 0.00650983443, 0.0052029225, 0.0056938976, 0.0116279842, 0.0130479261, 0.0298399776, -0.00182084623, -0.0202182811, -0.0145243835, 0.0362261869, 0.00471547944, 0.0200628638, -3.16241785e-05, -0.00341209979, -0.0222810823, 0.0042704232, -0.0397866368, 0.00192504597, -0.0216876734, -0.000633587362, -0.000694076181, -0.00234714313, 0.0302921, -0.0183956679, -0.00607890636, 0.0117551433, 0.087881, 0.00788385794, 0.0162057076, -0.0013784389, -0.00241955323, -0.0360566415, 0.00697608385, 0.0240895655, 0.011599726, -0.0134576606, 0.0088163577, -0.0147645725, 0.0258980487, -0.0165871847, -0.000468457292, -0.0267316476, -0.0127159, 0.00265267794, 0.0084560737, -0.0155133978, -0.0156264286, 0.0156264286, 0.0108014503, -0.0115361465, 0.0123556163, -0.0275511164, -0.00401257304, -0.0290205088, -0.0664617717, 0.00745293032, 0.0126452558, 0.0141852926, 0.0156123, 0.00375825493, -0.0064921733, 0.0263360422, -0.0043657925, 0.0133305015, -0.00461304607, -0.00197626278, 0.00815230515, -0.0154568823, 0.0213627126, 0.0131680211, -0.0146798, 0.0145526407, -0.0266327467, -0.043742694, -0.0109427385, 0.0120942332, -0.0203454401, -0.000447484868, -0.00794743747, -0.0186358579, 0.0159090031, 0.0142700654, 0.00418918254, -0.0377520956, -0.000381697755, 0.00439051772, -0.0232418384, -0.0205008555, -0.00891525857, -0.0323831588, 0.0271131247, -0.00460598152, -0.0211225227, 0.0120942332, -0.035632778, 0.0128501235, 0.0185086988, -0.0135989487, -0.0164035112, 0.00891525857, -0.00210165558, 0.00282045733, -0.00726925628, 0.0136130769, -0.0137967514, -0.001090565, -0.0185086988, -0.00265797623, -0.0157112014, -0.0027974979, -0.0108226435, -0.00307124294, -0.00771431252, 0.00811698288, -0.00218642829, 0.00843488052, 0.0112959575, -0.0274380855, -0.0245840736, -0.00711737154, 0.000887022296, -0.00774963433, 0.0103069432, 0.005376, 0.00602592388, -0.0102504278, 0.0391649716, -0.0114089884, 0.01387446, 0.00813111197, -0.0177033581, -0.0146798, 0.0178729035, -0.00383243104, -0.0159655195, 0.0206704009, 0.018536957, -0.0046766256, -0.0180424489, 0.016375253, -0.000792536128, 0.00530535588, -0.0144042885, -0.0255165715, -0.0202465393, 0.0302355848, -0.0252481252, -0.0129278312, -0.00487089623, -0.00851258822, 0.00738935079, -0.00984069332, 0.0243297555, 0.0298682358, 0.0103422655, 0.00454593403, 0.00300589739, 0.00476139784, -0.030970281, 0.0129419602, -0.00292642298, -0.00890112948, -0.0293030851, 0.0175338127, -0.0121012982, 0.00267387112, -0.0133728879, 0.0220408924, -0.0111476053, -0.0244710427, -0.00334322196, 0.0247253608, -0.00753063848, 0.0175055563, 0.00725512719, -0.00652043102, -0.00328494073, -0.0124191958, -0.00957931112, 0.00789798703, 0.00904241763, -0.0195401, -0.0100031747, 0.0103422655, -0.000505545351, -0.00320546632, 0.0258697923, 0.0291900542, 0.017816389, -0.0148493452, -0.00782027841, 0.024513429, -0.0124615822, -0.0285966452, 0.00602592388, 0.0104623595, -0.00392073579, -0.00104288035, 0.029529145, -0.0212779399, 0.0165871847, 0.00163187378, -0.012306165, 0.00672176573, 0.0122355213, -0.00679947436, -0.0232842248, 0.0132951802, -0.0124615822, 0.0142347431, -0.00751651, 0.0102151064, 0.0140228122, -0.0209105909, 0.0145102544, 0.0114866961, -0.0195966139, 0.00295114843, 0.00807459652, 0.0125039686, 0.0201900229, -0.00719861221, -0.00556320604, -0.00722333742, 0.00400904054, 0.0112535711, -0.0182826389, 0.0100384969, 0.00491328258, 0.000921019702, 0.000979300938, -0.0189184342, -0.0262653977, -0.015428625, -0.00762247574, -0.0176892299, 0.0182685088, -0.00230122474, -0.00444350066, -0.0174772982, 0.0321005844, -0.0290487669, 0.0031577819, -0.0257143751, -0.000347921159, 0.015061277, -0.00734696444, -0.00408321666, -0.0112182498, -0.0124262599, 0.00601179479, -0.00375472265, -0.015428625, -0.00171046518, -0.00888700131, 0.0216029, -0.00234714313, 0.00503337709, 0.0834728181, -0.0035092351, 0.00670410506, 0.00960756838, 0.00229239417, -0.0187206306, -0.0373564884, 0.00274804723, 0.0129490243, 0.042923227, 1.39011163e-05, 0.0345307328, 0.00343329296, -0.00010502759, 0.0109144803, -0.0139592327, -0.0310267955, 0.0154427541, -0.0203595683, 0.0261099804, 0.0188054033, -0.031450659, 0.0236233156, 0.0161774512, -0.0107025495, -0.00613895385, -0.040182244, -0.0169969201, -0.0098618865, -0.0216735452, -0.00036756898, 0.00151089614, -0.0207269173, 0.0405213349, 0.000505103788, 0.0105118109, -0.00243014982, -0.00989014469, 0.0192857813, 0.0108085144, 0.0315919481, 0.0023736346, 0.0301508121, -0.00687718252, 0.0232700966, 0.0173077527, -0.00570449419, -0.00798276, -0.00561972149, -0.0116633056, 0.015428625, 0.00544311153, -0.0164882839, 0.00820882, -0.0241319519, 0.0211507808, -0.00284871482, 0.0236233156, 0.00257143751, -0.000921902712, -0.023665702, -0.00112588692, -0.00356045202, 0.0414255746, 0.025460057, -0.0208964627, -0.000629172137, -0.00398784736, 0.00962169748, -0.00671823369, -0.00709971087, -0.00786972884, 0.0246971026, 0.00492034666, -0.00166542968, -0.00667938, 0.0123485513, 0.00524530886, -0.000766486162, -0.0362827, -0.0335134603, -0.0120659759, -0.0108226435, -0.0195259713, 0.00162216031, 0.00234007882, 0.0117692715, -0.0317897499, -0.00336264912, -0.0192575231, -0.0391932279, 0.0226201732, 0.00912012625, -0.0175196845, -0.00849846, -0.0117904646, 0.00579279894, -0.0236233156, 0.0260675941, -0.00527003407, 0.00546077266, 0.0185793433, -0.0181413498, 0.0183815397, 0.0095157316, -0.0203878265, -0.0107731931, -0.00095104333, -0.0302355848, -0.0108226435, -0.00900709536, -0.0025943967, 0.0200628638, 0.0183956679, 0.00111175817, -0.00867507, -0.0263360422, -0.0211083945, 0.0025590749, -0.0203454401, 0.00289993151, 0.0242025964, 0.005379532, 0.0371021703, 0.00219702488, 0.0138108805, 0.0137967514, -0.00492034666, -0.00992546603, 0.00865387637, 0.0131821493, -0.00566917192, -0.00600826275, -0.0194270685, -0.00891525857, 0.019017335, 0.016149193, 0.00514993956, -0.0089788381, 0.0239765365, 0.00456359517, -0.0129772825, 0.026661003, 0.0224365, 0.00847726688, 0.0114655029, -0.0292465705, 0.0108579658, -0.0235950593, -0.00693723, -0.014467868, -0.00895764492, -0.00302709057, -0.0115502756, -0.0197520312, 0.0353784598, 0.0177598726, 0.00409734529, 0.0301225539, -0.00154003676, 0.00590229686, 0.00832185, 0.00619193679, 0.0140934559, -0.0215746425, 0.0145950271, -0.0244427845, -0.00725512719, 0.00613895385, -0.00668644393, -0.0258980487, 0.00417505391, 0.034304671, 0.00115767668, -0.00466602901, -0.0212920681, 0.0221963096, -0.0211366508, 0.00410794187, 0.0175196845, -0.00890112948, -0.0166437, 0.0304333866, 0.0264490712, -0.0151036633, 0.0322136134, 0.00929673575, -0.0135494974, -0.0220550224, -0.0171240792, -0.00108350068, -0.0172794946, -0.0185510851, -0.0381477, 0.00589876482, -0.000860972388, -0.0158101022, 0.0135212401, 0.00713150064, -0.0106177768, 0.0135565624, -0.00333085936, 0.0195259713, 0.0128642516, -0.010518875, 0.0195401, -0.0166437, 0.0319310389, -0.0114301816, 0.0108297076, 0.0175903291, 0.00389954261, 0.0140510695, -0.00897177402, 0.0222952105, 0.000668026274, -0.00688424706, 0.00129190006, -0.00477199443, -0.0106107118, -0.0125251617, 0.00581399212, -0.00745293032, 0.00290876208, -0.000911306182, -0.00494860439, 0.0107096136, -0.00495213643, 0.0175055563, -0.0217724461, -0.000940446742, 0.0139662968, 0.0171382073, 0.0120447828, 0.0190597214, 0.00886580814, -0.00173607352, -0.00707498519, -0.000627847563, -0.011359537, 0.00914838351, -0.000473314052, 0.0176609717, -0.003288473, -0.0202889238, 0.00348274363, -0.0241178237, -0.0084560737, 0.0169262756, 0.0227614604, 0.0308289919, -0.0100102387, 0.0248101335, 0.0193422958, -0.0126028694, 0.0107873213, 0.00505457027, 0.00581752416, 0.0109498026, 0.0154427541, 0.00607184228, 0.00385009195, 0.00699727703, 0.00128395262, 0.0145526407, 0.0174914263, -0.028695548, -0.00687718252, 0.0102786859, 0.0271413811, 0.00820882, -0.0134152742, 0.00659813918, -0.0136695923, -0.000489208905, -0.0235244147, 0.000846843584, 0.0136766564, -0.0014799895, -0.0161068067, -0.0219278634, 0.0240189228, -0.00157977396, -0.0110628325, -0.019243395, -0.0220550224, 0.000416136667, 0.00435519591, 0.0270000938, -0.00383949536, 0.0178587753, -0.00423156889, -0.00794743747, -0.0144466748, -0.00856910367, -0.00278160302, 0.0238493774, -0.0201193802, 0.0157959741, 0.0163187385, -0.00714916131, 0.00283105392, 0.00358694349, -0.0275369883, 0.0216452871, -0.0168838892, 0.0114584388, 0.00874571316, -0.0136060128, 0.00286107743, -0.0215605143, 0.0116774347, -0.00407968462, 0.00540072517, 0.00126894086, -0.00486383168, -0.00577867, 1.51084096e-05, 0.00658754259, -0.00388541375, -0.0149906334, 0.0235668011, 0.0132104075, -0.0132951802, -0.00628377404, 0.0114231165, 0.000754565059, 0.0125110326, -0.00293348753, -0.0163469948, 0.00573628349, 0.00335735083, 0.00365935336, 0.00784147158, 0.00974179246, 0.0122355213, 0.00564091466, -0.0296421759, 0.00657341396, -0.0210942645, 0.0125110326, 0.0191162359, 0.0199922211, 0.0337395221, -0.000543957925, -0.000612394186, -0.00316837849, -0.00813111197, 0.0141005199, -0.0133799529, 0.000335558463, 0.0139239104, 0.000262486195, 0.00357281463, 0.000806223368, 0.0295574032, -0.00902122445, -0.00664759, 0.0012768883, 0.00807459652, -0.0201052502, -0.00487442827, 0.0055137556, -0.00106937182, -0.014708057, 0.0294726305, 0.00419977913, -0.01028575, -0.0147504434, 0.00808872562, -0.00304828375, -0.00890112948, 0.00024195532, -0.00265444419, -0.0042209723, -0.00437285658, -0.00791918, -0.000118107753, -0.0261947531, -0.0173642673, 0.0176892299, 0.0158242304, 0.0128501235, -0.0030730092, 0.00357281463, -0.00573628349, 0.00181908009, 0.0122708436, 0.00285931141, 0.0106954845, -0.00109409727, -0.0111405412, 0.0296139177, 0.0234255139, 0.0263925567, 0.000379269361, -0.018664116, -0.00170781603, 0.00656988146, -0.00427395524, -0.0283564571, -0.00406202348, 0.0127653508, 0.0123414872, -0.00986895151, -0.0162480939, -0.00929673575, -0.0121224914, 0.00594468322, 0.0139592327, -0.0299530085, 8.68147181e-05, -0.0117056919, 0.00909893308, -0.00880222861, -0.0144254817, -0.00104111433, -0.00942389481, -0.00428455183, 0.00909186807, 0.00240895664, -0.00527356612, 0.0303203575, -0.00912719, 0.0114443097, 0.0268446766, -0.0126169985, -0.0032708121, 0.0069336975, -0.00865387637, 0.0115220184, 0.0164741538, -0.0100879474, -0.0225354, 0.0123909377, 0.00583165279, -0.00664052553, -0.0127724148, 0.0279891081, 0.0120518478, -0.0122708436, 0.0271837674, -0.00326727983, 0.00525943749, 0.0213627126, 0.0132033424, -0.00315424963, -0.000743085402, -0.00428455183, -0.00166984496, -0.0194411986, 0.00791211519, 0.0286814179, -0.0223941132, -0.00719154766, -0.00274274894, -0.0273674428, -0.0127370935, 0.00206456752, 0.00781321432, 0.00571155827, -0.0335134603, 0.0337677784, 0.00399138, -0.00779202068, 0.0191727504, 0.0182402525, 0.00691250432, 0.0179011617, -0.0127370935, -0.0255307015, 0.00592349, 0.0103917159, 0.0116562415, -0.00209635729, 0.00112058863, -0.0287520625, 0.00642152922, -0.0205997583, -0.0222104378, -0.0119953323, -0.0105047459, -0.0132104075, 0.0141711636, 0.00113913266, 0.0281869117, 0.0109851249, 0.00844900869, -0.00865387637, -0.00471901195, 0.0171099491, -0.00688071456, -0.017802259, -0.00333085936, -0.00365228904, -0.0457207263, 0.0199074484, -0.0151177924, -0.000626964495, 0.0180141907, 0.00435519591, 0.0122849718, -3.53909331e-06, -0.0145667698, -0.0260675941, -0.0169969201, 0.0135989487, -0.00255554263, 0.0144961262, 0.0218289606, 0.0175196845, 0.015781844, 0.0106672272, -0.0048073167, 0.0283988435, 0.0160361622, -0.0143548381, 0.0234537702, -0.0246405881, -0.00447882246, 0.005559674, -0.0196672585, -0.0159372613, 0.0116562415, -0.00858323276, 0.0168980174, -0.0047931876, 0.000482144533, -0.00415386073, -0.00383243104, -0.0111758634, -0.0277771764, 0.0102504278, 0.0296421759, 0.00827239919, 0.000509960577, -0.0139451036, 0.0173360109, 0.00134135084, 0.00370173971, 0.0121295555, 0.002779837, 0.0164741538, 0.0155133978, 0.00194623915, -0.00922609214, 0.00797569472, -0.00462364266, 0.000513934297, -0.0140581336, -0.00459538493, 0.0176751, -0.00476139784, -0.00374765834, 0.00759421801, 0.0109498026, 0.0148493452, -0.00561972149, -0.0154427541, -0.0118540442, 0.00976298563, 0.00790505111, 0.0236515738, -0.0193846822, 0.00494154, 0.00530182384, 0.00153297232, 0.010879159, -0.00563738216, -0.0138956532, -0.0168980174, 0.00157270953, 0.00136077788, 0.0207410455, 0.000634911936, 0.00266857282, -0.00724099856, -0.0150754061, 0.0204584692, -0.0108226435, 2.74572922e-05, 0.0232277103, 0.000285003945, -0.00175903284, 0.00275864382, -0.0138038155, -0.0069336975, -0.0154992687, 0.0262512695, -0.00535480678, -0.00600826275, 0.0101868482, -0.0102786859, 0.00295644673, -0.00902828854, -0.00118416816, -0.0192857813, -0.0127229644, -0.0008503758, -0.0199357048, -0.0280880108, 0.00153738761, 0.028695548, 0.0156405568, -0.00375472265, -0.00099607883, 0.0129914107, -0.00152944017, 0.00361520099, 0.00146056234, 0.0278902072, 0.00700080954, -0.0210942645, 0.0151460497, 0.00241425494, -0.0229027476, -0.00957224704, -0.0102221705, 0.0168415029, -0.00767899072, -0.00243191584, 0.000762954, 0.00325491722, -0.00982656516, 0.00095104333, -0.00252022082, -0.0127653508, -0.0157677159, -0.00863974728, 0.0161209349, 0.0117410142, 0.0177598726, 0.00766486209, -0.00127777131, -0.0182826389, -0.00256613921, -0.00597647298, -0.0018702969, 0.0196672585, 0.0182826389, 0.00785560068, -0.00262442045, 0.0104129091, -0.0200204775, -0.0108932871, -0.00617780816, -0.00657341396, 0.00713150064, -0.00349334022, -0.00892938767, 0.00333792367, 0.0045812563, -0.00919077, 0.000277056504, -0.0113030225, 0.0180424489, 0.0319875516, 0.00618487224, 0.00227649929, -0.00530888839, -0.0178305171, -0.0030677109, 0.00823707692, 0.0334286876, -0.0102221705, 0.00368407881, -0.00230652303, 0.00356928236, -0.000257408654, -0.0166013129, -0.0227755904, -0.0113100866, -0.025954565, -0.0016327569, 0.0025820341, -0.00249726139, 0.0156123, 0.0191586222, -0.00355868577, 0.0184521843, 0.0226201732, 0.00223234692, -0.0125746122, -0.00529475929, 0.0279891081, -0.022719074, -0.00964995474, -0.00674295891, -0.0073752217, 0.0111122839, -0.0265621021, -0.0233831275, -0.00728338491, 0.0156970713, -0.00984775834, -0.00587757165, -0.00710324291, 0.0127653508, 0.0149341179, -0.00166631269, 0.00244251243, -0.016502412, -0.01746317, 0.0198933184, -0.0135000469, 0.00305534806, 0.0107943863, 0.00695842318, -0.0362544432, -0.0147504434, -0.0179859344, -0.0146656716, 0.0195259713, 0.00561972149, 0.00386068854, 0.00338207604, 0.0012998475, -0.00355338748, 0.0123697445, 0.00569742965, -0.00126805773, 0.00875984225, -0.015301466, -0.0141358422, 0.00625551632, -0.00777789205, 0.0219561197, -0.00258909841, 0.00029427596, 0.0192575231, -0.0183250252, 0.0199357048, 0.0162622239, -0.0140440054, 0.0146656716, -0.00488149282, -0.0230440367, 0.0293878578, -0.0300942957, 0.00909893308, -0.0119388169, -0.0121790059, 0.0365652777, -0.00666878326, -0.000326727983, 0.0245558154, 0.00526296953, -0.0246547163, -0.00762954, 0.0128783807, -0.0213909689, -0.0137261078, 0.0213061962, -0.0108438367, -0.000554554514, -0.0142347431, 0.0108650299, 0.00891525857, 0.00632969243, -0.00122213922, 0.0244993, 0.00484617054, -0.00148263865, -0.00308183953, 0.0190314632, -0.0268164203, 0.0293878578, -0.00655928487, 0.00632262789, 0.00202924572, 0.0127582857, 0.00480025215, 0.00387834944, 0.0251633525, -0.00507929549, -0.00715622585, -0.00224647555, -0.0102928141, -0.0137896873, 0.0105471322, -0.0151743069, 0.00904241763, -0.0099749174, -0.0309985373, -0.00667938, 0.00724099856, 0.0237363465, 0.00867507, 0.0120871691, -0.0151601788, 0.00666878326, 0.0187630169, -0.00247430219, -0.00800395291, -0.00184380542, 0.000639768725, -0.0128854448, -0.0105541972, -0.00232241792, 0.00502984505, 0.01744904, 0.0133587597, 0.0219702497, -0.00341739808, 0.018296767, 0.00595881185, 0.00869626272, 0.0263642985, -0.0100596901, 0.00678887777, -0.00764366891, 0.0104623595, -0.0146515425, -0.00376885151, 0.000344830478, 0.00303415488, 0.00332909334, 0.00142082525, 0.00836423598, 0.0199498348, 0.00567270443, 0.00894351583, -0.00926847849, 0.0154568823, -0.0241460819, 0.000474638626, 0.0191727504, 0.000505545351, -0.0167708583, -0.000820352172, -0.0184663124, 0.0248242617, -0.0110487044, -0.0155133978, 0.00261382386, -0.0262795258, -0.0210094918, -0.0127370935, 0.00514640706, 0.00851258822, -0.0111829275, 0.0207834318, -0.00263854931, 0.00181024964, -0.000483027572, -0.0111122839, 0.0192292668, 0.01063897, 0.000382360042, -0.00580339553, 0.0131892143, -0.00112765306, -0.00857616775, -0.0119388169, -0.00860442594, 0.00630496722, 0.0151177924, 0.0122637786, -0.00813817605, 0.0142488722, 0.00223058066, 0.00437638909, -0.0213485826, 0.000974885654, -0.00515700364, 0.0218289606, 0.0305746756, -0.0103422655, 0.00570449419, 0.00070776348, -0.00500158733, 0.0058245887, 0.00347567932, -0.00424569752, -0.000557203661, -0.018536957, 0.0119670751, -0.00920489896, -0.00567976851, 0.00946628116, 0.00365582132, 0.0260534659, 0.0033114322, 0.0175338127, -0.0020221814, -0.00449295109, -0.0225212723, 0.0127441576, 0.02081169, -0.00586344255, -0.00612482522, -0.0129914107, 0.0244851708, -0.00806753244, -0.00916957669, -0.0034244624, 0.00309243612, 0.0109286094, 0.00762954, 0.00032452037, -0.00878809951, 0.0132033424, 0.0156970713, -0.00463070674, -0.00612835726, -0.0170110483, 0.00955105387, -0.0187206306, -0.00214580819, 0.0046624965, -0.00638973946, -0.016502412, 0.0133093083, 0.00488502486, -0.00493094325, 0.00954398885, -0.00222881464, -0.0247112326, -0.00614248589, -0.0208964627, 0.0310550537, -0.0159937758, 0.00646038353, -0.0136978496, 0.00299176876, 0.00751651, 0.00654868828, 0.0105612613, -0.0109215453, -0.0044964836, 0.00517466478, -0.0044823545, -0.00579986302, 0.0325809605, 0.0151460497, -0.0100384969, -0.00801101699, -2.73883052e-05, -0.035632778, 0.0012768883, -0.00125304598, 0.0516548119, -0.0142418081, 0.00495566893, -0.0194270685, 0.0124121308, -0.0118964305, -0.0014914691, 0.0196248721, 0.0214757416, 0.0249796789, 0.0100102387, 0.013026733, 0.00302532455, 0.0187912751, -0.00687718252, 0.00314541906, 0.00214757421, 0.0262795258, 0.0133587597, 0.00199039164, 0.018649986, 0.0135353692, 0.00743173715, -0.0229027476, -0.017929418, 0.0015144283, -0.021518128, -0.00657694601, 0.00526296953, -0.0107308067, -0.00527356612, 0.00428102, 0.0283140708, -0.0154427541, -0.0188619178, 0.0239341501, 0.0167567302, 5.22585424e-06, 0.00151531142, 0.010759064, 0.0218007043, 0.000475521665, -0.0207127873, 0.0161068067, -0.028102139, -0.0140157472, 0.0128571875, -0.0141217131, 0.00803927425, 0.00900709536, 0.0173783973, -0.000542633352, -0.00258909841, 0.000549697783, 0.00221291976, 0.010518875, -0.0158807468, -0.00792624429, -0.0128006721, -0.0148352161, 0.00318957143, 0.000193387648, 0.00928260665, 0.00853378139, 0.00796156656, -0.00339797093, -0.0224082414, 0.00818762649, 0.0116350483, -0.0040867487, 0.0245840736, 0.012913703, -0.00364169246, 0.00729044946, -0.024033051, 0.00289993151, -0.0183532815, -0.00813111197, -0.00362756359, -0.00495920097, 0.006396804, 0.0194270685, 0.0128501235, -0.00283105392, -0.0150330197, 0.00618134, -0.005559674, -0.0235526729, -0.00185263599, 0.00187382917, -0.0168273747, 0.0271555111, -0.0068524573, 0.0207269173, -0.00524530886, -0.00179788691, -0.0197944175, -0.00595528, -0.00289993151, -0.0100031747, -0.00646038353, 0.0101515269, 0.00857616775, -0.00247077, 0.00945215207, 0.0136413351, -0.00751651, -0.00125039683, -0.00648510875, 0.0114655029, -0.0357175507, 0.0260393377, -0.00665112212, -0.00500158733, 0.00541132176, 0.0205856282, 0.00590936141, -0.0164176393, -0.0135212401, 0.0214474853, -0.0159372613, 0.0374977775, -0.00885874312, 0.0192575231, 0.019017335, -0.017929418, 0.010766129, 0.00863974728, -0.00372646516, 0.0108862231, -0.00403376622, -0.0102151064, -0.00633675698, -0.0101091405, 0.0161915794, -0.0193281677, 0.0152308224, 0.0211225227, 0.00401963713, -0.0149623752, -0.00275157951, -0.00924728531, 0.000165902762, 0.0183674116, 0.00775669888, 0.019963963, -0.0342199, 0.00185793429, 0.0239200201, -0.00119034946, 0.0244993, 0.0144819971, -0.0107166776, -0.00856204, 0.00435519591, -0.00777789205, -0.00214404194, 0.0196248721, 0.00862561911, 0.0197661594, 0.00334675424, -0.0207269173, 0.00220232317, 0.0107308067, -0.00855497457, 0.00523117976, 0.002599695, -0.00336618116, -0.0274239574, 0.00415032823, -0.0147787016, 0.0119388169, 0.00828652829, 0.00938150845, -0.00895764492, 0.000770459883, 0.0252622552, -0.0174066536, 9.88462562e-05, 0.0157535877, 0.0249655508, -0.0126947071, -0.00849139504, 0.0160644203, -0.0266892612, 0.00802514609, 0.00332379504, -0.01398749, -0.00327611039, -0.0189043041, -0.000551463861, 0.00557380263, 0.00110557687, 0.0137755582, 0.00108614983, 0.00457419176, 0.0347002782, -0.00526296953, -0.0104764886, 0.00616014702, 0.0025767358, -0.00859736092, 0.0260675941, 0.0120235896, -0.00401610509, 0.00623432314, 0.000865387614, 0.0140157472, 0.0160644203, 0.0379781537, 0.00926847849, -0.0176751, -0.00599060161, -0.0135565624, 0.0170393065, -0.0260393377, -0.0413125455, 0.00974179246, -0.0828511491, -0.008371301, -0.00514640706, 0.0125392899, 0.00634028902, -0.00155769777, 0.00754476711, -0.01722298, 0.0301790684, 0.00457065972, 0.0038924783, 0.0203030538, 0.0118964305, 0.00243721413, 0.00080445729, 0.00200098823, 0.00175020238, 0.00966408383, -0.01028575, -0.0087174559, 0.0259828214, 0.0144113535, -0.00106672267, -0.00543251494, 0.0156970713, 0.0129914107, 0.0122991009, -0.0180424489, -0.0053336136, -0.0142347431, -0.0160361622, -0.0142841944, -0.00822294876, -0.00608950295, 0.00185616815, -0.0167849883, 0.0205715, -0.00406908803, -0.0133305015, 0.0038253665, -0.0186076, -0.00181201578, 0.0288650934, -0.0126876421, -0.00382889877, 0.0089929672, 0.00258909841, -0.00511815, -0.00552788423, 0.0123485513, -0.0253046416, -0.00464483583, -0.00316837849, 0.00775669888, 0.00484617054, 0.0197944175, -0.0287520625, -0.00777082751, 0.0028469488, 0.022238696, 0.010752, -0.023679832, 0.00463777129, 0.0145667698, 0.0169827901, 0.00937444437, -0.0083571719, -0.00946628116, -0.0262371395, 0.00448941905, -0.0210801363, -0.0237646047, -0.000798275927, -0.00468722219, 0.0114937602, 0.0104552954, -0.0163469948, -0.000109884357, 0.0205149855, 0.00957224704, 0.0118187228, 0.0161633212, 0.0178587753, -0.000753240485, 0.010405845, 0.0098760156, 0.00867507, -0.00152855716, 0.0170251764, -0.00634382106, 0.0165589266, -0.0122637786, -0.0274380855, -0.0191727504, -0.00600473071, -0.0142559363, -0.0141640995, 0.00437638909, 0.0239906646, 0.00100226013, 0.0140228122, -0.00916957669, 0.0126593849, -0.000219437585, 0.03133763, -0.0106884204, 0.0193422958, -0.0160785485, 0.012440389, -0.00366288563, 0.0107025495, 0.0140016191, 0.0147504434, 0.00554907741, 0.0409452, -0.00173165835, 0.0111970566, -0.0172794946, -0.00481084874, -0.0116138551, 0.00986895151, -0.00322312745, -0.00437285658, -0.0213627126, 0.00815230515, 0.0128006721, -0.0204584692, -0.0194835849, -0.0062307911, -0.0230016503, -0.00256260694, -0.00944508798, -0.000502454641, 0.0125816762, -0.00262442045, -0.0102786859, 0.000885256217, 0.0213061962, -0.0140157472, -0.00617074361, 0.00183144282, 0.0102645569, 0.0336547494, 0.0145102544, -0.028695548, -0.0330048241, 0.00500865187, -0.00582812075, -0.00335558457, -0.00337501173, -0.00251668855, -0.0152873378, 0.0120942332, -0.00687011797, 0.000853466452, -0.00203454401, 0.0249796789, -0.00955811795, -0.0162904803, -0.00308713783, -0.00806046743, 0.0108367726, -0.002271201, 0.0118611092, 0.0117622074, -0.00228179758, 0.0142630013, -0.00859736092, -0.000943095889, 0.000355647819, 0.0060011982, 0.0202324092, 0.0136978496, 0.00273038633, -0.00570802623, -0.015301466, 0.00484970305, -0.0372434594, 0.0227897186, 0.0140863908, 0.0106884204, -0.00552435219, 0.00495566893, 0.00453887, 0.0159513894, -0.0198368039, 0.00420331117, 0.0107873213, -0.00163540605, 0.00662992895, -0.00437992113, 0.0215605143, -0.0384585336, -0.0117622074, 0.000568683317, -0.0035816452, -0.0110275112, 0.0172512382, -0.00872452, 0.00508282753, 0.0088799363, -0.0233689975, 0.00294585014, -0.00416445732, -0.0151319206, -0.0044964836, -0.0109498026, -0.000573098543, -0.00938150845, 0.0147787016, -0.00421037572, -0.0227614604, -0.0106742913, -0.00874571316, 0.00795450155, 0.0046624965, -0.0100808833, -0.0128289303, 0.00239836, 0.00896470901, 0.0257991478, 0.000792094623, 0.0163893811, -0.00280809449, 0.0188336615, 0.00594821526, 0.0141499704, 0.0149058606, -0.0230440367, -0.000166013138, 0.0159513894, 0.00797569472, 0.019610744, -0.00738228625, -0.0260110795, -0.0247960053, -0.00744586578, 0.0215463862, -0.011119348, 0.0149341179, 0.0315354317, -0.00146321149, -0.00312245986, -0.0043163416, -0.0165447984, 0.00878103543, -0.0148917316, 0.0245699435, 0.0130691193, 0.00163717207, 0.0113454089, -0.0107449358, 0.00433753477, 0.0231570657, 0.0135212401, 0.027381571, -0.00359224179, 0.0334286876, -0.0144819971, -0.0186217297, 0.00237540063, 0.0143265808, 0.0220126361, -0.0238493774, 0.00483204192, -0.00595174776, -0.00218819454, -0.00285401312, -0.0112253139, 0.00350217079, 0.00256790523, -0.00111793948, -0.00952279568, -0.000796509848, -0.00928260665, 0.0219419915, -0.00103228376, 0.0173925254, -0.00873864908, -0.01196001, 0.000909540046, -0.00406202348, -0.0126169985, 0.0153721096, 0.00678887777, 0.000181466487, -0.0132598579, -0.0262653977, 0.0148069588, -0.0229733922, 0.0104341023, -0.0263501704, -9.63626808e-05, 0.0107802572, -0.0371586867, -0.0133728879, -0.01063897, 0.0137402359, -0.00746705895, -0.00808872562, 0.0162763521, -0.0380911827, -0.0147221861, -0.00339973718, 0.0101373978, -0.0127724148, -0.0150330197, -0.0102645569, 0.00875277817, -0.0248525199, -0.0113383438, 0.0078344075, -0.00729044946, -0.0045318054, -0.0043657925, 0.00883755, -0.0164176393, -0.0110557685, -0.000243942181, 0.00414679619, -0.00780615, 0.0257002469, -0.00151177915, -0.0160502922, 0.0253046416, 0.0136766564, 0.00836423598, 0.00238423119, -0.00267740339, -0.0223799832, 0.0173642673, -0.0165730566, -0.00815936923, -0.0144396108, -0.0191303641, -0.00721980538, -0.0288792215, 0.00678181322, -0.011119348, -0.0158383604, -0.0239765365, -0.00796156656, -0.00499805529, -0.0319875516, 0.0216594152, -0.00777082751, -0.00736815762, -0.0175620709, 0.0345872492, 0.00523471227, -0.0141923567, -0.018649986, -0.00392426783, 0.0125816762, 0.00275511155, 0.00347214704, -0.00741760805, -0.0263784286, 0.00407615257, -0.00955105387, 0.0112041207, 0.00650983443, -0.00818762649, -0.0217724461, 0.00334145594, 2.95545324e-05, 0.0156264286, -0.000885697722, -0.0322701298, -0.0114231165, 0.0125958053, -0.0304333866, -0.00121154264, 0.0697961599, 0.0123980027, -0.000193277257, -0.03133763, 0.018890176, -0.0243438836, 0.00117003941, 0.0315919481, -0.00880929269, 0.0126240626, -0.00848433096, 0.033711262, 0.00246723788, 0.0046519, -0.00999611057, -0.00623785518, 0.0207269173, -0.00609303545, -0.0176609717, -0.0196813866, 0.00466956105, -0.0240613092, 0.00720920879, -0.0275511164, 0.0108367726, -0.00363462814, -0.00710677495, -0.0122567145, -0.0109074162, 0.0198791903, -0.00844900869, 0.0154710114, 0.0140228122, 0.029896494, -0.0218572188, -0.00466956105, 0.0129560893, -0.00113118521, 0.0114866961, -0.0180707071, 0.0348415673, 0.0321005844, 0.0150895342, -0.00861149, 0.0152590796, -0.0101727201, 0.0206986591, -0.0244003981, -0.00422450434, -0.0423580743, 0.0109498026, -0.0272402838, -0.010752, -0.00896470901, 0.0195966139, -0.00725512719, 0.0194411986, 0.0102221705, 0.00611776067, 0.00407615257, 0.00912719, 0.00830065645, -0.00317367679, 0.00253081741, 0.0143336449, -0.0398431532, -0.000803574221, 0.00906361081, -0.0160079058, 0.00324785267, -0.00153032318, -0.00152855716, 0.014708057, 0.00361520099, 0.00646038353, 0.0219843779, -0.0109639317, 0.0101868482, 0.00225354, -0.0173783973, -0.04521209, -0.002689766, -0.0015426859, -0.00271625747, -0.00856204, -0.00259086466, -0.0117551433, -0.0127582857, -0.00330260186, 0.00705732452, -0.000924551859, 0.0226625595, -0.00475080125, 0.0060859709, 0.0144184176, 0.00694076205, -0.0189043041, -0.00142435741, -0.00597647298, 0.00846313778, 0.0294726305, -0.0156123, -0.00844900869, -0.00437638909, 0.00295291445, 0.0237646047, -0.00100490928, 0.0134082101, -0.00897177402, -0.00657694601, 0.00554201286, -0.00500865187, -0.0144819971, 0.0350676253, 0.0117480783, -0.00472254399, 0.0245558154, 0.00946628116, 0.000926318, -0.00463070674, 0.000425629434, -0.0058210562, -0.00353396055, 0.00172194478, -0.0190597214, 0.00215640478, -0.00157094351, -0.00241778698, 0.0135353692, 0.00295644673, -0.0126452558, -0.00172017864, 0.0116279842, -0.00902828854, 0.024513429, 0.0103422655, -0.0103917159, 0.0158666167, -0.00853378139, 0.0133163733, 0.000396930351, 0.0247960053, 0.00631556381, 0.00467309309, 0.00423863344, 0.00414326414, -0.023312483, 0.00727632036, 0.0202465393, -0.00811698288, -0.0141429063, -0.0181837361, -0.00907067489, -0.00429161638, 0.000956341624, 0.00945215207, -0.000711295637, -0.0134929828, -0.0066723153, -0.0180141907, 0.00921902712, 0.00166013138, 0.0273250565, 0.0083571719, 0.00928967167, 0.000449913263, -0.00134046783, -0.00629083812, -0.00431987364, -0.018169608, 0.00715622585, 0.0202465393, -0.00595174776, 0.0156829432, -0.0283564571, -0.0095016025, -0.0120094614, -0.0104623595, -0.00748118758, -0.0188195314, -0.0128854448, 0.0201617666, -0.00377591583, 0.0504397377, 0.0138462018, -0.00517113274, 0.00895764492, 0.0176044572, 0.0154003678, -0.0102151064, 0.00313305645, 0.00246547163, -0.00892232265, 0.00862561911, 0.00642506173, -0.00924022, 0.0260534659, 0.000202438896, -0.0110487044, -0.0107166776, 0.0488290563, -0.00998904556, -0.00287873833, -0.00276924041, 0.00270036259, -0.00575041259, 0.00413973164, -0.00189149007, -0.00687011797, -0.0147645725, -0.0175055563]
19 Nov, 2021
jQWidgets jqxSplitter width Property 19 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxSplitter is used for representing a widget that consists of a moveable split bar(s) that divides the display area of the container into two or more resizable and collapsible panels. The width property is used for setting or getting the width for the specified jqxSplitter. Syntax: For setting the width property: $('#jqxSplitter').jqxSplitter({ width: 300 }); For getting the width property: var disabled = $('#jqxSplitter').jqxSplitter('width'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxsplitter.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxSplitter width property. In the below example, the value of the width property has been set to 300. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsplitter.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSplitter width Property </h3> <div id='jqx_Splitter'> <div style="background-color: #006400"> </div> <div style="background-color: #000000"> </div> </div> <input type="button" style="margin: 28px;" id="button_for_width" value="Value of the width property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Splitter").jqxSplitter({ width: 300, height: 200 }); $("#button_for_width").jqxButton({ width: 300 }); $("#button_for_width").jqxButton(). click(function () { var Value_of_width = $('#jqx_Splitter').jqxSplitter( 'width'); $("#log").html(( Value_of_width)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsplitter/jquery-splitter-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxsplitter-width-property?ref=asr10
PHP
jQWidgets jqxSplitter width Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[0.00139408477, 0.0141395135, -0.0101319477, 0.0534068048, 0.0839054063, -0.000688907399, 0.0305808075, 0.0250181705, -0.00900160894, 0.0387740545, -0.0143861324, 0.00579555659, 0.00798087846, -0.0463370495, -0.0270185266, -0.00706975674, -0.0312932655, 0.0068436889, -0.0488032438, 0.026278669, 0.00886459835, -0.0165783055, -0.0546673052, 0.00184964563, -0.0530505776, 0.025716925, 0.0146190515, 0.0196336452, -0.00331052323, 0.0129475193, -0.00751504162, 0.0194281302, -8.23135124e-05, -0.0177428965, -0.0299231559, -0.00776166096, -0.0152218984, 0.025799131, 0.00948114693, -0.00517215719, -0.013680527, 0.0130023239, -0.0113924472, -0.00759724807, 0.0301149711, 0.0258128326, 0.000667499437, -0.00915917102, 0.00189588673, -0.00694644684, -0.0226615835, 0.0143724317, -0.0124200275, 0.026319772, 0.022798596, -0.0136462748, 0.01168017, 0.0554071628, -0.0252099857, 0.0296765361, 0.0286352541, -0.0617096573, -0.0254840069, -0.00774796028, -0.028799668, 0.0312384591, -0.00421993248, 0.0227026884, -0.01448204, 0.00458301092, -0.0170441419, 0.0293477103, 0.00978942122, 0.00891940203, 0.00147543498, -0.0186471678, -0.0217710137, -0.028361233, -0.01015935, 0.0135092633, -0.038089, -0.00512077799, -0.0411580391, -0.0148519697, -0.0108170016, 0.0047200215, 0.0123104192, -0.0271144342, 0.0463096462, -0.000903414912, -0.0579281598, -0.00160388253, 0.00465494161, -0.0289366785, 0.00430898927, -0.00987847801, -0.000421308185, 0.027361054, -0.0166879147, -0.024798952, 0.0497075133, 0.0191815104, -0.00680943625, -0.0247030444, 0.012837911, 0.00116287905, 0.0394865088, -0.000788668345, 0.0319783166, -0.015400013, 0.0276213754, 0.0171126481, 0.00612438237, -0.0033139484, -0.0488032438, 0.0284434389, -0.00149513024, -0.0490498617, 0.0109951161, -0.0196199454, 0.0341430902, 0.0124131776, -0.0137010785, 0.0200857818, -0.0159069523, 0.0479263738, -0.00864538085, 0.013961399, 0.00799457915, -0.00593599258, 0.00560374139, 0.021277776, -0.034362305, -0.0180991255, -0.0152081978, 0.0413498543, 0.0271418374, 0.0344719142, -0.0279365, 0.00642580586, -0.00748078898, -0.0294025149, 0.0160576645, 0.0345267169, 0.0120912017, 0.0306356121, 0.0264567826, 0.0306082107, -0.0365544781, 0.0518996865, -0.0266074948, -0.0131804375, 0.00691219419, 0.0358420238, 0.0465836674, -0.0174414739, -0.0259909462, 0.0354309902, -0.0115089063, 0.0023976888, 0.0136188725, -0.0162220765, 0.0115842624, 0.0254292022, -0.0187430754, -0.0148656704, 0.0148519697, -0.00167238794, -0.0604491606, 0.0206886288, -0.000758269103, -0.0208530426, -0.0150300832, 0.0111047244, -0.0494883, -0.0417882912, -0.0175921861, -0.0369929112, 0.0289366785, -0.00792607386, 0.00180169183, -0.00204488612, -0.00551810954, 0.0033601895, -0.0270733312, -0.0142628234, 0.0269089192, -0.00457958551, -0.0254292022, -0.0269089192, -0.0303615909, 0.0227026884, 0.0157699417, 0.0457342, -0.0217436124, -0.0341430902, -0.0227574911, 0.000448282168, 0.00107210944, -0.0149067733, 0.0134681603, -0.00597367, -0.0151944961, 0.00887829904, 0.0104881758, 0.0172907617, -0.00194726582, -0.0673545, 0.0431309976, -0.0254018, -0.00326085673, 0.00148571073, 0.0260731522, 0.00779591408, -0.0270048268, 0.0133311497, -0.0186882708, 0.00880294293, -0.0267856084, -0.0131393345, 0.00473372266, 0.00770685682, -0.026676001, 0.0276624784, -0.0737666115, -0.0150437849, 0.00106012099, -0.0217436124, 0.00577157969, 0.028361233, -0.0357598141, -0.0261279568, -0.0354857929, 0.027278848, 0.0271418374, 0.0248674583, -0.0127625549, 0.0325537622, -0.0235247519, 0.0334580354, 0.0160302632, -0.0154137136, -6.90405941e-05, -0.00489128521, 0.0291010924, 0.0191815104, -0.0372669362, -0.00873443764, 0.010638888, -0.00282584759, -0.0184690543, 0.0200035758, 0.00684026349, -0.0191404074, 0.0210585576, 0.00537082274, 0.0334306322, -0.0238261763, 0.00309473113, 0.00599764707, 0.0347733386, 0.000680344179, 0.0112896888, 0.00101559248, 0.0439804643, 0.0133311497, 0.0229219049, -0.0209489502, 0.019359624, -0.040555194, -0.0068950681, -0.0372395329, 0.0420897156, -0.00734377839, -0.0427199639, 0.0172633585, -0.0155644258, 0.000822492875, 0.0107895993, 0.0171263479, 0.0033601895, -0.006819712, 0.0279913042, 0.0665324405, 0.0411854424, -0.025758028, 0.0159891583, -0.0179758146, 0.0411306396, 0.00203974801, -0.0226752851, -0.0211955681, 0.0269774236, 0.0470495038, 0.0270459298, -0.000308916526, 0.02767618, -0.0291558951, -0.00683683855, -0.0137969861, -0.0223327577, -0.01448204, -0.019236315, -0.0344445109, -0.00649088621, 0.0305260029, 0.0259361416, -0.0255388115, -0.0136942286, -0.0218943246, 0.0317865, -0.00240282668, -0.0400071517, -0.0308822319, -0.01944183, -0.00228465488, 0.0363352597, 0.0202638954, -0.0175647829, -0.0144135347, 0.0307178181, -0.00994698331, -0.0403907821, 0.0483648069, 0.0363078602, -0.00811103825, -0.0226615835, 0.00390823279, 0.00422678282, -0.0317591019, -0.0474331342, -0.00572020048, 0.0215929, -0.0200720802, 0.0068916427, -0.0374861509, 0.0125844413, -0.026840413, -0.00935098622, 0.0214284882, 0.00815214217, -0.0341430902, -0.00257409015, -0.0148108667, 0.0210037548, -0.0694918707, -0.0263882782, 0.0189074893, 0.0588598363, 0.00543590309, 0.00123909127, 0.0340608805, 0.0320331231, 0.0463918522, 0.0264704842, -0.0360612385, -0.0230726171, -0.0152904037, 0.00409319717, -0.0289914832, 0.00146430277, 0.0137832854, -0.0154274143, 0.00105155783, 0.00503857154, -0.0151396925, -0.0290188845, -0.027758386, -0.0217847154, -0.00513447914, -0.0067717582, -0.0243605189, -0.0169619359, 0.0392946936, -0.0280187055, 0.026237566, 0.00186163408, -0.0221272428, -0.0191267058, 0.0166742131, -0.0477893613, 0.0531053804, -0.00278303167, 0.00613123272, -0.00369244069, -0.0130982315, 0.00690191844, -0.00413087523, 0.0165235, 0.0268130116, -0.0196336452, 0.0348555446, -0.00728212344, -0.0373491421, 0.0206886288, -0.0051310542, -0.00269911252, -0.0230315141, 0.0199350696, 0.00478510186, -0.00644978276, -0.0394865088, 0.0136325732, -0.013118783, 0.0300875697, 0.00270253769, -0.048912853, 0.00835765805, 0.0313480683, -0.0296217334, 0.00438434538, 0.00360338367, -0.0215380955, 0.0555715747, 0.0358146206, 0.00639840402, 0.0336498506, 0.042473346, 0.00404524338, -0.025758028, 0.0282516237, -0.0143861324, -0.0231137201, 0.0251277778, -0.0366092809, -0.00219046, -0.0541466624, 0.0279913042, 0.0474057347, 0.0180169195, -0.0702591315, -0.00247133221, -0.00202604709, -0.00233432138, 0.026634898, -0.00872073695, 0.0399523452, 0.0119404905, -0.00941264164, -0.0344445109, -0.0180991255, -0.008892, 0.018880086, 0.0107416455, -0.0439804643, 0.00243022875, -0.0288818739, -0.0324989595, -0.00419595558, -0.00608327892, -0.0132146906, -0.0255525112, -0.0388562605, -0.00804253295, -0.0186334681, 0.0115637109, 0.013159886, -0.00924137793, 0.0163727887, -0.0197432544, -0.0284434389, -0.0162768811, -0.0164138917, 0.0308274273, -0.00383972726, -0.0105772326, -0.0221546441, 0.00819324516, -0.00656966725, 0.0221272428, -0.0589146391, -0.00713826204, 0.0398701392, 0.0240864959, 0.0410210304, -0.00082549, 0.0193459243, -0.00380547461, 0.00713826204, 0.00320947776, 0.0222642533, 0.0246482417, 0.0298957545, -0.035074763, 0.0138997445, -0.00958390441, 0.00871388614, -0.0163864903, 0.0115020555, 0.0248948596, 0.0343349054, -0.00202775956, -0.0211955681, 0.0324715562, -0.0125364875, 0.0343075022, -0.00535712205, -0.0176743921, 0.0255251098, 0.0132968966, 0.0109266108, 0.0423911363, -0.021359982, 0.0361982509, 0.027402157, -0.00409662258, -0.0327455774, -0.0233055353, -0.025716925, -0.0424185395, 0.0125159351, -0.0023480223, -0.0431858, -0.0218121167, -0.0191404074, -0.0541740656, -0.026676001, -0.00700810179, 0.0120432479, 0.00874128845, 0.0101936031, 0.00103528774, 0.0220039319, 0.0217436124, 0.0430761911, 0.0449943431, -0.0298683513, -0.0383356176, -0.00210482813, 0.0224286653, -0.0113787455, 0.00715196319, 0.026278669, 0.0231137201, -0.0284982435, 0.0118103297, 0.00194897852, -0.00490498636, -0.00752189243, 0.0358968265, 0.00606957776, -0.00601819903, -0.042555552, -0.00833025575, 0.0160576645, 0.0125775905, -0.00361365965, 0.0165646039, 0.00976201892, 0.0389658697, 0.0203049984, 0.00317008724, -0.0053434209, 0.0110225184, 0.0132626444, 0.00555236218, 0.0122967185, -0.0100908447, 0.00342355715, -0.0383082181, 0.0182909407, 0.00780276442, -0.00292004249, 0.0229219049, 0.027319951, -0.0237713717, -0.00890570134, 0.0219354276, -0.039842736, 0.0489402525, 0.0104881758, 0.00230863178, 0.0122213624, 0.00772055797, 0.000572448189, 0.00404866878, 0.0300327651, -0.0347733386, 0.0100154886, 0.00778221292, 0.00765205268, -0.0339512751, 0.00365818804, 0.00739858253, 0.0183046404, 0.0168797299, 0.000607985363, -0.0284434389, -0.0714100227, -0.0110841729, -0.0100702932, 0.0427747667, -0.0052475133, -0.00424733432, -0.0115637109, 0.0200857818, -0.0250044689, 0.00324544311, 0.0290736891, -0.0365270749, 0.0216751061, 0.0231685247, 0.0185101572, -0.00358625734, -0.0271281358, 0.0100428909, -0.00214764406, 0.0376505665, -0.00702180294, -0.0206886288, -0.0179073103, -0.0258265343, 0.0290188845, 0.00659364415, 0.00631962251, -0.00067477813, -0.0284434389, -0.0052509387, 0.00993328262, -0.00973461661, 0.0146738552, -0.00934413541, 0.00653884, -0.0116048139, 0.0380341932, -0.0112348851, -0.0222916547, -0.0125227859, 0.00139151583, -0.0197706576, 0.000495807792, 0.0362530537, 0.00434324192, -0.00216990826, 0.0220450368, 0.0100634424, -0.00344582135, 0.0212229714, -0.0141532142, 0.011399298, 0.0245797355, 0.0190719012, -0.00743283518, 0.054393284, -0.00803568307, 0.0240316931, -0.00263917027, 0.0100976955, 0.0407744125, 0.0182087347, -0.0155096212, 0.0192226134, 0.00297484663, 0.0167290177, 0.013598321, 0.0368285, 0.00548385689, 0.00211681658, 0.0190170966, 0.0249085613, -0.00610725582, -0.0176743921, 0.0165646039, 0.019962471, 0.00579213118, -0.0186471678, 0.0210585576, 0.0574897267, 0.0120980525, 0.0242509097, -0.0032899715, 0.010399119, 0.0482278, 0.00835765805, -0.0069669988, -0.0176880937, 0.00725472113, -0.00224012649, 0.0243468173, 0.00922767632, -0.0053913747, 0.0265252888, 0.0156466328, 0.020798238, 0.0180169195, -0.0130845299, -0.0137969861, 0.00586063648, 0.0145916492, 0.00399386464, -0.00388768106, -0.00341499387, 0.0185649619, -0.000977914548, 0.00692932075, 0.00191301317, 0.0289914832, 0.020483112, -0.0141669158, -0.00515845604, -0.00235829828, -0.0106457379, 0.0179210119, 0.019318521, 0.0139956521, 0.0117486753, 0.00388425589, 0.0177977011, -0.0215380955, -0.00271452614, 0.0148245674, 0.0351021625, 0.0216340031, 0.0317317, 0.0308000259, -0.00298683508, -0.0176195875, -0.00595996948, -0.0263060723, -0.0098236734, 0.0110362191, 0.00526121445, -0.00675805705, -0.0506117865, 6.95222698e-05, -0.026634898, 0.028279027, -0.00141634897, -0.000609698, -0.00305020274, -0.00385685358, 0.00500089396, -0.00425418513, -0.00948114693, -0.00484675681, -0.00826860126, -0.00525436364, 0.00470632082, -0.0151807955, -0.00826175, -0.0124063268, -0.0255251098, 0.0125912912, 0.00735062873, -0.0141258119, 0.000701752142, 0.00376779679, -0.0166194085, 0.019880265, 0.0211955681, -0.00282242219, -0.0198939666, 0.00722046848, -0.00386370416, 0.0122967185, 0.0188115817, 0.00865908153, 0.0153452083, 0.0331018083, 0.00865223166, -0.000998466159, 0.0108101508, -0.0275254678, 0.0145094423, 0.0145231439, -0.00135469413, -0.0374039449, -0.0120569495, 0.0233466383, -0.0397057272, -0.00536397239, 0.0049837674, 0.0266211964, -0.00280358316, -0.0134887118, 0.0321153291, -0.0200309772, -0.00765890302, 0.0016826638, -0.000666214968, -0.0189896952, 0.0120912017, 0.00926878, -0.019359624, 0.0298409499, 0.00216990826, 0.0279502012, 0.0108581046, 0.0150985885, 0.0309918411, 0.0177428965, 0.00822064746, -0.00852892175, 0.00121254544, 0.00449737906, -0.00327798305, -0.0206201244, 0.00811103825, 0.0243331157, -0.0122487647, 0.00462411391, -0.0051516057, 0.00258094072, 0.055434566, 0.00734377839, -0.0385822393, -0.0332936198, -0.00500089396, -0.0160850659, -0.0163179841, -0.0112211835, 0.00760409888, -0.0244975295, 0.00583665958, -0.000984765, -0.0112211835, 0.00921397563, -0.00554551184, 0.0142354211, 0.0238535777, -0.0116116647, 0.0178388041, 0.0146053499, 0.000544189708, -0.0261690598, 0.0153315077, 0.0193048194, 0.0190033969, 0.0294025149, -0.00614150846, -0.0120912017, 0.0196884498, -0.0441722795, 0.00381575036, -0.00532971974, -0.00249702157, -0.000444428733, 0.0175510813, -0.00397673808, 0.00390138221, 0.00590516487, 0.0150163826, -0.022319058, -0.00223841378, 0.0216340031, 0.0167564191, 0.000612695119, 0.00636072597, 0.0192911197, 0.00422335742, 0.0177977011, 0.00430556387, 0.0246756431, 0.0144683393, 0.00177771493, 0.0177703, -0.0170852449, 0.000524922565, -0.00222471263, -0.000709030835, -0.0174140707, -0.0154959206, 0.00359653309, 0.00248503312, 0.00859742705, -0.0110636214, -0.0112211835, -0.0304437969, -0.0121665578, 0.0102484068, 0.00867278315, -0.00209797779, 0.0336498506, 0.0050077443, -0.0205379166, 0.00568594784, -0.0372121297, 0.015838448, 0.00541877653, -0.0176195875, 0.0305260029, 0.0108170016, -0.0216203015, 0.014440937, -0.00545988, 0.0420897156, -0.0209763516, -0.0318413079, -0.0160713661, 0.0117007215, -0.00328312092, 0.00743283518, 0.0149067733, -0.0484470166, -0.0198254604, 0.0248674583, -0.0220313352, -0.00197980599, 0.0196884498, -0.0068916427, 0.0236343611, -0.0369929112, 0.0217162091, -0.0209489502, 0.00390138221, -0.0119404905, -0.0109814145, 0.0317042954, -0.015400013, 0.0154685182, 0.0319509171, 0.0305808075, -0.025319593, -0.0169208329, 0.0133242989, -0.00343897077, -0.0123857753, 0.0405277908, 0.0142354211, -0.0121323057, -0.0373765416, 0.00933043472, 0.000650373113, 0.028196821, -0.00719991699, 0.00216990826, -0.0173044633, 0.00442887377, -0.0129475193, -0.00560716633, 0.0127762556, 0.00945374463, 0.0351021625, -0.0235247519, -0.0177154951, 0.00188047311, 0.00192671421, -0.0112348851, -0.0339238718, 0.000846469775, 0.0221272428, 0.0289366785, -0.00290120346, 0.0107758986, 0.00295258244, -0.0133242989, -0.0392124876, 0.00647718506, -0.00904271193, 0.0219628289, 0.00883034524, -0.00770000648, 0.0145916492, 0.00659021875, 0.00499746855, -0.028361233, -0.0103032114, 0.0293477103, -0.0126529466, 0.00321632833, 0.0130639784, -0.0334306322, -0.0168934297, 0.00227095373, -0.0133311497, 0.00775481062, 0.0115500093, -0.00783701707, 0.0253743976, -0.00846726634, -0.00233774655, -0.00963185821, 0.0379793905, 0.013598321, 0.00120312604, 0.0113102403, 0.0160850659, -0.0289914832, 0.0391028784, -0.00169293955, 0.0315398835, -0.0202912986, 0.0110293683, 0.00530231744, 0.0434324183, -0.0247578491, 0.027196642, -0.00821379665, -0.0357598141, 0.0237439703, 0.0211818684, -0.0249907672, -0.0108718062, -0.00292346766, 0.00205002399, -0.0116322162, 0.00323687983, -0.0172222555, 0.00508995075, -0.0127831064, -0.0165372025, -0.0105909342, 0.0234836489, 0.0207845364, 0.0225108732, 0.0150300832, -0.0336772501, 0.0329922, -0.00896735583, 0.0166331101, -0.00735747954, -0.00883034524, 0.0213873833, 0.0235932581, 0.0238398779, 0.0124268783, 0.00220244844, 0.0216751061, 0.0174277723, 0.00276933052, 0.0401989669, -0.0283064283, 0.0111321267, -0.028361233, 0.00384657783, 0.00783016626, -0.0184827559, -0.0169756375, 0.0206201244, 0.0398701392, -0.0015516472, -0.00661762105, -0.0140436059, 0.0122213624, -0.0115020555, -0.033403229, -0.0023976888, -0.0238261763, 0.0117897782, -0.0319509171, 0.032361947, 0.015838448, -0.00590516487, -0.00724102, 0.0154959206, 0.000265030249, -0.0163864903, 0.00427816203, 0.010679991, -0.0189622939, -0.0137490323, 0.0146190515, 0.0169756375, 0.0051755826, 0.0119678928, -0.0135503672, -0.00367188919, -0.0285530481, 0.00207057549, 0.0233466383, -0.00749449, -0.000623827218, 0.0173455663, 0.0342252962, -0.0115294578, 0.0303067863, -0.0120295472, 0.00834395736, 0.0052954671, 0.0161672737, -0.00307417964, 0.0203049984, 0.00511735305, 0.0154137136, -0.00833025575, 0.0113170911, 0.0146327522, -0.000358582911, -0.0109334607, -0.0200583786, 0.0227574911, 0.0175236799, 0.0050556981, -0.00426103547, 0.0151259908, -0.0346089266, 0.0131941391, -0.0304437969, 0.000135833354, -0.0148656704, -0.00362051, -0.0103169121, -0.0154274143, 0.0177428965, -0.00607642857, -0.0122419139, -0.0154411159, 0.0851659, 0.00466179196, 0.009919581, -0.0119267888, 0.0013170162, -0.046117831, -0.00868648384, 0.0306082107, 0.0229219049, -0.00100360403, 0.00606615283, 0.00403154222, 0.0292655043, -0.0153452083, -0.00210654084, -0.0104059698, -0.00786441937, 0.00264088297, 0.0152493007, -0.0227437913, -0.00946744531, 0.0215929, 0.0049563651, -0.0150711872, 0.0291284937, -0.0167975221, -0.0323071443, -0.0134887118, -0.0438982584, 0.0223875623, 0.00793977547, 0.00105412677, 0.0190033969, -0.000567738432, -0.00615520962, 0.0254703052, -0.0257443264, 0.0127283018, -0.0171263479, 9.49977111e-05, -0.0113718957, -0.00552838529, 0.0171400495, -0.00830970425, -0.0147149591, -0.00577843, -0.0349651538, -0.00792607386, -0.0107964501, 0.0215243958, -0.03888366, -0.0105224289, -0.0118514337, 0.00292175496, -0.0050556981, 0.00356228044, -0.00413087523, -0.0149341756, 0.00243194145, -0.0400619544, -0.0111458274, -0.00332936225, -0.020921547, -0.0008045102, 0.028361233, 0.0119267888, -0.00121682708, 0.0270870328, -0.0104196705, 0.0183320437, 0.0414868668, 0.010440222, -0.0122487647, 0.0127351526, -0.0116596185, -0.00245934376, -0.00556606334, 0.0150300832, 0.0146464529, -0.0130023239, -0.0251003765, -0.00368216494, -0.00285324967, 0.0215654988, -0.0125707397, -0.0115294578, 0.00751504162, 0.00107382203, -0.000143861325, 0.00395618659, 0.0107827494, -0.0121871093, -0.0125159351, -0.0129132671, 0.00637442712, 0.00706975674, 0.0338690653, 0.000691048161, -0.00615178421, -0.00233089598, 0.0188252833, -0.00143261906, 0.00875498913, 0.0159069523, -0.0242920127, -0.0259909462, 0.0123789245, 0.00474057347, -0.0176743921, 0.0229356065, 0.000552324753, 0.000519784691, 0.000218253903, 0.0170578435, 0.0107279448, 0.0155233219, -0.00876869075, -0.021401085, -0.00560031598, 0.0174277723, -0.0200857818, -0.00101987401, 0.0106868418, 0.00408977224, -0.00757669657, -0.0251140781, -0.0102552576, 0.0189485922, 0.0262101647, -0.0125501882, -0.00734377839, 0.02767618, -0.0347733386, 0.0295669287, -0.0191815104, 0.00303992676, -0.0122761671, 0.0219491292, 0.00774796028, 0.00518243294, -0.0241824035, 0.0213051774, 0.00706290593, -0.0250866748, 0.00676490786, 0.0296217334, -0.00281214644, 0.00888515, 0.00547358114, 0.00209969026, -0.0220587365, -0.0127351526, 0.0100360401, 0.00814529136, -0.00552496, -0.0157973431, -0.020400906, 0.00995383412, -0.0284708422, 0.00598737132, 0.0445285067, 0.0371847264, -0.00896050595, 0.00229150546, 0.0052235364, 0.0126597965, -0.00496321591, -0.0281694178, -0.00443914952, 0.00833710656, 0.00482620485, 0.00337217795, 0.0246619415, -0.0108307032, 0.0186334681, 0.00323859253, -0.00851522, 0.00162700308, 0.0164549965, -0.00490498636, -0.0242646113, 0.00399728958, -0.000646947825, 0.00363078597, -0.00209797779, -0.00676148245, 0.00159531937, -0.0218669213, 0.00898105744, 0.0137421824, -0.0161261689, 0.00580925727, 0.0214558896, 0.0123926261, 0.0169345327, 0.000973632908, -0.00810418837, -0.00889885053, 0.000228422679, -0.00285667484, -0.00446997676, 0.0051036519, 0.0314576775, 0.0132557936, 0.000312769931, -0.00193870266, -0.0179073103, 0.00473372266, -0.003480074, -0.00765890302, 0.0129064163, -0.0303889923, -0.0177703, -0.00987847801, 0.0119336396, -0.00954965223, 0.00396646233, -0.0286352541, 0.00539479963, 0.00339444238, -0.00757669657, 0.00905641355, -0.0101936031, -0.0139476983, -0.000778392539, -0.0070355041, -0.0269774236, 0.00959760603, 0.00327798305, 0.00959760603, -0.00249702157, 0.0234151445, 0.0594078787, 0.0109814145, 0.00961815752, 0.0230863187, -0.00281899702, -0.0206612274, -0.00686081545, 0.00515845604, -0.0133448504, 0.0267856084, -0.0068710912, 0.038801454, 0.00957020372, -6.70068403e-05, 0.0135024134, -0.0317865, -0.0185101572, 0.0319509171, -0.0149478773, 0.0299505591, 0.00740543334, -0.0348555446, 0.0251688827, 0.000216113112, -0.0113513442, 0.0053913747, -0.0265115872, -0.0256621204, -0.0117966291, -0.0116048139, 0.00635387516, -0.0127762556, -0.0307178181, 0.00579898153, 0.0117760776, 0.00772055797, 0.00833025575, -0.014358731, 0.00754929427, 0.0214695912, 0.014838268, 0.0123789245, 0.0166742131, -0.0160165615, 0.020798238, 0.0210311562, -0.017784, -0.0103854174, -0.013358552, 0.0106320372, 0.0112280343, -0.0127077503, -0.0297313407, 0.0177291967, -0.0143176271, 0.0156329311, -0.00941949151, 0.0140230544, 0.0180717222, 0.0105018774, -0.0167975221, -0.0151533931, -0.00473714806, 0.0383082181, 0.0210859608, -0.0413498543, -0.00315638608, -0.00745338667, 0.0238398779, -0.0120295472, -0.00456245942, -0.00237713708, -0.0103717167, -0.0189348906, 0.00777536212, -0.00294744456, 0.0138517907, -0.00423020823, -0.00767260417, -0.0285256468, -0.0359242298, -0.02615536, -0.00547015574, -0.021880623, 0.00335333915, -0.0115979631, 0.00279502012, -0.0326359682, 0.0152493007, -0.00036843057, -0.0394317061, 0.0189896952, 0.0268678162, -0.00440489687, 0.00554208644, -0.0311836563, 0.00240453938, -0.0187430754, 0.00550783379, -0.0118925367, -0.0122761671, 0.00235144771, -0.0223875623, 0.0190582015, 0.00989902951, -0.0303067863, -0.00735062873, 0.00781646557, -0.0241824035, 0.00112520112, -0.0100428909, -0.00512077799, 0.0113581941, 0.0105703827, 0.00434666732, -0.00154222769, -0.0418430939, 0.00366846379, 0.0161809735, -0.0195651408, 0.00934413541, 0.0193459243, 0.00795347616, 0.0326359682, -0.00225040223, -0.0066964021, 0.0238946807, -0.00266485987, -0.0171263479, -0.00459671207, 0.0248537567, 0.000426660146, -0.00706975674, -0.0253058933, -0.0120295472, -0.00150198082, 0.00870018546, 0.00153195183, -0.00179484137, 0.0190307982, 0.0122008109, -0.00295087, -0.00178285292, 0.0239220839, 0.009720915, -0.00983052421, -0.0107005425, -0.00420280593, -0.0415416695, -0.00940579083, -0.0165783055, -0.0152493007, -0.00110379315, -0.0025398375, -0.000299282954, 0.00112520112, 0.0174825769, -0.00279844529, 0.0332936198, 0.0210311562, -0.000354943564, -0.000393906026, -0.0179758146, 0.0339786746, -0.0214147866, 0.0160987675, -0.0104059698, -0.0122145116, 0.000350233837, -0.00856317393, -0.0160850659, 0.00020112755, 0.0340882838, -0.00166725006, 0.000979627133, -0.0242920127, 0.00822064746, -0.0158110447, 0.00400071498, 0.0168934297, -0.0228259973, -0.000716737704, 0.0157973431, 0.0173455663, -0.00585721107, 0.0384178236, 0.0160302632, -0.00998123549, -0.0281420164, -0.0191815104, 0.00225211494, -0.0207845364, 0.0111184251, -0.0228259973, 0.0128995655, 0.00252956175, 0.00166639371, 0.0170030389, 0.00141720532, -0.00211852929, 0.0154822189, -0.00149341754, 0.0164823979, -0.00396303693, -0.0100223394, -0.00688136695, -0.00698069949, 0.0312932655, -0.0223053563, 0.00996068399, 0.021798417, -0.00208941451, 0.0193733256, -0.000742855365, 0.020921547, 0.0137147801, -0.00461383816, 0.0118240314, 0.0119404905, -0.0147012575, -0.0126255443, 0.00545302918, 0.00095051236, 0.00499061774, -0.00216819579, -0.00817269366, 0.0189348906, -0.00231205695, 0.0181676298, -0.00802198146, 0.00238570035, 0.00661419565, 0.00822064746, 0.0163864903, 0.00765205268, 0.00868648384, -0.0108307032, 0.0105840834, 0.0185375605, -0.0198665652, -0.00965241, -0.0104059698, 0.0197706576, -0.00756299542, -0.0258950386, 0.0113650449, -0.0311836563, 0.00231205695, 0.0114472518, 0.0251277778, 0.0178525057, 0.00909751654, 0.0195377376, 0.0224012639, 0.0146327522, 0.00501116971, 0.000122025231, 0.00405894453, 0.0111526782, 0.020921547, 0.0031940639, 0.0138449399, 0.014838268, 0.00166125584, 0.00346979825, 0.0217710137, -0.0249907672, -0.000410176057, -0.00752189243, 0.0230041109, 0.00717251468, -0.0278268903, 0.0200857818, 0.00809048675, 0.00509680156, -0.0254292022, 0.00321119046, 0.0234288443, -0.00554551184, -0.0156740341, -0.0156192295, 0.0275391694, 0.0127420034, -0.000192778461, -0.00707660709, -0.00536397239, 0.009720915, 0.00778221292, 0.0211270638, -0.0101045454, 0.00739173219, -0.0340882838, -0.0070115272, -0.0142902257, 0.00597367, 0.00436721882, 0.0311836563, -0.0134133566, 0.0211407654, 0.0191541091, -0.00636757631, 0.00326428213, -0.00302280043, -0.0239083823, 0.0228259973, -0.0175236799, 0.00917287264, 0.00922082644, -0.0206749272, -0.00627851952, -0.0265389904, 0.00525436364, -0.0103169121, 0.00972776581, 0.00215449464, -0.0117144221, -0.0155096212, -0.0103443144, -0.00587433763, 0.00737118, -0.025716925, 0.0220724382, 0.0126460958, 0.00412745, -0.0110910237, 0.00208770181, -0.0130091747, 0.020483112, 0.00198494387, -0.00711771054, -0.00692589534, 0.0123857753, 0.0050043189, 0.0103374636, 0.00100617297, 0.00382945151, 0.0109334607, -0.0291010924, 0.00132643571, -0.0236891657, 0.0147834644, 0.0124474298, 0.00927563, 0.028196821, 0.00229321816, -0.00441859802, -0.0199350696, -0.0110225184, 0.005179008, -0.0107758986, 0.00475769956, 0.00254840078, -0.0064121047, -0.00788497087, 0.00153195183, 0.0239083823, -0.0103922682, -0.0170030389, 0.0149067733, -0.00238570035, -0.0218258183, -0.00116459175, 0.0106457379, -0.000470118277, -0.00527149, 0.019400727, -0.00876184, -0.0128995655, -0.0183868483, 8.54711834e-05, -0.00414800178, -0.00740543334, -0.00149684283, -0.0233466383, 0.00107981625, -0.00220758631, -0.00228294218, -0.0151259908, -0.0133722527, -0.0302519817, 0.0103717167, 0.00743283518, 0.0193459243, -0.00846041646, 0.0190993045, -0.00811788905, 0.00609698, 0.0155096212, 0.00533314515, 0.0120500987, -0.0147697628, -0.00966611132, 0.0276898798, 0.0281146131, 0.0289914832, -0.00371299242, -0.033403229, 0.000519356516, 0.00562086748, 0.0183457453, -0.00676490786, 0.00876869075, 0.0125090852, 0.0264841858, -0.00877554063, -0.00120141334, 0.00306904176, -0.00735747954, 0.00705605559, -0.00272994, -0.0423089303, 0.0096044559, 0.002490171, -0.0026357451, 0.0109403115, -0.0278679952, -0.00374724506, 0.0105361296, -0.00086445245, 0.0138517907, 0.00647718506, -0.0123515222, 0.0175921861, -0.00775481062, 0.0150985885, 0.0227026884, -0.00230178121, -0.0175236799, 0.00775481062, 0.00784386788, -0.00358283217, 0.0207434334, -0.00216819579, -0.0302519817, 0.00287551386, 0.0216203015, -0.00375067024, -0.0213462804, 0.0216614064, 0.000419167394, -0.0137695847, 0.0219902322, 0.0106457379, 0.00274877902, 0.0204146076, 0.00946744531, -0.0169893373, 0.000815214182, -0.0100086378, -0.00384315266, -0.0309644379, 0.00619631307, 0.0103785675, -0.0148245674, 0.00184964563, -0.0176195875, -0.0230589155, -0.0199350696, -0.00676148245, 0.0161535721, -0.0162631813, -0.0140230544, 0.0191267058, 0.00264088297, -0.0157425404, 0.0161124691, 0.0116527677, 0.0108307032, 0.0276487768, -0.00205173646, -0.0227437913, -0.00198494387, 0.0142902257, 0.00103357516, -0.00533999549, -0.00187704782, -0.027758386, 0.00591544062, -0.0115842624, -0.0124268783, -0.00868648384, -0.0109951161, -0.020277597, 0.00168865791, -0.00944689382, 0.0265526902, -0.00599764707, 0.0173318647, 0.00212024199, 0.00735747954, 0.0118171806, 0.000515931228, -0.0127077503, -0.0269089192, 0.00515845604, -0.0285256468, 0.0145505462, -0.0158658493, -0.00274535362, 0.0185101572, 0.00310158171, -0.0103717167, -1.0262429e-05, -0.00111920689, -0.0269500222, -0.0263471752, 0.00301081198, -0.0218669213, 0.0152081978, 0.0358146206, 0.00567909703, -0.00956335291, -0.00387398014, 0.00288236444, 0.027717283, 0.0173455663, -0.00900160894, 0.0294573195, -0.0132215414, 0.00425075972, 0.0160713661, -0.00741228368, -0.00525778905, -0.0108581046, 9.95469e-05, 0.00236001075, -0.00682656234, 0.0183868483, -0.0025381248, -0.019715853, 0.00283954851, -0.0299779605, 0.00177086447, 0.0131050823, 0.00828230195, -0.00921397563, -0.0145094423, 0.019756956, 0.00197124272, -0.00521326065, -0.00221614959, 0.0103100622, 0.025716925, 0.0263745766, -0.00965926051, -0.012077501, -0.00412402488, -0.00677860854, -0.0109403115, -0.00347493612, -0.00247133221, 0.0259635448, 0.00301252468, 0.00102586823, 0.0262101647, 0.0103237629, 0.0307452213, -0.0196473468, -0.000548899465, 0.00127248769, 0.0240727961, -0.0119541911, 0.0306082107, -0.0133380005, 0.00836450886, 0.0129406694, -0.00384657783, 0.0145231439, 0.00132729206, -0.0233055353, -0.0201268848, -0.00293888152, 0.00527149, 0.0273062494, 0.00258094072, 0.00966611132, -0.00358625734, -0.00722731929, 0.0171126481, -0.0109334607, -0.000337389065, 0.0134681603, -0.0101524992, -0.00469261967, 0.00200720807, -0.00539822504, -0.00733007723, -0.00935783703, 0.0436242335, -0.00209455239, -0.00405209418, -0.00136668258, 0.0027076758, 0.00209626509, -0.00778906327, -0.0233740397, -0.0295669287, -0.0140093528, -0.00376437139, -0.0290736891, -0.0140984105, -0.0146875568, 0.0191541091, 0.0102552576, -0.00370956701, 0.00299539836, 0.000156170892, -0.000366932, 0.0195377376, 0.0191678088, 0.017784, 0.0147697628, -0.00509680156, 0.00698412489, -0.000498376729, -0.0164412949, 0.00363078597, -0.0117349736, 0.036116045, -0.000465408521, 0.0100771431, -0.000759981689, 0.0124748321, 0.0139956521, -0.00937153772, -0.0132352421, -0.0238124747, -0.0124748321, -0.0134476088, 0.00412059948, 0.0129817724, 0.00852207094, -0.00683683855, 0.00189588673, -0.0210174546, -0.00394591084, -0.00615863502, 0.00296457089, 0.0302245803, 0.0299779605, 0.00776851177, -0.00785756856, 0.0138517907, -0.0252510887, 0.000544189708, -0.00676148245, -0.00553181069, -0.00197124272, 0.00207057549, -0.00870018546, -0.00910436735, -0.00631619757, 0.00653884, -0.00849466864, 0.00719991699, 0.0239768885, 0.0140436059, 0.00154650933, 0.00335505162, -0.0113170911, -0.0121117542, -0.00693274569, 0.0106868418, 0.0146053499, -0.027881695, -0.0017177728, 0.00780961476, 0.00485018175, -0.00745338667, -0.0248948596, -0.0175236799, -0.0265663918, -0.0171400495, 0.00119285018, 0.00717936549, 0.00336875278, 0.0248537567, 0.00919342414, -0.00878924225, 0.0195925422, 0.00830285344, -0.00443572411, -0.00538452389, 0.00455218367, 0.0173455663, -0.0207434334, 0.00631277217, -0.013399655, -0.00421650708, 0.0139819514, -0.00614835927, -0.0208256394, -0.0123241208, 0.0264293812, -0.00736433, -0.00229664333, 0.00419595558, 0.00983737502, 0.0229356065, 0.00211167871, -0.000819923938, -0.00857002474, 0.00157733669, -0.000494523323, -0.010241556, -0.0125022344, -0.00404866878, 0.00114061486, -0.037075121, -0.00797402766, -0.0200172756, -0.00334820105, 0.0125296367, -0.0115500093, 0.000261604961, 0.00239255093, 0.00175202545, 0.00565169519, 0.0289640799, 0.00805623457, 0.00297313416, 0.0050556981, -0.00139665371, -0.0112554366, 0.0184553526, -0.00394933578, 0.0148245674, 0.00119627547, -0.00619631307, 0.0304712, -0.00719306618, 0.00346123497, -0.00130074623, -0.00743283518, 0.00841246266, -0.0101319477, -0.0366092809, 0.0111526782, -0.00929618161, 0.0187293757, 0.000731295091, -0.0157151371, 0.0335128382, -0.00595654408, -0.0107690478, 0.0302793849, 0.0129954731, -0.0247578491, -0.00687451614, 0.0188252833, -0.0130091747, 9.10372473e-05, 0.0293477103, -0.00297998474, -0.00566882128, -0.0115020555, 0.0129612209, -0.00494951475, 0.00383287692, -0.00433296617, 0.0194281302, -0.010960863, -0.00286523812, -0.00951539911, 0.00299197319, -0.00175887602, 0.0176606905, -0.00714511285, 0.0141943181, -0.00153366453, 0.0196336452, 0.013317449, 0.00928933173, 0.000171584601, -0.0257306267, -0.00393563509, 0.00182909402, -0.00787127, -0.0153452083, 0.00359653309, 0.0101662008, -0.00317693758, -0.019277418, -0.0106662903, -0.00406579534, 0.0132283913, 0.0310740471, 0.0122693162, 0.00978257, -0.0193733256, 0.0126940496, 0.0319235139, -0.0100702932, 0.00826860126, -0.0138243884, -0.0123720746, -0.00675463164, -0.00838506, 0.00765890302, -0.00320605235, 0.0173044633, 0.0137969861, 0.0268952176, -0.00457273517, 0.0197843574, 0.000840903725, 0.0184279513, 0.0219217259, -0.00778906327, 0.0111732297, -0.00562086748, 0.0190033969, -0.00676148245, 0.00154736557, -0.00559004024, -0.0013058841, 0.00902216, 0.00777536212, 0.000430727669, 0.0150985885, -0.00110464951, -0.00347664882, -0.0245660339, 0.0140847089, -0.017879907, 0.00603875052, 0.0169345327, 0.0139065953, -0.0214969926, 0.000690191868, -0.0354035869, 0.0280598104, -0.0134818619, -0.013317449, 0.00284126122, -0.0241961051, -0.026717104, -0.0154548166, 0.000381703489, 0.0133654028, -0.031402871, 0.0103169121, 0.00954965223, 0.00706290593, -0.00116972963, -0.00733007723, 0.0182909407, 0.0133105982, 0.00902901124, 0.00588461338, 0.0105977841, 0.000584864814, -0.0098236734, -0.00447682757, -0.00141378, 0.0116870198, 0.0274158586, 0.00895365514, -0.0053673978, -0.00481935451, 0.0154685182, 0.0131119322, -0.0103306137, 0.000599422201, -0.0155370235, 0.00601477362, 0.0105498303, -0.00396303693, 0.00264944602, 0.0160439629, -0.00726157194, 0.0227026884, 0.00247818255, -0.0160850659, -0.0193322226, -0.0142080188, 0.0239083823, 0.00110208057, 0.012920117, 0.0224012639, -0.00224012649, 0.00724102, -0.00196439214, 0.0188526846, 0.00921397563, 0.00724787079, -0.0174962785, 0.00738488138, 0.0224423669, -0.00857687555, -0.000789952814, -0.00995383412, 0.0247715507, 0.00382260093, -0.0237439703, 0.00381917576, 0.0129064163, 0.0166879147, 0.0034560971, -0.0127488542, 0.0032197535, 0.00679230969, 0.0124063268, 0.00155678508, -0.00245763105, -0.0108855069, -0.00284982449, -0.032444153, -0.0185923632, 0.00854947325, -0.0101799015, -0.00852892175, -0.000407393, -0.00417882903, -0.00405894453, 0.00768630533, -0.000521497335, -0.0190170966, -0.00523723755, -0.0161398705, 0.0269911252, -0.00905641355, 0.0167701207, -0.00827545207, -3.5423443e-06, 0.00342526962, -0.00423363317, 6.70068403e-05, 0.0129406694, -0.00257580285, 0.00167752581, -0.00473029725, 0.00785756856, 0.0116938706, 0.0146875568, -0.00870018546, -0.0291284937, -1.96016408e-05, -0.0157562401, 0.011159529, -0.00396988774, 0.0485840254, 0.00110893103, 0.00174860016, -0.0116185145, 0.00907696504, -0.0229082033, 0.010440222, 0.00733692758, 0.00952910073, 0.00650458736, 0.0180169195, -0.00328312092, -0.0109266108, 0.0106046349, 0.00265287142, -0.00945374463, -0.000811360776, 0.00136154471, 0.0184142496, 0.0066552991, -0.00203461014, 0.0167290177, 0.00284126122, -0.00967296213, -0.0153726107, 0.00316666183, -0.0237028673, -0.0142628234, 0.0127625549, -0.0100908447, 0.00283098547, -0.010118247, 7.38573799e-05, -0.00713826204, -0.00537424814, 0.00774110947, 0.000611838826, -0.00626139296, -0.000848610594, 0.00427816203, 0.0308548287, 0.00643265666, -0.020277597, 0.00654569035, -0.00941264164, -0.00306732906, 0.000847326068, -0.00251072273, 0.0117966291, 0.0132831959, 0.0111389775, -0.0124885337, 0.00248845853, 0.00606615283, -0.000648232293, 0.00729582459, 0.00197980599, -0.0111937812, -0.00915232, -0.0226889867, 0.00354515412, 0.000395832729, 0.0260457508, 0.00652513886, 0.00564827, 0.00219046, -0.028799668, 0.00698069949, 0.0183868483, 0.00806993525, 0.0175373815, 0.00653541461, -0.0126940496, 0.0148245674, 0.00210140296, -0.00915917102, 0.0064121047, 0.00436036848, 0.0137558831, 0.000832340564, -0.00385000324, 0.025319593, 0.00915917102, -0.00643950701, -0.00977572, 0.000856317405, -0.0160302632, -0.0207708348, -0.00479537761, 0.0137901362, -2.22508734e-05, 0.0251825824, -0.00951539911, 0.0203324016, -0.0111321267, 0.00143176271, -0.0221820474, 0.00249873428, -0.0131667368, 0.00363763655, -0.0154822189, -0.00544275343, 0.00270938827, -0.0112828389, 0.00872073695, 0.013639424, -0.0164412949, 0.00336875278, 0.00865908153, 0.0103237629, -0.0234699473, 0.0125433374, -0.012557039, -0.0128927156, -0.00327455788, 0.0325263627, 0.0168523267, -0.00611068122, -0.00593941752, 0.015400013, -0.0225793775, 0.0277035814, -0.0127351526, 0.0169756375, 0.00705605559, -0.0122282133, 0.02096265, -0.00813844055, -0.0050762496, 0.0249496643, 0.00759039773, -0.00837821, 0.00176743919, -0.0128927156, 0.0251688827, -0.0176195875, -0.00526806479, 0.00896050595, 0.0303341877, 0.00271966425, 0.00887144823, -0.0137353316, -0.0150300832, 0.0291832983, 0.0139819514, 0.0118925367, -0.0457067974, -0.0177428965, 0.0275665708, -0.00272308942, 0.0100154886, 0.011481504, -0.0107347956, 0.00763150072, 0.00806308445, 0.00899475813, 0.00722731929, 0.0139819514, 0.00395276118, 0.0142354211, -0.0189348906, -0.00148314179, 0.0097962711, 0.0124885337, -0.000641381775, 0.00756984623, 0.00907696504, -0.000791237282, -0.0371025205, 0.0115774116, -0.000559603446, -0.000251971389, 0.0147012575, 0.00867278315, -0.0217162091, 0.000968495035, 0.0360886417, 0.0024696195, 0.00181710557, 0.000287508563, 0.0102141546, -0.00529204169, 0.00108495413, 0.00777536212, -0.0178388041, 0.00623056572, -0.00811103825, -0.0133105982, -0.00935783703, -0.0106251864, -0.00659364415, -0.00330538535, -0.00930988323, 0.0231959261, 0.00861797854, 0.00140436064, 0.0318139046, -0.00286523812, -0.00585721107, 0.0119267888, 0.0098647764, -0.0070355041, 0.0255388115, 0.0116048139, -0.00830970425, 0.00299882353, -0.00232575811, 0.00032925405, 0.00214764406, 0.0325811654, -0.00869333465, -0.0116664683, -0.000449994812, -0.00771370716, 0.0243605189, -0.0222368501, -0.0296765361, 0.00562429288, -0.0695466772, -0.00697384914, 0.00166296843, 0.0179484133, 0.0207297318, -0.00552838529, 0.0209489502, -0.00932358392, 0.0225108732, -0.00736433, 0.0130982315, 0.0228259973, -0.00100017875, 0.0156877358, -0.00356228044, 0.00281214644, 0.00713826204, 0.0038089, -0.0219217259, -0.0228533987, 0.0150300832, 0.0228122957, 0.00711771054, 0.00381917576, 0.010638888, 0.00552496, -0.00339615485, -0.0106457379, -0.013598321, -0.0235110521, -0.00385000324, 0.0114129987, 0.00554208644, -0.0230863187, 0.0217847154, -0.00578870578, 0.0170304403, 0.00257409015, -0.0133311497, 0.00497006625, -0.0152081978, 0.00591886602, 0.0189622939, -0.0136873778, -0.0125775905, 0.00637785206, 0.006679276, -0.0101662008, 0.00421308167, 0.00142662483, -0.0151396925, 0.00146858441, 0.0032197535, -0.00582295842, 0.00619288767, 0.0184690543, -0.0293477103, -0.0131119322, 0.0110704713, 0.00796032697, 0.0185649619, -0.0175373815, 0.0034578098, 0.00762465037, 0.00215106946, -0.0163042843, -0.00644978276, -0.0136120217, -0.0177291967, 0.0363900661, -0.0205516182, -0.0157151371, -0.00206372491, 0.00441517262, 0.00685396465, 0.0180991255, 0.00591886602, -0.0013041714, 0.0153315077, -0.00267856102, 0.0106251864, -0.0135024134, 0.0326907746, -0.00216990826, 0.00445627607, -0.00577157969, -0.018318342, 0.0135640679, 0.0136736771, 0.00419595558, 0.0131050823, 0.0063641509, -0.0247852523, -0.00637100171, -0.00876184, -0.00175887602, -0.00980997272, -0.00863167923, 0.00150112447, 0.00299197319, 0.018880086, 0.00100189145, 0.0264841858, -0.00537424814, 0.0454327762, -0.0130434269, 0.0134133566, -0.000668355729, 0.00884404685, 0.0115568601, 0.0112759881, 0.0107347956, 0.00376094622, 0.00152510137, 0.0409936272, -0.000851179531, 0.00159617572, 0.00252099847, -0.00194555323, -0.00489471061, -0.000978770782, -0.0130571285, -0.00805623457, -0.0275939722, 0.000338673533, -0.00254326267, -0.00289092772, -0.0204283092, 0.00129646459, -0.0323893502, -0.00325229368, -0.00218874728, -0.000641381775, 0.0201816894, 0.0143039264, 0.00747393863, -0.00398358889, 0.0233329367, -0.0137832854, -0.00427473662, 0.00179484137, -0.00681286165, 0.00844671484, 0.020483112, -0.0275802724, -0.0145779476, -0.00943319313, -0.01307768, 0.00929618161, -0.00204488612, 0.00894680433, -0.010638888, -0.00807678606, -0.000299068866, -0.000341242499, 0.00451108, 0.0209352486, -0.0136873778, -0.00692247, -0.010241556, 0.00202947226, 0.011481504, 0.00841931254, -0.006679276, 0.00229493063, 0.0177703, 0.0117692268, 0.00527834054, -0.00313412189, 0.0142491218, 0.0132215414, 0.0135572171, -0.00867963303, -0.000470974599, -0.00797402766, -0.0302519817, 0.00911121722, -0.0282242224, 0.0122556146, 0.00480565336, 0.00471317116, 0.0105909342, 0.00417197868, -0.0204146076, 0.0225519761, -0.0208941456, -0.00342013175, 0.0204557106, 0.00142662483, 0.00530574284, 0.0112348851, 0.0236206595, -0.000481250405, -0.00743968599, -0.0179073103, -0.00790552236, -0.00146601547, 0.026319772, 0.000719306641, 0.004839906, 0.0165783055, 0.00275734207, 0.00842616335, 0.00349548785, -0.0185101572, 0.00124594185, -0.00302108796, -0.00241310243, -0.00301252468, 0.00978257, 0.027319951, -0.0116870198, -0.00378492312, -0.0180306192, -0.00785756856, 0.0104607735, -0.00788497087, -0.00921397563, -0.000986477709, -0.00234117196, 0.0242920127, 0.0150711872, 0.0103374636, 0.00302965101, 0.0377053693, 0.003480074, 0.0113855964, 0.0193048194, -0.0287722647, -0.0185923632, 0.0165646039, 0.0153452083, 0.00320091448, -0.00994698331, -0.00910436735, -0.00390138221, -0.00296628359, 0.0175099783, -0.00146772806, 0.0254703052, 0.037842378, -0.00632989826, -0.0110225184, -0.00525436364, -0.00713141169, 0.00375409564, -0.0152356, 0.0261142571, 0.00320262718, 0.0134202065, 0.00820009597, -0.0161124691, -0.0116527677, 0.024798952, 0.0110773221, 0.0148245674, -0.0164961, 0.0240316931, -0.0099675348, -0.0191267058, 0.000145895086, 0.00441517262, 0.00733007723, -0.0209352486, 0.000661505212, 0.00767260417, 0.00119028124, -0.0107895993, -0.00633674907, 0.00207742606, -0.000933386, 0.00706290593, 0.00508652534, -0.00124765444, -0.00711771054, -0.000865308743, 0.00615863502, 0.0148108667, -0.00668955175, -0.00554551184, -0.00389795704, 0.0107621979, -0.00937838852, 0.0152630014, 0.0280324072, 0.0116596185, -0.0129680708, -0.0287722647, 0.0102141546, 0.00107210944, 0.00748764, -0.0120295472, 0.0139271468, -0.0124268783, -0.0261142571, -0.0142491218, -0.00561059173, -0.00257066498, -0.012077501, -0.00828230195, 0.00601477362, -0.0386644453, -0.00320947776, -0.00298341, 0.0051276288, -0.0235110521, -0.00585721107, -0.0171126481, 0.00276590534, -0.0256484188, -0.00471317116, 0.00638127746, -0.00909066573, 0.006579943, 0.000708174484, 0.0127214519, -0.0239631869, -0.00896050595, 0.0109951161, 0.000315124809, -0.0109403115, 0.0292655043, 0.00878239144, -0.0158658493, -0.00488786, -0.000540764479, 0.00348521187, -0.0167016145, -0.00550098298, -0.0505843833, 0.00822749827, -0.0100908447, -0.0032899715, -0.0214695912, -0.00630249642, -0.0190719012, -0.034115687, 0.0202638954, -0.0113033904, 0.000366075692, -0.0234836489, -0.0051995595, -0.0140162036, -0.0169071313, 0.028361233, -0.00341670658, -0.0169071313, -0.0100702932, 0.021880623, 0.009919581, -0.0051242034, -0.0296217334, -0.00543590309, 0.00815214217, 0.00927563, 0.0107553471, -0.00382945151, -0.0140710082, 0.0178662073, -0.0168660283, -0.00086445245, 0.00973461661, -0.0154137136, -0.0364722721, 0.0160987675, -0.00501802, 0.00149855553, 0.0141806165, -0.0244290233, -0.00740543334, -0.00479537761, -0.0173866693, 0.00858372636, 0.0688890219, 0.0168934297, 0.0176469889, -0.0248126537, 0.0224423669, -0.018318342, -0.00463439, 0.0297313407, -0.0066758506, 0.0121254548, -0.00922767632, 0.0311836563, -0.00436379341, 0.00387055473, -0.0035057636, -0.00854262244, 0.0169893373, -0.00902901124, -0.0146053499, -0.0179073103, 0.00789182168, -0.0259909462, 0.00494951475, -0.019798059, 0.00403496763, 0.000442716118, 0.00436721882, 0.000613551412, -0.00555236218, 0.020716032, -0.00802198146, 0.0214558896, 0.0132489428, 0.00869333465, -0.0134339081, 0.000206158424, 0.028196821, 0.0311836563, 0.00269397465, -0.0366092809, 0.0237165671, 0.0248263553, 0.0140436059, -0.00281728432, 0.0167564191, -0.0307726227, 0.00312213344, 0.00463781506, 0.000540764479, -0.0270870328, 0.0111184251, -0.0292107, -0.0143176271, -0.000364149, 0.0169893373, 0.00440489687, 0.0430487916, -0.00311185746, 0.0076178, -0.00195240369, 0.0033139484, 0.00452820677, -0.0160713661, 0.00880979374, 0.00210654084, -0.0374313481, 0.00392878428, -0.0139751006, -0.00636072597, -0.0118171806, -0.0250455718, -0.00541877653, 0.0184690543, -0.01091976, 0.00499061774, 0.00778221292, 0.00161672733, 0.008892, -0.00386370416, -0.00712456089, -0.0299779605, -0.00488100946, 0.00266828504, -0.0294847209, 0.000779248832, -0.00155764143, -0.00210654084, -0.0124953836, -0.0157288387, 0.00260149245, 0.00460013701, 0.0368559025, 0.00495294, 0.0017271922, 0.0232918337, 0.00822749827, -0.0150985885, 0.00772740832, 0.00587776303, 0.0235795565, 0.0242509097, -0.00904271193, -0.0165098, -0.000845613482, 0.00543247769, 0.0196062438, 0.00480565336, 0.00424733432, -0.00770685682, -0.00193699007, -0.00957705453, -0.00614493387, 0.00385000324, 0.00422678282, 0.0115911132, -0.00994698331, 0.00870703533, 0.00361365965, -0.00691219419, -0.00373011874, 0.0115979631, -0.000387483626, -0.0065319892, -0.0025860786, -0.00728897378, 0.00111920689, -0.0048159291, 0.0213736836, 0.0167564191, 0.00568937277, -0.00358968275, -0.00729582459, 0.003480074, -0.00048724463, 0.0221272428, 0.0212640744, -0.00807678606, 0.0116664683, 0.00975516811, 0.0222231504, 0.00516530685, 0.0100634424, 0.0114746531, 0.0257717296, -0.00412402488, 0.00693617109, 0.00813844055, 0.00733007723, 0.0389110632, 0.00315296068, -0.00556606334, -0.0205653198, -0.0240453929, 0.000713312416, -0.0121460063, -0.00289264019, -0.00453505712, -0.0129475193, 0.0142354211, -0.0152767031, 0.0143039264, 0.00291147921, 0.0224697702, 0.00779591408, 0.00883034524, -0.00246276893, -0.00197124272, -0.00913861953, 0.00506939925, -0.00219046, 0.0118856858, 0.0136462748, -0.0117075723, -0.00623399066, -0.0166057069, 0.00252956175, -0.0115431594, -0.000438006362, -0.00447340216, -0.00571677508, -0.0131050823, 0.0161261689, 0.0122076608, 0.0509680137, 0.00108581048, 0.00540507538, 0.00902901124, 0.0117623759, 0.0185512602, -0.0149478773, -0.00733007723, 0.00464466587, -0.0067991605, 0.000397545373, 0.0179347117, 0.00433296617, 0.02183952, 0.0015148255, -0.00150626234, -0.0146053499, 0.0311288517, -0.0200172756, -0.00482278, -0.0108718062, 0.0161809735, 0.00889885053, 0.000156706083, 0.00190445, 0.00312384591, 0.00778906327, -0.0162768811]
19 Nov, 2021
jQWidgets jqxSplitter orientation Property 19 Nov, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxSplitter is used for representing a widget that consists of a moveable split bar(s) that divides the display area of the container into two or more resizable and collapsible panels. The orientation property is used for setting or getting the orientation for the specified jqxSplitter. Syntax: For setting the orientation property: $('#jqxSplitter').jqxSplitter({ orientation: 'horizontal' }); For getting the orientation property: var disabled = $('#jqxSplitter').jqxSplitter('orientation'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/><script type=”text/javascript” src=”scripts/jquery.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script><script type=”text/javascript” src=”jqwidgets/jqxsplitter.js”></script><script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> Example: The below example illustrates the jQWidgets jqxSplitter orientation property. In the below example, the value of the orientation property has been set to ‘horizontal’. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css"/> <script type="text/javascript" src="scripts/jquery.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> <script type="text/javascript" src="jqwidgets/jqxsplitter.js"> </script> <script type="text/javascript" src="jqwidgets/jqxscrollbar.js"> </script> <script type="text/javascript" src="jqwidgets/jqxpanel.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxSplitter orientation Property </h3> <div id='jqx_Splitter'> <div style="background-color: #006400"> </div> <div style="background-color: #000000"> </div> </div> <input type="button" style="margin: 28px;" id="button_for_orientation" value="Value of the orientation property"/> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $("#jqx_Splitter").jqxSplitter({ width: 300, height: 200, orientation: 'horizontal' }); $("#button_for_orientation").jqxButton({ width: 300 }); $("#button_for_orientation").jqxButton(). click(function () { var Value_of_orientation = $('#jqx_Splitter').jqxSplitter( 'orientation'); $("#log").html(( Value_of_orientation)); }); }); </script> </center> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsplitter/jquery-splitter-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxsplitter-orientation-property?ref=asr3
PHP
jQWidgets jqxSplitter orientation Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.00741295423, 0.0233009849, -0.0198846739, 0.043594446, 0.0686765835, 0.0150522022, 0.0145193161, 0.0240309648, -0.0315059684, 0.0181035213, -0.0259873141, -0.0368202254, 0.00814658497, -0.0338127054, -0.0343674906, 7.97846078e-05, -0.02235201, 0.0109059121, -0.0226732, 0.0128549598, 0.0251989346, -0.0121249799, -0.0578144714, 0.0177093316, -0.0400905386, 0.0169939511, 0.0208190493, 0.0231257882, 0.00228118966, 0.00212789373, -0.0231695883, -0.000468556362, 0.0118840858, -0.00580334663, -0.0334623158, -0.0247171465, 0.00829988066, 0.0114825964, 0.0017346167, 0.0213446356, -0.0209358465, 0.0172421448, -0.00897876266, -0.015081401, 0.00587999448, 0.00356230582, 0.0105336215, 0.0138769336, 0.00665742392, 0.000790660328, 0.00883276667, 0.031447567, 0.0102197295, 0.0226294026, -0.0001593411, -0.0145850144, 0.0132272504, 0.0511570461, -0.0146361133, 0.0291554295, 0.0192422923, -0.0700781494, -0.0299876072, -0.0256953202, -0.0050697159, 0.0381049924, -0.00792029, 0.00156398362, -0.0366450325, 0.0171691459, -0.0253449306, 0.052909, 0.0102343298, -0.00743850321, -0.027009286, -0.0150230033, -0.012438871, -0.031447567, -0.0272574797, 0.024921542, -0.0201620664, -0.025651522, -0.0772611573, 0.014256523, -0.00857727323, 0.00845317636, 0.00158405816, -0.0344550908, 0.04771154, 0.0268048923, -0.0609679893, 0.00744580338, 0.0152857956, -0.0286882427, 0.00859917235, -0.0116650918, 0.013117753, 0.0145850144, 0.0102781281, -0.0290240329, 0.0468939617, 0.0274180751, -0.0269070882, -0.022498006, 0.00652237749, 0.0269508883, 0.0393313617, 0.0241915602, 0.00916125812, -0.00686911866, 0.0214760322, 0.00155029655, 0.0281334557, -0.00502226735, -0.0388349742, 0.0290824305, -0.0126286661, -0.0283524506, 0.00807358697, -0.0182349179, 0.000790204096, 0.0173443407, 0.00751880137, 0.0140010295, -0.011927885, 0.0536973812, -0.00579969678, 0.0384845845, 0.0387473777, -0.00366815296, 0.0115263956, 0.0177823305, -0.00900796149, -0.00203664624, 0.0280896574, 0.0496970862, 0.0338419043, 0.0338711031, -0.0476823412, 0.0360610485, -0.0195342842, -0.031447567, 0.0203372631, 0.0329367295, 0.0304255951, 0.011394999, 0.0468939617, 0.0217826236, -0.0108694127, 0.0506314635, -0.0491131023, 0.00674502179, 0.00214796816, 0.0383969843, 0.0627199411, -0.0289072357, -0.0162493698, 0.0356522575, -0.0195488837, -0.0180889219, 0.0310971774, -0.00656617666, 0.0153733939, 0.0158697814, -0.00723045878, -0.0124972695, 0.0157675836, -0.00261698081, -0.0478283353, 0.0297394134, -0.00266260467, -0.0263669025, -0.0118840858, 0.00368457753, -0.0586320497, -0.0609679893, 0.00222096639, -0.0315351672, 0.0244981516, -0.0314183682, -0.0176509339, -0.0193736888, -0.00480692275, 0.0214176346, -0.00187787542, -0.00588729419, 0.0393313617, -0.0192422923, -0.030162802, 0.0114825964, -0.033725109, 0.00933645293, 0.0283816494, 0.0414337032, -0.013672539, -0.0390393697, -0.00227571488, 0.00502956705, -0.0170523487, -0.00633623265, 0.00374115119, -0.00581794605, 0.00333418697, -0.00199467223, 0.0234469809, 0.0150668016, -0.00318089104, -0.0621359572, 0.0371706188, -0.0156507865, 0.00683991937, -0.0223228093, 0.0300752055, 0.0178261288, -0.0415213034, 0.0162785705, -0.017723931, -0.00130757794, -0.0136871384, -0.022862995, 0.00632163277, 0.0195926819, -0.0167019591, 0.0317395627, -0.0899336264, -0.0115847941, -0.00642383, -0.00489817047, -0.00692021707, 0.0127016641, -0.0420760885, -0.0148405079, -0.0237243734, -0.0128476601, 0.0141032273, 0.0306007918, -0.0161325745, 0.0350390747, -0.0286736414, 0.036440637, 0.000310469914, -0.0082633812, -0.00726695778, 0.00087004574, 0.0367034301, 0.0186729059, -0.0329659283, 0.00660997536, 0.00908096, 0.00217899238, -0.0187313054, 0.0110884067, 0.000953537296, -0.0317395627, 0.0371122174, 0.00947514921, 0.0420468897, -0.0260603111, -0.00838017836, 0.00190342474, 0.0299000107, 0.039156165, -0.0033798106, 0.0222936105, 0.0516242348, -0.0112125035, 0.0117380898, -0.0147237107, 0.00151288498, -0.0459887832, 0.00523396162, -0.0243229568, 0.0805898681, -0.0297686141, -0.0117891887, 0.00258048181, -0.0198262762, -0.00597124221, 0.0216074288, 0.00750420149, -0.0173735414, 0.000319366547, 0.0249361414, 0.0368786268, 0.0192860905, -0.0103803258, 0.0224688053, -0.0119862836, 0.00614643749, 0.0108694127, 0.00519746263, -0.0258997157, 0.0135557419, 0.02686329, 0.0352434702, -0.00253668288, 0.0319147557, -0.0289656352, 0.0043105362, -0.016804155, -0.0184393134, -0.00456967903, -0.0186145082, -0.0236659739, -0.0150230033, 0.029359825, 0.0110373087, -0.0100883329, -0.0126870647, -0.000928444206, 0.0423972793, 0.00848237611, -0.0287904385, -0.00772319594, -0.00832178, -0.0100956336, 0.0184685122, 0.0213446356, 0.00435798476, -0.00112782023, 0.017212946, -0.00975984242, -0.0419592895, 0.0459887832, 0.0457259901, 0.00689831749, -0.00609168923, -0.0275932699, 0.00694941636, -0.0264837, -0.0459303856, 0.00706621306, 0.0254033282, -0.017431939, 0.0238849688, -0.0122417761, 0.0130082564, -0.0298416112, -0.0266734958, 0.0167311579, 0.00483612204, -0.0322067477, 0.0190086979, -0.000345828361, 0.0028268504, -0.0596540235, -0.00786189176, -0.00250565866, 0.0625447482, 0.0165413637, 0.00131487777, 0.0331119262, 0.0190962944, 0.0126578659, 0.02686329, -0.03515587, 4.16887415e-05, -0.0322359465, 0.0165559631, -0.00648587849, -0.000741842901, 0.0081903832, 0.00211694394, -0.00339076039, -0.00233046338, -0.0319439545, -0.0280458592, -0.0322943479, 0.0123147741, -0.00962114614, -0.0304547958, -0.0432148576, -0.00775239524, 0.0100226346, -0.0419300906, 0.0155631891, -0.00170541741, -0.028805038, 0.00232316367, 0.0204540603, -0.0295496192, 0.0273158774, -0.0187751036, 0.000447797531, -0.0109424107, 0.00704066409, 0.0196364801, -0.0333747193, -0.0167165585, 0.0248777419, -0.015636187, 0.0433608554, -0.00981824, -0.0161763728, -0.000276708306, -0.0146288136, -0.0254179277, -0.00288524874, 0.030016806, 0.0143149216, 0.00472662505, -0.0597124211, 0.0436528474, -0.0180597231, 0.0309803821, 0.0128184613, -0.0396525525, 0.0129206581, -0.00179757748, 0.00590919377, 0.0110957064, -0.00366815296, -0.0210234448, 0.0497554839, 0.0195050836, 0.012606767, 0.0259727128, 0.0544857606, -0.00955544785, -0.0260457117, 0.0299876072, -0.0179137271, -0.0294620208, 0.0218556225, -0.0527630039, 0.0025385078, -0.0402073376, 0.0022100166, 0.048587516, 0.00959194638, -0.0388933718, -0.0246441495, 0.0160157774, -0.00542740664, 0.0148405079, 0.017212946, 0.0444412269, 0.0116212927, 0.00746040279, 0.00355135603, -0.0105044227, 0.00491277035, 0.00944595, 0.00870137, -0.0261479095, -0.000738193, -0.0194612853, -0.00739105465, 0.0138258347, -0.0124461707, -0.00730345678, -0.0346594825, -0.0297978129, -0.027009286, -0.0029253976, 0.00963574555, -0.00951894838, -0.0242061596, -0.000596302969, -0.013796635, -0.0354770608, -0.0015776708, -0.00361157954, 0.00380319939, 0.0185853094, -0.00613548793, -0.0170815494, 0.0234761797, -0.00924155582, 0.00518651307, -0.0563253127, -0.02535953, 0.0432732552, 0.0349222757, 0.0359734483, -0.0161325745, 0.00661727507, 0.00121633033, -0.00836557895, -0.0102781281, 0.0257537197, 0.0220892169, 0.0328783318, -0.0362654403, 0.00373567617, -0.0113657992, -0.00633258279, -0.0276516695, 0.0030768686, 0.0229067951, 0.0354770608, -0.000187171609, -0.0171983447, 0.0388933718, -0.00654427707, 0.0283816494, -0.0250821374, 0.0158697814, 0.042572476, 0.0294766203, 0.0102124298, 0.0349514745, -0.00594569277, 0.0269070882, 0.0222936105, -0.0132199507, -0.0507482588, -0.0139426319, 0.0101978304, -0.0317687616, 0.00682531949, -0.0143368207, -0.0228045974, -0.000849971257, -0.0105190221, -0.053055, -0.0228337962, 0.0081830835, 0.0108037144, -0.0163223688, 0.0103876255, -0.0160449762, 0.0367034301, 0.025213534, 0.0454339981, 0.0413169079, -0.00979634095, -0.0434776507, -0.0234615803, 0.00594934262, -0.0263815019, 0.00423023803, 0.0162639692, 0.0473903492, -0.0193882883, 0.0164537653, -0.00100372348, -0.013577641, 0.0123585733, 0.0355354622, -0.0184539128, 0.0102489293, -0.0698445514, -0.0208190493, 0.0441200323, 0.0240163654, 0.00226111524, 0.00220454182, 0.00581429619, 0.0339295045, -0.00742025394, 0.000252755824, -0.00492372, 0.00858457293, -0.00417549, -0.00675597135, -0.037871398, 0.00706986291, 0.0017528662, -0.0259873141, 0.02613331, 0.0135922404, 0.00475947419, 0.0185999088, 0.0202788636, -0.0232425854, -0.00730345678, 0.0173297413, -0.0206584539, 0.0239579659, 0.00365355355, -0.0141981244, -0.00869407, 0.0102708284, 0.0112417033, 0.0228337962, 0.0384261832, -0.0154901911, 0.0206146557, 0.00218629232, 0.00405504275, -0.0228921957, 0.000912475865, -0.0156945847, -0.0191692933, -0.0051062149, 0.0156215867, -0.0317979604, -0.0436820462, -0.00842397753, -0.0165267624, 0.0535805821, 0.0143222213, -0.00708446279, 0.00195269834, 0.0374042131, -0.0157091841, 0.0271990802, 0.0118767861, -0.0343966894, 0.00646032905, 0.0271844808, 0.033141125, 0.0162347704, -0.016366167, 0.015782183, 0.00813928526, 0.0223812088, 0.0127454633, -0.00286334939, -0.0449084118, -0.0037813, 0.0306591894, 0.0082633812, -0.0117672887, -0.0110008093, -0.0230965894, 0.0189065, 0.0043105362, -0.0122782756, 0.00669027306, 0.00828528125, 0.0104679232, 0.0177969299, 0.0175925344, -0.0142711224, -0.00908826, 0.00542375678, -0.00108310883, -0.0233447831, -0.0178407282, 0.0449668132, -0.00771589624, -0.00444558263, 0.0221622139, 0.00438353419, -0.00350390747, 0.00869407, -0.00692386692, 0.00971604325, 0.00865757093, 0.0120446812, 0.00468282634, 0.0389517695, -0.00948244892, -0.00654427707, 0.0272428803, 0.00932915322, 0.0319147557, 0.0174757373, -0.0282502528, -0.00734725595, -0.00258048181, 0.0176801328, 0.00800058898, 0.0234907791, -0.0170523487, -0.00936565269, 0.0178407282, 0.0249799397, 0.0103730261, -0.0174465384, 0.0347762816, 0.0258997157, -0.00246733474, 0.00286152447, 0.0153003959, 0.0606176, 0.015636187, 0.0174903385, -0.00114333234, -0.00761369895, 0.0505146645, -0.000330316281, -0.00489452062, -0.0306007918, 0.00646762922, 0.00617198693, 0.0138769336, 0.02385577, 0.00832907949, 0.0121395793, 0.0466311686, 0.0214906316, -0.00418643933, -0.0150230033, 0.00106942176, -0.00249288417, 0.027929062, -0.00526681077, -0.0260165129, 0.0121322796, -0.00940215122, 0.0127162635, -0.00748960208, -0.0153441941, 0.0229797922, 0.0085407747, -0.0107380161, -0.0181035213, 0.0275640711, -0.00652237749, 0.0214760322, 0.0170377493, 0.00530330976, 0.0198700745, 0.0020658453, 0.0245711505, -0.0145996138, -0.0182203185, 0.0222498123, 0.0222498123, 0.0195342842, 0.0358858518, 0.0287028421, 0.00457332935, -0.0297832135, 0.0044711316, -0.0475071445, -0.0100445347, 0.0213738345, 0.02613331, -0.00410979148, -0.0526462086, 0.0016716558, -0.0223374087, 0.0417548977, -0.0132564493, 0.018789703, 0.00527411047, 0.00230308902, 0.0220162179, -0.000705343846, -0.00944595, -0.0242499597, -0.0197386779, -0.00355865597, -0.0120519819, -0.0322067477, 0.0035677806, -0.0180743225, -0.0204248596, 0.00224469067, 0.016366167, 0.00834368, 0.00916125812, 0.000918407, -0.0262647066, 0.0214906316, -0.0108037144, 0.0209066477, -0.00255310745, 0.00549675478, 0.00151562248, 0.0224688053, 0.00811738521, -0.00679977, -0.00374845089, 0.0306591894, 0.0200306699, -0.0029253976, -0.00586539507, -0.0168917533, 0.00547850505, -0.00771589624, 0.0126651656, -0.0152419973, -0.00633623265, 0.0206292551, -0.0255639236, -0.00833638, 0.00389079726, 0.0260311123, -0.00187057559, -0.0231403876, 0.0174903385, -0.0223082099, -0.00287612388, -0.0129279587, 0.00221184152, -0.0102416296, 0.00427038735, 0.0193006899, -0.0232133865, 0.0295204204, -0.0175341368, 0.0510402508, 0.00565370079, 0.00992773753, 0.0225710031, 0.0173005424, 0.014278423, -0.0159573779, 0.0137601364, 0.0135557419, 0.00428498676, -0.0271114837, 0.00846047606, -0.00940945093, -0.0426308736, 0.00612088805, -0.00983284, 0.00301847025, 0.0447624177, 0.025505526, -0.0190086979, -0.029432822, -0.0100226346, -0.0151252, -0.0224250071, -0.00299292081, -0.0173735414, -0.0255347248, 0.00429228647, -0.00806628726, -0.0142492233, 0.00959924608, -0.00878896751, 0.014643413, 0.0211840402, -0.00416453974, 0.0216950271, 0.00974524207, 0.00515366392, -0.0113293007, 0.0200598706, 0.00665012421, 0.00781809352, 0.00762099866, -0.0275056735, -0.00874516927, 0.0131469527, -0.0318855569, 0.00712096179, -0.00195817323, 0.00128385355, 0.0118694864, 0.0336959101, -0.0152711961, 0.0183225162, 0.00129662827, 0.011154105, -0.00210599438, 0.00349843246, 0.0204686597, 0.0336667113, 0.015081401, 0.00850427523, 0.0461347811, 0.00710271206, 0.0347470827, 0.00266625453, 0.0172713436, 0.0300752055, -0.00546025578, 0.0122417761, -0.0200160705, 0.012438871, 0.0158551801, -0.0116212927, -0.00223191595, 0.0172421448, -0.0188919, 0.00351120718, -0.0140302293, -0.0237243734, -0.0212278385, -0.0380465947, -0.0402073376, 0.00651507778, 0.00377765018, 0.0059274435, 0.0151544, 0.00571209891, -0.00664647436, -0.00890576467, -0.00228666468, 0.0166727602, -0.0059639425, -0.0193736888, 0.0220016185, 0.012460771, -0.0486167148, -0.00849697553, 0.0135411425, 0.0491715, -0.00547850505, -0.0160449762, -0.0254909266, 0.00418643933, 0.00889116526, 0.0141324261, 0.00154208427, -0.0379297957, -0.0104241241, 0.0308051854, -0.00450398074, -0.0219432209, 0.0043543349, 0.0147456098, 0.0187459048, -0.0325863399, 0.0308343843, -0.0120446812, 0.02308199, -0.0196218807, 0.00209869444, 0.0359442495, -0.00490547, 0.0125629678, 0.0359150507, 0.0157091841, -0.00708081294, -0.0237681717, 0.013818535, -0.0221622139, -0.0138550336, 0.0272574797, -0.00432148576, -0.0178407282, -0.0181181207, -0.00404774304, 0.0151398, 0.0258559175, 0.0131980516, -0.00929265469, -0.0277538672, 0.0239141677, -0.0267902911, 0.0127454633, 0.0110884067, 0.0115263956, 0.0354186632, -0.014497417, -0.0210964419, 0.00394919561, 0.0248777419, 0.00808088668, -0.0304255951, 0.00597124221, 0.033725109, 0.0158259813, 0.00931455381, 0.00527046062, -0.0189940985, -0.0101248324, -0.032849133, -0.00364260375, -0.0085407747, 0.0043543349, -0.0103511261, -0.00096448703, 0.00902986154, 0.00259508146, 0.00104660983, -0.0198554751, -0.0193298887, 0.0236805733, -0.0297686141, 0.00335061154, 0.0155193899, -0.0327907316, -0.0243813563, 0.00648952834, 0.00303124497, 0.000985474, 0.00433608517, 0.00800788868, 0.0154901911, -0.00428498676, -0.0146142142, -0.00962844584, 0.0393021628, 0.00326666376, 0.00382874883, -0.00542010693, -0.00327031361, -0.0269362889, 0.0241331626, 0.010643119, 0.0392145626, 0.00964304525, -0.00781809352, -0.0174173396, 0.0275786705, -0.02686329, -0.011249003, -0.00721585937, -0.0437988415, 0.0312431734, 0.0427768677, -0.012387773, -0.0122344764, -0.00187057559, -0.00184502627, -0.00535440864, 0.0406745262, -0.0190378968, -0.00519381277, -0.0270822849, -0.0115628941, -0.0393313617, 0.0116358921, 0.0143952193, 0.0285422448, 0.00479962304, -0.00935835298, 0.0233447831, -0.010862113, 0.000255949475, -0.00954814721, 0.00407329248, 0.020001471, 0.0324987397, 0.0320607536, 0.0106577184, -0.00266625453, 0.0209504459, 0.0523542166, 0.00502956705, 0.0347470827, -0.016366167, 0.0057047992, -0.0229943916, 0.00200197217, 0.0123731727, -0.0279874597, -0.0179867242, -0.00125009194, 0.00742755365, -0.00843857694, -0.00331958733, -0.0297394134, 0.0104825227, -0.00646397937, -0.0303379986, -0.011103007, -0.0372290164, 0.00158862048, -0.0240309648, 0.0423972793, 0.0152711961, 0.0243959557, -0.000685269362, -0.00297649624, -0.000490455772, -0.00289984839, 0.00856997352, 0.0155923879, -0.0183517151, 0.00279400125, 0.0024764596, 0.015928179, 0.00118621869, 0.00999343581, -0.0232425854, -0.0215636306, -0.0305423923, 0.0156945847, 0.0219578203, -0.00222096639, 0.00157037098, 0.00785459206, 0.0340755, 0.0163223688, 0.0146872122, -0.0217388254, -0.00452588033, 0.0220162179, 0.02235201, -0.00647127908, 0.0194028877, 0.0135484422, 0.00136688887, -0.00202569645, 0.0238703694, 0.024220759, 0.00744945323, -0.00897146296, -0.00482882233, 0.0167895555, 0.0239433665, 0.00901526213, 0.00381049933, 0.00840937812, -0.013672539, 0.00227206503, -0.0366742313, 0.00316446647, -0.035272669, -0.000536079577, -0.013723637, 0.00404044334, -0.0114241978, -0.0286444426, -0.0217096265, 0.000457834773, 0.0749836192, 0.0135703413, 0.00636543194, -0.0126359658, -0.00493101962, -0.0311263781, 0.00211146916, 0.0358274542, 0.00295459689, -0.00935835298, 0.0114022987, 0.0112563027, 0.00271552824, 0.00827068184, -0.0105117224, -0.0191254951, -0.0018651007, -0.00226294016, 0.011781889, -0.0298270117, 0.0022884896, 0.018935699, -0.000665651169, 0.00612088805, 0.0263523031, -0.0137528367, -0.0220746174, -0.00807358697, -0.0485583171, 0.024293758, 0.00927075464, 0.00257500703, 0.024147762, 0.00258960645, -0.00773049565, 0.0234469809, -0.0314767696, -0.012898759, -0.0362946391, 0.0223958082, -0.00279217609, -0.0110008093, -0.00565005047, -0.0137528367, -0.0185999088, -0.0118402867, -0.0346594825, -0.0156653859, 0.00257683196, 0.0258705169, -0.0359150507, -0.00394189591, -0.0130739547, -0.00299292081, -0.00913205836, 0.00164884387, -0.00582524622, -0.0385429822, 0.00806628726, -0.0204540603, -0.0178115293, 5.58036045e-05, -0.0301336031, -0.0284108482, 0.00517921289, 0.0034509839, -0.00271552824, 0.00989123899, -0.0151835987, 0.0272866786, 0.0287758391, 0.0169209521, -0.00389079726, 0.0155047905, -0.0183371156, -0.0174027402, 0.000667019864, 0.00679977, -0.00538360793, -0.0162785705, -0.0318271592, -0.0179137271, -0.000205877368, 0.016074175, -0.012460771, -0.00573764835, 0.00464267749, -0.00723775849, 0.00403314363, 0.00939485151, -0.00755530037, -0.000836740364, -0.0139061324, -0.0323819444, -0.0139791304, 0.00787649211, 0.0311263781, 0.0131980516, -0.0149427047, -0.00314986682, 0.0323527455, -0.00677787093, 0.0114606973, 0.0309803821, -0.000340353494, -0.0152565967, 0.0213008374, 0.000583528308, -0.0221038163, 0.0207460523, 0.0107818153, -0.00721220952, 0.000601777865, 0.00994963665, -0.0152127976, 0.012584867, -0.0180743225, 0.000390083442, -0.0105044227, 0.0234907791, -0.012365873, -0.00771589624, 0.00582159637, -0.00123457983, -0.000465134595, -0.00981094, 0.00888386555, 0.00986933894, 0.0163515676, -0.0162639692, 0.011613993, 0.00294182217, -0.0235345773, 0.00281042582, -0.0164099671, -0.0087816678, -0.0240893625, 0.0257099196, 0.0101613319, 0.0107453158, -0.00762829836, 0.0219870191, 0.00441638334, -0.0195196848, 0.00955544785, 0.0161325745, 0.00875246897, 0.00685451878, 0.00840937812, -0.00453683, -0.0063836812, -0.0115117962, 0.014183525, -0.00200927188, -0.00256953202, -0.0296956152, -0.00606614, -0.000340125378, -0.0164975636, 0.00202752138, 0.0408205204, 0.0347178839, 0.00232863845, 0.0143806199, -0.0118840858, 0.0316519625, 0.00497481832, -0.0219870191, -0.0108475136, 0.00907366, -0.00519016292, -0.00926345494, 0.0356522575, -0.0201620664, 0.0320899524, 0.00380684948, 0.0116650918, -0.00388349732, 0.0243229568, 0.0063033835, -0.0240601636, 0.00572304893, 0.0168625545, 0.0101613319, 0.00458792876, 0.0029071481, 0.013358647, -0.0264983, -0.00146999862, 0.0113147013, -0.0155193899, 0.0226148032, 0.0221476145, -0.00613548793, 0.00376670039, 0.00237061223, -0.0167749561, -0.00512446463, 0.0020110968, 0.0217680242, -0.00109040865, 0.0142711224, 0.0228775945, 0.0122271767, 0.00346010854, 0.00412439089, -0.0207314529, -0.000126263854, 0.0136141405, -0.0136287399, 0.0143003222, -0.0277100671, -0.0227462, -0.0070552635, 0.0215198305, -0.0183225162, 0.0182641167, -0.0331703238, -0.0056245015, -0.00980364066, 0.0127381636, -0.000218423913, -0.00689101778, 0.000639645616, -0.00676327106, -0.00178754027, -0.012073881, 0.0102124298, 0.00375575083, 0.00355865597, 0.0196364801, 0.0157967824, 0.059274435, 0.0187751036, 0.0304839946, 0.0115774944, -0.0133440476, -0.0127016641, -0.0265275, 0.00990583841, 0.00163698173, 0.0320607536, 0.00446383189, 0.028513046, 0.00138148852, -0.000104991756, 0.018643707, -0.0268924888, -0.0187751036, 0.0412001126, -0.0182349179, 0.0246295482, 0.00589094451, -0.0436528474, 0.00317724096, 0.0114241978, -0.0181911197, -0.00790569093, -0.0168187562, -0.0301920027, -0.0134024462, -0.0257391203, 0.00646032905, 0.00402219361, -0.0346302837, 0.00835098, 0.00191072444, -0.00569749949, -0.00239798659, -0.00786189176, -0.00227206503, 0.0305715911, 0.0258267168, -0.010256229, 0.0304255951, -0.00692751678, 0.0233301837, 0.0189940985, -0.0220162179, -0.00438353419, -0.0159427784, 0.00298197125, 0.00581064634, -0.00123457983, -0.0147748096, 0.0203226637, -0.0037813, 0.0178991277, 0.00530330976, 0.00698956521, 0.00960654579, 0.0047302749, -0.0171253476, -0.0130958539, -0.000440953969, 0.0261479095, 0.0167165585, -0.0268924888, 0.00967954379, -0.00754070049, 0.0130739547, -0.00350208255, 0.00583619578, 0.00211694394, 0.00130027812, -0.0029965709, 0.0131469527, -0.00781809352, 0.0145850144, 0.00464267749, -0.0153003959, -0.0248193443, -0.0225710031, 0.00420103874, 0.00174556638, -0.0147529105, -0.00573764835, -0.00900796149, -0.0181327201, -0.00174921623, 0.00296554668, 0.00450033089, -0.0514782406, 0.0138331344, 0.0231987871, 0.00592014333, 0.00730345678, -0.0179575253, 0.00881086756, -0.039856948, 0.00383969862, -0.0211110413, -0.0218118243, 0.014329521, 0.000199261922, 0.0308343843, 0.00710636238, -0.00746405264, -0.00725600822, 0.00252573332, -0.0281626564, 0.00382509897, -0.00806628726, -0.00767209707, -0.00616468722, 0.0210672431, -0.0142492233, -0.0127454633, -0.0219578203, 0.000767392223, 0.0172275454, -0.0227169991, 0.00881086756, 0.0100810332, 0.000667932327, 0.0270530842, 0.00524126133, -0.00123731734, 0.0229651928, 0.00864297152, 0.00475217449, 0.0129425582, 0.0193590876, 0.00561355148, -0.00103018526, -0.0180597231, -0.00676327106, 0.00236696238, -0.00455142977, 0.00937295239, -0.00098912383, 0.023563778, 0.0105190221, -0.00669027306, 0.0206292551, 0.0191108957, 0.00855537411, 0.00783269294, -0.00737645524, -0.0111395055, -0.0366158336, -0.0136141405, -0.0154901911, -0.0347178839, 0.00570844905, 0.0167603567, -0.00508796563, -0.0130228559, 0.0230235923, 0.0243375562, 0.0220162179, 0.0154317925, 0.00172822934, 0.0140302293, -0.00759179937, 0.0145485159, -0.0225856025, 0.00891306438, -0.0204102602, -0.00322651467, -0.00398934446, -0.00978904124, -0.0171983447, 0.00583619578, 0.0285860449, 0.00264618, 0.00759179937, -0.0265421, 0.0119497841, -0.00929265469, 0.00954814721, 0.00510986475, -0.0133148478, -0.0286152437, 0.0151106007, 0.0198992733, -0.00364260375, 0.0363238417, 0.0118694864, -0.000632345793, -0.0172567442, -0.0131615521, -0.02157823, -0.00892036408, 0.00202387152, -0.011467997, 0.0241915602, 0.0155923879, -0.0293452237, 0.0179867242, 0.00515731378, -0.0109935096, 0.00233958825, -0.0152419973, 0.00412439089, -0.00670852279, -0.0148478076, 0.00425213762, -0.00382509897, 0.0139499316, -0.018497711, 0.000113888396, 0.0172421448, -0.000482243515, 0.0213300362, -0.0204540603, 0.0185123105, 0.013358647, 5.89687552e-05, -0.000474031229, 0.0119862836, -0.0190232974, -0.0191692933, 0.00173005427, 0.00608438905, -0.0121249799, -0.00647492893, -0.0101175327, 0.017723931, -0.00118621869, 0.014497417, -0.00719031, 0.0126943644, 0.00962114614, 0.014643413, 0.00746405264, 0.0182349179, 0.0155631891, -0.00794219, -0.00617198693, 0.027783066, -0.00996423699, -0.00316811632, -0.0143587207, 0.00882546697, -0.00350938225, -0.0217534248, 0.00604059035, -0.0028378, -0.00198919745, 0.0123731727, 0.0130958539, 0.00328491325, 0.00307869352, 0.0143587207, 0.0329659283, 0.00523031177, 0.00511716492, -0.00512081478, 0.016074175, 0.0145120164, 0.019081695, -0.00245638518, -0.0081027858, 0.012438871, 0.00617563678, 0.00400029449, 0.0299000107, -0.0264545, -0.0016716558, 0.00432148576, 0.0197094791, 0.00703701423, -0.0220454168, 0.00474852463, -0.00300934538, 0.00374115119, -0.00614643749, 0.00322468975, 0.02385577, 0.0182349179, -0.0252865311, 0.00721950922, 0.0127673624, 0.00748230238, 0.0142711224, -0.0173005424, -0.0156507865, 0.00604424, 0.0135411425, 0.0255347248, -0.000857271079, 0.00945325, -0.0311847758, -0.00608803891, -0.0126651656, -0.00948975, 0.00400759419, 0.0214468334, -0.0142273242, 0.00906636, 0.0216804277, -0.00998613611, -0.0086210724, -0.0162639692, -0.0101175327, 0.0235345773, -0.0182933174, 0.013431645, 0.0281480569, -0.0197532773, 0.00103292265, -0.0148916068, 0.0175925344, -0.0134097459, 0.00847507641, -0.0119205853, -0.00642018, -0.00886926521, -0.0217096265, 0.00561720133, 0.00886926521, -0.0260019135, 0.00629243348, 0.00717936037, 0.0112709021, 9.72357084e-05, 0.0173297413, -0.00220819167, 0.031447567, -0.0117964884, 0.00428863661, -0.00707351323, 0.0156507865, 0.0161909722, 0.0183079168, 0.0037119519, 0.00699321507, 0.00414264062, -0.0246441495, -0.00749690179, -0.00765749766, 0.0145996138, 0.0253741294, 0.00913205836, 0.0178261288, -0.000204394601, 0.00233776332, -0.00494196918, 0.000995511189, 0.00890576467, -0.02385577, 0.000588090683, 0.00875246897, -0.0204832591, 0.0138550336, 0.00464632735, 0.0296956152, -0.00148824812, -0.00994963665, 0.0014891607, -0.00650047837, -0.0290240329, -0.0246441495, 0.0064128805, -0.0171691459, -0.00370647712, 0.0212424379, 0.00213154359, 0.00683991937, -0.0239141677, 0.00260968111, 0.00139061327, -0.00469742576, 0.00484707206, -0.0179721247, -0.00744945323, -0.0133440476, -0.0010630344, 0.0021808173, -0.0103365267, -0.02763707, 0.0123366741, 0.0105920201, 0.0229943916, -0.000863202207, 0.00300752046, -0.00285969931, -0.00882546697, 0.00358238025, 8.67992712e-05, 0.0137747359, -0.0157675836, 0.0154025927, 0.0282940529, 0.012460771, 0.018789703, -0.0167019591, -0.0176801328, 0.00623768521, -0.00624863477, -0.000714924827, -0.00400759419, 0.00710636238, 0.00737645524, 0.0142492233, -0.0248631425, -0.0133221475, -0.00751150167, -0.0127381636, -0.000807997421, 0.0215928294, -0.0390685685, -0.00332506211, 0.00419738889, 0.00615738705, 0.00526681077, -0.00638003135, -0.0116796913, -0.00731805665, -0.000601321633, 0.00250748382, -0.000261424342, -0.00289619854, 0.0334623158, 0.00848967582, 0.00598584162, 0.020439459, 0.00223921589, -0.0226732, -0.00996423699, 0.000284692476, 0.00904446095, 0.023709774, -0.0044711316, -0.0339587033, 0.0155631891, 0.00683991937, -0.0156799853, -0.0160887744, 0.0180451237, 0.00700051477, -0.00966494437, 0.027301278, 0.0136433393, 0.00158862048, 0.02157823, 0.00955544785, -0.013504643, 0.00539820734, -0.0166143607, -0.0141251264, -0.00207497017, 0.00214979309, 0.0118256873, -0.0219724197, 0.000117025033, -0.0108475136, -0.0205416568, -0.0080297878, -0.0127016641, 0.00620848592, -0.00739105465, -0.0183809139, 0.0281626564, 0.00516096363, -0.0214760322, 0.00785459206, 0.00584714534, 0.0050332169, 0.0295204204, 0.000594021811, -0.0255639236, -0.0048032729, 0.00275202724, 0.00720855966, -0.00404409319, 0.00390904676, -0.0191984922, -0.0111687044, -0.00851887465, 0.00362435426, -0.00115154451, 0.00705891335, -0.0244981516, 0.00114150729, -0.00530330976, 0.0100737335, -0.0151835987, 0.0100737335, -0.00464267749, -0.00813928526, 0.00208409503, 0.0116504924, -0.0190232974, 0.000734543079, 0.00152383477, -0.0249361414, 0.0285568461, -0.0223958082, -0.00921235606, 0.0153295947, -0.00140886276, -0.0251551345, -1.34305046e-05, -0.00829988066, -0.0274180751, -0.010183231, -0.00593109336, -0.0280458592, 0.0136287399, 0.033024326, 0.00978904124, -0.00984014, 0.00936565269, 0.00128932844, 0.0166435596, 0.0034163096, -0.00939485151, 0.0187313054, -0.00885466579, 0.0121687781, 0.0119716832, -0.00509526534, 0.00561355148, 0.0107672159, 0.00266077975, 0.00636178209, -0.00525221135, -0.00340353511, 0.00725235837, -0.0050624162, 0.0127746621, -0.0221914127, 0.00918315724, 0.0183079168, 0.00764289778, 0.00387619762, -0.0128841596, 0.000452816166, 0.00223191595, -0.010862113, 0.00850427523, 0.00984014, 0.00342360954, 0.00799328834, -0.0106066195, -0.00464632735, -0.00617928663, -0.0140740285, -0.0104606235, -0.00308234361, -0.00367180305, 0.0297540128, -0.000829896831, -0.010789115, 0.0240309648, 0.00182038941, 0.0324987397, -0.00948975, -0.0114168981, 0.00484707206, 0.00916125812, -0.0118037881, 0.0151544, -0.00939485151, 0.0107453158, 0.0179575253, -0.0114825964, 0.00497846864, -0.0108256135, 0.00149646041, -0.0145996138, 0.00570844905, -0.00548580522, 0.00761369895, -0.00179849, 0.000256405736, 0.00225381553, 0.000408561085, 0.024001766, -0.0264399014, 0.0137017379, -0.00714651123, 0.0205270573, -0.016658159, -0.00426673703, 0.00928535499, -0.00926345494, -0.000110865818, 0.0200160705, -0.00816848408, 0.000868677045, 0.00556610292, 0.00241988595, 0.0092269564, -0.012365873, -0.000465134595, -0.0307467878, -0.000280814449, -0.00784729235, -0.02763707, -0.0196510814, -0.0104460241, -0.00118895608, 0.00632893294, -0.00531790964, 0.0223666094, -0.00970874354, 0.00466457661, 0.014935405, 0.014424419, 0.000210895989, 0.00226294016, -0.0275640711, -0.0107526155, -0.00295642181, -0.0232133865, -0.000526498596, -0.00655157678, 0.0346886814, -0.00208226987, 0.0181473196, -0.00302029517, -0.00285057467, 0.0117015904, -0.0160449762, -0.00474122446, -0.0433608554, -0.00739835436, 0.00551135419, 0.0158697814, 0.00296554668, 0.0212132391, -0.00971604325, 0.00775969494, -0.014570415, -0.0228337962, -0.0140740285, 0.0113731, 0.0169501528, 0.0136068407, 0.0101613319, -0.0195342842, 0.0175487362, -0.0258413162, -0.00441638334, -0.00646397937, 0.00483612204, 0.00229031453, -0.00643843, -0.0190524962, -0.00688736793, -0.00256040739, 0.010475223, -0.0148989065, -0.00244178553, 0.0202788636, -0.00204577087, 0.00670852279, 0.00666472362, -0.0313307717, -0.0255493242, -0.00764289778, 0.00305496925, 0.0217096265, -0.0263961032, 0.00702606421, 0.00734725595, 0.00522666192, 0.00387254776, -0.00960654579, -0.0233739819, -0.0135630416, -0.014424419, 0.0167895555, 0.00591649348, -0.00323746447, 0.0278560631, 0.0144901173, -0.0154901911, 0.0166143607, 0.00920505635, -0.0218410231, -0.00242353603, 0.00477042375, 0.0223228093, -0.00619388651, -0.00421198877, -0.0035312816, 0.00191619934, 0.0189502984, -0.0144390184, -0.0120154824, -0.0238265712, 0.0173297413, -0.00780349365, 0.00358968019, 0.00819768291, 0.00625593448, 0.0135338427, 0.00229396438, 0.00889116526, 0.00130757794, -0.0103073278, 0.00575589808, -0.00517191319, 0.00877436809, 0.0036937024, -0.00741660409, -0.0219578203, -0.00148733566, 0.00290167332, -0.00355683104, 0.0207460523, 0.00138057605, -0.00194174866, 0.00400029449, -0.00774509553, 0.00166435598, 0.0154463919, 0.0069019678, -0.00441273348, 0.00383604853, 0.0122271767, -0.00856267381, 0.00299292081, 0.00181217713, 0.0105044227, 0.00973064266, 0.00578874722, 0.0247901455, 0.00137418869, 0.0122782756, 0.0108986115, -0.00322468975, 0.00857727323, -0.0126213664, -0.0310387798, 0.0142930225, -0.0117453896, 0.00882546697, -0.0028268504, -0.0161617734, 0.0109205116, 0.000102824626, -0.0206146557, 0.0190962944, 0.0100591341, -0.0149500053, 0.000839021581, 0.00678152079, -0.0210526437, -0.00768669695, 0.0180013236, -0.0109205116, -0.00258778152, -0.0189065, 0.0189648978, -0.00149098563, 0.0140813282, -0.00421563862, 0.0124753704, -0.012752763, -0.00667567365, -0.0193882883, 0.0166435596, 0.00346558332, 0.0267464928, -0.011832987, 0.0140813282, 0.00700416509, 0.016366167, 0.00275932718, 0.0167311579, -0.0111979041, -0.0153587945, 0.00188152527, 0.00426673703, -0.0247463454, -0.0219870191, -0.0242791586, 0.0116212927, -0.0157237835, -0.0118913855, -0.0232571848, -0.0136141405, 0.0139426319, 0.0200452693, 0.0119789829, 0.00855537411, -0.00652967719, 0.0140594281, 0.0284254495, -0.00890576467, 0.00755530037, -0.00941675156, -0.0133732464, 0.00254215789, -0.000671126, -0.00673042191, -0.00730345678, 0.0164245665, -0.0140156299, 0.0216658283, -0.010570121, 0.00719396, 0.0161909722, 0.0271260832, 0.0190232974, -0.00893496349, 0.0188043024, -0.0301044043, 0.00530330976, -0.0137163373, 0.0157529842, 0.000424985628, -0.0124826701, 0.00655887648, -0.00115884433, -0.00487627089, 0.0104168244, 0.00971604325, 0.000817578402, -0.0159719773, -0.00870867, -0.0158113819, -0.00252755824, 0.0162055716, -0.00765019795, -0.0113074016, 0.00926345494, -0.0297394134, 0.0256661214, -0.0109643098, -0.0105628213, 0.00190889952, -0.00967224408, -0.0301044043, -0.00536900805, 0.00586539507, 0.0138477338, 0.00158953294, 0.0162785705, 0.00887656584, 0.00285604945, -0.0119424844, 0.00568289962, -0.00143988698, 0.0141251264, -0.00407694234, 0.00180122745, 0.0136871384, -0.00978904124, -0.00680342037, -0.010570121, 0.00091430085, 0.0168917533, 0.0194320865, 0.0135703413, -0.00437623449, 0.00481057307, -0.00582159637, 0.0109424107, -0.0124899698, -0.0114095984, -0.0149938036, 0.00513906404, -0.0060004415, -0.00867947098, 0.00212971866, 0.0217534248, -0.0245419517, 0.0161763728, -0.000969961868, -0.0161471739, -0.0185415093, -0.0135557419, 0.0186145082, 0.0057777972, 0.00148824812, 0.0107380161, 0.00552230421, 0.0139426319, 0.00483977189, 0.025943514, 0.0148770064, 0.00686181849, 0.00241441117, 0.00276480196, 0.0176509339, -0.0100810332, 0.00673772208, -0.02007447, 0.0223812088, -0.00950434897, -0.028513046, -0.00930725411, 0.0108475136, 0.0181181207, -0.0168479551, -0.0105190221, 0.00418278947, 0.000315032288, -0.0115920939, -0.00417184, -0.00932185352, -0.00621943548, 0.0222352128, -0.0237827711, -0.00172731688, 0.0176071338, -0.0028523996, 0.00510986475, 0.0255639236, 0.00399664417, 0.000135274546, 0.00754070049, 0.0109862098, -0.0253157318, -0.00132309, -0.0150230033, 0.0213008374, -0.0193736888, 0.016512163, 0.0037119519, -0.00031754162, -0.00512811448, 0.0116650918, -0.00529236, -0.00658442592, -0.0155047905, -0.000104193343, 0.00216986774, -0.00765019795, 0.0174173396, 0.0129206581, -0.0169647522, -0.026717294, -1.9760806e-05, -0.0289948341, 0.0101029333, 0.00235601282, 0.0405577272, 3.68697292e-05, -0.00474852463, -0.00296737161, 0.00283962488, 0.00306226895, -0.00381049933, -0.00174921623, 0.0177969299, 0.000364306, 0.010475223, 0.00167439319, 0.00639828108, 0.0160157774, 0.00925615523, -0.0186291076, -0.0100080352, 0.0103438264, 0.00861377269, -0.00551135419, 0.00761369895, -0.00110135844, 0.00407329248, -0.037871398, -0.00679977, -0.000764198543, -0.0121249799, -0.00992773753, -0.0182349179, -0.0230381917, 0.0155923879, 0.00871596951, 0.00963574555, -0.013891533, -0.00298014632, 0.0120957801, 0.00203117123, 0.000508249039, -0.00570114935, -0.00807358697, 0.0324111432, -0.00272100302, -0.0304547958, 0.0153441941, -0.0249945391, 0.00559895206, -0.00975254178, -0.0147748096, -0.00259690639, 0.000920688151, 0.0099715367, 0.00447843177, -0.0102197295, -0.0165413637, -0.000708537525, -0.00587634463, 0.0240747631, -0.00627783407, -0.0117453896, -0.0116796913, -0.0169647522, -0.00151744741, 0.0118037881, 0.00683626952, 0.00105847197, 0.0053288592, -0.0317395627, -0.000209071033, -0.00762829836, 0.00214431831, 0.0318855569, 0.0148551073, -0.0073509058, 0.016220171, -0.00869407, 0.0050624162, -0.013504643, 0.0112709021, 0.00497481832, -0.0081903832, 0.00613913778, 0.021286238, 0.010643119, -0.01857071, 0.00130757794, 0.000362252933, -0.0112417033, -0.00902986154, 0.00610628864, 0.0190086979, -0.0108986115, 0.0101759313, -0.00538725778, 0.0202788636, -0.0132783493, 0.010110233, -0.0164683647, -0.00314621674, -0.00272100302, 0.00454413, -0.0102854278, 0.00268085417, -0.00717206066, -0.0125702675, 0.00375210075, 8.30353e-05, -0.0159573779, -0.0110227084, 0.0103146276, 0.00344915874, -0.00794219, 0.0172421448, -0.0047740736, -0.0123366741, 0.00714651123, 0.0310679786, 0.0142492233, 0.00119625591, 0.00446748175, 0.0149500053, -0.0150230033, 0.0270822849, -0.0117526893, 0.00673772208, 0.00472297519, -0.0389225706, 0.0121687781, -0.00740565406, -0.00874516927, 0.0223082099, 0.0239141677, 0.00172366691, -0.00881816726, -0.00696766563, 0.0182933174, -0.016366167, 0.00258778152, 0.0111395055, 0.0151835987, 0.00697131595, 0.0124242716, -0.0329367295, -0.0173005424, 0.0241915602, 0.000888295297, 0.0149500053, -0.0227462, -0.0105555207, 0.0296810158, -0.0153879933, 0.00631068321, 0.0191984922, -0.0156215867, 0.00173096673, -0.00268997881, -0.00776699465, 0.00270640338, 0.0140521284, -0.00589459436, 0.0166143607, 0.00315169175, 0.00168351806, 0.0122563764, 0.0163807664, -0.0115555944, 0.030863585, 0.00361522939, 0.00496386876, -0.0311263781, 0.00200014724, -0.00678152079, 0.00369005254, 0.000615465, 0.013066655, -0.0196510814, -0.0056610005, 0.0373166129, 0.00794949, -0.014037529, -0.00328673818, 0.00373202632, -0.0136433393, 0.0130082564, 0.00349295768, -0.035739854, -0.0128622605, -0.00905906, -0.00731805665, -0.00355500611, -0.00277575175, -0.000874151883, 0.00708081294, -0.0158405807, 0.0101467315, -0.00794219, -0.000633258256, 0.0347178839, 0.0132491495, 0.00335791125, 0.00572669879, 0.0166435596, -0.00881086756, 0.0223666094, -0.00203664624, -0.00597854191, -0.00277575175, 0.00691656722, 0.0127235642, -0.00665012421, 0.0313599706, -0.0113657992, -0.00804438721, 0.00340171019, 0.00156307116, 0.0165413637, -0.00373385125, -0.0258413162, -0.00489817047, -0.0774947554, -0.0039710952, 0.00158862048, 0.0345426872, -0.00487627089, -0.010037235, 0.0228191968, -0.011686991, 0.0152565967, -0.00422293833, 0.00893496349, 0.0281772558, 0.00985473953, 0.00711001223, -0.0193590876, 0.00561720133, 0.0294474214, -0.00459522847, -0.0096138455, -0.016512163, 0.0101175327, 0.011540995, 0.0064566792, 0.0136871384, 0.00738010509, 0.0192422923, -0.0125702675, 0.00974524207, -0.0216658283, -0.0176801328, -0.0148551073, 0.0153003959, 0.00486167148, -0.0278414637, 0.0220308173, 0.00490182033, 0.0153587945, -0.00077925442, -0.0175487362, -5.00721144e-05, -0.0106942169, 0.012000883, 0.0185561087, -0.00841667783, -0.0219578203, -0.00792759, 0.00222096639, -0.0203226637, -0.0107964147, 0.00919045694, -0.0193152893, -0.014351421, 0.00110318337, -0.00772319594, 0.00936565269, 0.0174757373, -0.0114752967, -0.00481787277, 0.0257683191, 0.0153733939, 0.0169209521, -0.0290532317, 0.019227691, 0.00610628864, 0.0125191687, -0.00815388467, 0.000783360563, -0.00697861565, -0.0216220282, 0.012606767, -0.0241915602, -0.00845317636, -0.00594934262, 0.0115701938, 0.00686546834, 0.00362435426, 0.00352215697, -0.00383239868, 0.00168351806, 0.0105993198, 0.00879626721, -0.00323016453, 0.035272669, 0.0103073278, -0.00861377269, -0.0135849407, -0.0211110413, -0.00461712806, 0.011176005, 0.0023614876, 0.0142857227, -0.000197779154, -0.0161763728, 0.00140065048, 0.00892766379, -0.000264389877, -0.0117307901, -0.0121541787, 0.000616833684, 0.000254352664, 0.010037235, 0.0136871384, 0.02763707, 0.00540550705, 0.0394773558, -0.0167749561, 0.00520111248, 0.00139243819, 0.00861377269, 0.0126578659, 0.014643413, 0.00779619394, 0.00770859607, 0.00781079335, 0.0348346792, -0.00109132112, 0.00218811724, -0.00254215789, -0.0143660204, -0.0168187562, 0.000533342129, -0.0088619655, -0.00892036408, -0.0232571848, -0.011008109, 0.00490182033, -0.00793489069, -0.00825608149, -0.012146879, -0.0157529842, 0.00765019795, 0.00888386555, 0.00581064634, 0.00929265469, 0.0155777885, -0.000767848454, -0.00290167332, 0.0183371156, -0.00931455381, -0.00795679, -0.00241806102, -0.0183955133, 0.00700781494, 0.00640558079, -0.038572181, -0.036031846, 0.00582159637, -0.0115847941, 0.0143733202, -0.00699686492, -0.0028523996, -0.0223958082, -0.00939485151, -0.00656617666, -0.0145923141, 0.0140302293, 0.021724226, 0.00266077975, 0.00153022201, -0.00453318, 0.00755530037, 0.014789409, 0.00915395841, -0.0031480419, 0.00827068184, 0.00162238209, 0.0215198305, 0.0183517151, 0.00192349916, -0.00927075464, 0.00166800595, 0.0125191687, -0.00775239524, -0.0117380898, -0.0145558156, -0.03816339, 0.00210051937, -0.035856653, 0.0254179277, -0.00060634024, 0.0134097459, 0.00378495, 0.00639098091, -0.00834368, 0.0108840121, -0.0141470265, -0.0069019678, -0.00158953294, 0.00848237611, 0.0112855015, 0.00921235606, 0.0116431927, 0.00638733106, -0.0092196567, -0.00037525571, -0.00399299432, -0.010256229, -0.00504781678, 0.00456602918, 0.00429958617, 0.0258121174, -0.0112052038, 0.000388942834, -0.0111176064, -0.0122271767, -0.0148113081, -0.00292174774, -0.00145357405, 0.000359287369, 0.0188189019, 0.0177677311, -0.00424483791, -0.00541645708, -0.00831448, -0.0154901911, 0.00437258463, -0.0140667278, 0.000487718353, 0.00237426232, 0.0035057324, 0.0178991277, -0.00663187495, 0.0161617734, 0.0144682173, 0.0230673905, 0.00490547, 0.00741295423, 0.0153441941, -0.0210964419, -0.0155485887, 0.0150522022, 0.0109424107, 0.0161179733, 0.0123950727, -0.00146817369, -0.00135958905, -0.00733995624, 0.0121979779, 0.00377035025, 0.0226878, 0.0328199342, 0.000496843131, -0.0179867242, -0.00272282795, -0.013285649, 0.00700781494, 0.0171691459, 0.0236659739, -0.00137053872, 0.00742390379, -0.00328856311, -0.0183079168, -0.00663187495, 0.0235053785, 0.00212789373, 0.0123074744, -0.0249799397, 0.0187313054, 0.00342908432, -0.00321739, -0.00195087341, 0.00705161365, 0.00051509263, -0.00751150167, 0.00379954954, 0.000651964045, 0.00728885736, -0.00684721908, -0.00124096719, 0.00249835895, 0.000623221043, 0.00149372302, -0.00252025831, -0.00415359, -0.0138331344, -0.00466822647, 0.00960654579, 0.0169501528, -0.000100030171, -0.0112052038, 0.00925615523, 0.013796635, -0.0140886279, -0.0198846739, -0.00425943732, -0.00177385309, -0.00975984242, -0.0220016185, 0.00587634463, -0.00849697553, 0.00339258532, -0.0215344317, 0.011540995, 0.00259873131, -0.0227753986, -0.015928179, 0.000232567298, -0.00595299248, -0.00554785319, 0.00246003503, 0.0040148939, -0.0193006899, -0.0165267624, 0.00177476555, 0.00902986154, -0.0187751036, -0.00824878179, -0.00851157494, 0.00451493077, -0.0199138746, 0.00498576835, -0.00880356692, -0.0235053785, 0.0188919, -0.0139134321, 0.0164975636, -0.0154609913, -0.00716476049, 0.0108256135, 0.00807358697, -0.00654792693, 0.027783066, -0.00169355527, -0.0196510814, 0.00396379502, -0.00839477777, 0.0231111888, -0.000685725652, -0.00556975277, -0.032732334, 0.00366632803, -0.0152419973, -0.00167804316, -0.0100591341, -0.00915395841, 0.000453272398, -0.0140156299, -0.000826703152, -0.00424118806, 0.000765567238, -0.029578818, 0.00184776366, 0.00946055, 0.0028523996, 0.0154317925, -0.00184867613, -0.00555515336, -3.63279469e-05, 0.024293758, 0.00399299432, -0.00688736793, -0.0116723916, -0.0021552681, 0.0121541787, -0.00282502524, -0.0167019591, -0.0137163373, -0.00189247495, 0.0269800872, -0.0312723741, -0.00314986682, 0.000547941774, -0.0183955133, -0.0390101671, -0.00116888166, -0.00829988066, -0.00549310492, 0.0288196392, -0.0267902911, -0.0043470352, -0.00825608149, -0.0290094335, -0.00707716309, 0.0670998245, -0.00581429619, 0.0205708556, -0.0361778438, 0.0142054241, -0.0166727602, 0.0116358921, 0.0333163179, 0.000783816795, 0.0237243734, -0.00748230238, 0.0198408756, -0.00832178, 0.00488722092, 0.00220089173, -0.00344733382, 0.0238411706, 0.00547485519, -0.00791299064, 0.00533980876, 0.00604424, -0.0196510814, 0.0153441941, -0.0257537197, 0.00239433674, -0.00286699925, 0.00825608149, 0.00280860066, -0.00989123899, 0.00590554392, -0.010570121, 0.0209212471, 0.0258413162, -0.00602234062, -0.0335207134, -0.00267720432, 0.028805038, 0.0356814563, 0.00527411047, -0.028075058, 0.0297394134, 0.0486459136, 0.0143149216, 0.00250200881, 0.0125629678, -0.00970874354, 0.0138039356, -0.00981824, -0.00216439273, -0.0136360396, 0.0176071338, -0.0188335031, -0.0263231043, 0.00671217265, 0.0246149488, 0.0107818153, 0.035739854, 0.0103657264, 0.00520841219, 0.0213154368, -0.00199832208, -0.0033433116, -0.00964304525, 0.00536900805, 0.00174009148, -0.0384261832, 0.00219359202, -0.00171271723, -0.00416819, -0.00751150167, -0.0323235467, -0.00470472546, 0.0175487362, -0.0173005424, 0.00437258463, 0.00160230766, 0.00998613611, -0.00151835987, 0.0142419236, -0.0210964419, -0.0348930769, -0.00543835619, -0.000718118506, -0.0289218351, -0.00614278764, -0.0089422632, -0.00650047837, -0.0166289601, -0.0226586014, 0.00590919377, 0.00959194638, 0.0310387798, 0.00165249384, -0.0069019678, 0.0253449306, -0.00118713116, -0.00860647298, -0.00464632735, -0.00168899284, -0.00490182033, 0.0253887288, -0.0177677311, -0.0137090376, -0.00739105465, -0.00354770618, 0.0227024, -0.00375210075, 0.0109205116, -0.00868677069, 0.00531425932, -0.00807358697, -0.0220162179, -0.00846777577, 0.00587269478, 0.012898759, -0.010402225, 0.0223812088, 0.00813928526, -0.00530695962, -0.00125282933, 0.00846777577, 0.00793489069, -0.000154550609, -0.00971604325, -0.00759179937, 0.00601869076, -0.000880083, 0.00955544785, 0.0127819618, 0.0152857956, -0.00383969862, -0.0130301556, 0.0137382373, -0.00598219177, 0.0304255951, 0.00766479736, -0.00239251181, -0.0035495311, 0.00803708751, 0.00598219177, -0.00606249, 0.0102781281, 0.0132345501, 0.0168187562, -0.00908826, 0.000724962098, 0.00635448191, 0.00771589624, 0.0292430278, -0.00387984747, -0.00750420149, -0.00715746079, -0.0125264693, 0.00362252933, -0.0167749561, 0.00213519367, -0.00122636755, -0.0327031352, 0.0163077693, -0.0147310104, -0.00377400033, 0.000248877797, 0.0257245209, 0.00275932718, 0.0110592078, 0.000395786425, 0.0112125035, -0.00578144705, 0.00087004574, -0.0194904841, 0.00846047606, 0.0210088454, -0.0162639692, 0.0107818153, -0.00611358834, -0.00350025739, -0.00515366392, -0.00673407223, 0.00620483607, -0.00970874354, -0.0116942907, 0.00792029, 0.00996423699, 0.0492883, 0.00188152527, -0.011103007, 0.022206014, 0.0143441213, 0.016804155, -0.00827068184, -0.0139864301, -0.00491642, -0.00828528125, 0.00681072, 0.0146653121, -0.00780349365, 0.0338711031, -0.000853164936, 0.00467552664, -0.013431645, 0.0244981516, -0.0117015904, 0.000365218468, -0.00342908432, -0.00736915506, 0.0115555944, 0.00142893719, -0.00142163748, -0.00781809352, -0.00417913962, -0.0190086979]
30 Sep, 2021
jQWidgets jqxSwitchButton orientation Property 30 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxSwitchButton is used to illustrate a jQuery button widget that changes its verified state after being clicked. Moreover, it’s quite identical to the jqxToggleButton, yet possesses a distinct user interface view. The orientation property is used to check the orientation of the displayed switch button. It is of type string and its default value is “horizontal”. Its possible values are: horizontal vertical Syntax: To set the orientation property. $('Selector').jqxSwitchButton({ orientation:vertical }); To get the orientation property. var orientation = $('Selector').jqxSwitchButton('orientation'); Linked Files: Download jQWidgets from the link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script> The below example illustrates the jqxSwitchButton orientation property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"> </script> </head> <body> <center> <h1 style="color: green">GeeksforGeeks</h1> <h3>jQWidgets jqxSwitchButton orientation property</h3> <br /> <div id="jqxSB"></div> <div> <input type="button" id="jqxBtn" style="margin-top: 25px" value="Click here" /> </div> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxBtn").jqxButton({ width: "100px", height: "25px", }); $("#jqxSB").jqxSwitchButton({ height: "55px", width: "30px", orientation: "vertical", }); $("#jqxBtn").on("click", function () { var orn = $("#jqxSB").jqxSwitchButton("orientation"); $("#log").html("Orientation: " + orn); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxbutton/jquery-button-api.htm 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
https://www.geeksforgeeks.org/jqwidgets-jqxswitchbutton-orientation-property/?ref=next_article
PHP
jQWidgets jqxSwitchButton orientation Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0125784902, 0.0361343175, -0.0165569, 0.0401337035, 0.0608577952, 0.0373648964, 0.0203884803, 0.0268630125, -0.0265134145, -0.0218847543, -0.0286669303, -0.0319391564, 0.000704874401, -0.014018828, -0.0330578648, 0.0116905142, -0.0249751899, 0.0176476426, -0.00828544237, 0.0239543673, 0.0262896735, -0.00883081276, -0.0626477301, 0.0185845625, -0.0308763813, 0.0192837548, 0.00246640481, 0.00908252317, -0.000532261, 0.00269888667, -0.0301492214, -0.00439093495, -0.0128721511, 0.0408328958, -0.0529429279, -0.0427626707, 0.0170882884, -0.00110734766, -0.0289186407, -0.00117027503, -0.0102921277, 0.014487288, -0.00427207211, -0.000428255968, 0.00275831809, 0.00370222935, 0.0132287396, 0.00114580325, 0.00400288263, 0.00415320881, 0.0258421898, 0.021185562, 0.00392247504, 0.0261638183, 0.00336312037, -0.00559704332, 0.00698843831, 0.05179625, 0.0112430304, 0.0090126032, -0.00446085399, -0.0547328629, -0.0505936369, -0.0280516408, -0.0174518675, 0.0343723483, -0.0131797958, 0.00440841448, -0.044944156, 0.0356868319, -0.0282054637, 0.0337011218, -0.00809666, 0.00674372073, -0.0219406895, -0.0126554016, -0.00317958207, -0.0258002374, -0.0258421898, 0.0416159928, 0.00895666797, -0.0326383486, -0.0699193403, 0.0195634328, -0.00818056334, 0.0277439952, 0.0167107228, -0.0304288976, 0.0345681235, 0.0512089282, -0.0454475731, -0.00969082117, 0.00559005141, -0.0168225933, -0.00037887544, -0.00508313626, 0.0077330796, 0.00983065926, 0.00112832338, -0.00864203088, 0.0797080547, 0.020052867, -0.0405252501, -0.0264994316, 0.00997049827, 0.0191579, 0.0273104962, 0.036022447, -0.018123094, 0.0132287396, 0.0153822554, -0.0218428038, 0.0144733042, 0.00822950713, -0.0544811524, 0.012557514, -0.0326103829, -0.0290025435, 0.0169764161, -0.0162073039, -0.012557514, 0.0224580932, 0.0213673506, 0.0187383834, -0.00467061205, 0.0262617059, -0.00168942614, 0.050369896, 0.0429584458, -0.00743242633, 0.0108724581, 0.016053481, 0.0228496417, -0.00802674051, 0.0322188325, 0.0398260579, 0.0459509939, 0.0375886373, -0.0553481542, 0.0153822554, -0.0451399274, -0.015843723, 0.0244997386, 0.0507055074, 0.0375606716, 0.0201507546, 0.0297576729, 0.0036602777, 0.0312119946, 0.0315196402, -0.0429584458, 0.00404133787, 0.00642558746, 0.0126554016, 0.0729398578, -0.00449581398, -0.030037351, 0.0114457961, -0.00834837, -0.0103690382, 0.0327502191, -0.00510760816, 0.0125994654, 0.02768806, -0.0167946257, -0.00569143472, 0.0232971255, -0.00653396267, -0.0427626707, 0.0226818342, -0.0109703448, -0.0147529813, -0.00324600562, -0.00783096626, -0.0515725091, -0.034540154, 0.0295898654, -0.029114414, 0.0297576729, -0.0401337035, -0.0194935128, -0.00975374877, 0.00231258222, 0.0255904794, 0.00883780513, 0.0019245299, 0.0216330457, -0.00785893388, -0.0470697023, 0.041895669, -0.0486358963, 0.00540126907, 0.0277999304, 0.0228776094, -0.0155220944, -0.0364699289, -0.0113409171, 0.0126763768, -0.0357707366, -0.00825048238, 0.0143754175, -0.000260449568, 0.0262896735, -0.00836235378, 0.0131588206, 0.00528939813, -0.00296632806, -0.0727720559, 0.0175637398, 0.00743941823, 0.0251290128, -0.0274783019, 0.0344562531, 0.00251884433, -0.0473773479, 0.0106347324, -0.00347324344, -0.00697795069, -0.0281635113, -0.016123401, 0.0201367717, 0.00884479657, -0.00919439364, 0.02212248, -0.0968243107, 0.00848820806, -0.00069263851, 0.00467410823, -0.0161373839, -0.0103340792, -0.0363300927, -0.0194935128, -0.0324985124, 0.00791487, 0.0139978528, 0.0580610223, 0.000205715813, 0.0202905927, -0.00531736622, 0.0280796085, -0.000621408166, -0.0155360783, 0.011774417, -0.0401896387, 0.0174378846, 0.0334494151, -0.0277999304, 0.00586273707, 0.00545720477, 0.00338234822, -0.0340926722, -0.00634867651, 0.0177595131, -0.023618754, 0.0211995449, 0.00555858761, -0.003291453, -0.017339997, 0.00312015065, 0.0109913209, 0.00929228123, 0.0690243766, -0.0079987729, 0.0296737701, 0.0382039286, -0.0141516747, 0.0355469957, -0.0250451081, -0.00908951461, -0.0501181856, 0.0136063043, -0.0190460291, 0.097551465, -0.00653396267, 0.0164030772, 0.00972578116, -0.0285970122, -0.021115642, 0.0123687321, -0.0328341238, -0.0145851756, 0.0165848676, 0.032330703, 0.0231712703, 0.0194235928, 0.000307645125, -0.00374767673, 0.00437345495, -0.0299254786, 0.0243179481, 0.0152983526, -0.0345121883, 0.0044993097, 0.00953699835, 0.0343443826, -0.00899861939, 0.0235208664, -0.00958594214, 0.0127882482, -0.0134734577, -0.0204164479, -0.0197871737, -0.0326663181, -0.0134804491, 0.00708632544, 0.0188222881, 0.0255904794, 0.00450979779, -0.00331942085, -0.00783096626, 0.0489155725, 0.0301212538, -0.0145152556, -0.0188922063, -0.00608647894, -0.0154521754, 0.00880983751, 0.0143754175, 0.000679965597, 0.0041951607, -0.0146690784, -0.0295059625, -0.0314077698, 0.0445526056, 0.0237865616, 0.0195774157, -0.005208991, -0.0335053504, 0.00661087409, -0.00304149138, -0.0468739271, 0.013983869, 0.0202905927, -0.00176196743, 0.040105734, 0.0021010763, 0.0223741904, -0.0186404977, -0.0350995101, 0.0344562531, 0.00734852301, 0.0198710766, -0.0016614584, -0.0109074172, 0.00153735152, -0.0514606386, 0.00420914451, -0.0255764965, 0.0390988961, 0.0240942053, 0.000875739788, 0.0308763813, 0.0308484137, -0.0144733042, 0.0282194465, -0.00570192235, -0.018193014, -0.0351274796, -0.00320755, 0.00220770319, -0.0046811, -0.000289509771, 0.0227937065, -0.00780299865, -0.00953699835, -0.0360504128, -0.0156899, -0.00394345121, 0.0143334651, -0.0167247076, -0.041811768, -0.0481324755, -0.00317433826, 0.0314077698, -0.0355469957, 0.0147669651, -0.0306246728, -0.0142565537, -0.0138160624, 0.0294500273, -0.0234928988, 0.0101942401, -0.036246188, 0.00778202293, -0.00380710815, -0.011201079, 0.0442169942, -0.0453077331, -0.0375606716, 0.00707933353, -0.030177189, 0.0527751222, -0.00107413589, -0.00227063079, -0.0213813353, -0.00821552332, -0.020835964, 0.0125505226, 0.0282194465, 0.0003314614, 0.0158157554, -0.0557397, 0.0254506413, -0.0215631258, 0.00867699087, -0.013305651, -0.0272825286, 0.00720868446, -0.0246675443, -0.00228636246, 0.00158279913, -0.019115949, 0.00965586118, 0.0391268656, 0.000468459592, -0.00148054212, 0.0286669303, 0.048803702, 0.0182489492, -0.0177035779, 0.029394092, -0.0140048442, -0.0156759173, 0.00680315215, -0.0407489948, 0.00343303988, -0.0253807213, 0.0024209572, 0.0554320551, 0.0094530955, -0.00522297481, -0.0202905927, 0.0179413036, -0.00239298958, 0.000842091104, 0.0422592498, 0.0455594435, 0.0180112235, 0.00851617567, 0.00657241838, -0.0128931273, 0.0196753033, -0.0134804491, 0.0313238651, -0.0262337383, 0.000185395504, -0.000494242355, -0.0157318525, 0.0250451081, 0.0114877485, 0.0196473356, -0.0455314778, -0.0198710766, -0.025828205, 0.00219197152, -0.00985163543, -0.0163051914, -0.0155081106, 0.00822251476, -0.00320055801, -0.0289745759, 0.0161933191, -0.000882294727, -0.00922935363, 0.0444966704, -0.00923634507, -0.0119771836, 0.0202346575, -0.000426289509, -0.000228767356, -0.0362741537, -0.0240802225, -0.000978870783, 0.0486358963, -0.000649812922, -0.0282334313, 0.00999846589, -0.00923634507, 0.00629274081, -0.000901959545, 0.0211715773, 0.00406231405, 0.0222343504, -0.0103340792, 0.0242200606, -0.0125994654, 0.00929228123, -0.0309043508, -0.018766351, 0.0148508688, 0.018193014, 0.00707933353, -0.0107745705, 0.00887975655, -0.00477549108, 0.0378683172, -0.0218148343, 0.0235068835, 0.0227237865, 3.48504218e-05, 0.00259575574, 0.0300932862, -0.00174798362, 0.0260519478, 0.000389800349, -0.0140118366, -0.0269189477, 0.020905884, 0.0289186407, -0.0155220944, -0.00190355408, -0.0232551731, -0.0324985124, 0.00444337446, -0.0142076109, -0.0393506065, -0.0274083819, -2.38026205e-05, 0.0337290913, 8.93656616e-05, 0.0258841403, -0.0183748044, 0.0315476097, 0.0188222881, 0.0406371243, 0.0271287058, -0.00164397852, -0.0338409618, -0.0216330457, 0.0288067702, -0.0404693149, 0.0112849819, 0.0173539817, 0.0228496417, -0.0106766839, 0.0330578648, -0.0142985061, -0.0317433812, -0.0108305067, 0.0300653186, -0.0307365432, 0.00841129664, -0.0514606386, -0.0316874459, 0.0416159928, 0.0191579, 0.00110472564, 0.0045552454, 0.0069744545, 0.0202346575, -0.0105787963, -0.0106836753, 0.00293836044, -0.00341206393, 0.00412524119, -0.0160394982, -0.0535582155, -4.86157951e-05, -0.0101662725, -0.0117464494, 0.0132287396, -0.000817619322, 0.00759324059, 0.00562151521, 0.0157738049, 0.0055376119, 0.00894268416, 0.0343443826, -0.000643258, -0.00390499528, -0.00198570942, -0.00188957027, -0.0212694649, -0.00689404737, 0.00766316, 0.0251569804, 0.0331697352, -0.0108165229, 0.0245696567, -0.00371970912, 0.0027723019, -0.0326103829, 0.00528590241, -0.0195634328, -0.0259121079, 0.00925032888, 0.0149627393, -0.0205562878, -0.0324985124, 0.00734153111, -0.00270937453, 0.0547048934, -0.00285620522, 0.0199549813, 0.00171127589, 0.00583476946, -0.00823649857, 0.0223602057, 0.00953699835, -0.0442729294, 0.00839731283, 0.0394065417, 0.0461188, 0.0375327021, 0.0161653515, 0.0276461076, 0.000432188943, 0.00517403148, 0.0167806428, 0.00440142257, -0.0575576052, -0.0102921277, 0.0315196402, -0.00739047443, -0.0188222881, -3.0125404e-05, -0.0333934799, 0.0290025435, 0.00725762779, -0.0091874022, -0.00449581398, 0.0127952397, -0.000908077462, 0.0173120294, 0.011844337, 0.00730657158, -0.0202066898, 0.000736338086, 0.0120820627, -0.0237026569, -0.0206122231, 0.00700591831, -0.0130679253, 0.0195634328, 0.0083903214, -0.00213603606, 0.00875390228, -0.00195249764, 0.00215351582, 0.03040093, 0.00893569179, 0.0240942053, -0.00793584529, 0.0156199811, -0.00311840279, -0.0163890943, 0.0341206379, 0.00682412786, 0.000616601203, -0.00266567501, -0.00537679764, -0.00435247924, -0.00856511947, 0.00607599085, -0.00264295121, 0.0175637398, -0.0384276696, -0.0103270868, 0.000846898067, 0.00380710815, -0.00927130505, -0.0084043052, 0.0476290584, 0.0096838288, 0.00714226114, 0.0012192186, 0.0258701574, 0.0595712811, 0.0180112235, 0.0192138348, 0.0097327726, -0.0387912504, 0.0388192199, -0.0135783367, 0.00149889593, -0.0293101892, -0.0087958537, -0.00200493727, 0.00402036216, 0.0188922063, 0.0341765769, 0.0127113368, 0.0267231725, 0.0193676576, -0.0170043837, -0.00994952302, -0.00446784589, 0.0165569, 0.0116485627, 0.00112220552, -0.0219267067, 0.00468459586, 0.00460768491, 0.0183887873, -0.00327047729, -0.0268210601, 0.027464319, -0.00711079733, -0.0103830229, -0.0250870604, 0.0077260877, -0.00592566421, 0.0193257071, -0.00739746634, -0.0162772238, 0.027897818, 0.00244368101, 0.0378683172, -0.0017226378, -0.0364139937, 0.01940961, 0.00844625663, -0.00224965485, 0.0553761199, 0.000792273553, -0.00200144132, -0.02483535, -0.0313238651, -0.0532505736, -0.00625428511, 0.0181650463, 0.0281495284, -0.0137950862, -0.0163890943, 0.00178993517, -0.025184948, 0.0281355437, -0.0109493695, 0.0323027372, 0.00601306371, 0.00597460801, 0.0487197973, -0.00948106311, -0.0111940866, -0.0344842188, 0.00650249887, -0.00591867231, -0.00562850712, -0.0237725768, -0.00414272118, -0.0275761895, -0.0127113368, -0.0214372706, 0.0268630125, 0.0090755308, -0.015843723, 0.0163471419, -0.0100683859, 0.00568094663, -0.0282334313, 0.0312399622, -0.0172281265, 0.0044748378, -0.0226258989, 0.0126134492, -0.00425808784, 0.012697353, 0.0162772238, 0.0323586725, 0.0202346575, -0.0198011585, -0.0052404548, -0.0160255134, 0.000238599765, -0.0102152163, 0.0171582066, -0.0027810419, -0.0100544021, 0.0165848676, 0.00332990871, -0.011201079, 0.00261148741, 0.00933423266, 0.00687307166, -0.0120191351, 0.00518801529, -0.0150326593, -0.00457971683, 0.00522996671, 0.0404413491, -0.0143054975, -0.01069766, 0.0319391564, -0.0123687321, 0.0115297, -0.0371691249, 0.0354910605, 0.0150186755, 0.0120750703, 0.00576834567, 0.0107955467, 0.000593003409, -0.000260231056, 0.010313103, 0.0170043837, 0.00263770716, -0.00916642603, 0.0326942839, -5.55257902e-05, -0.0272265933, 0.000433062931, 0.00605501514, 0.0111451438, 0.027827898, 0.0492511839, -0.00245941291, -0.0198710766, -0.00448882207, -0.0242340453, -0.0202905927, -0.00566696282, -0.0277020447, -0.0207940135, 0.00615989417, -0.0244298186, -0.00913845841, 0.00670876121, -0.00568444282, 0.0292822216, 0.0182489492, -0.0208499487, 0.0156619325, 0.00400288263, 0.00619835, -0.0242759958, 0.0280935932, 0.0144593203, -0.000863066874, 0.0128511749, -0.0288067702, -0.027967738, 0.0125994654, -0.0237725768, -0.000587322458, -0.0129071111, -0.00281774951, 0.0180811416, 0.042678766, -0.00770511152, 0.00948805455, 0.00365328579, 0.018906191, -0.0214512553, 0.0198570937, -0.00820153859, 0.030680608, 0.0197731908, -0.00303624757, 0.0462306701, -0.0192138348, 0.0302890595, 0.00864203088, 0.020626206, 0.0384276696, 0.000362269609, 0.0142705385, -0.0089496756, 0.00435597496, 0.00478597917, -0.0254646242, -0.0300653186, 0.0141796432, -0.00929927267, 0.0230873674, -0.00460768491, -0.0256464146, -0.0251569804, -0.0443848, -0.0370572507, 0.00344177964, -0.000161033, 0.0131378444, -0.0042196326, 0.00967683736, 0.0254506413, -0.00655144267, -0.00754429726, 0.00645355554, -0.00200843322, -0.00983065926, 0.0270028505, 0.00671924883, -0.05750167, -0.00964187738, 0.00335263251, 0.0310441889, -0.0153822554, -0.015340304, -0.0180391911, -0.000891034608, 0.0159416106, 0.0104809096, 0.0211296249, -0.0359665118, -0.00731356349, 0.0319391564, 0.0173959322, -0.0452238321, 0.000704000413, 0.0182349645, 0.0160814486, -0.0234229807, 0.0143754175, -0.0228915922, 0.0292262863, -0.0293661244, 0.00306771114, 0.0594594106, -0.00159241306, 0.0069919345, 0.0389870256, 0.0044818297, 0.00582777709, 0.000863503898, 0.0376445763, -0.0250031576, -0.00689055119, 0.0157178678, -0.0233810283, -0.0128581673, -0.00376515673, -0.00869097468, 0.0245137215, 0.0207940135, 0.0115017323, -0.00279327785, -0.02761814, 0.0371970907, -0.0261498354, 0.0180252064, 0.00778901484, -0.0056320033, 0.0265134145, -0.00677868025, -0.0178014655, 0.00449231779, 0.0467340909, 0.0080617005, -0.00268315477, -0.00335787656, 0.0358546376, 0.0164869819, -0.0107535953, -0.0105088772, -0.0212694649, 0.0119002722, -0.0272265933, -7.90006652e-06, -0.0157598201, 0.00211506, -0.00409727357, -0.00588720851, 0.0258142222, -0.0103970068, 0.0193816423, -0.0197312385, -0.0141656594, 0.0225280132, -0.00961391, 0.0134315062, 0.0200109165, -0.0352952853, -0.00847422425, 0.0176336579, 0.0209897868, 0.00187558634, 0.0114737647, 0.0123617398, 0.0111381514, -0.0076142163, -0.00969082117, -0.012487595, 0.0436576381, 0.0190460291, -0.0182349645, -0.0113618933, 0.00557257188, -0.0214093029, 0.0278418828, 0.00803373288, 0.0421473794, -1.45164577e-05, -0.0100474097, -0.0166967399, 0.0195914, -0.0249612052, -0.0134524815, -0.0120191351, -0.0213114154, 0.0249332376, 0.044804316, -0.0332536399, -0.00409028167, -0.00502020866, 0.00919439364, -0.0031638504, 0.0429025106, -0.0162212886, -0.00814560335, -0.0384836085, -0.0135363853, -0.0300093815, 0.0164590143, 0.0136412643, 0.0173819494, 0.0134874415, -0.0110332724, 0.0240382701, -0.00213778391, -0.00790787768, 0.000415801594, -0.00233006221, 0.00920138601, 0.0232411902, 0.0196473356, 0.0177874807, 0.00919439364, 0.0215771087, 0.0586763136, 0.0197871737, 0.018906191, -0.0104039982, 0.00634168461, -0.0256743822, -0.00426507974, 0.0207800288, -0.0347639, -0.0268909801, -0.00509362435, -0.0196053833, 0.00844625663, 0.000636266, -0.0340087675, 0.000986736733, 0.0087958537, -0.0265973192, -0.0183608197, -0.0421194136, -0.00126903609, -0.0246535614, 0.0220245924, -0.000568094663, 0.0230174474, -0.00474752346, -0.0104319658, 0.0107675791, -0.0013031218, -0.00655493839, 0.00482093869, -0.000150982087, 0.0171582066, -0.0125155626, -0.00374767673, -0.00900561176, 0.0125714978, -0.023115335, -0.0269469153, -0.0330578648, 0.0129980063, 0.0321349315, 0.00496077724, -0.00172001589, 0.00512508769, 0.0301212538, 0.0121869417, -0.00771909533, -0.00978171639, -0.00836235378, 0.0135293929, 0.0178853683, -0.000236851774, 0.0177035779, 0.0121310065, 0.00715624494, -0.0132776834, 0.0215771087, 0.00748136966, 0.010417982, -0.0121240141, -0.0102641601, 0.014487288, 0.0184167549, -0.00260973955, -0.00549216429, -0.00829942618, 0.0184167549, 0.00404483406, -0.0363300927, 0.0028037657, -0.0300093815, -0.0179273188, -0.0107535953, 0.0164590143, -0.0207240935, -0.0104669258, -0.0416439623, 0.00124718633, 0.0536980554, 0.00215875963, -0.00927829649, -0.0126833692, -0.022905577, -0.0306246728, -0.0026044955, 0.0364419632, 0.000899337581, -0.00915943366, 0.0110472562, 0.012662393, -0.0146550946, 0.00669128122, -0.00398540264, -0.0288067702, 0.00411125738, -0.00185985456, 0.00890073273, -0.038455639, 0.0130469492, 0.0182209816, -0.0058802166, 0.02483535, 0.0168225933, 0.0141097233, -0.0435178, 0.00479996298, -0.0292262863, 0.0280236732, 0.0157458354, 0.000748574, 0.0208499487, 0.00922236126, 0.00670526503, 0.00915943366, -0.0395184122, -0.00173225172, -0.0319111869, 0.0163191743, -0.0172840618, -0.0154521754, 0.00646404317, -0.0070233983, -0.00716673257, -0.00586273707, -0.0232971255, 0.00142897654, 0.0107605867, 0.021185562, -0.0287788026, 0.0052649267, -0.0262896735, 0.0123407645, -0.00369873317, 0.00573688233, -0.0182769168, -0.0328900591, 0.00856511947, -0.00625428511, -0.014836885, 0.00275831809, -0.0120051512, -0.0183328521, -0.00276181404, -0.00841129664, -0.00433849543, 0.0165988524, -0.0214232877, 0.0425668955, 0.0164729971, 0.0230174474, -0.00329844514, 0.00736949872, -0.0211995449, -0.0245696567, 0.00965586118, 0.0022601427, 0.00137216714, -0.00746039394, -0.0254366565, -0.0244298186, -0.00298905186, 0.0111870952, -0.018556593, 0.00786592625, 0.0105018858, -0.0103620468, 0.0141376909, 0.0114947399, -0.0145152556, -0.00748836156, -0.00913845841, -0.0090755308, -7.18312e-05, 0.0203045774, 0.0238424968, 0.0173260141, -0.011270998, -0.00296283211, 0.025618447, 0.00167019828, 0.01113116, 0.0181510616, 0.0169904, -0.0111521352, 0.025828205, 0.00359385437, -0.0338409618, 0.0121869417, 0.00465313252, -0.0133825624, 0.0106277401, 0.00185286265, -0.0131588206, 0.00856511947, 0.000497301342, 0.00221294723, -0.0146550946, 0.000416020106, -0.00233006221, -0.0179133359, -0.00583127327, 0.0177315455, -0.00205213274, 0.00242445315, 0.0105857886, -0.000390237343, 0.0124386512, -0.010452942, 0.0175217874, 0.00184936658, -0.00452727731, 0.00128476799, -0.0226818342, -0.00218148343, -0.0274503343, 0.017060319, 0.00662835361, 0.0173120294, -0.00896365941, 0.0026202274, 0.0172421094, 0.0066388417, 0.00377914053, 0.0267930925, 0.0114457961, -0.0120191351, 0.0036742615, -0.000280988374, -0.0195914, -0.00815259572, 0.0266532544, -0.00961391, 0.0180811416, -0.050453797, -0.000133939247, -0.0197452232, -0.0209338516, -0.00565647474, 0.00483142678, 0.00914545, -0.01662682, 0.0326663181, -0.00397491455, 0.0213254, -0.00124806026, -0.00370922126, -0.00174011767, 0.0245277062, 0.00567395473, -0.0118373446, 0.00856511947, -0.0136063043, 0.0185705777, 0.00513907196, 0.0130749177, -0.0094670793, 0.015200465, 0.0183328521, -0.0216749962, -0.000645005959, 0.00999846589, 0.00549216429, -0.00678916834, -0.0025817717, 0.00119649479, -0.0170882884, -0.0117184818, -0.00215001986, -0.0101033449, 0.043461863, 0.030177189, -0.0212275125, 0.00661437, -0.000859133957, -0.0150326593, -0.00413572928, -0.000393514812, 0.0354071558, -0.00255555194, 0.033812996, 0.0164310466, 0.0171302389, -0.00124893431, 0.0056250114, -0.0162772238, 0.0216470286, 0.0186824482, -0.00445386209, 0.00791487, -0.0207380764, -0.0145152556, -0.00438044686, 0.0058802166, -0.0102222078, 0.0333375446, -0.0218847543, -0.0148648527, -0.00962789357, 0.019689288, -0.0028194976, -0.0201367717, 0.0124386512, 0.00449231779, 0.0142076109, 0.00383158, -0.00158454711, 0.00157580723, -0.00173924363, 0.0197871737, 0.0303449947, 0.0278698504, 0.0380920582, 0.0291983187, 0.012592474, -0.0159695782, -0.0122219017, -0.00205562869, 0.00365328579, -0.00751632964, 0.013305651, 0.0250730775, 0.027967738, 0.011949216, -0.000198505382, 0.0312959, -0.0124106836, 0.000333864853, 0.031184027, 0.00908252317, 0.00503768865, -0.005208991, -0.0318832211, 0.0146131432, -0.00102169637, -0.0125714978, -0.00708632544, 0.00100946054, -0.0163751096, -0.00510411197, -0.0306526404, -0.00303449947, -0.00551314047, -0.0218288191, -0.0130679253, -0.0160674658, 0.000317914528, -0.00608298276, -0.0197592061, -0.0102501754, 0.0198151413, 0.0389031246, -0.0224161409, 0.0348478, -0.0140398042, 0.0445526056, 0.017409917, -0.0189201739, -0.00313763064, -0.0171442237, -0.0205283202, -0.00545720477, -0.00223916699, -0.0268350448, 0.0199969318, -0.00403085025, 0.0182629321, 0.025968045, 0.0177315455, 0.00538728526, 0.0194515623, -0.0204444155, -0.00484541059, -0.00224965485, 0.0239963196, 0.00780999055, -0.0175078046, 0.015843723, -0.0107535953, 0.0066073779, 0.000234666804, 0.0186544806, -0.00306771114, 0.00497126533, -0.000901959545, 0.00149277796, -0.0165149495, 0.0298136082, -0.00251185242, -0.00793584529, -0.0253387708, -0.01106124, 0.00697795069, 0.00390499528, -0.00590119278, -0.00799178053, -0.00838332903, -0.0263735764, -0.00597460801, -0.00476849917, 0.00426158402, -0.0391548313, 0.00572639424, 0.0335333161, 0.00560403522, 0.0165988524, -0.00504118484, 0.00040094374, -0.0401616693, 0.000974500843, 0.00102956232, -0.0327222534, -0.00775405532, 0.029114414, 0.014836885, 0.000180151561, 0.00301352376, 0.0112500228, -0.00246990076, -0.0220805295, 0.0232132226, -0.0101522887, -0.0059536323, -0.0052019991, 0.0207520612, -0.0164450295, -0.0267651249, -0.0115087237, -0.00342429988, 0.000834662176, -0.00783795863, 0.0232971255, -0.0131728044, -0.0128162159, 0.0327781886, 0.013704191, 0.00470207585, 0.00644656364, -0.00317608612, 0.00311840279, 0.0144453365, 0.00388401956, 0.0139978528, -0.0017453616, -0.0244857538, -0.0239823349, -0.00287543307, -0.0182069968, 0.00922935363, -0.00465313252, 0.0164310466, 0.00985163543, -0.0178294331, 0.00425808784, 0.0247794148, 0.0115786437, 0.000646753935, 0.0116205951, 0.00404833, -0.0234789159, -0.00597111182, -0.00692900689, -0.0275202543, 0.0363580585, 0.0228076894, -0.0112570142, -0.0181790292, 0.0095160231, 0.0320789963, 0.0237166416, 0.00673672883, 0.00764218438, 0.00704087783, -0.00815958716, 0.0147529813, -0.0168086104, -0.00518102339, -0.0199689642, -0.00214652391, -0.00402735407, 0.0121729579, -0.00405881787, 0.012347756, 0.017270077, -0.00825048238, 0.000758624868, -0.0309323184, -0.0171582066, -0.00187209039, -0.00736949872, 0.00458321301, -0.00148403808, -0.0340367369, 0.00502020866, -0.00462516444, -0.0143334651, 0.0391828, -0.00482093869, 0.00134944334, -0.00799178053, 0.00120436074, -0.0341765769, 0.00485240249, 0.0107535953, -0.000284702837, 0.0127393045, 0.00911049079, -0.014836885, 0.0326663181, -0.00131186168, -0.018193014, -0.0156199811, 0.00289466092, -0.00474402728, -0.0130469492, -0.0158297401, 0.00689404737, 0.0059361523, 0.0133965462, -0.019689288, 0.0029803121, 0.0145851756, -0.00328271324, 0.0199130289, -0.0230454151, 0.0105857886, 0.0106487162, -3.93569426e-05, -0.0128511749, -0.00199095323, -0.0260239802, -0.0235628188, 0.0051705353, 0.0115506751, -0.00595013611, -0.00483841868, -0.00661087409, 0.00915244222, 0.00683811167, 0.0326103829, 0.00880983751, 0.00970480498, 0.0124316597, 0.0106906677, 0.000915943412, 0.0024279491, 0.00589070469, -0.0149627393, -0.0111241676, 0.024471771, -0.0141097233, -0.00160901889, -0.0191998519, 0.0151864812, 0.0102082239, -0.00792885385, 0.00735551491, -0.0117674256, -0.0150746107, 0.00850918423, 0.00972578116, -0.0101522887, 0.0148229012, 0.00687307166, 0.0389870256, 0.00101033447, 0.00362881389, -0.00901959557, 0.00681014406, 0.0188083034, 0.0147529813, -0.0042336164, 0.00292612449, 0.01387899, 0.00440841448, 1.13004407e-05, 0.0300093815, -0.0194655452, -0.0134664653, 0.00851617567, 0.0186544806, 0.00648501934, -0.0235068835, -0.00682063214, 0.000827670214, 0.0025887636, 0.00365328579, 3.17914528e-05, 0.0280935932, 0.00791487, -0.0219406895, 0.00304498733, 0.0130259739, 0.0130189816, 0.0206541736, -0.0184167549, -0.0104669258, 0.00368824531, 0.0177874807, 0.0189481415, 0.0109843286, 0.0175917074, -0.0295339301, -0.0059606242, -0.00391897932, -0.0141726509, 0.000156116788, 0.014697046, -0.0087958537, 0.00341206393, 0.0248912871, -0.00740445871, -0.00913845841, -0.0177734978, -0.00909650698, 0.00565647474, -0.00916642603, 0.0202206746, 0.0243179481, -0.0182629321, 0.0111451438, -0.0188642386, 0.0158996582, -0.0101452963, 0.00435947115, -0.0128371911, -0.00408328976, -0.00759324059, -0.0349876396, 0.000625778106, 0.0169624332, -0.0172421094, 0.00510760816, -0.00377564458, 0.00238949363, -0.00267441501, 0.0108374981, -0.0131448368, 0.0314916708, -0.0148508688, 0.015340304, 0.0016387346, 0.0137461433, 0.0134804491, 0.017619675, -0.00532086194, 0.0148089174, -0.00127253204, -0.0152983526, -0.00495028961, 0.012054095, 0.0056250114, 0.0248493347, 0.0200808346, -0.00241571339, 0.00392946694, 0.00358336628, 0.00891471654, -0.00863503851, 0.0031551104, -0.00947407074, -0.0055446038, 0.012054095, -0.0201507546, 0.018906191, 0.00387702766, 0.0145012718, -0.00661786599, -0.00787291769, -0.00809666, -0.00746039394, -0.0269888658, -0.0243598986, -0.00203640084, -0.0244997386, -0.00765616819, 0.0230594, 0.00728559541, 0.0204863679, -0.0254786089, 0.00619485369, 0.00516354339, 0.0015548314, -0.00141237071, -0.00398540264, 0.00081849331, 0.0029401083, 0.0059361523, 0.01940961, 0.00367076555, -0.0300932862, 0.0108305067, 0.0105368448, 0.0259260926, 0.00396093074, 0.00546070095, 0.00787991, -0.0220106095, 0.00318307802, 0.00915244222, 0.0243878663, -0.0115157161, 0.0293661244, 0.00642558746, 0.0115297, 0.00882382132, -0.0244857538, -0.0233250931, 0.0101033449, -0.0240522549, -0.0142915137, 0.0011195835, -0.00564598711, 0.00311315875, 0.0141027318, -0.0119981598, -0.0124806026, -0.00832739379, -0.006904535, -0.00438044686, 0.020192707, -0.0158856753, -0.00283173332, 0.0201787222, 0.0128441835, 0.00217449153, 0.00781698246, -0.0188502558, -0.0153682716, -0.00515305577, 0.00738348253, -0.0120191351, 0.0114947399, 0.0295618977, -0.000496864319, 0.00681713596, 0.012662393, 0.000542311929, -0.0158017725, -0.00326348539, 0.00302226353, 0.0106766839, 0.027897818, 0.00302750757, -0.0211715773, 0.00804072432, -0.00170078804, -0.0229335446, -0.0185286254, 0.00752332155, 0.0195074975, -0.00953000691, 0.0149347717, 0.0171582066, 0.0235348511, 0.018556593, 0.0183468349, -0.00460418873, 0.000889723655, -0.0202066898, 0.00698144641, 0.000519588124, 8.87101705e-05, 0.0129420701, -0.0290025435, 0.00613542227, -0.009061547, -0.0102781439, 0.00251010433, 0.00191579, 0.0127672721, 0.00251185242, -0.0106836753, 0.0137321595, 0.00444687, -0.0150606269, 0.00407629786, 0.00545021286, 0.00408328976, 0.0238844473, 0.00216050772, -0.0355469957, 0.00447134208, -0.00265868311, 0.0101033449, 0.0171721913, -0.00161338889, 0.00894268416, -0.00672624074, -0.00433499925, 0.00804072432, -0.00818755478, 0.0175637398, -0.0159416106, -1.8667919e-05, -0.0089496756, -0.00211331225, -0.0215351582, 0.0087329261, -0.018193014, -0.00872593373, -0.0270168353, 0.00887276512, -0.0240382701, 0.00355365057, -0.000878798775, -0.00357812247, 0.0223881733, -0.0191718843, -0.00576485, 0.0224161409, 0.00552013237, -0.0267791077, -2.36660599e-05, -0.00066161179, -0.020402465, 0.00217449153, 0.0072786035, -0.0259540603, 0.0186684653, 0.0189761091, -0.00388052361, -0.0109983124, 0.0125085702, -0.00393296313, 0.0104459496, -0.00449231779, -0.0123617398, 0.00992854685, 0.00526842242, 0.00625078939, 0.0195634328, -0.0114457961, 0.027394399, 0.00823649857, 0.0127462959, 0.0147949327, 0.00348198321, -0.0177175626, 0.027464319, -0.0137111833, -0.00172875577, -0.0218148343, 0.0160954334, 0.0108514819, 0.0194655452, 0.0172001589, -0.0192837548, -0.00442589447, -0.0166128352, -0.0199130289, -0.000591255433, 0.0117674256, 0.0155360783, 0.00104442018, -0.0221784152, -0.000627089117, -0.0064151, -0.015843723, 0.00870495848, 0.00704437401, -0.0124386512, 0.0405252501, -0.00675071264, -0.0213813353, 0.0219127219, -0.00340507203, 0.0208639316, -0.0114318123, -0.018402772, 0.00605851132, -0.00240347744, -0.0117254741, -0.00762120867, 0.01113116, 0.0101662725, 0.0102501754, -0.011201079, 0.00187908241, -0.00496077724, 0.000791836588, -0.0194935128, -0.00100246863, -0.0102571677, 0.00665981742, -0.00328620919, 0.00749535346, 0.00511809578, 0.00196822942, 0.00465662824, -0.0238704644, 0.0156339649, -0.0145292394, 0.0310162213, -0.0272405762, 0.00790088624, 0.0130889015, -0.0122358855, -0.00441890256, 0.019619368, -0.0104809096, 0.00577184185, 0.00886577275, 0.0117674256, 0.00837633759, 0.0137111833, 0.00338060036, -0.0232551731, -0.00134856929, -0.0147110298, -0.0224860609, 0.0024454291, -0.0114807561, -0.0140118366, -0.00117814098, 0.00161950674, 0.0178853683, -0.0111381514, 0.013095893, 0.00649201125, 0.00734852301, -0.00892170798, 0.00273209834, -0.0337290913, -0.0239543673, -0.00154521747, -0.0389870256, 0.00464264443, -0.00989358686, 0.0278418828, -0.000913321448, 0.0108165229, -0.0134315062, 0.00647802697, 0.0127742644, -0.00284746522, -0.00272685429, -0.0389590599, 0.00376515673, 0.0226818342, 0.0194655452, -0.0019018061, 0.018906191, -0.00270063453, 0.00396093074, -0.014487288, -0.0200388841, -0.0132846748, -0.0122219017, 0.0127183283, 0.00558655569, 0.00486289058, -0.00588371279, 0.0125784902, -0.0339808, -0.00810365193, -0.0117254741, 0.00576834567, 0.0135923205, -0.0138650062, -0.031603545, -0.0132567072, 0.0073345392, 0.00578233, -0.0228076894, -0.0127952397, 0.0194515623, 0.00423711212, 0.00520549528, -0.000616601203, -0.0203884803, -0.0151585136, -0.00220770319, 0.00619835, 0.0174798351, -0.0130189816, 0.0160394982, -0.00284571736, 0.0221924, -0.00322852563, -0.00411475357, -0.0245836414, -0.00307470304, -0.00324775348, 0.014088748, 0.0113479095, -0.000794021529, 0.0310721565, 0.00488037, -0.0242200606, 0.0180252064, 0.011844337, -0.0225000456, 0.00376515673, -0.0055376119, 0.027464319, 0.00258701574, 0.00451678969, 0.0102222078, 0.00887276512, 0.0233670454, -0.0223602057, -0.012522554, -0.0297576729, -0.000323158456, -0.00897764415, 0.00553411618, 0.0252548661, 0.00760023249, 0.0129910139, -0.00283348141, 0.00452727731, 0.00860707089, 0.00345576345, -0.00338584417, 0.000835536164, 0.000630148104, -0.00301527162, -0.00508663245, -0.00365328579, 0.00818056334, -0.00249612052, -0.00594664039, 0.0201787222, 0.00373019697, -0.00315161445, 0.0051845191, -0.00874691, 0.00568793854, 0.0028125057, 0.00995651446, -0.000860881933, 0.00605501514, 0.0171022713, -0.000899337581, -0.00255380408, -0.00604802324, 0.00817357097, 0.0123897074, 0.00213079201, 0.023115335, -0.000819367298, 0.0159136429, 0.0138020786, -0.0126484092, -0.000117442651, -0.0066388417, -0.0220945124, -0.000858259969, -0.00398540264, -0.000633644057, 0.00753730536, -0.0155081106, 0.00890772417, 0.00842528, -0.00964187738, 0.0175217874, 0.00396442693, -0.0155081106, 0.00469857967, -0.0131588206, -0.0225699637, -0.00103218434, 0.00728559541, -0.0200109165, -0.00351344701, -0.0268210601, 0.0150606269, 0.0101383049, 0.0279817209, -0.00732055539, 0.0062892451, -0.00850219186, -0.0245836414, -0.029394092, 0.0244857538, 0.00737649063, 0.0179273188, -0.00527891051, 0.018556593, 0.0137671186, 0.0144453365, 0.00172875577, 0.00776803913, -0.00456573302, -0.0101383049, 0.00681713596, -0.00205562869, -0.0112500228, -0.0179133359, -0.0226398837, 0.0225280132, -0.0183468349, -0.0129700387, -0.0135783367, 0.00762820058, 0.0145012718, 0.0188922063, 0.00308519113, -0.00594314421, 0.00680315215, 0.0150885945, 0.0183328521, 8.38485867e-05, 0.00990757067, 0.00124019431, -0.0149907069, -0.00119474682, 0.00757925678, 0.00815259572, -0.0165289324, -0.00132322358, -0.00822251476, -0.0122288931, 0.00427556783, -0.000235759289, 0.0102711516, 0.038595479, 0.0187104158, -0.0151445298, 0.0121589741, -0.0319950916, 0.0151025783, 0.00216924772, 0.0269329306, -0.00421264, -0.0149627393, 0.0141586671, -0.00252408837, -0.00536281383, 0.000680839585, 0.00426857593, -0.00757925678, -0.00481045106, -0.014018828, 0.0016457265, -0.00107151398, 0.0176476426, -0.0170743037, -0.014836885, 0.0111171752, -0.0242200606, 0.0165569, -0.00844625663, -0.0024366891, -0.00266917096, -0.0125645064, -0.0216749962, 0.00591517659, 0.00680315215, 0.0171022713, 0.00571590615, 0.011305958, 0.0034767394, -0.00494329771, -0.0103550544, 0.00590119278, -0.0164310466, 0.01380907, 0.00334564061, 0.00738348253, 0.00571241044, -0.0123407645, 0.0103760306, -0.0172840618, 0.00690803118, 0.0136552481, 0.0194515623, 0.0105648125, -0.00505167246, 0.00848820806, -0.01662682, 0.00569842663, -0.00815958716, -0.00750234537, -0.00332641276, -0.00800576527, -0.00793584529, -0.00512858387, 0.00455174921, 0.0205842555, -0.01940961, 0.021185562, 0.0200249, -0.0133266272, -0.0330299, -0.000424323021, 0.0138719976, 0.013340611, -0.0124736112, 0.000133939247, -0.00273909024, 0.00650949078, 0.00467760395, 0.0142215947, 0.00311315875, -0.00915244222, 0.00151899771, 0.00851617567, 0.0102991192, -0.0191019643, -0.00258701574, -0.0183748044, 0.013095893, -0.0185006578, -0.0177455302, -0.00339458417, 0.00275482214, 0.0264574792, -0.0206821412, 1.7684677e-05, -0.0042266245, -0.0108934334, -0.0100194421, -0.0147250136, 0.00542574096, 0.0113129495, 0.013305651, -0.00326173729, -0.00694648689, 0.00818056334, 0.00647103507, 0.0113199418, 0.0215211734, -0.00247339671, 0.000375379488, -0.00381759624, 0.0204584, -0.0248912871, 0.00791487, -0.00300827972, 0.0235907864, -0.0401896387, -0.00130049977, 0.00139576488, 0.00829243381, 0.00478947489, 0.0113339256, -0.0094530955, -0.0081246281, -0.0171442237, 0.0136132967, 0.00718770875, -0.019899046, 0.0110892076, 0.0153682716, -0.00928528886, -0.0318552516, -1.3382999e-05, -0.0182489492, 0.0077260877, 0.00231957412, 0.0215351582, -0.00279852166, -0.0174239, 0.00930626504, -0.00848121662, 0.0150326593, 0.00383857195, 0.00586972898, 0.0116905142, -0.00754429726, 0.00543972477, 0.0133126434, 0.0152424173, 0.00966285355, 0.0160954334, -0.0080617005, -0.00962090213, -0.00294710044, 0.0118862884, -0.00373718888, 0.011949216, -0.0183468349, 0.00501321675, -0.0145292394, -0.0115996189, 0.00595712801, -0.0112919742, -0.00709331734, -0.00213428796, -0.0239683501, 0.0195914, 0.0097467564, 0.000449668791, -0.0161653515, -0.017339997, 0.0115366913, 0.00478947489, 0.000480258488, -0.00445036637, -0.0094530955, 0.023548834, -0.0151724974, -0.0239683501, 0.0121519817, -0.0196753033, 0.00431402354, 0.00762120867, -0.0365258642, 0.0021098163, -0.00950203836, 0.00671575312, 0.00618786179, 0.00457971683, -0.0127742644, 0.000184303019, -0.0133755701, 0.0164869819, -0.0114737647, -0.00393995503, -0.0127043445, 0.00137216714, -0.00341206393, 0.0150606269, -0.00323027372, 0.00113269337, -0.000488124409, -0.0252828356, -0.00901959557, -0.0247094966, -0.00385605171, 0.0268350448, 0.011270998, -0.0107256277, 0.0171442237, -0.00566346664, -0.0112080704, -0.00612493465, 0.00516004767, 0.00610745465, -0.00949504692, 0.0257303193, 0.0172421094, 0.0087958537, -0.0232691579, 0.00402385835, -0.000887101691, -0.00266217906, 0.00530338241, 0.0112080704, 0.0200668518, -0.0168086104, 0.00125942216, -0.00567395473, 0.00547118858, -0.0100264335, 0.0153123364, -0.00486988248, -0.0113339256, -0.0103620468, 0.00576135376, -0.0155220944, 0.00238250173, -0.00173225172, 0.000609609298, -0.0100963535, -0.00915943366, -0.0272126086, -0.00467410823, 0.0159835611, -0.0124736112, -0.0013983869, 0.0243459158, -0.0220385771, -0.0184866749, 0.0142355785, 0.0185705777, 0.0108584743, 0.00264120311, 0.00627875701, 0.0137391509, -0.00918041, 0.0161933191, -0.0136482557, -0.0115996189, -0.00819454715, -0.0279537532, 0.0135853281, -0.0207660459, -0.0232691579, 0.0240103025, 0.0165708847, -0.00555159571, -0.0103061115, 0.00672973692, 0.0242340453, -0.0122219017, -0.00098848471, 0.00306596328, 0.0102571677, -0.00154783949, 0.0146411108, -0.0212974325, -0.0100963535, 0.00928528886, -0.00932724, 0.0062472932, -0.00980968401, 0.0121659655, 0.017619675, -0.0145152556, 0.0141376909, 0.017270077, -0.00371271721, 4.91347273e-05, 0.00334564061, 0.00407629786, 0.0144733042, 0.00298380805, -0.0240662377, 0.00859308708, 0.00214827177, 0.00327921729, 0.0185426101, 0.0094041517, -0.00688705547, 0.0175777227, 0.00617038226, 0.000971004891, -0.0219406895, 0.0143194813, 0.00137478905, -0.000218060959, -0.00844625663, 1.08429604e-05, -0.0178993512, -0.00610046275, 0.030037351, 0.0136202881, -0.0121240141, 0.00668778503, 0.00992155448, -0.0169904, 0.0159136429, -0.00254856, -0.0329459943, -0.0172560941, -0.0171582066, 0.00885878131, -0.0163751096, -0.00667380122, -0.0077260877, 0.0222623199, -0.0155640459, 0.00298555591, -0.00186160253, -0.00510760816, 0.0249612052, 0.0229335446, 0.00986561924, 0.00990757067, 0.000349596725, -0.000114820672, 0.0275901724, -0.00160901889, -0.00846024, -0.00737649063, 0.0031551104, 0.0113199418, -0.0185286254, 0.0419516079, -0.00267616287, 0.00384556386, -0.000641947, 0.0122988122, 0.010522861, -0.000364236068, -0.0226538666, -0.0147250136, -0.0241920929, 0.0116136028, -0.000310048577, 0.01344549, -0.0183748044, -0.0001657307, 0.0220385771, 0.00209932821, 0.0200808346, 0.00425459212, 0.00180741504, 0.0180671588, 0.0221084971, 0.00108025386, -0.0290864464, 0.0125085702, 0.036805544, -0.013704191, 0.00619485369, -0.0101802563, 0.00404133787, 0.0219406895, -0.00572989043, 0.00813162, -0.00625778129, 0.0159136429, -0.0154242069, 0.0277859475, -0.024681529, -0.0222203676, -0.0142215947, 0.0218428038, 0.0114807561, -0.0432940573, 0.0136272805, 0.0165569, 0.0169484485, -0.0115856351, -0.0121240141, 0.00122970645, -0.00764218438, 0.0024366891, 0.0155920135, -0.0119911674, -0.0366377346, -0.00391897932, -0.000490746403, -0.00919439364, -0.0144313527, 0.0185426101, -0.0280376561, -0.0328620933, -0.0076142163, -0.0045552454, 0.00327746919, 0.00562151521, 0.00108986779, 9.084052e-05, 0.036805544, 0.00779600674, 0.0169764161, -0.0300932862, 0.00600956753, 0.00618786179, 0.0184167549, -0.00991456304, -0.00252758432, -0.0181091093, -0.0254646242, 0.0150326593, -0.0221504476, 0.00491532963, -0.0177734978, 0.0117254741, 0.00681014406, -0.00199969322, 0.00289466092, 0.00162475079, -0.0154242069, 0.016123401, -0.00546419667, 0.00462166872, 0.0258841403, 0.0234649312, -0.00570192235, -0.0183188673, -0.00718770875, -0.00699543, 0.00552362809, -0.00180391909, 0.0174798351, 0.012557514, 0.00157143723, 0.0132846748, 0.0183748044, 0.00280201761, -0.00948805455, -0.0178294331, -0.00431751925, 0.00325649348, -0.00278279, 0.00312189874, 0.0254646242, 0.0119562075, 0.0247514471, -0.0109633533, -0.00219896343, 0.00359385437, 0.00919439364, 0.0150186755, 0.0176756103, 0.0103340792, 0.0155920135, 0.00633119652, 0.0151724974, -0.000705748389, -1.51036711e-05, 0.00312889065, -0.0211296249, -0.00186160253, -0.0036742615, -0.00846024, -0.0101662725, -0.0103061115, -0.0151305459, -0.00117988896, 0.00326523324, 0.00190530217, -0.00533135, -0.00687307166, -0.000825485273, -0.00563899521, 0.0113828694, 0.0204444155, 0.0124596274, 0.000204732583, -0.00820153859, 0.00708632544, -0.00632420462, 0.00289291283, -0.0108654657, -0.0132916672, 0.00185286265, -0.00409727357, -0.0377844125, -0.0373648964, 0.0183608197, -0.0143124899, 0.0293101892, 0.00324950158, -0.0079498291, -0.024471771, -0.00891471654, -0.00996350683, -0.0107955467, 0.00826446619, -0.00373718888, 0.00604452705, 0.00890073273, 0.0119212484, 0.00978870783, 0.00963488594, 0.00937618408, -0.0185286254, 0.00681364024, 0.000313981553, 0.00908252317, 0.0210037716, -0.00455174921, -0.0129560539, -0.00722266827, -0.00521947909, -0.00108462386, -0.0151165621, -0.0135224015, -0.0391828, 0.00645355554, -0.0266532544, 0.0330858342, -0.00722266827, 0.0154661592, 0.00202416489, 0.00466711633, -0.00190530217, 0.00158017722, -0.011879296, 0.00284921331, -0.00994253065, 0.0139069576, 0.00833438616, 0.0114947399, 0.00585224899, 0.00531736622, 0.0014866601, 0.0158017725, -0.00501321675, -0.0131238606, -0.0320510268, -0.0019332699, 0.00323376968, 0.0251429956, -0.0169904, 0.00228286651, -0.0127882482, 0.000357244135, 0.00255030813, 0.00647802697, 0.00153385557, -0.00482443487, 0.0205982383, 0.0131028853, 0.0118163694, -0.00320929778, 0.0058732247, -0.0119212484, 0.0106627, -0.00978171639, 0.0187523682, 0.00556558, 0.0147809489, 0.0146550946, -0.00425808784, 0.0235768035, 0.0194235928, 0.0109633533, -0.00352568296, -0.0102781439, 0.0113968533, -0.0114178285, -0.0145991594, 0.00523695862, 0.00411125738, 0.00848820806, 0.0105997724, 0.0217169486, 0.0100054583, 0.00525443861, 0.0107815629, 0.000978870783, 0.024401851, 0.0159416106, 0.00393645884, -0.0170323513, 0.0101522887, -0.0102501754, 0.000704874401, 0.0277300123, 0.0151585136, 0.01387899, -0.000784407661, -0.0111940866, -0.00582428137, -0.0188083034, 0.0194795299, 0.0029908, 0.00783096626, -0.0290305112, 0.00790787768, -0.00479996298, -0.000882294727, -0.0138230538, 0.00274433428, -0.0145012718, 0.000780911651, 0.015200465, -0.00569493044, 0.00997749064, -0.00488736201, -0.00153735152, 0.00639062794, -0.00301701971, 0.000391766836, -0.0020783525, -0.0020696125, -0.00692551117, -0.00588371279, 0.00392946694, 0.0230594, -0.00838332903, 0.00369174127, 0.00809666, 0.0152564012, -0.00595712801, -0.0197871737, -0.0221084971, 0.00283348141, -0.016123401, -0.00466711633, 0.0130189816, -0.0186684653, 0.00391897932, -0.0206681583, 0.0163471419, 0.0168785304, -0.0183608197, -0.0202206746, 0.0168645456, -0.00420564832, 0.000594751444, -0.00361832604, -0.00462516444, -0.00995651446, -0.00926431268, -0.00267791096, 0.02490527, -0.0126554016, -0.00769112771, -0.00954399072, 0.00272510643, -0.0146411108, 0.00320580183, 0.0003314614, -0.0354351252, 0.0151445298, -0.0257163346, 0.0223741904, -0.00455174921, -0.0128581673, 0.0150326593, 0.00179343112, -0.0116136028, 0.0116905142, 0.0101173287, -0.00567045854, 0.0036602777, -0.00993553828, 0.0340926722, 0.00898463558, 0.00476849917, -0.0230873674, 0.011166119, -0.0174658522, 0.00687656738, -0.00731356349, -0.0205842555, 0.00471955584, -0.0111031914, -0.00260099955, -0.00425459212, -0.00505167246, -0.0277719628, -0.000544059905, 0.00535232574, 0.0113828694, -0.00342255179, -0.0062717651, -0.0157318525, 0.00693250308, 0.0292262863, 0.00280726166, -0.00292437663, -0.0129141025, -0.0036358058, 0.018123094, -0.00955797452, -0.0273524467, -0.0144173689, 0.0059676161, 0.0270028505, -0.0364699289, -0.0120820627, 0.000666855718, -0.0141936271, -0.0351554453, 0.00819454715, -0.0104389582, 0.000833788188, 0.0232691579, -0.0200668518, 0.00523695862, -0.0115366913, -0.00927130505, -0.00176983338, 0.00384905981, 0.0096838288, 0.0141167156, -0.0245277062, 0.00857910328, -0.0018406267, 0.016906498, 0.0372809954, 0.00804072432, 0.0241361577, -0.00722966, -0.00106889196, -0.00491532963, 0.0100544021, 0.0163331591, 0.00796381291, 0.0140467966, -0.00510760816, -0.00457622111, 0.00712128496, 0.00397841074, -0.00532086194, 0.00990757067, -0.0135573605, -0.0101522887, 0.00792186148, 0.0143614328, 0.004904842, -0.018193014, -0.00128564192, 0.00988659542, 0.0253807213, 0.0225000456, -0.0113618933, -0.0270448029, -0.00672274502, 0.0136272805, 0.0453636684, 0.00163611269, -0.012557514, 0.0340926722, 0.0441051237, 0.00569842663, 0.00214827177, 0.00765616819, 0.00373369292, 0.0109214019, -0.0143334651, -0.0056250114, -0.00305897137, 0.0114178285, -0.0217868667, -0.029114414, 0.000137107461, 0.015843723, 0.0333375446, 0.0180951264, 0.0262197535, 0.00482093869, 0.0247514471, -0.00723665208, -0.0108514819, -0.000727161183, 0.0103340792, 0.0048349225, -0.0249192547, 0.00860707089, 0.00120261277, 0.00502370484, -0.00393995503, -0.0155081106, -0.0113479095, -0.00570192235, -0.0127393045, 0.0044818297, -0.00684160786, -0.00105753, -0.00704437401, 0.0291423816, -0.0293381568, -0.0246116091, -0.00113881135, 0.000732405111, -0.0364699289, -0.0117534418, -0.0100054583, -0.00345401559, 0.00679616025, -0.013983869, -0.000363143597, 0.00244892505, 0.0227517541, -0.00125243026, -0.00864203088, 0.000695697498, 0.00828544237, 0.000973626855, -0.00976074, -0.00714925304, -0.012417675, 0.0247514471, -0.0159136429, -0.00706884544, -0.0080617005, -0.00398540264, 0.00672624074, -0.0140747642, 0.00903357938, -0.0103620468, 0.00820853096, -0.0133615863, -0.00990057923, 0.00763519248, -0.00044180284, 0.0124736112, 0.00785893388, 0.021339383, 0.0140328119, -0.0102292, -0.0027880338, -0.00785893388, 0.00216749962, 0.0109913209, -0.00265693502, 0.000525269075, 0.00766316, -0.00303974352, 0.00205213274, 0.00687307166, 0.013200772, -0.00848820806, 0.0101243211, 0.0163191743, -0.00345401559, 0.0142076109, 0.00244717696, 0.0104389582, -0.0111801028, 0.00952301454, -0.00398540264, -0.019619368, 0.00100858649, 0.0204863679, 0.00260274764, -0.00680664834, -0.00753730536, 0.00855113566, 0.0119771836, 0.031184027, -0.00857910328, -0.0105508287, -0.0286389627, -0.0137811024, 0.0145012718, -0.0122988122, 0.00304848328, 0.00799178053, -0.0212275125, 0.0262337383, -0.0349596702, 0.000821552298, -0.00817357097, 0.0145292394, -0.0027880338, 0.00103305827, 0.000636703044, 0.0275342371, 0.00153123366, 0.011270998, -0.026681222, 0.0107605867, 0.0382878333, -0.0164450295, 0.000811064383, 0.00127690204, -0.0129840225, -0.00793584529, 0.000942163169, 0.0211995449, -0.00152598973, -0.0100544021, 0.00511809578, 0.0104249744, 0.014836885, 0.0126274331, -0.0171162561, 0.0127952397, -0.00428955164, 0.00563899521, -0.0018179029, -0.0113339256, -0.0140817557, -0.0102431839, 0.00553062, 0.00739047443, -0.000400288234, 0.0226258989, -0.0156479497, 0.00533135, -0.00758624868, 0.00918041, -0.0214093029, 0.0101522887, -0.00947407074, -0.00799178053, 0.0160255134, -0.00571940234, 0.00117988896, -0.0158996582, 0.00485589821, -0.0059676161]
30 Sep, 2021
jQWidgets jqxSwitchButton enable() Method 30 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxSwitchButton is used to illustrate a jQuery button widget that changes its verified state after being clicked. Moreover, it’s quite identical to the jqxToggleButton, yet possesses a distinct user interface view. The enable() method is used to enable the displayed switch button. It has no parameter and does not return anything. Syntax: $('Selector').jqxSwitchButton('enable'); Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /><script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script> Example: The below example illustrates the jqxSwitchButton enable() method in jQWidgets. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> </head> <body> <center> <h1 style="color: green">GeeksforGeeks</h1> <h3>jQWidgets jqxSwitchButton enable() method</h3> <br /> <div id="jqxSB"></div> <div> <input type="button" id="jqxBtn" style="margin-top: 25px" value="Click here" /> </div> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxBtn").jqxButton({ width: "150px", height: "40px", }); $("#jqxSB").jqxSwitchButton({ height: "25px", width: "70px", }); $("#jqxSB").jqxSwitchButton("disable"); $("#jqxBtn").on("click", function () { $("#jqxSB").jqxSwitchButton("enable"); $("#log").html("Button enabled"); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxbutton/jquery-button-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxswitchbutton-enable-method?ref=asr10
PHP
jQWidgets jqxSwitchButton enable() Method
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0242262, 0.0208713952, -0.00232383236, 0.0386929698, 0.0353514254, 0.027634047, 0.0205664132, 0.0419284329, 0.022661509, -0.0260030534, -0.0220780652, 0.0252339691, -0.00330010708, -0.00366973248, -0.00511508295, 0.00214979355, -0.033733692, 0.0127562154, -0.0185641386, 0.0138037633, 0.00125142187, -0.0159121193, -0.0506800972, 0.0206990149, -0.0211233385, 0.0226349887, -0.0106345993, 0.0092754392, 0.00485651102, -0.0150502119, -0.0369956754, -0.0135650812, -0.00773726776, 0.0260693543, -0.0392233729, -0.0382686444, 0.0075980369, -0.00625545159, -0.0493275672, -0.0327259228, 0.0053836, -0.00143374817, 0.016336441, 0.0125904642, -0.00580129307, 0.0375260785, -0.0184580572, -0.0261091348, 0.0210570376, 0.00539023, 0.0367835127, 0.00911631808, -0.00594383944, 0.0256582908, 0.0179541744, -0.0060001947, -0.0185376182, 0.0230990928, 0.000552366, 0.00765107712, -0.0149308713, -0.0260693543, -0.0104224375, -0.014307647, -0.0207918342, 0.00885111559, 0.0175298508, -0.00820800103, -0.0352983847, 0.0127429552, -0.0188160799, 0.0344232172, -0.00925554894, 0.00477363542, 0.0200094897, -0.0214681011, -0.0240936, -0.00861906447, -0.0155540956, 0.0112710837, -0.0110456627, -0.0342906155, -0.0430157594, -0.0013251811, -0.00203376776, 0.0200625304, 0.00778367789, -0.0244118422, 0.0324872434, 0.0657170489, -0.0187763, -0.0271301623, -0.0298617426, -0.0130346771, 0.0113373846, -0.0111185927, -0.0017486756, -0.00289070164, -0.0402576588, 0.0144402478, 0.0437848456, -0.0120136496, -0.00975280255, -0.0288539752, 0.0306838695, 0.0345293, 0.0332032889, 0.00952738151, 0.0130147869, 0.0222371854, 0.0310286321, -0.0372343585, 0.00189453666, 0.00293213944, -0.0392233729, 0.0128689259, -0.00904338714, -0.018975202, 0.0316120759, 0.00548636587, 0.0195851661, -0.00241996814, 0.0186569598, 0.0564880222, -0.0133794397, 0.000919919345, -0.0223167464, 0.0249289852, 0.0418488719, 0.00572504755, 0.0105152586, 0.00283268862, 0.00405427534, -0.0249289852, 0.023496896, 0.0480546, 0.0295965411, 0.0301269442, -0.0480811186, -0.0118810488, -0.0419549532, -0.0227675904, 0.0258439332, 0.0269047413, 0.0273688436, 0.0254726503, 0.0161640607, -0.00838038232, -0.000767842575, 0.0120202797, -0.0267986599, -0.0135650812, -0.0091494685, -0.00633169711, 0.0644971207, 0.0324342027, -0.0297556613, -0.00274152542, -0.00273655285, 0.000471562264, 0.03742, -0.00121992908, 0.0068819914, 0.0216670018, -0.0242659803, 0.0266660582, 0.00598361949, -0.00141385803, -0.00949423108, 0.0222637057, -0.0156469159, -0.00235532504, -0.00650076335, -0.024173161, -0.0109661017, 0.00857265387, 0.0184580572, -0.0410002246, 0.0373139195, -0.0105484091, -0.0310816728, -0.00952738151, -0.0235366747, 0.0114500951, 0.03086951, 0.0106478594, -0.00171718281, 0.00772400759, -0.0580261946, 0.0202216506, -0.0250085462, 0.00649413327, 0.0587157197, 0.00335646258, 0.00263378723, 0.00763781695, -0.0133065097, 0.0205001123, 0.0101373456, -0.0299413037, 0.0325137638, 0.0229267105, 0.0166812036, -0.0193597451, -0.0253930893, 0.00631843694, 0.0179409143, -0.0639136732, 0.0204868522, 0.00879144575, 0.0277666468, -0.00431947736, -0.00441229809, -0.00665988447, 0.0111782635, 0.00124727807, -0.0189486817, -0.00211332832, -0.0346088596, 0.00417693099, -0.0123252617, 0.00837375224, -0.00343105057, 0.0196382068, -0.0839099064, 0.016866846, -0.00724664424, -0.0480811186, 0.0430157594, 0.026427377, -0.066035293, -0.0107672, -0.0191873629, 0.0260693543, 0.00934174, 0.0266395379, 0.00772400759, 0.0117550781, -0.0217200425, 0.0312938318, 0.0417693108, 0.00571841747, 0.0215476602, -0.0472855121, 0.0137109421, 0.0502557755, -0.00792953931, 0.0143474266, 0.000411477435, -0.0178746134, -0.0517939478, -0.00561565207, -0.0193730053, -0.0287213735, 0.00879144575, 0.0063781077, -0.0201818701, -0.0111252228, 0.00366973248, -0.00598361949, -0.0155010559, 0.0507596582, 0.014228086, 0.039302934, 0.000913289317, 0.0193332247, 0.0492745265, 0.00573830772, -0.00555929635, -0.0316120759, 0.0286948532, 0.000427638181, 0.038162563, 0.0372078381, 0.0263610762, 0.0175961517, -0.0469407514, -0.0204338133, 0.0237886179, -0.0337867327, -0.0220382847, 0.028005328, 0.0319038, 0.0462777466, 0.0400189795, -0.00601345487, -0.0208979156, 0.0338928141, -0.0125042731, 0.0438378863, -0.011072183, -0.00835386198, 0.0215078797, 0.0106080789, 0.0694298744, -0.0220515449, 0.0109661017, 0.019571906, 0.0198105872, 0.0204603318, -0.0168933664, 0.00359348673, -0.01871, -0.00214150595, -0.00627534185, 0.0208581351, 0.0681038648, -0.00169563515, -0.0176757127, -0.0101439757, 0.0438644066, 0.0228604097, -0.0240405593, -0.0461451449, -0.0226217285, 0.00199895981, 0.00494601671, 0.0213355, -0.0259897932, -0.00635490241, -0.00724664424, -0.00932848, -0.0361470282, 0.0355635844, 0.0407085046, 0.00409405539, -0.00414046599, -0.00047777794, 0.0108533911, -0.00556261139, -0.0387725309, 0.0241201203, 0.0234703757, 0.0251809284, 0.00845331326, -0.033813253, 0.021229418, 0.000431367604, -0.0137109421, 0.0373669602, -0.00636153249, 0.0236825366, -0.0146126291, -0.0196249466, 0.00277136057, -0.0292782988, -0.00765107712, -0.0151032526, 0.0358287878, -0.00269843, 0.000918261823, 0.00853950344, 0.0137374625, -0.0314264335, 0.000699884607, -0.028005328, -0.0373139195, 0.00546316057, -0.0659822524, -0.0184050165, 0.0185906589, -0.0032338067, 0.0392498933, 0.0069416617, 0.0266527981, -0.0582383536, 0.00269014249, -0.00579797802, -0.036518313, 0.0130413072, -0.0338662937, -0.0360674672, -0.00143954949, 0.0550559312, -0.0289600566, 0.0262284763, -0.0448191352, 0.00630849227, -0.0149706518, 0.0283766109, -0.0508657396, 0.0257776324, 0.00492281187, 0.0119937593, 0.00655048899, -0.0278992485, 0.0614738204, -0.00417361595, -0.0334684886, 0.00341116055, -0.0308164693, 0.0267854, -0.0252472274, -0.0192404035, 0.00694829179, -0.00969313271, -0.0228073709, -0.0118677886, 0.0249289852, -0.0023188598, 0.0197840668, -0.0124578625, -0.00803562, -0.0078433482, -0.02559199, -0.024915725, -0.0315590352, 0.0101771262, -0.00350398105, -0.0225023869, 0.0101572359, 0.00235864, 0.00969313271, 0.0147187095, -0.0145065486, 0.00959368143, 0.0172381289, 0.0559045784, 0.0430688, -0.0108136106, 0.039594654, -0.00427969685, -0.014983912, 0.0472059511, -0.013478891, -0.00487308623, -0.0447395742, -0.0143739469, 0.0672021806, 0.0134258503, 0.0154745355, 0.00840690266, 0.0245709624, -0.0209376961, 0.00447859848, 0.0573366694, 0.0476567969, 0.0257245917, -0.0337071717, -0.0206724945, -0.01475849, -0.000146171878, -0.0112578236, -0.00838038232, -0.045402579, 0.0118611585, 0.0101373456, 0.0200227499, 0.0137639828, 0.0359348692, -0.0170392264, -0.04683467, -0.0115628066, -0.00485319598, -0.0113837952, -0.0129816364, 0.00562228216, 0.033733692, 0.0112976041, -0.0121064708, -0.0218128618, 0.0215609204, 0.012948487, -0.0204868522, 0.0166149046, -0.0145728486, -0.0113970554, 0.00652065361, -0.00621567154, 0.0066333646, -0.0283235721, -0.0239344779, 0.0151828136, 0.0533055961, -0.0106544895, 0.00782345794, 0.00838701241, -0.0221974049, 0.00548305083, 0.0192138832, 0.0303125866, 0.0135650812, 0.0571245067, 2.98093237e-05, 0.0217333026, -0.0158458184, 0.0539951213, -0.0041935062, -0.0144269876, 0.0236560162, -0.00388520909, -0.0113572748, -0.0287478939, 0.00612616586, 0.00652728369, 0.0127296951, -0.0286683347, -0.000984562328, 0.0277136061, -0.0246637836, -0.0184845775, 0.0183121972, -0.0231653936, 0.0473385528, -0.0101174554, -0.0261223949, -0.0142413462, 0.00926217902, -0.00410068547, -0.00979921315, -0.00281611341, 0.00365315727, -0.0164823029, -0.0106345993, -0.00849309377, -0.0391703323, -0.0417693108, 0.0141220056, 0.0265599787, 0.0096533522, 0.0419549532, -0.0333624072, -0.00854613353, 0.00658032391, 0.0428036, 0.0278196875, -0.00573830772, -0.0164425224, -0.0115694366, 0.0329115652, -0.00987877324, 0.0124446033, 0.0159386396, 0.0026918, -0.00419019116, 0.0307634287, -0.020473592, -0.0381890833, -0.0333358869, -0.00722675398, -0.00948097091, 0.00262881466, -0.0237355772, -0.00505209761, 0.0146921892, 0.0102832066, -0.00452169357, -0.00284594879, 0.0161640607, 0.0270903818, 0.00969313271, -0.00358685665, 0.00275644311, -0.00201553502, 0.00583444349, -0.0221311059, -0.027183203, -0.0254991706, -0.0256848112, -0.0174370296, -0.00376918307, -0.0307103898, 0.036518313, 0.00680243084, 0.0209642164, 0.012643504, 0.02559199, 0.0421936363, -0.00458136434, 0.00491949683, 0.0030531378, 0.0178613532, 0.0173309501, -0.00561565207, -0.0224626083, 0.00897708721, 0.059087, -0.00946771074, -0.0124644926, 0.0248759463, 0.00401449483, -0.0378178023, 0.00852624327, 0.0278727282, -0.00371614262, -0.00508524803, -0.0119340895, -0.0119407186, -0.0280583687, 0.0231256131, 0.0290926564, 0.00712730316, 0.00517806876, 0.0209376961, 0.0160447191, 0.00663004955, -0.00181829103, -0.0107672, 0.0188293401, -0.0213355, 0.00332165486, 0.00826104172, 0.0298087019, 0.00943456, 0.0400985405, 0.0209111758, -0.0413715094, -0.000552780402, 0.00627865689, 0.00804888, -0.0378973633, -0.0236294959, 0.0329646058, -0.0188558605, -0.0227012895, -0.00950086117, -0.0279257689, 0.0272627641, 0.0129882665, -0.0135385608, 0.0219322033, 0.00269677257, 0.0299943443, 0.0120003894, 0.00973291229, -0.00916935876, -0.0361735485, -0.0225686878, 0.0137109421, -0.0192536637, 0.0040045497, -0.0207653157, 0.00692840153, 0.0150899924, 0.00574825285, 0.0066333646, 0.00787649862, 0.0419814736, 0.00631180685, 0.0591400415, 0.0277401265, 0.0235764552, -0.0339193344, 0.0303921476, -0.000701956509, 0.0146391494, 0.0092290286, -0.0193597451, -0.00682895072, -0.0372608788, 0.00246472098, 0.0254991706, 0.00357691175, 0.0128556658, -0.00131772237, 0.019571906, -0.00929532945, -0.00469407486, -0.0245974828, 0.00842016283, -0.033733692, -0.0113108642, 0.037950404, 0.0184845775, 0.00601014, -0.00533056, 0.0323281214, 0.0474976748, -0.0102036465, 0.0120335398, 0.022661509, -0.0356696658, 0.0186569598, -3.53775285e-05, 0.00829419214, -0.0223565269, -0.0108202407, -0.00258903438, 0.0202481709, 0.0229399707, 0.0074455454, 0.0214150604, 0.00516149355, -0.00141551555, 0.0111782635, -0.0109992521, -0.0531995185, 0.00239676284, 0.00741239544, 0.0152756339, 0.00965998229, 0.00747206574, 0.0295169801, 0.030047385, -0.011290974, -0.0306043085, -0.00655048899, -0.0268119201, -0.00745217549, 0.0266130194, -0.0145595884, -0.0174900703, -0.000896714162, -0.00395150948, -0.00731294462, 0.0122258114, -0.00161027326, 0.0304451864, -0.0174900703, -0.0378973633, 0.00506867282, -0.00560570695, -0.00916272867, 0.0468611903, -0.0172248688, -0.00832734257, -0.0240538195, -0.0216670018, -0.0236560162, 0.0200625304, -0.00202050759, 0.0187763, -0.024995286, 0.00288075651, 0.0103760278, -0.0175165907, 0.0257245917, -0.00508193299, 0.0329380855, -0.00883122627, -0.00203376776, 0.0458534211, 0.0191608425, -0.0169861875, -0.0410797857, 0.0115031358, 0.00264041731, 0.016336441, 0.00250118622, 0.0141087454, -0.0319038, 0.0246240031, -0.0320894383, 0.0373669602, -0.00899697747, -0.0125109032, 0.0162303615, -0.00317247864, -0.00905001722, -0.0291722175, -0.000432610716, -0.0211631171, 0.0372874, -0.0407615453, -0.0135650812, -0.00117849128, 0.0241996814, 0.0443417691, 0.024173161, 0.0237488374, -0.007491956, 0.005118398, -0.0251676682, -0.000542835274, -0.0118014878, -0.000475291657, -0.0258306731, -0.023337774, 0.0187630393, 0.0128556658, -0.0082676718, -0.00210835575, 0.0225952081, -0.000392416056, 0.0147982705, 0.009487601, -0.00841353275, -0.00240670796, 0.0170657467, 0.036677435, -0.0152225932, -0.0306308288, 0.0352983847, -0.010389288, 0.00121081283, -0.0214813594, 0.00731957471, 0.00799583923, 0.0413449891, 0.0135054104, -0.00814170111, -0.00592726422, 0.0246637836, 0.00495264679, 0.00325369672, -0.00942793, 0.00188624905, 0.0279788096, 0.016031459, -0.014228086, 0.00963346194, -0.0085593937, 0.0211631171, 0.0224626083, 0.0293048192, -0.00970639195, -0.00772400759, -0.03222204, -0.00875166524, -0.0136711616, -0.0156601761, -0.0320894383, -0.0268649608, 0.00469407486, 0.00334486, -0.0125506837, -0.00115445734, -0.00355370645, 0.00972628221, 0.0279257689, 0.00173873047, -0.0129882665, 0.0153949745, 0.0157397371, -0.0246107429, 0.0248759463, 0.00209012302, 0.00300672743, 0.0328320041, 0.00205034274, -0.0240405593, 0.000872680277, -0.035086222, 0.00961357169, -0.00702785235, 0.00199067243, 0.0175298508, 0.029888263, 0.000886769092, -0.00501231756, 0.0136048617, 0.0226880293, -0.0287478939, 0.00859917421, -0.0148380511, 0.0242527202, 0.00701459218, -0.00336143514, 0.0251013674, -0.0169596672, 0.033813253, 0.00714719342, 0.000323214917, 0.0114302048, -0.00991855375, 0.0183652379, 0.00330507965, 0.00370619772, 0.00266030733, -0.0282440111, -0.0290926564, -0.0109661017, 0.0213222392, 0.0263743363, 0.00206691795, -0.0161375403, 0.00669635, -0.0186967403, 0.0108003505, 0.0133860698, -0.0115893269, 0.00324375159, -0.0164292622, 0.0263345558, 0.0223034862, -0.0291456971, -0.0403107, -0.0179939549, -0.0069880723, -0.0163629614, 0.0373934805, 0.00449848874, -0.00999148469, 0.00748532591, -0.0172248688, 0.0440235287, -0.0355901048, -0.0415041111, 0.0218526423, -0.00706100278, 0.00179674337, -0.011967239, 0.0341845341, -0.0409206636, -0.000825441151, 0.0301799849, -0.00735272467, -0.0410002246, 0.00700796209, -0.00521453377, 0.00450180378, -0.0286683347, 0.0072797942, -0.00975943264, 0.00525099924, -0.0373934805, 0.0190812815, 0.020553153, 0.0120932106, -0.0172911696, 0.00603003, 0.0113904253, 0.0101041952, 0.00979921315, 0.0236560162, -0.0339458548, -0.0130943479, 0.0139231039, -0.00154065771, -0.0151165128, -0.0103627676, 0.0103693977, 0.0387725309, 0.00844005309, -0.0159253795, -0.00467418507, -0.0215609204, 0.0398598574, -0.0162568819, 0.0275014453, 0.00334983249, -0.01731769, 0.0380034447, -0.011748448, -0.0144402478, -0.0313468724, 0.0262549967, -3.66983586e-05, -0.0139761446, -0.0150104323, 0.0280318484, 0.00595378457, -0.0442622118, -0.0136048617, -0.0220780652, 0.0121329902, -0.0471529104, 0.0261754356, -0.0270108208, 0.0229664911, 0.00937489, 0.00363658206, 0.0405228622, -0.020553153, 0.00820800103, -0.022581948, -0.0186171792, 0.0188558605, -0.00669966498, 0.00107075297, 0.0139231039, -0.0360674672, 0.0108003505, 0.0216404814, 0.0266395379, -0.0104953684, -0.00457141921, -0.00430621719, -0.00173210038, -0.0131672779, 0.0166281648, 0.0138568031, 0.0443152487, 0.0214548409, 0.00517475372, -0.00417361595, 0.0331767686, -0.00896382704, 0.0190812815, 0.00436257245, 0.0172116086, -0.0259234942, -0.00428301189, 0.0248892065, -0.00244814577, -0.0130678276, 4.88448168e-05, -0.0201686099, -0.00128208578, 0.00954064075, 0.0287213735, -0.0333093703, -0.0160845, 0.0149441315, 0.0353249051, 0.00720686372, 0.037870843, -0.0124910129, -0.0042995871, 0.00299180974, -0.0273423232, -0.0101108253, -0.00289898901, 0.0199431889, 0.0178215727, 0.0294639394, -0.00412057573, 0.0466490276, 0.013777243, -0.0202879515, -0.00964009203, 0.0163762216, 0.00036672462, 0.0244383626, -0.00347746094, 0.0272892844, 0.00693503162, 0.0103760278, 0.0211763773, 0.0179143939, 0.0115561765, -0.000387857901, 0.00919587817, -0.0442887321, 0.00293876952, 0.0171983484, -0.019054763, -0.0268251803, 0.0096533522, -0.00210504071, -0.0101240855, 0.00861243438, -0.0205398928, 0.0238946974, -0.00325866928, -0.0100047449, -0.0110920724, -0.0415571518, -0.000692840142, -0.00380233326, 0.0140159242, 0.00291722175, -0.00944119, -0.0016218758, -0.0105749285, -0.00054987974, 0.00778367789, 0.00940141, -0.00758477673, -0.0058941138, 0.00552614639, -0.0126302438, -0.00630849227, -0.0165220834, 0.0158590786, -0.0092290286, -0.0110788122, -0.0465429462, -0.00426643668, 0.0257908925, 0.00790301897, -0.0275279656, -0.020327732, -0.00370288268, 0.00884448644, 0.0145065486, 0.00979921315, 0.00743891532, 0.00258074678, 0.0210968181, 0.00558913173, 0.00646098331, 0.00528083462, 0.0179541744, 0.000714802183, 0.00357691175, 0.00905001722, 0.0171718281, -0.0041935062, -0.0281909704, 0.0213752799, 0.018444797, -0.0066930349, 0.000886769092, -0.0104754781, 0.00622893125, -0.00973291229, -0.011821378, -0.00753173605, -0.0222504456, -0.0229664911, 0.0150899924, 0.0195188653, 0.0217067823, 0.0208316147, -0.0498844907, -0.00830082223, 0.0495662503, -0.0073262048, -0.00598361949, 0.00882459618, -0.0163629614, -0.0362531096, -0.010462218, 0.0430422798, 0.0133728096, -0.00506535778, 0.000768256956, 0.00757814664, -0.00801572949, -0.0062123565, 0.00281114108, -0.0241864212, -0.00328684691, 0.00846657343, -0.0121794008, -0.0131341284, -0.00691514136, 0.0121860309, -0.0166546851, 0.0311877523, 0.00301998761, 0.00957379118, -0.0210968181, -0.00235366751, -0.018895641, 0.0129285967, 0.00346420077, 0.0270638615, 0.0137639828, 0.0203940328, -0.00603334513, 0.0216802619, -0.0282705314, 0.00733283488, -0.00842679292, -0.0041570412, -0.00945445057, 0.00589079875, 0.00438246271, 0.0107141603, -0.0234040748, -0.0189619418, -0.0110655529, -0.00560570695, -0.0325933248, 0.0194790848, -0.00798258, -0.000177353824, -0.0104091773, 0.00562228216, -0.00453495374, -3.42897874e-05, -0.0236294959, -0.00700133201, 0.0153154144, -0.0139894048, -0.0165486038, -0.0091494685, -0.00910305791, -0.0226747692, 0.0188293401, -0.00814170111, -0.0221708845, 0.0267588794, -0.0444743708, 0.0139894048, 0.0239212178, -0.00227079191, 0.00638473779, 0.00130943477, -0.00687536132, -0.0043227924, -0.00343105057, 0.00295368698, 0.00200393237, -0.00181000354, -0.0179939549, -0.0120070195, -0.0197177678, -0.000545321556, -0.0118346382, 0.00536039518, 0.00980584323, -3.78638e-05, 0.0334419683, 0.0136711616, -0.0096533522, -0.0344497375, -0.0214283206, 0.0109727317, 0.0176889729, -0.00674607512, 0.0136048617, 0.00171552529, 0.0107274204, -0.021759823, 0.0153684551, 0.0110125123, 0.00998485461, 0.00102185633, -0.0116025861, -0.0190812815, 0.0230195317, -0.00433273753, -0.0178215727, 0.0183121972, 0.0179541744, -0.0108003505, -0.00451506348, 0.0237090569, -0.0226880293, 0.0171850882, -0.00483662123, -0.00468744477, -0.0122324415, -0.00593720935, -0.0141352657, -0.00979921315, -0.0178746134, 0.0162436217, 0.0234305952, -0.000761626929, 0.00947434083, 0.0164955631, -0.00918261893, 0.00311612315, -0.0251146276, 0.0291722175, -0.0245577041, 0.00396476965, -0.0358818285, 0.0098191034, -0.038242124, 0.0116357366, 0.0111650033, 0.0341580138, -0.0126766544, -0.00380233326, 0.0211233385, 0.0191343222, -0.0112710837, 0.0174105093, 0.00485651102, -0.00294042705, -0.00318408129, -0.0260428339, -0.0251809284, 0.0151297729, 0.00609964551, -0.00626871176, 0.0228471495, -0.022581948, 0.00250284374, -0.024690304, 0.00588748371, 0.00126965449, 0.00351392617, 0.00534382, -0.0188293401, -0.00031513453, 0.000333574368, -0.0141485259, -0.00620241137, 0.00663667964, 0.0100644147, 0.00149341859, 0.0182458963, 0.00209343806, -0.00981247332, -0.00996496435, 0.000380399084, 0.0142943868, 0.00950749125, -0.00777704781, -0.0103296172, 0.00805551, -0.017768532, 0.00491618179, -0.0100644147, 0.0111318529, 0.0131871682, -0.0269843, -0.00586427888, -0.0137109421, 0.0146524096, -0.000635656, 0.00360011682, 0.0151430331, 0.0308960304, -0.0113506448, 0.022661509, 0.00260892441, 0.00699470239, -0.00635821745, -0.0149706518, 0.0196382068, -0.0244648829, 0.0235234164, 0.00980584323, 0.0154877957, 0.0047438005, 0.0081483312, 0.00682895072, 0.037870843, -0.00424654689, -0.00774389785, 0.0118478984, -0.00773063768, -0.0241864212, 0.00165171106, 0.000644357933, -0.00389515399, 0.0245179236, -0.0208316147, -0.0179674346, 0.0128821861, 0.00600350974, -0.00599024957, -0.0277136061, 0.00534713501, 0.0159916785, -0.00121081283, 0.0125639439, -0.019797327, -0.0151430331, 0.013326399, -0.0201951303, 0.0277401265, 0.00557587156, 0.0279788096, -0.000940638245, 0.0259102341, -0.00257411669, -0.0037227727, -0.00652065361, 0.000971302274, -0.0115893269, 0.0151430331, 0.0137242023, 0.0214415807, 0.0118081179, -0.000189474376, 0.0456412621, -0.000573084923, -0.00531398458, 0.0171585679, -0.00115694362, 0.00042680942, 0.00997159444, -0.0179806948, 0.0298617426, -0.00552614639, -0.0335480496, -0.0218659025, 0.00973291229, -0.0268649608, 0.00600682478, -0.00726653403, -0.00671292515, -0.0357757472, -0.0267588794, 0.00423328672, -0.021759823, 0.0125506837, -0.0129418569, -0.0246505234, 0.0053836, -0.00381890847, 0.0384277664, -0.013777243, 0.0197708067, -0.0319038, 0.0420079939, 0.0221045855, -0.00634827232, -0.0156601761, -0.025671551, -0.0246372633, 0.00947434083, -0.00783008803, -0.0204470716, 0.0103760278, -0.0081019206, 0.0085129831, 0.0272627641, 0.010163866, 0.0146126291, 0.0154082347, -0.0124048227, -0.00116606, 0.000576399907, 0.0386929698, 0.0112511935, -0.00820137095, 0.0022857096, 0.00078358897, -0.0136446422, -0.000303117587, 0.00397471478, -0.00196415209, 0.00828756206, 0.0108533911, 0.00233377749, -0.0260693543, 0.00432942249, -0.0195851661, -0.00619909633, -0.00754499622, -0.00298020733, -0.000785660872, 0.00145032327, -0.0270506013, 0.000425980688, 8.04929441e-05, 0.0253798291, -0.0369691551, -0.0106412293, -0.0325402841, -0.0227145497, 0.00619246624, 0.0441296101, -0.0138568031, 0.0158325583, 0.004932757, 0.00347414589, -0.0105749285, 0.0144932885, 0.0124048227, -0.0310551524, 0.000123588266, 0.0127562154, 0.00747206574, -0.014904351, -0.0148513112, -0.00202548015, 0.00873177499, -0.0120070195, 0.0145463282, -0.00931522, -0.0102235358, 0.0197575465, 0.00885774568, 0.00483993627, -0.0179806948, -0.0240670796, -0.0133529194, 0.00469739, 0.0268517, 0.0252604876, -0.00332662743, 0.00147601473, 0.0427770801, -0.00162850588, -0.000880967826, -0.00161607459, -0.00354376133, -0.00527088949, 0.0191343222, -0.0125109032, 0.0170392264, -0.021905683, -0.0245709624, -0.0186437, 0.00580129307, 0.000224385731, -0.00429627206, -0.00719360355, 0.0193862654, 0.00272329291, 0.00186304387, 0.0214681011, 0.0159386396, -0.00162850588, 0.000354086078, 0.00204205513, 0.00910968799, -0.0122125512, 0.00654385891, 0.0113174943, -0.0107870903, 0.0317181572, -0.00974617247, -0.0197442882, 0.00575156789, -0.0016716012, 0.040735025, 0.0420345142, 0.00889752619, -0.00700133201, -0.0202083904, -0.0105682984, 0.00971965212, -0.0137109421, -0.00244483072, -0.0119871292, -0.0141220056, 0.0128158852, 0.0215609204, -0.00493607204, 0.00838038232, 0.021759823, -0.00646429835, -0.0173839889, -0.022820631, -0.0075980369, 0.00792290922, -0.0154745355, 0.00956716109, 0.0135584511, -0.00720023364, 0.015209333, 0.0110058822, -0.00344431074, 0.0138170235, -0.00660021417, -0.0183254573, -0.00340784551, -0.0082676718, -0.0236294959, 0.00367304729, -0.00781682786, -0.00145115203, 0.0133661795, -0.00932185, 0.00940804, 0.0319833569, 0.0157529972, 0.000164300916, 0.00445870822, -0.00320562883, 0.00180005841, -0.00172381289, -0.0169198867, 0.0146789299, 0.00244151568, 0.0312407929, -0.00824778154, 0.00978595298, 0.0213620197, -0.00111550582, 0.0132070584, -0.0109329512, 0.0243455414, 0.00809529051, -0.000875995262, -0.0057084728, -0.0216139611, -0.0232184324, -0.0299147833, 0.0033166823, 0.0108069805, 0.00919587817, -0.0028724689, -0.0103627676, 0.0112114139, 0.0138170235, 0.0263080355, -0.00675602024, -0.0062720268, 0.0136711616, 0.0284031313, 0.0131805381, -0.00492612692, -0.00107075297, -0.000111778492, -0.0061294809, -0.00179674337, -0.0195188653, -0.00628860202, 0.0029139067, 0.0171983484, 0.01339933, -0.00755825639, 0.0123517821, -0.0184182767, -0.0138833234, -0.00749858608, 0.0212957188, 0.0180735141, 0.00112793711, 0.00958705135, 0.0262417365, 0.00940804, 0.00288075651, -0.00354044652, -0.0112710837, 0.0252207089, 0.0265201982, 0.0102566862, 0.00443218788, 0.00125142187, -0.0109064309, 0.00708752265, 0.0229664911, -0.0180337336, -0.0214813594, 0.0122788521, 0.0110456627, 0.0129219666, -0.0195056051, 0.0021299033, -0.0130015267, -0.0055195163, 0.000144928737, -0.0143872071, 0.0273423232, -0.00213984842, -0.0306573492, -0.00307965791, 0.0302065052, 0.0135385608, -0.00673281541, -0.0222902261, -0.0132733593, 0.00550294109, 0.0194790848, 0.0108335009, 0.0031691636, 0.0309225507, -0.0178215727, -0.00312606827, 0.0146921892, -0.0254196096, -0.0246770438, 0.00573830772, -0.0205266327, 0.0117683373, 0.0295435, -0.00357691175, 0.00748532591, -0.0133728096, -0.0301004238, 0.0110655529, -0.0114500951, 0.0163894817, 0.0142413462, -0.014453508, 0.0278727282, -0.0256052501, 0.00232217484, 0.00177353818, 0.00603334513, -0.0164557826, 0.014983912, 0.00912957825, -0.021905683, 0.00310617825, 0.0011428548, -0.0140424445, 0.0263080355, 0.00457141921, -0.000876824, -0.0131142382, 0.00322220405, -0.00811518077, 0.0187630393, -0.00425317651, -0.000845331291, 0.00820137095, 0.00936825946, 0.00803562, 0.0102964668, -0.000872680277, 0.0274749249, -0.00322386157, -0.00873840507, 0.010163866, -0.0108003505, 0.00779030798, 0.0010143976, 0.0163629614, 0.00532061467, -0.00212824577, 0.0120998407, -0.00500900252, -0.023563195, 0.0175696313, 0.00140474178, -0.0178348329, 0.0168801062, -0.0128158852, 0.0228338912, 0.00180171593, -0.000449185842, -0.00904338714, 0.00191276928, 0.00895056687, -0.00065057358, -0.00799583923, -0.00621898659, -0.00802899, -0.0164425224, -0.00921576843, 0.0286948532, 0.00334651745, 0.0149706518, -0.0152623737, 0.0012215866, 0.00845331326, 0.00725327432, -0.0140159242, 0.0110125123, 0.0116954073, 0.0311347116, -0.012875556, 0.0144402478, 0.016787285, -0.028535733, 0.00252439128, 0.00412720582, 0.00988540333, 0.00984562375, 0.0244118422, -0.00993844401, -0.00188624905, 0.0296495818, 0.011821378, 0.0253798291, -0.00746543566, 0.0276870858, 0.00734609459, 0.0130413072, 0.00173873047, 0.0105682984, -0.0102036465, -0.000621152751, -0.0189486817, -0.0128291454, -0.0299413037, 0.00464766473, 0.0195851661, 0.0158060379, 0.00427969685, 0.006059865, -0.00199895981, -0.0189354215, 0.00492281187, 0.00464103464, -0.0211896375, -0.00171221024, 0.00837375224, 0.0211100783, -0.00753173605, -0.0007736439, 0.00112793711, 0.00148678862, 0.00838038232, 0.0250881072, -0.00296363211, 0.00937489, 0.00304485019, -0.026506938, 0.0151960738, 0.0258704536, -0.0141750453, 0.0138700632, 0.013173908, 0.014082225, 0.0022359842, 0.0188823808, 0.00912294816, -0.00362995197, 0.000778616406, 0.0114699854, -0.0247168243, -0.00605323538, 0.0215078797, 0.0266262777, -0.0118014878, 0.0144932885, 0.00734609459, 0.0261754356, 0.0372874, 0.0164425224, 0.0214813594, 0.00181000354, -0.0222902261, 0.00638473779, -0.0136446422, 0.00422334159, 0.00863232464, -0.0193995256, 0.021308979, -0.017622672, -0.00875166524, -0.0185110979, 0.00871188473, 0.0154745355, 0.0202216506, 0.00121412775, 0.00588416867, -0.000762041309, 0.0104953684, 0.0107539399, -0.0102633163, 0.00580460811, 0.0203675125, 0.00235201, -0.0519265458, 0.0287744142, -0.0188160799, 0.0243057609, 0.0247035641, 0.0122059211, 0.0161242802, 0.000775301422, -0.00574825285, -0.0180469938, -0.0190415028, 0.0123915626, -0.0145595884, -0.0118014878, -0.000697812706, 0.0292782988, -0.0275279656, 0.00605655, 0.0155540956, 0.00361669203, -0.00920913834, -0.00909642782, -0.0151828136, -0.0122987414, 0.0244118422, 0.0110788122, 0.0158060379, -0.0202349108, 0.00291556423, 0.026427377, 0.0196779873, -0.000866050192, -1.49953075e-05, 0.000287992763, -0.00390178408, 0.00928869937, 0.00551288622, -0.00710078282, 0.0105285188, 0.0167607646, -1.52801913e-05, -0.0058112382, 0.0179806948, -0.0168535858, 0.0237355772, -0.0169729274, -0.00771074742, -0.00515486347, -0.00956053101, -0.020632714, 0.00408411026, -0.0149706518, 0.0183917563, 0.000850303855, 0.00157380803, 0.0146258892, 0.00182326359, -0.0166149046, 0.0129816364, -0.0181795955, -0.00836712215, -0.0323016, 0.0233510341, 0.0152623737, 0.0107605699, 0.00854613353, -0.014002664, -0.00570515776, 0.0151297729, -0.00285920873, -0.0134391105, 0.0174105093, 0.0281379297, 0.0203144718, 0.00104837655, -0.0195453856, -0.00928869937, -0.00372940279, 0.0230062716, 0.00430953223, -0.0122457016, 0.0243853219, -0.00818811078, -0.0239079576, 0.0343966968, -0.00987877324, 0.0121661406, -0.0215609204, -0.00708752265, -0.00854613353, 0.00212824577, 0.0174502898, -0.0120401699, 0.0143606868, 0.00286749634, 0.00241002301, 0.00693503162, -0.0087251449, 0.00553940609, -0.0138435429, 0.00326861441, -0.0016425947, 0.000736764225, -0.00668972, -0.0167607646, 0.0187232587, 0.00933511, 0.000395109499, 0.00554603618, -0.0208050944, 0.0142546063, 0.0106544895, 0.0378178023, -0.0180602539, 0.0132004283, -0.0277136061, -0.00451506348, -0.00497585209, 0.0193862654, -0.0215211399, 0.00767096737, 0.00301833, -0.00844005309, 0.0123318918, 0.0038885239, 0.0088179661, -0.0149706518, -0.00474711554, 0.017012706, -0.0238946974, -0.00222603907, 0.00981247332, 0.000897542923, -0.0100312652, 0.00444213301, 0.015885599, 0.00096632971, 0.0133728096, -0.00317247864, 0.0253002681, -0.010462218, -0.000112607246, -0.0203409921, 0.00153734267, 0.0164823029, -0.03086951, 0.00344431074, -0.014983912, 0.00658032391, -0.0134125901, 0.0305247474, -0.00223764172, 0.0145595884, 0.000761626929, -0.00123484666, -0.00856602378, 0.00771737751, 0.00903012697, 0.0329911262, -0.0074455454, -0.000758311886, 0.0191608425, 0.00754499622, -0.000839944405, -0.00435594236, 0.00773063768, -0.00245311833, -0.0201951303, 0.0103959171, 0.0232714731, -0.00331833982, -0.00606318, 0.00663667964, -0.0326728821, 0.00690188166, -0.00735272467, 0.00895056687, -0.00563222682, -0.0297821816, -0.0316916369, -0.0208183546, -0.00907653756, 0.0114169456, -0.00442887284, -0.00895719696, 0.0131407576, 0.0297026224, 0.0177287515, -0.000908316753, 0.0213355, 0.00350398105, -0.00739913527, 0.0152358534, 0.0173442103, 0.00308628799, 0.0222902261, -0.0211896375, 0.0282970518, -0.00793616939, -0.0242792405, -0.0207387954, -0.00189287914, -0.01746355, 0.00766433729, 0.0147187095, 0.0130943479, 0.0236560162, 0.00118180632, -0.0175165907, 0.0169198867, 0.0102832066, -0.0139363641, -0.0021945464, -0.00542669557, 0.0259234942, -0.00562891178, 0.00285589369, -0.00119506638, -0.00422334159, 0.0172381289, -0.022820631, -0.0105019985, -0.0129750064, -0.00452500861, -0.0152491136, 0.00857928395, 0.0222504456, 0.0144004673, 0.000490623643, 0.000918261823, -0.0168535858, 0.00269345753, -0.019956449, 0.0215078797, -0.0186437, -0.00977932289, 0.00589079875, 0.020327732, -0.0159916785, 0.000750024337, 0.0025177612, 0.00122904545, 0.00892404653, -0.00965998229, 0.00346088572, 0.00640462758, -0.00923565868, 0.00119921018, 0.00753173605, -0.00408079522, -0.00311446562, 0.00268019759, -0.011967239, -0.0151297729, -0.00625876663, -0.016190581, 0.0138965836, -0.0088908961, -0.00583775854, 0.036518313, -0.0158325583, 0.0254859105, -0.00965998229, -0.0312142726, 0.00326861441, 0.0126567641, -0.00552614639, 0.0139761446, -0.0122258114, -0.00390841393, -0.0021381909, -0.0142148258, 0.0298087019, -0.00741902553, 0.0195321254, 0.0183519777, 0.00472391024, -0.0227808505, -0.00413715094, -0.0110920724, -0.028535733, 0.00202548015, 0.0085129831, -0.00923565868, 0.00284263375, -0.000780273927, 0.012345152, 0.00588748371, 0.00855276361, -0.009487601, 0.0124644926, -0.00709415274, 0.000924891909, -0.0274749249, 0.0153551949, -0.0124777528, 0.0262549967, 0.0149706518, 0.0129285967, -0.00971965212, 0.0121661406, 0.00667645968, -0.00332662743, 0.0214681011, -0.00190613919, 0.00380896335, -0.00420676637, -0.00177685323, -0.0144932885, 0.000565626076, -0.000244483061, -0.00450511882, -0.0154877957, -0.00641125767, 0.0132335788, 0.0154745355, 0.0146524096, -0.0202216506, -0.0152491136, -0.0102898367, 0.0109528415, 0.00837375224, 0.0128556658, -0.00696155196, 0.0210968181, -0.000344762579, -0.00678917067, -0.0241201203, 0.0020884655, -0.0221576244, -0.00619246624, -0.0153286746, -0.0184050165, 0.0161242802, 0.0040741656, 0.00897708721, 0.0143341674, 0.0282174908, -0.012948487, -0.00425649155, -0.00689525157, 0.0262682568, -0.0115628066, 0.00441229809, -0.00337801012, -0.0195851661, 0.00281777093, -0.00586096384, 0.00593057927, 0.0113970554, -0.00280451099, -0.010316357, 0.0173442103, 0.00969313271, -0.0144932885, -0.00570515776, 0.0259765331, -0.0136579014, -0.00563222682, 0.00943456, -0.0261091348, 0.0096533522, -0.0350331813, -0.00196912466, 0.0131341284, -0.0269445218, -0.00496922201, 0.0119473487, 0.0150899924, 0.00786986854, 0.00196580961, 0.0219322033, -0.0125705739, 0.00709415274, -0.00832071248, -0.0101704961, 0.0193995256, 0.0219189432, 0.010468848, 0.00403438509, 0.0122854812, -0.0104224375, 0.0405228622, -0.0184713174, 0.00902349688, -0.00358354184, 0.0251146276, 0.00431947736, -0.00149921991, 0.00509519316, -0.0174768101, 0.00121827156, -0.0216404814, -0.00349403615, -0.00196083705, 0.00787649862, 0.0142546063, -0.00552614639, 0.00599024957, 0.00790964905, 0.00191774184, 0.0145463282, 0.00106660917, -0.0155275762, -0.033654131, 0.0036398971, 0.0139098438, 0.0114235748, 0.00790301897, 0.010011375, -0.000617009, -0.000552780402, -0.0169596672, -0.010389288, -0.00834060181, -0.0101704961, -0.0148115307, 0.0273158029, 0.000245726202, -0.0316651165, -0.0168933664, -0.0173707288, 0.0131407576, -0.00889752619, -0.0144269876, -0.00690851174, 0.0038620038, 0.0263743363, 0.00117434748, 0.0222371854, 0.00102102757, -0.00916935876, -0.00984562375, -0.00126633944, 0.00343768066, -0.00646761339, -0.00204868522, 0.00365315727, -0.00561565207, 0.00587090896, -0.0120799504, -0.00582118332, 0.0173044298, -0.00139894045, 0.00644440809, -0.00137905031, 0.0193995256, -0.0314264335, -0.00816159, -0.00223266915, 0.021229418, -0.0271566827, -0.0305777881, -0.00905001722, 0.019731028, 0.00436920254, 7.67635429e-05, -0.00722675398, 0.00426643668, -0.00646098331, 0.0188426, 0.00636484753, -0.0201288294, 0.00905001722, 0.0186171792, 0.00138899533, 0.00676265033, -1.777941e-05, -0.0137374625, -0.00116688875, -8.89359e-05, 0.0227278098, -0.0214018, 0.00167491625, 0.00671624, 0.00882459618, -0.00060001947, -0.00387857901, 0.0148513112, 0.00226416183, -0.00132186606, 0.0104091773, 0.00967987254, 2.42411188e-05, 0.00509850821, 0.0104555879, 0.0121860309, 0.00863895472, -0.00173873047, 0.0218128618, 0.0131672779, 0.0158060379, -0.00796932, 0.0102964668, 0.01596516, -0.038029965, 0.0311877523, -0.0242792405, -0.00663004955, 0.015580616, -0.00755825639, 0.0120335398, -0.0255787317, 0.00733283488, -0.0142546063, -0.0281909704, 0.0169066265, 0.010614709, -0.000736349844, -0.00502889231, -0.0131341284, 0.0054731057, 0.00424986193, -0.0252074488, 0.0192934442, 0.00506535778, -0.0140291844, 0.0388786085, -0.035245344, 0.0223963074, 0.0153419347, 0.00613279594, -0.00615931582, 0.0117152976, -0.00710741291, -0.00230062706, 0.0186834801, -0.0329115652, -0.00241333805, 0.0150502119, -0.00132352358, 0.0155673558, -0.0120401699, 0.0255389512, -0.0124644926, 0.0151695535, 0.0048631411, -0.0301269442, 0.0174237695, 0.000593803823, -0.0140291844, 0.0174370296, 0.0088179661, -0.0084798336, 0.0012588806, -0.014904351, -0.0350597, -0.0113174943, -0.0391438119, -0.00117683376, 0.00514491834, 0.0369691551, 0.00584770367, 0.0159386396, 0.0100644147, 0.0108335009, -0.00569189759, -0.00924228877, -0.00122738793, 0.0180204753, 0.00823452137, -0.00714719342, 0.0193199646, -0.00614937069, -0.000498082489, 0.0103428774, 0.0199829694, -0.00891741645, 0.000263751659, 0.001543144, 0.000692425761, -0.0145993689, 0.0109859919, 0.0109594716, 0.00254428154, 0.00173541543, 0.00775052793, -0.0185773987, -0.00434931228, 0.0104356976, -0.0202481709, -0.016866846, 0.0175961517, -0.021083558, -0.00729968445, 0.0191343222, 0.0238681789, 0.0165220834, -0.00309789064, 0.00497585209, 0.0056852675, 0.00608970039, 0.0223034862, -0.0134192202, -0.00235864, -0.00259400695, -0.00438577775, 0.00512171304, 0.0108732814, -0.0211631171, 0.00437583262, -0.00651402352, -0.0167607646, -0.00578471832, -0.00508193299, 0.0092754392, -0.0207918342, -0.000292758108, -0.00073262048, 0.0303391069, -0.00409405539, 0.00883785635, 0.0146391494, -0.00747869583, -0.000220449147, -0.00289898901, -0.00365315727, -0.0160447191, 0.0123318918, 0.0193730053, 0.00338298269, 0.0105484091, 0.0033349148, -0.00076287007, -0.00737261493, 0.020407293, -0.00330342213, 0.00184149621, 0.00150336372, -0.00690188166, 0.00788312871, 0.00659358408, -0.00297357724, 0.0215211399, 0.000196726, -0.00916935876, -0.0102235358, 0.00661347434, -0.0154082347, -0.0208979156, 0.012948487, 0.00779693807, -0.0130943479, 0.00779030798, 0.00663004955, -0.0193862654, -0.00133346871, 0.0195056051, -0.0123120015, -0.00231057219, 0.0227675904, 0.0257245917, -0.0177552719, 0.00321225892, 0.00897708721, -0.00143623445, -0.00100445247, -0.0246505234, 0.00554272113, -0.0130810877, -0.00874503516, -0.0148115307, 0.0154745355, -1.67046164e-05, 0.00302496017, -0.0151828136, 0.011138483, 0.035086222, 0.011821378, 0.0181132946, 0.00636816258, -0.0106611196, 0.00466424, 0.0315059945, 0.0241333805, -0.00170392275, 0.0017088952, 0.00253930897, 0.00404101517, -0.00320065627, 0.0505474955, 0.0098191034, -0.0040874253, 0.00958042126, 0.0116158463, 0.0203409921, -0.0277666468, -0.0287478939, 0.0128556658, -0.0232184324, 0.00769085716, -0.00392830418, -0.0182724167, -0.00309126056, 0.00143126189, 0.0177950524, -0.00262218458, 0.0260163136, 0.00198072731, 0.0105152586, 0.0221178457, 0.00988540333, -0.00753173605, -0.0239609983, 0.00458136434, 0.0111981537, 0.00211332832, 0.0165618639, -0.00156469166, -0.000514243206, 0.0101572359, -0.0231256131, -0.0116224764, -0.00722012389, 0.00211498584, 0.00266693742, -0.00544658583, -0.00416367128, -0.0174105093, -0.0142678665, 0.00335646258, 0.0240936, -0.0271566827, -0.00268019759, 0.00310617825, 0.0105881887, -0.0271434225, 0.00153651391, 0.00483330619, -0.0101108253, 0.00097627478, 0.00209178054, -0.0251676682, -0.027024081, 0.00828093197, -0.0106677497, 0.000414999668, -0.00895056687, 0.00455152895, -0.0353249051, -0.0304451864, -0.0156999566, 0.00374266296, 0.00634164223, 0.0061294809, -0.00911631808, 0.00127296953, 0.00642451784, -0.0012588806, -0.00544658583, -0.0369426347, 0.00200724741, 0.00204371265, 0.03222204, 0.0122921113, -0.00582118332, -0.0306043085, -0.0205266327, 0.0375526, -0.0222239252, 0.00121661404, -0.0297821816, -0.00847320352, 0.0223963074, -0.0106810099, -0.00471396511, 0.00676265033, -0.0130081568, 0.0246240031, -0.00243322807, 0.0170259662, -0.00664662477, 0.021083558, 0.0144932885, -0.00214150595, -0.00242162566, 0.00653391378, 0.00792290922, -0.00558581669, 0.0281909704, -0.00136247522, -0.012875556, -0.000164818892, 0.0115429163, 0.00323546422, -0.0104025472, 0.00821463112, -0.00036610305, 0.00878481567, -0.0193995256, -0.0106080789, 0.014228086, -0.00146192592, 0.0105218887, -0.0250218064, 0.00663667964, -0.00893067662, 0.00671624, 0.00851961318, 0.022581948, 0.0129617471, 0.0144402478, 0.00131274981, 0.015434755, 0.00154894532, -0.00289235916, 0.0082676718, -0.00693503162, -0.00578803336, 0.00954727083, 0.00419019116, -0.00808866, -0.0110655529, -0.00745217549, 0.0110788122, 0.00752510596, -0.00663999468, 0.00430953223, -0.0299413037, -0.0205398928, 0.00405759038, 0.0107340505, 0.00636816258, -0.000999479904, -0.0165751241, -0.0244118422, 0.00458136434, -0.0234438553, 0.0150502119, 0.0011179921, -0.00110721821, -0.00126716821, 0.00682895072, -0.0238416586, -0.0404963419, -0.00399129, -0.0133131389, 0.0149706518, 0.00523773907, 0.0129617471, 0.00249289861, 4.77311769e-05, -0.00013270459, 0.00161607459, -0.0138302827, -0.0260295738, -0.0262549967, 0.0137242023, 0.0231653936, 0.00939478, 0.00125307939, 0.0126103545, 0.00442887284, 0.0058112382, 0.0047205952, -0.00204868522, -0.00567532238, -0.0022210665, 0.0128357755, 0.00785660837, -0.00590405893, 0.0188558605, -0.00229399721, -0.0107340505, -0.0267323591, 0.00479021063, -0.00601345487, 0.0201155692, -0.00368299242, 0.0111119626, 0.0137109421, 0.0151695535, 0.00655711908, 0.0078433482, -0.0516613461, 0.00699470239, 0.00773726776, -0.00861243438, -0.00838038232, 0.0108732814, 0.030949071, -0.0120468, 0.0038288536, 0.0203807727, -0.00405427534, -0.00615600077, -0.012795995, 0.00639468292, -0.00655711908, 0.00818811078, -0.0213355, -0.0131606478, 0.00907653756, 0.0163894817, 0.014307647, -0.0115760667, 0.0144932885, 0.00735272467, 0.0111252228, 0.00270837522, -0.019956449, -0.00365315727, -0.00534713501, 0.0170392264, 0.0133396592, -0.0155938761, 0.00863895472, -0.00946771074, 0.0160977598, 0.0346884206, 0.0275014453, 0.0208581351, 0.00267854, 0.0150369518, 0.00350729609, 0.00636816258, 0.0131274983, -0.0186304394, 0.00032487241, 0.0136711616, 0.0156203965, 0.00596704474, -0.00804888, -0.00289070164, 0.00461119926, 0.00219951896, 0.0140424445, -0.00086439267, 0.00551620126, 0.00757814664, -0.00110307452, -0.00267191, 0.0016218758, 0.0117020374, 0.0151695535, 0.00287909899, 0.020632714, 0.0260428339, -0.0124048227, 0.00166165619, 0.00773063768, -0.0385338478, 0.0212824587, 0.0200625304, 0.012948487, -0.00464766473, 0.0278196875, 0.0120401699, -0.0141750453, -0.00341447536, 0.0150634721, 0.00189287914, -0.00774389785, 0.0187630393, -0.0121860309, 0.00404101517, 0.000536619627, -0.000477363559, -0.000200455397, -0.00700133201, -0.0194393042, 0.0141087454, -0.00178514083, 0.0199034084, 0.021003997, -0.00063068344, 0.00444876309, -0.0207520556, 4.48823266e-05, -0.00622893125, 0.00375592313, -0.0218526423, 0.00509850821, 0.0165353436, -0.00430953223, -0.0113771651, -0.0146656698, 0.000665905594, -0.0187365189, 0.010163866, -0.0173707288, 0.0116954073, 0.0157397371, -0.0289335363, -0.00916272867, 0.00990529358, -0.00445207814, -0.00824115146, -0.00878481567, 0.00358354184, -0.0276870858, -0.00312441075, -0.0158325583, 0.0172513891, -0.00573499268, 0.00593389431, -0.0145728486, 0.00694829179, -0.00991855375, -0.0141352657, 0.00381559343, -0.0206592344, 0.00312275323, -0.0141485259, 0.0166281648, -0.0110788122, -0.0162436217, 0.0119208293, -0.00201553502, -0.0273158029, -0.000480678573, 0.00366973248, 0.0171983484, 0.0104224375, 0.0155540956, 0.0197708067, 0.00803562, 0.0120269097, -0.0175165907, 0.0217200425, -0.0123186316, -0.00702785235, 0.0168138053, -0.00468744477, -0.0172248688, -0.00456478912, 0.0102169067, -0.00655711908, -0.0120932106, -0.0255787317, -0.00906990748, -0.0210305173, -0.0206194539, -0.0192271434, -0.00437583262, -0.0193597451, 0.00903675705, 0.0443417691, 0.00688862149, 0.0140954852, -0.00519132894, -0.00850635301, 0.0200492702, 0.00296363211, -0.0024249407, -0.010614709, -0.0121661406, 0.0223300066, -0.0252472274, -0.00747869583, 0.00453826878, 0.00361006195, -0.0323546417, 0.0116423666, 0.0025409665, 0.0204868522, -0.00512834312, -0.0374465175, -0.0123650422, 0.0107075302, 0.00114036852, -0.0131341284, 0.00579466345, 0.0334419683, -0.0046377196, -0.0178613532, 0.0101307156, -0.00451837853, -0.00708752265, 0.0348210186, -0.0135717113, 0.0195188653, 0.00879144575, 0.00658363895, -0.0090168668, 0.00274152542, 0.0205001123, 0.00639136788, -0.00249952869, -0.00456478912, -0.00695492188, -0.0082212612, 0.00198569987, -0.00309623312, 0.00324706663, -0.00592726422, 0.00198569987, 0.0041570412, 0.010913061, -0.0141087454, -0.0273423232, 0.00158043799, 0.0111650033, 0.0229267105, 0.0153949745, -0.00173541543, -0.00880470593, -0.00947434083, -0.0145463282, 0.0162966624, 0.0139098438, 0.00861906447, 0.0252339691, 0.026506938, -0.00796269, -0.00277301809, 0.00980584323, -0.0141883055, 0.0139363641, -0.0267190989, 0.00887763593, -0.0267588794, -0.00272992277, -0.0358553082, -0.00681569101, -0.0073262048, 0.000839115644, -0.00921576843, 0.00617920607, 0.0172646493, 0.00376255298, -0.0107009, 0.00544327078, -0.00667314464, -0.00265864981, 0.0075516263, 0.0121131, -0.0244383626, 0.0164027419, -0.00395482453, -0.00763118686, 0.00662010442, 0.00503220735, -0.0087715555, -0.010084305, 0.00886437576, 0.00421008142, 0.00406753551, -0.0115296561, -0.011443465, 0.00559907686, -0.0256582908, -0.0218924228, -0.0125904642, -0.000403397076, -0.020327732, -0.0128888162, -0.00295534451, -0.00836712215, 0.00413715094, 0.0149441315, 0.0118876789, 0.00931522, 0.00245974842, 0.00342773553, 0.00544327078, -0.00370288268, 0.00999148469, -0.0109528415, -0.0119274594, -0.0100511545, 0.0126368739, 0.0231521334, -0.016190581, 0.0122921113, 0.0134324804, -0.000588002498, 0.0106080789, -0.00464103464, -0.00258571934, 0.00494933175, 0.00518469885, -0.0160049386, -0.000805136631, 0.0198901482, 0.0237488374, 0.0195984263, 0.0161242802, -0.00382553856, 0.0116224764, 0.00277633313, -0.0060234, -0.000289028714, 0.00204039761, 0.00648087356, 0.0202746913, -0.00533056, 0.00920250826, -0.00537365489, -0.00380233326, 0.00230559963, -0.00997159444, -0.009487601, 0.00715382351, 0.0272627641, -0.00542338053, 0.00252936385, 0.00937489, 0.0288009346, 0.00497253705, 0.00885774568, 0.0144004673, -0.00930859, 0.000419557822, 0.000869365234, 0.00583112845, 0.00334154489, 0.000205842312, -0.00823452137, -0.00374266296, 0.00906327739, -0.0180735141, 0.00512834312, -0.0202349108, -0.00878481567, -0.0127694756, -0.00720686372, 0.00029524439, 0.0184713174, -0.0201023091, -0.0137242023, -0.0353514254, 0.0136446422, -0.00876492541, 0.00837375224, -0.00122655916, -0.00148430234, -0.000338132522, 0.000776958943, -0.00640462758, 0.00387194892, -0.0110324025, 0.0179409143, 0.0387460105, -0.0158458184, 0.0159253795, -0.00812181085, -0.0216272213, -0.00691514136, -0.000352842937, 0.0123318918, 0.00451506348, -0.00704111252, 0.00626539672, 0.0179674346, 0.0254063495, -0.0147850104, -0.000354086078, 0.00527751958, -0.00156054785, -0.0136976819, -0.0104025472, -0.0167475045, 0.00317247864, -0.0201818701, -0.00203542528, 0.00513497321, 0.00277964817, -0.00705437269, -0.00695492188, -0.00638473779, 0.00890415628, 0.00692840153, -0.0267588794, 0.017768532, 0.000778616406, 0.0167209841, 0.0215344, -0.0146258892, 0.00670629507, -0.0106876399, 0.0123849325, 0.00603997521]
30 Sep, 2021
jQWidgets jqxSwitchButton onLabel Property 30 Sep, 2021 jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxSwitchButton is used to illustrate a jQuery button widget that changes its verified state after being clicked. Moreover, it’s quite identical to the jqxToggleButton yet possesses a distinct user interface view. The onLabel property is used to set or get the string shown whenever the displayed button is checked. It is of type string and its default value is “On”. Syntax: To set the onLabel property. $('Selector').jqxSwitchButton({ onLabel:'ON' }); To get the onLabel property. var onLabel = $('Selector').jqxSwitchButton('onLabel'); Linked Files: Download https://www.jqwidgets.com/download/ from the link. In the HTML file, locate the script files in the downloaded folder. <link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <script type=”text/javascript” src=”jqwidgets/styles/jqx.base.css”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script> <script type=”text/javascript” src=”jqwidgets/styles/jqx.energyblue.css”></script> The below example illustrates the jqxSwitchButton onLabel property in jQWidgets. Example: HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="jqwidgets/styles/jqx.base.css"></script> <script type="text/javascript" src="jqwidgets/jqx-all.js"></script> <script type="text/javascript" src="jqwidgets/styles/jqx.energyblue.css"></script> </head> <body> <center> <h1 style="color: green">GeeksforGeeks</h1> <h3>jQWidgets jqxSwitchButton onLabel property</h3> <br /> <div id="jqxSB"></div> <div id="log"></div> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxSB").jqxSwitchButton({ height: "30px", width: "80px", onLabel: "_on_", }); $("#jqxSB").on("checked", function () { var ol = $("#jqxSB").jqxSwitchButton("onLabel"); $("#log").html("ON Label: " + ol); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxbutton/jquery-button-api.htm?search= 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
https://www.geeksforgeeks.org/jqwidgets-jqxswitchbutton-onlabel-property?ref=asr9
PHP
jQWidgets jqxSwitchButton onLabel Property
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0210658032, 0.0246079583, -0.00827394146, 0.0650687367, 0.0378008187, 0.0179380123, 0.0231108963, 0.02309753, -0.00305427401, -0.0393513478, -0.0107868668, -0.00714446139, 0.00486211, -0.0154785533, -0.00879524, 0.0105395848, -0.0651222, 0.0250356905, -0.026385719, 0.0133599425, 0.0302085746, -0.00881528948, -0.064747937, 0.012591362, -0.0142755564, 0.0237123948, 0.00517956773, -0.00202504382, 0.00659642974, 0.000468667335, -0.0329888314, -0.00377941341, -0.0322403, 0.0205846038, -0.034940362, -0.0624488778, 0.00324474857, 0.0180182122, -0.00896900613, -0.0123240296, -0.0186063442, 0.0222420655, -0.0356354266, 0.00403672084, 0.0258777887, 0.0151711209, 0.0010952279, 0.00866825692, -0.00208519376, -0.0121569466, 0.0128854271, 0.0057743825, -0.0396988802, 0.0191276409, 0.0193281416, 0.0247683581, -0.0101118525, 0.0280431807, -0.00566744944, 0.000204572032, -0.043441534, -0.0715381801, -0.0419177376, -0.022883663, -0.0102789355, 0.0231910963, -0.00175771129, 0.00141184987, -0.0254233219, 0.0239663608, -0.0205712374, 0.00791304279, 0.0109405834, 0.0422920063, -0.00509268465, -0.00258310046, 0.000633661635, -0.0157325193, -0.0238326937, 0.0354482904, 0.0132195931, -0.0249153916, -0.00598490657, 0.0193682406, -0.00239596772, 0.0245945919, 0.0355819575, -0.0375869535, 0.0341918282, 0.0409286097, -0.00691054575, 0.00165161374, -0.00930985529, -0.0118896142, 0.0176038463, -0.0136606917, 0.00425058696, -0.0168553162, -0.00632241415, 0.017136015, 0.0518357754, 0.0212395694, -0.0320264362, -0.0201836061, 0.0544289, 0.016841948, 0.030101642, 0.0383622162, -0.0185662434, 0.0197157729, 0.0254366901, -0.0392444134, -0.0162137169, -0.00167249911, -0.025597088, 0.00147534139, -0.0265060198, -0.0252361894, 0.0381216183, 0.000250206533, 0.00111360708, -0.00885538943, 0.0259713549, -0.0119430805, -0.0111945495, 0.0296471771, 0.000549702498, 0.0357423574, 0.0457405932, 0.0165211502, -0.0137408916, 0.0135738086, 0.00243940926, -0.0145161562, 0.0259980876, 0.0403404757, 0.0459811948, 0.016427584, -0.0533061028, -0.00079406111, -0.0396721475, -0.0332829, 0.0115754977, 0.0294600446, 0.0319195, 0.0341116302, 0.0271743499, -0.0027852708, 0.02943331, -0.0107668173, -0.0113749988, 0.018592976, 0.0205177702, 0.00316454866, 0.0682767257, 0.0466227904, -0.0452861302, -0.0164543167, -0.00132914388, 0.0198628064, 0.0222687982, 0.0221752319, 0.0216539335, 0.0458475277, -0.0342185609, 0.0300481748, 0.0211994685, -0.0113415821, -0.0665658, 0.0203172714, -5.98365368e-05, -0.00699742883, 0.0249822233, -0.0139146578, -0.0320531689, -0.0155587522, 0.0226564314, -0.0191811081, 0.0215202682, -0.00278025819, -0.00216038083, 0.0057743825, -0.0120700635, 0.0237925947, -0.0218277, 0.00765239354, 0.014008224, 0.0069372789, -0.0487347171, 0.0257173888, -0.0352878943, 0.0147433886, 0.0467564575, 0.00152212451, -0.00532994233, -0.0196088403, -0.0139681241, 0.0367047563, -0.0226831641, -0.0153983533, 0.0259713549, 0.00542350858, -0.00075229042, 0.00386295491, -0.0170825478, -0.00223055575, 0.0160265844, -0.0719659179, 0.034646295, 0.0110742496, 0.00803334266, -0.0199029054, 0.0125579452, -0.00637588045, -0.0262520537, 0.0155186532, -0.00914277229, -0.0212262012, -0.0411959402, -0.00193816074, 0.0257441215, 0.00781279244, -0.0157859847, 0.024888657, -0.0831938833, -0.00222053076, -0.0025597089, -0.0102254692, 0.00188135263, -0.0257307552, -0.0427464694, -0.026973851, -0.021841066, 0.020344004, 0.0246881582, 0.0623419434, 0.00153966818, 0.0258777887, 0.00810685847, 0.0189538747, 0.0284174476, -0.000104426763, 0.0259446204, -0.0499377139, 0.0152245872, 0.0161201507, -0.0172295813, -0.00121385674, 0.0104994848, 0.0190474428, -0.0425860696, -0.0118361469, -0.0169221479, -0.0108670667, 0.017844446, 0.00155971816, 0.0224692989, -0.0268936511, 0.0049523348, 0.0201435052, 0.0121703129, 0.0375869535, 0.0149706211, 0.0115353987, 0.0302620418, -0.0065529882, 0.0527981743, -0.0500446483, 0.00498241, -0.0183523782, 0.0401266105, 0.00204342301, 0.0537605695, 0.0505525805, -0.0126648778, 0.0115287146, -0.0268134512, -0.000312862598, 0.00277190399, -0.0389236137, 0.00255302549, 0.033309631, 0.0198227055, 0.0565140955, 0.0512476452, 0.00766576, 0.000890551484, 0.015759252, -0.0164409503, 0.0243272595, 0.00296237855, -0.02384606, 0.00122638792, 0.0130992932, 0.0368384197, 0.0177909788, -0.00197659, -0.00482869381, 0.0183657445, 0.0208786689, 0.0238326937, -0.0373196192, -0.0466495231, -0.00648949714, 0.0246747918, 0.0314115696, 0.0526110381, 0.016427584, -0.00988462, -0.00695732888, 0.031438306, 0.00966407079, -0.010212102, -0.012130213, -0.00801329222, -0.0133599425, -0.0261985864, 0.00898905564, 0.00767912669, -0.0322937667, -0.0144359563, -0.00757219363, -0.00896900613, 0.0599359497, 0.0225762315, 0.00686376262, -0.0170023479, -0.00594480708, 0.0194484405, 0.0148102213, -0.0674212649, 0.0143290227, -0.00691722892, 0.0107935509, -0.000404340448, -0.026933752, 0.0164409503, -0.00985788647, 0.00664655492, 0.0264391862, -0.0118027311, 0.00464156084, -0.0244208258, -0.0259847213, 0.0383622162, -0.0616468787, -0.00374265527, -0.0180315785, 0.0527447052, 0.0200499389, 0.000894728524, -0.00440096157, 0.0689717904, 0.00588799873, 0.0130859269, -0.0117292143, -0.0641598, -0.0230574291, -0.0340046957, 0.0120967962, 0.0175904799, -0.0067869043, 0.0355017595, -0.0143557563, -0.00365243061, -0.0270273183, -0.00148954336, -0.000770669547, 0.00167416991, -0.0104994848, 0.00890217256, -0.0104059186, -0.048280254, 0.0419712067, -0.0226296969, 0.0449385978, -0.0408484079, 0.0161736179, -0.0305828396, 0.0275619831, -0.0382018164, 0.0247148909, -0.0138478242, 0.0248218253, -0.00239596772, -0.0117425807, 0.0201034062, -0.0388701484, -0.0352611579, 0.0117425807, -0.0375334844, 0.0393780805, -0.00490221, -0.0229905974, -0.0104928017, -0.00707094511, -0.0305293743, -0.00137342082, 0.0585992895, -0.00852122437, 0.0148770548, -0.0368651561, -0.0175771136, -0.00822047517, -0.00275185402, -0.0310907718, -0.0243940931, -0.00165746163, -0.0232445635, -0.0135871749, -0.010212102, -0.0170157142, 0.0249554906, 0.0121970465, -0.013593859, 0.00201000646, 0.0314650387, 0.0574764907, 0.0223757327, 0.0177375134, 0.0353413597, -0.00525642559, -0.0231777299, 0.0275085159, -0.0264391862, -0.0219747331, -0.0380146839, -0.0220014658, 0.0206915364, 0.00209020614, -0.00605174, 0.0144760562, 0.0108470172, -0.00677687954, -0.00271843746, 0.0259579886, 0.0379077494, -0.00326145673, -0.0258510541, -0.0158394519, 0.00425392855, 0.00419712067, -0.00254634232, 0.0195821077, -0.0316521712, 0.0236589275, 0.010880434, -0.00804002583, 0.00443772, 0.0243272595, 0.019381607, -0.0311709717, -0.0453930609, -0.0113215325, -0.0111009832, -0.0051327846, -0.00357223069, 0.0161869843, 0.0401800759, -0.00609852327, -0.0323739685, 0.0299412422, -0.0119029805, -0.0187266432, 0.027308017, 0.00953708775, -0.0326413, 0.0111744991, -0.0121502634, 0.0205979701, -0.0555516966, -0.026933752, -0.0217341334, 0.0393513478, -0.0327215, -0.0161736179, 0.0117024807, -0.0340046957, 0.0171493813, -0.00528984237, 0.0540279038, -0.0151310209, 0.0211593695, 0.00723134447, 0.0625558123, -0.0159463845, 0.0162404515, -0.0120500131, -0.0126581946, 0.00896232296, -0.00347866444, 0.00884202309, 0.0114819314, 0.00610854803, -0.00961728767, 0.042318739, -0.00181284861, -0.00340180635, 0.0274015833, -0.033977963, 0.00491891848, 0.0427732021, -0.0160666853, 0.0557655618, -0.0134601919, -0.0201702379, -0.0352611579, 0.000700912438, 0.00553378323, 0.0153716197, -0.0152780535, -0.0366780199, -0.0289788451, -0.0241534933, 0.0105663175, -0.0188068431, -0.0119029805, 0.00142605195, -0.0029957951, 0.0045981193, 0.0204910375, -0.0147300223, 0.0219881, 0.00948362146, 0.0105596343, 0.0064159804, -0.000535082771, -0.0109873665, 0.00950367097, 0.0177909788, -0.0207182709, 0.0152513199, 0.0336304307, 0.0236321948, -0.00924302172, 0.0413028747, -0.0250891577, -0.0228569303, -0.0401266105, 0.00640929723, 0.00191309839, 0.00668331282, -0.00829399098, 0.00497572636, 0.0129388943, 0.0123307128, -0.00353213097, 0.00513612619, -0.00103507808, 0.0337640978, -0.00808680896, -0.020972237, 0.0216272, 0.00326981093, 0.0127918608, -0.00795982592, -0.0216673, -0.0133933593, -0.0335234962, -0.0255436227, 0.00450789463, 0.00220549339, 0.0195687413, 0.00475851865, 0.00474515231, 0.00453796936, 0.0165612493, 0.0530655049, -0.00777937612, 0.0281501152, -0.0154518196, -0.00281200395, 0.00610520644, -0.00413697073, 0.00187801092, 0.00509268465, 0.0333898328, 0.00514280936, 0.000480363116, -0.0184058435, -0.00285711628, -0.0323205031, 0.0235787276, -0.0103591355, 0.00929648802, 0.00230908464, -0.00756551046, -0.0113415821, -0.0187400095, 0.0114351483, 0.00901578926, 0.0170290824, -0.0162270833, 0.0139681241, 0.0128987944, 0.0134601919, -0.000236422202, -0.00635917252, 0.0431207344, -0.0239128936, 0.015719153, 0.0118896142, 0.0208118372, 0.0328284316, 0.0312511697, -0.00499243475, -0.00759224361, -0.0188603085, 0.00789967552, -0.0108537, -0.0529051051, -0.0100517031, 0.00689049577, -0.0200098399, -0.0127918608, -0.00310774054, -0.00665323809, 0.0108670667, 0.0197558738, -0.0115287146, 0.0382285491, -0.0213999674, 0.00619543111, 0.00218377262, 0.0283105131, 0.0194083415, -0.0233247615, -0.0276689157, -0.000859641121, -0.0172964148, -0.00811354164, -0.00846107397, 0.00923633855, 0.0377206169, -0.000632408482, 0.00650620507, -0.0257040225, 0.0104994848, -0.00730486121, 0.0248218253, 0.0162003506, 0.0268401857, -0.0134802423, 0.0457405932, 0.00863484, 0.00462819403, 0.0346997604, 0.0131861763, -0.000607346068, -0.031518504, 0.000187550468, 0.0216004681, -0.0336838961, -0.0107601341, -0.000588549243, 0.0330155678, -0.0128586944, 0.00279696658, 0.00506595103, 0.0188469421, -0.0018312278, -0.0109272171, 0.0167216491, -0.00199162727, 0.0239529945, -0.0236722939, 0.0291125122, 0.072714448, 0.00932322163, 0.00998486951, 0.00553712482, -0.0306630395, 0.0162805505, -0.00711772824, -0.00557722477, -0.019635573, -0.00199496886, -0.0327749662, -0.00643937197, -0.00278359978, -0.0106665678, 0.0240465607, 0.0104326513, 0.0127383946, -0.00465492764, -0.0183924772, -0.0274817832, -0.00126982946, -0.0190207083, 0.0189939756, -0.0157325193, -0.0170157142, 0.0125378948, 0.00363238063, -6.34914759e-05, -0.0414632745, 0.00795982592, 0.000629066839, -0.0168820489, 0.00943683833, 0.00529318396, -0.0272278171, 0.0129054775, 0.0115353987, -0.00451791938, 0.0178043451, 0.000647863664, 0.018887043, -0.0101786861, 0.00494899321, 0.00727144442, 0.0119430805, 0.0170691814, 0.0559794307, -0.0166280828, -0.00201000646, -0.0084543908, -0.0449653305, -0.0272545498, 0.0216004681, 0.000711772824, 0.0160132181, 0.00496570161, -0.0176573135, -0.0188469421, -0.0201034062, 0.000367999921, -0.0101786861, 0.0344591625, 0.00289220363, 0.00334666902, 0.0403137431, 0.0137943579, -0.0225227643, -0.031144239, -0.0170691814, 0.0136673748, 0.011755948, -0.0100383358, -0.00958387088, -0.0013099293, 0.000534665, -0.0225762315, 0.0295402426, -0.0159463845, -0.0361968242, 0.0201034062, -0.00553378323, -0.00560395792, 0.0010952279, 0.021841066, -0.0328284316, 0.0071043619, -0.0224425644, 0.00816700887, 0.0231108963, 0.0256505553, 0.0148369549, 0.0306630395, 0.01317281, -0.00404674606, 0.0205044039, -0.0166280828, -0.0104593849, -0.0152513199, 0.0148102213, -0.0264659189, -0.0272946507, 0.0170558151, -0.00181786111, 0.0137809915, 0.0336304307, -0.00390973827, -0.0281768478, 0.019595474, 0.0116356481, -0.0274817832, -0.0148770548, 0.0183256436, 0.0545625687, 0.00425058696, -0.0175637472, 0.0319462344, -0.01833901, 0.0174167138, -0.00188469421, 0.0247950908, 0.0163473841, 0.0188068431, 0.0035855975, 0.0219613668, 0.00909598917, 0.0247817244, 0.0104059186, 0.0234450623, -0.0329621, -0.00583787402, 0.0271208845, 0.0326680355, 0.00631238893, 0.0176840462, -0.00831404142, 0.0330690332, 0.0301283747, 0.0355017595, -0.043495, -0.00450455304, -0.0100249695, -0.0473445877, -0.0207984708, -0.0126114115, -0.0161736179, -0.0184994098, -0.0125445789, -0.00828730781, -0.00385961332, 0.00213364768, 0.000692140602, 0.021052435, 0.0228702966, -0.0220816657, 0.0207583699, 0.0132931098, -0.00158394512, -0.0299145095, 0.03985928, 0.0299412422, -0.00168920739, 0.0132663762, -0.0162805505, -0.0434682667, 0.0411157422, -0.0177776124, -0.00657972181, -0.0140884239, 0.00721129449, 0.0177241452, 0.0257842224, 0.0220282, 0.0117759975, 0.0132396426, 0.0266664196, -0.00858805701, 0.00868830644, -0.0011704152, 0.0513011105, 0.020303905, 0.00248619239, 0.0240465607, 0.00904252287, 0.0146899223, 0.0179380123, 0.0184058435, 0.0297808424, 0.00696401205, 0.00151293504, -0.0196890403, 0.018592976, 0.00119464216, -0.00486545172, -0.0145161562, 0.0017476863, 0.0144760562, 0.0366512872, 0.0149706211, -0.0246213246, -0.00819374155, -0.0414900072, 0.0115220314, 0.0117826806, -0.0059113903, -0.028845178, -0.0130257774, 0.0134802423, 0.0168686826, -0.00158143893, -0.0314650387, -0.00188469421, 0.0111611327, -0.00822047517, 0.00029448347, 0.0103457682, -0.0164543167, -0.0255436227, -0.0037226053, 0.0510337763, -0.0245411247, -0.0273748506, 0.00603503175, -0.0172295813, -0.000180449453, -0.0117893638, 0.0422385372, -0.0339244977, -0.00282704132, 0.040233545, -0.0299145095, -0.0344056934, -0.0187266432, 0.01438249, 0.00418041227, -0.0191811081, -0.00498909317, -0.00282537052, -0.000824971474, -0.0188068431, -0.00428066216, 0.0394315459, -0.00874177366, -0.00134585216, 0.0163741168, 0.00858137384, 0.00812690891, -0.00750536053, 0.0281233806, -0.00909598917, -0.0103658186, 0.00876850635, -0.0194083415, 0.00755214365, -0.0166681819, 0.000104322338, -0.00100416783, 0.0340314284, -0.0119430805, 0.0145295225, -0.011588865, 0.012297296, -0.0425058715, 0.00932322163, 0.016467683, -0.0179914795, 0.0173766129, -0.00453128619, 0.0025430005, -0.0132329594, 0.0327215, -0.00183791108, -0.00808012579, -0.0247148909, 0.0323205031, 0.0253297556, -0.0335769653, -0.00173097802, -0.0122906128, 0.00200833566, -0.0260782875, -0.0138611915, 0.00191309839, -0.00142855814, 0.00527981715, -0.0177241452, 0.0425860696, -0.0141285239, 0.0173231475, -0.0149171548, -0.0139681241, 0.00502585154, 0.00619877269, 0.0248351917, 0.0223089, -0.0257708542, -0.0125846779, 0.0270273183, 0.0515684448, -0.00859474, 0.0023324762, 0.00716451136, 0.0149305211, -0.0246747918, 0.00186130265, 0.0123373959, 0.0491357185, 0.0213598683, -0.0111143496, -0.00357223069, 0.0337908305, -0.0176840462, 0.00199496886, -0.0121101635, 0.0177107789, 0.00106933, -0.00201334804, 0.0135136591, 0.0249688569, -0.0208786689, -0.00495567638, -0.0178578123, 0.00300916168, 0.0123507623, 0.0295669772, -0.0353680924, -0.0167082828, -0.00493228482, 0.0173632465, -0.0218544342, 0.0273614842, -0.0399127454, -0.0330957659, -0.0235118959, -0.0362502895, -0.0302353073, 0.0187934767, 0.0422652699, 0.00330656907, 0.0304491743, -0.0118027311, 0.00167416991, -0.0070575783, -0.0229103975, -0.0166280828, 0.000578942, 0.0124844285, 0.0440296642, 0.0065830634, 0.0205177702, 0.0411424749, 0.00214868505, 0.0217608679, 0.0314650387, -0.00986457, 0.00343188131, 0.0323472358, -0.0222153328, -0.00879524, 0.0177241452, -0.00910267234, -0.0177642461, 0.0195553731, 0.010633151, 0.00968412, -0.00144777272, -0.0387364812, 0.00105512806, 0.0133064762, -0.00930317212, -0.00389637146, -0.0351007581, -0.0102321524, -0.021386601, 0.00558724953, -0.0132195931, 0.00108436751, -0.00583787402, -0.00127150025, 0.0201702379, -0.0184994098, 0.00127066486, 0.0010860383, 0.00320297782, -0.0014653164, -0.019381607, -0.0160666853, -0.0187667422, 0.00581448246, -0.00222387235, -0.0085145412, -0.0106933005, 0.0197959729, 0.0323739685, 0.00668331282, -0.0107868668, -0.0112613821, 0.00271676667, -0.0111678159, 0.017176114, -0.00143941853, 0.000885539, 0.00950367097, 0.0149706211, -0.0075120437, -0.00133499177, 0.0226430651, 0.0378008187, -0.00426061219, 0.0197425075, 0.0128653776, 0.0174434464, -0.0141285239, -0.0110809328, 0.0217742343, -0.00345861446, -0.00328150671, 0.00155554106, -0.0189004093, -0.0113415821, 0.0179112796, -0.03985928, 0.00789299235, -0.0246480592, -0.0221618656, -0.0023324762, 0.0196222067, -0.00706426194, 0.0355284922, -0.030850172, 0.00549368327, 0.0540546365, 0.0131594436, -0.0375067517, -0.00489218533, -0.031812571, -0.0412226729, -0.0124844285, 0.0131794931, 0.0127784945, -0.0180449449, 0.0181919783, 0.00636919728, -0.00289554545, -0.0123507623, -0.0119698131, -0.010339085, -0.0207049046, 0.0178177133, -0.0114618819, -0.0365710892, -0.0173097812, 0.00293397438, 0.0284441803, 0.0198093392, -0.00444106152, 0.0169488825, -0.0368918888, 0.00930985529, -0.0273614842, 0.0263589863, 0.0155320195, 0.0209321361, 0.0247950908, -0.000216998815, -0.0159062855, 0.00523637561, -0.0252495557, -0.0209989697, -0.0153181534, -0.0182320774, -0.0207984708, -0.0049523348, 0.019301407, 0.0182454437, 0.00464824401, -0.00161736179, -0.0387632139, 0.00142354565, -0.00610186486, 0.0181518774, -0.0224960316, -0.00538675, -0.0249955915, 0.00797319226, -0.0171493813, -0.00362235564, -0.0405810773, -0.0294065773, -0.00484874379, -0.00467497762, -0.0146631887, 0.00426729536, -0.00165579084, -0.00934327114, 0.0282303132, 0.00503921788, -0.00212696427, 0.0422385372, -0.038148351, 0.0573160909, 0.038148351, 0.0208920371, -0.00564739946, 0.00126481696, -0.00803334266, 0.0069372789, 0.00491557689, 0.00256137969, -0.0116423313, -0.00779942609, -0.0292729102, -0.0159864854, -0.0119029805, -0.000318501639, -0.00946357101, 0.0112747494, 0.000583954446, -0.00530320872, 0.00227399729, 0.00692391209, -0.0112413326, -0.0205177702, -0.00947025418, 0.00499911793, 0.0167617481, 0.00453796936, 0.021547, 0.00951703731, -0.0152112199, -0.00801997539, -0.0124109127, 0.0175771136, 0.0176974125, -0.000964903331, 0.0189939756, -0.0130658764, 0.0463019907, 0.00458475249, -0.0300214421, 0.0285243802, 0.0142354565, -0.0145428888, -0.00925638806, 0.0156523194, -0.0257975888, 0.00272010849, -0.0042271954, 0.00493562687, -0.00223389734, 0.0029891117, -0.00774596, 0.00445108628, -0.0187400095, 0.0323472358, -0.0155587522, -0.00689049577, 0.0104393344, 0.0121502634, 0.0184994098, 0.004106896, -0.0224960316, 0.0140215904, -0.0123641286, 0.0177375134, -0.0185261443, 0.0109071666, -0.0244074594, -0.00657972181, 0.00369921373, 0.021052435, -0.0110074161, -0.0125980452, 0.0148235885, 0.0211727358, 0.00106348214, 0.023805961, -0.00538675, -0.0194083415, 0.000803250703, -0.0107267173, -0.030930372, -0.00323138176, 0.0277223829, 0.00282035815, 0.0164944157, -0.0183791108, -0.00860810746, -0.0226163305, -0.00469836919, 0.0182320774, 0.000463237142, -0.00244943425, -0.0105395848, 0.0180583112, 0.00210691453, 0.00953040458, 0.000616535603, -0.0221217666, 0.00953040458, 0.0136874253, 0.0155721195, 0.0113616325, 4.19338721e-06, -0.0128720608, 0.00505258469, 0.0115420818, -0.0175771136, 0.00500580156, 0.00470505236, -0.000252086204, -0.00685039582, 0.0271075182, -0.0084009245, -0.0107534509, 0.00116039021, -0.0112680653, -0.00522969244, -0.0115019819, -0.000628649141, 0.00566744944, -0.00415702071, 0.00918955542, 0.0318393037, 0.00299412431, 0.00692391209, -0.0222821664, -0.00116790889, -0.00161736179, 0.00122555252, 0.0138478242, -0.0170023479, 0.0197291393, 0.00953708775, 0.0230173301, -0.00403672084, 0.000232245133, 0.00198160228, 0.0271075182, 0.0123507623, 0.00236756355, 0.0140750576, -0.0307967067, -0.00384290493, 0.000183373399, 0.00779274292, -0.00961060449, 0.0111811822, -0.0151443873, -0.0301818419, -0.0243807249, 0.0137943579, 0.0168954153, -0.0130792437, 0.0057443073, 0.0160666853, -0.00562066631, 0.0106799342, -0.00353213097, -0.00328651909, 0.011796047, -0.004106896, 0.0202638041, 0.0167751163, 0.0104393344, 0.0128720608, 0.000751037325, 0.00141017907, -0.0160265844, 0.0168820489, -0.016093418, -0.00789967552, 0.0018947192, 0.0204643048, 0.0317323692, -0.00743184425, -0.000224935255, 0.0226697978, 0.00186464435, 0.0123039791, 0.00996482, 0.0151042873, 0.0024076635, 0.00762566, -0.017844446, 0.0365978219, 0.00219379738, -0.0138745578, -0.0161736179, -0.0110408328, -0.00524974242, 0.007171195, -0.00361901405, 0.000483287062, -0.0300749093, -0.0197959729, -0.00150207465, -0.0272946507, -0.017136015, -0.00207182695, -0.00846775714, 0.00512610096, -0.0111611327, 0.0254901554, -0.00519293407, 0.039939478, -0.00462485244, 0.0366512872, 0.0093900552, -0.00081787043, -0.0132931098, -0.0165612493, -0.00266998354, 0.00693059573, -0.0160132181, -0.0395384803, 0.0132129099, -0.014048324, 0.0143557563, 0.00840760767, 0.0162404515, 0.00491223484, 0.0335502326, -0.0276689157, -0.00258978386, -0.0111343991, 0.0246480592, -0.00488884328, -0.0236990284, -0.00965738762, 0.00369921373, 0.00584789878, -0.00590470713, 0.0211727358, -0.00122722331, 0.00618540635, 0.012838644, 0.0133866761, -0.0153983533, 0.0418910049, -0.00137509161, 0.00567413261, -0.00854795706, -0.0071043619, -0.00810685847, -0.0129255271, -0.0189137757, -0.00685039582, 0.0100383358, -0.00684371265, -0.0400196798, -0.0181385111, -0.0229638629, -0.0137809915, 0.00293230359, 0.00421717064, -0.00140600197, 0.0204242039, 0.00611188961, -0.000713861373, -0.0169087816, 0.00269671669, 0.0235252623, -0.0292996448, -0.0118094143, 0.0032230278, 0.0110074161, 0.00740511063, 0.000823718321, 0.01196313, 0.00639258884, -0.0125779947, 0.0169355143, -0.00959055405, -0.00230574305, -0.00582116563, 0.0185261443, 0.00975095388, -0.0143290227, -0.0205979701, 0.00164409494, 0.00664321333, -0.00241434691, 0.00882865675, -0.00666326284, -0.00274015823, 0.0291125122, 0.00830067508, 0.0057075494, -0.0146765551, 0.0124443285, -0.00747194374, 0.00516285934, -0.00464824401, -0.0032831775, -0.0141285239, -0.0117893638, -0.0287115127, -0.0217074, -0.00783284288, -0.00344858947, -0.0097375866, 0.0229103975, 0.0084543908, -0.0194350742, 0.00242103, 0.0179246459, -0.00719124498, -0.00780610973, 0.0299679749, 0.0152379535, -0.0264659189, -0.0173365138, -0.014756755, -0.00731154438, 0.0477188565, 0.0273748506, -0.00612191483, 0.0100583863, -0.0100583863, 0.00924302172, 0.01751028, 0.0108603835, -0.00189304841, 0.00744521059, -0.0288986452, -0.0102655692, -0.0168285817, 0.00236255117, -0.00744521059, -0.000217416527, 0.0188603085, 0.0407949425, -0.0071043619, 0.0113616325, 0.0287917126, -0.0124911116, -0.0152245872, -0.0431742035, -0.00529318396, -0.00337507296, -0.0121903624, 0.0239128936, 0.000530070276, -0.0149973547, -0.000202587922, 0.00381283, -0.00965738762, 0.0233113952, 0.00037614521, -0.00442101154, -0.00766576, 0.0102388356, 0.00494899321, 0.0259178877, 0.0132864267, -0.0144760562, -0.000853375532, 0.000348367699, -0.0105262175, 0.029807575, -0.00231409702, -0.0209856033, -0.0235519949, 0.0327215, -0.0186865423, -0.0240331944, -0.00212362269, -0.00201501884, 0.0152379535, 0.0314115696, -0.0190207083, 0.0253030229, -0.00131995429, -0.00153382029, -0.00640929723, -0.0116690649, 0.0186063442, 0.005487, -0.0121903624, 0.000681280217, 0.00234918459, -0.0223089, -0.0326145664, 0.00497572636, -0.0081001753, 4.74358567e-05, 0.00155136408, -0.00874845684, -0.00844770763, 0.0109539498, 0.0236722939, -0.00455801934, 0.00167834701, 0.00420046225, 0.0143156564, 0.0196623076, -0.0112413326, 0.0023391596, -0.0243005268, 0.00908262189, -0.00122304633, -0.0118094143, 0.00877518952, -0.0237925947, 0.0275619831, 0.0112012327, -0.00416370388, 0.00229070545, -0.0156656858, -0.00836082455, -0.00835414138, 0.020344004, 0.00603503175, 0.0152780535, 0.0209989697, 0.0203707386, 0.0130926101, 0.0158661846, 0.0014653164, -0.00920960493, 0.00984452, 0.0206247047, -0.0120232804, 0.0189672429, 0.0146498224, -0.00221551815, -0.00769917667, 0.0213064011, -0.00991803687, -0.028390713, 0.012838644, 0.0257441215, -0.00588131556, -0.019301407, 0.00673677959, -0.00759224361, 0.00665992126, -0.00191978167, -0.0164008494, 0.0202771723, 0.00690386211, -0.015425086, -0.00437422842, 0.0208920371, 0.00913608912, 0.0107200341, -0.0114084156, -0.0118361469, 0.016467683, 0.0168285817, 0.0093299048, 0.0175904799, 0.0182721782, -0.0190875418, 0.00111861946, 0.00165161374, -0.0230574291, -0.0149305211, 0.0198093392, 0.00279362476, 0.00447113626, 0.02067817, -0.00128486694, -0.00299412431, -0.00536001706, -0.0291125122, -0.00273514586, -0.0095504541, 0.00840760767, 0.00862815697, -0.0316789038, 0.00951035414, -0.0168152153, 0.00596819865, 0.0100383358, 0.00139430619, -0.00624889787, 0.0018278861, -0.0104393344, -0.0120834298, -0.00317457365, 0.0264258198, -0.0228301976, 0.0283372477, -0.000408517517, -0.0193415079, 0.0144359563, 0.000274851249, -0.0206514373, 0.0146097224, -0.0146765551, 0.0093833711, 0.00380280497, -0.000754378969, 0.0172696803, 0.00804002583, -0.00853459071, 0.0128119113, -0.00192479417, 0.0012372483, 0.000763150805, -0.0107066678, -0.00382619677, -0.01196313, 0.0319195, 0.000812022539, -0.00676685432, 0.01192303, -0.00260147965, -0.0236188285, -0.00651623029, -0.00948362146, -0.0058946819, 0.00906257238, -0.0153983533, 0.00723802811, 0.0153047871, -0.00102839479, -0.00311609474, -0.00353547256, -0.00792640913, 0.00896232296, -0.0111143496, -0.00444440311, 0.0154518196, -0.0243406259, -0.0108737499, 0.0224826653, 0.00104844477, 0.0067869043, -0.0145428888, -0.00772591, 0.0191677418, 0.00864820741, 0.00561064109, 0.00686376262, 0.0039932793, 0.0222955327, -0.0193682406, 0.0193281416, 0.0124576958, -0.0177776124, 0.0156122195, -0.00046574336, 0.016841948, 0.00637588045, 0.0119163468, -0.000345026026, -0.010546268, 0.0117826806, 0.00173431973, 0.0270540509, 0.000532576523, 0.0118695637, 0.015719153, 0.0167350154, 0.00375602185, -0.00873509049, -0.0189672429, -0.000820794376, 0.00386629649, -0.00940342154, -0.012798544, -0.00373263028, 0.00843434129, 0.0186731759, 0.0094435215, -0.00190975668, 0.00846775714, -0.0185261443, 0.000875514, 0.00621548109, 0.00295402436, -0.00411023758, 0.0184860434, 0.0130124101, 0.00223723892, -0.0095504541, -0.0060082986, -0.00617538113, -0.00744521059, 0.0121101635, -0.00306931138, 0.011254699, 0.0180449449, -0.0229103975, 0.000897234771, 0.0221351329, -0.0169221479, -0.000918120146, 0.0147968549, 0.00475183548, -0.0117492639, 0.0225361306, 0.0243673585, -0.0174969137, -0.0063324389, 0.00185461936, -0.0121569466, -0.0375334844, 0.00861479063, 0.0176439472, -0.00909598917, 0.00546695, 0.0128653776, 0.0102856187, 0.0156523194, 0.00747194374, 0.00883534, 0.00747862738, -0.0152245872, 0.0297808424, -0.018887043, -0.0160132181, 0.00809349213, -0.0183523782, 0.0142220901, -0.00392978825, -0.0211994685, -0.0101051694, -9.37230216e-05, 0.00914945547, -0.0164008494, 0.0043942784, 0.00396320457, 0.00200666464, -0.0137275252, 0.00898905564, 0.0102588851, -0.00204175222, 0.031812571, -0.00155971816, -0.0261183865, 0.0274550505, -0.012090113, 0.00760561, 0.0270005837, 0.0300214421, 0.00368584716, 0.012424279, 0.00625223946, -0.000808263139, -0.00565074105, 0.0232980289, -0.0150641873, 0.0181251448, -0.0259980876, 0.0222420655, -0.0196890403, 0.0252762903, 0.00254132971, 0.00868162327, -0.0212262012, 0.0010183698, -0.00937668793, -0.0100650694, 0.0088687567, -0.0167751163, 0.0106398342, -0.0147300223, 0.00544021698, 0.0311709717, -0.0181385111, -0.017884545, -1.62905762e-05, -0.00925638806, -0.0129522607, -0.00614864798, 0.00808680896, -0.0156122195, 0.0368116871, 0.0253297556, -0.00868162327, -0.0137007916, -0.0146498224, -0.00995145272, 0.0166815501, -0.00791972596, -0.0113415821, -0.000141707118, -0.00750536053, -0.0101452693, 0.0226564314, -0.0152780535, 0.0212395694, -0.005253084, -0.00342185632, 0.0205712374, 0.0118561974, 0.00337340217, 0.0216539335, -0.0195821077, -0.00420714542, -0.00627563102, 0.0223757327, -0.0125713116, 0.00252963393, 0.0103257187, -0.0215336345, -0.0027017293, -0.0214133356, -0.00779942609, -0.00489552692, 0.000205720731, 0.0101252189, 0.00318292785, -0.00818705838, -0.00983115379, 0.00852122437, 0.00219212659, 0.0088620726, 0.00494565163, -0.0148904212, 0.0383354835, -0.0291927103, -0.0105863679, 0.0159731172, -0.00397657137, 0.0123574454, -0.00515951775, -0.0156924184, -0.0103056682, 0.00136757293, 0.00562066631, -0.000636167882, 0.0202103388, 0.0133733097, -0.00922965538, -0.00468500238, 0.00932322163, 0.0139948577, 4.55039626e-05, -0.0105262175, -0.0101185357, 0.00407347921, 0.0122505128, -0.000488717284, 0.00422385382, 0.00674346276, -0.00979105383, 0.00270674168, -0.00721129449, 0.0128520112, 0.0176439472, 0.0253965892, -0.0134869255, 0.0125980452, -0.0147032887, -0.0120700635, -0.0176840462, 0.0135804918, -0.0283372477, 0.00623553107, 0.00733159436, 0.0136272749, -0.00386963831, 0.0215737335, 0.00339345215, 0.000422093, -0.0136139086, -0.0201702379, -0.00992472, 0.000586043, 0.00898237247, -0.000810351688, -0.0190073419, -0.0150641873, 0.012965627, 0.00608849805, -0.00448450306, 0.0145829888, 0.0117626311, -0.0137275252, 0.0135203423, -0.00149789755, -0.0344324298, 0.0110274665, -0.0345393606, -0.00162488047, -0.0153849861, 0.0162538178, -0.00400664611, 0.00334499823, -0.00993808638, 0.0162805505, 0.0136473253, 0.00976432, -0.00200499385, -0.0243539922, -0.00713777822, 0.0148503212, 0.00776601, 0.00119798386, 0.00838087406, 0.00764571, 0.017176114, -0.0148102213, -0.0154518196, -0.00539343338, -0.0114886146, -0.000810351688, 0.0106665678, 0.00374933868, -0.0122104129, 0.00162822218, -0.00916282181, -0.00588131556, -0.0194751732, -0.0161067843, 0.00642266357, -0.0188202094, -0.0115220314, -0.0128520112, -0.0057743825, 5.28921555e-05, -0.00240933429, -0.0201435052, 0.0250490569, 0.0365443565, 0.00667662965, -0.0025580381, 0.00165077834, -0.0110675665, -0.00318961102, 0.0222687982, 0.00812690891, -0.0116089145, 0.0166681819, -0.00824052468, 0.0289788451, -0.00622884789, -0.0150107211, -0.0181919783, 0.0112079158, -0.00119631307, 0.00148703717, 0.0292729102, 0.0201702379, 0.021841066, -0.00425058696, -0.00358225568, 0.0209455024, 0.0166949164, -0.00947693735, 0.0118561974, -0.00965070352, 0.039485015, -0.00200666464, 0.00287883705, 0.0136339581, 0.00515617616, 0.00862815697, -0.00608181488, -0.0128319608, -0.0139413904, -0.00894227251, -0.0102989851, 0.0186464433, 0.0507129803, 0.0132530099, 0.0146765551, 0.0216539335, -0.00285210391, -0.0133198425, 0.00876182318, -0.0228569303, 0.00967743713, -0.00400998769, -0.00761897676, -0.0276956484, -0.00597154, -0.0154785533, -0.00928312168, -0.0119029805, 0.00982447, 0.00888880622, 3.33643511e-05, 0.00731154438, -0.00735164434, 0.0139413904, -0.0101786861, -0.00168503029, -0.000137843337, 0.0075254105, 0.00317123206, 0.00607178966, 0.00631238893, -0.0166548155, 0.00717787817, -0.00276020821, -0.0165478829, -0.00152630161, -0.0202638041, 0.0236856621, 0.00832072459, -0.000992471934, 0.002053448, 0.00146197469, -0.0218009669, 0.00207015616, -0.0126515115, -0.00643603038, 0.0088086063, -0.00644939719, 0.0212395694, -0.00385293, 0.000653711555, -0.000500830763, 0.000448617386, -0.0227767304, 0.00085379323, -0.00180115283, -0.0228569303, 0.0097442707, 0.0115420818, -0.0140884239, 0.00686376262, -0.019595474, 0.0244341921, 0.0143958563, 0.0218143333, -0.0104527017, 0.0094435215, -0.0143691227, -0.0256639216, -0.00643937197, 0.0088687567, -0.00088971603, 0.019261308, 0.00982447, -0.00425392855, 0.000928980531, 0.0205578711, 0.0166949164, -0.011421782, 0.00878855679, -0.015719153, 0.0252094567, -0.00849449076, -0.0114551987, -0.00763234356, -0.0109606329, -0.00812022574, -0.0257173888, -0.013466876, 0.0079330923, 0.0145027889, 0.0232445635, 0.0177909788, 0.0126648778, -0.00965070352, 0.00623218948, 0.0175904799, 0.0118361469, 0.0101252189, -0.00707762828, 0.018592976, -0.00817369204, -0.00258310046, -0.00288719125, 0.0184192099, -0.0125245284, -0.00448784465, 0.0250757895, -0.0164543167, 0.0155587522, 0.00831404142, 0.00431407848, 0.0366780199, 0.012965627, -0.00210357271, 0.0030041493, -0.0211727358, 0.0222019665, 0.00209354772, 0.0134535087, -0.0115754977, -0.0157057848, 0.0198093392, -0.0184860434, -0.00706426194, 0.00488550169, -0.0178979114, -0.0126047283, 0.00121552753, -0.0110141, -0.00543687493, 0.0222019665, 0.00994477, 0.00838755816, -0.00689049577, -0.00737169432, -0.0283105131, 0.0155052859, -0.00325310254, -0.00188636512, 0.00235252618, -0.0262921527, 0.00233581779, -0.00294901174, 0.00914945547, 0.035314627, -0.0257441215, -0.000488299527, -0.00746526057, -0.00969080348, -0.0146899223, -0.000219296213, -0.00802665856, 0.000964903331, 0.00915613864, -0.00456804456, 0.0161067843, 0.0113348989, 0.0275352504, -0.00551039167, 0.00394649617, 0.0101185357, 0.0171493813, -0.00285878708, -0.0122839296, 0.00426729536, -0.0138478242, 0.0031478405, -0.00635248888, 0.00680695428, 0.00842765812, 0.00088971603, -0.00697069522, -0.00700411201, 0.000687963504, 0.0174835473, -0.0120433299, 0.0201301388, 0.0123574454, -0.0205578711, -0.032855168, 0.0175904799, 0.0244074594, 0.0170959141, -0.00268000853, -0.00651288871, 0.00654630503, -0.00235586776, 0.000557638938, 0.017630579, -0.00512944255, 0.00898237247, -0.00841429085, -0.00267666695, 0.00801997539, -0.019221209, -0.017176114, -0.00983115379, 0.0204375703, 0.00124810869, -0.021547, -0.00836750772, 0.00418375386, 0.0198761728, 0.000267123658, -0.0100851189, -0.00650286349, -0.0158795509, 0.00932322163, -0.00553712482, 0.00947025418, -0.00759892678, 0.0109071666, 0.0123574454, -0.00465492764, 0.0243138932, 0.00211526849, 0.012591362, 0.0240465607, -0.0199162718, -0.00496570161, -0.011087616, 0.0184192099, -0.00885538943, -0.0162270833, -0.00101586361, 0.0158661846, -0.024848558, -0.00396320457, 0.00854795706, 0.0310105719, 0.00650620507, 0.00234584277, -0.0006925583, 0.00147032889, -0.00863484, 0.00984452, -0.00345193106, -0.00379278022, 0.0101786861, 0.0294600446, -0.0104593849, -0.00880192313, -1.90317787e-05, -0.00578106567, -0.00510605099, 0.00523303403, 0.0112212822, -0.00161736179, -0.0200499389, 0.0101319021, -0.00482201, 0.0275085159, 0.00922297221, 0.00872840639, -0.00181117782, 0.00346195605, 0.00914945547, 0.00731154438, 0.00146615179, 0.00214534346, 0.0178177133, -0.00463487767, -0.00288552046, 0.0135403918, 0.0142220901, -0.013299793, 0.00331325247, -0.00740511063, 0.0125579452, 0.00392310461, -0.0186598096, 0.0173097812, -0.017136015, -0.00563069107, 0.0149305211, -0.0207984708, 0.0170023479, -0.0179112796, 0.00592809869, -0.00111026538, -0.0223757327, 0.0143958563, 0.000989130349, 0.0199831054, 0.0035789141, -0.00597488182, 0.0104994848, -0.000921461789, -0.0124309622, 0.0112947989, -0.00288050785, 0.0034352229, 0.02709415, -0.0194751732, 0.0128252776, -0.00902247243, 0.0199430063, -0.0204108376, 0.0243940931, -0.0069907452, 0.00758556044, 0.00445108628, 0.00442769472, -0.0118027311, 0.0152245872, 0.00872840639, 0.0152513199, -0.0231910963, 0.00747194374, -0.00380614679, -0.00914277229, -0.00747194374, -0.0216138344, 0.00580445724, -0.0161468834, -0.00972422, 0.0199162718, 0.0132463267, -0.0275619831, -0.00779274292, -0.00715782819, -0.0274550505, 0.00487881852, -0.00647613034, 0.00325477333, -0.00865489058, 0.0274550505, 0.00838087406, 0.00013836546, -0.0101185357, 0.00783284288, 0.00062697829, 0.00579777407, 0.0169221479, 0.0120299635, 0.0256104562, -0.0126180947, -0.0018278861, 0.00110525289, -0.0129522607, -0.0192880407, 0.0146364551, 0.00271342508, -0.00480196, -0.00221551815, 0.000771504943, -0.00171092816, 0.00510939257, -0.0198628064, 0.00313447369, 3.17457379e-05, 0.00778605975, -0.0344858952, 0.0154919196, 0.00584789878, -0.0257975888, -0.0146097224, 0.0285511129, -0.0172563139, -0.00141101447, 0.0111076664, 0.0214935355, -0.00464490242, -0.0136473253, -0.00617538113, 0.0114952987, -0.013547075, 0.0374532863, 0.00568081625, 0.00481198542, -0.00705089513, -0.0146498224, 0.00480530225, -0.00717787817, -0.0231108963, -0.00436086161, 0.00571757415, -0.0153716197, -0.00391642144, 0.00356888911, 0.0116824312, -0.0223356318, 0.00256137969, -0.00484874379, 0.0183523782, -0.0109339, 0.0184459444, 0.0149171548, -0.00188135263, -0.000944853353, 0.0124042286, 0.00344524789, 0.00511941779, 0.0276689157, 0.0139547577, -0.00617538113, 0.0100383358, 0.00415033754, -0.00794646, -0.00195988151, -0.00378275523, -0.000758973707, 0.0198093392, -0.00962397084, -0.0230574291, 0.0145963551, 0.00198661489, -0.00896900613, 0.022883663, 0.00326981093, -0.00884870626, 0.00627228944, 0.00792640913, -0.00781279244, -0.00542685, 0.0187934767, 0.00202671462, 0.00660645496, -0.00179614034, -0.00794646, -0.00707094511, 0.0024828508, 0.0261050202, -0.0149839874, -0.0187400095, 0.0100383358, 0.0156656858, -0.00452794461, -0.00265995855, -8.74052057e-05, -0.0145829888, -0.0045145778, -0.0142488237, 0.0084543908, -0.0296471771, -0.00617538113, -0.00117793388, 0.0169087816, -0.015799351, 0.00198494387, -0.000903918059, 0.00290724123, 0.00535333389, 0.0222955327, 0.000591473188, 0.00412360393, 0.00890217256, -0.000558892032, 0.0256104562, 0.0035187644, -0.0142488237, -0.00510939257, 0.0307699721, -0.00335001061, -0.00946357101, 0.0278827809, 0.00156890776, -0.0081001753, 0.0120299635, 0.0333631, 0.00211526849, 0.0186197106, -0.0237257611, -0.0133599425, -0.0127851777, 0.00711772824, -0.00681029586, -0.00820710789, -0.00396320457, 0.00426061219, 0.0292461775, 0.00432410371, 0.0373730846, 0.00765239354, -0.0102655692, 0.016093418, 0.0106532006, -0.00215369766, -0.0148369549, -0.000198828566, 0.0144493226, 0.00529986713, 0.00543687493, 0.00735164434, -0.0188068431, 0.0267466195, -0.0193548743, -0.0128052281, 0.00559393317, 0.0116957976, -0.00562734948, 0.0174969137, -0.0131594436, -0.0249153916, -0.00426061219, 0.0103725018, 0.0163607504, -0.0363037549, 0.00105763425, 0.0156122195, 0.00514949253, -0.0204509385, 0.017844446, 0.00597154, 0.00464490242, 0.00914277229, 0.0171493813, -0.0191410091, -0.0304491743, 0.0140750576, 0.01192303, 0.00172095315, -0.0136005422, 0.0116556976, -0.0110942991, -0.0221351329, 0.00237925933, 0.0270273183, -0.00286212889, -0.000711355126, -0.0200499389, -0.0167082828, 0.0129188439, 0.0243005268, 0.0154919196, -0.0330957659, -0.00240933429, -0.00642600562, 0.0309838392, -0.0106999837, -0.0134936087, -0.0303422417, -0.0175637472, 0.0308769066, -0.0281233806, -0.00124727329, -0.0161869843, 0.000482869364, 0.0121769961, 0.0138210915, 0.00264993357, 0.0172830466, -0.00774596, 0.0111544495, -0.0120366467, 0.0190073419, 0.00187634013, 0.0384958833, 0.00740511063, -0.0194618069, -0.0135270255, 0.0149438875, -0.014048324, 0.00530989235, 0.00520295929, 0.00513612619, 0.00356554752, 0.0169889815, 0.012798544, 0.00909598917, -0.0170023479, -0.00928980485, 0.0196088403, -0.00118879427, -0.0113415821, 0.000173452863, 0.000521716138, 0.00421048701, 0.0228970312, -0.0097442707, 0.0109272171, -0.0108938, 0.00094318256, 0.0152646871, 0.0306897741, 0.00620879792, -0.00191476918, -0.00580445724, 0.0198895391, 0.0089756893, -0.00406345446, 0.00906257238, -0.0248218253, -0.00993140321, 0.00926975533, 0.0037961218, 0.00584121561, -0.0237925947, -0.00672007119, 0.00331492326, 0.0114685651, 0.00291893701, -1.92406314e-05, -0.009089306, -0.0181385111, -0.00677019591, -0.00145111431, 0.0043107369, 0.0123173455, 0.00748531055, -0.00889548939, -0.00980442, -0.020638071, 0.00257975888, 0.00716451136, -0.0145829888, 0.00413362915, -0.00237758853, -0.00721129449, -0.0181251448, -0.00426395377, -0.0253163893, -0.000338133861, 0.0154518196, 0.0111878663, -0.00840760767, -0.00699742883, -0.0102856187, -0.00627897261, 0.0167751163, -0.000733493594, -0.00311275292, -0.0106598847, 0.00572091574, 0.0265461188, 0.00349871442, 0.00462151086, -0.0102989851, 0.00478859385, 0.00706426194, 0.00787294284, 0.00408016238, -0.016427584, -0.0213331357, 0.0107200341, 0.0131794931, 0.0235519949, 0.000221802446, -0.0146765551, -0.0195152741, 0.00528315874, -0.00690386211, 0.020344004, -0.0170825478, 0.0252762903, 0.00103424268, -0.00297240354, -0.00162989297, 0.00157893274, -0.0338442959, 0.00755214365, -0.0111878663, 0.00715782819, -0.00447782, 0.00842097402, 0.00255469629, -0.0048687933, 0.00765239354, 0.0172295813, -0.00255302549, -0.0121101635, -0.0157325193, -0.0014603039, -0.0046950276, 0.0206113365, -0.0137809915, 0.00314282789, 0.00402669609, 0.016801849, -0.00215536845, -0.00907593872, 0.0131393932, 0.006128598, 0.012631462, 0.0138745578, 0.00872172322, 0.00670670439, 0.0123106623, -0.00250624237, 0.0169622488, -0.0200766716, 0.0224559326, 0.00498909317, 0.0171092805, 0.0175637472, 0.00790636, 0.0131260268, 0.00753877684, 0.0067869043, -0.00623553107, -0.0143156564, 0.0168686826, -0.008922223, -0.0186731759, 0.0204375703, -0.0117759975, 0.00875514, -0.0200499389, 0.00781947654, 0.0109272171, 0.000352753617, 0.0230440628, 0.00157141394, 0.0187934767, 0.0227767304, 0.00206681457, -0.0103190355, 0.0133933593, -0.00106682384, 0.0155052859, -0.0105262175, 0.0186865423, 0.000352753617, -0.0163741168, -0.0127718113, 0.0181919783, -0.0310373064, 0.0241668597, 0.0221084, 0.00434415322, -0.00965070352, 0.004544653, 0.0063625141, 0.00553712482, 0.00433412846, 0.0184325781, 0.00969748758, -0.015090921, 0.015719153, -0.0191009082, -0.0092764385, -0.015759252, -0.0180583112, 0.00703084515, -0.00054469, -0.0105796847, -0.0022656431, 0.00705089513, 0.0212796684, 0.0129121607, -0.0146899223, 0.0180984121, -0.00066666049, -0.000991636538, -0.010546268, 0.00396320457, -0.0152112199, 0.0171226487, 0.0105997343, 0.00397991296, -0.0192479417, -0.003064299, 0.0118695637, -0.0217475, 0.00784620922, -0.0127250282, 0.00427732, 0.00691054575, -0.0384958833, -0.00969748758, -0.00125729828, -0.000946524204, -0.0216673, -0.0237257611, 0.00603837334, -0.023592094, 0.008213792, -0.00834745821, 0.0133198425, -0.0134869255, -0.00234584277, -0.0037226053, 0.0117091639, -0.0170825478, -0.00725139445, -0.00431407848, -0.0303957071, -0.0164008494, -0.0225227643, 0.0167082828, -0.00511941779, -0.021841066, 0.0116690649, 0.00137007912, -0.00776601, 0.00709767826, -0.00389302988, -0.00237591774, 0.0209856033, -0.00998486951, 0.0178979114, -0.00441098679, -0.00467497762, -0.0149973547, 0.0233113952, 0.00583453244, -0.00453462778, 0.00681697903, -0.00905588921, -0.0182855446, -0.0208385698, -0.00234584277, -0.0150641873, -0.00868162327, -0.0202237051, -0.00728481123, -0.0160399508, -0.0119965468, 8.73529862e-05, -0.00912272185, -0.00705089513, 0.00618540635, 0.0344056934, -0.00122388173, 0.00260816282, -0.0217475, -0.00458475249, 0.0335502326, -0.00234584277, -0.00755882682, -0.0197692402, 0.00252629234, 0.0171894804, -0.0266530514, 0.000353797892, -0.001537162, -0.00128820853, -0.0118495142, 0.0251693558, -0.0166280828, 0.00532994233, 0.00784620922, -0.0196489394, 0.0058946819, -0.014756755, 0.0118361469, -0.016427584, 0.00265661697, 0.0289253779, -0.00747194374, -0.0144493226, -0.00110525289, -0.00945020467, 0.0150107211, 0.035394825, 0.00677353749, 0.0213732347, 0.00833409093, -0.00424056221, 0.00543353334, 0.0189137757, 0.0131794931, 0.00321968598, -0.010840334, 0.00335335219, -0.0138210915, 0.0242604259, 0.00539343338, -0.00934995525, 0.00814027525, -0.0130324606, 0.010713351, 0.0167483818, 0.00624889787, 0.000946524204, -0.0186999105, -0.0169622488, -0.0064460556, 0.0224960316, -0.00516285934, 0.00826725829, -0.00583453244, -0.00673009595, -0.0167884827, 0.028845178, 0.00719792815, -0.0015363266, 0.0271743499, 0.0347799622, -0.00635583047, 0.00352878915, 0.0144894226, -0.0206915364, 0.0129322102, -0.0176172126, 0.00329487328, 0.000689216657, -0.00717787817, -0.0246614255, -0.00323305256, -0.00172262394, 0.019595474, 0.00745189376, 0.00580445724, 0.0276956484, 0.00194484403, 0.0286045801, -0.0130525101, 0.00518290931, -0.0117292143, 0.00462485244, 0.0144760562, -0.027348116, 0.0184860434, 0.000974928262, 0.0092764385, -0.00320464862, 0.00929648802, -0.0105395848, -0.0131995436, 0.00512610096, 0.00497906795, -0.003064299, -0.0113616325, 0.00370589714, 0.0191944744, -0.0139146578, 0.00643937197, 0.0166681819, -0.0117358975, -0.0453663282, -0.0145562561, -0.00820042472, -0.00812022574, 0.0111009832, -0.000506260956, -0.00237591774, 0.00909598917, 0.0104326513, 0.00151209952, 0.00289220363, -0.0168686826, 0.026385719, -0.00263155438, -0.00832072459, -0.00569752418, 0.0161602516, 0.0275352504, -0.0178177133, 0.0196088403, -0.00436754525, -0.013547075, 0.008213792, -0.00553712482, -0.0174167138, 9.35141652e-05, 0.00875514, 0.00285878708, -0.0081001753, -0.0068704458, 0.00195821072, 0.0254500564, 0.0126114115, 0.00439762, 0.00434415322, -0.0257307552, -0.00118545268, -0.00622884789, -0.00425392855, -0.000147972722, 0.0101653188, 0.00571089098, 0.0180984121, 0.0153315198, 0.005253084, 0.000111527785, 0.00235419697, 0.00588131556, 0.00711772824, 0.0122170961, -0.00444774469, -0.0109004835, -0.00361233065, 0.0107801836, -0.00820042472, 0.0177241452, 0.000248117984, -0.01000492, 0.0171493813, 0.0102789355, -0.000862147368, -0.00450121146, -0.00932322163, 0.0265060198, 0.00669667963, 0.0291927103, -0.00831404142, 0.0111678159, -0.038816683, -0.0179112796, -0.00708431192, -0.014716655, -0.00444774469, 0.00295903673, -0.0079932427, 0.0124042286, -0.0223623645, 0.000624472043, 0.000415200833, 0.00805339217, 0.00179279875, -0.0110341497, 0.00866157375, 0.0192078408, -0.00500914315, 0.0210390687, 0.00414699549, 0.00905588921, 0.030101642, -0.0198628064, 0.00964402, 0.00326814014, -0.00449118624, -0.0134334592, 0.0111009832, 0.0202771723, 0.00331492326, 0.00701747881, 0.0128653776, 0.0061152312, 0.023592094, -0.00156473066, -0.0132530099, 0.00440764474, -0.00943015423, -0.000850869284, -0.00812022574, -0.00131494179, -0.00110525289, -0.00322469859, -0.011548765, -0.0070575783, 0.0128052281, -0.00555383321, -0.0367849544, -0.00707094511, -0.00317791523, 0.000515868247, -0.0311175045, 0.0269070175, 0.0100517031, -0.00103257189, 0.0262119528, -0.00459477771, 0.00303088245, -0.0183657445, 0.00988462, 0.00635917252]